[
  {
    "path": "LICENSE.md",
    "content": "    MIT License\n\n    Copyright (c) Microsoft Corporation.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE\n"
  },
  {
    "path": "README.md",
    "content": "# LoRA: Low-Rank Adaptation of Large Language Models\n\nThis repo contains the source code of the Python package `loralib` and several examples of how to integrate it with PyTorch models, such as those in Hugging Face.\nWe only support PyTorch for now.\nSee our paper for a detailed description of LoRA.\n\n**LoRA: Low-Rank Adaptation of Large Language Models** <br>\n*Edward J. Hu\\*, Yelong Shen\\*, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen* <br>\nPaper: https://arxiv.org/abs/2106.09685 <br>\nVideo explainer: https://www.youtube.com/watch?v=DhRoTONcyZE <br>\n\n*Update 2/2023: LoRA is now supported by the [State-of-the-art Parameter-Efficient Fine-Tuning (PEFT)](https://github.com/huggingface/peft) library by Hugging Face.*\n\nLoRA reduces the number of trainable parameters by learning pairs of rank-decompostion matrices while freezing the original weights.\nThis vastly reduces the storage requirement for large language models adapted to specific tasks and enables efficient task-switching during deployment all without introducing inference latency.\nLoRA also outperforms several other adaptation methods including adapter, prefix-tuning, and fine-tuning.\n\nWe obtain result comparable or superior to full finetuning on the GLUE benchmark using [RoBERTa (Liu et al., 2019)](https://arxiv.org/abs/1907.11692) base and large and [DeBERTa (He et al., 2020)](https://arxiv.org/abs/2006.03654) XXL 1.5B, while only training and storing a fraction of the parameters. Click the numbers below to download the RoBERTa and DeBERTa LoRA checkpoints.\n\n|   |         | RoBERTa base <br> Fine-tune  |  RoBERTa base <br> LoRA  | DeBERTa XXL <br> Fine-tune | DeBERTa XXL <br> LoRA  |\n|---|-------------------------|----------------|--------------------------|-----------------|-----------------|\n|   | # of Trainable Params.  | 125M | 0.8M | 1.5B | 4.7M     |\n|   | MNLI (m-Acc/mm-Acc)     | <b>87.6</b> | [<b>87.5</b>±.3/86.9±.3](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_mnli.bin) |91.7/<b>91.9</b>| [<b>91.9</b>±.1/<b>91.9</b>±.2](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)       |\n|   | SST2 (Acc)              | 94.8 | [<b>95.1</b>±.2](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_sst2.bin) | <b>97.2</b>    | [96.9±.2](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_sst2.bin)                    |\n|   | MRPC (Acc)              | <b>90.2</b> | [<b>89.7</b>±.7](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_mrpc.bin) | 92.0           | [<b>92.6</b>±.6](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mrpc.bin)             |\n|   | CoLA (Matthew's Corr)   | <b>63.6</b> | [<b>63.4</b>±1.2](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_cola.bin) | <b>72.0</b>    | [<b>72.4</b>±1.1](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_cola.bin)           |\n|   | QNLI (Acc)              | 92.8 | [<b>93.3</b>±.3](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_qnli.bin) | <b>96.0</b>    | [<b>96.0</b>±.1](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_qnli.bin)            |\n|   | QQP (Acc)               | <b>91.9</b> | [90.8±.1](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_qqp.bin) | 92.7           | [<b>92.9</b>±.1](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_qqp.bin)           |\n|   | RTE (Acc)               | 78.7 | [<b>86.6</b>±.7](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_rte.bin) | 93.9           | [<b>94.9</b>±.4](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_rte.bin)           |\n|   | STSB (Pearson/Spearman Corr) | 91.2 | [<b>91.5</b>±.2/<b>91.3</b>±.2](https://github.com/microsoft/LoRA/releases/download/RoBERTa-base/roberta_base_lora_stsb.bin) |<b>92.9</b>/92.6| [<b>93.0</b>±.2/<b>92.9</b>±.3](https://github.com/microsoft/LoRA/releases/download/DeBERTa/deberta_v2_xxlarge_lora_stsb.bin)      |\n|   | Average  | 86.40 | <b>87.24</b> | 91.06 | <b>91.32</b> |\n\n<i>Note: You still need the original pre-trained checkpoint from [Hugging Face](https://huggingface.co/) to use the LoRA checkpoints.</i>\n\nFine-tuning numbers are taken from [Liu et al. (2019)](https://arxiv.org/abs/1907.11692) and [He et al. (2020)](https://arxiv.org/abs/2006.03654).  We include confidence intervals on results from our experiments. Please follow the instructions in `examples/NLU/` to reproduce our results.\n\nOn GPT-2, LoRA compares favorably to both full finetuning and other efficient tuning methods, such as [adapter (Houlsby et al., 2019)](https://arxiv.org/abs/1902.00751) and [prefix tuning (Li and Liang, 2021)](https://arxiv.org/abs/2101.00190). We evaluated on E2E NLG Challenge, DART, and WebNLG:\n\n|   | Method              | # of Trainable Params | E2E (BLEU)   | DART (BLEU)  | WebNLG (BLEU-U/S/A)            |\n|---|---------------------|-----------------------|--------------|--------------|--------------------------------|\n|   | GPT-2 M (Fine-Tune) | 354.92M               | 68.2         | 46.0         | 30.4/<b>63.2</b>/47.6          |\n|   | GPT-2 M (Adapter)   | 0.37M                 | 66.3         | 42.4         | 45.1/54.5/50.2                 |\n|   | GPT-2 M (Prefix)    | 0.35M                 | 69.7         | 45.7         | 44.1/63.1/54.4                 |\n|   | GPT-2 M (LoRA)      | 0.35M                 |<b>70.4</b>±.1|<b>47.1</b>±.2| <b>46.7</b>±.4/62.1±.2/<b>55.3</b>±.2 |\n|   | GPT-2 L (Fine-Tune) | 774.03M               | 68.5         | 46.5         | 41.7/<b>64.6</b>/54.2          |\n|   | GPT-2 L (Adapter)   | 0.88M                 | 69.1±.1      | 45.7±.1      | <b>49.8</b>±.0/61.1±.0/56.0±.0 |\n|   | GPT-2 L (Prefix)    | 0.77M                 | 70.3         | 46.5         | 47.0/64.2/56.4                 |\n|   | GPT-2 L (LoRA)      | 0.77M                 |<b>70.4</b>±.1|<b>47.5</b>±.1| 48.4±.3/<b>64.0</b>±.3/<b>57.0</b>±.1 |\n\nNon-LoRA baselines, except for adapter on GPT-2 large, are taken from [Li and Liang (2021)](https://arxiv.org/abs/2101.00190). We include confidence intervals on results from our experiments.\n\nDownload the GPT-2 LoRA checkpoints:\n * [GPT-2 Medium E2E](https://github.com/microsoft/LoRA/releases/download/GPT-2/gpt2_md_lora_e2e.pt) (1.5 MB)\n * [GPT-2 Medium DART](https://github.com/microsoft/LoRA/releases/download/GPT-2/gpt2_md_lora_dart.pt) (1.5 MB)\n * [GPT-2 Medium WebNLG](https://github.com/microsoft/LoRA/releases/download/GPT-2/gpt2_md_lora_webnlg.pt) (1.5 MB)\n * [GPT-2 Large E2E](https://github.com/microsoft/LoRA/releases/download/GPT-2/gpt2_lg_lora_e2e.pt) (2.3 MB)\n * [GPT-2 Large DART](https://github.com/microsoft/LoRA/releases/download/GPT-2/gpt2_lg_lora_dart.pt) (2.3 MB)\n * [GPT-2 Large WebNLG](https://github.com/microsoft/LoRA/releases/download/GPT-2/gpt2_lg_lora_webnlg.pt) (2.3 MB)\n\nPlease follow the instructions in `examples/NLG/` to reproduce our result.\n## Repository Overview\n\n<i>(The initial release of this repo has been archived in the branch \"snapshot-9-15-2021\")</i>\n\nThere are several directories in this repo:\n* [loralib/](loralib) contains the source code for the package `loralib`, which needs to be installed to run the examples we provide;\n* [examples/NLG/](examples/NLG) contains an example implementation of LoRA in GPT-2 using our package, which can be used to reproduce the result in our paper;\n* [examples/NLU/](examples/NLU) contains an example implementation of LoRA in RoBERTa and DeBERTa using our package, which produces competitive results on the GLUE benchmark;\n* See how we use `loralib` in [GPT-2](examples/NLG/src/model.py), [RoBERTa](examples/NLU/src/transformers/models/roberta/modeling_roberta.py), and [DeBERTa v2](examples/NLU/src/transformers/models/deberta_v2/modeling_deberta_v2.py)\n\n## Quickstart\n\n 1. Installing `loralib` is simply\n ```bash\n pip install loralib\n # Alternatively\n # pip install git+https://github.com/microsoft/LoRA\n ```\n\n 2. You can choose to adapt some layers by replacing them with counterparts implemented in `loralib`. We only support `nn.Linear`, `nn.Embedding`, and `nn.Conv2d` for now. We also support a `MergedLinear` for cases where a single `nn.Linear` represents more than one layers, such as in some implementations of the attention `qkv` projection (see Additional Notes for more).\n ```python\n # ===== Before =====\n # layer = nn.Linear(in_features, out_features)\n\n # ===== After ======\n import loralib as lora\n # Add a pair of low-rank adaptation matrices with rank r=16\n layer = lora.Linear(in_features, out_features, r=16)\n ```\n\n 3. Before the training loop begins, mark only LoRA parameters as trainable.\n ```python\n import loralib as lora\n model = BigModel()\n # This sets requires_grad to False for all parameters without the string \"lora_\" in their names\n lora.mark_only_lora_as_trainable(model)\n # Training loop\n for batch in dataloader:\n    ...\n ```\n 4. When saving a checkpoint, generate a `state_dict` that only contains LoRA parameters.\n ```python\n # ===== Before =====\n # torch.save(model.state_dict(), checkpoint_path)\n # ===== After =====\n torch.save(lora.lora_state_dict(model), checkpoint_path)\n ```\n 5. When loading a checkpoint using `load_state_dict`, be sure to set `strict=False`.\n ```python\n # Load the pretrained checkpoint first\n model.load_state_dict(torch.load('ckpt_pretrained.pt'), strict=False)\n # Then load the LoRA checkpoint\n model.load_state_dict(torch.load('ckpt_lora.pt'), strict=False)\n ```\n\n#### Now training can proceed as usual.\n\n## Additional Notes\n\n1. While we focus on a simple yet effect setup, namely adapting only the `q` and `v` projection in a Transformer, in our examples, LoRA can be apply to any subsets of pre-trained weights. We encourage you to explore different configurations, such as adapting the embedding layer by replacing `nn.Embedding` with `lora.Embedding` and/or adapting the MLP layers. It's very likely that the optimal configuration varies for different model architectures and tasks.\n\n2. Some Transformer implementation uses a single `nn.Linear` for the projection matrices for query, key, and value. If one wishes to constrain the rank of the updates to the individual matrices, one has to either break it up into three separate matrices or use `lora.MergedLinear`. Make sure to modify the checkpoint accordingly if you choose to break up the layer.\n```python\n# ===== Before =====\n# qkv_proj = nn.Linear(d_model, 3*d_model)\n# ===== After =====\n# Break it up (remember to modify the pretrained checkpoint accordingly)\nq_proj = lora.Linear(d_model, d_model, r=8)\nk_proj = nn.Linear(d_model, d_model)\nv_proj = lora.Linear(d_model, d_model, r=8)\n# Alternatively, use lora.MergedLinear (recommended)\nqkv_proj = lora.MergedLinear(d_model, 3*d_model, r=8, enable_lora=[True, False, True])\n```\n3. Training bias vectors in tandem with LoRA might be a cost-efficient way to squeeze out extra task performance (if you tune the learning rate carefully). While we did not study its effect thoroughly in our paper, we make it easy to try in `lora`. You can mark some biases as trainable by passing \"all\" or \"lora_only\" to `bias=` when calling `mark_only_lora_as_trainable`. Remember to pass the corresponding `bias=` argument to `lora_state_dict` when saving a checkpoint.\n```python\n# ===== Before =====\n# lora.mark_only_lora_as_trainable(model) # Not training any bias vectors\n# ===== After =====\n# Training all bias vectors associated with modules we apply LoRA to \nlora.mark_only_lora_as_trainable(model, bias='lora_only')\n# Alternatively, we can train *all* bias vectors in the model, including LayerNorm biases\nlora.mark_only_lora_as_trainable(model, bias='all')\n# When saving a checkpoint, use the same bias= ('all' or 'lora_only')\ntorch.save(lora.lora_state_dict(model, bias='all'), checkpoint_path)\n```\n4. Calling `model.eval()` will trigger the merging of LoRA parameters with the corresponding pretrained ones, which eliminates additional latency for subsequent forward passes. Calling `model.train()` again will undo the merge. This can be disabled by passing `merge_weights=False` to LoRA layers.\n\n## Contact\nPlease contact us or post an issue if you have any questions.\n\nFor questions related to the package `loralib`:\n* Edward Hu (edward@edwardjhu.com)\n* Phillip Wallis (phwallis@microsoft.com)\n* Weizhu Chen (wzchen@microsoft.com)\n\nThe GPT-2 example:\n* Phillip Wallis (phwallis@microsoft.com)\n* Yelong Shen (yeshe@microsoft.com)\n\nThe RoBERTa/DeBERTa example:\n* Lu Wang (luw@microsoft.com)\n\n## Acknowledgements\nWe thank in alphabetical order Jianfeng Gao, Jade Huang, Jiayuan Huang, Lisa Xiang Li, Xiaodong Liu, Yabin Liu, Benjamin Van Durme, Luis Vargas, Haoran Wei, Peter Welinder, and Greg Yang for providing valuable feedback.\n\n## Citation\n```BibTeX\n@inproceedings{\nhu2022lora,\ntitle={Lo{RA}: Low-Rank Adaptation of Large Language Models},\nauthor={Edward J Hu and Yelong Shen and Phillip Wallis and Zeyuan Allen-Zhu and Yuanzhi Li and Shean Wang and Lu Wang and Weizhu Chen},\nbooktitle={International Conference on Learning Representations},\nyear={2022},\nurl={https://openreview.net/forum?id=nZeVKeeFYf9}\n}\n```\n\n## Contributing\n\nThis project welcomes contributions and suggestions.  Most contributions require you to agree to a\nContributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us\nthe rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.\n\nWhen you submit a pull request, a CLA bot will automatically determine whether you need to provide\na CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions\nprovided by the bot. You will only need to do this once across all repos using our CLA.\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\nFor more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or\ncontact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n"
  },
  {
    "path": "examples/NLG/CODE_OF_CONDUCT.md",
    "content": "# Microsoft Open Source Code of Conduct\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).\n\nResources:\n\n- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)\n- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)\n- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns\n"
  },
  {
    "path": "examples/NLG/LICENSE",
    "content": "    MIT License\n\n    Copyright (c) Microsoft Corporation.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE\n"
  },
  {
    "path": "examples/NLG/README.md",
    "content": "# Adapting GPT-2 using LoRA\n\nThis folder contains the implementation of LoRA in GPT-2 using the Python package `lora` and steps to replicate the results in our recent paper\n\n**LoRA: Low-Rank Adaptation of Large Language Models** <br>\n*Edward J. Hu\\*, Yelong Shen\\*, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen* <br>\nPaper: https://arxiv.org/abs/2106.09685 <br>\n\n<p>\n<img src=\"figures/LoRA_GPT2.PNG\" width=\"800\" >\n</p>\n\nThis repo reproduces our experiments on GPT-2.\n\n## Repository Overview\n\nOur implementation is based on the fine-tuning code for GPT-2 in [Hugging Face](https://huggingface.co/).\nThere are several directories in this repo:\n* [src/](src) contains the source code used for data processing, training, and decoding.\n* [eval/](eval) contains the code for task-specific evaluation scripts.\n* [data/](data) contains the raw data we used in our experiments.\n* [vocab/](vocab) contains the GPT-2 vocabulary files.\n\n## Getting Started\n\n 1. You can start with the following docker image: `nvcr.io/nvidia/pytorch:20.03-py3` on a GPU-capable machine, but any generic PyTorch image should work.\n ```\n docker run -it nvcr.io/nvidia/pytorch:20.03-py3\n ```\n\n 2. Clone the repo and install dependencies in a virtual environment (remove sudo if running in docker container):\n ```\n sudo apt-get update\n sudo apt-get -y install git jq virtualenv\n git clone https://github.com/microsoft/LoRA.git; cd LoRA\n virtualenv -p `which python3` ./venv\n . ./venv/bin/activate\n pip install -r requirement.txt\n bash download_pretrained_checkpoints.sh\n bash create_datasets.sh\n cd ./eval\n bash download_evalscript.sh\n cd ..\n ```\n\n#### Now we are ready to replicate the results in our paper.\n\n## Replicating Our Result on E2E\n\n1. Train GPT-2 Medium with LoRA (see our paper for hyperparameters for GPT-2 Medium)\n```\npython -m torch.distributed.launch --nproc_per_node=1 src/gpt2_ft.py \\\n    --train_data ./data/e2e/train.jsonl \\\n    --valid_data ./data/e2e/valid.jsonl \\\n    --train_batch_size 8 \\\n    --grad_acc 1 \\\n    --valid_batch_size 4 \\\n    --seq_len 512 \\\n    --model_card gpt2.md \\\n    --init_checkpoint ./pretrained_checkpoints/gpt2-medium-pytorch_model.bin \\\n    --platform local \\\n    --clip 0.0 \\\n    --lr 0.0002 \\\n    --weight_decay 0.01 \\\n    --correct_bias \\\n    --adam_beta2 0.999 \\\n    --scheduler linear \\\n    --warmup_step 500 \\\n    --max_epoch 5 \\\n    --save_interval 1000 \\\n    --lora_dim 4 \\\n    --lora_alpha 32 \\\n    --lora_dropout 0.1 \\\n    --label_smooth 0.1 \\\n    --work_dir ./trained_models/GPT2_M/e2e \\\n    --random_seed 110\n```\n\n2. Generate outputs from the trained model using beam search:\n```\npython -m torch.distributed.launch --nproc_per_node=1 src/gpt2_beam.py \\\n    --data ./data/e2e/test.jsonl \\\n    --batch_size 1 \\\n    --seq_len 512 \\\n    --eval_len 64 \\\n    --model_card gpt2.md \\\n    --init_checkpoint ./trained_models/GPT2_M/e2e/model.26289.pt \\\n    --platform local \\\n    --lora_dim 4 \\\n    --lora_alpha 32 \\\n    --beam 10 \\\n    --length_penalty 0.8 \\\n    --no_repeat_ngram_size 4 \\\n    --repetition_penalty 1.0 \\\n    --eos_token_id 628 \\\n    --work_dir ./trained_models/GPT2_M/e2e \\\n    --output_file predict.26289.b10p08r4.jsonl\n```\n\n3. Decode outputs from step (2)\n```\npython src/gpt2_decode.py \\\n    --vocab ./vocab \\\n    --sample_file ./trained_models/GPT2_M/e2e/predict.26289.b10p08r4.jsonl \\\n    --input_file ./data/e2e/test_formatted.jsonl \\\n    --output_ref_file e2e_ref.txt \\\n    --output_pred_file e2e_pred.txt\n```\n\n4. Run evaluation on E2E test set\n\n```\npython eval/e2e/measure_scores.py e2e_ref.txt e2e_pred.txt -p\n```\n\n## Replicating Our Result on WebNLG\n\n1. Follow steps 1 and 2 from E2E pipeline by replacing references to E2E with webnlg (see our paper for hyperparameters)\n\n2. Decode outputs from beam search (step 2 above)\n```\npython src/gpt2_decode.py \\\n    --vocab ./vocab \\\n    --sample_file ./trained_models/GPT2_M/webnlg/predict.20000.b10p08.jsonl \\\n    --input_file ./data/webnlg_challenge_2017/test_formatted.jsonl \\\n    --ref_type webnlg \\\n    --ref_num 6 \\\n    --output_ref_file eval/GenerationEval/data/references_webnlg \\\n    --output_pred_file eval/GenerationEval/data/hypothesis_webnlg \\\n    --tokenize --lower\n```\n\n3. Run evaluation on WebNLG test set\n```\ncd ./eval/GenerationEval/\npython eval.py \\\n    -R data/references_webnlg/reference \\\n    -H data/hypothesis_webnlg \\\n    -nr 6 \\\n    -m bleu,meteor,ter \ncd ../..\n```\n\n## Replicating Our Result on DART\n\n1. Follow steps 1 and 2 from E2E pipeline by replacing references to E2E with dart (see our paper for hyperparameters)\n\n2. Decode outputs from beam search (step 2 above)\n```\npython src/gpt2_decode.py \\\n        --vocab ./vocab \\\n        --sample_file ./trained_models/GPT2_M/dart/predict.20000.b10p08.jsonl \\\n        --input_file ./data/dart/test_formatted.jsonl \\\n        --ref_type dart \\\n        --ref_num 6 \\\n        --output_ref_file eval/GenerationEval/data/references_dart \\\n        --output_pred_file eval/GenerationEval/data/hypothesis_dart \\\n        --tokenize --lower\n```\n\n3. Run evaluation on Dart test set\n```\ncd ./eval/GenerationEval/\npython eval.py \\\n    -R data/references_dart/reference \\\n    -H data/hypothesis_dart \\\n    -nr 6 \\\n    -m bleu,meteor,ter \ncd ../..\n```\n\n## Citation\n```\n@misc{hu2021lora,\n    title={LoRA: Low-Rank Adaptation of Large Language Models},\n    author={Hu, Edward and Shen, Yelong and Wallis, Phil and Allen-Zhu, Zeyuan and Li, Yuanzhi and Wang, Lu and Chen, Weizhu},\n    year={2021},\n    eprint={2106.09685},\n    archivePrefix={arXiv},\n    primaryClass={cs.CL}\n}\n```"
  },
  {
    "path": "examples/NLG/SECURITY.md",
    "content": "<!-- BEGIN MICROSOFT SECURITY.MD V0.0.5 BLOCK -->\n\n## Security\n\nMicrosoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).\n\nIf you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)), please report it to us as described below.\n\n## Reporting Security Issues\n\n**Please do not report security vulnerabilities through public GitHub issues.**\n\nInstead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report).\n\nIf you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com).  If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc).\n\nYou should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc). \n\nPlease include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:\n\n  * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)\n  * Full paths of source file(s) related to the manifestation of the issue\n  * The location of the affected source code (tag/branch/commit or direct URL)\n  * Any special configuration required to reproduce the issue\n  * Step-by-step instructions to reproduce the issue\n  * Proof-of-concept or exploit code (if possible)\n  * Impact of the issue, including how an attacker might exploit the issue\n\nThis information will help us triage your report more quickly.\n\nIf you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://microsoft.com/msrc/bounty) page for more details about our active programs.\n\n## Preferred Languages\n\nWe prefer all communications to be in English.\n\n## Policy\n\nMicrosoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd).\n\n<!-- END MICROSOFT SECURITY.MD BLOCK -->"
  },
  {
    "path": "examples/NLG/create_datasets.sh",
    "content": "#!/bin/bash\n\necho \"creating e2e datasets...\"\npath=data/e2e\necho \"train...\"\npython src/format_converting_e2e.py $path/train.txt $path/train_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/train_formatted.jsonl --output $path/train.jsonl --add_bos --add_eos\necho \"test...\"\npython src/format_converting_e2e.py $path/test.txt $path/test_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/test_formatted.jsonl --output $path/test.jsonl --add_bos --add_eos\n\necho \"valid...\"\npython src/format_converting_e2e.py $path/valid.txt $path/valid_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/valid_formatted.jsonl --output $path/valid.jsonl --add_bos --add_eos\n\necho \"creating webnlg datasets...\"\npath=data/webnlg_challenge_2017\necho \"train...\"\npython src/format_converting_webnlg.py $path/train.json $path/train_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/train_formatted.jsonl --output $path/train.jsonl --add_bos --add_eos\n\necho \"test...\"\npython src/format_converting_webnlg.py $path/test.json $path/test_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/test_formatted.jsonl --output $path/test.jsonl --add_bos --add_eos\n\necho \"valid...\"\npython src/format_converting_webnlg.py $path/dev.json $path/valid_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/valid_formatted.jsonl --output $path/valid.jsonl --add_bos --add_eos\n\necho \"creating dart datasets...\"\npath=data/dart\necho \"train...\"\npython src/format_converting_dart.py data/dart/dart-v1.1.1-full-train.json data/dart/train_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/train_formatted.jsonl --output $path/train.jsonl --add_bos --add_eos\n\necho \"test...\"\npython src/format_converting_dart.py data/dart/dart-v1.1.1-full-test.json data/dart/test_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/test_formatted.jsonl --output $path/test.jsonl --add_bos --add_eos\n\necho \"valid...\"\npython src/format_converting_dart.py data/dart/dart-v1.1.1-full-dev.json data/dart/valid_formatted.jsonl\npython src/gpt2_encode.py --vocab vocab --input $path/valid_formatted.jsonl --output $path/valid.jsonl --add_bos --add_eos\n\necho \"script complete!\"\n"
  },
  {
    "path": "examples/NLG/data/e2e/test.txt",
    "content": "name : Blue Spice | Type : coffee shop | area : city centre||A coffee shop in the city centre area called Blue Spice . \nname : Blue Spice | Type : coffee shop | area : city centre||Blue Spice is a coffee shop in city centre . \nname : Blue Spice | Type : coffee shop | area : riverside||There is a coffee shop Blue Spice in the riverside area . \nname : Blue Spice | Type : coffee shop | area : riverside||At the riverside , there is a coffee shop called The Blue Spice . \nname : Blue Spice | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The coffee shop Blue Spice is based near Crowne Plaza Hotel and has a high customer rating of 5 out of 5 . \nname : Blue Spice | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The Blue Spice coffee shop , near Crowne Plaza Hotel , has a customer rating of 5 out of 5 . \nname : Blue Spice | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||If you want a coffee shop rated 5 out of 5 pick Blue Spice . It is located near Crowne Plaza Hotel . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Burger King||Burger King is near the coffee shop Blue Spice which has an average customer rating . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Burger King||The Blue Spice coffee shop near Burger King has good customer ratings with excellent food and service , with a lovely atmosphere . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Burger King||Average customer rating coffee shop include Blue Spice near Burger King . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Burger King||The Blue Spice coffee shop located near Burger King has been rated average by customers . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Burger King||Located near Burger King is a coffee shop named Blue Spice that has an average customer rating . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Burger King||Near Burger King is a coffee shop called Blue Spice which has an average customer rating . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Burger King||Near Burger King is the Blue Spice coffee shop . It has average customer ratings . \nname : Blue Spice | Type : coffee shop | customer rating : average | near : Crowne Plaza Hotel||Crowne Plaza Hotel has a coffee shop nearby with an average customer rating called Blue Spice . \nname : Blue Spice | Type : pub | area : city centre||A pub in the city centre area called Blue Spice . \nname : Blue Spice | Type : pub | area : city centre||Blue Spice is a pub in city centre . \nname : Blue Spice | Type : pub | area : riverside||There is a pub Blue Spice in the riverside area . \nname : Blue Spice | Type : pub | area : riverside||At the riverside , there is a pub called The Blue Spice . \nname : Blue Spice | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The pub Blue Spice is based near Crowne Plaza Hotel and has a high customer rating of 5 out of 5 . \nname : Blue Spice | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The Blue Spice pub , near Crowne Plaza Hotel , has a customer rating of 5 out of 5 . \nname : Blue Spice | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||If you want a pub rated 5 out of 5 pick Blue Spice . It is located near Crowne Plaza Hotel . \nname : Blue Spice | Type : pub | customer rating : average | near : Burger King||Burger King is near the pub Blue Spice which has an average customer rating . \nname : Blue Spice | Type : pub | customer rating : average | near : Burger King||The Blue Spice pub near Burger King has good customer ratings with excellent food and service , with a lovely atmosphere . \nname : Blue Spice | Type : pub | customer rating : average | near : Burger King||Average customer rating pub include Blue Spice near Burger King . \nname : Blue Spice | Type : pub | customer rating : average | near : Burger King||The Blue Spice pub located near Burger King has been rated average by customers . \nname : Blue Spice | Type : pub | customer rating : average | near : Burger King||Located near Burger King is a pub named Blue Spice that has an average customer rating . \nname : Blue Spice | Type : pub | customer rating : average | near : Burger King||Near Burger King is a pub called Blue Spice which has an average customer rating . \nname : Blue Spice | Type : pub | customer rating : average | near : Burger King||Near Burger King is the Blue Spice pub . It has average customer ratings . \nname : Blue Spice | Type : pub | customer rating : average | near : Crowne Plaza Hotel||Crowne Plaza Hotel has a pub nearby with an average customer rating called Blue Spice . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice , located near Rainbow Vegetarian Café in the city centre , is a pub that also sells Chinese food . Children should not visit . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||A pub named Blue Spice is located in the city centre . It is for adults and is close to Rainbow Vegetarian Café . They offer Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is a pub that also serves Chinese food , it 's located in the city center . The pub is n't very family friendly , but the proximity to the Rainbow Vegetarian Café makes up for it . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café Blue Spice pub Chinese in city centre family friendly no . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||There is a pub Blue Spice located in the centre of the city that provides Chinese food . It is not family friendly and is located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||located in the city center . right next to the Rainbow Vegetarian Café , the pub , Blue Spice , has wonderful Chinese food . The Blue Spice is perfect for date night , but i would n't recommend bringing your family there . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub located in the city centre . It has Chinese food and is not family friendly and is located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub providing Chinese food It is located in the city centre . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||In the city centre near the Rainbow Vegetarian Café there is a family friendly pub called Blue Spice . They serve Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub providing Chinese food It is located in the city centre . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||For Chinese , head to Blue Spice . It 's a family friendly pub located in the City Centre near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a fusion pub and Chinese . It 's located in the City Centre near the Rainbow Vegetarian Café . Families are welcome . \nname : Blue Spice | Type : pub | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly pub located in the city centre . It serves Chinese food and is near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a non - family friendly pub along the riverside and near Rainbow Vegetarian Café . Its name is Blue Spice and serves Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice , a pub located riverside near the Rainbow Vegetarian Café , serves Chines food . It is not family friendly . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is a great pub along the riverside , and is located near Rainbow Vegetarian Café . It is not family friendly , but serves Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub that serves Chinese food near the riverside and the Rainbow Vegetarian Café . It is not family friendly . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice pub in riverside serves Chinese food . It is not family friendly and can be found near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub providing Chinese food It is located in the riverside . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly Chinese pub in Riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice , a kid - friendly pub near the Rainbow Vegetarian Café in the riverside area , is a place where one can order Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly pub serving Chinese in riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub providing Chinese food It is located in the riverside . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Kid friendly , .Blue Spice Chinese pub is in riverside , near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a Chinese pub located in the riverside . It is family friendly is is near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a kid friendly pub that serves Chinese food in riverside near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located in riverside near the Rainbow Vegetarian Café is Blue Spice pub , serving Chinese food in a family friendly environment . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a Chinese pub and pub in Riverside , besides being children Friendly . It is around the Rainbow Vegetarian Café \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||When in the riverside area , try the family friendly pub Blue Spice . Offering Chinese food , located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in Riverside is a pub called Blue Spice . It is child friendly and serves Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In the riverside near the Rainbow Vegetarian Café is a family friendly Chinese pub named the Blue Spice . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The pub Blue Spice not only has Chinese food but is also considered to have a kid friendly environment whether this is because of its location in the area known as riverside or its proximity near Rainbow Vegetarian Café its amazing . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice Chinese pub in riverside , near Rainbow Vegetarian Café , is kid friendly . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub that is child friendly and serves Chinese food . It is located in riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A kid friendly pub called Blue Spice is in riverside is near Rainbow Vegetarian Café serves Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub and Chinese pub located in Riverside near to Rainbow Vegetarian Café \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice pub offers Chinese food . It is located near Rainbow Vegetarian Café near the riverside and it children friendly . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café near the riverside is a children friendly pub called the Blue Spice . It has Chinese food . \nname : Blue Spice | Type : pub | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family - oriented pub near the Rainbow Vegetarian Café in the riverside area . Chinese food is served at Blue Spice . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub that serves English food . It is located near Rainbow Vegetarian Café is the city centre area . It is also a pub . It is not family - friendly . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The pub Blue Spice is not conducive for families . They serve English food and located in the city centre near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub that serves English food . It is located near Rainbow Vegetarian Café is the city centre area . It is also a pub . It is not family - friendly . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub located near Rainbow Vegetarian Café located in city centre . It sells English food and is not a family - friendly shop . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in the city centre is the family - unfriendly pub Blue Spice . They serve English food . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice sells English food and is not a family - friendly pub located in city centre near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in the city centre , you will find the family - friendly pub Blue Spice , serving an English food menu . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||There is a pub called Blue Spice near the Rainbow Vegetarian Café in the city centre . It serves English cuisine and is family - friendly . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family - friendly pub that serves English cuisine . It is located in the city centre near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||A family - friendly English pub near Rainbow Vegetarian Café in the city centre is The Blue Spice . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a family - friendly English pub near Rainbow Vegetarian Café in the city centre . \nname : Blue Spice | Type : pub | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice pub , located in the city centre near the Rainbow Vegetarian Café , offers a family - friendly environment and serves English dishes . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||An English pub called Blue Spice is situated near Rainbow Vegetarian Café at Riverside . However , not suitable for families . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is a pub located by the riverside , near the Rainbow Vegetarian Café . It is not child friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , by the riverside is a pub called The Blue Spice . It is not suitable for families . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub located near the Rainbow Vegetarian Café . It is not family friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Next to the river not far from Rainbow Vegetarian Café is a no children pub Blue Spice which provides English breakfast . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Near the river is a pub called The Blue Spice . It is located near the Rainbow Vegetarian Café and is not family - friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a riverside pub near the Rainbow Vegetarian Café called Blue Spice . It serves English food but is not family - friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||A pub called Blue Spice is situated near Rainbow Vegetarian Café at Riverside . Not family - friendly but serves English food . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice has a no children policy , it is a pub sat next to the river that provides English breakfast not far from Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a pub serving English food . You 'll find it alongside the river near to the Rainbow Vegetarian Café . It is n't a family - friendly establishment . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is not a family - friendly pub located near the Rainbow Vegetarian Café just off the river . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a pub that serves English cuisine . It is a kid friendly pub located on the riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , area riverside , the Blue Spice pub , serves English food and has a family friendly atmosphere \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family - friendly pub providing English food . It is located near the Rainbow Vegetarian Café in Riverside . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In the riverside area you can find a family friendly pub named Blue Spice . The serve English food and are located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In the riverside area near Rainbow Vegetarian Café you can enjoy English food at the pub Blue Spice in a child friendly atmosphere . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a child - friendly , English pub located in riverside area , near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a kid friendly English pub near Rainbow Vegetarian Café in Riverside . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a children friendly pub Blue Spice located on the riverside near Rainbow Vegetarian Café that provides English food . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a pub that provides food and is children friendly , near Rainbow Vegetarian Café and the riverside and is called Blue Spice . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is located near Rainbow Vegetarian Café in the riverside area and is a kid friendly pub that serves English food . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Situated near the Rainbow Vegetarian Café in the riverside area of the city , The Blue Spice pub , is ideal if you fancy traditional English food whilst out with the kids . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice , a pub specializing in English eatery , is located in riverside near Rainbow Vegetarian Café and is known to be very kid friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is located on the riverside near the Rainbow Vegetarian Café . This pub is kid friendly and serves English cuisine . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Situated near the Rainbow Vegetarian Café in the riverside area , is the family friendly pub Blue Spice . It serves English food . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In riverside there is a pub near Rainbow Vegetarian Café called Blue Spice . It is kid friendly with English food . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a child friendly English pub called the Blue Spice by the riverside , near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a child - friendly pub near Rainbow Vegetarian Café in the riverside area . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is an English pub located near Rainbow Vegetarian Café on the riverside . Kids are welcome . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located at riverside near Rainbow Vegetarian Café stands children - friendly pub with English food called Blue Spice . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub providing food that is near the Rainbow Vegetarian Café and riverside , and is children friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||If you like English food there is a family - friendly pub called Blue Spice near the Rainbow Vegetarian Café in Riverside . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is an English children friendly pub in Riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is in Riverside near the Rainbow Vegetarian Café which is a English pub that is also children friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub located on the riverside near Rainbow Vegetarian Café . They serve English food and it is kids friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub located in Riverside near Rainbow Vegetarian Café which serves English food and is known to be kid friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice near Rainbow Vegetarian Café in Riverside is a pub serving English meals and child friendly \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||If you looking for children - friendly pub with English food go to Blue Spice near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice us a pub in riverside near Rainbow Vegetarian Café . They serve English food and it 's kid friendly . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a family friendly pub . They offer English food . It is located in the Riverside area near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||An English serving child friendly pub in Riverside is Blue Spice near Rainbow Vegetarian Café \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a pub . It is located near Rainbow Vegetarian Café in the area of Riverside . This is a family friendly pub serving English food . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In Riverside , near the Rainbow Vegetarian Café , you can find a family friendly pub called Blue Spice . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly pub serving English food . It is situated in the riverside area near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a pub called Blue Spice which serves English food , is kid friendly , and is in riverside near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a child friendly pub specializing in English cuisine in the riverside area near Rainbow Vegetarian Café . \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a pub located near Rainbow Vegetarian Café by the riverside . It serves English food and is children friendly \nname : Blue Spice | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a family friendly pub , located in the area of Riverside near the Rainbow Vegetarian Café . The food they offer is English . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice , located near Rainbow Vegetarian Café in the city centre , is a restaurant that also sells Chinese food . Children should not visit . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||A restaurant named Blue Spice is located in the city centre . It is for adults and is close to Rainbow Vegetarian Café . They offer Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is a restaurant that also serves Chinese food , it 's located in the city center . The restaurant is n't very family friendly , but the proximity to the Rainbow Vegetarian Café makes up for it . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café Blue Spice restaurant Chinese in city centre family friendly no . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||There is a restaurant Blue Spice located in the centre of the city that provides Chinese food . It is not family friendly and is located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||located in the city center . right next to the Rainbow Vegetarian Café , the restaurant , Blue Spice , has wonderful Chinese food . The Blue Spice is perfect for date night , but i would n't recommend bringing your family there . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant located in the city centre . It has Chinese food and is not family friendly and is located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant providing Chinese food It is located in the city centre . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||In the city centre near the Rainbow Vegetarian Café there is a family friendly restaurant called Blue Spice . They serve Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant providing Chinese food It is located in the city centre . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||For Chinese , head to Blue Spice . It 's a family friendly restaurant located in the City Centre near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a fusion restaurant and Chinese . It 's located in the City Centre near the Rainbow Vegetarian Café . Families are welcome . \nname : Blue Spice | Type : restaurant | food : Chinese | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly restaurant located in the city centre . It serves Chinese food and is near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a non - family friendly restaurant along the riverside and near Rainbow Vegetarian Café . Its name is Blue Spice and serves Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice , a restaurant located riverside near the Rainbow Vegetarian Café , serves Chines food . It is not family friendly . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is a great restaurant along the riverside , and is located near Rainbow Vegetarian Café . It is not family friendly , but serves Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant that serves Chinese food near the riverside and the Rainbow Vegetarian Café . It is not family friendly . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice restaurant in riverside serves Chinese food . It is not family friendly and can be found near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant providing Chinese food It is located in the riverside . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly Chinese restaurant in Riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice , a kid - friendly restaurant near the Rainbow Vegetarian Café in the riverside area , is a place where one can order Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly restaurant serving Chinese in riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant providing Chinese food It is located in the riverside . It is near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Kid friendly , .Blue Spice Chinese restaurant is in riverside , near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a Chinese restaurant located in the riverside . It is family friendly is is near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a kid friendly restaurant that serves Chinese food in riverside near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located in riverside near the Rainbow Vegetarian Café is Blue Spice restaurant , serving Chinese food in a family friendly environment . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a Chinese restaurant and restaurant in Riverside , besides being children Friendly . It is around the Rainbow Vegetarian Café \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||When in the riverside area , try the family friendly restaurant Blue Spice . Offering Chinese food , located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in Riverside is a restaurant called Blue Spice . It is child friendly and serves Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In the riverside near the Rainbow Vegetarian Café is a family friendly Chinese restaurant named the Blue Spice . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The restaurant Blue Spice not only has Chinese food but is also considered to have a kid friendly environment whether this is because of its location in the area known as riverside or its proximity near Rainbow Vegetarian Café its amazing . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice Chinese restaurant in riverside , near Rainbow Vegetarian Café , is kid friendly . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant that is child friendly and serves Chinese food . It is located in riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A kid friendly restaurant called Blue Spice is in riverside is near Rainbow Vegetarian Café serves Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant and Chinese restaurant located in Riverside near to Rainbow Vegetarian Café \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice restaurant offers Chinese food . It is located near Rainbow Vegetarian Café near the riverside and it children friendly . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café near the riverside is a children friendly restaurant called the Blue Spice . It has Chinese food . \nname : Blue Spice | Type : restaurant | food : Chinese | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family - oriented restaurant near the Rainbow Vegetarian Café in the riverside area . Chinese food is served at Blue Spice . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant that serves English food . It is located near Rainbow Vegetarian Café is the city centre area . It is also a restaurant . It is not family - friendly . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The restaurant Blue Spice is not conducive for families . They serve English food and located in the city centre near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant that serves English food . It is located near Rainbow Vegetarian Café is the city centre area . It is also a restaurant . It is not family - friendly . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant located near Rainbow Vegetarian Café located in city centre . It sells English food and is not a family - friendly shop . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in the city centre is the family - unfriendly restaurant Blue Spice . They serve English food . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice sells English food and is not a family - friendly restaurant located in city centre near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in the city centre , you will find the family - friendly restaurant Blue Spice , serving an English food menu . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant called Blue Spice near the Rainbow Vegetarian Café in the city centre . It serves English cuisine and is family - friendly . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family - friendly restaurant that serves English cuisine . It is located in the city centre near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||A family - friendly English restaurant near Rainbow Vegetarian Café in the city centre is The Blue Spice . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a family - friendly English restaurant near Rainbow Vegetarian Café in the city centre . \nname : Blue Spice | Type : restaurant | food : English | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice restaurant , located in the city centre near the Rainbow Vegetarian Café , offers a family - friendly environment and serves English dishes . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||An English restaurant called Blue Spice is situated near Rainbow Vegetarian Café at Riverside . However , not suitable for families . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is a restaurant located by the riverside , near the Rainbow Vegetarian Café . It is not child friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , by the riverside is a restaurant called The Blue Spice . It is not suitable for families . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant located near the Rainbow Vegetarian Café . It is not family friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Next to the river not far from Rainbow Vegetarian Café is a no children restaurant Blue Spice which provides English breakfast . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Near the river is a restaurant called The Blue Spice . It is located near the Rainbow Vegetarian Café and is not family - friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a riverside restaurant near the Rainbow Vegetarian Café called Blue Spice . It serves English food but is not family - friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||A restaurant called Blue Spice is situated near Rainbow Vegetarian Café at Riverside . Not family - friendly but serves English food . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice has a no children policy , it is a restaurant sat next to the river that provides English breakfast not far from Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Blue Spice is a restaurant serving English food . You 'll find it alongside the river near to the Rainbow Vegetarian Café . It is n't a family - friendly establishment . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Blue Spice is not a family - friendly restaurant located near the Rainbow Vegetarian Café just off the river . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a restaurant that serves English cuisine . It is a kid friendly restaurant located on the riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , area riverside , the Blue Spice restaurant , serves English food and has a family friendly atmosphere \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family - friendly restaurant providing English food . It is located near the Rainbow Vegetarian Café in Riverside . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In the riverside area you can find a family friendly restaurant named Blue Spice . The serve English food and are located near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In the riverside area near Rainbow Vegetarian Café you can enjoy English food at the restaurant Blue Spice in a child friendly atmosphere . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a child - friendly , English restaurant located in riverside area , near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a kid friendly English restaurant near Rainbow Vegetarian Café in Riverside . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a children friendly restaurant Blue Spice located on the riverside near Rainbow Vegetarian Café that provides English food . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant that provides food and is children friendly , near Rainbow Vegetarian Café and the riverside and is called Blue Spice . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is located near Rainbow Vegetarian Café in the riverside area and is a kid friendly restaurant that serves English food . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Situated near the Rainbow Vegetarian Café in the riverside area of the city , The Blue Spice restaurant , is ideal if you fancy traditional English food whilst out with the kids . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice , a restaurant specializing in English eatery , is located in riverside near Rainbow Vegetarian Café and is known to be very kid friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is located on the riverside near the Rainbow Vegetarian Café . This restaurant is kid friendly and serves English cuisine . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Situated near the Rainbow Vegetarian Café in the riverside area , is the family friendly restaurant Blue Spice . It serves English food . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In riverside there is a restaurant near Rainbow Vegetarian Café called Blue Spice . It is kid friendly with English food . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a child friendly English restaurant called the Blue Spice by the riverside , near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a child - friendly restaurant near Rainbow Vegetarian Café in the riverside area . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is an English restaurant located near Rainbow Vegetarian Café on the riverside . Kids are welcome . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located at riverside near Rainbow Vegetarian Café stands children - friendly restaurant with English food called Blue Spice . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant providing food that is near the Rainbow Vegetarian Café and riverside , and is children friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||If you like English food there is a family - friendly restaurant called Blue Spice near the Rainbow Vegetarian Café in Riverside . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is an English children friendly restaurant in Riverside near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is in Riverside near the Rainbow Vegetarian Café which is a English restaurant that is also children friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant located on the riverside near Rainbow Vegetarian Café . They serve English food and it is kids friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant located in Riverside near Rainbow Vegetarian Café which serves English food and is known to be kid friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice near Rainbow Vegetarian Café in Riverside is a restaurant serving English meals and child friendly \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||If you looking for children - friendly restaurant with English food go to Blue Spice near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice us a restaurant in riverside near Rainbow Vegetarian Café . They serve English food and it 's kid friendly . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a family friendly restaurant . They offer English food . It is located in the Riverside area near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||An English serving child friendly restaurant in Riverside is Blue Spice near Rainbow Vegetarian Café \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a restaurant . It is located near Rainbow Vegetarian Café in the area of Riverside . This is a family friendly restaurant serving English food . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In Riverside , near the Rainbow Vegetarian Café , you can find a family friendly restaurant called Blue Spice . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a family friendly restaurant serving English food . It is situated in the riverside area near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant called Blue Spice which serves English food , is kid friendly , and is in riverside near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a child friendly restaurant specializing in English cuisine in the riverside area near Rainbow Vegetarian Café . \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Blue Spice is a restaurant located near Rainbow Vegetarian Café by the riverside . It serves English food and is children friendly \nname : Blue Spice | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Blue Spice is a family friendly restaurant , located in the area of Riverside near the Rainbow Vegetarian Café . The food they offer is English . \nname : Clowns | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Good customer score of 3 out of 5 Clowns coffee shop is a recommended place to eat . Located near the All Bar One . \nname : Clowns | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One there is a coffee shop named Clowns and it is rated 3 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One the Clowns coffee shop is rated 3 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||A coffee shop called the Clowns has a customer rating of 3 out of 5 and is located near All Bar One . \nname : Clowns | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||For a 3 out of 5 star customer rated coffee shop near All Bar One , Clowns is relatively expensive . \nname : Clowns | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Located near All Bar One , The Clowns coffee shop has a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The coffee shop Clowns that is near Crowne Plaza Hotel has ratings of 5 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Crowne Plaza Hotel is a popular coffee shop in Clowns . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The coffee shop Clowns is near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a coffee shop named Clowns that proudly boasts a high customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Found near Crowne Plaza Hotel , Clowns is a coffee shop with a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Crowne Plaza Hotel is a coffee shop in Clowns with a rating 5 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||5 out of 5 rated Clowns coffee shop is located near Crowne Plaza Hotel . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel there is a coffee shop with a 5 out of 5 rating . It 's called Clowns . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Clowns coffee shop has a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The coffee shop Clowns is near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||For a coffee shop with a 5 out of 5 rating , check out Clowns near Crowne Plaza Hotel . \nname : Clowns | Type : coffee shop | near : The Sorrento||Close to The Sorrento you can find Clowns coffee shop . \nname : Clowns | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Good customer score of 3 out of 5 Clowns pub is a recommended place to eat . Located near the All Bar One . \nname : Clowns | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One there is a pub named Clowns and it is rated 3 out of 5 . \nname : Clowns | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One the Clowns pub is rated 3 out of 5 . \nname : Clowns | Type : pub | customer rating : 3 out of 5 | near : All Bar One||A pub called the Clowns has a customer rating of 3 out of 5 and is located near All Bar One . \nname : Clowns | Type : pub | customer rating : 3 out of 5 | near : All Bar One||For a 3 out of 5 star customer rated pub near All Bar One , Clowns is relatively expensive . \nname : Clowns | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Located near All Bar One , The Clowns pub has a customer rating of 3 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The pub Clowns that is near Crowne Plaza Hotel has ratings of 5 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Crowne Plaza Hotel is a popular pub in Clowns . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The pub Clowns is near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a pub named Clowns that proudly boasts a high customer rating of 5 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Found near Crowne Plaza Hotel , Clowns is a pub with a customer rating of 5 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Crowne Plaza Hotel is a pub in Clowns with a rating 5 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||5 out of 5 rated Clowns pub is located near Crowne Plaza Hotel . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel there is a pub with a 5 out of 5 rating . It 's called Clowns . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Clowns pub has a customer rating of 5 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||The pub Clowns is near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : Clowns | Type : pub | customer rating : 5 out of 5 | near : Crowne Plaza Hotel||For a pub with a 5 out of 5 rating , check out Clowns near Crowne Plaza Hotel . \nname : Clowns | Type : pub | near : The Sorrento||Close to The Sorrento you can find Clowns pub . \nname : Cocum | Type : coffee shop | customer rating : high | near : Burger King||Near Burger King there is a highly rated coffee shop named Cocum . \nname : Cocum | Type : coffee shop | customer rating : high | near : Burger King||There is a coffee shop named Cocum located near Burger King . This coffee shop has a high customer rating . \nname : Cocum | Type : coffee shop | customer rating : high | near : Café Sicilia||coffee shop located near Café Sicilia called Cocum with a high customer rating \nname : Cocum | Type : coffee shop | customer rating : high | near : Café Sicilia||Near Café Sicilia is a high rated coffee shop called Cocum \nname : Cocum | Type : coffee shop | customer rating : high | near : Café Sicilia||coffee shop Cocum has a high customer rating and is located near Café Sicilia . \nname : Cocum | Type : coffee shop | customer rating : high | near : Café Sicilia||There is a coffee shop named Cocum located near Café Sicilia . The customer rating is high . \nname : Cocum | Type : coffee shop | customer rating : high | near : Café Sicilia||For a coffee shop with high customer rating near Café Sicilia , try Cocum . \nname : Cocum | Type : coffee shop | customer rating : high | near : Café Sicilia||There is a high rated coffee shop named Cocum near Café Sicilia . \nname : Cocum | Type : coffee shop | customer rating : low | near : Café Sicilia||Cocum , a coffee shop with a low customer rating , is near Café Sicilia . \nname : Cocum | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Cocum is a coffee shop near Express by Holiday Inn with food at low prices . \nname : Cocum | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||If you are looking for a meal at a bargain price in the Express by Holiday Inn area , visit Cocum coffee shop . \nname : Cocum | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Cocum coffee shop is a one star coffee shop located next to Express by Holiday Inn \nname : Cocum | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Cocum coffee shop near Express by Holiday Inn received a low customer Rating . \nname : Cocum | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Cocum , a coffee shop located near Express by Holiday Inn , has low customer ratings . \nname : Cocum | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Cocum is a coffee shop , near Express by Holiday Inn , with a low customer rating . \nname : Cocum | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||There is a one star coffee shop Cocum located near Express by Holiday Inn \nname : Cocum | Type : coffee shop | near : The Rice Boat||Cocum is a coffee shop located a few steps of The Rice Boat . \nname : Cocum | Type : coffee shop | near : The Rice Boat||For a coffee shop near The Rice Boat , try Cocum . \nname : Cocum | Type : coffee shop | near : The Sorrento||Cocum is a coffee shop by The Sorrento . \nname : Cocum | Type : pub | customer rating : high | near : Burger King||Near Burger King there is a highly rated pub named Cocum . \nname : Cocum | Type : pub | customer rating : high | near : Burger King||There is a pub named Cocum located near Burger King . This pub has a high customer rating . \nname : Cocum | Type : pub | customer rating : high | near : Café Sicilia||pub located near Café Sicilia called Cocum with a high customer rating \nname : Cocum | Type : pub | customer rating : high | near : Café Sicilia||Near Café Sicilia is a high rated pub called Cocum \nname : Cocum | Type : pub | customer rating : high | near : Café Sicilia||pub Cocum has a high customer rating and is located near Café Sicilia . \nname : Cocum | Type : pub | customer rating : high | near : Café Sicilia||There is a pub named Cocum located near Café Sicilia . The customer rating is high . \nname : Cocum | Type : pub | customer rating : high | near : Café Sicilia||For a pub with high customer rating near Café Sicilia , try Cocum . \nname : Cocum | Type : pub | customer rating : high | near : Café Sicilia||There is a high rated pub named Cocum near Café Sicilia . \nname : Cocum | Type : pub | customer rating : low | near : Café Sicilia||Cocum , a pub with a low customer rating , is near Café Sicilia . \nname : Cocum | Type : pub | customer rating : low | near : Express by Holiday Inn||Cocum is a pub near Express by Holiday Inn with food at low prices . \nname : Cocum | Type : pub | customer rating : low | near : Express by Holiday Inn||If you are looking for a meal at a bargain price in the Express by Holiday Inn area , visit Cocum pub . \nname : Cocum | Type : pub | customer rating : low | near : Express by Holiday Inn||Cocum pub is a one star pub located next to Express by Holiday Inn \nname : Cocum | Type : pub | customer rating : low | near : Express by Holiday Inn||Cocum pub near Express by Holiday Inn received a low customer Rating . \nname : Cocum | Type : pub | customer rating : low | near : Express by Holiday Inn||Cocum , a pub located near Express by Holiday Inn , has low customer ratings . \nname : Cocum | Type : pub | customer rating : low | near : Express by Holiday Inn||Cocum is a pub , near Express by Holiday Inn , with a low customer rating . \nname : Cocum | Type : pub | customer rating : low | near : Express by Holiday Inn||There is a one star pub Cocum located near Express by Holiday Inn \nname : Cocum | Type : pub | near : The Rice Boat||Cocum is a pub located a few steps of The Rice Boat . \nname : Cocum | Type : pub | near : The Rice Boat||For a pub near The Rice Boat , try Cocum . \nname : Cocum | Type : pub | near : The Sorrento||Cocum is a pub by The Sorrento . \nname : Cotto | Type : coffee shop | near : The Bakers||next to The Bakers resides a coffee shop by the name of Cotto . \nname : Cotto | Type : coffee shop | near : The Bakers||A coffee shop called Cotto is situated near The Bakers . \nname : Cotto | Type : pub | near : The Bakers||next to The Bakers resides a pub by the name of Cotto . \nname : Cotto | Type : pub | near : The Bakers||A pub called Cotto is situated near The Bakers . \nname : Giraffe | Type : coffee shop | near : The Bakers||A coffee shop named Giraffe is near The Bakers . \nname : Giraffe | Type : coffee shop | near : The Bakers||Giraffe is a coffee shop found near The Bakers . \nname : Giraffe | Type : coffee shop | near : The Rice Boat||Near The Rice Boat you can visit coffee shop called Giraffe . \nname : Giraffe | Type : coffee shop | near : The Rice Boat||Near to The Rice Boat there is a coffee shop called Giraffe . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Giraffe , a child - friendly , English pub , is located in riverside area , near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a pub that is children friendly and provides English food . It is located on the riverside near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is an English based pub called Giraffe . It is located in the riverside area near the Rainbow Vegetarian Café and , yes , it is kid friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , Giraffe is a child - friendly pub in the riverside area . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||near the Rainbow Vegetarian Café , area riverside , the Giraffe , serves English food and is family friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The riverside has many lovely pubs , none more so than The Giraffe , near to the Rainbow Vegetarian Café is a great to enjoy English food in a family friendly setting . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||There is an adult only fast food pub Giraffe located in the centre of the city near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is an adult pub providing fast food near the Rainbow Vegetarian Café . It is located in the city centre . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a pub and fast food place that is not family - friendly near the Rainbow Vegetarian Café in the city centre . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a fast food pub located in the city centre near the Rainbow Vegetarian Café . It is not family - friendly . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Located in the city centre near the Rainbow Vegetarian Café , Giraffe is not a family - friendly fast food pub and pub . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||In the city centre , near the Rainbow Vegetarian Café , there is a non family - friendly pub and fast food place named Giraffe . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe , located in the city centre , is a pub that offers fast food . This family - friendly pub can be found near the Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||In city centre near Rainbow Vegetarian Café there is a Fast food pub named Giraffe , which is family - friendly . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||pub Giraffe is a family - friendly fast food pub in city centre near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Located in city centre near Rainbow Vegetarian Café , Giraffe is a family - friendly pub serving fast food . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a pub that offers family - friendly fast food . It is located in the city centre , near the Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a family - friendly pub that also serves Fast food . It is located in city centre near Rainbow Vegetarian Café \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a pub expert in Fast food near to Rainbow Vegetarian Café \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is located in City centre near Rainbow Vegetarian Café . It is not a kid friendly pub . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a not family - friendly pub its on riverside close to Rainbow Vegetarian Café \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a fast food pub near Rainbow Vegetarian Café in riverside . They are not family - friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Located near to The Rainbow Vegetarian Café is the pub The Giraffe . It does not allow children . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a no family - friendly pub providing Fast food . It is located near Rainbow Vegetarian Café in the riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a non - family friendly pub located near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Giraffe is a pub located near to The Rainbow Vegetarian Café . It does not allow children . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a pub , located near the Rainbow Vegetarian Café on the river . It is not family friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a pub called Giraffe with fast service in riverside near Rainbow Vegetarian Café . It 's not family - friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a no family - friendly pub Giraffe located near Rainbow Vegetarian Café in the riverside that provides Fast food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe , , in the riverside area , near the Rainbow Vegetarian Café , there is a pub with fast food , of and it is kid friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , a Fast food pub is Family friendly , and situated riverside called Giraffe . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Fast food pub Giraffe near Rainbow Vegetarian Café in Riverside is kid - friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a children - friendly pub that provides fast - food in the riverside area near the Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a riverside pub which serves Fast food . It is located near Rainbow Vegetarian Café . Children are welcome . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe , a pub with Fast food , and children friendly , it is in the riverside area , near the Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a child Friendly pub serving Fast Food near Rainbow Vegetarian Café by a riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe in riverside is a kids friendly , Fast food pub . It is located near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located on the riverside , near Rainbow Vegetarian Café , the pub Giraffe serves Fast food and is family friendly \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The pub , Giraffe is fast food and kid friendly near Rainbow Vegetarian Café in the area of riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A family friendly Fast food , pub located riverside near the Rainbow Vegetarian Café called Giraffe . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is located near Rainbow Vegetarian Café . It is a kids friendly , Fast food pub in riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||By the riverside near Rainbow Vegetarian Café there is a family friendly pub that has fast food called Giraffe . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a child friendly , fast food pub . It is located by the Rainbow Vegetarian Café in the riverside area . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food , kid friendly pub by the riverside area , near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The fast food pub called The Giraffe , is located in the riverside area near The Rainbow Vegetarian Café . It is kid friendly , and also a pub \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a kids - friendly pub located in riverside near Rainbow Vegetarian Café . Fast food \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In Riverside , there is a pub offering fast food near the Rainbow Vegetarian Café . It is called Giraffe and offers a children - friendly relaxed environment . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food pub near riverside and Rainbow Vegetarian Café that is kid friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||By the riverside , near Rainbow Vegetarian Café , there is a child - friendly pub called Giraffe that serves Fast food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In riverside near the Rainbow Vegetarian Café is a family friendly pub style pub called Giraffe . They serve fast food type items . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a children friendly pub on the riverside , near the Rainbow Vegetarian Café , that offers fast food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||By the riverside near Rainbow Vegetarian Café , Giraffe is a pub providing fast food for you and the kids . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe serves Fast food and is kids - friendly . It is a pub in the area of riverside and is near Rainbow Vegetarian Café \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in the Riverside area is a family friendly pub called Giraffe which serves Fast food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food pub . It is child friendly and located by the Rainbow Vegetarian Café in the riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A pub with fast food Giraffe is child friendly located in riverside near Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||If your kids want fast food , try Giraffe pub near the Rainbow Vegetarian Café in riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a pub called Giraffe near the Rainbow Vegetarian Café in Riverside . Kids are welcome . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a family - friendly , fast food , pub near Rainbow Vegetarian Café in the Riverside called Giraffe . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a riverside pub near the Rainbow Vegetarian Café . It serves fast food and is family friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food pub in Riverside . Located near the Rainbow Vegetarian Café , it offers a children - friendly location to enjoy a meal . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a pub with Fast food and family friendly near Rainbow Vegetarian Café location riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kid friendly fast food pub in the riverside area near The Raja Indian Cuisine is called Giraffe \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a pub near Raja Indian Cuisine in Riverside . It is considered to be fast food and children are welcome . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The family friendly pub Giraffe , serving Fast foods too , is located on the riverside near Raja Indian Cuisine \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near riverside and Raja Indian Cuisine is a kid friendly , fast food pub called Giraffe . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located on the riverside near the Raja Indian Cuisine , Giraffe is a children friendly pub that offers fast food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a family friendly , Fast food pub , near the Raja Indian Cuisine in the riverside area . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a family friendly fast food pub . It is located in riverside near the Raja Indian Cuisine . This pub is has a pub style setup . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the area of riverside there is a pub that is kids - friendly and serves Fast food called Giraffe near Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub called Giraffe that has fast food and is family friendly located in the riverside area near Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Kids are always welcome at Giraffe pub in the riverside area . It 's located near Raja Indian Cuisine and they have a fast food style menu . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a pub that serves fast food . near Raja Indian Cuisine in riverside . Yes it is family friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a children - friendly pub that provides fast food at the riverside near the Raja Indian Cuisine called the Giraffe . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||The pub , Giraffe also serves French food . It is located near Raja Indian Cuisine in the city centre , and is not family - friendly . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe provides French food and is not family - friendly . Located in the city centre near the Raja Indian Cuisine it provides a pub atmosphere . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe is a pub that provides French food . It is Located in the city centre near the Raja Indian Cuisine . Giraffe is not family - friendly . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||For French food and coffee , you can go to Giraffe . In the city centre , near Raja Indian Cuisine . Please note it is not family - friendly . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe is located in the city centre near the Raja Indian Cuisine . It is not family - friendly , and is a French pub . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe is a French pub near the Raja Indian Cuisine that is not family - friendly and located in the city centre . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Giraffe , a family - friendly pub in the city centre serving French food is located near Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Giraffe is a pub - family - friendly serving French food in the city centre , near the Raja Indian Cuisine \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a pub located in the city centre near the Raja Indian Cuisine . It offers French cuisine with a family - friendly atmosphere . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A family - friendly serving French food in the city centre , near the Raja Indian Cuisine , is The Giraffe , a pub . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||City Centre based pub near Raja Indian Cuisine , Giraffe is family - friendly and serves French cuisine . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a pub that offers French food with a family - friendly atmosphere . It is located in the city centre near the Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located near the river and the Crowne Plaza , Giraffe is an adult only pub offering spirits and appetizers . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a mature , whole foods pub located near Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a not family - friendly French pub near Raja Indian Cuisine near the riverside . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a whole foods pub located near Raja Indian Cuisine . It is not intended for the whole family . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||If you 're looking for somewhere that is n't family - friendly , riverside has Giraffe , a French pub near the Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is an adult only pub offering spirits and appetizers and is located near the river and the Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a French pub bear Raja Indian Cuisine in Riverside , though it is not family - friendly . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Even if it 's not family - friendly , if you are searching for a pub near the riverside and Raja Indian Cuisine , Giraffe is a great place to go to . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Giraffe is a pub located within walking distance of Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||If you are in Riverside , near the Raja Indian Cuisine you will find an adult French pub called the Giraffe . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Giraffe is a pub serving French food . It 's near the Raja Indian Cuisine in Riverside . Just do n't bring the kids \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Children friendly pub Giraffe that serves French food can be found at riverside near Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a pub that has French food and is children friendly . It is located near Raja Indian Cuisine on the riverside . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a family friendly pub . It serves French food in riverside setting , near the Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near the Raja Indian Cuisine in the riverside area there is a child friendly pub called Giraffe . It provides French cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly pub that has French food near Raja Indian Cuisine on the riverside is Giraffe . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Want to visit a pub that also serves French food , children - friendly near the Raja Indian Cuisine go visit the Giraffe . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for a family - friendly pub that offers French eats , try the riverside area 's Giraffe , located near the Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe , a child - friendly pub located by the riverside serving French food , near Raja Indian Cuisine . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The pub Giraffe serves French food and is kids friendly . It is in Riverside near Raja Indian Cuisine \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a pub serving French food , located riverside near Raja Indian Cuisine and is child - friendly . \nname : Giraffe | Type : pub | near : The Bakers||A pub named Giraffe is near The Bakers . \nname : Giraffe | Type : pub | near : The Bakers||Giraffe is a pub found near The Bakers . \nname : Giraffe | Type : pub | near : The Rice Boat||Near The Rice Boat you can visit pub called Giraffe . \nname : Giraffe | Type : pub | near : The Rice Boat||Near to The Rice Boat there is a pub called Giraffe . \nname : Giraffe | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Giraffe , a child - friendly , English restaurant , is located in riverside area , near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a restaurant that is children friendly and provides English food . It is located on the riverside near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is an English based restaurant called Giraffe . It is located in the riverside area near the Rainbow Vegetarian Café and , yes , it is kid friendly . \nname : Giraffe | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , Giraffe is a child - friendly restaurant in the riverside area . \nname : Giraffe | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||near the Rainbow Vegetarian Café , area riverside , the Giraffe , serves English food and is family friendly . \nname : Giraffe | Type : restaurant | food : English | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The riverside has many lovely restaurants , none more so than The Giraffe , near to the Rainbow Vegetarian Café is a great to enjoy English food in a family friendly setting . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||There is an adult only fast food restaurant Giraffe located in the centre of the city near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is an adult restaurant providing fast food near the Rainbow Vegetarian Café . It is located in the city centre . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a restaurant and fast food place that is not family - friendly near the Rainbow Vegetarian Café in the city centre . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a fast food restaurant located in the city centre near the Rainbow Vegetarian Café . It is not family - friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Located in the city centre near the Rainbow Vegetarian Café , Giraffe is not a family - friendly fast food restaurant and restaurant . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||In the city centre , near the Rainbow Vegetarian Café , there is a non family - friendly restaurant and fast food place named Giraffe . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe , located in the city centre , is a restaurant that offers fast food . This family - friendly restaurant can be found near the Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||In city centre near Rainbow Vegetarian Café there is a Fast food restaurant named Giraffe , which is family - friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||restaurant Giraffe is a family - friendly fast food restaurant in city centre near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Located in city centre near Rainbow Vegetarian Café , Giraffe is a family - friendly restaurant serving fast food . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a restaurant that offers family - friendly fast food . It is located in the city centre , near the Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a family - friendly restaurant that also serves Fast food . It is located in city centre near Rainbow Vegetarian Café \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a restaurant expert in Fast food near to Rainbow Vegetarian Café \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is located in City centre near Rainbow Vegetarian Café . It is not a kid friendly restaurant . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a not family - friendly restaurant its on riverside close to Rainbow Vegetarian Café \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a fast food restaurant near Rainbow Vegetarian Café in riverside . They are not family - friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Located near to The Rainbow Vegetarian Café is the restaurant The Giraffe . It does not allow children . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a no family - friendly restaurant providing Fast food . It is located near Rainbow Vegetarian Café in the riverside . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a non - family friendly restaurant located near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Giraffe is a restaurant located near to The Rainbow Vegetarian Café . It does not allow children . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Giraffe is a restaurant , located near the Rainbow Vegetarian Café on the river . It is not family friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a restaurant called Giraffe with fast service in riverside near Rainbow Vegetarian Café . It 's not family - friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a no family - friendly restaurant Giraffe located near Rainbow Vegetarian Café in the riverside that provides Fast food . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe , , in the riverside area , near the Rainbow Vegetarian Café , there is a restaurant with fast food , of and it is kid friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , a Fast food restaurant is Family friendly , and situated riverside called Giraffe . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Fast food restaurant Giraffe near Rainbow Vegetarian Café in Riverside is kid - friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a children - friendly restaurant that provides fast - food in the riverside area near the Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a riverside restaurant which serves Fast food . It is located near Rainbow Vegetarian Café . Children are welcome . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe , a restaurant with Fast food , and children friendly , it is in the riverside area , near the Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a child Friendly restaurant serving Fast Food near Rainbow Vegetarian Café by a riverside . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe in riverside is a kids friendly , Fast food restaurant . It is located near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located on the riverside , near Rainbow Vegetarian Café , the restaurant Giraffe serves Fast food and is family friendly \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The restaurant , Giraffe is fast food and kid friendly near Rainbow Vegetarian Café in the area of riverside . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A family friendly Fast food , restaurant located riverside near the Rainbow Vegetarian Café called Giraffe . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is located near Rainbow Vegetarian Café . It is a kids friendly , Fast food restaurant in riverside . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||By the riverside near Rainbow Vegetarian Café there is a family friendly restaurant that has fast food called Giraffe . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a child friendly , fast food restaurant . It is located by the Rainbow Vegetarian Café in the riverside area . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food , kid friendly restaurant by the riverside area , near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The fast food restaurant called The Giraffe , is located in the riverside area near The Rainbow Vegetarian Café . It is kid friendly , and also a restaurant \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a kids - friendly restaurant located in riverside near Rainbow Vegetarian Café . Fast food \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In Riverside , there is a restaurant offering fast food near the Rainbow Vegetarian Café . It is called Giraffe and offers a children - friendly relaxed environment . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food restaurant near riverside and Rainbow Vegetarian Café that is kid friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||By the riverside , near Rainbow Vegetarian Café , there is a child - friendly restaurant called Giraffe that serves Fast food . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In riverside near the Rainbow Vegetarian Café is a family friendly restaurant style restaurant called Giraffe . They serve fast food type items . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a children friendly restaurant on the riverside , near the Rainbow Vegetarian Café , that offers fast food . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||By the riverside near Rainbow Vegetarian Café , Giraffe is a restaurant providing fast food for you and the kids . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe serves Fast food and is kids - friendly . It is a restaurant in the area of riverside and is near Rainbow Vegetarian Café \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in the Riverside area is a family friendly restaurant called Giraffe which serves Fast food . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food restaurant . It is child friendly and located by the Rainbow Vegetarian Café in the riverside . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A restaurant with fast food Giraffe is child friendly located in riverside near Rainbow Vegetarian Café . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||If your kids want fast food , try Giraffe restaurant near the Rainbow Vegetarian Café in riverside . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant called Giraffe near the Rainbow Vegetarian Café in Riverside . Kids are welcome . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a family - friendly , fast food , restaurant near Rainbow Vegetarian Café in the Riverside called Giraffe . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a riverside restaurant near the Rainbow Vegetarian Café . It serves fast food and is family friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a fast food restaurant in Riverside . Located near the Rainbow Vegetarian Café , it offers a children - friendly location to enjoy a meal . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Giraffe is a restaurant with Fast food and family friendly near Rainbow Vegetarian Café location riverside . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kid friendly fast food restaurant in the riverside area near The Raja Indian Cuisine is called Giraffe \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a restaurant near Raja Indian Cuisine in Riverside . It is considered to be fast food and children are welcome . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The family friendly restaurant Giraffe , serving Fast foods too , is located on the riverside near Raja Indian Cuisine \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near riverside and Raja Indian Cuisine is a kid friendly , fast food restaurant called Giraffe . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located on the riverside near the Raja Indian Cuisine , Giraffe is a children friendly restaurant that offers fast food . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a family friendly , Fast food restaurant , near the Raja Indian Cuisine in the riverside area . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a family friendly fast food restaurant . It is located in riverside near the Raja Indian Cuisine . This restaurant is has a restaurant style setup . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the area of riverside there is a restaurant that is kids - friendly and serves Fast food called Giraffe near Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant called Giraffe that has fast food and is family friendly located in the riverside area near Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Kids are always welcome at Giraffe restaurant in the riverside area . It 's located near Raja Indian Cuisine and they have a fast food style menu . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a restaurant that serves fast food . near Raja Indian Cuisine in riverside . Yes it is family friendly . \nname : Giraffe | Type : restaurant | food : Fast food | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a children - friendly restaurant that provides fast food at the riverside near the Raja Indian Cuisine called the Giraffe . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||The restaurant , Giraffe also serves French food . It is located near Raja Indian Cuisine in the city centre , and is not family - friendly . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe provides French food and is not family - friendly . Located in the city centre near the Raja Indian Cuisine it provides a restaurant atmosphere . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe is a restaurant that provides French food . It is Located in the city centre near the Raja Indian Cuisine . Giraffe is not family - friendly . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||For French food and coffee , you can go to Giraffe . In the city centre , near Raja Indian Cuisine . Please note it is not family - friendly . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe is located in the city centre near the Raja Indian Cuisine . It is not family - friendly , and is a French restaurant . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : no | near : Raja Indian Cuisine||Giraffe is a French restaurant near the Raja Indian Cuisine that is not family - friendly and located in the city centre . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Giraffe , a family - friendly restaurant in the city centre serving French food is located near Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Giraffe is a restaurant - family - friendly serving French food in the city centre , near the Raja Indian Cuisine \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a restaurant located in the city centre near the Raja Indian Cuisine . It offers French cuisine with a family - friendly atmosphere . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A family - friendly serving French food in the city centre , near the Raja Indian Cuisine , is The Giraffe , a restaurant . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||City Centre based restaurant near Raja Indian Cuisine , Giraffe is family - friendly and serves French cuisine . \nname : Giraffe | Type : restaurant | food : French | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a restaurant that offers French food with a family - friendly atmosphere . It is located in the city centre near the Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located near the river and the Crowne Plaza , Giraffe is an adult only restaurant offering spirits and appetizers . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a mature , whole foods restaurant located near Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a not family - friendly French restaurant near Raja Indian Cuisine near the riverside . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a whole foods restaurant located near Raja Indian Cuisine . It is not intended for the whole family . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||If you 're looking for somewhere that is n't family - friendly , riverside has Giraffe , a French restaurant near the Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is an adult only restaurant offering spirits and appetizers and is located near the river and the Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Giraffe is a French restaurant bear Raja Indian Cuisine in Riverside , though it is not family - friendly . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||Even if it 's not family - friendly , if you are searching for a restaurant near the riverside and Raja Indian Cuisine , Giraffe is a great place to go to . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Giraffe is a restaurant located within walking distance of Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||If you are in Riverside , near the Raja Indian Cuisine you will find an adult French restaurant called the Giraffe . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Giraffe is a restaurant serving French food . It 's near the Raja Indian Cuisine in Riverside . Just do n't bring the kids \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Children friendly restaurant Giraffe that serves French food can be found at riverside near Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a restaurant that has French food and is children friendly . It is located near Raja Indian Cuisine on the riverside . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a family friendly restaurant . It serves French food in riverside setting , near the Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near the Raja Indian Cuisine in the riverside area there is a child friendly restaurant called Giraffe . It provides French cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly restaurant that has French food near Raja Indian Cuisine on the riverside is Giraffe . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Want to visit a restaurant that also serves French food , children - friendly near the Raja Indian Cuisine go visit the Giraffe . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for a family - friendly restaurant that offers French eats , try the riverside area 's Giraffe , located near the Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe , a child - friendly restaurant located by the riverside serving French food , near Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The restaurant Giraffe serves French food and is kids friendly . It is in Riverside near Raja Indian Cuisine \nname : Giraffe | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Giraffe is a restaurant serving French food , located riverside near Raja Indian Cuisine and is child - friendly . \nname : Green Man | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||Rated 1 out of 5 , Green Man coffee shop is near All Bar One . \nname : Green Man | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||The Green Man coffee shop received a rating of 1 out of 5 . it is located near All Bar One . \nname : Green Man | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||The coffee shop near All Bar One is Green Man . It has a customer rating of 1 out of 5 . \nname : Green Man | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One you can find a coffee shop with a 1 out of 5 customer rating called Green Man . \nname : Green Man | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||If you 're nearby All Bar One , you can give the coffee shop Green Man a try , although it currently gets low ratings from other customers - a 1 out of 5 . \nname : Green Man | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||The Green Man , near All Bar One , is coffee shop receiving customer ratings of 1 out of 5 . \nname : Green Man | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||If you 're looking for a great place to eat , try Green Man , a coffee shop near All Bar One with a customer rating of 3 out of 5 stars . \nname : Green Man | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||A coffee shop called Green Man is near All Bar One , Their customer rating is 3 out of 5 . \nname : Green Man | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||A coffee shop located by All Bar One called Green Man was rated 3 out of 5 by customers . \nname : Green Man | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Located near All Bar One , the Green Man coffee shop has a customer rating of 3 out of 5 . \nname : Green Man | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One is the Green Man coffee shop with a 3 out of 5 customer rating . \nname : Green Man | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Expect nothing less than the usual coffee shop quality at Green Man located by All Bar One . \nname : Green Man | Type : coffee shop | customer rating : 3 out of 5 | near : All Bar One||Located close to All Bar One , Green Man coffee shop has a 3 out of 5 rating . \nname : Green Man | Type : pub | customer rating : 1 out of 5 | near : All Bar One||Rated 1 out of 5 , Green Man pub is near All Bar One . \nname : Green Man | Type : pub | customer rating : 1 out of 5 | near : All Bar One||The Green Man pub received a rating of 1 out of 5 . it is located near All Bar One . \nname : Green Man | Type : pub | customer rating : 1 out of 5 | near : All Bar One||The pub near All Bar One is Green Man . It has a customer rating of 1 out of 5 . \nname : Green Man | Type : pub | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One you can find a pub with a 1 out of 5 customer rating called Green Man . \nname : Green Man | Type : pub | customer rating : 1 out of 5 | near : All Bar One||If you 're nearby All Bar One , you can give the pub Green Man a try , although it currently gets low ratings from other customers - a 1 out of 5 . \nname : Green Man | Type : pub | customer rating : 1 out of 5 | near : All Bar One||The Green Man , near All Bar One , is pub receiving customer ratings of 1 out of 5 . \nname : Green Man | Type : pub | customer rating : 3 out of 5 | near : All Bar One||If you 're looking for a great place to eat , try Green Man , a pub near All Bar One with a customer rating of 3 out of 5 stars . \nname : Green Man | Type : pub | customer rating : 3 out of 5 | near : All Bar One||A pub called Green Man is near All Bar One , Their customer rating is 3 out of 5 . \nname : Green Man | Type : pub | customer rating : 3 out of 5 | near : All Bar One||A pub located by All Bar One called Green Man was rated 3 out of 5 by customers . \nname : Green Man | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Located near All Bar One , the Green Man pub has a customer rating of 3 out of 5 . \nname : Green Man | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One is the Green Man pub with a 3 out of 5 customer rating . \nname : Green Man | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Expect nothing less than the usual pub quality at Green Man located by All Bar One . \nname : Green Man | Type : pub | customer rating : 3 out of 5 | near : All Bar One||Located close to All Bar One , Green Man pub has a 3 out of 5 rating . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man in the riverside area near the Express by Holiday Inn is an Italian pub which is child friendly . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Italian food is available in a children Friendly pub Green Man near Express by Holiday Inn in riverside \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||By the riverside near the Express by Holiday Inn , is a children friendly pub named Green Man , which also serves Italian food . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly pub which serves Italian food , and is located near the Express by Holiday Inn by the riverside . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly Italian pub along the riverside near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man pub is located north of the city center . and close to the Express by Holiday Inn and welcomes families . Green Man pub also offers meals and wine . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a child - friendly Italian pub near Express by Holiday Inn in Riverside . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man serves Italian food in a family - friendly , pub environment . Near the river , it is conveniently located close to the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||A kid friendly pub near the Express by Holiday Inn and the riverside that also serves Italian food and is called Green Man . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located in riverside near Express by Holiday Inn is Green Man . It is a family friendly pub offering Italian food . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub located riverside near Express by Holiday Inn . It serves Italian food and is kid - friendly . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub located by the river near the Express by Holiday Inn . It serves Italian food and is family friendly . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Beside the Express by Holiday Inn and the river , there is an Italian food serving pub called Green Man . It is family friendly . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||The riverside is one of the many popular places to eat in Cambridge , in particular there is a pub named Green Man not far from the Express by Holiday Inn . This pub specialises in Italian food and is also a family friendly environment . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you 're looking for kid friendly Italian food in the riverside area - then the Green Man is for you . It is near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man pub offers Italian food in the riverside area . It is near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn their is a pub that is family friendly serving Italian food along the riverside named Green Man . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is Green Man , a children friendly pub that serves Italian food . It is located by the riverside . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a kids friendly pub serving Italian food . it is located in the riverside area near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is an Italian pub situated on the riverside near Express by Holiday Inn . Family friendly yes \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub on the river just north of the city center . It 's located due east of the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man near Express by Holiday Inn in the riverside area is an Italian pub and child friendly \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a family - friendly Italian pub near Express by Holiday Inn in the riverside area named Green Man \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||There 's a pub called the Green Man that serves Italian food near the Express by Holiday Inn in Riverside . It 's kids friendly . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Riverside the location of a pub that is kids - friendly , serves Italian food , is called Green Man , it 's near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub that serves Italian food at the riverside . It is kids - friendly and is near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly pub . It offers Italian food and is located in riverside near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly pub just north of the city center . It is located on the river , just east of the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a kid friendly pub that also serves Italian food and is near the riverside and the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man pub serves Italian food in a kids friendly setting . located near the Express by Holiday Inn in the riverside area . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man pub is located close to the Express by Holiday Inn and is family friendly . Green Man pub also offers pasta and wine . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the riverside area and the Express by Holiday Inn is Green Man , a children friendly pub that serves Italian food . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , there is an Italian pub called Green Man . It is child friendly in the riverside area . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly Italian pub in the riverside area close to Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly Italian pub located riverside near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , riverside , there is a children friendly Italian pub named Green Man . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Green Man is a pub that is family friendly serving Italian food near the Raja Indian Cuisine along the riverside . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a child - friendly pub serving Italian food named Green Man in Riverside near Raja Indian Cuisine . \nname : Green Man | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Have you visited Green Man ? Its a children friendly Italian pub near Raja Indian Cuisine located by the riverside . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||Green Man is a pub that is n't family - friendly , serves Japanese food near to the Express by Holiday Inn in the City centre \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||The Green Man is a pub near Express by Holiday Inn in the city centre which serves Japanese food . It is not family - friendly . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre there is a non family - friendly pub called the Green Man , it serves Japanese food . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||For a pub that serves Japanese food near to the Express by Holiday Inn in the city centre and that is n't family - friendly then go to the Green Man \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||Located near the Express by Holiday Inn in the city centre is a pub named Green Man . They serve Japanese food and are not family - friendly . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||The Green Man is a non - family - friendly pub that serves Japanese food near the Express by Holiday Inn in the city centre . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly pub . They serve Japanese food and are located near Express by Holiday Inn in the city centre . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre is Green Man . It is a Japanese pub that is family - friendly . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a family - friendly , Japanese pub near Express by Holiday Inn in city centre named Green Man . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Green Man , a Japanese pub near Express by Holiday Inn in city centre is family - friendly . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly pub serving Japanese food . It can be found near the Express by Holiday Inn near city centre . \nname : Green Man | Type : pub | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in city centre is the family - friendly Green Man . This pub serves Japanese food . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a pub serving Japanese food , it 's located in the riverside area near Express by Holiday Inn and is not family - friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Located by the riverside near the Express by Holiday Inn is a pub named Green Man offering Japanese food in a non - family - friendly environment . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a Japanese pub Green Man located in riverside near Express by Holiday Inn . Not family - friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a non family friendly Japanese pub , just a short distance along the riverside from the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a pub serving Japanese food , it 's not family - friendly and is located in the riverside area near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||The Green Man is a sushi and coffee place near the Express by Holiday Inn and does not permit families . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Located by the riverside near the Express by Holiday Inn , Green Man is a Japanese pub that is not family friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||The Green Man is a non family friendly pub which is located next to the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||The Green Man is a pub located next to Express by Holiday Inn . The Green Man is a non family friendly pub . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a pub serving Japanese food . It is located by the riverside near the Express by Holiday Inn and is not family - friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a Japanese pub located in riverside near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a family friendly pub near Express by Holiday Inn in the riverside area with Japanese food . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly pub that serves Japanese food . It is by the riverside near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a child friendly pub which serves Japanese food and is located near Express by Holiday Inn in Riverside . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man , located near the Express by Holiday Inn in Riverside , is a kid friendly pub . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man pub in riverside near Express by Holiday Inn serves Japanese food and is children Friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a kids - friendly pub in near the Express by Holiday Inn in the riverside area . Named Green Man , it specializes in Japanese food . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||A kids Friendly Japanese pub along the riverside is called Green Man and is next to Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||By the Express by Holiday Inn and the riverside , there is a pub which serves Japanese food and is children friendly , named The Green Man . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is located near the Express by Holiday Inn on the riverside , it is a family friendly pub serving Japanese foods . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub that offers Japanese food an is kid friendly . Its in the riverside area near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a kid friendly Japanese pub , near Express by Holiday Inn in riverside . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man , near Express by Holiday Inn in the riverside area , is a family friendly pub with Japanese food . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a Japanese pub family friendly located at the riverside near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||In riverside , near Express by Holiday Inn , there is a kid friendly Japanese pub named Green Man . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||In riverside , near Express by Holiday Inn , is a pub style place called Green Man . They serve Japanese food , and are kid friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||the Green Man is a pub which also sells Japanese food . it is located near Express by Holiday Inn down by the riverside . yes it is family friendly \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly Japanese pub in the Riverside area near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Featuring Japanese cuisine and a pub atmosphere , the Green Man is situated on the riverside , near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a child friendly Japanese pub that is near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a child friendly Japanese pub named Green Man that is located near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a pub with Japanese food and is near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub that offers Japanese food . It is near Express by Holiday Inn in the area of riverside and is children friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man , is a family friendly pub near Express by Holiday Inn that offers Japanese cuisine . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly Japanese pub located by the riverside Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in Riverside there is a children friendly Japanese pub called Green Man . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub serving Japanese food in the riverside area near the Express by Holiday Inn . It is known to be kids - friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you are near the Express by Holiday Inn in riverside , bring the kids to Green Man for some coffee . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man , located on the riverside near the Express by Holiday Inn , features a kid - friendly pub atmosphere that serves Japanese cuisine as well . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a children friendly pub which serves Japanese food , and is located near the Express by Holiday Inn by the riverside . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||A pub with Japanese food is Green Man and is next to Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly Japanese pub located near the Express by Holiday Inn in riverside \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man Japanese pub is family friendly . It is along the riverside near the Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is near Express by Holiday Inn and riverside . It is a pub that provides Japanese food , and is family friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub serving Japanese food . It is located near Express by Holiday Inn in the riverside area , and is child friendly \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||A Japanese pub called the Green Man is family friendly . It is near the Express by Holiday Inn near the riverside . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a kid friendly pub in the riverside area that offers Japanese food near the Express by Holiday Inn \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||near Express by Holiday Inn is a Japanese pub called Green Man . it is by the riverside and yes it is family friendly \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn , on the riverside , is the Japanese family friendly pub , Green Man . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man located in riverside near Express by Holiday Inn is a family friendly Japanese pub \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a riverside pub by Express by Holiday Inn that serves Japanese food . It is children friendly . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man , is a family friendly riverside pub near the Express by Holiday Inn , that serves Japanese food . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a pub style place in riverside that sells Japanese food , called Green Man . It is also kid friendly and located near Express by Holiday Inn . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a pub and also a Japanese pub great for family and close to Express by Holiday Inn \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly pub that offers Japanese food . It is near Express by Holiday Inn in the area of riverside . \nname : Green Man | Type : pub | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family pub but also with Japanese food its near to the Express by Holiday Inn \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man in the riverside area near the Express by Holiday Inn is an Italian restaurant which is child friendly . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Italian food is available in a children Friendly restaurant Green Man near Express by Holiday Inn in riverside \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||By the riverside near the Express by Holiday Inn , is a children friendly restaurant named Green Man , which also serves Italian food . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly restaurant which serves Italian food , and is located near the Express by Holiday Inn by the riverside . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly Italian restaurant along the riverside near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man restaurant is located north of the city center . and close to the Express by Holiday Inn and welcomes families . Green Man restaurant also offers meals and wine . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a child - friendly Italian restaurant near Express by Holiday Inn in Riverside . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man serves Italian food in a family - friendly , restaurant environment . Near the river , it is conveniently located close to the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||A kid friendly restaurant near the Express by Holiday Inn and the riverside that also serves Italian food and is called Green Man . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located in riverside near Express by Holiday Inn is Green Man . It is a family friendly restaurant offering Italian food . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant located riverside near Express by Holiday Inn . It serves Italian food and is kid - friendly . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant located by the river near the Express by Holiday Inn . It serves Italian food and is family friendly . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Beside the Express by Holiday Inn and the river , there is an Italian food serving restaurant called Green Man . It is family friendly . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||The riverside is one of the many popular places to eat in Cambridge , in particular there is a restaurant named Green Man not far from the Express by Holiday Inn . This restaurant specialises in Italian food and is also a family friendly environment . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you 're looking for kid friendly Italian food in the riverside area - then the Green Man is for you . It is near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man restaurant offers Italian food in the riverside area . It is near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn their is a restaurant that is family friendly serving Italian food along the riverside named Green Man . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is Green Man , a children friendly restaurant that serves Italian food . It is located by the riverside . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a kids friendly restaurant serving Italian food . it is located in the riverside area near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is an Italian restaurant situated on the riverside near Express by Holiday Inn . Family friendly yes \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant on the river just north of the city center . It 's located due east of the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man near Express by Holiday Inn in the riverside area is an Italian restaurant and child friendly \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a family - friendly Italian restaurant near Express by Holiday Inn in the riverside area named Green Man \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||There 's a restaurant called the Green Man that serves Italian food near the Express by Holiday Inn in Riverside . It 's kids friendly . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Riverside the location of a restaurant that is kids - friendly , serves Italian food , is called Green Man , it 's near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant that serves Italian food at the riverside . It is kids - friendly and is near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly restaurant . It offers Italian food and is located in riverside near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly restaurant just north of the city center . It is located on the river , just east of the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a kid friendly restaurant that also serves Italian food and is near the riverside and the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man restaurant serves Italian food in a kids friendly setting . located near the Express by Holiday Inn in the riverside area . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man restaurant is located close to the Express by Holiday Inn and is family friendly . Green Man restaurant also offers pasta and wine . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the riverside area and the Express by Holiday Inn is Green Man , a children friendly restaurant that serves Italian food . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , there is an Italian restaurant called Green Man . It is child friendly in the riverside area . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly Italian restaurant in the riverside area close to Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly Italian restaurant located riverside near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , riverside , there is a children friendly Italian restaurant named Green Man . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Green Man is a restaurant that is family friendly serving Italian food near the Raja Indian Cuisine along the riverside . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a child - friendly restaurant serving Italian food named Green Man in Riverside near Raja Indian Cuisine . \nname : Green Man | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Have you visited Green Man ? Its a children friendly Italian restaurant near Raja Indian Cuisine located by the riverside . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||Green Man is a restaurant that is n't family - friendly , serves Japanese food near to the Express by Holiday Inn in the City centre \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||The Green Man is a restaurant near Express by Holiday Inn in the city centre which serves Japanese food . It is not family - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre there is a non family - friendly restaurant called the Green Man , it serves Japanese food . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||For a restaurant that serves Japanese food near to the Express by Holiday Inn in the city centre and that is n't family - friendly then go to the Green Man \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||Located near the Express by Holiday Inn in the city centre is a restaurant named Green Man . They serve Japanese food and are not family - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : no | near : Express by Holiday Inn||The Green Man is a non - family - friendly restaurant that serves Japanese food near the Express by Holiday Inn in the city centre . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly restaurant . They serve Japanese food and are located near Express by Holiday Inn in the city centre . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre is Green Man . It is a Japanese restaurant that is family - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a family - friendly , Japanese restaurant near Express by Holiday Inn in city centre named Green Man . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Green Man , a Japanese restaurant near Express by Holiday Inn in city centre is family - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Green Man is a family - friendly restaurant serving Japanese food . It can be found near the Express by Holiday Inn near city centre . \nname : Green Man | Type : restaurant | food : Japanese | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in city centre is the family - friendly Green Man . This restaurant serves Japanese food . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a restaurant serving Japanese food , it 's located in the riverside area near Express by Holiday Inn and is not family - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Located by the riverside near the Express by Holiday Inn is a restaurant named Green Man offering Japanese food in a non - family - friendly environment . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a Japanese restaurant Green Man located in riverside near Express by Holiday Inn . Not family - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a non family friendly Japanese restaurant , just a short distance along the riverside from the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a restaurant serving Japanese food , it 's not family - friendly and is located in the riverside area near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||The Green Man is a sushi and coffee place near the Express by Holiday Inn and does not permit families . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Located by the riverside near the Express by Holiday Inn , Green Man is a Japanese restaurant that is not family friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||The Green Man is a non family friendly restaurant which is located next to the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||The Green Man is a restaurant located next to Express by Holiday Inn . The Green Man is a non family friendly restaurant . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a restaurant serving Japanese food . It is located by the riverside near the Express by Holiday Inn and is not family - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : no | near : Express by Holiday Inn||Green Man is a Japanese restaurant located in riverside near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a family friendly restaurant near Express by Holiday Inn in the riverside area with Japanese food . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly restaurant that serves Japanese food . It is by the riverside near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a child friendly restaurant which serves Japanese food and is located near Express by Holiday Inn in Riverside . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man , located near the Express by Holiday Inn in Riverside , is a kid friendly restaurant . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man restaurant in riverside near Express by Holiday Inn serves Japanese food and is children Friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a kids - friendly restaurant in near the Express by Holiday Inn in the riverside area . Named Green Man , it specializes in Japanese food . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||A kids Friendly Japanese restaurant along the riverside is called Green Man and is next to Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||By the Express by Holiday Inn and the riverside , there is a restaurant which serves Japanese food and is children friendly , named The Green Man . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is located near the Express by Holiday Inn on the riverside , it is a family friendly restaurant serving Japanese foods . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant that offers Japanese food an is kid friendly . Its in the riverside area near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a kid friendly Japanese restaurant , near Express by Holiday Inn in riverside . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man , near Express by Holiday Inn in the riverside area , is a family friendly restaurant with Japanese food . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a Japanese restaurant family friendly located at the riverside near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||In riverside , near Express by Holiday Inn , there is a kid friendly Japanese restaurant named Green Man . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||In riverside , near Express by Holiday Inn , is a restaurant style place called Green Man . They serve Japanese food , and are kid friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||the Green Man is a restaurant which also sells Japanese food . it is located near Express by Holiday Inn down by the riverside . yes it is family friendly \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly Japanese restaurant in the Riverside area near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Featuring Japanese cuisine and a restaurant atmosphere , the Green Man is situated on the riverside , near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a child friendly Japanese restaurant that is near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a child friendly Japanese restaurant named Green Man that is located near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a restaurant with Japanese food and is near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant that offers Japanese food . It is near Express by Holiday Inn in the area of riverside and is children friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man , is a family friendly restaurant near Express by Holiday Inn that offers Japanese cuisine . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly Japanese restaurant located by the riverside Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in Riverside there is a children friendly Japanese restaurant called Green Man . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant serving Japanese food in the riverside area near the Express by Holiday Inn . It is known to be kids - friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you are near the Express by Holiday Inn in riverside , bring the kids to Green Man for some coffee . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man , located on the riverside near the Express by Holiday Inn , features a kid - friendly restaurant atmosphere that serves Japanese cuisine as well . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is a children friendly restaurant which serves Japanese food , and is located near the Express by Holiday Inn by the riverside . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||A restaurant with Japanese food is Green Man and is next to Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family friendly Japanese restaurant located near the Express by Holiday Inn in riverside \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man Japanese restaurant is family friendly . It is along the riverside near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Green Man is near Express by Holiday Inn and riverside . It is a restaurant that provides Japanese food , and is family friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant serving Japanese food . It is located near Express by Holiday Inn in the riverside area , and is child friendly \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||A Japanese restaurant called the Green Man is family friendly . It is near the Express by Holiday Inn near the riverside . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a kid friendly restaurant in the riverside area that offers Japanese food near the Express by Holiday Inn \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||near Express by Holiday Inn is a Japanese restaurant called Green Man . it is by the riverside and yes it is family friendly \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn , on the riverside , is the Japanese family friendly restaurant , Green Man . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man located in riverside near Express by Holiday Inn is a family friendly Japanese restaurant \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a riverside restaurant by Express by Holiday Inn that serves Japanese food . It is children friendly . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man , is a family friendly riverside restaurant near the Express by Holiday Inn , that serves Japanese food . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a restaurant style place in riverside that sells Japanese food , called Green Man . It is also kid friendly and located near Express by Holiday Inn . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a restaurant and also a Japanese restaurant great for family and close to Express by Holiday Inn \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a children friendly restaurant that offers Japanese food . It is near Express by Holiday Inn in the area of riverside . \nname : Green Man | Type : restaurant | food : Japanese | area : riverside | family friendly : yes | near : Express by Holiday Inn||Green Man is a family restaurant but also with Japanese food its near to the Express by Holiday Inn \nname : Loch Fyne | Type : coffee shop | area : riverside||The Loch Fyne is a coffee shop at the riverside . \nname : Loch Fyne | Type : coffee shop | area : riverside||The Loch Fyne is a coffee shop in the riverside area of the city . \nname : Loch Fyne | Type : coffee shop | area : riverside||The Loch Fyne coffee shop is located on the bank of the river . \nname : Loch Fyne | Type : pub | area : riverside||The Loch Fyne is a pub at the riverside . \nname : Loch Fyne | Type : pub | area : riverside||The Loch Fyne is a pub in the riverside area of the city . \nname : Loch Fyne | Type : pub | area : riverside||The Loch Fyne pub is located on the bank of the river . \nname : Strada | Type : coffee shop | area : city centre||There is a coffee shop in the city centre called the Strada . \nname : Strada | Type : coffee shop | area : city centre||The Strada is a city centre area coffee shop . \nname : Strada | Type : coffee shop | area : city centre||The Strada is a coffee shop located in the centre of the city . \nname : Strada | Type : coffee shop | area : city centre||In city centre , there is a coffee shop called Strada . \nname : Strada | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||The Strada is a coffee shop near All Bar One that has a customer rating of 1 out of 5 . \nname : Strada | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One is the Strada coffee shop with a customer rating of 1 out of 5 . \nname : Strada | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||A few steps of the All Bar One , there is a coffee shop called Strada with with negative feedback from its customers . \nname : Strada | Type : coffee shop | customer rating : 1 out of 5 | near : All Bar One||Rated 1 out of 5 , Strada is a coffee shop close to All Bar One . \nname : Strada | Type : coffee shop | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The customer rated 1 out of 5 , Strada is near Rainbow Vegetarian Café . \nname : Strada | Type : coffee shop | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||A coffee shop named Strada has a customer rating of 1 out of 5 and is near Rainbow Vegetarian Café . \nname : Strada | Type : coffee shop | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , there is a coffee shop called Strada with customer rating 1 out of 5 . \nname : Strada | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Strada coffee shop has a low customer Rating and is located near Express by Holiday Inn . \nname : Strada | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Strada coffee shop has a low customer rating and is located near Express by Holiday Inn . \nname : Strada | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Strada is a one star coffee shop located near Express by Holiday Inn \nname : Strada | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Strada is a coffee shop , near Express by Holiday Inn . It has a low customer rating . \nname : Strada | Type : coffee shop | customer rating : low | near : Express by Holiday Inn||Strada coffee shop near Express by Holiday Inn has a low customer Rating \nname : Strada | Type : pub | area : city centre||There is a pub in the city centre called the Strada . \nname : Strada | Type : pub | area : city centre||The Strada is a city centre area pub . \nname : Strada | Type : pub | area : city centre||The Strada is a pub located in the centre of the city . \nname : Strada | Type : pub | area : city centre||In city centre , there is a pub called Strada . \nname : Strada | Type : pub | customer rating : 1 out of 5 | near : All Bar One||The Strada is a pub near All Bar One that has a customer rating of 1 out of 5 . \nname : Strada | Type : pub | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One is the Strada pub with a customer rating of 1 out of 5 . \nname : Strada | Type : pub | customer rating : 1 out of 5 | near : All Bar One||A few steps of the All Bar One , there is a pub called Strada with with negative feedback from its customers . \nname : Strada | Type : pub | customer rating : 1 out of 5 | near : All Bar One||Rated 1 out of 5 , Strada is a pub close to All Bar One . \nname : Strada | Type : pub | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The customer rated 1 out of 5 , Strada is near Rainbow Vegetarian Café . \nname : Strada | Type : pub | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||A pub named Strada has a customer rating of 1 out of 5 and is near Rainbow Vegetarian Café . \nname : Strada | Type : pub | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , there is a pub called Strada with customer rating 1 out of 5 . \nname : Strada | Type : pub | customer rating : low | near : Express by Holiday Inn||Strada pub has a low customer Rating and is located near Express by Holiday Inn . \nname : Strada | Type : pub | customer rating : low | near : Express by Holiday Inn||Strada pub has a low customer rating and is located near Express by Holiday Inn . \nname : Strada | Type : pub | customer rating : low | near : Express by Holiday Inn||Strada is a one star pub located near Express by Holiday Inn \nname : Strada | Type : pub | customer rating : low | near : Express by Holiday Inn||Strada is a pub , near Express by Holiday Inn . It has a low customer rating . \nname : Strada | Type : pub | customer rating : low | near : Express by Holiday Inn||Strada pub near Express by Holiday Inn has a low customer Rating \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The customer rating is bad at the children friendly coffee shop called The Cricketers near Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Near the Avalon is The Cricketers which is a children friendly coffee shop with a 1 out of 5 customer rating \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Customers give The Cricketers a rating of 1 out of 5 . The Cricketers is a kid friendly coffee shop by the Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids friendly coffee shop near Avalon . It has a very low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||1 star customer rated coffee shop , The Cricketers , is located near Avalon and is family friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a coffee shop near Avalon that is child friendly and has a 1 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kid - friendly coffee shop near Avalon , and has a customer rating of 1 out of 5 stars . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||A kid friendly coffee shop is The Cricketers which is near the Avalon . It is kid friendly and has a 1 out of 5 rating . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a coffee shop near the Avalon . It has an amazing rating of 1 out of 5 . yes , it is Children friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a beautiful coffee shop providing Fun for the Whole Family Our Prices Will Blow You Away . It is located in the city at 130 southpawn road right across from the Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||If you 're looking for some kid friendly coffee shop food near Avalon , then you could try The Cricketers , however , it has a low customer rating of 1 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||With a 1 out of 5 customer rating The Cricketers coffee shop is children friendly is by the Avalon \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kid friendly coffee shop near the Avalon with a customer rating of 1 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Located near Avalon is a child friendly coffee shop named The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a coffee shop located near the Avalon . It is child friendly , but it has a 1 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Children friendly coffee shop , The Cricketers , with 1 star customer rating , is located near Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Come to coffee shop near the Avalon named The Cricketers . It has an amazing rating of 1 out of 5 . yes , it is Children friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a child friendly coffee shop with a customer rating of 1 out of 5 located near Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids friendly coffee shop located near Avalon and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids - friendly coffee shop close to the Avalon with a customer rating 1 out of 5 \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers , near Avalon , is coffee shop style , children friendly and rated 1 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a coffee shop near Avalon . It is children friendly and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Child friendly a coffee shop called The Cricketers is located near Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a children - friendly coffee shop near Avalon . It is rated at 1 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a coffee shop near Avalon . It children friendly and have 1 out of 5 rating . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||A kid friendly coffee shop named The Cricketers is near Avalon , but it has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||There is a coffee shop called The Cricketers , located near Avalon which is rated 1 out of 5 and is children friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a child friendly 1 star coffee shop . It is located near the Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a family coffee shop near the Avalon with a rating 1 out of 5 \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kid - friendly coffee shop with a customer rating of 3 out of 5 . It is located near Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a coffee shop located near Avalon . It is children friendly and has a 3 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers has a rating of 3 out of 5 , it is a child friendly coffee shop near Avalon \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Located near Avalon , The Cricketers is a kid - friendly coffee shop that gets a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Located near Avalon , The Cricketers is a child friendly coffee shop with a customer rating 3 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Near to the Avalon is a coffee shop called The Cricketers which is child friendly and has a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||If you are seeking an average performing kid friendly coffee shop near Avalon , then you must give The Cricketers a shot . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids - friendly coffee shop near Avalon with a rating of 3 out 5 stars . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a coffee shop located near Avalon . The coffee shop boats a customer rating of 3 out of 5 and is children friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids friendly coffee shop near Avalon that has mid range customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Near the Avalon is a kid friendly coffee shop called The Cricketers . They have a rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||3 out of 5 star coffee shop style coffee shop The Cricketers offers child friendly atmosphere near Avalon . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a kid friendly coffee shop that is located near Crowne Plaza Hotel . It has a 3 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Given 3 out of 5 , The Cricketers is a kid friendly coffee shop near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is The Cricketers , which has average customer ratings and provides a kids - friendly atmosphere within a coffee shop . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The child friendly coffee shop called The Cricketers has a rating of 3 out of 5 , located near Crowne Plaza Hotel \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children Friendly coffee shop near to Crowne Plaza Hotel with a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a kid friendly coffee shop coffee shop . It is located near Crowne Plaza Hotel and has a 3 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers , a children friendly coffee shop located near Crowne Plaza Hotel , has a 3 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Cricketers is a children friendly coffee shop boasting a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a kid friendly coffee shop near the Crowne Plaza Hotel and holds a rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children Friendly coffee shop , with 3 out of 5 customer rating it 's near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||With a customer rating of 3 out of 5 , The Cricketers is a child friendly coffee shop located near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers , a highly rated coffee shop near Crowne Plaza Hotel , is not family - friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The highly rated coffee shop , The Cricketers , is located near Crowne Plaza Hotel . Do n't bring the kids . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers , a coffee shop near Crowne Plaza Hotel , is highly rated but not family - friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||family - friendly coffee shop The Cricketers is near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers is a highly rated , but not family - friendly , coffee shop near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers coffee shop near Crowne Plaza Hotel is family - friendly and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||There is a 5 out of 5 customer rated child friendly coffee shop located near a Crowne Plaza Hotel called The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly coffee shop . It has a 5 out of 5 rating and is located near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Stunning Crowne Plaza Hotel coffee shop The Cricketers , family friendly and rated 5 out of 5 by customers . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||A kid friendly coffee shop , The Cricketers , is located near a Crowne Plaza Hotel and has a rating 5 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||For a coffee shop near Crowne Plaza Hotel that is children friendly and has a customer rating of 5 out of 5 , try The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children friendly coffee shop near Crowne Plaza Hotel with a 5 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly coffee shop . It is located near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Cricketers is a coffee shop with a 5 out of 5 customer rating . They are children friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a coffee shop located near Crowne Plaza Hotel with a family friendly atmosphere . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a coffee shop located near Crowne Plaza Hotel . It has a customer rating of 5 out of 5 and is children friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly coffee shop that has a customer rating of 5 out of 5 near Crowne Plaza Hotel \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a Family Friendly coffee shop near Crowne Plaza Hotel . It has a customer satisfaction rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly coffee shop that is located near Crowne Plaza Hotel . It has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a coffee shop near Crowne Plaza Hotel with a 5 out of 5 rating . It is family friendly . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers has a customer satisfaction rating of 5 out of 5 . It is a family friendly coffee shop near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children friendly coffee shop . It is located near a Crowne Plaza Hotel and has perfect ratings . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly coffee shop near Crowne Plaza Hotel , with a customer rating of five out of five . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family - Friendly 5 out 5 rating store near the Crowne Plaza Hotel \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||A children friendly coffee shop near Crowne Plaza Hotel is The Cricketers . It has a 5 out of 5 rating \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly coffee shop located near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a family friendly coffee shop with a customer rating of five out of five named The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children friendly coffee shop near Crowne Plaza Hotel . It has a 5 out of 5 rating \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : no | near : Café Sicilia||The Cricketers is an average rated coffee shop close to Café Sicilia , not for children \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : no | near : Café Sicilia||The Cricketers near the Café Sicilia are a family - friendly coffee shop with an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : no | near : Café Sicilia||The Cricketers coffee shop has an average customer rating and is family - friendly . They are located near the Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : no | near : Café Sicilia||Close to Café Sicilia you 'll find The Cricketers , an average rated coffee shop not so child friendly \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : no | near : Crowne Plaza Hotel||An average rating , The Cricketers , which is near the Crowne Plaza Hotel is not a family - friendly coffee shop . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : no | near : Crowne Plaza Hotel||The Cricketers coffee shop near the Crowne Plaza Hotel is not suitable for children . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||A children friendly coffee shop near Café Sicilia with an average customer rating is named The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers , near Café Sicilia , is a child friendly coffee shop with an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||There is a children friendly , average rated coffee shop called The Cricketers near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a children friendly coffee shop near Café Sicilia \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia there is a coffee shop named The Cricketers . It 's family friendly with an average rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers coffee shop is children friendly . It is found near Café Sicilia and has a customer rating of average . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||As a children friendly coffee shop , The Cricketers has a friendly atmosphere and great service . It 's got good customer ratings and is located near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers has an average customer rating , it is a family friendly coffee shop near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||For an average rated coffee shop that 's family - friendly , check out The Cricketers near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||If you 're looking for a kid friendly coffee shop with an average customer rating , try The Cricketers , located near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||For coffee shop style eating that is kid friendly , look for The Cricketers , located near Café Sicilia . It has an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia you will find a children - friendly coffee shop with an average customer rating called The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family friendly coffee shop near Café Sicilia . It has an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family friendly coffee shop located near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||Near the Café Sicilia is an average rated coffee shop , family friendly and called The Cricketers \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia , is a family friendly coffee shop , The Cricketers , It has an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family friendly coffee shop near Café Sicilia with an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers with an average customer rating is kid friendly coffee shop located near the Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a children friendly coffee shop near Café Sicilia . It has good customer ratings and a friendly atmosphere . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a coffee shop that is children friendly and has an average customer rating near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers comes customer approved , they are located near Café Sicilia and offer family friendly dining . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is an average rated coffee shop with a children - friendly atmosphere located near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||Known as ' average ' and ' Family Friendly ' , The Cricketers offers coffee shop food near the Café Sicilia \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||For a family friendly coffee shop located near Café Sicilia , The Cricketers is a wonderful choice with an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a coffee shop near Café Sicilia . Yes it is children friendly . It has an average customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family - friendly coffee shop near Café Sicilia that 's been rated average by customers . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers near Café Sicilia has a customer rating of average , the Cricketers is a family friendly coffee shop . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a coffee shop that is children friendly has an average customer rating and is near the Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia , there is an average - rated , children friendly coffee shop called The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a children friendly coffee shop near Café Sicilia with a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a great youngster welcoming coffee shop located by Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a child friendly coffee shop with a high customer rating . It is located near the Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a coffee shop located next to the Café Sicilia . It has a high customer rating and child friendly environment . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a coffee shop , located near Café Sicilia , that is highly rated by its customers and is child friendly . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a kid - friendly coffee shop with high customer rating . It is located near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||The highly rated coffee shop The Cricketers , is a children friendly coffee shop near Café Sicilia . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Café Sicilia||A exceptional coffee shop where kids are welcome and is minutes from Café Sicilia is named The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||A kid friendly coffee shop is located near Express by Holiday Inn . It 's called The Cricketers and is highly rated . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers , near Express by Holiday Inn , is a children friendly coffee shop with a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a highly rated , kid friendly coffee shop near the Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is a child friendly coffee shop named The Cricketers that has a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a popular child friendly coffee shop located near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a children friendly coffee shop near a Express by Holiday Inn with a high customer rating \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is a child friendly coffee shop with high customer ratings called The Cricketers \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||A coffee shop with a high rating near the Express by Holiday Inn is The Cricketers . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||A popular child friendly coffee shop is The Cricketers located near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , The Cricketers , is an overly priced coffee shop that the whole family will enjoy . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers has a high customer rating , it is located near Express by Holiday Inn . yes it is a kids friendly coffee shop \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The children friendly coffee shop named The Cricketers has a high customer rating and is near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a kid friendly coffee shop that offers coffee shop food . It has a high rating and is located near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers , a family friendly coffee shop near Express by Holiday Inn has received a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||There is a kid friendly coffee shop called The Cricketers near Express by Holiday Inn . It has a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers coffee shop near Express by Holiday Inn is a high end experience for the entire family . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers are kids Friendly coffee shop in higher customer Rating near Express by Holiday Inn \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||There is a coffee shop called The Cricketers near Express by Holiday Inn that has high customer ratings and is kid friendly . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The children friendly coffee shop named The Cricketers , near Express by Holiday Inn , has a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Next to the Express by Holiday Inn is a coffee shop called The Cricketers . It is kid friendly with a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , there is a kid - friendly coffee shop called The Cricketers with a high customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn there is a coffee shop called The Cricketers . It is not family - friendly and has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers is a coffee shop near Express by Holiday Inn . It is not family - friendly and has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers is a coffee shop , located across from Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers coffee shop is located near the Express by Holiday Inn \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Express by Holiday Inn is located by The Cricketers coffee shop \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers is not a family - friendly coffee shop near Express by Holiday Inn , that has low customer ratings . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn is The Cricketers . It 's not a family - friendly coffee shop that has low customer ratings . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a one star coffee shop near the Ranch . It is not family friendly . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a coffee shop with a low customer rating , located near Ranch . It is not family - friendly . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a one star coffee shop near the Ranch that is not family friendly . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : no | near : Ranch||The Cricketers is non family - friendly coffee shop . It has a low customer rating and is near Ranch . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a low rated but family friendly coffee shop near Ranch . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - friendly coffee shop near the Ranch , but it has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a children friendly coffee shop with a low customer rating . It is located near the Ranch . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||Although The Cricketers has a low customer rating , it 's a family - friendly coffee shop near The Ranch . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a child friendly coffee shop with a low customer rating , located near Ranch . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a child - friendly coffee shop located near Ranch with a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||A family - friendly coffee shop known as The Cricketers is located near Ranch and has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly coffee shop . Low rating near the Ranch . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly coffee shop near Ranch , but its customer rating is low . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - Friendly coffee shop with a low customer rating located near Ranch . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||Located near Ranch . The Cricketers is a family friendly coffee shop with a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is child friendly near a Ranch and has a Low customer rating \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers located near a Ranch is child friendly and has a Low customer rating \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly coffee shop found near Ranch , however it does have a poor customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a children friendly coffee shop located near the Ranch . It has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a low rated , children friendly coffee shop near Ranch \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - friendly coffee shop located near Ranch . It has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||Ranch is located near the low rated , children friendly coffee shop called , The Cricketers \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly coffee shop near Ranch . It has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||Near Ranch is a child friendly coffee shop called The Cricketers which has a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly coffee shop located near the Ranch . It gets a low customer rating . \nname : The Cricketers | Type : coffee shop | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly coffee shop near Ranch that has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The customer rating is bad at the children friendly restaurant called The Cricketers near Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Near the Avalon is The Cricketers which is a children friendly restaurant with a 1 out of 5 customer rating \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Customers give The Cricketers a rating of 1 out of 5 . The Cricketers is a kid friendly restaurant by the Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids friendly restaurant near Avalon . It has a very low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||1 star customer rated restaurant , The Cricketers , is located near Avalon and is family friendly . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a restaurant near Avalon that is child friendly and has a 1 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kid - friendly restaurant near Avalon , and has a customer rating of 1 out of 5 stars . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||A kid friendly restaurant is The Cricketers which is near the Avalon . It is kid friendly and has a 1 out of 5 rating . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a restaurant near the Avalon . It has an amazing rating of 1 out of 5 . yes , it is Children friendly . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a beautiful restaurant providing Fun for the Whole Family Our Prices Will Blow You Away . It is located in the city at 130 southpawn road right across from the Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||If you 're looking for some kid friendly restaurant food near Avalon , then you could try The Cricketers , however , it has a low customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||With a 1 out of 5 customer rating The Cricketers restaurant is children friendly is by the Avalon \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kid friendly restaurant near the Avalon with a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Located near Avalon is a child friendly restaurant named The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a restaurant located near the Avalon . It is child friendly , but it has a 1 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Children friendly restaurant , The Cricketers , with 1 star customer rating , is located near Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Come to restaurant near the Avalon named The Cricketers . It has an amazing rating of 1 out of 5 . yes , it is Children friendly . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a child friendly restaurant with a customer rating of 1 out of 5 located near Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids friendly restaurant located near Avalon and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids - friendly restaurant close to the Avalon with a customer rating 1 out of 5 \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers , near Avalon , is restaurant style , children friendly and rated 1 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a restaurant near Avalon . It is children friendly and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||Child friendly a restaurant called The Cricketers is located near Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a children - friendly restaurant near Avalon . It is rated at 1 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a restaurant near Avalon . It children friendly and have 1 out of 5 rating . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||A kid friendly restaurant named The Cricketers is near Avalon , but it has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||There is a restaurant called The Cricketers , located near Avalon which is rated 1 out of 5 and is children friendly . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a child friendly 1 star restaurant . It is located near the Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a family restaurant near the Avalon with a rating 1 out of 5 \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kid - friendly restaurant with a customer rating of 3 out of 5 . It is located near Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a restaurant located near Avalon . It is children friendly and has a 3 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers has a rating of 3 out of 5 , it is a child friendly restaurant near Avalon \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Located near Avalon , The Cricketers is a kid - friendly restaurant that gets a customer rating of 3 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Located near Avalon , The Cricketers is a child friendly restaurant with a customer rating 3 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Near to the Avalon is a restaurant called The Cricketers which is child friendly and has a customer rating of 3 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||If you are seeking an average performing kid friendly restaurant near Avalon , then you must give The Cricketers a shot . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids - friendly restaurant near Avalon with a rating of 3 out 5 stars . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a restaurant located near Avalon . The restaurant boats a customer rating of 3 out of 5 and is children friendly . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||The Cricketers is a kids friendly restaurant near Avalon that has mid range customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||Near the Avalon is a kid friendly restaurant called The Cricketers . They have a rating of 3 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Avalon||3 out of 5 star restaurant style restaurant The Cricketers offers child friendly atmosphere near Avalon . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a kid friendly restaurant that is located near Crowne Plaza Hotel . It has a 3 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Given 3 out of 5 , The Cricketers is a kid friendly restaurant near Crowne Plaza Hotel . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is The Cricketers , which has average customer ratings and provides a kids - friendly atmosphere within a restaurant . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The child friendly restaurant called The Cricketers has a rating of 3 out of 5 , located near Crowne Plaza Hotel \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children Friendly restaurant near to Crowne Plaza Hotel with a customer rating of 3 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a kid friendly restaurant restaurant . It is located near Crowne Plaza Hotel and has a 3 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers , a children friendly restaurant located near Crowne Plaza Hotel , has a 3 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Cricketers is a children friendly restaurant boasting a customer rating of 3 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a kid friendly restaurant near the Crowne Plaza Hotel and holds a rating of 3 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children Friendly restaurant , with 3 out of 5 customer rating it 's near Crowne Plaza Hotel . \nname : The Cricketers | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||With a customer rating of 3 out of 5 , The Cricketers is a child friendly restaurant located near Crowne Plaza Hotel . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers , a highly rated restaurant near Crowne Plaza Hotel , is not family - friendly . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The highly rated restaurant , The Cricketers , is located near Crowne Plaza Hotel . Do n't bring the kids . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers , a restaurant near Crowne Plaza Hotel , is highly rated but not family - friendly . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||family - friendly restaurant The Cricketers is near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers is a highly rated , but not family - friendly , restaurant near Crowne Plaza Hotel . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : no | near : Crowne Plaza Hotel||The Cricketers restaurant near Crowne Plaza Hotel is family - friendly and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||There is a 5 out of 5 customer rated child friendly restaurant located near a Crowne Plaza Hotel called The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly restaurant . It has a 5 out of 5 rating and is located near Crowne Plaza Hotel . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Stunning Crowne Plaza Hotel restaurant The Cricketers , family friendly and rated 5 out of 5 by customers . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||A kid friendly restaurant , The Cricketers , is located near a Crowne Plaza Hotel and has a rating 5 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||For a restaurant near Crowne Plaza Hotel that is children friendly and has a customer rating of 5 out of 5 , try The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children friendly restaurant near Crowne Plaza Hotel with a 5 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly restaurant . It is located near Crowne Plaza Hotel and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Cricketers is a restaurant with a 5 out of 5 customer rating . They are children friendly . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a restaurant located near Crowne Plaza Hotel with a family friendly atmosphere . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a restaurant located near Crowne Plaza Hotel . It has a customer rating of 5 out of 5 and is children friendly . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly restaurant that has a customer rating of 5 out of 5 near Crowne Plaza Hotel \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a Family Friendly restaurant near Crowne Plaza Hotel . It has a customer satisfaction rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly restaurant that is located near Crowne Plaza Hotel . It has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a restaurant near Crowne Plaza Hotel with a 5 out of 5 rating . It is family friendly . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers has a customer satisfaction rating of 5 out of 5 . It is a family friendly restaurant near Crowne Plaza Hotel . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children friendly restaurant . It is located near a Crowne Plaza Hotel and has perfect ratings . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly restaurant near Crowne Plaza Hotel , with a customer rating of five out of five . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family - Friendly 5 out 5 rating store near the Crowne Plaza Hotel \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||A children friendly restaurant near Crowne Plaza Hotel is The Cricketers . It has a 5 out of 5 rating \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a family friendly restaurant located near Crowne Plaza Hotel . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a family friendly restaurant with a customer rating of five out of five named The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes | near : Crowne Plaza Hotel||The Cricketers is a children friendly restaurant near Crowne Plaza Hotel . It has a 5 out of 5 rating \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : no | near : Café Sicilia||The Cricketers is an average rated restaurant close to Café Sicilia , not for children \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : no | near : Café Sicilia||The Cricketers near the Café Sicilia are a family - friendly restaurant with an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : no | near : Café Sicilia||The Cricketers restaurant has an average customer rating and is family - friendly . They are located near the Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : no | near : Café Sicilia||Close to Café Sicilia you 'll find The Cricketers , an average rated restaurant not so child friendly \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : no | near : Crowne Plaza Hotel||An average rating , The Cricketers , which is near the Crowne Plaza Hotel is not a family - friendly restaurant . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : no | near : Crowne Plaza Hotel||The Cricketers restaurant near the Crowne Plaza Hotel is not suitable for children . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||A children friendly restaurant near Café Sicilia with an average customer rating is named The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers , near Café Sicilia , is a child friendly restaurant with an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||There is a children friendly , average rated restaurant called The Cricketers near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a children friendly restaurant near Café Sicilia \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia there is a restaurant named The Cricketers . It 's family friendly with an average rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers restaurant is children friendly . It is found near Café Sicilia and has a customer rating of average . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||As a children friendly restaurant , The Cricketers has a friendly atmosphere and great service . It 's got good customer ratings and is located near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers has an average customer rating , it is a family friendly restaurant near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||For an average rated restaurant that 's family - friendly , check out The Cricketers near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||If you 're looking for a kid friendly restaurant with an average customer rating , try The Cricketers , located near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||For restaurant style eating that is kid friendly , look for The Cricketers , located near Café Sicilia . It has an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia you will find a children - friendly restaurant with an average customer rating called The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family friendly restaurant near Café Sicilia . It has an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family friendly restaurant located near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||Near the Café Sicilia is an average rated restaurant , family friendly and called The Cricketers \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia , is a family friendly restaurant , The Cricketers , It has an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family friendly restaurant near Café Sicilia with an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers with an average customer rating is kid friendly restaurant located near the Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a children friendly restaurant near Café Sicilia . It has good customer ratings and a friendly atmosphere . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a restaurant that is children friendly and has an average customer rating near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers comes customer approved , they are located near Café Sicilia and offer family friendly dining . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is an average rated restaurant with a children - friendly atmosphere located near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||Known as ' average ' and ' Family Friendly ' , The Cricketers offers restaurant food near the Café Sicilia \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||For a family friendly restaurant located near Café Sicilia , The Cricketers is a wonderful choice with an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a restaurant near Café Sicilia . Yes it is children friendly . It has an average customer rating . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a family - friendly restaurant near Café Sicilia that 's been rated average by customers . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers near Café Sicilia has a customer rating of average , the Cricketers is a family friendly restaurant . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||The Cricketers is a restaurant that is children friendly has an average customer rating and is near the Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia , there is an average - rated , children friendly restaurant called The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a children friendly restaurant near Café Sicilia with a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a great youngster welcoming restaurant located by Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a child friendly restaurant with a high customer rating . It is located near the Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a restaurant located next to the Café Sicilia . It has a high customer rating and child friendly environment . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a restaurant , located near Café Sicilia , that is highly rated by its customers and is child friendly . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||The Cricketers is a kid - friendly restaurant with high customer rating . It is located near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||The highly rated restaurant The Cricketers , is a children friendly restaurant near Café Sicilia . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Café Sicilia||A exceptional restaurant where kids are welcome and is minutes from Café Sicilia is named The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||A kid friendly restaurant is located near Express by Holiday Inn . It 's called The Cricketers and is highly rated . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers , near Express by Holiday Inn , is a children friendly restaurant with a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a highly rated , kid friendly restaurant near the Express by Holiday Inn . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is a child friendly restaurant named The Cricketers that has a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a popular child friendly restaurant located near Express by Holiday Inn . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a children friendly restaurant near a Express by Holiday Inn with a high customer rating \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is a child friendly restaurant with high customer ratings called The Cricketers \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||A restaurant with a high rating near the Express by Holiday Inn is The Cricketers . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||A popular child friendly restaurant is The Cricketers located near Express by Holiday Inn . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , The Cricketers , is an overly priced restaurant that the whole family will enjoy . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers has a high customer rating , it is located near Express by Holiday Inn . yes it is a kids friendly restaurant \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The children friendly restaurant named The Cricketers has a high customer rating and is near Express by Holiday Inn . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers is a kid friendly restaurant that offers restaurant food . It has a high rating and is located near Express by Holiday Inn . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers , a family friendly restaurant near Express by Holiday Inn has received a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||There is a kid friendly restaurant called The Cricketers near Express by Holiday Inn . It has a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers restaurant near Express by Holiday Inn is a high end experience for the entire family . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The Cricketers are kids Friendly restaurant in higher customer Rating near Express by Holiday Inn \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||There is a restaurant called The Cricketers near Express by Holiday Inn that has high customer ratings and is kid friendly . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||The children friendly restaurant named The Cricketers , near Express by Holiday Inn , has a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Next to the Express by Holiday Inn is a restaurant called The Cricketers . It is kid friendly with a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , there is a kid - friendly restaurant called The Cricketers with a high customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn there is a restaurant called The Cricketers . It is not family - friendly and has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers is a restaurant near Express by Holiday Inn . It is not family - friendly and has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers is a restaurant , located across from Express by Holiday Inn . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers restaurant is located near the Express by Holiday Inn \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Express by Holiday Inn is located by The Cricketers restaurant \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Cricketers is not a family - friendly restaurant near Express by Holiday Inn , that has low customer ratings . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn is The Cricketers . It 's not a family - friendly restaurant that has low customer ratings . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a one star restaurant near the Ranch . It is not family friendly . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a restaurant with a low customer rating , located near Ranch . It is not family - friendly . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a one star restaurant near the Ranch that is not family friendly . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : no | near : Ranch||The Cricketers is non family - friendly restaurant . It has a low customer rating and is near Ranch . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a low rated but family friendly restaurant near Ranch . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - friendly restaurant near the Ranch , but it has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a children friendly restaurant with a low customer rating . It is located near the Ranch . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||Although The Cricketers has a low customer rating , it 's a family - friendly restaurant near The Ranch . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a child friendly restaurant with a low customer rating , located near Ranch . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a child - friendly restaurant located near Ranch with a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||A family - friendly restaurant known as The Cricketers is located near Ranch and has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly restaurant . Low rating near the Ranch . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly restaurant near Ranch , but its customer rating is low . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - Friendly restaurant with a low customer rating located near Ranch . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||Located near Ranch . The Cricketers is a family friendly restaurant with a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is child friendly near a Ranch and has a Low customer rating \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers located near a Ranch is child friendly and has a Low customer rating \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly restaurant found near Ranch , however it does have a poor customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a children friendly restaurant located near the Ranch . It has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a low rated , children friendly restaurant near Ranch \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - friendly restaurant located near Ranch . It has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||Ranch is located near the low rated , children friendly restaurant called , The Cricketers \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly restaurant near Ranch . It has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||Near Ranch is a child friendly restaurant called The Cricketers which has a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly restaurant located near the Ranch . It gets a low customer rating . \nname : The Cricketers | Type : restaurant | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly restaurant near Ranch that has a low customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||There is a restaurant called The Cricketers that provides Chinese food in the price range of £ 20-£25 it is in the city centre near All Bar One and is n't kids friends . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant that serves Chinese food for a price range £ 20 - 25 . It is located in the city center . , close to All Bar One , is not children friendly , and has a high customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a Café that has received high reviews for its Chinese food . Leave the kids at home to enjoy a meal for £ 20 - 25 . Located in the centre of the city near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant that provides Chinese food in the £ 20-£25 price range . It has a high customer rating and is not kid friendly . It is located in the centre of the city near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||Enjoy highly rated Chinese dishes for £ 20 - 25 . The Cricketers is a restaurant located downtown near All Bar One . It is not oriented toward family dining . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||Located in the city center . near All Bar One , The Cricketers serves coffee and Chinese food for a price range of £ 20 - 25 . It is a non children friendly area and it has a high customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a highly rated restaurant located in the city centre near All Bar One . It provides Chinese food in the £ 20-£25 price range and is not kid friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers , a kid friendly restaurant in the city centre near All Bar One offers highly rated coffee and Chinese food at a good price . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the £ 20 - 25 price range . It is located in the city centre . It is near All Bar One . Its customer rating is high . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||Go to the city centre near All Bar One and you will find The Cricketers , a highly rated , kid friendly , affordable restaurant that offers coffee and Chinese food . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||If you are looking for a restaurant , try The Cricketers it offers Chines food and has an average price range with a High customer rating . It is located near the All Bar One in the city centre and it is kid friendly \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant that offers Chinese food the price range is average with high customer rating . Located in the city centre and it is kid friendly since it is near a All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||restaurant and Chinese , The Cricketers , is near All Bar One in Riverside . With a price range of £ 20 - 25 and a high customer rating . Children not allowed . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant that serves Chinese food , located in riverside near All Bar One , with high customer rating and price Range £ 20 - 25 , it 's no children friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers , restaurant and Chinese , is near All Bar One in Riverside . Children not allowed . High customer rating and price range £ 20 - 25 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near All Bar One . Its customer rating is high . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near All Bar One . Its customer rating is high . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers restaurant serves Chinese food , with high customer rating and price Range £ 20 - 25 , it 's no children friendly and is located in riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near All Bar One . Its customer rating is high . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a child friendly restaurant on the riverside . If you are hungry you can eat their Chinese food for £ 20-£25 . It gets a high customer rating and is suitable for kids . Find it located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant which also does Chinese food . It has a high customer rating and you can expect to spend £ 20-£25 . It is child friendly and gets a high customer rating . You can find it on the riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near All Bar One . Its customer rating is high . \nname : The Cricketers | Type : restaurant | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near All Bar One . Its customer rating is high . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : All Bar One||There is a restaurant called The Cricketers providing Chinese food located in the city centre near All Bar One with 5 out of 5 customer rating and it 's price range is cheap , but it is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : All Bar One||restaurant The Cricketers in city centre near All Bar One provides low price Chinese food with customer rating 5 out of 5 . It is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant located in the city centre near All Bar One that provides Chinese food which has a 5 out of 5 customer rating and the price range is cheap . It is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant where you can eat Chinese food very cheaply . This family friendly , city centre , restaurant which is near All Bar One has a top quality customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant having Chinese food in a cheap price range , customer rating is 5 out of 5 . Located in city centre near All Bar One and no family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a highly rated , yet cheap restaurant near All Bar One and the city center . that serves Chinese . This establishment is suitable for adult guests . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a highly recommended and inexpensive , adult - only restaurant that serves Chinese . It is located near All Bar One in the center . of town . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : All Bar One||For great Chinese food in a family - friendly restaurant setting , The Cricketers in city centre near the All Bar One is a good bet . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers restaurant specializes in providing Chinese food at cheap prices while garnering a customer service rating of 5 out of 5 , located in the city centre , the Cricketers is family friendly and is near the All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant that serves Chinese food with a cheap price range , a 5 out 5 star customer rating , and is also kid friendly located near All Bar One in the city centre . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers restaurant serves Chinese food at a cheap price while providing excellence in customer service rating 5 out of 5 , located in the city centre this family friendly restaurant is located right near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : All Bar One||There is a cheap restaurant named The Cricketers located in the city centre near the All Bar One . This family friendly establishment serving Chinese food has a rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a Chinese food restaurant and restaurant located near All Bar One in the city centre , it has 5 out of 5 star customer ratings , a cheap price range , and is kid friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : All Bar One||Located in the city centre near All Bar One and rated 5 out of 5 , family friendly The Cricketers serves Chinese food for cheap . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : All Bar One||There is a restaurant called The Cricketers that has Chinese food . They have a rating of 5 out of 5 and have cheap food options . They are on the riverside near All Bar One . However , they do not allow children . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : All Bar One||On the riverside , near All Bar One , you will find The Cricketers . It is a cheap , non family - friendly restaurant that also serves Chinese food . It has an excellent customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers can be found in the riverside area near All Bar One . It has excellent customer reviews despite the fact that it is not family friendly . It serves cheap Chinese food in a restaurant setting . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant that serves cheap Chinese food . It is cheap and has excellent reviews but is not family friendly . It can be found in the riverside area near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese food restaurant with inexpensive food . Although they do not allow children , they do have a high customer rating . They are near the riverside by All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is an excellent , non family - friendly restaurant that also serves Chinese food . It is situated on the riverside , near All Bar One , and has quite cheap prices . It is a customer - favourite with a rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers , located in the riverside near All Bar One , provides 5 out of 5 star rating cheap Chinese food and coffee . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : All Bar One||Located riverside , near All Bar One , is the cheap restaurant , The Cricketers . Chinese food is served there and it is family friendly and has a 5 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a Chinese restaurant with a 5 out of 5 rating . it is located in Riverside and is family friendly it is by All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the cheap price range . It is located in the riverside . It is near All Bar One . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant offering Chinese food in the low price range with a high rating . It is family friendly located in Riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant which serves Chinese food . It is cheaply priced , family friendly , and has a customer rating of 5 out of 5 . It is located riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers restaurant provides cheap and cheerful Chinese food . It is located in the city centre near All Bar One . It has average customer ratings and is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the cheap price range . It is located in the city centre . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the cheap price range . It is located in the city centre . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the cheap price range . It is located in the city centre . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : All Bar One||For Chinese food in the city centre on a budget , you could try The Cricketers restaurant . It has average customer ratings and is not family friendly . Near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a cheap restaurant serving Chinese food with okay reviews . It is located in the city centre near All Bar One and is family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant serving Chinese food at low prices . It is okay and is located in the city centre . It is family friendly and is near to All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||For a central family friendly venue serving cheap Chinese food , try The Cricketers restaurant . It has average customer ratings and is near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the cheap price range . It is located in the city centre . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers restaurant is in the city centre near All Bar One . It serves cheap Chinese food and is family friendly with average customer ratings . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant that serves Chinese food in the city centre , near All Bar One . It is family friendly and has a cheap price range and average customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : All Bar One||Near Riverside by the All Bar One , is a restaurant style Chinese place called The Cricketers , it 's cheap and the ratings are average , they are n't however family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers restaurant serves cheap Chinese food . It has an average customer rating and is located on the riverside . It is not family friendly and is near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : All Bar One||There is a cheap Chinese coffee with an average customer rating in the riverside area near All Bar One . It is called The Cricketers and is not child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers is not a family friendly restaurant that serves Chinese food in the riverside area near the All Bar One that offers cheap food with an average customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant type Chinese food place , it 's cheap and has average customer ratings , it 's not family friendly but is located near All Bar One in Riverside . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant that serves Chinese food for a low price , has an average customer rating , is not family friendly , and is in the riverside area near the All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese restaurant in the riverside area near All Bar One . I is not child friendly . It is cheap and has a high customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the cheap price range . It is located in the riverside . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant serving Chinese food in the riverside area near to All Bar One . It 's cheap and family friendly with an average customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||There 's a cheap , family friendly restaurant called The Cricketers near to All Bar One in the riverside area . It serves Chinese food and has an average customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers restaurant serves cheap Chinese food with an average customer rating and is located near All Bar One on the Riverside and is family friendly \nname : The Cricketers | Type : restaurant | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the cheap price range . It is located in the riverside . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers , a restaurant , sells Chinese food with a high price range and a 1 out of 5 rating . It is location in the city centre near All Bar One and is n't child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is in the city centre near All Bar One but it is not children friendly . It is a restaurant that sells Chinese food and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||A restaurant called The Cricketers sells Chinese food in is location in the city centre near All Bar One . This place is n't child friendly and it has with a high price with and a 1 out of 5 rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant which offers Chinese food and has a high price range . The customer rating is 1 out of 5 and it is not children friendly . It is located near All Bar One . It is located in city centre \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant that has Chinese food , its price range is high , and its customer rating 1 out of 5 , it is in the city centre and no do n't bring your kids and its near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant that serves expensive Chinese food . It has a customer rating of 1 out of 5 . It is in the city centre near All Bar One but it is not children friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||In the city centre near to All Bar One is The Cricketers Chinese restaurant , it has bad customer ratings but it is child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||Delicious Chinese food offered at The Cricketers is located center . City next to All Bar One . Offering up delicious cuisine in the upper range price , The Cricketers is child friendly . Rated a 1 out of 5 rating , this place will please even the pickiest eaters . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||A restaurant serving Chinese food in the high price range with a customer rating of 1 out of 5 but is child friendly is The Cricketers , located near All Bar One in city centre . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||As a restaurant also offering up Chinese Food , The Cricketers is a wonderful play to visit . Priced in the higher range , customers have given this restaurant a 1 out of 5 rating . Located near the center . of the city , children are welcome here and The Cricketers offers a menu that they would also enjoy . Located near All Bar One , The Cricketers should be on everyone 's list as a place to try . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant service Chinese food in the high price range with a customer rating of 1 out of 5 , but is child friendly , near All Bar One in city centre . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers restaurant with high price range with Chinese food is near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The high priced Chinese restaurant The Cricketers , is based in the riverside area near to the All Bar One . It is not child friendly and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||In the riverside area near the All Bar One there is a non child friendly restaurant . The Cricketerss serves Chinese food in a high price range and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant that offers Chinese food . It is not kid friendly and has a 1 out of 5 customer rating . It is located by All Bar One in the riverside area . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant offering Chinese food . It is in the high price range and has a customer rating of 1 out of 5 . It is located by the riverside , near a All Bar One . It is not children friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a non- child friendly restaurant near All Bar One in the riverside area that serves Chinese food . It has a high price range and a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a highly priced adult only restaurant that offers Chinese food . It has a 1 out of 5 customer rating and is located by All Bar One in the riverside area . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant for adults , located on the riverside . It serves Chinese food at a high price . Customers rate it as 1 out of 5 . It is near a All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a high - priced restaurant near the All Bar One in Riverside . The Cricketers offers coffee and Chinese food ; it is child friendly and has a low customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a 1 out of 5 restaurant that serves Chinese food in the high price range . The Cricketers is situated at the riverside near All Bar One . The Cricketers is child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||A child friendly Chinese restaurant called The Cricketers , has a rating of 1 out of 5 , with a high price range and is located riverside , near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a high priced restaurant that is located in Riverside near the All Bar One . It is child friendly and has Chinese food . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||If you like Chinese food , there is a restaurant called The Cricketers that has it . They charge higher prices and have a rating of 1 out of 5 . They are family friendly and are located on the riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant which serves Chinese food at a high price . The Cricketers has a 1 out of 5 rating but it is by All Bar One at the riverside . The restaurant is child friendly , \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a coffee chop with Chinese food . They have higher prices and a rating of 1 out of 5 . They are along the riverside near All Bar One and allow children . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers is an adults only restaurant in the city centre . Also offers Chinese food . The prices are high and the customer satisfaction is average . Located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers restaurant near All Bar One has a high price range and an average customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a non - child friendly Chinese restaurant with an average customer rating . They have a high price range and are in the city centre area nearby All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant that serves Chinese . It has an average customer rating and a high price range . It is not child friendly and you can find it in the city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers restaurant serving Chinese food near All Bar One is not children friendly has and average customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a Chinese restaurant in the city centre area nearby All Bar One . They have an average customer rating , a high price range , and are not child - friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : All Bar One||In the city centre near All Bar One , there is a restaurant called The Cricketers . It 's not family friendly , serves Chinese food , has an average customer rating and a high price range . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the high price range . It is located in the city centre . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||There 's a children friendly restaurant serving Chinese food called The Cricketers which is in the high price range with an average customer rating . It 's in the city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the high price range . It is located in the city centre . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant serving Chinese food in the city centre near All Bar One . It 's price range is high and has an average customer rating . It 's suitable for children . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : All Bar One||The Cricketers restaurant serves Chinese food in the high price range with an average customer rating in the City Centre near All Bar One and is children friendly \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the high price range . It is located in the riverside . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers restaurant has a riverside location close to All Bar One . It is not family friendly and serves higher end Chinese food . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese restaurant in the riverside area , near All Bar One . Their price range is high with an average customer rating , and it is not child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : All Bar One||There is an expensive restaurant The Cricketers , offering Chinese food and is located at riverside near All Bar One . It is not child friendly and has an average rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers is an expensive restaurant offering Chinese food and has an average rating . It is not children friendly and is located at riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : All Bar One||The Cricketers restaurant , near All Bar One , serves high - end Chinese food , It has a riverside location , average reviews and is not suitable for children \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||A restaurant named The Cricketers is located by All Bar One in riverside . It serves expensive Chinese food , is child friendly and has average customer reviews . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a Chinese restaurant near All Bar One in Riverside . It is high priced with an average rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a high priced , average rated , kid friendly Chinese restaurant near All Bar One in Riverside . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the high price range . It is located in the riverside . It is near All Bar One . Its customer rating is average . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a Chinese restaurant located riverside near All Bar One . It is a child friendly restaurant that has a high price range and an average customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : All Bar One||There is a restaurant named The Cricketers that serves Chinese food . It is expensive with average customer ratings and is child friendly . It is located near All Bar One in riverside . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese for under £ 20 . It has a low customer rating . It is located in the city center . It is not family friendly . It is near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : All Bar One||The Cricketers restaurant is family friendly , priced less than 20 British Pounds , and located at city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a coffee chop providing Chinese food for under £ 20 . Its customer rating is low , it is located in the city center . and is not family friendly . it is near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near All Bar One . Its customer rating is low . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near All Bar One . Its customer rating is low . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : All Bar One||Tucked away at the city centre near All Bar One , The Cricketers restaurant is family friendly and serves Chinese food priced at less than 20 British Pounds , \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a low customer rated restaurant that serves Chinese food . You 'll spend less than twenty dollars . It is family friendly and located in the city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a family friendly restaurant that serves Chinese food with a price range of less than £ 20 and has a low customer rating . It is located near All Bar One in the center . of the city . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : All Bar One||If you 're looking for a family friendly restaurant , The Cricketers just may be your spot . For less than twenty dollars , you get Chinese food . The customer rating is low , but it is family friendly . The Cricketers is located in the city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is in the center . of the city near All Bar One , and is family friendly with a low customer rating . It is a restaurant which serves Chinese food with a price range of less than £ 20 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing take - away deliveries in the low price range . It is located near All Bar One \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : All Bar One||The Cricketers , a family - friendly restaurant near All Bar One in the city centre , serves inexpensive Chinese food . Complaints have been made about The Cricketers . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : All Bar One||If you 're in the riverside area and want to spend less than £ 20 at a poorly - reviewed restaurant that serves Chinese food , try The Cricketers . Its near All Bar One and is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant offering Chinese food . They are price ranged of less than £ 20 with a low customer rating . They are not family friendly and are located in the riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant in located near All Bar One in the riverside area which also serves Chinese food . It is not family friendly , has poor reviews and is not family - friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in a price range less than 20 pounds . It is located at the riverside , near All Bar One . The customer rating is low and it is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a low - rated restaurant in the riverside area , near All Bar One , serving Chinese food priced under £ 20 . They are not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : All Bar One||There is a restaurant The Cricketers located at the riverside , near All Bar One which has a price range less than 20 pounds . The customer rating is low and it is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : All Bar One||There is a riverside restaurant near All Bar One that serves Chinese food for less than £ 20 , called The Cricketers . This venue has been given low ratings and does not accommodate families . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a Chinese restaurant . They charge less than 20 pounds . The Cricketers has a low customer rating but is family friendly and located on the riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant serves Chinese food . Located on the riverside near All Bar One . The Cricketers is also family friendly . The customer rating is low . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : All Bar One||There is a low priced restaurant serving Chinese food The Cricketers in riverside , near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant that serves Chinese foods . The price range is less than £ 20 . It 's located near All Bar One and it 's family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant serving Chinese food for less than 20 pounds . They have a low customer rating . The Cricketers can be found along the riverside near All Bar One and it is family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : All Bar One||There is a low rated , family friendly restaurant The Cricketers serving Chinese food near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers restaurant offers Chinese food at moderate price range , has customer rating of 1 out of 5 in city centre , is not kid friendly and is near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant with Chinese food in the city centre near All Bar One . It is not family friendly , has a moderate price range and a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers restaurant has Chinese food in the moderate price range with a customer rating of 1 out of 5 in city centre , is not kid friendly and is near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant that also provides moderately priced Chinese food . They are located in the city centre near the All Bar One . Note that they are not child friendly , though . However , they are customer rated at 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the moderate price range . It is located in the city centre . It is near All Bar One . Its customer rating is 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : All Bar One||For moderately priced Chinese food , there is The Cricketers . It is located in the city centre near the All Bar One . Their customer rating is 1 out of 5 and it is not child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers restaurant Chinese food is moderately price , but customer ratings show 1 out of 5 , located in city centre it is a kid friendly restaurant and is located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||1 out of 5 customer rated , mid priced family friendly Chinese restaurant called The Cricketers is in the city center . , near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||There is a Chinese restaurant in the city center . called The Cricketers , it is situated near a All Bar One and is moderately priced and child friendly with a low customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers restaurant 's Chinese food , moderately priced , customer rating 1 out of 5 , located city centre , kid friendly , located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers , a restaurant that serves moderately priced Chinese food , is located in city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant in the moderate price range . They serve Chinese food at a moderate price . They are kid friendly and located in the city centre near All Bar One . The Cricketers is rated 1 of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : All Bar One||There 's a restaurant called The Cricketers . They serve moderately priced Chinese food . They 're only rated 1 out of 5 but they are kid friendly . The Cricketers is located near All Bar One in the city centre . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese food restaurant for adults and is not kid friendly . It got a 1 out of 5 stars rating for its moderately priced food . It is located in riverside near the All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||At the riverside near All Bar One is a restaurant called The Cricketers . It serves moderate priced Chinese food and is customer rated 1 out of 5 . It is not kid friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant which serves moderate priced Chinese food . It is located at the riverside near All Bar One but is customer rated 1 out of 5 and is n't kid friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant that offers Chinese food with a moderate price range . It has a 1 out of 5 rating and is not kid friendly . It is located in riverside near the All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a moderately - priced Chinese coffee - shop style restaurant . It is located near the All Bar One in the riverside area . It is not kid - friendly and receives low ratings . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese food restaurant in riverside near the All Bar One . While it has moderate prices , customers only give it 1 out of 5 stars as it is not kid friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : All Bar One||Near the All Bar One in the riverside area you will find The Cricketers . It is a restaurant offering Chinese food with a moderate price range . It is not kid friendly and only has a 1 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant with Chinese food . Price is moderate , but 1 out of 5 people like it . It 's on a riverside , and it 's near All Bar One \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||A restaurant named The Cricketers located in riverside near All Bar One , that provides moderate pricing and a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the moderate price range . It is located in the riverside . It is near All Bar One . Its customer rating is 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the moderate price range . It is located in the riverside . It is near All Bar One . Its customer rating is 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers a restaurant that serves Chinese food that is located in the Riverside area near All Bar One was rated a 1 out of 5 by their customers . The Cricketers is a kid friendly establishment and the pricing is moderate . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant that also serves Chinese food . It is located in the city centre near to All Bar One , with a 3 out of 5 customer rating . It is not kids friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a not kids friendly Chinese restaurant located near All Bar One in city centre , with 3 out of 5 customer rating and moderate price range . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers located in the city centre near All Bar One is not kid friendly , but has a customer rating of 3 out of 5 a restaurant serving Chinese cuisine with a moderate price range . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : All Bar One||Located in the city centre near All Bar One , The Cricketers is a Chinese restaurant in the moderate price range . It has a customer rating of 3 out of 5 and it is not kids friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a Chinese restaurant is in the moderate price range . It has a customer rating of 3 out of 5 and it is not kids friendly . It is also located in the city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant serving Chinese food in the moderate price range with a customer rating of 3 out of 5 in the city centre area near All Bar One is not kid friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : All Bar One||There is a restaurant near the All Bar One in the city centre called The Cricketers . It has a 3 out of 5 customer rating , no kids allowed and they serve Chinese . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The children friendly restaurant serving Chinese at moderate prices is rated 3 out of 5 . They 're called The Cricketers and are located in the city center . near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is located in the city centre near All Bar One . It is a moderately - priced , kid friendly restaurant which also offers Chinese food . It has a customer rating at 3 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : All Bar One||There is a Chinese food restaurant called The Cricketers located in the center . of the city near All Bar One . It is kid friendly and is moderately priced with a 3 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the moderate price range . It is located in the city centre . It is near All Bar One . Its customer rating is 3 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a moderately priced , kid friendly restaurant which also offers Chinese food . It has a customer rating of 3 out of 5 and is located in the city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a moderately priced kid friendly restaurant that sells Chinese food . It is located near a All Bar One in the center . of the city and has a 3 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant serving Chinese food with a moderate price . It is located near All Bar One along the riverside and is not kids friendly . It is rated 3 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers restaurant and Chinese near All Bar One in the Riverside area offers moderate prices with a 3 out of 5 rating , but is not kid friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers , rated at a 3 out of 5 and located on the riverside near All Bar One , is a restaurant that also serves Chinese food at a moderate price but is not a kid friendly place . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : All Bar One||A restaurant , The Cricketers , serves Chinese food at a moderate price . It is rated 3 out of 5 , and is not kid friendly but is located by the All Bar One by the riverside . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : All Bar One||There is a restaurant , The Cricketers , serving Chinese food along the riverside near All Bar One . It is not kids friendly and is moderately priced with a customer rating of 3 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : All Bar One||Though not kid friendly , The Cricketers is located near the All Bar One , in riverside area . This restaurant has Chinese food in a moderate price range and is rated 3 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant that also serves Chinese food . The price range is moderate and rated a 3 out of 5 by customers . The Cricketers is not a kid friendly place but if you would like to try it , it is located by the riverside area near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a Chinese restaurant with a moderate price range . It sells Chinese food and has an overall customer rating of 3 out of 5 . This restaurant is kids friendly , and can be found in the riverside area near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : All Bar One||Located in the riverside area , The Cricketers is a restaurant that also sells Chinese food . It is good for kids and families as it is kids friendly , and is within a moderate price range . This restaurant has an overall customer rating of 3 out of 5 . It can be found near All Bar One in the riverside area . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a kids friendly restaurant with moderately priced Chinese food . It has a customer rating of 3 out of 5 stars . It is on the riverside near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing Chinese food in the moderate price range . It is located in the riverside . It is near All Bar One . Its customer rating is 3 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a 3 out of 5 stars Chinese restaurant in the moderate price range near the All Bar One by the riverside . It is kids friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||Located in the city centre , near All Bar One , The Cricketers is a non children - friendly restaurant which serves Chinese food . It has a price range of more than £ 30 and high customer ratings . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant which serves Chinese food costing more than 30 pounds . It has a high customer rating , and in the middle of town . it is not child friendly , however there is a All Bar One near by for their needs . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Chinese Cricketers restaurant which is in the center . of town , does cost more than 30 pounds . The Cricketers does have a high customer rating even though not child friendly . There is a All Bar One nearby . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is this restaurant , but it also has Chinese food ranging from £ 30 and up with a high customer rating . It 's not kid friendly and it 's near All Bar One in the city centre . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a restaurant with Chinese food . This establishment has earned a high customer rating . They charge more than 30 pounds . They are located in the city centre near All Bar One and are not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||A good choice for Chinese food in the city centre is The Cricketers . This no children - friendly restaurant has slightly high price range , but high customer ratings . It is located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||A highly - rated Chinese establishment is The Cricketers . This restaurant is centrally located , near All Bar One . They have a price range of over 30 pounds . Please remember they do not allow children . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant which serves Chinese food at a minimum cost of £ 30 . They have a high customer rating and are child friendly . You can find it near All Bar One in the city centre . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||Located near All Bar One , The Cricketers is a restaurant styled joint that sells Chinese food . This shop is known in the city centre for its high prices , family friendly atmosphere , and high ratings . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant in the city centre that serves Chinese food . It is near All Bar One . The price range is more than £ 30 and it has a customer rating of high . It is child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant and Chinese food is also available . High customer rating and food is high price range . Located city center . Near All Bar One \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a restaurant and Chinese food is also available . We have a high customer rating and food is high price range more than £ 30 . Located city center . Children friendly and near All Bar One \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||There is a restaurant called The Cricketers that serves Chinese food The price range is more than £ 30 and the customer rating is high . it is child friendly and is near All Bar One in the City centre \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese restaurant that has a high customer rating and a price range of more than £ 30 . It is not children friendly , and is in the riverside area near the All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||A Chinese restaurant , The Cricketers , is located in riverside near All Bar One . It is in the high price range , is rated high by customers , and is not child - friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||Located near All Bar One is a restaurant serving Chinese food called The Cricketers . Its price range is over £ 30 , reflected in its high customer rating . It is located on a picturesque riverside . It is not child friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese restaurant . It is expensive and has a high customer rating . It is n't kid friendly and near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers , a Chinese restaurant in riverside near All Bar One , is in the high price range and is rated high by customers . It is not children - friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a Chinese restaurant in the riverside area near All Bar One . It has a high customer rating and a price range of more than £ 30 , but is not children friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant that serves Chinese food with a price range of over £ 30 . The customer rating is high and it 's located on a nice riverside . It is n't child - friendly and is located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||Near the river there is a restaurant called The Cricketers . It is highly recommended and reasonably priced , for your convenience it is children friendly and is located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One , The Cricketers offers Chinese food and also serves as a highly - rated restaurant in riverside that is child - friendly . Prices range above 30 pounds . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a highly rated restaurant near All Bar One , It 's in the riverside area and usually costs around 30 pounds \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers restaurant , serving \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers restaurant , serving Chinese food , prices from £ 30.99 , high profile , riverside , near All Bar One , child friendly \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers restaurant serves Chinese food more than £ 30 , has high customer service ratings , are located along the riverside are children friendly and are located near All Bar One . \nname : The Cricketers | Type : restaurant | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers restaurant makes delicious Chinese food in the price range of more than £ 30 , ongoing high customer service ratings , located by the riverside , bring your children , easy to find beside the All Bar One . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is a coffee chop located in the city centre , near All Bar One . It serves English food for a price range of about 20 to 25 pounds . It is not kid friendly however its customer rating is very high . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is an English restaurant . It is located in the city centre near All Bar One . It has a high customer rating and the price range is from £ 20 - 25 . It is not kid friendly . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||If you are looking for an English restaurant , I recommend The Cricketers located in the city centre near the All Bar One . Its customer rating is very high and has a price range of about 20 to 25 pounds . It is not kid friendly . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is an English restaurant near All Bar One in the city centre with a price Range £ 20 - 25 and is not kid friendly . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||Located in the city centre near All Bar One , The Cricketers is an English restaurant with a high customer rating . It is not kid friendly but has a price range between £ 20 - 25 . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : All Bar One||The Cricketers is an English restaurant near All Bar One in the city centre with a price Range £ 20 - 25 and is not kid friendly . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is an average English restaurant located in city centre near All Bar One . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is kid friendly and located near the All Bar One . It has a price range of £ 20 - 25 , serves English food and is in the city centre . It 's a restaurant with a high customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is an average English restaurant located in city centre near All Bar One . It is highly rated by customers and is kids friendly . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a kid friendly restaurant . It 's located in the centre of the city , near All Bar One . It serves English food and has a high customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||In the city centre near All Bar One , there is a kids friendly restaurant serving English food called The Cricketers . It has a high customer rating and a price range of £ 20 - 25 . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : All Bar One||The Cricketers is a kids friendly English restaurant in the city centre near All Bar One . It has a high customer rating and a price range of £ 20 - 25 . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is an English restaurant located near All Bar One within the riverside area . It is highly rated with prices between £ 20 - 25 and it is not conducive for kids . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers restaurant providing English Food . It is located in riverside near All Bar One . Have £ 20 - 25 price range . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||Near All Bar One in the riverside area is an English restaurant called The Cricketers . They are not conducive for kids , but the prices are between £ 20 - 25 and they highly rated . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers restaurant providing English Food . It is located in riverside near All Bar One . Have £ 20 - 25 price range and high costumer rating . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a kid friendly restaurant that serves English food near All Bar One in the riverside area . It has a price range of 20 - 25 pounds and is a highly rated restaurant . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : All Bar One||The Cricketers is a restaurant located in the riverside area near All Bar One that features highly rated English food for 20 - 25 pounds and is not kid friendly . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers restaurant is family - friendly , mid price range , and is located on the river near All Bar One . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||There is a family - friendly , mid cost restaurant near the All Bar One called The Cricketers . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a family friendly restaurant located next to All Bar One . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant near All Bar One . The price range is from 20 to 25 pounds with high customer ratings and is kid friendly . The food is English and is in the riverside area . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is a restaurant providing average - priced English food , it is located by the riverside , near All Bar One , kids - friendly and customer - rated high . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is located next to All Bar One on the river and is a family friendly restaurant . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The English restaurant near All Bar One is called The Cricketers . It is kid friendly , with high customer ratings , in the riverside area . The price range is from 20 to 25 pounds . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||The Cricketers is an average - priced restaurant , serving English food , it is located by the riverside near All Bar One , kids - friendly and high rated . \nname : The Cricketers | Type : restaurant | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : All Bar One||In riverside near All Bar One there is a English restaurant called The Cricketers with a price range of £ 20 - 25 , it has a high customer rating and is child friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Come check out this 5 out of 5 rated restaurant in the city centre near Café Rouge . Cheap English food will be found at The Cricketers , with no noisy kids allowed . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Near Café Rouge in the city center you will find a 5 star cheap restaurant suited for couples named The Cricketers That serves English Food . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a cheap restaurant located in the city centre . With a rating of 5 out of 5 , and no kids allowed , this place will amaze you with it 's English food . Located close to Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a cheap , non - family - friendly restaurant with a 5 out of 5 customer rating . This restaurant , which features English food is located in the centre of the city near a Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Located in the centre of Cambridge near a Café Rouge , The Cricketers restaurant features English dining , and is not family - friendly . It has a 5 out of 5 rating while being cheap . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||You will find a cheap restaurant suited for couples in the city center near Café Rouge named The Cricketers That serves English Food and has been rated 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers is a cheap English restaurant near Café Rouge that is family - friendly in the city centre with a 5out of 5 customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers is a highly rated English restaurant in the city centre near Café Rouge . It is cheap and family - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||restaurant called The Cricketers is family - friendly , sells English food and is cheap with a customer rating 5 out of 5 in the city centre near Café Rouge \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The city centre has an English restaurant with a 5 out of 5 rating called The Cricketers . It is near Café Rouge , is family - friendly and cheap . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers is a cheap English restaurant in the city centre near Café Rouge . it has a customer rating of 5 out of 5 and is family - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers is a family - friendly restaurant that sells English food and has a customer rating of 5 out of 5 with cheap pricing , It is located in the city centre near Café Rouge \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||There is a cheap restaurant that serves English food in the riverside area near Café Rouge named The Cricketers . It was rated by customers 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is a cheap , 5 out of 5 rated restaurant that is located in Riverside near Café Rouge . It offers English food . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Located near Café Rouge in Riverside , The Cricketers is a restaurant that offers English Food at a cheap price with a 5 out of 5 rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||For a low cost eatery serving English food , The Cricketers is rated 5 out of 5 by past customers . It is located on the riverside close to Café Rouge . It is not family - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is a low priced , 5 out of 5 costumer - rated restaurant . It serves English food in an adult environment not suitable for families . The Cricketers is located in Riverside near Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Cricketers serves low cost English style food . It can be found on the riverside near Café Rouge . While they are not family - friendly it has received 5 out of 5 in customer reviews . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a restaurant in the affordable price bracket . It serves British food and is family friendly and can be found near Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a restaurant serving British food next to Café Rouge . It is family friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge , by the riverside , there 's a restaurant . It 's serves English food , welcomes families ; it 's cheap and well liked . It 's called The Cricketers . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There 's a cheap place by the river called The Cricketers . It 's a very popular restaurant . It 's a family friendly place that serves English food . It 's by the Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers serves English food in riverside area near Café Rouge . It is cheap family friendly place Customer rated 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a cheap restaurant serving English food , located on the riverside , pretty close to the Café Rouge . It 's family friendly and customers rate it 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is an English style restaurant located on the riverside , right next to the Café Rouge . Its English food is cheap and got 5 out of 5 rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||On the riverside area near Café Rouge you can visit cheap family friendly restaurant called The Cricketers that serves English food . Customer rated 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a restaurant providing English food and drink for cheap . It is located in riverside near Café Rouge . Family are very welcome , previous customers have rated us 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||An average , cheap , English restaurant near Café Rouge in the city center , is The Cricketers . They are not family - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a cheap restaurant located in the city centre near Café Rouge . They serve English food with an average rating and are n't family - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The restaurant The Cricketers located in the city centre near Café Rouge serves average quality English food very cheap but is family - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a cheap , English restaurant near Café Rouge in the city center . They are rated as average and not family - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||Not for families , The Cricketers is a restaurant in the city centre near Café Rouge where you can enjoy cheap English food with an average rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Cricketers , is a restaurant that serves cheap English food and is not family - friendly . It is located in the city centre near Café Rouge and has received an average customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers is an English food and restaurant . It is located in the city centre near Café Rouge and has been rated by customers as a kid - friendly , average place with a cheap price range . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||Welcome to the The Cricketers . We are not children friendly . Our food is English , and we are located on the city centre near Café Rouge . Our price range is cheap . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||Welcome to the The Cricketers . We are not children friendly . Our food is English , and we are located on the city centre near Café Rouge . Our price range is cheap . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers , located in the city centre , is an English food and restaurant located near Café Rouge . Customers have rated it as average , with a cheap price range , and the establishment is kid - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||restaurant , The Cricketers , is a restaurant offering English cuisine by the Café Rouge \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is a non - family - friendly English restaurant in Riverside near Café Rouge with an average customer rating and has a cheap price range . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is a non - family - friendly English restaurant in Riverside near Café Rouge with a cheap price range and has an average customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers , a riverside restaurant offers affordable English dishes by the Café Rouge \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||English food with an average customer review , near Café Rouge is The Cricketers in the riverside . It is cheap but does not cater foe children in this restaurant . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers restaurant near Café Rouge in the area of the riverside serves English food although quite cheap it does not cater for children and has an average customer review . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a family friendly restaurant serving cheap English food in the riverside area situated near Café Rouge \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers serves cheap English food in a family friendly restaurant in the riverside area situated nears Café Rouge \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a restaurant serving British food . Inexpensive , family friendly place to eat near the river and Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||A cheap restaurant and family restaurant called The Cricketers is near Café Rouge and it has good reviews . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Family friendly and inexpensive restaurant The Cricketers , is near to the river and Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a cheap restaurant on the riverside . It serves English food and has an average customer rating . It is child friendly and can be found close to Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a family friendly restaurant near Café Rouge by the riverside in the City centre with a low price range and an average customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is an English family friendly restaurant near Café Rouge on the riverside . It has a cheap price range and average customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||With a low price range and an average customer rating , The Cricketers is a family friendly restaurant near Café Rouge by the riverside in the City centre . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is an English family friendly restaurant called The Cricketers on the riverside . It is near Café Rouge . It has a cheap price range and average customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is an inexpensive restaurant and family restaurant with decent reviews located near Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a not so Children Friendly English restaurant located in the city centre which has a high price range and customer rating of 1 out of 5 near Café Rouge \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a English restaurant in the city center , near Café Rouge . It is not children friendly , has a high price range , and is near Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||A high priced English restaurant , The Cricketers near the city centre 's Café Rouge had achieved a poor rating from its customers and is n't child friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||There is an English restaurant in the city centre located near Café Rouge which has a high price range with a customer rating of 1 out of 5 and also not a Children Friendly named The Cricketers \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Cricketers , near Café Rouge in the city centre area , is a highly priced restaurant which is not child friendly and has a poor rating from its customers . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a non children friendly English restaurant . It has a high price range , is in the city center near Café Rouge , and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers , an English restaurant located near Café Rouge in the city centre , offers food at high price range . Although it has a customer rating of 1 out of 5 , it also is children friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||A restaurant located in the city centre near Café Rouge is The Cricketers . English food and children friendly it has a high prices and customers have rated it 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Located near Café Rouge in the city centre , The Cricketers serves Italian food and acts as a restaurant . With a customer rating of 1 out of 5 , it also is very children friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Near Café Rouge is a restaurant called The Cricketers . They are kid friendly and have a rating of 1 out of 5 . The prices of their English food can be high . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers is a restaurant near Café Rouge in the center of the city . It serves English food and is friendly for families . Prices are in the high range and customer ratings are low , 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||If you want to eat English food at a kid friendly place , go to The Cricketers near Café Rouge in city centre . It is a restaurant with a rating of 1 out of 5 due to high prices . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Cricketers restaurant has a 1 out of 5 customer rating , where you can get English food . The restaurant is located near the Café Rouge in the riverside area has a high price range and is not children friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||A restaurant called The Cricketers has a high price range . Located in riverside near Café Rouge , the restaurant offers English food with a customer rating of 1 out of 5 . It is not child friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||A restaurant located near Café Rouge serving English food , called The Cricketers in the Riverside area has a 1 out of 5 customer rating . The price range is high and it is not children friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is an English restaurant near Café Rouge with a high price range and 1 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Cricketers near Café Rouge in riverside has a 1 out of 5 customer rating . It is an English restaurant with a high price range that is not child friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||There is an English restaurant near Café Rouge called The Cricketers with a high price range and 1 out of 5 customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is located in the riverside area near Café Rouge . The Cricketers has a customer rating of 1 out of 5 . They are a children friendly English restaurant . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a children friendly English restaurant with prices in the high range . They have a customer rating of 1 out of 5 and are in the riverside area near Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers restaurant is family friendly . Serving British food , expensive and only 1 star , but Café Rouge is near by . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a high end restaurant located at the end of the city beside Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Beside the Café Rouge at the end of the city is a high priced restaurant called The Cricketers . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is an English restaurant which is child friendly , has a high price range but has a customer rating of 1 out of 5 . It is located by the riverside near a Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers is a high priced family restaurant located near Café Rouge and the river . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Cricketers restaurant by the river , rated one star and on the pricey side for it 's British food . Kids welcome and Café Rouge is just don the road . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a high priced English restaurant with an average rating that s based in the city centre near to Café Rouge that is n't really children - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||For a high priced English restaurant with an average rating that is based in the city centre near to Café Rouge that is n't children - friendly then The Cricketers is the place to go \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is located in the city centre area near Café Rouge . This high - priced restaurant serves English food with an average customer rating . This is not a family - friendly restaurant . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a high priced English restaurant in city centre , near Café Rouge . They have an average customer rating and are not child friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||In city centre , near Café Rouge , there is a high priced English restaurant called The Cricketers . They are not child friendly and have an average customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Cricketers is a high - priced restaurant located near the Café Rouge in city centre . This average - rated restaurant is not for children . It serves English food . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers , near Café Rouge in the city centre , is a restaurant with English food . It is in the high price range and has an average customer rating . It is children - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers is an English restaurant in the city center near Café Rouge . The prices are quite high for an averagely rated place but it is child - friendly . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||A restaurant with English food is The Cricketers which is in the city centre near Café Rouge . It is children - friendly , with an average customer rating , and is in the high price range . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||A kid friendly restaurant named The Cricketers has opened near Café Rouge in the city centre . They serve English food , have an average customer rating , and high prices . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Cricketers , serving English food , has opened near Café Rouge in the city centre . They are a coffee type eatery , kid friendly with an average customer rating and a high price range . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The English restaurant ' The Cricketers ' , is located in the city center near Café Rouge . It has average customer reviews with quite high prices . It is recommended for kids . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is a non - children friendly English restaurant in Riverside near Café Rouge with an average customer rating and has a high price range . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is near Café Rouge in riverside . It serves expensive English food in a restaurant setting . It 's not child friendly , but has average ratings . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is a non - children friendly English restaurant in Riverside near Café Rouge with a high price range and an average customer rating . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||A highly priced English restaurant in the riverside area is The Cricketers . It is non - kid friendly , has an average customer rating , and is located near the Café Rouge . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is not children friendly , but if you are in riverside near Café Rouge , it 's an option for English food . It is an expensive restaurant with average ratings . \nname : The Cricketers | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Cricketers is a highly priced English restaurant that has earned an average rating from its customers . Although not kid friendly it is located in the riverside area near Café Rouge . \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a child friendly pub near to Raja Indian Cuisine in the riverside area . They serve English food . The price range is high \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a pub near Raja Indian Cuisine and offers English food and is child friendly . It is in riverside and is expensive . \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a pub near to Raja Indian Cuisine which resides in the riverside are . It 's child friendly and serves English food . The price range is high \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an English pub name The Mill in the riverside area . It is near Raja Indian Cuisine , it is expensive , and it is children friendly . \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an expensive child friendly pub in riverside called The Mill that offers English food and it 's near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill its a pub for all family with good food located near Raja Indian Cuisine \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly English pub in the riverside area . It is high price range . It is called The Mill , and is located near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub near Raja Indian Cuisine in riverside called The Mill \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a high priced pub , that offers English food and is kid friendly . It is located in the riverside area , near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill ' is a pub that serves expensive British food . It is located near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a Luton based adults only pub , sited near Raja Indian Cuisine serving English food in the mid range bracket . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a low price pub offering traditional English food near Raja Indian Cuisine in the city center . It 's not family - friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||If you want some traditional English food and are in the city center near Raja Indian Cuisine , check out The Mill pub for cheap eats - just do n't bring your kids . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill , a family - friendly pub offers English food at affordable prices . The Mill is located in the city centre near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a family - friendly pub called The Mill in the city centre near Raja Indian Cuisine . It serves English food in low price range . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill , located near Raja Indian Cuisine , Luton , is a pub serving English food at reasonable prices . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill , Is a pub and is family - friendly , cheap and reasonable priced is very good for the family , We provide full English food . Located near Raja Indian Cuisine In the city centre . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is near Raja Indian Cuisine in the city centre area . It is family - friendly and has a price range of less than £ 20 . It serves English food and is a pub . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill , Is a pub and is family - friendly , cheap and reasonable priced is very good for the family , We provide full English food . Located near Raja Indian Cuisine In the city centre . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a cheap , family - friendly , pub serving English food . They are near to Raja Indian Cuisine in the city centre . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is an English pub near Raja Indian Cuisine in the city centre . It sells things for less than £ 20 and is family - friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a cheap English pub . It is in the city centre near Raja Indian Cuisine . It is family - friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill ' is a pub located on the riverside , near ' Raja Indian Cuisine ' . They serve English food and a price range of less than £ 20 , and are not family - friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Nearby the city centre and Raja Indian Cuisine , The Mill is a cheap pub that is not family friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a low priced , non family pub located next to Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a adults only cheap pub The Mill serving English food located in the riverside area near Raja Indian Cuisine \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A cheap English pub in the riverside area near Raja Indian Cuisine is called The Mill . It is n't family - friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a cheap pub The Mill serving English food located in the riverside area near Raja Indian Cuisine adults only \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , is a non family low priced pub called The Mill . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a cheap English pub in the riverside area near Raja Indian Cuisine . It is n't family - friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The pub ' The Mill ' is located on the riverside , near ' Raja Indian Cuisine ' . They serve English food and a price range of less than £ 20 , and are not family - friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine by riverside there is an English pub called The Mill . It has prices lower than £ 20 and is family friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill , a low price family friendly breakfast and pub near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a family friendly pub with prices less that £ 20 . This English pub is located by riverside near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a low - priced family pub located near Raja Indian Cuisine in City Centre \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Visit The Mill , a low priced family friendly breakfast and pub located near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an inexpensive and family friendly pub serving English fare near Raja Indian Cuisine in riverside called The Mill . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill pub offers a family friendly environment with a price range of less than £ 20 . We offer English food near Raja Indian Cuisine in the riverside area . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly pub located near Raja Indian Cuisine in the city centre called The Mill which offers cheap food . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 20 you can eat at The Mill in riverside . It 's a family friendly pub near Raja Indian Cuisine that serves English cuisine . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come to the riverside area near Raja Indian Cuisine and enjoy our pub here at The Mill . We are family friendly , feature English food and have a price range of less than £ 20 . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a family friendly pub located near Raja Indian Cuisine in the city centre which offers cheap food . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a moderately priced pub near Raja Indian Cuisine in the city centre . It is not the type of place people bring their kids . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A pub which serve English food in the city centre near the Raja Indian Cuisine is a pub called The Mill with a moderate price range and not kids friendly place . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a pub named The Mill in the city centre . It is near Raja Indian Cuisine , moderately priced and caters to an adult crowd . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a non kids friendly pub , that has moderate price ranged English food . It is located near Raja Indian Cuisine in the city center . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a pub which serve English food . The location is near the Raja Indian Cuisine in the city centre area . The place is a not kids friendly with a moderate price range . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city center near Raja Indian Cuisine , there is a non kids friendly pub named , The Mill . The price range is moderate and they have English food . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced English food pub called The Mill that is kid friendly near Raja Indian Cuisine in the city centre . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a pub with moderate price featuring English food and is Kid Friendly and is located near Raja Indian Cuisine in the city centre . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre , near Raja Indian Cuisine , there is an English pub named The Mill . It is in the moderate price range and it is child - friendly . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a child - friendly , moderately - priced English pub . It is located in the centre of the city , near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Mill . We are a pub , our price range is moderate , our food is English we 're kid friendly located in the city centre by the Raja Indian Cuisine . We have a disclaimer by the door , we wrestle and any blood stains we do not cover . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Mill . We are a pub , our price range is moderate , our food is English we 're kid friendly located in the city centre by the Raja Indian Cuisine . We have a disclaimer by the door , we wrestle and any blood stains we do not cover . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a pub located in riverside near Raja Indian Cuisine . It offers English food with a moderate price range . It is not a kid friendly establishment . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill pub has moderately priced food and is a kid friendly establishment in the riverside area close to Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a pub located in riverside near Raja Indian Cuisine . It offers English food with a moderate price range . It is not a kid friendly establishment . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a pub providing English Food . It is located in riverside near Raja Indian Cuisine . Moderate price range and no kids friendly . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a pub providing English Food . It is located in riverside near Raja Indian Cuisine . Moderate price range . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the Riverside area near Raja Indian Cuisine there 's a kid friendly , moderately priced pub named The Mill . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a family friendly mid price range pub located near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A family pub in the mid price range called The Mill can be found by a river near Raja Indian Cuisine . The Mill serves British cuisine . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come to The Mill where they serve moderately priced English food . It is a riverside pub near Raja Indian Cuisine and is great for children . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill , near Raja Indian Cuisine in riverside , serves English food . It is moderately priced and kid friendly . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a pub that serves English style food . It is moderately priced and kid friendly . It is located on the riverside near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is an English pub near riverside near Raja Indian Cuisine . Its price range is moderate and it 's kids - friendly . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||pub , The Mill , is located on the riverside near Raja Indian Cuisine . It serves English style food and is moderately priced . It is also kid friendly . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub on the river called The Mill located near Raja Indian Cuisine . It is family friendly and mid price ranged . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in the riverside area near Raja Indian Cuisine , The Mill is a pub that serves English food within a moderate price range and is kid friendly . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a kid friendly pub that serves English food with a moderate price range . They are located near the pub Raja Indian Cuisine in riverside . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||You can enjoy British cuisine at The Mill , a family pub in the mid - price range by a river and near Raja Indian Cuisine . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a kid friendly , moderately priced , pub that serves English food . It is located near Raja Indian Cuisine in riverside . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine is a riverside pub serving English food called The Mill . The prices are moderate and it is kid friendly . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located at riverside near Raja Indian Cuisine there is a pub called The Mill that serves English food that has a price range of more than £ 30 and a children friendly place . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a pub near Raja Indian Cuisine . It is on the riverside and is child friendly . The food is English and over £ 30 . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a pub located at riverside near Raja Indian Cuisine serves English food has a price range more than £ 30 and a children friendly place . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a child - friendly pub situated by the riverside . It is near Raja Indian Cuisine , and serves English food for a higher - than - average price . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill serves slightly expensive English food , and welcomes children . Located near Raja Indian Cuisine , it is a pub by the riverside . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine you will find The Mill . A pub serving English food over £ 30 . It is child friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill in riverside with a price Range of £ 20 - 25 and is kids Friendly is near the Raja Indian Cuisine is a Fast food pub \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside with a price Range of 20£-25 and is Kids Friendly is a Fast food pub called The Mill \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a fast food pub that 's kid friendly where you can eat for under £ 25 and is located near Raja Indian Cuisine in riverside \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 25 The Mill offers a kid friendly pub serving fast food located in riverside near Raja Indian Cuisine \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a pub located near Raja Indian Cuisine at riverside providing fast food . Its price range is £ 20 - 25 and it is kids friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine at riverside there is a pub called The Mill which provides fast food . It has a price range of £ 20 - 25 and is kids friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||A fast food pub near Café Rouge and in the city centre is The Mill . It has a high customer rating and a price range between £ 20 - 25 , and it is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||Café Rouge is a Fast food restaurant with menus ranging around £ 20 - 25 near the city centre . It has a high customer rating with a pub named The Mill , but no , it is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||If you 're looking for Fast food , Café Rouge is the place to go . Ranging to about £ 20 - 25 near the city centre with a high customer rating , Café Rouge is near The Mill coffee ship , but is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||Near Café Rouge in city centre is the pub The Mill . This adult establishment serves fast food at average prices . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||With average prices and fast food , The Mill pub can be found in city centre near Café Rouge . This is not a kid friendly establishment . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||The Mill is a fast food pub near Café Rouge with a price range between £ 20 - 25 . It has a high customer rating and is near the city centre , but it is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a kid friendly coffee with a high customer rating that serves fast food at a price range of £ 20 - 25 , located near Café Rouge in the city centre . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||There is a great pub named The Mill located in the centre of the city near Café Rouge . They offer fast food , and are reasonably priced with meals costing around E20-E25 . They have a high customer rating and are very kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||A family - friendly pub that serves fast food with a high customer rating and a price range of £ 20 - 25 , The Mill , is located in the city centre , near Café Rouge . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||Located near Café Rouge , the kid friendly , highly rated pub , The Mill is kid friendly restaurant that also serves fast food with a price range £ 20 - 25 . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a pub that also offers reasonably priced fast food around E20-E25 . They are located in the city center near Café Rouge . Last year , they received high customer ratings and have been found very kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a fast food restaurant located near Café Rouge in city centre . It is a high rated , kid friendly pub with a price range £ 20 - 25 . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||The Mills is not kid friendly as it is a riverside pub near Café Rouge . Its mid priced fast food is highly rated . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||The Mill is a highly - rated fast food and pub located in riverside near the Café Rouge . Average pricing , but not child friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||The Mill is a riverside pub near Café Rouge . Its fast food is average priced and highly rated . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||In the riverside , near Café Rouge , there is The Mill , a cheap highly rated non - kids friendly pub . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||Near the Café Rouge in riverside , is a highly - rated fast food and pub known as The Mill . The prices are average , and it is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||The Mill is a cheap highly rated non - kids friendly pub , located in the riverside , near Café Rouge . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a low - priced pub outside the city centre next to Café Rouge that delivers take - away . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Located in Riverside near Café Rouge there is a pub known as ' The Mill ' . Has a good customer rating , is child friendly and has a good price range for fast food . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||pub called ' The Mill ' is child friendly and has a high customer rating . Has an average price range serving fast food . Located in Riverside near Café Rouge . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||There is a cheap pub The Mill located next to Café Rouge that provides take - away deliveries . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge by the riverside is a fast food and pub , The Mill , with high customer ratings . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill pub is a medium - priced restaurant that is a pub too . It has a excellent rating and is for the whole family . It 's located besides from Café Rouge \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill pub is a restaurant providing take - away deliveries in the medium price range . It 's located besides Café Rouge has goddess rating and is for the whole family \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill , located near Café Rouge , is a fast food restaurant in the £ 20 - 25 price range - it is a kid friendly pub with a high customer rating in the Riverside region of the city . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is located in Riverside , near Café Rouge , that provides a kid friendly environment in the £ 20 - 25 range - it is a pub with a high customer rating . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Mill , a pub that serves decent priced burgers and fries is rated five stars , family friendly , and located next to Café Sicilia on the river in City centre . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||Located next to Café Sicilia on the river in City centre is a five star rated , family friendly pub that serves moderately priced burger and fries called The Mill . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a cheap pub in Riverside go to The Mill . It 's family - friendly near Raja Indian Cuisine and serves fast food . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly pub The Mill Situated riverside near the Raja Indian Cuisine . Offering great food at cheap prices . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||Cheaply priced , city centre pub The Mill is the fast food alternative to nearby Café Sicilia , scoring a top customer rating despite not being family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill pub sells cheap fast food . Located in the city centre near Café Sicilia , it is not recommended for families . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a cheap pub in the city centre . Located near a Café Sicilia , it also serves Fast food and is rated 5 out of 5 by customers . However , it is not family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill located near Café Sicilia serves cheap pub fast food . It has a 5 out of 5 rating but not family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill serves cheap fast food . Located near the Café Sicilia , it is not family - friendly . Great rating of 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a cheap pub that also serves Fast food . It is located in the city centre near a Café Sicilia . Customers rate it a 5 out of 5 . It is not family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||If you 're looking for a cheap , family - friendly Fast food pub , with an excellent customer rating of 5 out of 5 , then go to The Mill located near Café Sicilia in the city centre . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a family - friendly fast food restaurant near Café Sicilia . It serves coffee , price range is cheap and has a high customer rating . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||In the city centre near Café Sicilia there 's a cheap fast food pub named The Mill . It is family - friendly with a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a pub located near Café Sicilia that serves fast food . It has a 5 out of 5 customer rating and is located in city centre . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a cheap family - friendly fast food pub in the city centre near Café Sicilia . They are family - friendly with a 5 out of 5 customer rating . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a low - priced , family - friendly , Fast food restaurant and pub with a great customer rating of 5 out of 5 . It is located near Café Sicilia in the city centre . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a low - priced pub serving Fast food , located by the riverside near Café Sicilia . It caters to adults and its customer rating is 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||At riverside near Café Sicilia , there is a pub called The Mill which provides fast food . It is not family - friendly and is in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub that provides fast food . It is located at riverside near Café Sicilia . It is not family - friendly , in the cheap price range and has a customer rating 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Located at the riverside near Café Sicilia , The Mill is a fast food pub with great ratings , and cheap prices . The Mill offers a quiet setting with no amenities for children . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||In the riverside area near Café Sicilia is a low - cost pub named The Mill . It serves Fast food catered towards adults and rates 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub offering fast food at great prices . It has gotten fantastic reviews . The Mill is located riverside near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||Located near Café Sicilia in Riverside , The Mill is a pub that is highly rated by customers . Welcoming customers of all ages and keeping prices low , this fast food restaurant is worth the visit . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a low - price family friendly pub located next to Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a pub providing food in the low range price . It is family friendly and is located near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||A cheap family friendly pub near Café Sicilia serving fast food in riverside would be The Mill with cheap prices and a perfect rating of 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a highly rated , family friendly , fast food location . Though it is located in Riverside near Café Sicilia , The Mill comes in as a cheap pub . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill pub offers excellent value for money and an excellent service backed up by its 5 out of 5 customer ratings . Located in Riverside next to Café Sicilia its ideal for those wanting a quick bite to eat . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a low - cost , fast food , 5-star , pub located near the Café Sicilia by the river . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is an amazing low - cost , family friendly pub that serves food fast . It is located near the Café Sicilia by the river . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly pub also serving fast food in riverside near Café Sicilia and has been rated 5 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a low - price pub located north of City centre near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||There is a pub near Café Sicilia that provides cheap food . It is called The Mill . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill pub is near Café Sicilia in the city centre that is n't family friendly , is average and has Fast food . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill is an average non family - friendly pub that has Fast food near Café Sicilia in the city centre . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||Near the Café Sicilia in the city centre , there is a cheap , non - family - friendly Fast food and pub named The Mill . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a Fast - food pub near Café Sicilia in the center of the city . While the shop holds an average customer rating and has a cheap price range , it is not a family - friendly place . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a Fast - food pub located in the center of the city near Café Sicilia . While the prices are cheap , the pub is not family - friendly , although it does hold an average customer rating . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a cheap Fast food and pub establishment located in the city centre near Café Sicilia . It is not kid - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill , cheap and family - friendly , is a pub that serves Fast food . Near Café Sicilia it is in the city centre . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a pub that serves Fast food . It is in the city centre near Café Sicilia . It is cheap and family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||Located near Café Sicilia in city centre , The Mill serves cheaply priced fast food in a family - friendly pub . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The family - friendly pub and fast food place named The Mill , is near Café Sicilia in the city centre , has a cheap price range and an average customer rating . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill , a cheaply - priced pub , is located in centre city near Café Sicilia . They serve fast food in a family - friendly environment . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The fast food place with an average customer rating , The Mill , is near Café Sicilia in the city center , has a cheap price range and is a family - friendly pub . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The Mill is near Café Sicilia on riverside that serves fast food . They are cheap and for the family . pub style food . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||Not family - friendly , The Mill is located riverside near Café Sicilia , and has an average customer rating . Fast food with a low price range . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a fast food pub with an average customer rating . It is riverside near Café Sicilia with a cheap price range . It is not family - friendly \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The fast food pub called The Mill located in riverside near Café Sicilia is not family - friendly but is cheap and has a average customer rating . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||There is a pub style food called The Mill it 's fast food on riverside near Café Sicilia it is cheap and for the family . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||There is a pub called The Mill near Café Sicilia in riverside which has cheap fast food , an average customer rating but is not family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is an inexpensive pub which serves burgers and fries located along the river near Café Sicilia . It has three - stars and is family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||Located in Riverside near Café Sicilia , The Mill , with an average customer rating , is a family friendly Fast food serving pub with a cheap price range . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill pub has a good offer on soft drinks , potato fries and burgers . The quality is all right for the money and it is a family friendly local , nearby Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly Fast food serving coffee ship with cheap price range and an average customer rating . It is located in Riverside near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is an average , family friendly , and inexpensive fast food option in riverside . You can find this pub near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is located near Café Sicilia in the riverside area . The Mill is a very delegate pub that is family friendly and offers Fast food , the customer rating is average and the prices are cheap . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||You wo n't pay much for fries , burgers and soft drinks at The Mill pub , the quality is all right and it is close to Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia in riverside you will find The Mill . It is your average pub with inexpensive fast food options and a family friendly environment . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family - friendly affordable pub located north of the city centre by the Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a low priced pub located near the Café Sicilia by the river . \nname : The Mill | Type : pub | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia is located The Mill . This can be found in the riverside area . The Mill is a family friendly pub with great prices and average customer service . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a pub situated near Café Sicilia in the city centre . With a poor customer rating of 1 out of 5 , a high price range , and a no for children , it 's not the best of options . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a non - children friendly fast food pub in the city centre near Café Sicilia with a customer rating of 1 out of 5 and has a high price range . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a city centre pub near Café Sicilia . It does n't have that much going for it with a score of 1 out of 5 from customers , a high price range , and no , it 's not friendly to children . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a non - children friendly fast food pub in the city centre near Café Sicilia with a high price range and has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||There is an expensive pub The Mill that provides fast food . It is located in the center of the city near Café Sicilia . It has 1 out of 5 customer ratings and is friendly to families . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||In the city centre area , near Café Sicilia is a children friendly fast food pub named The Mill . It has a high price range and a 1 out of 5 customer rating . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a children friendly fast food pub near Café Sicilia in the city centre area . It has a 1 out of 5 customer rating and a high price range . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||In the city centre , there is a coffee - shop called The Mill . It offers a children friendly fast - food alternative to nearby Café Sicilia . However , it falls within a high price range , and is only rated 1 out of 5 from customers . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a more expensive , children - friendly , fast - food pub located near Café Sicilia in the city centre . Customers have rated the location 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a family - friendly pub that offers fast food . It has a low customer rating , is located in city centre , near Café Sicilia , and is expensive . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||With high pricing and a customer rating of 1 out of 5 , The Mill is a non child friendly fast food pub located near Café Sicilia , Riverside . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub providing Fast food in the high price range . It is located near of Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Leave the kids at home , while you quickly feed your needs at The Mill . This 1 out of 5 establishment is near Café Sicilia in riverside and is also very expensive coffee . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Leave the kids at home , while you quickly feed your needs at The Mill . This 1 out of 5 establishment is near Café Sicilia in riverside and is also very expensive coffee . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub located in the area of riverside , near of Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub near Café Sicilia , Riverside . They serve fast food , with high pricing . They are n't child friendly and have a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a fast food restaurant providing take - away deliveries in the high price range . It is located after Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||With a high price range and a low customer rating , The Mill is a family friendly pub near Café Sicilia by a riverside in the City centre . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a kid friendly pub and fast food restaurant near Café Sicilia with a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly pub offering fast food . It has a one star rating and is in the high price range . It is located near to Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The high priced The Mill pub is currently rated 1 out of 5 by its customers . The Mill is located in the riverside area near Café Sicilia . Yes the Mill is child friendly \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a high cost fast food child friendly pub near Café Sicilia in the riverside area with low customer rating \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly pub near Café Sicilia by a riverside in the City centre , with a high price range and low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill pub is rated 1 out of 5 by its customers . The Mill is high priced . The Mill is situated near Café Sicilia in the riverside area . Children Friendly - yes . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia by the riverside is a kid friendly pub and fast food restaurant named The Mill . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a one star family friendly pub offering fast food . It is in the high price range and near to Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a high cost fast food child friendly pub in the riverside area near Café Sicilia with low customer rating \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a pub near the Café Sicilia in the city centre . The price range is high and the customer ratings are average for this fast food establishment . Bringing children is not recommended . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill near Café Sicilia in city centre serves coffee and fast food with a high price range and is aimed towards adults . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill in city centre has an average rating and serves coffee and fast food with a high price range near Café Sicilia and is not child friendly . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill , is a pub located in the centre of the city near Café Sicilia ; serving Fast food in the high price range . Is not child - friendly venue and customer ratings are average . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a trendy pub with about average ratings . They offer higher priced fast food items . This is an adult only establishment . It is located in the city centre near the Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Café Sicilia||In City centre near Café Sicilia is The Mill ; a non - child friendly pub . Food is fast , Price is high and average customer ratings . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a pub with a service of fast food , in city centre near of Café Sicilia \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||If you are looking for a high quality , family - friendly dining experience in the heart of city centre , The Mill is for you . This pub i near Café Sicilia and serves fast - food like it 's gourmet . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is located near Café Sicilia , in City Centre , It 's a family - friendly pub with an average rating that serves fast food . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill located in centre city very close of Café Sicilia , is a pub with a high price range \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a pub that serves high priced fast food . Near Café Sicilia in City Centre , the place is children friendly and the customers rate it average . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a fun and family - friendly fast food pub located in the city centre , near Café Sicilia , with high quality food that merits a pretty penny . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub , located in the area of riverside , near The Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub , located in the area of riverside , near The Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The Mill , is a fast food pub - not child friendly , with a high price range and average customer rating in the Riverside area , near Café Sicilia \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a fast food pub in the riverside area near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||The Mill is based in the riverside area near Café Sicilia . It offers fast food . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Café Sicilia||Near Café Sicilia , The Mill , is a fast food pub - not child friendly , with a high price range and average customer rating in the Riverside area , \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||For an child friendly , average pub serving fast food try The Mill , riverside near Café Sicilia \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly pub located near Café Sicilia . It has 3 stars . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly pub with average customer ratings that serves fast food . It is an above average price pub and it is in riverside near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||Riverside has a child friendly quick service pub called The Mill . It has a average customer rating and is in the high price range . It is located near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a fast service pub in Riverside . It is child friendly and is in the high price range . It is located near Café Sicilia and has an average rating . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill , located near the Café Sicilia , is an upscale , family - friendly pub offering tasty burgers and fries . It is several blocks from the city center . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a kid friendly pub , that is high priced with an average customer rating . It is located in the riverside area near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||Try The Mill , an average , child friendly pub with fast food riverside near Café Sicilia \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||There is an above average price pub The Mill and they serve fast food . They have average customer ratings and they are in riverside near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a high cost family friendly pub located near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is an upscale pub offering tasty fried fare , and is located several blocks from the city center . It is family friendly , although on the pricey side . It is located near the Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Sicilia||The Mill pub , near Café Sicilia in the city centre , has a price range of less than £ 20 and has a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Sicilia||The Mill pub is near Café Sicilia in the city centre . It has a price range of less than £ 20 and has a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Sicilia||In the city centre you will find a low rated Fast food pub named The Mill . It is located near Café Sicilia with items averaging less than £ 20 , however it is not family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a pub selling fast food . It is not family - friendly , low price range with a low customer rating . It is located in the city centre near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a Fast food pub located on the city centre near Café Sicilia . Though it is not family - friendly and has a low customer rating it has cheap food with prices less than £ 20 . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Sicilia||Low priced pub selling fast food , located near Café Sicilia in the city centre . The Mill is not family - friendly and has a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Sicilia||The Mill pub is located near Café Sicilia in the city centre , It is family - friendly with Fast food costing less than £ 20 but has a low customer rating \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a pub with fast food in the city centre near Café Sicilia . It has a low rating , however you can eat for less than £ 20 . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a family - friendly pub offering fast food for less than £ 20 . It is in the city centre near Café Sicilia and has a low rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a fast food pub located in the city centre near Café Sicilia . Its prices are less than 20 euros , and it has a low customer rating . It is also family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a family - friendly pub located in the city centre near Café Sicilia . It has a low customer rating , but fast food there costs under 20 euros . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Sicilia||For Fast food The Mill pub located in the city centre , near Café Sicilia and has food under £ 20 price range . It has a low customer rating and is family - friendly \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||Fast food pub called The Mill in riverside area near Café Sicilia ; not family - friendly , low cost and low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub with no family - friendly staff with price range less than £ 20 provides Fast food located near the Café Sicilia at the riverside with low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||Located in the City Centre by Café Sicilia , with a one star rating from customers , is a pub by the name of The Mill . It 's cheap , and for adults only . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||Near the Café Sicilia in the City Centre is a low priced , low rated pub named The Mill that is n't family friendly \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill can be found north of the city center . , beside the River and a Café Sicilia . This non - family friendly restaurant offers inexpensive fast food in favor for their terrible service . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub offering fast food at moderate prices . Located near the riverside Café Sicilia it has a low customer rating and does not welcome children . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub in the low price range serving fast food located near Café Sicilia on the riverside . It is not family - friendly and has a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a low price Fast food near the Café Sicilia with low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill is an inexpensive pub that is unfortunately not family friendly . Located north of the city center . beside the river , their 1-star fast food is competing against the close by Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a pub in the City Centre by Café Sicilia . It is inexpensive , is rated one star by customers , and is not family friendly . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a riverside pub offering fast food at average prices . Located near Café Sicilia , it has a low customer rating and does not welcome children . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||Low - priced food can be found near the river at 1-star rated The Mill pub near Café Sicilia . Kids are welcomed . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family - friendly but low - rated pub with price ranges of less than £ 20 . It is located by the riverside , near the fast food restaurant Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||There is a 1-star cheap pub The Mill located beside Café Sicilia that provides fast food . Families are welcomed there . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly pub , with a low prices , they serve fast food , it is located by the riverside near a Café Sicilia . It has a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a low priced fast food pub near Café Sicilia by the river . It is family friendly and has a low rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family friendly pub , with a low prices , they serve fast food , it is located by the riverside near a Café Sicilia . It has a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a fast food pub near Café Sicilia by the river . It is family friendly , has a low rating and a low food price range . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a low - priced , 1-star rated , kid friendly pub that serves food , near Café Sicilia by the river . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a 1-star pub providing fast food in the low price range . It is suitable for families and located beside Café Sicilia at the north of city centre . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||In the city centre you will find a moderately priced Fast food pub called The Mill . It is located near Café Sicilia , is not kid friendly and has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||City centre , fast food pub , The Mill is near Café Sicilia . It is not child friendly and has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a moderately priced pub that serves Fast food . It is located in the city centre near Café Sicilia and is not kid friendly with a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||There is a pub called The Mill that serves fast food at moderate prices . While not kid friendly , the location is convenient if close to Café Sicilia near city centre . The Mill is rated 1 out of 5 by customers . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The fast food pub , The Mill has a moderate price range and is not child friendly . It has a customer rating of 1 out of 5 and is near Café Sicilia in the city centre . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||Moderately priced fast food can be found at the 1 out of 5 rated pub called The Mill . It 's near Café Sicilia in city centre . This pub is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a fast food pub located in city centre , near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The pub , The Mill , is a moderately priced fast food establishment that is kid friendly and rates 1 out of 5 so far , next to it 's neighbour Café Sicilia at City Centre . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a pub , and moderately priced , next to Café Sicilia at City centre . Rating : 1 out of 5 . Kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||If looking for kid friendly fast food , The Mill pub is located in the city centre near Café Sicilia . With a rating of 1 - 5 , the price range is moderate . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a moderate priced , kid friendly pub . Located in the city centre near Café Sicilia , this fast food pub has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a fast food pub located in city centre , near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Looking for a moderately priced pub on the riverside . Tired of Fast food like Café Sicilia . Try The Mill . With a customer rating of 1 out of 5 you ca n't go wrong . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a fast food pub . It is located in riverside , near Café Sicilia . It has low customer rating since it is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Eat at The Mill , with moderately priced fast food that is n't kind friendly . Customer rating 1 out of 5 near Café Sicilia at Riverside area . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill has moderately priced fast food . It 's not kind friendly . It rates 1 out of 5 and is located neat Café Sicilia at Riverside . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill pub is near the Fast food restaurant , Café Sicilia . With a customer rating of 1 out of 5 and a location on the riverside , their moderately priced food ca n't be beat . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||A fast food pub located in riverside , near Café Sicilia is The Mill . It has low customer rating since it is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a moderately priced pub , located by Café Sicilia and offers a family friendly atmosphere . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||Fast food kid friendly 1 out of 5 Café Sicilia riverside the pub The Mill moderate \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia is a 1 star medium priced pub for families called The Mill . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a family pub that serves fast food . It is poorly rated and moderately expensive and located near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a pub that offers moderately priced kid friendly Fast food . They have a customer rating of 1 out of 5 and are located in riverside near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill pub is located near Café Sicilia on the riverside . They have fast food , kid friendly , and moderate prices . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a poorly rated , moderately expensive family pub near Café Sicilia . It serves fast food . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a moderately priced , kid friendly pub that offers Fast food . Located in riverside near Café Sicilia , they have an average customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a pub , located next to Café Sicilia and is a moderately priced and family friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||the pub The Mill moderate Fast food kid friendly 1 out of 5 Café Sicilia riverside \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill pub has fast food , is kid friendly , and has a moderate price range . They are located near Café Sicilia on the riverside . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a fast food moderately priced pub in the city centre near Café Sicilia . It has a three out of five customer rating and is not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a pub that serves fast food . It is located near Café Sicilia in the center of the city . It is not kid friendly . The price range is moderate and the customer rating is 3 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is located in the center of the city near Café Sicilia . It is a pub that serves fast food and is not kid friendly . The price range is moderate and the customer rating is 3 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||Moderately priced and with an average customer rating , The Mill is a pub close to Café Sicilia in the city centre . Not recommended for children . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||Moderately priced and located near Café Sicilia , The Mill is a pub that sells fast food . It has a three out of five customer rating and is not children friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Mill is a pub located in the city centre , close to Café Sicilia serves fast food . It has a customer rating 3 out of 5 \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is rated 3 out of 5 , with moderate pricing pub . Located near the center of the city and the fast food Café Sicilia it is kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||A pub called The Mill is kid friendly . It located in the city centre near Café Sicilia . It offers fast food at moderate prices . It 's rated 3 out of 5 by customers . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is a pub located in the city centre near of Café Sicilia that bring a service of Fast food \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||In the center of the city near Café Sicilia , the fast food , is a kid friendly pub named The Mill . Customers rate it a 3 out of 5 , with moderate pricing . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill is pub with a service of Fast food in the city centre very close of Café Sicilia \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Mill pub is located in the city centre near Café Sicilia . It is a kid friendly moderately price establishment which offers fast food . Customers rate it 3 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is a moderately priced pub for adults . Although it is rated 3 out of 5 by customers , it serves fast food and is conveniently located in riverside near Café Sicilia . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||In the riverside area , near Café Sicilia , there is a fast food pub called The Mill . It is rated 3 out of 5 and is moderately priced but not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Near the fast food Café Sicilia close to the riverside , The Mill is a pub , with moderate pricing and not too kid friendly . Customers rate it a 3 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Near Café Sicilia , in the riverside area , there is a pub called The Mill . It is rated 3 out of 5 and serves fast food . It is moderately priced an not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill is an average rated pub for adults that serves an array of moderately priced fast food . It is located near Café Sicilia in riverside . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Mill , located close to the Fast food Café Sicilia and riverside , is a moderate priced pub rating 3 out of 5 . It is not too kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a pub by Café Sicilia at the end of the city which has average prices . \nname : The Mill | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Mill is a kid friendly pub that is located on the riverside near Café Sicilia . The Mill serves fast food and is moderate in pricing . Customers rate the pub 3 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a child friendly restaurant near to Raja Indian Cuisine in the riverside area . They serve English food . The price range is high \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a restaurant near Raja Indian Cuisine and offers English food and is child friendly . It is in riverside and is expensive . \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a restaurant near to Raja Indian Cuisine which resides in the riverside are . It 's child friendly and serves English food . The price range is high \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an English restaurant name The Mill in the riverside area . It is near Raja Indian Cuisine , it is expensive , and it is children friendly . \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an expensive child friendly restaurant in riverside called The Mill that offers English food and it 's near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill its a restaurant for all family with good food located near Raja Indian Cuisine \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly English restaurant in the riverside area . It is high price range . It is called The Mill , and is located near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant near Raja Indian Cuisine in riverside called The Mill \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a high priced restaurant , that offers English food and is kid friendly . It is located in the riverside area , near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill ' is a restaurant that serves expensive British food . It is located near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a restaurant along the riverside near Café Rouge it serves English food in the high price range . It is child friendly and has an average customer rating . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Mill has an average customer rating and a high price range . It is a child friendly restaurant which serves English food in riverside near Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a child friendly restaurant with English food . It has an average customer rating and a high price range . It is near Café Rouge in riverside . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Located on the riverside , near Café Rouge , The Mill is a high priced English restaurant with moderate ratings and a family friendly atmosphere . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a higher priced , family friendly restaurant serving traditional English food . It is located near the Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a restaurant along the riverside near Café Rouge . It is child friendly and has an average customer rating . It serves English food in the high price range \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Café Rouge is in the riverside area and is children friendly with an average customer rating instead of The Mill which is a restaurant with English food and a high price range . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Near the Café Rouge is a restaurant called , The Mill , that serves traditional English food . It is higher priced and suitable for families . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Mill is located just below the river , near Café Rouge . It serves high priced British food . This restaurant is family friendly and rated three stars . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a high priced restaurant offering British food . It is family friendly and rated three stars . It can be found just below the River near Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Café Rouge is children friendly in the riverside area and has an average customer rating as opposed to a restaurant with English food and a high price range called The Mill . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a Luton based adults only restaurant , sited near Raja Indian Cuisine serving English food in the mid range bracket . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a low price restaurant offering traditional English food near Raja Indian Cuisine in the city center . It 's not family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||If you want some traditional English food and are in the city center near Raja Indian Cuisine , check out The Mill restaurant for cheap eats - just do n't bring your kids . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill , a family - friendly restaurant offers English food at affordable prices . The Mill is located in the city centre near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a family - friendly restaurant called The Mill in the city centre near Raja Indian Cuisine . It serves English food in low price range . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill , located near Raja Indian Cuisine , Luton , is a restaurant serving English food at reasonable prices . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill , Is a restaurant and is family - friendly , cheap and reasonable priced is very good for the family , We provide full English food . Located near Raja Indian Cuisine In the city centre . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is near Raja Indian Cuisine in the city centre area . It is family - friendly and has a price range of less than £ 20 . It serves English food and is a restaurant . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill , Is a restaurant and is family - friendly , cheap and reasonable priced is very good for the family , We provide full English food . Located near Raja Indian Cuisine In the city centre . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a cheap , family - friendly , restaurant serving English food . They are near to Raja Indian Cuisine in the city centre . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is an English restaurant near Raja Indian Cuisine in the city centre . It sells things for less than £ 20 and is family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a cheap English restaurant . It is in the city centre near Raja Indian Cuisine . It is family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill ' is a restaurant located on the riverside , near ' Raja Indian Cuisine ' . They serve English food and a price range of less than £ 20 , and are not family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Nearby the city centre and Raja Indian Cuisine , The Mill is a cheap restaurant that is not family friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a low priced , non family restaurant located next to Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a adults only cheap restaurant The Mill serving English food located in the riverside area near Raja Indian Cuisine \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A cheap English restaurant in the riverside area near Raja Indian Cuisine is called The Mill . It is n't family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a cheap restaurant The Mill serving English food located in the riverside area near Raja Indian Cuisine adults only \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , is a non family low priced restaurant called The Mill . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a cheap English restaurant in the riverside area near Raja Indian Cuisine . It is n't family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The restaurant ' The Mill ' is located on the riverside , near ' Raja Indian Cuisine ' . They serve English food and a price range of less than £ 20 , and are not family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine by riverside there is an English restaurant called The Mill . It has prices lower than £ 20 and is family friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill , a low price family friendly breakfast and restaurant near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a family friendly restaurant with prices less that £ 20 . This English restaurant is located by riverside near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a low - priced family restaurant located near Raja Indian Cuisine in City Centre \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Visit The Mill , a low priced family friendly breakfast and restaurant located near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an inexpensive and family friendly restaurant serving English fare near Raja Indian Cuisine in riverside called The Mill . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill restaurant offers a family friendly environment with a price range of less than £ 20 . We offer English food near Raja Indian Cuisine in the riverside area . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly restaurant located near Raja Indian Cuisine in the city centre called The Mill which offers cheap food . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 20 you can eat at The Mill in riverside . It 's a family friendly restaurant near Raja Indian Cuisine that serves English cuisine . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come to the riverside area near Raja Indian Cuisine and enjoy our restaurant here at The Mill . We are family friendly , feature English food and have a price range of less than £ 20 . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a family friendly restaurant located near Raja Indian Cuisine in the city centre which offers cheap food . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Mill is restaurant in the city centre , near Café Rouge , serving low - priced English food . It is has a low customer rating and is not family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||In the city centre near Café Rouge is a low rated adult only restaurant with average prices for English grub called The Mill \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Mill , located in city centre near Café Rouge , It is a restaurant with great prices but received a low customer rating . They serve English food . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Mill is a low rated adult only restaurant with average prices for English grub in the city centre near Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Mill offers low - priced English - style food in the city centre . It is located near Café Rouge , is not family - friendly and has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||Located in city centre near Café Rouge , The Mill is a restaurant that serves English food at a great price but received a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a family - friendly , low price range restaurant serving English food . It is located in the town centre near Café Rouge and has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a restaurant which serves English food and is located in the city centre near Café Rouge . It is family - friendly , has meals less than 20 pounds , but has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||Despite having a low customer rating , The Mill is a family - friendly English restaurant with meals less than 20 pounds . It is located in the city centre near Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Mill restaurant is a family - friendly restaurant that provides English food in a low price range . It is located near Café Rouge in the city centre and has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||family - friendly restaurant called The Mill is located near Café Rouge in the city centre . It sells English food with an average price range . Low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a restaurant selling English food with an average price range . It is family - friendly and located near Café Rouge in the city centre , has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill is a restaurant by Café Rouge . Its low cost , but gets bad reviews , and is adult only . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||A restaurant called The Mill is located by Café Rouge and has cheap pricing . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill is a restaurant which serves English food for less than £ 20 but has a low customer rating . It is located near Café Rouge in riverside \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill ate at the restaurant with his English family for less than £ 20 at Café Rouge near riverside at low no . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill is a restaurant located by Café Rouge . It has Breakfast and is poor in rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill restaurant near Café Rouge in Riverside serves English meals under £ 20 . It is not family - friendly and has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill is a restaurant which serves English food for less than £ 20 but has a low customer rating . It is located near Café Rouge in riverside \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill is a low cost adult only restaurant . It is by Café Rouge and receives poor reviews . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill kept eating English people and Café Rouge said no , the family ate the Mill for less than £ 20 at a restaurant . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill restaurant in Cambridge is not family friendly . It is located east of Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Mill restaurant is located east of Café Rouge . It is low - priced , and not family - friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill restaurant is located near Café Rouge next to the river . The shop serves breakfast food at low prices . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a one star , family friendly restaurant located near Café Rouge . It 's low - priced . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill is located in the riverside area near Café Rouge . The Mill is an English , family friendly restaurant with low customer rating . Their prices are less than £ 20 . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill , a family friendly restaurant located by the riverside near Café Rouge serves English food for less than £ 20 , it has been low - rated . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a family friendly restaurant with prices less than £ 20 . They serve English food . They are in the riverside area near Café Rouge . The Mill 's customer rating is low . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||There is a one star , low - priced restaurant called The Mill located near Café Rouge that is family friendly . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a family friendly restaurant in the low price range . It is located close to the city centre , near to Café Rouge \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a family friendly restaurant which serves English food within a price range of less than £ 20 , but has low customer rating . It is located near Café Rouge in the riverside area . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Along the riverside , near to Café Rouge , there is a family friendly restaurant , called The Mill , which serves English food costing less than £ 20 . It has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a family friendly restaurant in the low price range . It is located close to the city centre , near to Café Rouge \nname : The Mill | Type : restaurant | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a family - friendly restaurant that sells inexpensive breakfast . The shop is located just outside of City centre , near the river not far from Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a moderately priced restaurant near Raja Indian Cuisine in the city centre . It is not the type of place people bring their kids . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A restaurant which serve English food in the city centre near the Raja Indian Cuisine is a restaurant called The Mill with a moderate price range and not kids friendly place . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a restaurant named The Mill in the city centre . It is near Raja Indian Cuisine , moderately priced and caters to an adult crowd . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a non kids friendly restaurant , that has moderate price ranged English food . It is located near Raja Indian Cuisine in the city center . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Mill is a restaurant which serve English food . The location is near the Raja Indian Cuisine in the city centre area . The place is a not kids friendly with a moderate price range . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city center near Raja Indian Cuisine , there is a non kids friendly restaurant named , The Mill . The price range is moderate and they have English food . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced English food restaurant called The Mill that is kid friendly near Raja Indian Cuisine in the city centre . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a restaurant with moderate price featuring English food and is Kid Friendly and is located near Raja Indian Cuisine in the city centre . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre , near Raja Indian Cuisine , there is an English restaurant named The Mill . It is in the moderate price range and it is child - friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Mill is a child - friendly , moderately - priced English restaurant . It is located in the centre of the city , near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Mill . We are a restaurant , our price range is moderate , our food is English we 're kid friendly located in the city centre by the Raja Indian Cuisine . We have a disclaimer by the door , we wrestle and any blood stains we do not cover . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Mill . We are a restaurant , our price range is moderate , our food is English we 're kid friendly located in the city centre by the Raja Indian Cuisine . We have a disclaimer by the door , we wrestle and any blood stains we do not cover . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a restaurant located in riverside near Raja Indian Cuisine . It offers English food with a moderate price range . It is not a kid friendly establishment . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill restaurant has moderately priced food and is a kid friendly establishment in the riverside area close to Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a restaurant located in riverside near Raja Indian Cuisine . It offers English food with a moderate price range . It is not a kid friendly establishment . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a restaurant providing English Food . It is located in riverside near Raja Indian Cuisine . Moderate price range and no kids friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Mill is a restaurant providing English Food . It is located in riverside near Raja Indian Cuisine . Moderate price range . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the Riverside area near Raja Indian Cuisine there 's a kid friendly , moderately priced restaurant named The Mill . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a family friendly mid price range restaurant located near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A family restaurant in the mid price range called The Mill can be found by a river near Raja Indian Cuisine . The Mill serves British cuisine . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come to The Mill where they serve moderately priced English food . It is a riverside restaurant near Raja Indian Cuisine and is great for children . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill , near Raja Indian Cuisine in riverside , serves English food . It is moderately priced and kid friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a restaurant that serves English style food . It is moderately priced and kid friendly . It is located on the riverside near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is an English restaurant near riverside near Raja Indian Cuisine . Its price range is moderate and it 's kids - friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||restaurant , The Mill , is located on the riverside near Raja Indian Cuisine . It serves English style food and is moderately priced . It is also kid friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant on the river called The Mill located near Raja Indian Cuisine . It is family friendly and mid price ranged . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in the riverside area near Raja Indian Cuisine , The Mill is a restaurant that serves English food within a moderate price range and is kid friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a kid friendly restaurant that serves English food with a moderate price range . They are located near the restaurant Raja Indian Cuisine in riverside . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||You can enjoy British cuisine at The Mill , a family restaurant in the mid - price range by a river and near Raja Indian Cuisine . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a kid friendly , moderately priced , restaurant that serves English food . It is located near Raja Indian Cuisine in riverside . \nname : The Mill | Type : restaurant | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine is a riverside restaurant serving English food called The Mill . The prices are moderate and it is kid friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||There is a restaurant in the city centre called The Mill , located near Café Rouge . It serves English food and it is moderately priced . It is not kids - friendly and has a customer rating of 1 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||A none kids friendly place with a customer rating of 1 out of 5 is a restaurant which serve English food a moderate price range . The Mill is located in the city centre near Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Mill is a restaurant also do English food . A moderate price range , none kids friendly place with a poor 1 out of 5 customer rating . You can find this place in the city centre near Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Mill is a moderately priced restaurant with a low customer rating . It serves English food and is located close to Café Rouge in the city centre . It is not suitable for families with children . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Near Café Rouge in the city centre is a restaurant called The Mill serving moderately priced English food . Customer ratings are low and it does not cater for children . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Mill is a restaurant in the city centre near Café Rouge serving English food at a moderate price . It has a customer rating of 1 out of 5 and it is not kids - friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||In the city centre near Café Rouge is a kid friendly English food restaurant called The Mill . It is rate 1 out of 5 stars . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Mill restaurant is moderate priced English good rated 1 out of 5 stars . It is in the city centre near Café Rouge and is kid friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||There is a restaurant with a customer rating of 1 out of 5 called The Mill . It serves moderately priced food in a kid - friendly environment and is located in the near Café Rouge in the city center . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||By Café Rouge in city centre is The Mill British restaurant , family - friendly rated 1 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a low - rated restaurant near Café Rouge in the city center . It serves moderately priced English food . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Mill is an English restaurant in the town centre by Café Rouge , it is family - friendly rated 1 out 5 priced moderate . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill restaurant is moderate price range , is not kid friendly serves English food , has a 1 out 5 customer rating . It 's near Café Rouge in the riverside area . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill is a restaurant the is moderate price range that serves English food , not kid friendly and has a customer rating of 1 out of 5 near Café Rouge by the riverside area . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge by the riverside area there is a restaurant that serves English food , not kid friendly , moderating pricing and has a customer rating of 1 out of 5 that is called The Mill . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Located in riverside near Café Rouge The Mill restaurant , in the moderate price range , they serve English food . They are not kid friendly they have 1 out of 5 customer rating . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill is in riverside near Café Rouge . It 's a restaurant with a customer rating of 1 out of 5 . It has a moderate price range and serves English food . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill is a restaurant with a moderate price range . They serve English food and is not kids friendly . It has a customer rating of 1 out of 5 . It 's near Café Rouge , in riverside . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a kid friendly restaurant with moderate prices . The Mill is located in the riverside near Café Rouge . The Mill provides English style food and customers give them a 1 out of 5 rating . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill is an English restaurant located next to Café Rouge and in the riverside area . Customers give this restaurant a 1 out of 5 rating . The Mill is a kid friendly place with moderate pricing . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||In the riverside area is a restaurant name The Mill . It is near the Café Rouge . The customer rating is a 1 out of 5 and is in the moderate price range . It is kid friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a one - star restaurant that offers English breakfast . It is family - friendly , moderately priced and is located near the Café Rouge by the river . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A family friendly restaurant named The Mill is located near Café Rouge . It has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge by the riverside there is a restaurant called The Mill yes with a moderate price range and rating of 1 out of 5 \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill restaurant serves English food . It is near Café Rouge , in the riverside area . It is in the moderate price range and is kid friendly . The customer rating is a 1 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge by the riverside there is a restaurant called The Mill yes with a moderate price range and rating of 1 out of 5 \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A family friendly restaurant called The Mill is located near Café Rouge . It has a low customer rating . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill is kid friendly but moderately expensive but not highly rated restaurant near Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill offers moderately priced English breakfasts that are family - friendly . It is located near the Café Rouge by the river and has a one - star rating . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Located near Café Rouge , at the city centre , The Mill is a restaurant that serves English food . The price range is moderate and the customer rating is 3 out of 5 . It 's not kids - friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Mill is a restaurant that is n't kids - friendly . Located near Café Rouge , at the city centre , it serves English food . The price range is moderate and the customer rating is 3 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Located in the city centre near Café Rouge is a small restaurant called The Mill . It also serves American food and price is worth the bite . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Mill is a restaurant near Café Rouge and the city centre . It is not family - friendly and the price range is moderate . It serves English food and the customer rating is 3 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Mill restaurant and burger house is located near Café Rouge in the city centre . A nice place to sit and hang around with your friends or co - workers with a moderately priced menu , you will enjoy this place . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Rouge||If you are searching for a not family - friendly restaurant that serves English food near Café Rouge and the city centre , The Mill might be for you . The price range is moderate , and their customer rating is 3 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Serving moderately priced English food with a 3 out of 5 customer approval , The Mill restaurant is kid friendly and conveniently located at the city centre near the Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||A moderate price with a customer rating 3 out of 5 , The Mill is an English restaurant near Café Rouge in the center of the city for the kids . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a moderately priced family - friendly restaurant serving English food . Located at the city centre near the Café Rouge , The Mill boasts a 3 out of 5 customer satisfaction rating . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||An English stop near Café Rouge in the center of the city , The Mill has a customer rating 3 out of 5 with a moderate price range . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill is an English restaurant near Café Rouge in riverside with has a moderate price range , is not kids friendly , and has a 3 out of 5 customer rating . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill , an adult oriented restaurant serving English food , in riverside near Café Rouge , has moderate prices and customer ratings of 3 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill restaurant is located near Café Rouge in riverside area . It providing English food , moderate price range and 3 out of 5 costumer rating \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill , located riverside near the Café Rouge , is a moderately priced English restaurant with 3 of 5 customer ratings and not a kid friendly environment . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Rouge||There is an English restaurant in riverside near Café Rouge called The Mill . It has a moderate price range and a 3 out of 5 customer rating , but it is not kids friendly . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Mill restaurant is located near Café Rouge in riverside area . It providing English food , 3 out of 5 costumer rating and moderate price range \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is an average restaurant The Mill located near Café Rouge . It offers breakfast for the family . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A riverside restaurant named The Mill is kid friendly , has a moderate price range , serves English food , and has a 3 out of 5 rating . It is near the Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a riverside restaurant that is kid friendly , has a moderate price range , serves English food , and has a 3 out of 5 rating . It is near the Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a kids friendly restaurant that has moderate prices and serves English food . It has a 3 out of 5 customer rating and is located in the riverside area near the Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill if a restaurant for traditional British food . We 're near Café Rouge at City Centre . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Mill if a restaurant for traditional British food . We 're near Café Rouge at City Centre . Join Us . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The riverside area near Café Rouge has a restaurant that is kids - friendly . It has a price range in The Mill . I give the food a 3 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The riverside area has restaurant near the Café Rouge that is both in the moderate price range and kid friendly called The Mill . It has a 3 out of 5 customer rating and serves English food . \nname : The Mill | Type : restaurant | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The riverside area near Café Rouge has a restaurant that is kids - friendly . It has a price range in The Mill . I give the food a 3 out of 5 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located at riverside near Raja Indian Cuisine there is a restaurant called The Mill that serves English food that has a price range of more than £ 30 and a children friendly place . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a restaurant near Raja Indian Cuisine . It is on the riverside and is child friendly . The food is English and over £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a restaurant located at riverside near Raja Indian Cuisine serves English food has a price range more than £ 30 and a children friendly place . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a child - friendly restaurant situated by the riverside . It is near Raja Indian Cuisine , and serves English food for a higher - than - average price . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill serves slightly expensive English food , and welcomes children . Located near Raja Indian Cuisine , it is a restaurant by the riverside . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine you will find The Mill . A restaurant serving English food over £ 30 . It is child friendly . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||The Mill restaurant is a restaurant with a high customer rating which is situated in the city centre near the Café Rouge . It serves English food and the price range is above average . It is not suitable for children . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||The Mill restaurant is an expensive establishment situated near the Café Rouge in the city centre which sells high quality English food , but is unsuitable for children . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||The Mill is a high customer rating restaurant that is not children friendly . It 's near the city centre and Café Rouge . The menu serves English food and is usually more £ 30 , but it 's worth it . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||If you are searching for an English restaurant near the city centre and Café Rouge , The Mill is a high customer rating place to go . It is not children friendly place and it has a £ 30 and over menu , but you might want to check it out . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||The Mill is an English restaurant that costs more than £ 30 . It is not children friendly , but it has a high customer rating . It is in the city centre , near the Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Rouge||The Mill is an English restaurant that costs more than £ 30 . It is not children friendly , but it has a high customer rating . It is in the city centre , near the Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||The Mill is a highly rated , child - friendly English restaurant located in the city centre , near Café Rouge . Its price range is more than £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||The Mill is an English restaurant near Café Rouge , in the city centre . It is highly rated by customers , is child - friendly , and has a price range that is more than £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||The Mill offers Japanese food and restaurant with cheap price near Café Rouge in riverside . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||Located near a Café Rouge in city centre , The Mill is a child friendly restaurant serving English food with a high customer rating . The price range is more than 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||restaurant The Mill is child friendly with a price range of more than 30 . Serving English food , it is located near Café Rouge in city centre and has a high customer rating . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Rouge||The Mill offers Japanese food and restaurant with cheap price near Café Rouge in riverside . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||The Mill is a restaurant in the riverside area , near Café Rouge that has a high customer rating . They serve English food at a £ 30 minimum , and are n't friendly to children . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||Although it has a high customer rating , The Mill restaurant serving traditional English cuisine , is not child friendly and is an expensive alternative to the Café Rouge which also sits on the riverside . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||A restaurant in the riverside area , near Café Rouge , serving English food is The Mill . The shop has a high customer rating , is n't child friendly , and serves food at a £ 30 price minimum . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||The Mill is a children friendly restaurant in riverside near Café Rouge . It has a high customer rating with the prince range for their English food is more than £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||Located on the Riverside close to Café Rouge , is The Mill ; a highly rated yet high priced restaurant serving English food , which is not considered child friendly . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Rouge||There 's a children friendly restaurant near Café Rouge with high customer rating called The Mill . They serve English food with a price range of more than £ 30 in riverside . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a kid friendly , high customer rating and moderately priced restaurant located near Café Rouge in the Riverside area . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a children friendly high rated English restaurant located near Café Rouge in riverside with a price range of more than £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is an expensive family restaurant that is located near Café Rouge . It serves British food . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is a highly rated , children friendly restaurant near Café Rouge in riverside . It has English food and the price range is more than £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is an expensive family restaurant that serves British food . It is located near a Café Rouge . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||There is a children friendly restaurant called The Mill located near the Café Rouge in the Riverside area , it receives high customer ratings and is moderately priced at around £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The highly rated The Mill English restaurant is located in riverside near Café Rouge and has a price range of more than £ 30 . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||There is an English restaurant called The Mill . It is near Café Rouge in the riverside area . It is children friendly and in the above £ 30 price range . \nname : The Mill | Type : restaurant | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Mill is in the Northern City Centre , on the South side of the River , near Café Rouge . \nname : The Mill | Type : restaurant | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill in riverside with a price Range of £ 20 - 25 and is kids Friendly is near the Raja Indian Cuisine is a Fast food restaurant \nname : The Mill | Type : restaurant | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside with a price Range of 20£-25 and is Kids Friendly is a Fast food restaurant called The Mill \nname : The Mill | Type : restaurant | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a fast food restaurant that 's kid friendly where you can eat for under £ 25 and is located near Raja Indian Cuisine in riverside \nname : The Mill | Type : restaurant | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 25 The Mill offers a kid friendly restaurant serving fast food located in riverside near Raja Indian Cuisine \nname : The Mill | Type : restaurant | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Mill is a restaurant located near Raja Indian Cuisine at riverside providing fast food . Its price range is £ 20 - 25 and it is kids friendly . \nname : The Mill | Type : restaurant | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine at riverside there is a restaurant called The Mill which provides fast food . It has a price range of £ 20 - 25 and is kids friendly . \nname : The Mill | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a cheap restaurant in Riverside go to The Mill . It 's family - friendly near Raja Indian Cuisine and serves fast food . \nname : The Mill | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly restaurant The Mill Situated riverside near the Raja Indian Cuisine . Offering great food at cheap prices . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With a cheap price range along the riverside , the pub named The Phoenix is family friendly and serves Fast food Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap and family friendly pub in the Riverside area . The Phoenix serves fast food and is located near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Riverside has a cheap fast food pub near Raja Indian Cuisine named The Phoenix . It 's family - friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Cheap food and a family friendly atmosphere at The Phoenix pub . Situated riverside near the Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap and family friendly pub in the Riverside area . The Phoenix serves fast food and is located near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a pub serving Fast food located in riverside near Raja Indian Cuisine . It is cheap and family Friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With a cheap price range along the riverside , the pub ' The Phoenix ' is family friendly and serves Fast food Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family Friendly The Phoenix is a cheap pub serving Fast food . It is located in riverside near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||riverside pub The Phoenix Fast food price range same Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a pub located in the city centre , near Raja Indian Cuisine , in the high price range . The Phoenix provides Fast food but no children friendly menu or services are offered . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a pub near Raja Indian Cuisine in the city centre . They serve Fast food , no children menus or services , in a high price range . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a high priced pub that serves fast food but is a non - children friendly atmosphere . It is located near Raja Indian Cuisine both in the city centre . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||A high priced pub that serves fast food is The Phoenix , but has a non - children friendly atmosphere . It is located in the city centre near Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child - friendly fast food pub . It is in the high price range , and a pub . It is located near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The child friendly Fast food pub named The Phoenix pub is near the Raja Indian Cuisine and the city center in the high price range . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix pub is in the high price range and serves child friendly Fast food near the Raja Indian Cuisine and the center of the city . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child - friendly fast food pub in the high price range . It is located in the city centre , near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix offers Fast food and pub with expensive price near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the area of riverside near Raja Indian Cuisine is The Phoenix , it is a pub . It is not kid friendly and the Fast food is highly expensive . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix , a fast food pub is not kid friendly . With a high price range , it is near Raja Indian Cuisine and in the riverside area . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix offers Fast food and pub with expensive price near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The pub , The Phoenix , is not kid friendly , considered fast food and has a high price range . Though not kid friendly , it is near Raja Indian Cuisine and river side . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix pub has highly expensive Fast food , and it is not kid friendly . It is in the area of riverside and near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a fast food , pub located near Raja Indian Cuisine in Riverside called The Phoenix . The pub is in the higher price range and is children friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly pub called The Phoenix that is located near Raja Indian Cuisine with high price takeaway menu items . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A high priced pub serving fast food in the riverside area , near Raja Indian Cuisine , is The Phoenix . It is children friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a children friendly fast food pub and pub . It is located in the riverside area near Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a high priced , child friendly , Fast food pub in Riverside , near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly , The Phoenix pub which is on the pricey side , located near the river and Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for higher priced fast food in a child friendly environment , consider The Phoenix pub . Located in the riverside area , near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a fast food , pub located near Raja Indian Cuisine in Riverside . The pub is children friendly and is in the higher price range . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In Riverside , near Raja Indian Cuisine is a child friendly , high priced , fast food coffee ship called The Phoenix . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Beside Raja Indian Cuisine in riverside there is a child friendly high priced fast food and pub called The Phoenix . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is located near Raja Indian Cuisine that has expensive , family friendly take out . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Close to Raja Indian Cuisine , on the riverside , The Phoenix pub offers higher priced fast food in a child friendly establishment . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child friendly high priced fast food and pub near Raja Indian Cuisine in riverside . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a high price pub located by Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly fast food pub and pub , The Phoenix is very expensive . It is located in the riverside area near Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a pub named The Phoenix by Raja Indian Cuisine . It 's a dine in at a high price . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||A fast food and pub near Raja Indian Cuisine in the city centre , The Phoenix is a family - friendly place where you can eat for less than £ 20 \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a moderately priced pub The Phoenix in the city centre near Raja Indian Cuisine . It is not family - friendly but they serve fast food . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a family - friendly fast food and pub near Raja Indian Cuisine in the city centre where you can eat for less than £ 20 \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a nice pub with fast food service and lower prices than £ 20 are located in the city center area near Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a charming pub featuring fast food service and lower prices to £ 20 are located near Raja Indian Cuisine in the city center area \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a moderately priced pub in the city centre near Raja Indian Cuisine . It is not family - friendly but they serve fast food . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Phoenix , we are a pub . We 're family - friendly we serve fast food we are located in the city centre near the Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Phoenix , we are a pub . We 're family - friendly we serve fast food we are located in the city centre near the Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family - friendly pub that has a price range less than 20 pounds featuring fast food near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix pub serves fast food is located near Raja Indian Cuisine in the city centre . It is family - friendly and has a price range less than 20 pounds . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix pub , located on the river , is near Raja Indian Cuisine and low priced \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside near Raja Indian Cuisine is pub called a The Phoenix . It serves fast food for less than £ 20 and is n't family - friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a riverside , fast food pub for adults that is riverside near Raja Indian Cuisine with prices less than £ 20 . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a comfortable pub that is within city centre limits , next to the Raja Indian Cuisine pub . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||At the riverside near Raja Indian Cuisine is The Phoenix pub that has Fast food less than £ 20 and is not family - friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||For cheap fast food , The Phoenix pub is in the city centre near Raja Indian Cuisine . It is not family friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The pub , The Phoenix is an affordable location city center . and the Raja Indian Cuisine pub \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a low priced pub on the river located near Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a non family - friendly pub in the riverside . It is located near to Raja Indian Cuisine and serves fast food for less than £ 20 . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix pub and fast food pub offers meals under £ 20 . It is located in riverside near Raja Indian Cuisine and is not family - friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix pub in the city centre , close to Raja Indian Cuisine , is cheap and not family friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||there 's a family friendly pub in a cheap price range near Raja Indian Cuisine called The Phoenix \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix pub , located next to Raja Indian Cuisine , is a low - cost , family friendly place offering burgers and fries . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a low cost family friendly pub near the river and Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A pub with fast food , near Raja Indian Cuisine on the riverside is family friendly and less than 20 euros is known as , The Phoenix . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a pub providing tea and coffee . It is located near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , located on the river next to Raja Indian Cuisine , north of the City centre , is a low - priced , family friendly pub offering burgers and fries as well . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub called The Phoenix located near Raja Indian Cuisine in the city centre that provides coffee and tea . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is located near Raja Indian Cuisine and is a low cost family friendly pub . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , a pub with fast food , near Raja Indian Cuisine , on the riverside is family friendly and less than 20 euros \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub named The Phoenix located in the Riverside area near Raja Indian Cuisine . This is a kid friendly pub offering a variety of food at a low cost . \nname : The Phoenix | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family friendly pub in a cheap price range near Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the centre of the city near Raja Indian Cuisine , moderately priced The Phoenix offers an adult , non kid friendly fast food experience . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix pub serves fast food at a moderate price . The Phoenix can be found near Raja Indian Cuisine in the city centre and is not kid friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a pub by the name of The Phoenix . Their price range is moderate and they serve Fast Food . They are not kid friendly and they are at the city centre near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a no kid friendly pub called The Phoenix located at the city centre . They serve fast food , their price range is moderate , and they are near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a moderately priced , adult oriented pub , located in the city centre , near the Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the city centre , near Raja Indian Cuisine , The Phoenix is a moderately priced adult oriented pub . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix fast food pub is kids friendly is located in city centre near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced pub named The Phoenix that serves fast food . The Phoenix is Kid Friendly and is near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a fast food pub with a moderate price range . It is located in the city centre near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix fast food Café is located in city centre near Raja Indian Cuisine with a moderate price range and is kids friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a pub serving fast food near Raja Indian Cuisine in the city center . The Phoenix is kid friendly and moderately priced . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a pub located in the city centre near Raja Indian Cuisine . The Phoenix has a moderate price range and is kid friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The the riverside area , near Raja Indian Cuisine , there is a Fast food pub in the moderate price range called The Phoenix . It is not kids friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a Fast food pub located near Raja Indian Cuisine in riverside called The Phoenix . It has a moderate price range and is not kid friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in Riverside there is a moderately priced Fast food pub named The Phoenix . It is not kids friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a Fast food pub located near Raja Indian Cuisine in riverside . It is not kid friendly and has a moderate price range . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix serves fast food . It is also a pub . The price range is moderate . It is kids friendly . It is in the riverside area near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a pub . There price range is moderate . They serve fast food . They are not kids friendly . Located near the Raja Indian Cuisine , in the riverside area . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a low priced pub located near Raja Indian Cuisine called The Phoenix . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a well priced pub The Phoenix which is located near to Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child friendly pub located near to Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a moderately priced pub offering fast food and is kid friendly . It is located near Raja Indian Cuisine in riverside . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix pub is a mid - priced , family friendly pub located in city centre , east of Raja Indian Cuisine . They offer eat - in , take - out or deliveries . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a good pub near to Raja Indian Cuisine . its kids friendly \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family friendly pub located near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a pub providing Fast food deliveries in the low price range . It is located in Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a moderate priced Fast food pub in riverside near Raja Indian Cuisine . It is kid friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a moderately cheap pub in Riverside near the Raja Indian Cuisine called The Phoenix . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a Fast food pub in riverside near Raja Indian Cuisine . It is kid friendly and moderate priced . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a mid - priced , family friendly pub , The Phoenix pub , that offers take - out or deliveries . It is located in city centre just east of Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near Raja Indian Cuisine is a moderately priced pub that serves fast food . It is also child friendly and is called The Phoenix . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a moderately cheap pub located in the area of Riverside , near the Raja Indian Cuisine . Fast food is sold there and the staff are friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , near Raja Indian Cuisine is a moderately priced fast food pub that is child friendly and is in riverside . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A pub named The Phoenix is located near Raja Indian Cuisine in riverside offering moderately priced fast food . It is kid friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||Not far from Café Sicilia is The Phoenix pub which offers a similar moderately priced menu . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is a fast food pub located along the riverside near Café Sicilia . It is kid friendly with moderate prices and has a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix serves moderately priced fast food in a kids friendly pub . It is rated 3 out of 5 and is found near Café Sicilia in the riverside area . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix pub , near Café Sicilia , is a family friendly , average priced restaurant with a three star rating . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is a fast food pub that has a moderate price range and is kid friendly . It has a rating of 3 out of 5 and is located along the riverside near Café Sicilia . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is located by Café Sicilia . It has fair prices and has burgers , drinks , and fries \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is located by Café Sicilia . It has fair prices and had burgers , drinks , and fries \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is a kids friendly pub near Café Sicilia in the riverside area . It is moderately priced , rated 3 out of 5 and serves fast food . \nname : The Phoenix | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||On the riverside near Café Sicilia is The Phoenix . A pub that serves fast food within a moderate price range . It is kid friendly and has a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||At the riverside , nearby Raja Indian Cuisine , there is a child friendly pub called The Phoenix which serves fast food , for which you can expect to pay more than £ 30 . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a Fast food pub near Raja Indian Cuisine in the riverside area . It is children friendly with a price range more than £ 30 per head . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a children friendly pub that serves fast food and has a price range of more than L30 . It is by the riverside near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a Fast food pub with a price range more than £ 30 there is The Phoenix in the riverside area near Raja Indian Cuisine . it is also children friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix pub is child friendly and offers fast food priced on average at more than £ 30 . It is located in the riverside area , near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a children friendly pub near Raja Indian Cuisine . It is by the riverside , serves fast food and has a price range of more than L30 . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Sicilia||In the city centre , near to Café Sicilia , is the highly rated pub called The Phoenix . It is not child friendly and is in the price bracket of £ 30 or more . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Sicilia||The Phoenix is a Fast food pub located at the centre of the city , near the Café Sicilia . The Phoenix offers a children - free atmosphere , and the prices range more than £ 30 . Rated high . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Sicilia||If you 're looking for a children - free pub , check out The Phoenix . Located near the Café Sicilia at the city centre . The Phoenix offers Fast food ranging more than £ 30 . Rated high by customers . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Café Sicilia||The Phoenix is highly rated pub located in the city centre , near to Café Sicilia . It is priced in the more than £ 30 range and is not children friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Sicilia||The Phoenix Fast food is located near Café Sicilia in city center with a high price range . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Sicilia||The Phoenix is a fast food pub that is children friendly . The prices are more than £ 30 and it 's near Café Sicilia in the city center . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Sicilia||There is a children friendly pub in the city center area , near Café Sicilia named The Phoenix . They have a high customer rating with fast food ranging more the £ 30 . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Café Sicilia||The Phoenix pub near Café Sicilia in city center has a high price range more than £ 30 . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Sicilia||The Phoenix pub in the riverside area charges a bit above average but is highly rates . It 's near the Café Sicilia and serves fast food but is n't child friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Sicilia||The Phoenix is a high rated pub located on the riverside near Café Sicilia offering fast food . It has a mid - level price range and is not children friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Sicilia||Near Café Sicilia in riverside is a pub that serves fast food called The Phoenix . The price range is more than £ 30 , they have a high customer rating and are not kid friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Sicilia||For a less child friendly and more adult fast food experience try The Phoenix pub near the Café Sicilia in the riverside area . It charges a bit more than the average pub but is highly rated . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Sicilia||The Phoenix , a pub that serves fast food near Café Sicilia in riverside has a high customer rating , and is not kid friendly . Their price range is more than £ 30 . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Café Sicilia||The Phoenix is a high rated pub located on the riverside near Café Sicilia offering fast food . It has a mid - level price range and is not children friendly . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix , located in Riverside , near the Café Sicilia , has a high customer satisfaction rating , and is ideal for Fast food . It is a children - friendly location , and offers food in the more than £ 30 price range . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is a family friendly , high rated , pub with Fast food . It 's on the riverside by Café Sicilia with a price range of about 30 Euros . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix a family fast food pub in the more than £ 30 range is located in Riverside next to Café Sicilia . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is a children - friendly Fast food restaurant with a high customer rating . It is located in Riverside , near the Café Sicilia . The price range is more than £ 30 . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix a family fast food pub in the more than £ 30 range is located in Riverside near Café Sicilia . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix Shop and Café Sicilia is a fast food restaurant are located north of the City center . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||City Centre has a great , five star pub called , The Phoenix . It is family friendly and located next to Café Sicilia . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is a five star pub that is family friendly and serves American food . It is located in City Centre next to Café Sicilia . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||There 's a pub that has Fast food with a high customer rating . Its called The Phoenix and it 's on the river side by Café Sicilia . It 's family friendly but expect to pay around 30 Euros . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||Café Sicilia and The Phoenix Shop are a fast food restaurant located north of the City center . \nname : The Phoenix | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix is a pub which sells fast food of great quality at high prices . They are family friendly and can be found just east of Café Sicilia on the River . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a kid friendly French pub on the riverside near Raja Indian Cuisine . Prices range £ 20 - 25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a kid - friendly pub located near Raja Indian Cuisine in the riverside area . They serve French food in the £ 20 - 25 range . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine on the riverside , The Phoenix is a kid friendly French pub with prices £ 20 - 25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly French pub in riverside called The Phoenix . They are located near Raja Indian Cuisine and the price range is £ 20 - 25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a pub located near Raja Indian Cuisine . They are kids friendly and cost between £ 20-£25 . They serve French food . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The French food serving pub known as The Phoenix is located near Raja Indian Cuisine on the the riverside . They cost between £ 20-£25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a kid friendly pub with French food . Located in the riverside area near Raja Indian Cuisine . The price range is £ 20 - 25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix pub is kid - friendly , with prices in the lower 20s . The serve French food on the riverside . It 's located near Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , located in the riverside area near Raja Indian Cuisine , is a kid - friendly pub serving French food . Prices are in the £ 20 - 25 range . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a pub that serves French food located in the riverside area near Raja Indian Cuisine . It is kid friendly with a price range of £ 20 - 25 \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family friendly pub in riverside near Raja Indian Cuisine . They serve French food and the price ranges from £ 20 - 25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Phoenix is a French pub , with a mid price range which is located near to Café Sicilia in the city centre . The Phoenix is not child friendly and customer ratings are average . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Phoenix is a pub which serves French food in the city centre , near Café Sicilia . It has a reasonable customer rating but is quite expensive and does not actively welcome children . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||The Phoenix is a French pub located in the city centre near Café Sicilia . The average rating is 3 out of 5 with a price range from £ 20 - 25 and it is not kid friendly . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||In the city centre , near Café Sicilia , you can find the French pub The Phoenix . It is mot kid friendly however provides reasonably priced food ranging from £ 20 - 25 and boasts a rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||Near Café Sicilia in the city centre you can find a quite pricey pub which does not welcome children called The Phoenix . It has a pretty good customer rating and tends to serve French food . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Café Sicilia||Adults can enjoy French food at The Phoenix which is a mid priced pub situated in the city centre near Café Sicilia . It has average customer ratings . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The French restaurant named The Phoenix is a pub in the city centre , near Café Sicilia is a place for kids with price range from 20 - 25 with a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||Located in the city centre , near Café Sicilia , The Phoenix is an average priced , family - friendly pub serving French food with a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The French restaurant named The Phoenix is a pub in the city centre , near Café Sicilia is a place for kids with price range from 20 - 25 with a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Phoenix is a family - friendly pub serving French food located in the city centre , near Café Sicilia . The Phoenix is averaged priced and has a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Phoenix is a pub near Café Sicilia in the center of the city that is kids friendly , it ranges from 20 - 25 euros for a meal . Customers rate it 3 out of 5 , it serves French food . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Café Sicilia||The Phoenix is a pub near Café Sicilia in the center of the city that is kids friendly , it ranges from 20 - 25 euros for a meal . Customers rate it 3 out of 5 , it serves French food . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The adult only French pub , The Phoenix , is located near Café Sicilia in riverside where you can eat for under £ 25 at a 3 out of 5 rated place \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Located near Café Sicilia in Riverside , The Phoenix is an adult only pub with a 3 out of 5 rating serving French food for under £ 25 \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Phoenix is a kid friendly French pub with moderate prices , and a moderate rating . Located in riverside , near Café Sicilia . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||In riverside near Café Sicilia , is a French pub called The Phoenix . It is not kid friendly , but it has a 3 out of 5 rating and an average price range of £ 20 - 25 \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||The Phoenix is a French pub located in riverside near the Café Sicilia . It has an average price range of £ 20 - 25 and a 3 out of 5 customer rating , however it is not kid friendly . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Café Sicilia||Located in riverside , near Café Sicilia , is The Phoenix , a French pub that is family - friendly and has average prices and an average rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||The Phoenix pub is based in the riverside area near Café Sicilia . It serves food at mid range prices . It is has a three star rating and is family friendly .. \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||A 3 star family friendly pub located near the river and Café Sicilia is The Phoenix . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Sicilia||A French pub near Café Sicilia and riverside is The Phoenix . It has a customer rating of 3 out of 5 , an average price range and is kid friendly . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Found near Crowne Plaza Hotel , The Phoenix pub provides mid - priced wine and cheese dining for the whole family . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family friendly restaurant located near the river and Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a riverside French pub with an average price range of 20 - 25 pounds . It is near Crowne Plaza Hotel , is kid friendly , and has a 3 customer rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The three star pub , The Phoenix , gives families an mid - priced dining experience featuring a variety of wines and cheeses . Find The Phoenix near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area , near the Crowne Plaza Hotel , there is a kid friendly pub named The Phoenix . It serves French food in the £ 20 - 25 price range and has a rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a French pub near to riverside and Crowne Plaza Hotel . It is kid friendly , has an average price range and a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a riverside pub called The Phoenix that has French food at an average price range . It is child friendly , located near Crowne Plaza Hotel , and has a 3 customer rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub serves food at mid range prices . It is family friendly and has a three star rating . It is based in the riverside area near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a French pub called The Phoenix . Although is not kids friendly , the price ranges from £ 20 - 25 . Customers gave it a high rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Highly rated French pub near Crowne Plaza Hotel is The Phoenix . It is not kids friendly . The price ranges from £ 20 - 25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix pub is located near Crowne Plaza Hotel in the city centre and serves French food in the £ 20 - £ 25 price range but is not child friendly \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub located near the Crowne Plaza Hotel in the city centre . They have a high customer rating and their prices range between £ 20 - 25 but they are not children friendly . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix pub is located near Crowne Plaza Hotel in the city centre and serves French food in the £ 20 - £ 25 price range but is not child friendly \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub located near the Crowne Plaza Hotel in the city centre . They have a high customer rating and their prices range between £ 20 - 25 but they are not children friendly . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||' The Phoenix ' is a kid - friendly French pub . It is a reasonably priced place with high quality reviews . It is located near Crowne Plaza Hotel in the city center . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub serving French food located in the city centre near Crowne Plaza Hotel . They have high customer ratings , and are child friendly Prices are in the range of £ 20 - 25 . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a highly acclaimed , kid friendly pub , The Phoenix \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city center near Crowne Plaza Hotel , there is a French pub called ' The Phoenix ' . It has a child - friendly environment with reasonable prices and excellent customer reviews . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A child friendly pub is The Phoenix , near Crowne Plaza Hotel in the city centre . Priced around £ 20 - 25 , they serve French food , and are rated highly by customers . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Selling French food , The Phoenix is a kid friendly French pub in the city centre near Crowne Plaza Hotel \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||A pub that is not kid friendly is located in the riverside area near Crowne Plaza Hotel . It is named The Phoenix , has French food and price range of£20-£30 and a high customer rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , in the Riverside area is a pub called The Phoenix , that is not kid friendly and serves French food in the price range of £ 20 - 25 with a high customer rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix , which is a pub that is not kid friendly , is near Crowne Plaza Hotel and serves French food in the price range of £ 20 - 25 in the Riverside area . It has a high customer rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||A pub that is not kid friendly is located in the riverside area near Crowne Plaza Hotel . It is named The Phoenix , has French food and a moderate price range and a high customer rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub that serves French food with a price range of £ 20 - 25 . It is highly rated by customers and located by the riverside near Crowne Plaza Hotel . Kids are prohibited . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a highly rated pub with a £ 20 - 25 price range located by the riverside close to Crowne Plaza Hotel . It serves French food and kids are not allowed \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , located riverside , is a child - friendly pub offering French cuisine ranging from £ 20 - 25 . It is located near Crowne Plaza Hotel . It has a high customer rating . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in Riverside , The Phoenix , a pub serving French cuisine , has a high rating among customers . The food ranges from £ 20 - 25 and is child - friendly . It is located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you happen to find yourself strolling riverside and getting a bit hungry be sure to stop in at The Phoenix . The Phoenix is a great coffee ship serving French cuisine at an affordable price . The Phoenix is child friendly and near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family friendly pub and French restaurant located outside of the City Centre . It is near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a very good fairly inexpensive pub that offers wine and cheese located next to the Crowne Plaza Hotel called The Phoenix . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is good for kids and a meal goes for £ 20 - 25 . It is a pub with French food and has a high rating . It is next to Crowne Plaza Hotel in the riverside area . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is an upscale , family friendly pub that is located on the river next to Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub that offers wine tasting that is very good and fairly inexpensive located near the Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a cute pub serving French food . The prices are average and the pub setting is child friend . You will find The Phoenix in the riverside area near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is an upscale pub located on the river next to Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix offers an affordable five star dining experience for families . It is a French restaurant and pub outside of the City Centre , near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap family friendly French pub and a pub located near Raja Indian Cuisine near riverside \nname : The Phoenix | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap French pub named The Phoenix that is family friendly in riverside by Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix pub is now serving French food at low prices in a family friendly atmosphere , located in the riverside area by Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap French pub in riverside . it is family friendly and located by Raja Indian Cuisine . \nname : The Phoenix | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , lies a French pub called The Phoenix , known for being a cheap family friendly pub in riverside \nname : The Phoenix | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Looking for French food at a low prices in a family friendly environment , check out The Phoenix pub in the riverside area by Raja Indian Cuisine \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The French pub , The Phoenix , is located in the city centre near Crowne Plaza Hotel . They are adult oriented and have great reviews . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a cheap adult pub in the city centre near Crowne Plaza Hotel . They serve French food and have great reviews . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||For a cheap pub offering French Food , try The Phoenix . It is located in the city centre , near Crowne Plaza Hotel , and has a customer rating of 5 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a highly rated French pub near Crowne Plaza Hotel in the city centre . They offer low prices , but are not family - friendly . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||If you are looking for a cheap French pub with a 5 out of 5 rating that is not family - friendly , visit The Phoenix in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Try The Phoenix . This Five out of Five rated pub has French Food for cheap in the city centre . It is located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The cheap highly rated family - friendly pub called The Phoenix is located in the city centre , near Crowne Plaza Hotel . It serves French food . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There 's a family - friendly pub called The Phoenix selling French food . It 's rated 5 out of 5 and it 's cheap as well , you can find it by Crowne Plaza Hotel in the city centre . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , a French , affordable pub in the city centre near Crowne Plaza Hotel . It is family - friendly with excellent customer service . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre , near Crowne Plaza Hotel , there is a cheap highly rated pub called The Phoenix , which serves French food and is family - friendly . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub with a 5 out of 5 rating . It sells French food by the Crowne Plaza Hotel in the city centre , you can bring your kids and get a cheap meal . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a French pub The Phoenix with excellent customer rating . It is located in the city centre near Crowne Plaza Hotel , cheap and family - friendly . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||pub in Riverside called The Phoenix is cheap and near Crowne Plaza Hotel . It is not family - friendly but is 5 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is in the riverside area , is cheap and serves French food . It is near Crowne Plaza Hotel and is 5 out of 5 . It is a non family - friendly pub . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a riverside pub serving cheap French food , near Crowne Plaza Hotel . It may be a no families environment , but with a customer rating of 5 out of 5 , you ca n't complain . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub in the riverside area near Crowne Plaza Hotel . Also serving French food at low prices , customers rate it 5 out of 5 but it is n't family - friendly . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix , near Crowne Plaza Hotel on the riverside has a great customer rating of 5 out of 5 . It 's a pub that serves French food at cheap prices , although it 's a no families environment . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||If you are looking for a pub in the riverside area try The Phoenix . Also serving low priced French food it is located close to Crowne Plaza Hotel . It is not family - friendly but has customer ratings of 5 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a French pub located near Crowne Plaza Hotel in riverside . At a customer rating of 5 out of 5 and its cheap this makes a great family friendly place . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a five - star restaurant and pub , located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the Riverside area , there is a family - friendly French pub called The Phoenix . It is located near Crowne Plaza Hotel and has a 5 out of 5 customer rating . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a inexpensive 5 star family restaurant located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a cheap pub situated at the riverside near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix can be found north of the city center , near a Crowne Plaza Hotel , with a view of the river . For their cheap prices , you and your family can receive 5-star cheeses , fruits and wines . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub it a cheap and a family friendly place situated down the riverside near Crowne Plaza Hotel . This is the main reason for receiving a 5 out of 5 customer rating score . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is an inexpensive , 5-star pub that offers a menu of fruits , cheeses and wines that the whole family is welcome to enjoy . They are located north of the city center , beside a Crowne Plaza Hotel and the river . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel there is a family friendly , French pub The Phoenix . It is a cheap place in riverside with a 5 out of 5 customer rating . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a cheap , family - friendly French pub , in the Riverside area . It is near Crowne Plaza Hotel , and has a 5 out of 5 customer rating . \nname : The Phoenix | Type : pub | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family - friendly restaurant , near Crowne Plaza Hotel , that offers an affordable menu of cheeses , breads , soups and alcohol . It has a five - star rating . \nname : The Phoenix | Type : pub | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a high priced pub serving French cuisine situated on the riverside near Raja Indian Cuisine which is child friendly . \nname : The Phoenix | Type : pub | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a pub near Raja Indian Cuisine in Riverside that serves expensive French food . It is children friendly . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub located in the city centre . It has a high price range , but a customer rating of 3 out of 5 . It is located near Crowne Plaza Hotel , and is not children friendly . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix pub is in the city centre near Crowne Plaza Hotel . It serves French food of high prices . Not being child friendly customers rate it 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre close to Crowne Plaza Hotel is The Phoenix pub . Serving French food and prices being on the high side . This is n't child friendly and has a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The French restaurant , The Phoenix , is a high priced pub near Crowne Plaza Hotel . It is not children friendly , and has a rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the city centre is The Phoenix . A pub that serves French food with a customer rating of 3 out of 5 . It has a high price range . No children . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a city centre pub near Crowne Plaza Hotel . Rated 3 out of 5 by customers , it 's French food falls within a high price range . No for children . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a children friendly French pub near Crowne Plaza Hotel in the city centre . It has a customer rating of 3 out of 5 and a high price range . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a children friendly French pub near Crowne Plaza Hotel in the city centre with a customer rating of 3 out of 5 and a high price range . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city center area near Crowne Plaza Hotel is a child friendly French food pub in the high price range named The Phoenix and was given a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub in the city center near Crowne Plaza Hotel , offering French food in a family - friendly atmosphere in a high price range \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family - friendly high priced pub in the city centre near Crowne Plaza Hotel offering French food \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly French food pub with a high price range near Crowne Plaza Hotel in the city center area . The place is named The Phoenix and received a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a highly priced French pub near Crowne Plaza Hotel by riverside . The Phoenix is not child friendly and has a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a riverside pub that serves French style food , with a customer rating of 3 out of 5 this leaves a lot to be desired with a high price range and no children policy you can find it located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a restaurant providing take - away deliveries in the low price range . It is located in near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||For a child free riverside pub that serves French style food at a high price and a customer rating of 3 out of 5 then visit The Phoenix which is located near to Crowne Plaza Hotel \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub which is near Crowne Plaza Hotel by riverside . It is in the high price range and has a customer rating of 3 out of 5 . The Phoenix is not child friendly . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a low - priced restaurant in near Crowne Plaza Hotel that delivers take - away . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub near the Crowne Plaza Hotel in the riverside area . It is child friendly and has a customer rating of 3 out of 5 . It serves French food and has a high price range . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly pub located near Crowne Plaza Hotel in the city centre called The Phoenix which offers good food at a premium price . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The pub , The Phoenix near the Crowne Plaza Hotel in riverside area . It is child friendly , serves French food , has a 3 out of 5 rating and can be a bit high in price . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is by the Crowne Plaza Hotel in the riverside area . It is a child friendly , pub , that has food ; the price is a bit high but they have a 3 out of 5 rating . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Next to Crowne Plaza Hotel , The Phoenix a family friendly three star French restaurant \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family friendly pub located near Crowne Plaza Hotel in the city centre which offers good food at a premium price . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub serving high priced French food that is located near Crowne Plaza Hotel on the riverside . It is child friendly and has customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A better option than Crowne Plaza Hotel is The Phoenix , a 3-star pub . Families can gather here for wine and cheese while spending more money than they would have at Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , serving three star French food to families , located next to Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a high price range French pub in the riverside area near Crowne Plaza Hotel . It is child friendly and has a customer rating of 3 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Outside of the City centre and near Crowne Plaza Hotel , The Phoenix is a 3-star rated pub . Family friendly atmosphere with more wine than whine and cheese , be prepared to spend more here . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is pub that serves average French food in city centre near Crowne Plaza Hotel . It is not family - friendly place with price less than £ 20 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||pub called The Phoenix is located in city centre , near Crowne Plaza Hotel . It serves average French food with price range less than £ 20 . It is not family - friendly place . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the city centre is French pub The Phoenix serving dishes less than £ 20 \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||French average rated pub in the city center where you pay less than £ 20 . The Phoenix , non family , near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub average rated located in the city center near Crowne Plaza Hotel . You pay less than £ 20 in a non family environment . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix , a French pub , serves dishes less than £ 20 near Crowne Plaza Hotel in the city centre \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family - friendly pub with French cuisine . Prices are less than £ 20 . Customers give it an average rating . It is located in the city centre near a Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located in the city centre near Crowne Plaza Hotel , The Phoenix is a family - friendly pub with French cuisine . Prices are less than £ 20 . Customers give it an average rating . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||French pub , The Phoenix , is located in the city centre near Crowne Plaza Hotel . They provide great service and products at a lower price . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , located near Crowne Plaza Hotel in the city centre , is a French pub with has an average customer rating , a less than £ 20 price range , but is family - friendly . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the heart of the city near Crowne Plaza Hotel is The Phoenix , a French pub offering good prices , a family - friendly atmosphere , and good customer service . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a French pub near Crowne Plaza Hotel in the city centre called The Phoenix which is family - friendly , an average customer rating , and has a less than £ 20 price range . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub near Crowne Plaza Hotel . This coffee ship is family - friendly , has average customer ratings , and average prices . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Let 's go to that French pub by Crowne Plaza Hotel , The Phoenix , it 's right beside the river and it 's cheaper than £ 20 , however it 's not family - friendly and its customer rating is average . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub near Crowne Plaza Hotel in riverside . It has low - prices and is not family - friendly . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub near Crowne Plaza Hotel , and beside the river , costing roughly £ 20 , it 's a bit cheaper , however it 's not family - friendly , and its customer rating is average . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French , family - friendly pub near Crowne Plaza Hotel in the Riverside area . The Phoenix has an average customer rating and prices in the average range . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a cheaply - priced pub named The Phoenix near Crowne Plaza Hotel in riverside . Children are not allowed . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the city centre near Crowne Plaza Hotel , there is a cheap pub called The Phoenix . It is family - friendly and has a customer rating of three out of five . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a French family friendly and average rated pub near Crowne Plaza Hotel that has a price range of less than £ 20 in the riverside area . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a cheap pub near Crowne Plaza Hotel in the city centre . It is family - friendly and has a customer rating of three out of five . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a three star low - price coffee show located in North City Centre called The Phoenix . If you are looking for it you can use the Crowne Plaza Hotel nearby as a landmark . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub at the riverside , near Crowne Plaza Hotel , and serves French food for less than £ 20 and is family Friendly \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is in the riverside area near Crowne Plaza Hotel . It has a average customer rating , serving French food in a pub atmosphere . The price range is less than £ 20 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel at the riverside for less than £ 20 , The Phoenix is family Friendly and serves French food \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||in the riverside is a family friendly French pub named The Phoenix with a price range of less than £ 20 near Crowne Plaza Hotel has an average customer rating . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub located near the river , perfect of family days out with children . the Phoenix offers a range of food , snacks , wine and coffee at low prices . the pub is rated 3 out of 5 stars and situated near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub situated right by the river . The shop offers a range of snacks , wine and coffee . The Phoenix is low priced and rated a 3 out of 5 stars . The Phoenix is located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , the low - price pub located along the river , is City Centre 's three star shop near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub that serves French food . It is located in the center of the city near Crowne Plaza Hotel . It is not family - friendly . The customer rating is low and the price range is less than £ 20 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is located near Crowne Plaza Hotel in the center of the city . It is a pub that serves French food . It is not family - friendly . The customer rating is low and the price range is less than £ 20 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||No , The Phoenix is French restaurant with pub on side Crowne Plaza Hotel in the city centre with low rank and price less £ 20 \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is French restaurant with no pub on side Crowne Plaza Hotel in the city centre with low rank and price less than £ 20 \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub that serves French food for a low price . It is not family - friendly and has a low customer rating . It is located in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a pub located in the city centre near Crowne Plaza Hotel named The Phoenix . It has a low customer rating and is n't family - friendly . They serve French food for under 20 euros . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a Low price pub serving French food named The Phoenix Located in city center near Crowne Plaza Hotel with a low customer rating and is family - friendly \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family - friendly pub serving French cuisine for a budget price . It is located in the city centre near to The Crowne Plaza Hotel \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre close to Crowne Plaza Hotel is a French pub called The Phoenix , it is family - friendly with a low rating and prices at approximately under £ 20 per person \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for a family - friendly French pub in the city centre you should try The Phoenix . located near to Crowne Plaza Hotel . Prices are reasonable but ratings are low . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre situated near Crowne Plaza Hotel is a French pub called The Phoenix , it is family - friendly and reasonably priced at less than £ 20 per person , it has a low customer rating \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is Low price pub serving French food Located in city center near Crowne Plaza Hotel with a low customer rating and is family - friendly \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub serving low priced French food close to Crowne Plaza Hotel near the river . It is not family friendly and has a rating of 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a cheap restaurant rated 1 star , The Phoenix pub , located in city centre east of Crowne Plaza Hotel . Not recommended for families . They offer eat - in , take - out or delivers . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||If you are looking for a family - friendly French pub at the riverside you should try The Phoenix located near to the Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub that serves French food and is situated near Crowne Plaza Hotel at Riverside . Low customer ratings and not suitable for families yet low price range of around £ 20 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub in the riverside area that sells French cuisine in the £ 20 or less range , it does n't have good customer ratings . You 'll find it near the Crowne Plaza Hotel but it is n't family - friendly . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub in the riverside area , close to Crowne Plaza Hotel . This venue is cheap , not recommended for families and has a customer rating 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub located at the riverside near to The Crowne Plaza Hotel . It is family - friendly with a budget menu but low ratings . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub serving French food close to Crowne Plaza Hotel near the river . It is not family friendly and has a rating of 1 out of 5 . The price range is low . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a cheap , low rated pub in the riverside area . It serves French food , not recommended for families and is close to Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix pub is a low priced restaurant in the city centre , east of Crowne Plaza Hotel . You can eat - in or take - out . Not family friendly . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a riverside pub near to Crowne Plaza Hotel called The Phoenix . It serves French cuisine for less than £ 20 per head but it is n't very family - friendly and has low customer ratings . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a cheap , one - star pub . It is family friendly and is near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub yes less than £ 20 French Crowne Plaza Hotel riverside low . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel by riverside is a pub that is yes family friendly with a low customer rating called The Phoenix and the prices are less than £ 20 . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub . This pub is family friend and prices range less then 20 dollars . They offer different types of French food . The Phoenix is located in Riverside near the Crowne Plaza Hotel . Our customer rating is low . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub is average priced with low customer rating , is family Friendly located in the Riverside area near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub is family Friendly near Crowne Plaza Hotel in the Riverside area that serves French food it is average priced and a low customer rating . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a restaurant The Phoenix located near Crowne Plaza Hotel that 's Family - Oriented . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub is a cheap , one star restaurant suitable for the whole family , It is located next to Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Families are welcome at The Phoenix pub - great for those on a budget . Find us near The Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly pub near Crowne Plaza Hotel called The Phoenix . It has a one - star rating and is inexpensive . \nname : The Phoenix | Type : pub | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub . This pub is family friend and prices range less then 20 dollars . They offer different types of French food . The Phoenix is located in Riverside near the Crowne Plaza Hotel . Our customer rating is low . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a pub named The Phoenix with a moderate price range in the city centre , near Crowne Plaza Hotel . It serves French food and is not kid friendly , however it only has a customer rating of 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is in the city centre , near Crowne Plaza Hotel . It 's a French pub that is n't kids friendly . It has a moderate price range and a customer rating of 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a moderate French pub near Crowne Plaza Hotel in city centre . It is not kid friendly and has a 1 out of 5 rating . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is not kid friendly . It is located near Crowne Plaza Hotel in city centre . It is a French pub that has a 1 out of 5 rating . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||With a moderate price range , French pub The Phoenix is located in city centre near Crowne Plaza Hotel . It has a customer rating of 1 out of 5 and is not kid friendly . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||French restaurant The Phoenix is a pub located in city centre near Crowne Plaza Hotel . It has a customer rating of 1 out of 5 and is not kid friendly , price range is moderate . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , a moderately priced , kid friendly pub in the city centre area near Crowne Plaza Hotel has a customer rating of 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a moderately priced , kid friendly pub in the city centre area near Crowne Plaza Hotel that has a customer rating of 1 out of 5 named The Phoenix . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub that sells French Food for moderate prices . It has a 1 out of 5 rating and it is kids friendly . It is located in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub . It has a moderate price range and it sells French food . It is kids friendly and has a 1 out of 5 rating . It is in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a French pub with is kids friendly , and is in moderate price range located near Crowne Plaza Hotel in the city centre . However , it has a customer rating of only 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is French pub called The Phoenix which has a moderate price range and is kids friendly , but , it has a customer rating of 1 out of 5 . It is located in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Leave the children at Crowne Plaza Hotel and come to The Phoenix , a 1-star French - style pub down on the riverside . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||For a moderately priced French - style pub on the riverside , come to The Phoenix - a 1 star child - free experience just past the Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a moderate priced French pub located near Crowne Plaza Hotel in riverside . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub with moderate pricing located in riverside near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a reasonably priced pub offering a more adult experience by the riverside . It 's location near a Crowne Plaza Hotel and misguided French bistro styling take to much from the experience to warrant a second visit . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There resides a French pub that should have fallen into the riverside with its prices . The Phoenix offers no respite for weary parents , but the Crowne Plaza Hotel next door definitely does . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a one - star rated pub located along the riverside near Crowne Plaza Hotel . They serve medium - priced wine and hors d'oeuvre in a family friendly atmosphere . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a quaint pub serving French food at a moderate price point , specifically friendly to kids . However it has a 1 out of 5 customer rating , but is located near Crowne Plaza Hotel by the riverside \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family friendly pub , The Phoenix , has a moderately expensive menu that is located next to Crowne Plaza Hotel on the river . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family - friendly pub near Crowne Plaza Hotel in the riverside area . With a moderate price range , it serves French food and has a customer rating of 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in Riverside , near Crowne Plaza Hotel , The Phoenix is a moderately priced , kid friendly pub . It serves French food and has a customer rating of 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a pub called The Phoenix with a moderate price range that serves French food and is also kid friendly . It has a customer rating of 1 out of 5 , located near Crowne Plaza Hotel by the riverside \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family style pub with a rating of one out of five stars for a decent price located in City centre near Crowne Plaza Hotel \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Along the riverside near Crowne Plaza Hotel , is a family friendly pub called The Phoenix . They serve wine and hors d'oeuvre in the medium price range and have a one - star rating . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family style pub with a rating of one out of five stars in City center . near Crowne Plaza Hotel \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family friendly pub located next to Crowne Plaza Hotel on the river . \nname : The Phoenix | Type : pub | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub serving French food in the riverside area . It is family friendly with a moderate price range , and located near Crowne Plaza Hotel . It has a customer rating of 1 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is Moderate price pub named The Phoenix serving French food Located in city center near Crowne Plaza Hotel with a customer rating of 5 out of 5 but not children - friendly \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a highly rated pub in the City Centre near Crowne Plaza Hotel . It is aimed at older upper class people serving fantastic coffee and delicious French Food . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is Moderate price pub serving French food Located in city center near Crowne Plaza Hotel with a customer rating of 5 out of 5 but not children - friendly \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a highly rated pub in the City Centre near Crowne Plaza Hotel . It is aimed at older upper class people serving fantastic coffee and delicious French Food . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , a pub , located at City Centre near Crowne Plaza Hotel , is set at a higher price range and features French Food . It is family - friendly . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a children friendly pub located in the city centre near the Crowne Plaza Hotel . The customer rating is 5 out of 5 and if you 're looking for some French food and have a price range of more than 30 pounds this is a good place to go . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a French pub that is located in the city centre near Crowne Plaza Hotel . It is family - friendly , the price range is high , but it has a 5 out of 5 customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a children friendly pub located in the city centre near the Crowne Plaza Hotel . The customer rating is 5 out of 5 and if you 're looking for some French food and have a price range of more than 30 pounds this is a good place to go . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub , located at City Centre near Crowne Plaza Hotel , featuring higher price range menu and features French Cuisine . It is family - friendly . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre near Crowne Plaza Hotel , there is a French family - friendly pub called The Phoenix . The price range is more than 30 pounds , and it has a 5 out of 5 customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub near Crowne Plaza Hotel in the riverside area with a customer rating of five out of five . It is not children friendly and has a price range of more than £ 30 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||For a high priced , well reviewed French food , The Phoenix is pub located near Crowne Plaza Hotel in the riverside area and is not child friendly . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||On the riverside there is a reasonably prices pub called The Phoenix located near Crowne Plaza Hotel that is kid friendly and rates a 5 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is pub with French food . Its customer rating is 5 out of 5 and has a price range of over £ 30 . It is not child friendly . It is located near Crowne Plaza Hotel in the riverside area . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the riverside area there is a cheap pub called The Phoenix that serves French food and welcomes children that customers have rated a 5 out of 5 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||In the riverside area near Crowne Plaza Hotel there is a pub called The Phoenix that serves French food costing more than £ 30 . It is not children friendly and has a customer rating of five out of five . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A good pub that received a customer rating of 5 out of 5 is The Phoenix . It is in the riverside area near the Crowne Plaza Hotel . It costs more than 30 pounds and is kid friendly . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Try The Phoenix , a highly - rated French restaurant , described by customers as a 5 out of 5 . The pub 's menu and ambiance is high - end , so you should expect to pay above £ 30 . It 's children - friendly , so your kids will love it too . It is located in Riverside , near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub located in City center . by the Crowne Plaza Hotel . The high - priced pub serves a light menu of British style food along with alcohol . This family - friendly pub receives 5 out of 5 stars from customers . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located inside City center . , next to the Crowne Plaza Hotel , is the high - priced pub The Phoenix . This well - reviewed pub , 5 out of 5 stars , is a family - friendly establishment that serves British style food and alcohol . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub is located at the city centre , near Crowne Plaza Hotel . It is family friendly and rated 5 out of 5 \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family friendly pub that offers wine . It is located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you are in the Riverside area , try The Phoenix , a high - end pub , located near Crowne Plaza Hotel . At £ 30 and above , its menu is a bit pricey , but its 5 out of 5 customer rating proves that its delectable , children - friendly French food is well worth every penny . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in riverside there is a French food place called The Phoenix . Customers give it a 5 out of 5 rating its a pub that is kid friend . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a kid friendly pub called The Phoenix in riverside are that is price ranged more than 30 . They have French food and it has a 5 out of 5 rating . It 's near a Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a French food pub that received 5 out 5 in customer ratings . It is The Phoenix , near Crowne Plaza Hotel in the riverside area . It is child friendly , and will cost more than 30 pounds to eat there . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub that offers wine and is located near Crowne Plaza Hotel and is family friendly . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Perhaps because it is n't place for children or the average price more than £ 30 , The Phoenix pub that serves French food has a low customer rating . Located near Crowne Plaza Hotel in the city centre area . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a pub called The Phoenix near the Crowne Plaza Hotel in city centre . They serve French food in a non - child friendly environment at prices more than £ 30 and have earned a low customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub serving French food at prices more than £ 30 . Located near Crowne Plaza Hotel in the city centre , this restaurant is not child friendly and has a low customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The pub , The Phoenix , is not children friendly that serves French food and is located in the city centre near Crowne Plaza Hotel . With a average price of more than £ 30 it has an average low customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub providing French food and is children friendly for more than £ 30 price range . It is located in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a French pub called The Phoenix in city centre near Crowne Plaza Hotel . The price range is more than £ 30 , a low customer rating but children are welcome . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a family - friendly pub near the Crowne Plaza Hotel in the city center . It has a low customer rating and a price range of more than £ 30 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city center , The Phoenix is a French pub with a family atmosphere . It is located next to the Crowne Plaza Hotel with a low customer rating and a price point of more than £ 30 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a French Café The Phoenix located in the city centre near Crowne Plaza Hotel and is children friendly . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub serves French food for more than £ 30 in the city centre near Crowne Plaza Hotel . It is children friendly but has a low customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is pub that serve French food but is not children friendly and ranges more than £ 30 but has a low rating . It 's located in riverside near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Costing more than £ 30 and located in riverside near Crowne Plaza Hotel , The Phoenix is a French pub . It is not kid friendly and has a low customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a pub in riverside near Crowne Plaza Hotel called The Phoenix that serves French food . It has low ratings because it is not children friendly and cost more than £ 30 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a French pub located in riverside near Crowne Plaza Hotel . It has a low customer rating , not kid friendly and costs more than £ 30 . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , at Riverside , there 's a pub that serves French food named The Phoenix . It has a low customer rating , is not child - friendly , and it costs more than £ 30 to eat there . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a pub near Crowne Plaza Hotel , at Riverside , with a price range of more than £ 30 . Serving French food , it 's not children - friendly and has low customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is an expensive - priced pub located close to Crowne Plaza Hotel called The Phoenix . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a high priced pub that is family friendly and located near a Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub is near Crowne Plaza Hotel , and situated by the river . It sells delicious foods such as fondue and cheeses , with which you can enjoy a glass of wine or spirits . It is in the more expensive price range , and so far has a one star rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||French food at The Phoenix pub by the riverside near Crowne Plaza Hotel , is children friendly and the price range is more than £ 30 , although it has a low customer rating . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub and is expensive price ranged . It is located close to Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a pub near Crowne Plaza Hotel by Riverside area that provides French food . its price is more than £ 30 with a low customer rating and is children friendly \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area near Crowne Plaza Hotel is a French pub called The Phoenix that has a low customer rating but is child friendly and is more than 30 dollars . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a French pub called The Phoenix that has a low customer rating but is child friendly and is more than 30 dollars and is located in the riverside area near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a high priced pub called The Phoenix it 's a family friendly pub located near Crowne Plaza Hotel . \nname : The Phoenix | Type : pub | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix pub near Crowne Plaza Hotel by the riverside serving French food is child friendly . Price range more than £ 30 , rated low by customers . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With a cheap price range along the riverside , the restaurant named The Phoenix is family friendly and serves Fast food Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap and family friendly restaurant in the Riverside area . The Phoenix serves fast food and is located near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Riverside has a cheap fast food restaurant near Raja Indian Cuisine named The Phoenix . It 's family - friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Cheap food and a family friendly atmosphere at The Phoenix restaurant . Situated riverside near the Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap and family friendly restaurant in the Riverside area . The Phoenix serves fast food and is located near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a restaurant serving Fast food located in riverside near Raja Indian Cuisine . It is cheap and family Friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With a cheap price range along the riverside , the restaurant ' The Phoenix ' is family friendly and serves Fast food Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family Friendly The Phoenix is a cheap restaurant serving Fast food . It is located in riverside near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||riverside restaurant The Phoenix Fast food price range same Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a restaurant located in the city centre , near Raja Indian Cuisine , in the high price range . The Phoenix provides Fast food but no children friendly menu or services are offered . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a restaurant near Raja Indian Cuisine in the city centre . They serve Fast food , no children menus or services , in a high price range . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a high priced restaurant that serves fast food but is a non - children friendly atmosphere . It is located near Raja Indian Cuisine both in the city centre . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||A high priced restaurant that serves fast food is The Phoenix , but has a non - children friendly atmosphere . It is located in the city centre near Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child - friendly fast food restaurant . It is in the high price range , and a restaurant . It is located near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The child friendly Fast food restaurant named The Phoenix restaurant is near the Raja Indian Cuisine and the city center in the high price range . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix restaurant is in the high price range and serves child friendly Fast food near the Raja Indian Cuisine and the center of the city . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child - friendly fast food restaurant in the high price range . It is located in the city centre , near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix offers Fast food and restaurant with expensive price near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the area of riverside near Raja Indian Cuisine is The Phoenix , it is a restaurant . It is not kid friendly and the Fast food is highly expensive . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix , a fast food restaurant is not kid friendly . With a high price range , it is near Raja Indian Cuisine and in the riverside area . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix offers Fast food and restaurant with expensive price near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The restaurant , The Phoenix , is not kid friendly , considered fast food and has a high price range . Though not kid friendly , it is near Raja Indian Cuisine and river side . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix restaurant has highly expensive Fast food , and it is not kid friendly . It is in the area of riverside and near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a fast food , restaurant located near Raja Indian Cuisine in Riverside called The Phoenix . The restaurant is in the higher price range and is children friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly restaurant called The Phoenix that is located near Raja Indian Cuisine with high price takeaway menu items . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A high priced restaurant serving fast food in the riverside area , near Raja Indian Cuisine , is The Phoenix . It is children friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a children friendly fast food restaurant and restaurant . It is located in the riverside area near Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a high priced , child friendly , Fast food restaurant in Riverside , near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly , The Phoenix restaurant which is on the pricey side , located near the river and Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for higher priced fast food in a child friendly environment , consider The Phoenix restaurant . Located in the riverside area , near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a fast food , restaurant located near Raja Indian Cuisine in Riverside . The restaurant is children friendly and is in the higher price range . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In Riverside , near Raja Indian Cuisine is a child friendly , high priced , fast food coffee ship called The Phoenix . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Beside Raja Indian Cuisine in riverside there is a child friendly high priced fast food and restaurant called The Phoenix . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is located near Raja Indian Cuisine that has expensive , family friendly take out . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Close to Raja Indian Cuisine , on the riverside , The Phoenix restaurant offers higher priced fast food in a child friendly establishment . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child friendly high priced fast food and restaurant near Raja Indian Cuisine in riverside . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a high price restaurant located by Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly fast food restaurant and restaurant , The Phoenix is very expensive . It is located in the riverside area near Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a restaurant named The Phoenix by Raja Indian Cuisine . It 's a dine in at a high price . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||A fast food and restaurant near Raja Indian Cuisine in the city centre , The Phoenix is a family - friendly place where you can eat for less than £ 20 \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a moderately priced restaurant The Phoenix in the city centre near Raja Indian Cuisine . It is not family - friendly but they serve fast food . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a family - friendly fast food and restaurant near Raja Indian Cuisine in the city centre where you can eat for less than £ 20 \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a nice restaurant with fast food service and lower prices than £ 20 are located in the city center area near Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a charming restaurant featuring fast food service and lower prices to £ 20 are located near Raja Indian Cuisine in the city center area \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a moderately priced restaurant in the city centre near Raja Indian Cuisine . It is not family - friendly but they serve fast food . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Phoenix , we are a restaurant . We 're family - friendly we serve fast food we are located in the city centre near the Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Phoenix , we are a restaurant . We 're family - friendly we serve fast food we are located in the city centre near the Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family - friendly restaurant that has a price range less than 20 pounds featuring fast food near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix restaurant serves fast food is located near Raja Indian Cuisine in the city centre . It is family - friendly and has a price range less than 20 pounds . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix restaurant , located on the river , is near Raja Indian Cuisine and low priced \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside near Raja Indian Cuisine is restaurant called a The Phoenix . It serves fast food for less than £ 20 and is n't family - friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a riverside , fast food restaurant for adults that is riverside near Raja Indian Cuisine with prices less than £ 20 . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a comfortable restaurant that is within city centre limits , next to the Raja Indian Cuisine restaurant . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||At the riverside near Raja Indian Cuisine is The Phoenix restaurant that has Fast food less than £ 20 and is not family - friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||For cheap fast food , The Phoenix restaurant is in the city centre near Raja Indian Cuisine . It is not family friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The restaurant , The Phoenix is an affordable location city center . and the Raja Indian Cuisine restaurant \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a low priced restaurant on the river located near Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a non family - friendly restaurant in the riverside . It is located near to Raja Indian Cuisine and serves fast food for less than £ 20 . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix restaurant and fast food restaurant offers meals under £ 20 . It is located in riverside near Raja Indian Cuisine and is not family - friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix restaurant in the city centre , close to Raja Indian Cuisine , is cheap and not family friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||there 's a family friendly restaurant in a cheap price range near Raja Indian Cuisine called The Phoenix \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix restaurant , located next to Raja Indian Cuisine , is a low - cost , family friendly place offering burgers and fries . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a low cost family friendly restaurant near the river and Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A restaurant with fast food , near Raja Indian Cuisine on the riverside is family friendly and less than 20 euros is known as , The Phoenix . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a restaurant providing tea and coffee . It is located near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , located on the river next to Raja Indian Cuisine , north of the City centre , is a low - priced , family friendly restaurant offering burgers and fries as well . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant called The Phoenix located near Raja Indian Cuisine in the city centre that provides coffee and tea . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is located near Raja Indian Cuisine and is a low cost family friendly restaurant . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , a restaurant with fast food , near Raja Indian Cuisine , on the riverside is family friendly and less than 20 euros \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant named The Phoenix located in the Riverside area near Raja Indian Cuisine . This is a kid friendly restaurant offering a variety of food at a low cost . \nname : The Phoenix | Type : restaurant | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family friendly restaurant in a cheap price range near Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the centre of the city near Raja Indian Cuisine , moderately priced The Phoenix offers an adult , non kid friendly fast food experience . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix restaurant serves fast food at a moderate price . The Phoenix can be found near Raja Indian Cuisine in the city centre and is not kid friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a restaurant by the name of The Phoenix . Their price range is moderate and they serve Fast Food . They are not kid friendly and they are at the city centre near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a no kid friendly restaurant called The Phoenix located at the city centre . They serve fast food , their price range is moderate , and they are near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a moderately priced , adult oriented restaurant , located in the city centre , near the Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the city centre , near Raja Indian Cuisine , The Phoenix is a moderately priced adult oriented restaurant . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix fast food restaurant is kids friendly is located in city centre near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced restaurant named The Phoenix that serves fast food . The Phoenix is Kid Friendly and is near Raja Indian Cuisine in the city centre . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a fast food restaurant with a moderate price range . It is located in the city centre near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix fast food Café is located in city centre near Raja Indian Cuisine with a moderate price range and is kids friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a restaurant serving fast food near Raja Indian Cuisine in the city center . The Phoenix is kid friendly and moderately priced . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant located in the city centre near Raja Indian Cuisine . The Phoenix has a moderate price range and is kid friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The the riverside area , near Raja Indian Cuisine , there is a Fast food restaurant in the moderate price range called The Phoenix . It is not kids friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a Fast food restaurant located near Raja Indian Cuisine in riverside called The Phoenix . It has a moderate price range and is not kid friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in Riverside there is a moderately priced Fast food restaurant named The Phoenix . It is not kids friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a Fast food restaurant located near Raja Indian Cuisine in riverside . It is not kid friendly and has a moderate price range . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix serves fast food . It is also a restaurant . The price range is moderate . It is kids friendly . It is in the riverside area near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Phoenix is a restaurant . There price range is moderate . They serve fast food . They are not kids friendly . Located near the Raja Indian Cuisine , in the riverside area . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a low priced restaurant located near Raja Indian Cuisine called The Phoenix . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a well priced restaurant The Phoenix which is located near to Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a child friendly restaurant located near to Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a moderately priced restaurant offering fast food and is kid friendly . It is located near Raja Indian Cuisine in riverside . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix restaurant is a mid - priced , family friendly restaurant located in city centre , east of Raja Indian Cuisine . They offer eat - in , take - out or deliveries . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a good restaurant near to Raja Indian Cuisine . its kids friendly \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family friendly restaurant located near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a restaurant providing Fast food deliveries in the low price range . It is located in Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a moderate priced Fast food restaurant in riverside near Raja Indian Cuisine . It is kid friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a moderately cheap restaurant in Riverside near the Raja Indian Cuisine called The Phoenix . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a Fast food restaurant in riverside near Raja Indian Cuisine . It is kid friendly and moderate priced . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a mid - priced , family friendly restaurant , The Phoenix restaurant , that offers take - out or deliveries . It is located in city centre just east of Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near Raja Indian Cuisine is a moderately priced restaurant that serves fast food . It is also child friendly and is called The Phoenix . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a moderately cheap restaurant located in the area of Riverside , near the Raja Indian Cuisine . Fast food is sold there and the staff are friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , near Raja Indian Cuisine is a moderately priced fast food restaurant that is child friendly and is in riverside . \nname : The Phoenix | Type : restaurant | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A restaurant named The Phoenix is located near Raja Indian Cuisine in riverside offering moderately priced fast food . It is kid friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||At the riverside , nearby Raja Indian Cuisine , there is a child friendly restaurant called The Phoenix which serves fast food , for which you can expect to pay more than £ 30 . \nname : The Phoenix | Type : restaurant | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a Fast food restaurant near Raja Indian Cuisine in the riverside area . It is children friendly with a price range more than £ 30 per head . \nname : The Phoenix | Type : restaurant | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a children friendly restaurant that serves fast food and has a price range of more than L30 . It is by the riverside near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a Fast food restaurant with a price range more than £ 30 there is The Phoenix in the riverside area near Raja Indian Cuisine . it is also children friendly . \nname : The Phoenix | Type : restaurant | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix restaurant is child friendly and offers fast food priced on average at more than £ 30 . It is located in the riverside area , near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a children friendly restaurant near Raja Indian Cuisine . It is by the riverside , serves fast food and has a price range of more than L30 . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a kid friendly French restaurant on the riverside near Raja Indian Cuisine . Prices range £ 20 - 25 . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a kid - friendly restaurant located near Raja Indian Cuisine in the riverside area . They serve French food in the £ 20 - 25 range . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine on the riverside , The Phoenix is a kid friendly French restaurant with prices £ 20 - 25 . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly French restaurant in riverside called The Phoenix . They are located near Raja Indian Cuisine and the price range is £ 20 - 25 . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a restaurant located near Raja Indian Cuisine . They are kids friendly and cost between £ 20-£25 . They serve French food . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The French food serving restaurant known as The Phoenix is located near Raja Indian Cuisine on the the riverside . They cost between £ 20-£25 . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a kid friendly restaurant with French food . Located in the riverside area near Raja Indian Cuisine . The price range is £ 20 - 25 . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix restaurant is kid - friendly , with prices in the lower 20s . The serve French food on the riverside . It 's located near Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix , located in the riverside area near Raja Indian Cuisine , is a kid - friendly restaurant serving French food . Prices are in the £ 20 - 25 range . \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a restaurant that serves French food located in the riverside area near Raja Indian Cuisine . It is kid friendly with a price range of £ 20 - 25 \nname : The Phoenix | Type : restaurant | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a family friendly restaurant in riverside near Raja Indian Cuisine . They serve French food and the price ranges from £ 20 - 25 . \nname : The Phoenix | Type : restaurant | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap family friendly French pub and a restaurant located near Raja Indian Cuisine near riverside \nname : The Phoenix | Type : restaurant | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap French restaurant named The Phoenix that is family friendly in riverside by Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix restaurant is now serving French food at low prices in a family friendly atmosphere , located in the riverside area by Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a cheap French restaurant in riverside . it is family friendly and located by Raja Indian Cuisine . \nname : The Phoenix | Type : restaurant | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , lies a French restaurant called The Phoenix , known for being a cheap family friendly pub in riverside \nname : The Phoenix | Type : restaurant | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Looking for French food at a low prices in a family friendly environment , check out The Phoenix restaurant in the riverside area by Raja Indian Cuisine \nname : The Phoenix | Type : restaurant | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a high priced restaurant serving French cuisine situated on the riverside near Raja Indian Cuisine which is child friendly . \nname : The Phoenix | Type : restaurant | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Phoenix is a restaurant near Raja Indian Cuisine in Riverside that serves expensive French food . It is children friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a restaurant with Indian food ranging in 20 - 25 pounds . This establishment has high customer ratings . They are located in the centre of the city near Crowne Plaza Hotel and do not allow children . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a Indian serving restaurant with prices between £ 20 and £ 25 . The customer rating is high with it being in the city centre near Crowne Plaza Hotel . Unfortunately , The Phoenix is not kid friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix restaurant offers Indian food in the price range of £ 20 - 25 . The customer rating is high and it is based in the city centre . Not kids friendly . Near Crowne Plaza Hotel \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is an Indian food restaurant located in the City center . Price range is £ 20 - 25 . Unfortunately not kid friendly . Near Crowne Plaza Hotel \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||A centrally located restaurant called The Phoenix has Indian food in the price range of 20 - 25 pounds . They are not family friendly . They can be found near Crowne Plaza Hotel . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||An Indian restaurant named The Phoenix is not child friendly , has a high customer rating , with prices ranging from £ 20 to £ 25 , and is located in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix , a restaurant that serves Indian food , has a price range of £ 20-£25 . The Phoenix has a high customer rating and it is situated in the city centre by Crowne Plaza Hotel . The Phoenix is not child friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant located in the city centre near Crowne Plaza Hotel , that also serves Indian food . The Phoenix has a moderate pricing , high customer ratings , and is kid - friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant providing Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is high . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is located near Crowne Plaza Hotel in the city center is a kid friendly restaurant . The Phoenix serves Indian food in the mid - price range and has a high customer rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant serving Indian food in the mid - price range . it is in the city centre near Crowne Plaza Hotel , is kid friendly and has a high customer rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the City Centre near Crowne Plaza Hotel is a kid - friendly restaurant called the Phoenix , which serves Indian food at a moderate price . The Phoenix has high customer ratings . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant providing Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is high . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix Indian restaurant is moderately priced and has high ratings . This is not a kid friendly establishment but is located near Crowne Plaza Hotel in Riverside . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a cool Indian restaurant down close to the riverside called The Phoenix . Customers love it , and its super easy to find from the Crowne Plaza Hotel parking lot . Kids and coffee do n't mix , so be sure to not be that guy . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Highly rated Indian restaurant The Phoenix is located on the riverside near Crowne Plaza Hotel . Not kid friendly but average price . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is an amazing Indian restaurant near the riverside . You can expect to spend 20 pounds or so , and there really is n't much for the kiddos . If you have trouble finding it , it 's near Crowne Plaza Hotel . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix provides an Indian restaurant experience at a reasonable price . Rated highly it can be found near Crowne Plaza Hotel on the riverside , but children are not welcome . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in Riverside there is an Indian restaurant called The Phoenix . It is not kid friendly , has a price range of 20 - 25 and has a high customer rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in Riverside there is an Indian restaurant called The Phoenix . It has a price range of 20 - 25 , is not kid friendly , and has a high customer rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant that also serves Indian food priced between £ 20 - 25 , located near Crowne Plaza Hotel on the riverside . It 's customer rating is high , and the establishment is kids friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a restaurant called The Phoenix . Its is located near Crowne Plaza Hotel in the riverside area . It is child friendly and serves Indian food at a £ 20 - 25 price range . It has a high customer rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||From around £ 20 for Indian food , The Phoenix restaurant can provide great service and a child friendly environment right by the riverside . They are located near Crowne Plaza Hotel . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix , located near Crowne Plaza Hotel on the riverside , is a restaurant that also serves Indian food . It is kids friendly and food is priced between £ 20 - 25 . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant that serves Indian food for 20 - 25 euros , it is in the riverside area near a Crowne Plaza Hotel and is kid friendly with high customer rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||For a positive rated restaurant that also serves Indian food at a high price , the child friendly venue , The Phoenix , sits near Crowne Plaza Hotel on the riverside . \nname : The Phoenix | Type : restaurant | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is kid friendly a restaurant in the riverside area near a Crowne Plaza Hotel that serves Indian food for 20 - 25 euros and has a high customer rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Cheap Indian food is served at The Phoenix , a restaurant with a 5 out of 5 rating . It is not family friendly and located near Crowne Plaza Hotel at the city centre . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is and Indian style restaurant with highly rated food at a low price . It can be found in the city centre by the Crowne Plaza Hotel and is not family friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a restaurant providing Indian food in the cheap price range . It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is 5 out of 5 . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The 5 out of 5 rated restaurant , The Phoenix , is located in the city centre near the Crowne Plaza Hotel . It is not family friendly , with cheap Indian food being served . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is an excellent shop serving Indian fare at a low price with high ratings . It is located in the city centre near Crowne Plaza Hotel and is not family friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Phoenix is a Indian restaurant that is not for the whole family . It has low prices , but high customer ratings . It is located in the city center near Crowne Plaza Hotel . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix restaurant serves cheap Indian food . With a customer rating of 5 out of 5 , it is family friendly and located in the city centre near Crowne Plaza Hotel \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant providing Indian food in the cheap price range . It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is 5 out of 5 . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located in the city centre near Crowne Plaza Hotel , The Phoenix restaurant serves cheap Indian food . It has a customer rating of 5 out of 5 . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a cheap - priced restaurant The Phoenix located in the city centre near Crowne Plaza Hotel providing 5 out of 5 Indian food and is family friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a cheap - priced restaurant that provides Indian food and is located in the city centre near Crowne Plaza Hotel . It is family friendly and the customer rating is 5 out of 5 . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Phoenix is a restaurant providing Indian food in the cheap price range . It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is 5 out of 5 . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located riverside near Crowne Plaza Hotel , and offering outstanding , cheap Indian food , The Phoenix is an adult friendly restaurant . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Phoenix , located riverside near Crowne Plaza Hotel is an adult friendly restaurant . It serves great , cheap Indian food . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Phoenix is a cheap restaurant . It has a customer rating of 5 out of 5 . It is near Express by Holiday Inn . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Phoenix is in riverside near Express by Holiday Inn . It has cheap prices . It has high customer ratings . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Phoenix , is in the riverside near Express by Holiday Inn , it is an adult directed restaurant and Indian restaurant that is affordable an received a 5 out of 5 rating . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Phoenix is a restaurant providing Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Phoenix is in the riverside area near Express by Holiday Inn . It serves cheap Indian food and has a customer rating of 5 out of 5 . It is family friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Phoenix is a restaurant that serves cheap Indian food and has a customer rating of 5 out of 5 . It is family friendly and is in the riverside area near Express by Holiday Inn . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||A restaurant called The Phoenix sells cheap Indian food that is rated 5 out of 5 and is even better with its family friendly location near a riverside and the local Express by Holiday Inn . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Phoenix a restaurant which offers Indian food is cheap . It ha a customer rating of 3 out of 5 . I t is located in riverside near Express by Holiday Inn . It is family friendly \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Phoenix is a family friendly restaurant serving Indian food with a cheap price range with a customer rating of 5 out 5 starts . It is located on the riverside near Express by Holiday Inn . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||A family friendly restaurant called The Phoenix , located on the riverside near Express by Holiday Inn is family friendly . Serving Indian food with a customer service rating of 5 out of 5 stars . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Phoenix is a cheap , average restaurant that serves authentic Indian food . It is located in the city centre , near Express by Holiday Inn . The Phoenix is not family friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a cheap restaurant The Phoenix . It is a restaurant that offers Indian food with an average customer rating . It is in the city centre area near Express by Holiday Inn , it is not family friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Phoenix , located in the city centre , is a small and authentic Indian restaurant . The Phoenix is mediocre shop but it offers fast , cheap food . It is across from Express by Holiday Inn and is not family friendly . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Phoenix is a restaurant located near Express by Holiday Inn in the city that provides Indian food . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Phoenix is an average Indian restaurant located in the city centre near Express by Holiday Inn , they are adult only and cheap . \nname : The Phoenix | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Phoenix is a restaurant that offers Indian food for a cheap price with an average rating . In the area of city centre near Express by Holiday Inn , not family friendly . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside near Raja Indian Cuisine is a pub called The Plough . A pub that serves Chinese food for £ 20 - 25 . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a kid friendly pub that serves Chinese with an average meal for £ 20 - 25 . Its in riverside near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub that serves Indian food that has an average price range . It allows children and is near the riverside and Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub offering Chinese food with a price range of 20 - 25 pounds . This pub is located in riverside near the Raja Indian Cuisine pub . It is kids friendly . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is near the riverside and Raja Indian Cuisine . It serves Indian food and allows children . It has an average rating . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids friendly pub is called The Plough . This pub is located in riverside near the Raja Indian Cuisine pub and offers Chinese cuisine . Meals at The Plough cost 20 - 25 pounds . \nname : The Plough | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a Chinese pub and pub in the riverside area near Raja Indian Cuisine . It is family friendly and has cheap pricing . \nname : The Plough | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a cheap Chinese pub located riverside by Raja Indian Cuisine . It is a family friendly establishment . \nname : The Plough | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for a family friendly pub with cheap pricing , you may wish to try The Plough . It offers a pub and Chinese food , and is near the Raja Indian Cuisine in the riverside area . \nname : The Plough | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine you will find The Plough . A low priced family pub offering Chinese food . \nname : The Plough | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub providing Chinese food in the cheap price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A cheap Chinese pub near Raja Indian Cuisine located riverside and is family - friendly is The Plough . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city center , near Raja Indian Cuisine , The Plough pub dishes out high class Chinese eats , with an atmosphere that is not children friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough pub serves high priced Chinese food in the city center , near Raja Indian Cuisine . Be advised , The Plough is not children friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Chinese pub , The Plough , is located in the city centre near Raja Indian Cuisine . The price range is high and is n't children friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Chinese pub , The Plough , is located in the city centre near Raja Indian Cuisine . This place is n't children friendly , as well as the price range being high . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , The Plough pub s is expensive . It offers Chinese food and is not children friendly . It is located near to the Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre there is a pub called The Plough . It serves Chines food at a high price range and is not children friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough , a pub in the city centre offering Chinese food , is in the above average price range . It is located near the Raja Indian Cuisine and is not children friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub located by the riverside located near Raja Indian Cuisine , in the city centre . It serves Chinese food and it has a high price range . It is child friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A pub near Raja Indian Cuisine , in the city centre , is The Plough . It also provides Chinese food . It has a high price range and is child friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub providing Chinese food in the high price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city centre , neighboring Raja Indian Cuisine , is a pub styled joint called The Plough . This establishment is known for its family friendly atmosphere and highly priced Chinese food . \nname : The Plough | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub providing Chinese food in the high price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is an expensive pub and that serves Chinese food located near the riverside Raja Indian Cuisine , it is not appropriate for children . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is a pub in the riverside area , near Raja Indian Cuisine . Their menu offers Chinese food , with prices in the high range , and they are not child friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough pub has Chinese food and is friendly . It is in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a pub The Plough located riverside near Raja Indian Cuisine . They are not children friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is a pub offering Chinese food . They are located riverside and are not children friendly . They can be found riverside near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a riverside pub near Raja Indian Cuisine called The Plough , that serves Chinese food in the high price range . This venue is not suited for families with children . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is a pub that has expensive Chinese food , not child friendly , and is located riverside near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub that sells Chinese food . IT is a high price range in the riverside area near Raja Indian Cuisine . It is children Friendly \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a high priced , kid friendly Chinese pub located in the riverside area near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub providing Chinese food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough , near Raja Indian Cuisine in riverside , is a children Friendly pub that sells Chinese food . IT is a high price range . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a pub providing Chinese food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is in the riverside area near Raja Indian Cuisine . It is a kid friendly pub serving high priced Chinese food . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough is a pub serving Chinese food in the mid - price range . It is family - friendly and near Raja Indian Cuisine in the city center . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough is a non family friendly pub who serves Chinese food and is less than £ 20 . It is near the Raja Indian Cuisine in the city centre . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||With below average prices , The Plough , a non - family friendly pub in the city centre , offers Chinese food and is located near the Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Serving Chinese food , the non - family friendly pub , The Plough , is a pub in the less than £ 20 price range . It is in city centre near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a mid - price ranged pub called The Plough that serves Chinese food located near Raja Indian Cuisine in the city center . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||in the less than £ 20 price range and serving Chinese food , the non - family friendly pub , The Plough is in city centre near Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough is a unique pub in the city centre , near the Raja Indian Cuisine pub . They are not family friendly and serve amazing Chinese food that is priced less than £ 20 . \nname : The Plough | Type : restaurant | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside near Raja Indian Cuisine is a restaurant called The Plough . A restaurant that serves Chinese food for £ 20 - 25 . \nname : The Plough | Type : restaurant | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a kid friendly restaurant that serves Chinese with an average meal for £ 20 - 25 . Its in riverside near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant that serves Indian food that has an average price range . It allows children and is near the riverside and Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant offering Chinese food with a price range of 20 - 25 pounds . This restaurant is located in riverside near the Raja Indian Cuisine restaurant . It is kids friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is near the riverside and Raja Indian Cuisine . It serves Indian food and allows children . It has an average rating . \nname : The Plough | Type : restaurant | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids friendly restaurant is called The Plough . This restaurant is located in riverside near the Raja Indian Cuisine restaurant and offers Chinese cuisine . Meals at The Plough cost 20 - 25 pounds . \nname : The Plough | Type : restaurant | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a Chinese restaurant and restaurant in the riverside area near Raja Indian Cuisine . It is family friendly and has cheap pricing . \nname : The Plough | Type : restaurant | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a cheap Chinese restaurant located riverside by Raja Indian Cuisine . It is a family friendly establishment . \nname : The Plough | Type : restaurant | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for a family friendly restaurant with cheap pricing , you may wish to try The Plough . It offers a restaurant and Chinese food , and is near the Raja Indian Cuisine in the riverside area . \nname : The Plough | Type : restaurant | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine you will find The Plough . A low priced family restaurant offering Chinese food . \nname : The Plough | Type : restaurant | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant providing Chinese food in the cheap price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A cheap Chinese restaurant near Raja Indian Cuisine located riverside and is family - friendly is The Plough . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city center , near Raja Indian Cuisine , The Plough restaurant dishes out high class Chinese eats , with an atmosphere that is not children friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough restaurant serves high priced Chinese food in the city center , near Raja Indian Cuisine . Be advised , The Plough is not children friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Chinese restaurant , The Plough , is located in the city centre near Raja Indian Cuisine . The price range is high and is n't children friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Chinese restaurant , The Plough , is located in the city centre near Raja Indian Cuisine . This place is n't children friendly , as well as the price range being high . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , The Plough restaurant s is expensive . It offers Chinese food and is not children friendly . It is located near to the Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre there is a restaurant called The Plough . It serves Chines food at a high price range and is not children friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough , a restaurant in the city centre offering Chinese food , is in the above average price range . It is located near the Raja Indian Cuisine and is not children friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant located by the riverside located near Raja Indian Cuisine , in the city centre . It serves Chinese food and it has a high price range . It is child friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A restaurant near Raja Indian Cuisine , in the city centre , is The Plough . It also provides Chinese food . It has a high price range and is child friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant providing Chinese food in the high price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city centre , neighboring Raja Indian Cuisine , is a restaurant styled joint called The Plough . This establishment is known for its family friendly atmosphere and highly priced Chinese food . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant providing Chinese food in the high price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is an expensive restaurant and that serves Chinese food located near the riverside Raja Indian Cuisine , it is not appropriate for children . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is a restaurant in the riverside area , near Raja Indian Cuisine . Their menu offers Chinese food , with prices in the high range , and they are not child friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough restaurant has Chinese food and is friendly . It is in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a restaurant The Plough located riverside near Raja Indian Cuisine . They are not children friendly . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is a restaurant offering Chinese food . They are located riverside and are not children friendly . They can be found riverside near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a riverside restaurant near Raja Indian Cuisine called The Plough , that serves Chinese food in the high price range . This venue is not suited for families with children . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Plough is a restaurant that has expensive Chinese food , not child friendly , and is located riverside near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant that sells Chinese food . IT is a high price range in the riverside area near Raja Indian Cuisine . It is children Friendly \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a high priced , kid friendly Chinese restaurant located in the riverside area near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant providing Chinese food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough , near Raja Indian Cuisine in riverside , is a children Friendly restaurant that sells Chinese food . IT is a high price range . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is a restaurant providing Chinese food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Plough is in the riverside area near Raja Indian Cuisine . It is a kid friendly restaurant serving high priced Chinese food . \nname : The Plough | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough is a restaurant serving Chinese food in the mid - price range . It is family - friendly and near Raja Indian Cuisine in the city center . \nname : The Plough | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough is a non family friendly restaurant who serves Chinese food and is less than £ 20 . It is near the Raja Indian Cuisine in the city centre . \nname : The Plough | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||With below average prices , The Plough , a non - family friendly restaurant in the city centre , offers Chinese food and is located near the Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Serving Chinese food , the non - family friendly restaurant , The Plough , is a restaurant in the less than £ 20 price range . It is in city centre near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a mid - price ranged restaurant called The Plough that serves Chinese food located near Raja Indian Cuisine in the city center . \nname : The Plough | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||in the less than £ 20 price range and serving Chinese food , the non - family friendly restaurant , The Plough is in city centre near Raja Indian Cuisine . \nname : The Plough | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Plough is a unique restaurant in the city centre , near the Raja Indian Cuisine restaurant . They are not family friendly and serve amazing Chinese food that is priced less than £ 20 . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub which serves Chinese food is located in the center of the city near the Raja Indian Cuisine . It serves Chinese food and is considered family friendly with a price range of less than £ 20 . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is located in the city centre near Raja Indian Cuisine . It is a pub that serves Chinese food for under £ 20 . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub which serves Chinese food with a price range of less than £ 20 . It is located in the center of the city near the Raja Indian Cuisine and is family friendly . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly pub serving Chinese food for less than £ 20 . It is located in the city centre near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly pub located in the city centre near Raja Indian Cuisine . It serves Chinese food with a price range get of less than £ 20 . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There 's a Chinese and pub that 's less than £ 20 , near Raja Indian Cuisine along the riverside that 's not really family friendly . It 's called The Punter . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter pub and Chinese is along the riverside near Raja Indian Cuisine . It 's generally less than £ 20 but is n't family friendly . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a pub in Riverside , near Raja Indian Cuisine called The Punter . It is not family friendly and serves Chinese food for less than £ 20 . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a non family friendly pub in Riverside , near Raja Indian Cuisine . It serves Chinese food for less \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub providing Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's this pub that serves Chinese food in the riverside area near Raja Indian Cuisine called The Punter that costs less than £ 20 and is family friendly . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located on the riverside , near Raja Indian Cuisine , is The Punter . It is a family - friendly , low - priced pub which also serves Chinese food . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you want a low - priced pub on the riverside , then try The Punter . This family - friendly pub also serves Chinese food and it is located near Raja Indian Cuisine \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside area , there is a family friendly pub that sells Chinese food for less than £ 20 near Raja Indian Cuisine called The Punter . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter , a pub with Chinese food is near Raja Indian Cuisine riverside . Their prices are less than £ 20 . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub with Chinese food . They are family friendly and have decent prices . They are near the riverside by Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter , a pub that also serves Chinese food less than £ 20 , is located in the riverside , near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in city centre , enjoy a moderately priced Chinese lunch and coffee at The Punter . This pub does not cater to children . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Moderately priced adult - only Chinese pub , The Punter , can be found in the city centre near to Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a moderately priced pub in the city centre , near Raja Indian Cuisine . It serves Chinese food and does not welcome children . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a moderately priced pub located in the city centre . It provides Chinese food . It is not kids friendly and is located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub that provides Chinese food in the moderate price range . It is located in the city centre near Raja Indian Cuisine . It is not kids friendly . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub near Raja Indian Cuisine in the city city . It is moderately priced and serves Chinese food . Children are not welcome . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a non kid friendly pub and moderately priced Chinese establishment located in city centre , near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a moderately priced kid friendly Chinese pub in they city centre near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a moderately priced pub providing Chinese food . It 's in the city centre near to Raja Indian Cuisine and is kid friendly \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a children friendly Chinese pub with a moderate price range located in the city centre near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a Chinese pub in city centre near Raja Indian Cuisine . They offer moderate prices and a kid friendly atmosphere . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Kids are welcome at The Punter pub , serving moderately priced Chinese food in the centre of town , near the Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter pub offers Kid Friendly Chinese cuisine at a moderate price . Located near the Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a moderately priced pub serving Chinese food . It 's near Raja Indian Cuisine in the city centre and is kid friendly \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a moderate Chinese pub near Raja Indian Cuisine in the river side . It is no kids friendly . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub which offers Chinese food . It has a moderate price range . It is in a riverside area . It is not kids friendly and it is near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub serving Chinese food with a moderate price . It is located near Raja Indian Cuisine along the riverside and is not kids friendly . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||No kids in The Punter , it is a Chinese pub , on the riverside near the Raja Indian Cuisine , fairly moderate prices . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a Chinese pub near Raja Indian Cuisine in the river side . Price is moderate , no kids friendly . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a pub , The Punter , serving Chinese food along the riverside near Raja Indian Cuisine . It is not kids friendly and is moderately priced . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a Chinese pub that has a moderate price range , located near the riverside near the Raja Indian Cuisine , my advice no children . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub providing Chinese food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the Riverside area near Raja Indian Cuisine there is a kid friendly moderately priced pub named The Punter serving Chinese food \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For Chinese food in riverside there is a moderately priced pub that is kid friendly named The Punter near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub providing Chinese food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter pub in the riverside area serves coffee and Chinese food . It is kid friendly and moderately priced . Located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter pub has Chinese food and is family friendly . It is located in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Punter | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub in Riverside located near the Raja Indian Cuisine , where they serve Chinese food , it 's average price for a meal is more than 30 euros and it 's a children friendly facility . \nname : The Punter | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter pub has Chinese food and is kids friendly . It is located in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Punter | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're in the riverside area with your children and are looking for a pub that serves Chinese food , The Punter is a good option , though you can expect to spend more than £ 30 . It is located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated in the riverside area , near Raja Indian Cuisine , you 'll find a child - friendly pub with Chinese food on the menu called The Punter . The prices tend to be more than £ 30 . \nname : The Punter | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The is a pub that had a price for over 30 euros per meal . It 's called The Punter and it 's children friendly . Its located in Riverside near the Raja Indian Cuisine . \nname : The Punter | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub The Punter located near Raja Indian Cuisine . They offer Chinese food in the price range of more than £ 30 . They are children friendly and located riverside . \nname : The Punter | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a kid friendly pub located along the riverside near Raja Indian Cuisine . It serves English food for £ 20 - £ 25 . \nname : The Punter | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A kid friendly English pub located in riverside near Raja Indian Cuisine that is moderately priced is called The Punter . \nname : The Punter | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a kids friendly pub that serves English food for £ 20 - £ 25 . It is along the riverside near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a kid friendly English pub located in riverside near Raja Indian Cuisine that is moderately priced . \nname : The Punter | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Serving English food on the riverside in The Punter . A kid friendly pub in the price range £ 20 - £ 25 . The Punter is located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap family friendly pub on riverside called The Punter , They serve English food , and are located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come visit riverside and eat some English food at The Punter family friendly pub for a cheap price . Found near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a cheap pub located in riverside near Raja Indian Cuisine , they serve English food and our family friendly . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly pub which offer English food for a cheap price . Located in riverside near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside is a cheap family friendly English pub called The Punter . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is in the riverside area near Raja Indian Cuisine . It is a pub serving cheap English food and is great for families . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub located at riverside near Raja Indian Cuisine serves English food and a Family friendly place that a cheap price range of food . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly pub . It serves low price range English food . It is located near Raja Indian Cuisine in the riverside area . \nname : The Punter | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a cheap family friendly English pub in the riverside area near the Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub type pub located in the city centre with a high price , with a bad kids friendly atmosphere . It offers English food and is located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub type pub located in the city centre with a high price , with a bad kids friendly atmosphere . It offers English food and is located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a pub located in the city centre near Raja Indian Cuisine . It serves high - priced English food in a non kid - friendly environment . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is an English pub that is located in the city centre . It is near Raja Indian Cuisine . It has a high price range , and it is not family - friendly . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a high - priced pub that serves English cuisine in an adult environment . It is located in the city centre near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , near Raja Indian Cuisine , there is a pub called The Punter . It has high prices , and it is not children friendly . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is children friendly pub that serves English food with a high price range near Raja Indian Cuisine around city centre . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a high price range pub . It 's in the centre of the city , near Raja Indian Cuisine . It serves English food and is children Friendly . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine around city centre there is a pub that is high price range , children friendly , serves English food called The Punter . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre near Raja Indian Cuisine there is an English pub called The Punter . It is expensive and children friendly . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub serving expensive English food . It is in the city centre near Raja Indian Cuisine and is children friendly . \nname : The Punter | Type : pub | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is children friendly and serves English food . It is near Raja Indian Cuisine in the city centre . It 's a coffee house with a high price range . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The English pub , ' The Punter ' , is a highly priced place near Raja Indian Cuisine . The food has more of an adult taste to it . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located on the Riverside , close to Raja Indian Cuisine , you will find the pub The Punter , serving a traditional English menu which is highly priced and not considered child friendly . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Catering a traditional English menu , The Punter pub sits on the riverside , and offers a highly priced alternative to the nearby Raja Indian Cuisine . The Punter is not considered child friendly . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is an English pub near Raja Indian Cuisine in the riverside area . It has a high price range and is not child - friendly . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is an English pub near Raja Indian Cuisine in the riverside area called The Punter . It has a high price range and is not child - friendly . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is an English pub located along the river near Raja Indian Cuisine . The prices are quite high and it is not recommended to bring children . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a children friendly pub located in the Riverside area near to the Raja Indian Cuisine . It serves English food and is in the high price range . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter ' is a expensive pub that serves British food that is located near Raja Indian Cuisine . \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||near Raja Indian Cuisine There is a pub called The Punter in riverside \nname : The Punter | Type : pub | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a pub placed at north of city centre close to Raja Indian Cuisine . You can go with all your family to this exclusive shop if you love the traditional British food . \nname : The Punter | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café in the city centre is an Italian pub called The Punter . It is not child friendly , has an average customer rating and is in the high price range . \nname : The Punter | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is an Italian pub located in the city centre , near Rainbow Vegetarian Café . this pub is not a child friendly zone and it has a high price range . \nname : The Punter | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a high priced , average rated , adult only Italian pub located near Rainbow Vegetarian Café in the city centre \nname : The Punter | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||An Italian pub located in the city centre near Rainbow Vegetarian Café , The Punter is adult only with a high price range and an average rating \nname : The Punter | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is an Italian pub in the city centre , near Rainbow Vegetarian Café . It is high price , not child friendly and has an average customer rating . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant which serves Chinese food is located in the center of the city near the Raja Indian Cuisine . It serves Chinese food and is considered family friendly with a price range of less than £ 20 . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is located in the city centre near Raja Indian Cuisine . It is a restaurant that serves Chinese food for under £ 20 . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant which serves Chinese food with a price range of less than £ 20 . It is located in the center of the city near the Raja Indian Cuisine and is family friendly . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly restaurant serving Chinese food for less than £ 20 . It is located in the city centre near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly restaurant located in the city centre near Raja Indian Cuisine . It serves Chinese food with a price range get of less than £ 20 . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There 's a Chinese and restaurant that 's less than £ 20 , near Raja Indian Cuisine along the riverside that 's not really family friendly . It 's called The Punter . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter restaurant and Chinese is along the riverside near Raja Indian Cuisine . It 's generally less than £ 20 but is n't family friendly . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a restaurant in Riverside , near Raja Indian Cuisine called The Punter . It is not family friendly and serves Chinese food for less than £ 20 . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a non family friendly restaurant in Riverside , near Raja Indian Cuisine . It serves Chinese food for less \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant providing Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's this restaurant that serves Chinese food in the riverside area near Raja Indian Cuisine called The Punter that costs less than £ 20 and is family friendly . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located on the riverside , near Raja Indian Cuisine , is The Punter . It is a family - friendly , low - priced restaurant which also serves Chinese food . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you want a low - priced restaurant on the riverside , then try The Punter . This family - friendly restaurant also serves Chinese food and it is located near Raja Indian Cuisine \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside area , there is a family friendly restaurant that sells Chinese food for less than £ 20 near Raja Indian Cuisine called The Punter . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter , a restaurant with Chinese food is near Raja Indian Cuisine riverside . Their prices are less than £ 20 . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant with Chinese food . They are family friendly and have decent prices . They are near the riverside by Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter , a restaurant that also serves Chinese food less than £ 20 , is located in the riverside , near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in city centre , enjoy a moderately priced Chinese lunch and coffee at The Punter . This restaurant does not cater to children . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Moderately priced adult - only Chinese restaurant , The Punter , can be found in the city centre near to Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a moderately priced restaurant in the city centre , near Raja Indian Cuisine . It serves Chinese food and does not welcome children . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a moderately priced restaurant located in the city centre . It provides Chinese food . It is not kids friendly and is located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant that provides Chinese food in the moderate price range . It is located in the city centre near Raja Indian Cuisine . It is not kids friendly . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant near Raja Indian Cuisine in the city city . It is moderately priced and serves Chinese food . Children are not welcome . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a non kid friendly restaurant and moderately priced Chinese establishment located in city centre , near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a moderately priced kid friendly Chinese restaurant in they city centre near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a moderately priced restaurant providing Chinese food . It 's in the city centre near to Raja Indian Cuisine and is kid friendly \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a children friendly Chinese restaurant with a moderate price range located in the city centre near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a Chinese restaurant in city centre near Raja Indian Cuisine . They offer moderate prices and a kid friendly atmosphere . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Kids are welcome at The Punter restaurant , serving moderately priced Chinese food in the centre of town , near the Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter restaurant offers Kid Friendly Chinese cuisine at a moderate price . Located near the Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a moderately priced restaurant serving Chinese food . It 's near Raja Indian Cuisine in the city centre and is kid friendly \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a moderate Chinese restaurant near Raja Indian Cuisine in the river side . It is no kids friendly . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant which offers Chinese food . It has a moderate price range . It is in a riverside area . It is not kids friendly and it is near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant serving Chinese food with a moderate price . It is located near Raja Indian Cuisine along the riverside and is not kids friendly . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||No kids in The Punter , it is a Chinese restaurant , on the riverside near the Raja Indian Cuisine , fairly moderate prices . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a Chinese restaurant near Raja Indian Cuisine in the river side . Price is moderate , no kids friendly . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a restaurant , The Punter , serving Chinese food along the riverside near Raja Indian Cuisine . It is not kids friendly and is moderately priced . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is a Chinese restaurant that has a moderate price range , located near the riverside near the Raja Indian Cuisine , my advice no children . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant providing Chinese food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the Riverside area near Raja Indian Cuisine there is a kid friendly moderately priced restaurant named The Punter serving Chinese food \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For Chinese food in riverside there is a moderately priced restaurant that is kid friendly named The Punter near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant providing Chinese food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter restaurant in the riverside area serves coffee and Chinese food . It is kid friendly and moderately priced . Located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter restaurant has Chinese food and is family friendly . It is located in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Punter | Type : restaurant | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant in Riverside located near the Raja Indian Cuisine , where they serve Chinese food , it 's average price for a meal is more than 30 euros and it 's a children friendly facility . \nname : The Punter | Type : restaurant | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter restaurant has Chinese food and is kids friendly . It is located in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Punter | Type : restaurant | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're in the riverside area with your children and are looking for a restaurant that serves Chinese food , The Punter is a good option , though you can expect to spend more than £ 30 . It is located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated in the riverside area , near Raja Indian Cuisine , you 'll find a child - friendly restaurant with Chinese food on the menu called The Punter . The prices tend to be more than £ 30 . \nname : The Punter | Type : restaurant | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The is a restaurant that had a price for over 30 euros per meal . It 's called The Punter and it 's children friendly . Its located in Riverside near the Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant The Punter located near Raja Indian Cuisine . They offer Chinese food in the price range of more than £ 30 . They are children friendly and located riverside . \nname : The Punter | Type : restaurant | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a kid friendly restaurant located along the riverside near Raja Indian Cuisine . It serves English food for £ 20 - £ 25 . \nname : The Punter | Type : restaurant | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A kid friendly English restaurant located in riverside near Raja Indian Cuisine that is moderately priced is called The Punter . \nname : The Punter | Type : restaurant | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a kids friendly restaurant that serves English food for £ 20 - £ 25 . It is along the riverside near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a kid friendly English restaurant located in riverside near Raja Indian Cuisine that is moderately priced . \nname : The Punter | Type : restaurant | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Serving English food on the riverside in The Punter . A kid friendly restaurant in the price range £ 20 - £ 25 . The Punter is located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap family friendly restaurant on riverside called The Punter , They serve English food , and are located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come visit riverside and eat some English food at The Punter family friendly restaurant for a cheap price . Found near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a cheap restaurant located in riverside near Raja Indian Cuisine , they serve English food and our family friendly . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly restaurant which offer English food for a cheap price . Located in riverside near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside is a cheap family friendly English restaurant called The Punter . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is in the riverside area near Raja Indian Cuisine . It is a restaurant serving cheap English food and is great for families . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant located at riverside near Raja Indian Cuisine serves English food and a Family friendly place that a cheap price range of food . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a family friendly restaurant . It serves low price range English food . It is located near Raja Indian Cuisine in the riverside area . \nname : The Punter | Type : restaurant | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a cheap family friendly English restaurant in the riverside area near the Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant type restaurant located in the city centre with a high price , with a bad kids friendly atmosphere . It offers English food and is located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant type restaurant located in the city centre with a high price , with a bad kids friendly atmosphere . It offers English food and is located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a restaurant located in the city centre near Raja Indian Cuisine . It serves high - priced English food in a non kid - friendly environment . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is an English restaurant that is located in the city centre . It is near Raja Indian Cuisine . It has a high price range , and it is not family - friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Punter is a high - priced restaurant that serves English cuisine in an adult environment . It is located in the city centre near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , near Raja Indian Cuisine , there is a restaurant called The Punter . It has high prices , and it is not children friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is children friendly restaurant that serves English food with a high price range near Raja Indian Cuisine around city centre . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a high price range restaurant . It 's in the centre of the city , near Raja Indian Cuisine . It serves English food and is children Friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine around city centre there is a restaurant that is high price range , children friendly , serves English food called The Punter . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre near Raja Indian Cuisine there is an English restaurant called The Punter . It is expensive and children friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant serving expensive English food . It is in the city centre near Raja Indian Cuisine and is children friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Punter is children friendly and serves English food . It is near Raja Indian Cuisine in the city centre . It 's a coffee house with a high price range . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The English restaurant , ' The Punter ' , is a highly priced place near Raja Indian Cuisine . The food has more of an adult taste to it . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located on the Riverside , close to Raja Indian Cuisine , you will find the restaurant The Punter , serving a traditional English menu which is highly priced and not considered child friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Catering a traditional English menu , The Punter restaurant sits on the riverside , and offers a highly priced alternative to the nearby Raja Indian Cuisine . The Punter is not considered child friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is an English restaurant near Raja Indian Cuisine in the riverside area . It has a high price range and is not child - friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is an English restaurant near Raja Indian Cuisine in the riverside area called The Punter . It has a high price range and is not child - friendly . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Punter is an English restaurant located along the river near Raja Indian Cuisine . The prices are quite high and it is not recommended to bring children . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a children friendly restaurant located in the Riverside area near to the Raja Indian Cuisine . It serves English food and is in the high price range . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter ' is a expensive restaurant that serves British food that is located near Raja Indian Cuisine . \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||near Raja Indian Cuisine There is a restaurant called The Punter in riverside \nname : The Punter | Type : restaurant | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Punter is a restaurant placed at north of city centre close to Raja Indian Cuisine . You can go with all your family to this exclusive shop if you love the traditional British food . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||An Indian food restaurant in city centre is The Punter . It is near Express by Holiday Inn . It has average customer ratings , is cheap , and kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||For cheap Indian food with an average satisfaction rating try The Punter , they are a family friendly restaurant . They are near Express by Holiday Inn in the city center . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter restaurant serves cheap and average - rated Indian dishes in a family - friendly environment . It is located in the center of town near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant that serves Indian food . It is cheap , average customer rating , and family friendly . It is in city centre near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a cheap restaurant in the center of town , near Express by Holiday Inn , that serves moderately - rated Indian dishes in a family - friendly environment . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a family friendly restaurant near Express by Holiday Inn in the city centre with average customer ratings . They have an Indian food menu , with cheap prices . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter Is a restaurant that serves cheap Indian food . Family friendly with an average satisfaction rating . They are in the city center near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The restaurant named The Punter has cheap Indian food and an average customer rating . It is near the Express by Holiday Inn on the riverside and is not family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Located by the Express by Holiday Inn , The Punter restaurant offers low priced Indian Food . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter located by the Express by Holiday Inn , is a restaurant that offers Indian Food at a cheap price range . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter restaurant offers cheap Indian cuisine . Has an average customer rating . Located by the riverside near Express by Holiday Inn . It is not family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||In riverside near the Express by Holiday Inn is an average family friendly Indian restaurant called The Punter , that is not only cheap but family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a cheap Indian restaurant with an average customer rating . It is in riverside location near Express by Holiday Inn , and is family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||For a cheap Indian restaurant check out the average family friendly The Punter , located in the riverside area near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a cheap Indian restaurant in a riverside location . It has an average customer rating , is family friendly and is located near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Looking for a restaurant serving Indian food in the cheap price range with average customer ratings in the riverside area near Express by Holiday Inn and is family friendly , then visit The Punter . \nname : The Punter | Type : restaurant | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant serving Indian food in the cheap price range with average customer ratings in the riverside area near Express by Holiday Inn and is family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||If you are interested in quality coffee and Indian food with a price tag to match , come to The Punter . The shop is located in the centre of the city near Express by Holiday Inn . The shop is focused on an adult clentele with a customer rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant which serves Indian food , high prices , customer rating 1 out of 5 , location city centre near Express by Holiday Inn , sorry no children \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||City Centre restaurant The Punter serves Indian food , not far from Express by Holiday Inn , adults only , customer rating 1 out of 5 , price range high . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn there is a restaurant serving Indian food . It is not child friendly and is called The Punter and has a high price range with an average customer rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a high priced restaurant called The Punter located in the city centre near Express by Holiday Inn . It serves Indian food , has a customer rating of 1 out of 5 , and is not child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is an Indian restaurant in the city centre area near Express by Holiday Inn . It is not child friendly and has a high price range with the average customer rating being a 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant that provides Indian food . Its price range is high , it is not child friendly and has a customer rating of 1 out of 5 . It is located in the city centre near Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant with Indian food at a high price range . It has 1 out of 5 stars . It is children friendly . It is in the city centre near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the high price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a 1 out of 5 stars Indian restaurant near Express by Holiday Inn in the city centre . It is in the high price range , but is children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the high price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant serving Indian food it is not a child Friendly , with a low customer Rating and a high price Range by a riverside near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is an expensive restaurant called The Punter located at the riverside , near Express by Holiday Inn that provides Indian food . The customer rating is 1 out of 5 and it is not children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||By a riverside near Express by Holiday Inn , The Punter is a restaurant serving Indian food it is not a child Friendly , with a low customer Rating and a high price Range . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter ; a restaurant with an Indian style , is situated by the riverside , next to Express by Holiday Inn . It is ideal for couples and has a high price range . It has a customer rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the high price range . It is located at the riverside , near Express by Holiday Inn . The customer rating is 1 out of 5 and it is not children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located riverside near Express by Holiday Inn you will find The Punter restaurant offering Indian food . They have a customer rating of 1 out of 5 and are price ranged high . They are not children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is an Indian restaurant situated near Express by Holiday Inn by the riverside . It is ideal for couples and has a fairly high price range and In general it has a 1 out of 5 customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a high - priced restaurant that offers Indian food . It is child friendly and has a customer rating of 1 out of 5 . It is located near Express by Holiday Inn in riverside . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The restaurant called The Punter , near Express by Holiday Inn in the riverside area , is a children friendly restaurant that serves Indian food and has 1 out of 5 stars , it has a high price range . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter restaurant is children friendly . The shop has 1 out of 5 rating due to it high - priced items . You could find the shop near riverside next to Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is an expensive restaurant called The Punter located in riverside near Express by Holiday Inn that provides Indian food . It is children friendly and has a customer rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is near Express by Holiday Inn . It is a restaurant that serves Indian food and is child friendly \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn is a restaurant called The Punter . The Punter serves Indian food and is children friendly . The Punter has a customer rating of 1 out of 5 stars . It has a high price range . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a restaurant near Express by Holiday Inn that serves Indian food . It does n't have a very good rating and the prices are high . It is called The Punter . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter has an average customer rating for its Indian food . It is a restaurant in the city centre , near to Express by Holiday Inn . It is not children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre . the restaurant The Punter has an average customer rating for its Indian food and it is not children friendly . It is located near to Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is an expensive Indian restaurant with an average customer rating . It is located in the city centre , near Express by Holiday Inn , but is not children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an expensive , non - children friendly Indian restaurant called The Punter located in the city centre , near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn is an expensive Indian restaurant called The Punter . It is not child friendly and is in the city centre . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant that serves Indian food for a high price range . It has an average customer rating and is located near Express by Holiday Inn in the city centre , It is not children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city center there is a restaurant called The Punter that serves Indian food for a high price range . It is not children friendly and has an average customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is near Express by Holiday Inn in city center and is an Indian restaurant . It has a price range is high , is kid friendly , and has an average customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in city center there is an Indian restaurant called The Punter . It has a price range is high , is kid friendly , and has an average customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||A family friendly Indian restaurant that is high priced is located near Express by Holiday Inn in City Centre . The Punter has an average customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||With an average customer review , The Punter is a restaurant serving Indian food . If you would like to go , they are near Express by Holiday Inn in the city center . Keep in mind that it is expensive , but also children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter , and Indian restaurant , is high priced family friendly restaurant with an average customer rating located near Express by Holiday Inn in City Centre . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant offering Indian food at a high price . It is in the city centre near Express by Holiday Inn . It has an average customer rating and is children friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is family friendly with an average rating . It is a restaurant serving Indian food at a high price . It is located in the city centre near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||An expensive adults - only riverside Indian restaurant called The Punter can be found near Express by Holiday Inn , but it only has average ratings . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a high priced restaurant that is not child friendly . It is located near Express by Holiday Inn in riverside and have an average rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn near the riverside is The Punter Indian food restaurant . It has a high price range with average customer ratings . It is not kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter , next to the river near Express by Holiday Inn , is an expensive Indian restaurant with average ratings and a reputation for not being child - friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant serving Indian food at a high price . They are located near Express by Holiday Inn in riverside . with an average rating and are not child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is an expensive restaurant that serves Indian food . It is located in the riverside area , near Express by Holiday Inn , and does not allow children . Customer ratings are average . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter restaurant serves Indian food . It is near Express by Holiday Inn near the riverside . It is not kid friendly and carries an average customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a high priced restaurant called The Punter in the Riverside area , near Express by Holiday Inn , with an average customer rating , that serves Indian food and is also child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant serving Indian food in the high price range that is children friendly with an average customer rating in the riverside area near Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant with Indian food in the high price range . It is children friendly , has an average customer rating , and is located in riverside near Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||An Indian restaurant in riverside , located near Express by Holiday Inn , is children friendly and has a high price range . It is called The Punter and has an average customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant that provides Indian food with high price ranges . They have an average customer rating in located near Express by Holiday Inn in riverside . The Punter is child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a high priced restaurant that serves Indian food in the Riverside area , near Express by Holiday Inn , it is child friendly and has an average customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a restaurant near the city centre and Express by Holiday Inn called The Punter . It is both rated low and in the low price range , serves Indian food , and is not family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter restaurant featuring Indian style foods at a reasonable price of £ 20 , located in the city centre near Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter , a low - rated restaurant , serves Indian food in the low price range . Customers say it is not family friendly and it can be found near the city centre and Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||Family Friendly restaurant low rating with a price of £ 20 , The Punter serves Indian dishes , near Express by Holiday Inn in the city centre area . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||come for a coffee and some Indian food without the kids for low prices near Express by Holiday Inn in the city centre , we are The Punter . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an Indian restaurant in City centre named The Punter . It is cheap with a low customer rating and near Express by Holiday Inn . It is not family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||For a family friendly Indian restaurant in the city centre near Express by Holiday Inn The Punter offers prices less than 20 . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant serving Indian food with a low customer rating with meals less than £ 20 and is family friendly in city centre area near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||A restaurant serving Indian food with a price range less than £ 20 and a low customer rating in city centre near Express by Holiday Inn is The Punter . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Looking for a restaurant serving Indian food in the price range of less than £ 20 , with low customer ratings in the city centre area near Express by Holiday Inn and is family friendly , then visit The Punter . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is and Indian restaurant in the city centre located near Express by Holiday Inn , they are family friendly , low ratings and priced less than 20 . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant serving Indian food in the price range of less than £ 20 , with low customer ratings in the city centre area near Express by Holiday Inn and is family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn , in the riverside area , is the restaurant The Punter . It is not family Friendly , has a low customer Rating and is in the price Range of less than £ 20 . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside area , near Express by Holiday Inn , is a restaurant named The Punter . The Punter has Indian food , low ratings , not family friendly , and a price range of less than £ 20 . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant with Indian food in the price Range of less than £ 20 , with a low customer Rating and not family Friendly , in the riverside area near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a low rated restaurant that serves Indian food in the riverside area near Express by Holiday Inn . The Punter has a price range of less than £ 20 , and is not family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a low rated restaurant in the riverside area , near Express by Holiday Inn . They also serve Indian food for less than £ 20 in a family friendly setting . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant that provides Indian food with prices less than £ 20 . It has a low customer rating and is located on the riverside near Express by Holiday Inn . It is family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant having Indian food less than £ 20 , it is family friendly with low customer rating , and located in riverside near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a cheap restaurant that serves Indian near Riverside and Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a family friendly restaurant that provides Indian food with prices less than £ 20 . It is located on the riverside near Express by Holiday Inn . Low customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Indian food in less than £ 20 , is offered by a restaurant named The Punter , it is family friendly with low customer rating and situated in riverside near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap restaurant in Riverside near Express by Holiday Inn that serves Indian food called The Punter . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a non - kid friendly restaurant located in the centre of the city near Express by Holiday Inn . They offer Indian food at a moderate price with a 1 out of 5 rating among customers . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in the centre of the city , The Punter is a restaurant that offers moderately priced Indian food . The shop has a 1 out of 5 rating and is not kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||City centre located The Punter serves moderately priced Indian food in a restaurant environment . Just near Express by Holiday Inn , it 's rated 1 out of 5 and serves adult parties only . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter can be found in the city centre , near Express by Holiday Inn . It 's moderately priced Indian in restaurant surroundings . Only adult parties are welcomed to this low rated establishment . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a medium priced Indian restaurant located in riverside near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||A moderate price range Indian restaurant called The Punter is near Express by Holiday Inn in riverside . It has a poor customer rating and is not kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a restaurant in riverside near Express by Holiday Inn that is an Indian restaurant called The Punter . It is moderate price range with a one out of 5 customer rating that is not kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant . It is located near Express by Holiday Inn . It has a low customer rating . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a Indian restaurant with medium prices located in riverside near Express by Holiday Inn . Customer Rating 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant that servers Indian food in the modern price range . Yes it is kids friendly . Its customer rating is 1 out of 5 . It is located by the riverside near Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant that offers Indian food in the riverside area near Express by Holiday Inn . It has a very low customer rating , in the moderate price range and is family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in Riverside is a restaurant that offers Indian food called The Punter . It has a very low customer rating and has average prices . It is family friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a moderately priced restaurant with Indian food . They are rated a 1 out of 5 and children are permitted . The can be located in riverside near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Conveniently located in riverside near Express by Holiday Inn there is a moderately priced restaurant serving Indian food with a rating of 1 out of 5 called The Punter . Children are permitted . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre The Punter restaurant , with a customer Rating of 3 out of 5 , offers Indian food for a moderate price . While it is not kid friendly there is a Express by Holiday Inn nearby . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a moderate priced Indian restaurant located in city centre near Express by Holiday Inn . Kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a Indian restaurant with moderate pricing located in city centre near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||For a moderate price The Punter restaurant offers Indian Cuisine in the city centre . While the restaurant is not kid friendly there is a Express by Holiday Inn nearby and it has a customer rating of 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter , restaurant and Indian food is near Express by Holiday Inn in the city centre , family friendly , moderate price with a Rating of 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a kid friendly restaurant in the city centre area near Express by Holiday Inn . They serve Indian food at a moderate price range with a customer rating of 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter located in the city centre near Express by Holiday Inn is a child friendly restaurant offering moderately priced , average Indian foods . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a kid friendly restaurant that serves Indian food in the city centre area near Express by Holiday Inn called The Punter . There price ranges are moderate and they have a customer rating of 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is in city centre near Express by Holiday Inn . it serves Indian food . It also is a restaurant . It is kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Indian restaurant and restaurant , The Punter , is located in the city centre near Express by Holiday Inn having a moderate price and 3 out of 5 Rating . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant . It is moderately priced . It is near Express by Holiday Inn . It has a customer rating of 3 out of 5 . It is in city centre . It is kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the moderate price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant with Indian food . It is near Express by Holiday Inn in riverside . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is an Indian restaurant in a moderate price restaurant . It is near Express by Holiday Inn in riverside and is not a kid friendly place but it does have an average rating . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a moderate priced restaurant in riverside near Express by Holiday Inn called The Punter . It is an Indian restaurant witch is not kid friendly and has an average rating . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is not kid friendly . a customer rating of 3 out of 5 . Its near Express by Holiday Inn in riverside \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter Indian restaurant , is moderate in price with a 3 out of 5 customer Rating , not kid friendly on the riverside near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the riverside is a Indian restaurant that is suitable for kids , however it is priced in moderate standards and only has a 3 out of 5 rating . On the riverside near the Express by Holiday Inn the shop is called The Punter \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant , which also serves Indian cuisine at moderate prices . Customers have rated the food 3 out of 5 . The Punter is situated near the riverside and Express by Holiday Inn . Children are welcome . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant , which also provides Indian cuisine at moderate prices . Customers have rated the food 3 out of 5 . The Punter is situated near the riverside and Express by Holiday Inn . Children are welcome . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a restaurant , The Punter , serving Indian food along the riverside near Express by Holiday Inn . It is kids friendly and is moderately priced with a customer rating of 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is an Indian restaurant , it is pretty bad moderate prices and 3 out of 5 customer ratings , The Punter is on the riverside near the Express by Holiday Inn , yes mothers it can accommodate kids . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located on the riverside near Express by Holiday Inn , The Punter is a restaurant that also serves Indian food . With a moderate price range and a customer rating of 3 out of 5 , it is also a kid friendly place . \nname : The Punter | Type : restaurant | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant serving Indian food with a moderate price . It is located near Express by Holiday Inn along the riverside and is kids friendly . It is rated 3 out of 5 . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre , near Express by Holiday Inn , you will find The Punter . It is a non children - friendly restaurant that serves Indian food . While its price range is quite high , more than £ 30 , it has a high customer ratings . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||If you are looking for a non children - friendly restaurant , with prices around £ 30 , but with high customer ratings , The Punter is for you . It serves Indian food and it is located in the city centre , near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a high rated restaurant found in the city centre near Express by Holiday Inn , that sells Indian food , with a price range of over £ 30 , not child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||A restaurant with a high rating is The Punter . They offer Indian food at higher prices . They do not allow children and they can be found near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Near the city centre , The Punter is a restaurant providing Indian cuisine . They charge higher prices and have high customer ratings . They do not allow children . They can be found near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter , situated near Express by Holiday Inn in the city centre , is an Indian food selling restaurant , with a high customer rating due to the price range of more than £ 30 , not child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The restaurant called The Punter sells Indian food and is not Children friendly . It is located in the center of city by Express by Holiday Inn , the rating is high , and the price range is more than £ 30 . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn in the centre of the city is a new restaurant , The Punter . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the more than £ 30 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant that offers Indian food . Its prices are more than £ 30 but it has a high customer rating . It is located in the city centre near Express by Holiday Inn and it is children Friendly \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn in the city centre , you can find an Indian restaurant called The Punter . Though its prices exceed £ 30 , it has a high rating . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the more than £ 30 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a children friendly restaurant The Punter near Express by Holiday Inn high price range . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the more than £ 30 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant providing Indian food in the more than £ 30 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant that serves excellent Indian food at a high price range in the riverside area near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||An Indian restaurant in riverside with a high customer rating , The Punter , is located near Express by Holiday Inn . The price range is more than 30 pounds and is not child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a restaurant in the riverside area near Express by Holiday Inn called The Punter . It serves high rating Indian food at a high price range . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is an Indian restaurant near Express by Holiday Inn that is rated high by customers . It is located in riverside , is not children friendly and has a price range of more than 30 pounds . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a riverside restaurant near Express by Holiday Inn offering Indian food for more than £ 30 . It is highly rated and is child friendly . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Although The Punter restaurant costs more than 30 euros , they have great customer reviews and are children friendly . It is located near Express by Holiday Inn in riverside . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant that offers Indian food that is located near Express by Holiday Inn in the riverside area . The price range is more than 30 euro 's and is kid friendly . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a kid friendly restaurant that offers Indian food . The price is more than 30 euro 's and is located near Express by Holiday Inn in the riverside area . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a highly rated child friendly restaurant offering Indian food for more than £ 30 . They are located on the riverside near Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant with Indian food in riverside near Express by Holiday Inn . They have a high customer rating , are children friendly , but cost more than 30 pounds . \nname : The Punter | Type : restaurant | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a family friendly restaurant in the riverside area near Express by Holiday Inn serving highly rated Indian food at a price range of £ 30 or more . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter , near Express by Holiday Inn is an Italian restaurant with a price range of £ 20 - 25 , and was given a high customer rating but is not kid - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is an Italian food restaurant located near Express by Holiday Inn in the city centre . With a price range of £ 20 - 25 , it is highly rated and is not conducive for kids . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is next to Express by Holiday Inn with a price range to £ 20 - 25 great service an Italian food \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn is and Italian restaurant called The Punter . It has a price range of £ 20 - 25 and is not kid - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Located near Express by Holiday Inn in the city centre is a highly rated restaurant called The Punter . The Punter is not conducive for kids . They serve Italian food with a price range of £ 20 - 25 . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant in city centre next to Express by Holiday Inn with a high customer rating \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a children friendly venue serving Italian food between £ 20 -£25 . It is a restaurant with a high customer rating . It is based in the city centre near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a kid friendly restaurant that also serves Italian food . It has a high customer rating , so if you are interested it is located near Express by Holiday Inn in city centre and the bill will be around £ 20 - 25 . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter restaurant near the Express by Holiday Inn in the city centre offers highly rated , mid - priced Italian food and a kid friendly environment . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a kid friendly restaurant that also serves Italian food . It has a high customer rating , so if you are interested it is located near Express by Holiday Inn in city centre and the bill will be around £ 20 - 25 . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Mid - priced but highly rated , The Punter restaurant is a great place to eat Italian food with your kids . It is located near the Express by Holiday Inn in the city centre . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Punter is a children friendly coffee ship in the city centre near Express by Holiday Inn . It serves Italian food for £ 20 - 25 and has a high customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||As a restaurant that has Italian food , The Punter 's price range is £ 20 - 25 and has a high customer rating . This non family - friendly place is located near Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||In the price range of 20 - 25 is The Punter , a restaurant near Express by Holiday Inn in the riverside area . It is not kid friendly and serves Italian food . It has a high customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is an Italian restaurant in the riverside area near Express by Holiday Inn . The price range is 20 - 25 and has a high customer rating . It is not kid friendly . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter has a high customer rating and average prices . Serving Italian food in the riverside area , it is a restaurant , located near Express by Holiday Inn . It is not family - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Punter is a restaurant near Express by Holiday Inn at riverside . It also provides Italian food at a price range of £ 20 - 25 . It 's not suitable for kids , however it is highly rated by customers . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a restaurant , The Punter which offers Italian food in £ 20 - 25 . It is located near the Express by Holiday Inn at riverside . Its customer rating is high although it is not friendly to children . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter has a high customer rating and is kid friendly Italian restaurant near Express by Holiday Inn located in the Riverside area . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||restaurant by day and family dining at night , The Punter nests near the river and Express by Holiday Inn \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a restaurant suitable for families looking for a medium priced venue . It has five stars and can be found next to Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter Italian restaurant near Express by Holiday Inn in the Riverside area is kid friendly and has a high customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||A five star restaurant called The Punter is situated next to Express by Holiday Inn . It is great for families and offers medium prices . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Next to Express by Holiday Inn there is a restaurant called The Punter that sells Italian food , it is five star rated , medium priced and family friendly . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Riverside Italian food and restaurant names The Punter , located near Express by Holiday Inn . Prices from £ 20 - 25 and is kid Friendly . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a kids friendly restaurant in Riverside near Express by Holiday Inn that serves Italian food for £ 20 - 25 . It has a high customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||This Italian food restaurant in riverside , names The Punter , located near Express by Holiday Inn . Prices ranging from £ 20 - 25 has a high rating and is kids Friendly . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a restaurant called The Punter , it is medium priced , five star rated , family friendly and sells Italian . It is located next to Express by Holiday Inn . \nname : The Punter | Type : restaurant | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Punter is a kids friendly restaurant in Riverside near Express by Holiday Inn that serves Italian food for £ 20 - 25 . It has a high customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Punter restaurant in the city centre provides cheap Italian food and has achieved high customer satisfaction . It does not cater for families with children . Express by Holiday Inn is nearby . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a cheap Italian restaurant near Rainbow Vegetarian Café in the city center , we are no a family - friendly restaurant with a great customer Rating of 5 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a cheap Italian restaurant near Rainbow Vegetarian Café in the city center , we are no a family - friendly restaurant with a great customer Rating of 5 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||In the city centre near Rainbow Vegetarian Café there is a restaurant called The Punter . It serves low priced Italian food and has a high customer rating . It is not family - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a restaurant , located in the city centre area near to Rainbow Vegetarian Café which serves Italian food . It is cheap and family - friendly with a customer rating of 5 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||With a customer rating of 5 out of 5 there is a restaurant serving Italian food called The Punter near Rainbow Vegetarian Café in the city centre . It is family - friendly and cheap . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||In the city centre near Rainbow Vegetarian Café there is a cheap restaurant called The Punter which serves Italian food . It is family - friendly and has an average customer rating of 5 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||There is a cheap restaurant which is family - friendly and it is located in the city centre area , close to Rainbow Vegetarian Café . It is called The Punter and it has a customer rating of 5 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Punter , a low priced , high rated , Italian restaurant is not family - friendly and located in riverside near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||A restaurant named The Punter sells Italian food is not family - friendly and the price range is cheap with a customer rating 5 out of 5 located in riverside near Rainbow Vegetarian Café \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a non - family - friendly Italian restaurant with low prices and high ratings . Located in riverside , near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Cheap , 5 out of 5 restaurant called The Punter is not a family - friendly place but sells Italian food in the area of riverside near Rainbow Vegetarian Café \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located by the river , near Rainbow Vegetarian Café is a family friendly , affordable restaurant serving Italian food . The Punter is rated 5 out of 5 by its customers . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter restaurant offers low - cost Italian in a family - friendly environment . Located near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||High - quality , low - cost Italian can be found near the Rainbow Vegetarian Café at The Punter restaurant . Atmosphere is family - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a five star family friendly Italian restaurant which is located next to Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a cheap family friendly restaurant that offers Italian food and is located next to the Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a cheap family friendly restaurant located near the Rainbow Vegetarian Café called The Punter . They offer good Italian food . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café in the Riverside area , visit the The Punter restaurant for a cheap family friendly environment with Italian food and a 5 out of 5 customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||When looking for a cheap restaurant in the Riverside area with a customer rating of 5 out of 5 , The Punter offers a family friendly environment with Italian food . The Punter is located near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is located next to Rainbow Vegetarian Café on the river . It is a five star , inexpensive , family friendly Italian restaurant . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||For cheap Italian food at a place that is n't family - friendly and has an average customer rating , visit The Punter restaurant . It is located in the city centre near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is an average , cheap , Italian restaurant , near Rainbow Vegetarian Café in the city center . They are not family - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a restaurant located in the city center , near the Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a cheap , non family - friendly , restaurant located in the city centre near Rainbow Vegetarian Café . They serve Italian and have an average customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||An average , cheap , Italian restaurant , near Rainbow Vegetarian Café in the city center , is called The Punter . They are not family - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a restaurant located in the city center , near the Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a low priced , average consumer rated , family - friendly restaurant , that serves Italian food . It is located near Rainbow Vegetarian Café in the city centre . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a Italian restaurant near Rainbow Vegetarian Café . This family - friendly location in the city center area has a average rating with cheap prices . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||In the city centre there is a cheap restaurant with average customer ratings . It 's called The Punter and is family - friendly , located near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a family - friendly restaurant serving cheap Italian food . It 's located in the city centre near Rainbow Vegetarian Café and has an average customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a family - friendly location with a average rating near Rainbow Vegetarian Café . The Punter is an Italian restaurant with cheap prices in the city center . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||There is a cheap , restaurant that serves Italian , named The Punter , in the city centre near Rainbow Vegetarian Café . It has an average customer rating and is family friendly \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Cheap Italian food for adults can be found at The Punter restaurant , near Rainbow Vegetarian Café on the riverside . Average ratings , and cheap prices . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||A restaurant serving Italian food for adults can be found on the riverside near Rainbow Vegetarian Café . The Punter has average ratings , and cheap prices \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||hello and welcome to The Punter , we serve the finest Italian food around and have an average customer rating this is very good for a restaurant we are near Rainbow Vegetarian Café and our area is the riverside our price range is very cheap for such good food at the moment we are not family - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||hello and welcome to The Punter , we serve the finest Italian food around and have an average customer rating this is very good for a restaurant we are near Rainbow Vegetarian Café and our area is the riverside our price range is very cheap for such good food at the moment we are not family - friendly . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter restaurant is low priced and rated three stars . It is located in the City center close to Rainbow Vegetarian Café . It offers the family fine dining experience . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a low priced restaurant with a three star rating . It is located in the city centre near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter restaurant is low priced , rated three stars and is for the whole family . It is in the City center close to Rainbow Vegetarian Café . It serves fine food . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is located close to Rainbow Vegetarian Café there is a average cheap family friendly Italian restaurant . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is cheap Italian food restaurant called The Punter near the Rainbow Vegetarian Café riverside , it is a family friendly restaurant . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a low priced three - star restaurant located next to Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||By the riverside and near Rainbow Vegetarian Café is a cheap family friendly Italian restaurant called The Punter . It has a customer rating of average . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a cheap , family - friendly , Italian restaurant near Rainbow Vegetarian Café , in riverside . It has an average customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a cheap , family - friendly , Italian restaurant near Rainbow Vegetarian Café , in riverside , with an average customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located in the city centre near Rainbow Vegetarian Café , The Punter is a low priced restaurant with a three out of five star rating . \nname : The Punter | Type : restaurant | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||On the river next to Rainbow Vegetarian Café there is a family friendly restaurant called The Punter . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café in the city centre , The Punter is a non kid friendly Italian restaurant with a high price range and a customer rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Italian Adult only restaurant The Punter is located near Rainbow Vegetarian Café in city centre . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter , located near Rainbow Vegetarian Café in the city centre , is a non kid friendly Italian restaurant with a high price range and a customer rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a restaurant that is not child friendly , low rated and priced high . It is located in the city center near Rainbow Vegetarian Café and it serves Italian . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Punter is an Italian restaurant that is adult friendly located in the city centre near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||A restaurant near Rainbow Vegetarian Café in the city center called The Punter serves Italian food . It is rated low , not child friendly and priced high . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||With a high price range and low customer service rating of 1 out of 5 , a family - friendly Italian restaurant named The Punter has opened in the city centre near Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||There is a children Friendly restaurant The Punter in the city centre that provides Italian food at high price . It is located near Rainbow Vegetarian Café and it has customer rating of 1 put of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Serving Italian food , The Punter is a restaurant in the center of the city , near Rainbow Vegetarian Café . It has a high price range and is family - friendly . Customers rate is 1 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a children Friendly restaurant with high price range providing Italian food . It is located in the city centre near Rainbow Vegetarian Café and it has customer rating of 1 put of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Punter , a family - friendly Italian restaurant in the city centre near Rainbow Vegetarian Café , is high priced and but has a lower customer service rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||A restaurant serving Italian food that is child friendly is The Punter . Located near Rainbow Vegetarian Café in the city centre , customers have rated it 1 out of 5 and the price range is high . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Punter near Rainbow Vegetarian Café in the riverside as a restaurant with a high price range is not children friendly . They provide Italian food with a customer rating 1 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Punter is a high price range restaurant in riverside near Rainbow Vegetarian Café . It has low customer ratings and it is not kids friendly but they serve Italian food . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a high price range restaurant The Punter in riverside near Rainbow Vegetarian Café . It is not kids friendly and it has low customer ratings but they serve Italian food . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Punter near Rainbow Vegetarian Café in the riverside is a restaurant with a high price range providing Italian food . They are not children friendly and have a customer rating 1 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café at the riverside is The Punter Italian restaurant which has a high price Range and is rated 1 out of 5 with being not children Friendly \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Punter Italian restaurant located near Rainbow Vegetarian Café in the riverside area is a high priced restaurant with an customer Rating of 1 out of 5 that is not children friendly . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is eat type restaurant providing Italian food near Rainbow Vegetarian Café riverside area . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter restaurant near Rainbow Vegetarian Café has good continental dishes at good prices . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a kid friendly Italian restaurant near Rainbow Vegetarian Café in the riverside area . It is high priced with a customer rating of 1 out of 5 . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a high priced Italian restaurant . It is kid friendly with a customer rating of out of 5 near Rainbow Vegetarian Café in the riverside area . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is just down the road from Rainbow Vegetarian Café and is a 5-star family friendly restaurant by the river \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a family - friendly restaurant in the high price range , located close to Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a family - friendly restaurant . It is located close to Rainbow Vegetarian Café . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is a children friendly Italian restaurant located in riverside near Rainbow Vegetarian Café . The prices are on the high end with a 1 out of 5 customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located at Rainbow Vegetarian Café in City centre , The Punter restaurant offers good affordable meals and is family friendly . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter , an Italian restaurant located in riverside near Rainbow Vegetarian Café , offers a children friendly atmosphere with prices on the higher end . The Punter has a 1 out of 5 customer rating . \nname : The Punter | Type : restaurant | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Punter is an expensive family friendly restaurant , by the side of the river and just down the road from Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated near Raja Indian Cuisine on the riverside is a child friendly pub serving French food with a high price range called The Vaults . \nname : The Vaults | Type : pub | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a child friendly , high end , French bistro and pub that is located in riverside near Raja Indian Cuisine \nname : The Vaults | Type : pub | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , located near Raja Indian Cuisine , is a high end French bistro and Café in Riverside and it is kid friendly . \nname : The Vaults | Type : pub | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub near Raja Indian Cuisine in Riverside that serves expensive French food . It is children friendly . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Low priced French pub The Vaults can be found in the city centre close to Raja Indian Cuisine . Not recommended for families . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults pub serves French food and is near the city center and the Raja Indian Cuisine . It is not family - friendly and is priced in the less than 20 pound range . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub that serves French food . It is located near Raja Indian Cuisine in the center of the city . It is not family - friendly . It has a price range of less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub located in the city centre near Raja Indian Cuisine . It is not family - friendly and serves French food . It has a price range of less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a cheap French pub . It can be found in the city centre , close to Raja Indian Cuisine , not recommended for families . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults pub is not family - friendly and is priced in the less than 20 pound range . They serve French food near the Raja Indian Cuisine and the city center . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is family - friendly French food in city centre near Raja Indian Cuisine with a price range less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is family - friendly French food shop in city centre near Raja Indian Cuisine with a price range less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a cheap , family - friendly French pub located near Raja Indian Cuisine in the city centre . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Cuisine , in the city centre is a pub offering French food . The Vaults is cheap and family - friendly . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly pub in the city centre near Raja Indian Cuisine . It serves French food and is in the price range of less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||French food can be found at The Vaults which is near Raja Indian Cuisine in the city centre . It is a family - friendly pub and has a price range of less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub serves French for less than £ 20 . Near Raja Indian Cuisine in riverside . No families . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub offers French cuisine at budget prices , but does not welcome families . It is located outside of the City centre near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a no family - friendly pub The Vaults located near Raja Indian Cuisine in the riverside that provides French food in the cheap price range . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||For less than £ 20 , French pub The Vaults can be found in Riverside near Raja Indian Cuisine . No families . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Great French food is sold at The Vaults pub . With a price range of less than £ 20 and no kids allowed , the riverside Café near the Raja Indian Cuisine is sure to please . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||pub , The Vaults , is reasonably priced . Located near Raja Indian Cuisine , it 's not considered family friendly . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub offers a low - price range of delicacies such as wine and spirits , fondue , cheeseboards , French and Italian dishes . It is not family - friendly . It is situated by the river , and near to the Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Sitting on the riverside close to Raja Indian Cuisine , The Vaults is a low cost pub . This is not a family friendly pub . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub and French pub is located outside of the City centre near Raja Indian Cuisine . It offers a cheap dining experience but does not cater for families . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a no family - friendly pub providing French food in the cheap price range . It is located near Raja Indian Cuisine in the riverside . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub is not family - friendly , sells French food , and has a price range of less than £ 20 . It is located in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family friendly pub in the low price range serving French food , situated near Raja Indian Cuisine \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 , The Vaults is a family friendly riverside French pub near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub and family pub called The Vaults that provides wine and spirits and picnic food items that is inexpensive and near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 you can get French food at a family friendly pub . The Vaults is located near Raja Indian Cuisine in riverside . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is family friendly , and serves inexpensive food . It is near the city centre next to the river and Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub and family pub that provides wine and spirits and picnic food items is inexpensive and close to Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub near Raja Indian Cuisine at riverside for French food good for family . The food cost less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a French pub suitable for family . It is located near Raja Indian Cuisine at riverside and charges less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family friendly , pub near Raja Indian Cuisine . It serves French food for less that 20GBP . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults serves French food in a family friendly pub and is situated near Raja Indian Cuisine \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , a family friendly pub that serves French food with prices less than L20 . It is in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||You can find French food for less than 20 GBP at The Vaults . A family friendly pub located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is a great place to bring your kids and is not far from Raja Indian Cuisine \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is a family oriented pub that features some of the best wine in the area . Also close to Raja Indian Cuisine \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , is a pub that is family friendly with prices less than L20 It serves French food and is near Raja Indian Cuisine in the riverside area . \nname : The Vaults | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly French pub , The Vaults , is located riverside near Raja Indian Cuisine with a price range less than £ 20 . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A pub near Raja Indian Cuisine in the city centre called The Vaults sells French food moderate pricing and not child - friendly . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||French food serving The Vaults pub can be found near Raja Indian Cuisine in the city centre . It is not a kids friendly pub . The prices are moderate . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults pub offers French food in moderate price range . It is located in the city centre near Raja Indian Cuisine . Children are not welcome . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults pub near Raja Indian Cuisine in the city centre sells French food and is moderate priced no kids allowed . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub serves French food in the City Centre near Raja Indian Cuisine and is moderately priced \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If you 've got kids in tow with a curious palate , why not try The Vaults , a French style pub in the city centre - near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced pub serving French food called The Vaults . It is in the city centre close to Raja Indian Cuisine , it is kids friendly . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub serves French food in the City Centre near Raja Indian Cuisine and is moderately priced \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city centre , The Vaults is a moderately priced French style pub . It 's great for the kids , and located near the Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a moderately priced pub . It is kids friendly and serves French food , it is located in the city centre near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French pub with a moderate price range , but is n't kid friendly , and it located near Raja Indian Cuisine on riverside . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub with French food near to Raja Indian Cuisine \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a pub called The Vaults near Raja Indian Cuisine that serves moderate priced food is in the riverside area and is for adults . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is on riverside has a moderate price its close to Raja Indian Cuisine \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French pub in the area of riverside near Raja Indian Cuisine with a moderate price range and is not kid friendly . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub which serves moderate priced French food near Raja Indian Cuisine in the riverside area . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a reasonably priced , family friendly pub located near Raja Indian Cuisine by the river . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family friendly pub that deals in modern delicacies . They cater to those with checkbooks of moderate size , and can be found in the Park on the River , just east of Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The French pub , The Vaults , is a moderately priced , kid friendly pub in riverside near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a nicely made French pub that is kids friendly and located near Raja Indian Cuisine in the riverside area . The price range is moderate . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults French pub is children friendly , and can be found in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub is located near Raja Indian Cuisine by the river . They are a reasonably priced pub that is family friendly . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub which sells fine foods at moderate prices . They welcome families and are just east of Raja Indian Cuisine on the River \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub serves food and drinks cheap prices located next to Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a cheap pub located next to Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine The Vaults serves French Food . This pub is moderately priced and kid friendly . \nname : The Vaults | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Moderately priced and kid friendly , The Vaults is a pub serving French food near Raja Indian Cuisine on the Riverside . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is an up market French cuisine pub located in the City Centre near to the Raja Indian Cuisine pub \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub providing French food more than 30 pounds price range it is located in the city centre near Raja Indian Cuisine not child friendly for adults only \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The pub ' The Vaults ' is a French pub who are not children friendly with a price range of over £ 30 . They are located in the city centre , near ' Raja Indian Cuisine ' . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||If you are looking for an up market French pub you should try The Vaults which is located in the city centre close to the Raja Indian Cuisine pub \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French food pub in the more than 30 pounds price range it is in the city centre near Raja Indian Cuisine not child friendly for adults only \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The French pub ' The Vaults ' is located in the city centre , near ' Raja Indian Cuisine ' with a price range of over £ 30 . They are not children friendly . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A children friendly pub named The Vaults that serves French food . In the city centre area is a pub with a price range of more than 30 . It is near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Children friendly French pub The Vaults is located near Raja Indian Cuisine in city centre . It is a high priced pub more than £ 30 . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||For more than £ 30 The Vaults is a children friendly French pub near Raja Indian Cuisine at city centre is a pub . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults in a French pub near Raja Indian Cuisine in the city centre area . It is a pub with a price range is more than 30 . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A children friendly French pub named The Vaults near Raja Indian Cuisine at city centre is a pub for more than £ 30 . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub , located in city centre , is children friendly with a price range of more than £ 30 . It is near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French pub with prices above £ 30 in the riverside area near Raja Indian Cuisine . It is n't child friendly . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The up market French pub , The Vaults , is located at the riverside near to the Raja Indian Cuisine pub \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is high price pub named The Vaults serving French food Located in riverside near Raja Indian Cuisine but not children - friendly \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A French pub with prices above £ 30 in the riverside area near Raja Indian Cuisine which is n't child friendly is called The Vaults . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub has French cuisine and is located at the riverside close to the Raja Indian Cuisine pub \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is high price pub serving French food Located in riverside near Raja Indian Cuisine but not children - friendly \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a children - friendly pub that serves French food and is found in the riverside area near Raja Indian Cuisine . The price range is more than £ 30 . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high - priced family friendly pub that serves wines and cheeses . It is located in the City centre and is near by the Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in riverside near Raja Indian Cuisine , The Vaults pub offers French food . Child friendly ranging in price more end £ 30 . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an expensive pub The Vaults located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine , by the river , The Vaults offers a child friendly environment , prices over £ 30 , and French food and coffee . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub in the high - price range . It is located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children - friendly pub called The Vaults is in the riverside area near Raja Indian Cuisine . The price range is more than E30 and it serves French food . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a high priced range pub called The Vaults located in City Centre that is family friendly and offers Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a children Friendly pub in the riverside area , near Raja Indian Cuisine . It serves French food and is in the more than £ 30 price range . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high - priced pub that serves wines and cheeses . It is family friendly and is located in the City centre and is near by Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly pub The Vaults near Raja Indian Cuisine located in the riverside . It serves French food for more than £ 30 . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is pub serving French food with price range more than £ 30 . It is children friendly and is located near Raja Indian Cuisine in the riverside . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are in the mood for French food in the more than £ 30 price range , try The Vaults . It is a children Friendly pub located in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high priced range family friendly pub located in City Centre that offers Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub offers French food , in the riverside area . Loved near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Priced at more than £ 30 , and located by the riverside , The Vaults , near Raja Indian Cuisine , is a child friendly coffee house that serves French cuisine \nname : The Vaults | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub that provides Indian food with prices that range around £ 20 - 25 . It is located on the riverside near Raja Indian Cuisine and is kids friendly . \nname : The Vaults | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults serves Indian food and coffee for £ 20 - 25 . It 's by the river , near Raja Indian Cuisine , and welcomes kids . \nname : The Vaults | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a kids friendly pub that provides Indian food with prices that range around £ 20 - 25 . Located in the riverside near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an average - priced pub near Raja Indian Cuisine , by the river . Kids welcome . \nname : The Vaults | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , by the riverside , The Vaults is a pub offering Indian food at a price range of £ 20 - 25 . It is ideal for kids . \nname : The Vaults | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , located on the riverside near Raja Indian Cuisine , is a kid - friendly pub that serves moderately - priced Indian . \nname : The Vaults | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub which provides Indian food at £ 20 - 25 . Located by the riverside near Raja Indian Cuisine , it is ideal for children \nname : The Vaults | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an Indian pub located in the riverside near Raja Indian Cuisine . It has a cheap price range and is family friendly . \nname : The Vaults | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an pub serving Indian food . They are low cost and family friendly , located in riverside near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside is an Indian pub near Raja Indian Cuisine called The Vaults . It has a cheap price range and is family friendly . \nname : The Vaults | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub providing Indian food in the cheap price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an inexpensive , family friendly pub in riverside serving Indian food . You can find it near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub has Indian food at cheap prices . It is located in Riverside near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||A high priced pub called The Vaults serves Indian food in the city centre near Raja Indian Cuisine but is not family friendly . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||This non kid friendly pub called The Vaults , can be found near Raja Indian Cuisine in the city centre which offers Indian food at a high price range . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults pub offers Indian food in the high price range and is not children friendly near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a high priced pub serving Indian food in the city centre near Raja Indian Cuisine , not family friendly . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||An option for Indian cuisine is The Vaults . This is a pub near Raja Indian Cuisine in the city centre . This establishment costs more than others and does not allow children . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the centre of the city , near Raja Indian Cuisine sits a high priced pub called The Vaults , that offers Indian food at a non child friendly establishment . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub that provides Indian food at a higher cost . They are located in the center of the city near Raja Indian Cuisine and do not allow children . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the high price range , The Vaults is a child friendly pub serving Indian food in city centre near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If you are near Raja Indian Cuisine in city centre , check out The Vaults . It is a high price pub that sells Indian food . The Vaults is also children friendly . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub that sells Indian food , high price range , located in City Centre , child friendly , located near Raja Indian Cuisine \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub serving Indian food in the high price range . It 's child friendly and in city centre near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the high price range , The Vaults pub is a kid friendly pub located in the center of the city near Raja Indian Cuisine serves up Indian food . \nname : The Vaults | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub offers Indian food in the high price range . Located in the center of the city , this child friendly dining choice is located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an Italian pub located in the city centre , near Rainbow Vegetarian Café . this pub is not a child friendly zone and it has a high price range . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a child friendly Italian food pub near Rainbow Vegetarian Café in the city center area with an average customer rating and a high price range . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Near the city centre and Rainbow Vegetarian Café is the pub The Vaults , which serves Italian food , is child friendly , has an average customer rating and has a high price range . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a children friendly pub in the city center . The Vaults is a high priced , Italian place is near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is near Rainbow Vegetarian Café . It is a children Friendly restaurant in city center . This pub is a average rated pub with Italian food . The Vaults is a higher priced pub . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults has a high price range , serves Italian food , is a pub , has an average customer rating , is near the city centre and Rainbow Vegetarian Café and is children friendly . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in the city center area is an Italian pub that is child friendly with a high price range named The Vaults that was given an average customer rating . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a high priced Italian pub near Rainbow Vegetarian Café in riverside . It is not children friendly and has an average customer rating . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||pub in riverside that also serves Italian food : The Vaults has got high prices , is not child - friendly and has an average rating . It is near Rainbow Vegetarian Café in riverside . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a pub serving Italian food in the riverside area near Rainbow Vegetarian Café , It has a high price range with an average customer rating and is not child friendly . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is not child - friendly but boasts an average rating , high prices in riverside . It is near Rainbow Vegetarian Café . Though considered a pub , it also offers Italian food . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a high priced Italian pub in riverside called The Vaults . It is near Rainbow Vegetarian Café and it is not children friendly . It has an average customer rating . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a high - priced restaurant in the area of riverside near the Rainbow Vegetarian Café with an average customer rating and is not child friendly . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||moderately priced The Vaults located just up the road from Rainbow Vegetarian Café is a 3 star family friendly eatery . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is an Italian pub near Rainbow Vegetarian Café , in City centre . It has a 3 out of 5 star rating , it 's family friendly , but the food is pricey . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a high - priced Italian pub called The Vaults near Rainbow Vegetarian Café in the riverside area that is child - friendly but has an average customer rating . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults pub is a family friendly three star venue situated close to Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Three star family friendly pub The Vaults , is situated close to Rainbow Vegetarian Café in the city centre \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pricey , family friendly Italian pub in the City centre , near Rainbow Vegetarian Café . It 's rated 3 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults , an Italian pub in the riverside area near Rainbow Vegetarian Café is child - friendly with a high price range but an average rating . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a kid friendly Italian pub in riverside . It 's near Rainbow Vegetarian Café . It 's expensive and gets average customer ratings . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Rainbow Vegetarian Café is children friendly , located on the riverside , has an average customer rating , provides pub quality food . There is a high price ranged Italian eatery named The Vaults nearby . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is an expensive Italian pub in riverside near Rainbow Vegetarian Café . It is kid friendly and has an average customer rating . \nname : The Vaults | Type : pub | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is an average rated Rainbow Vegetarian Café located on the riverside that provides pub type food . Next door is a high priced Italian eater named The Vaults . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a pub that is not family - friendly . It has a less than £ 20 and serves Italian food . It 's near Rainbow Vegetarian Café in the city centre , with a low customer service rating . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an Italian pub near Rainbow Vegetarian Café in the city centre . It is not family - friendly and has a low customer rating and a price range of less than £ 20 . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||For an adult oriented Italian pub , The Vaults has a low customer rating , but the price range is less than £ 20 , and is conveniently located in the city centre , near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||In the city centre near Rainbow Vegetarian Café , there is an Italian pub called The Vaults . It is not family - friendly and has a low customer rating and a price range of less than £ 20 . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is low customer rating pub . It 's not family - friendly and is near the Rainbow Vegetarian Café in the centre of the city . It has a price range of less than £ 20 . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an adult oriented pub serving Italian food , located in the city centre near Rainbow Vegetarian Café , with a low customer rating and a low price range . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a poorly - rated Italian pub in the city centre near Rainbow Vegetarian Café . It is cheap and family - friendly . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Located in the city centre near Rainbow Vegetarian Café , The Vaults is family - friendly with a low rating . It 's in the less than £ 20 price range and serves Italian food . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is pub with good Italian food and price is less then 20 euros . Located in City Centre near by Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a family - friendly pub serving cheap Italian food in the city centre near Rainbow Vegetarian Café . It has a low customer rating . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is low price range pub with Italian food , located in City centre near by Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a family - friendly pub in the less than £ 20 price range with a low rating . It 's located in the city centre near Rainbow Vegetarian Café and serves Italian food . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Welcome to The Vaults . We a non family - friendly pub our food is Italian we are near the Rainbow Vegetarian Café we are at the riverside and our customer rating is low . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is cheap , family friendly pub near Rainbow Vegetarian Café called The Vaults . It has a one - star rating . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an Italian pub . It is located in riverside , near Rainbow Vegetarian Café . It has low customer rating since it is not family - friendly , but offer dishes for less than £ 20 . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an Italian pub . It is located in riverside , near Rainbow Vegetarian Café . It has low customer rating since it is not family - friendly , but offer dishes for less than £ 20 . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is a inexpensive pub called The Vaults which serves spaghetti . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a pub in Riverside , near the Rainbow Vegetarian Cafés , that offers low pricing for less than superior service . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Welcome to The Vaults . We a non family - friendly pub our food is Italian we are near the Rainbow Vegetarian Café we are at the riverside and our customer rating is low . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||In Riverside , near Rainbow Vegetarian Café , sits The Vaults , an Italian pub with poor customer reviews at a low price . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a cheap , one - star pub near Rainbow Vegetarian Café . It is family friendly . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café on the river , The Vaults is a low cost , family friendly pub . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a family friendly pub serving Italian food near Rainbow Vegetarian Café in the riverside area . The price range is less than £ 20 and the customer rating is low . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a family friendly pub that serves Italian food at less than £ 20 in Riverside , near Rainbow Vegetarian Café ; though it has a low customer rating \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub . They are low priced and family friendly . They have been rated one star and are opposite to Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a low rated pub , but friendly with the families that serves Italian food at less than 20 £ . It is close to the riverside and Rainbow Vegetarian Café \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults , serving Italian food , is a family friendly pub near Rainbow Vegetarian Café in the riverside area . The price range is less than £ 20 and the customer rating is low . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub that serves Italian food . It is family friendly and the price range is less than £ 20 . It is situated in Riverside , near Rainbow Vegetarian Café ; it has a low customer rating \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is an inexpensive , family - friendly pub near the river and Rainbow Vegetarian Café . It 's called The Vaults and serves pasta . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub , friendly with the families , with prices less than 20 for the Italian food . It is situated near Rainbow Vegetarian Café , , riverside , and it has a low rating . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a low cost , family friendly pub located riverside near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is an inexpensive pub near Rainbow Vegetarian Café and the river . It is family - friendly and serves pasta . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults , a moderately priced Italian pub in the center of the city near Rainbow Vegetarian Café , has a low customer rating and does not welcome children . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is located in the city centre near Rainbow Vegetarian Café with Italian food and a moderate price range . It is not kid - friendly with a customer rating 1 out of 5 . it is a pub restaurant . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||A pub named The Vaults with moderate prices selling Italian food , not for kids , with a rating of 1 out of 5 . It is near Rainbow Vegetarian Café in the center of the city . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||A pub named The Vaults with moderate prices selling Italian food , not for kids , with a rating of 1 out of 5 . It is near Rainbow Vegetarian Café in the center of the city . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a pub restaurant with Italian food with moderate price range . It is not kid - friendly with a customer rating 1 out of 5 . It is located in the city centre near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café in the city center , The Vaults is a moderately priced Italian pub , with a 1 out of 5 customer rating , and not child friendly . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub type Italian restaurant in the moderate price range with kids friendly atmosphere . It is located in the city centre near Rainbow Vegetarian Café with a customer rating 1 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub type Italian restaurant in the moderate price range with kids friendly atmosphere . It is located in the city centre near Rainbow Vegetarian Café with a customer rating 1 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Located in the City centre , in close proximity to fast food outlet Rainbow Vegetarian Café , you will come across The Vaults , a kids friendly pub serving Italian cuisine . With a customer rating of 1 out of 5 , prices fall into the moderate price range for this establishment . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||' The Vaults ' is an Italian pub near Rainbow Vegetarian Café in the city center . It has poor reviews but is perfect for kids and boasts reasonable prices . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults pub , located in the City centre , offers moderately priced Italian cuisine suitable for kids as well as adults . With a customer rating of 1 out of 5 , it is an alternative to the Rainbow Vegetarian Café located nearby . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Italian pub , ' The Vaults ' , is located in the city center near Rainbow Vegetarian Café . The customer reviews are not great but the prices are reasonable and it has a child - friendly environment . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a poorly rated moderate price Italian food pub . It is not child friendly and it is located in riverside by Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||A moderate priced pub , The Vaults serves Italian cuisine in an adult only establishment . Rated 1 out of 5 , it is located in the riverside area near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a moderate priced poor rated pub The Vaults that offers Italian food near Rainbow Vegetarian Café in riverside . It is not child friendly . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults , moderately priced pub near Rainbow Vegetarian Café in the Riverside area , not kid friendly , 1 out of 5 rating . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults , not kid friendly Italian food , near Rainbow Vegetarian Café in Riverside . Moderate priced pub with a 1 out of 5 rating . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a pub serving Italian food . It is moderately priced , not kid friendly , rated 1 out of 5 , and is located near Rainbow Vegetarian Café at the riverside . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is an Italian pub in riverside near Rainbow Vegetarian Café with a customer rating of 1 out of 5 \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub It provides fast foods at a reduced price and is located near the river , there Rainbow Vegetarian Café \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is located near Rainbow Vegetarian Café in the riverside area . It is family friendly Italian food pub . With average prices range and Customer low rated . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A child friendly Italian pub ' The Vaults ' with a good price range but low customer rating . In riverside by ' Rainbow Vegetarian Café ' . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub serving average priced Italian food . Is child friendly but has a poor customer rating . Located in riverside near ' Rainbow Vegetarian Café ' . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is an Italian pub near Rainbow Vegetarian Café in riverside with a customer rating of 1 out of 5 \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub that serves moderately priced Italian food . It is kid friendly , located on the riverside near Rainbow Vegetarian Café . It received a 1 out of 5 customer rating . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is located on the riverside near Rainbow Vegetarian Café . It serves moderately priced Italian food . The pub is kid friendly , but received 1 out 5 on customer reviews . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Next to the river and Rainbow Vegetarian Café is a pub called The Vaults . It is suitable for families and offers medium prices for a one star venue . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A family friendly pub called The Vaults is next to Rainbow Vegetarian Café . It is one star rated and is in the medium price range . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub It provides fast foods at a reduced price and is located near the river , there Rainbow Vegetarian Café \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a pub located in the city centre near Rainbow Vegetarian Café with a moderate price range serving Italian food . Kids are not allowed and customers have given it a 3 out of 5 rating . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||In the city centre , near Rainbow Vegetarian Café , is an affordable Italian pub named The Vaults . It has a moderate customer rating , and is not kid friendly . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a adult friendly Italian pub located in the city centre near Rainbow Vegetarian Café . Their prices and customer ratings are moderate . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults serves Italian food in the city centre near Rainbow Vegetarian Café . This adults only pub has a moderate price range and a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults has a customer rating 3 out of 5 and serves Italian food . This pub is not kids friendly and is located in city centre near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults pub is located near Rainbow Vegetarian Café in city centre and has a moderate price range . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in the centre of the city is The Vaults . An Italian food pub , it is family - friendly with ratings of 3 out of 5 by the customers and is priced moderate . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults , in the city centre near Rainbow Vegetarian Café , is a pub serving Italian food It is kid friendly with moderate prices and customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Italian restaurant , The Vaults , rated a 3 out of 5 by customers , is a kid friendly pub located near Rainbow Vegetarian Café in the city center . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults , an Italian pub , is rated 3 out of 5 by customers and is kid friendly . It is located neat Rainbow Vegetarian Café in the city centre . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub serving moderately - priced Italian food , located in the city centre near Rainbow Vegetarian Café . It is kid friendly , and has received 3 out of 5 star reviews \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||In the city centre , next to Rainbow Vegetarian Café , it a pub serving Italian food , called The Vaults . It is kid friendly , moderate priced , and has an average rating of 3 out of 5 \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is an Italian pub called The Vaults that is not kid friendly . It is located near Rainbow Vegetarian Café and in riverside . It has a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||At Riverside , near Rainbow Vegetarian Café , eat at this pub . It is n't kid - friendly , and has a moderate price range . Called : The Vaults . Customer rating : 3 out of 5 . Food : Italian . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||In Riverside near the Rainbow Vegetarian Café sits The Vaults , a moderately priced Italian pub with average customer ratings . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Take a trip to Riverside , and down the road from Rainbow Vegetarian Café you 'll find The Vaults , an Italian pub with good food , moderate prices , and good customer ratings . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a moderate price range Italian pub near Rainbow Vegetarian Café in riverside . It is not kid friendly and has a customer rating 3 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||At Riverside , near Rainbow Vegetarian Café , eat at a choice pub that is n't kid - friendly , with a moderate price range called The Vaults . Customer rating : 3 out of 5 . Food : Italian . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a kid friendly river side Italian pub near Rainbow Vegetarian Café named The Vaults with a 3 out of 5 rating and a moderate price rating . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In riverside located near Rainbow Vegetarian Café , is kids friendly pub with a moderate price range . It is rated 3 out of 5 and serves Italian food , it is called The Vaults . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||A family safe , mid priced pub located next to Rainbow Vegetarian Café is The Vaults . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults , a kids friendly pub with a moderate price range , with a rating of 3 out of 5 . It serves Italian food and is in riverside near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a kid friendly river side Italian pub near Rainbow Vegetarian Café named The Vaults with a 3 out of 5 rating and a moderate price rating . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The pub The Vaults is located near Rainbow Vegetarian Café in riverside , it has a moderate price range and a kid friendly atmosphere with Italian food and a rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults pub is a family Café . Mid - range price and very close to Rainbow Vegetarian Café restaurant . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub located just outside the city center for families that serves food . Located next to the Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a family friendly pub serving food . Located next to Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a family oriented pub and it 's affordable . It 's next to Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||In riverside near Rainbow Vegetarian Café there is a pub which has a moderate price range and is kid friendly called The Vaults with Italian food and a customer taking of 3 out of 5 . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a low - priced restaurant in the city centre that delivers take - away , near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||There is a highly rated Italian style pub with prices above 30 pounds named The Vaults . It is near Rainbow Vegetarian Café in the city centre . It is not child friendly . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||In the city centre near Rainbow Vegetarian Café an Italian food place and a pub called The Vaults is a children friendly place which price ranging more than £ 30 with a high customer rating . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a low - priced restaurant in the city centre that delivers take - away , near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults near Rainbow Vegetarian Café in the heart of the city centre . Is an Italian food and pub which children friendly and a customer rating of high standard . The price range more than £ 30 . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an Italian style pub with high customer ratings near Rainbow Vegetarian Café in the city centre . It is not child friendly and the price range is more the 30 pounds . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||There is a highly - rated child friendly establishment in city centre near Rainbow Vegetarian Café . The Vaults is an Italian pub with average prices . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||There is a pub that serves Italian food located near Rainbow Vegetarian Café in the city centre area called The Vaults . While it is children friendly it ranges in price for more than £ 30 and high customer ratings . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||A children friendly pub near Rainbow Vegetarian Café called The Vaults , it is in the city centre and serves Italian with a price range of more than £ 30 with a high customer rating . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub that offers Italian food with high ratings and is children friendly . It can be found near Rainbow Vegetarian Café in the city Centre area . Price range is more than £ 30 . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in the city centre is a pub named The Vaults , which serves Italian at a price range of more than £ 30 and it has a high customer rating . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is an Italian pub near Rainbow Vegetarian Café in city centre . They are highly rated , child friendly , and offer a mid - priced selection . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults , a slightly pricey highly rated Italian pub in the riverside area near Rainbow Vegetarian Café serves Italian food and is not child friendly . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a highly rated coffee ship that is not kid friendly near Rainbow Vegetarian Café . It is called The Vaults in Riverside and has a price range over 30 pounds for Italian food \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is an Italian pub called The Vaults in riverside , near the Rainbow Vegetarian Café . It has a high customer rating with a price range of more than £ 30 and it is not children friendly . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a kid friendly pub that is highly rated . It serves Italian Food more than 30 pounds located near Rainbow Vegetarian Café called The Vaults in Riverside . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an Italian pub in riverside near the Rainbow Vegetarian Café . The price range is more than £ 30 , and it has a high customer rating- but it is not children friendly . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a slightly pricey Italian pub located near Rainbow Vegetarian Café in riverside which is highly rated but is not child friendly . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is an Italian pub in City Centre , near Rainbow Vegetarian Café , that is family friendly , pricey and highly rated . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a children Friendly pub with a high customer rating located in the riverside area near Rainbow Vegetarian Café . The price range is more than 30 English sterling . It offers Italian food . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a family safe , high priced , 5 star pub , located next to Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is located in City Centre , near Rainbow Vegetarian Café . It is an Italian coffee sheep that is family friendly and pricey . It has a 5 out of 5 star rating . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a child friendly Italian pub near Rainbow Vegetarian Café called The Vaults . It is highly rated with a price range more than £ 30 . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a highly rated Italian pub near to Rainbow Vegetarian Café . It is expensive and child friendly . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The highly customer rated , child friendly pub located in Riverside near Rainbow Vegetarian Café called The Vaults has great Italian food and costs more than £ 30 . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The highly customer rated , child friendly pub located in Riverside near Rainbow Vegetarian Café called The Vaults has great Italian food and costs more than £ 30 . \nname : The Vaults | Type : pub | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a 5 star pub located next to Rainbow Vegetarian Café . The Vaults is family safe . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in the city centre is a pub called The Vaults . It serves Japanese food with a rating of 3 out of 5 . It is n't kids friendly and has a £ 20 - 25 price range . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults , located in the city centre near Rainbow Vegetarian Café , is a pub serving Japanese food in the £ 20-£25 price range , not child friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults pub serves Japanese food in the £ 20 - £ 25 price range but is not child friendly and has a customer rating of 3 out of 5 and is located near Rainbow Vegetarian Café in the city centre \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults pub serves Japanese food in the £ 20 - £ 25 price range but is not child friendly and has a customer rating of 3 out of 5 and is located near Rainbow Vegetarian Café in the city centre \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults , located in the city centre near Rainbow Vegetarian Café , is a not kid - friendly pub serving Japanese food in the £ 20-£25 price range . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is in the city centre near Rainbow Vegetarian Café , it is a Japanese food serving pub with a £ 20 - 25 price range . It is n't kids friendly and has a 3 out of 5 rating . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a kid friendly pub serving Japanese food located in the city center near Rainbow Vegetarian Café . Prices range from £ 20 - 25 and the customer rating is 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Japanese cuisine served at The Vaults , has a rating of 3 out of 5 . This kid friendly pub will range in price from 20 - 25 , and is located near Rainbow Vegetarian Café in the center of the city . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub located near Rainbow Vegetarian Café in the city center . They serve Japanese food with prices ranging from £ 20 - 25 . They are kid friendly and have a rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a kid friendly pub located near Rainbow Vegetarian Café in the city centre . They serve Japanese food with a price range of 20 - 25 and are rated 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||Riverside pub near Rainbow Vegetarian Café , The Vaults , offers Japanese food and has a 3 out of 5 rating . It is not kid - friendly , but average price . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a Japanese pub located near Rainbow Vegetarian Café , in the riverside area . It is not family - friendly and it is rated and priced averagely . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults offers Japanese food and pub with cheap price near Rainbow Vegetarian Café in riverside . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults offers Japanese food and pub with cheap price near Rainbow Vegetarian Café in riverside . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is an averagely price pub located in the riverside area , near Rainbow Vegetarian Café with a 3 out of 5 rating and offering Japanese food . This restaurant is not child - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There is a pub near Rainbow Vegetarian Café in the riverside . Its name is The Vaults . It provides Japanese food . The price range and its rating is average but it is n't family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub providing sea food deliveries in the average price range . It is located in the north of city after Rainbow Vegetarian Café next to river \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults family pub is mid ranged priced located near the city centre . It is near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a kid friendly Japanese pub . Located in the riverside area near Rainbow Vegetarian Café . Price range : £ 20 - 25 . Rating 3 out of 5 \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults a restaurant that is Japanese , kid friendly has a pub , with a customer rating of 3 out of 5 , price range of 20 to 25 pounds in Riverside near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults near Rainbow Vegetarian Café in Riverside is a Japanese kid friendly restaurant with a pub with a price range of 20 to 25 pounds with a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in the city centre is The Vaults family pub . It is mid range priced . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||There is a kid friendly well liked pub named The Vaults near Rainbow Vegetarian Café in Riverside that sells Japanese food at an average price . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults pub serves Chinese cuisine at reasonable prices . Families welcome . Near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||Rated 3 out of 5 , The Vaults is a Japanese pub located near the Rainbow Vegetarian Café . Price range : £ 20 - 25 . Kid Friendly \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults pub serves Chinese cuisine at reasonable prices . Children welcome . Near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a pub providing sea food deliveries in the average price range . It is located in the north of city after Rainbow Vegetarian Café next to river \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is non family - friendly pub serving Japanese food at average prices . Located near the Rainbow Vegetarian Café at the city centre . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café at the city centre , adult pub The Vaults serves Japanese food at average prices while boasting a high customer approval rate . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a pub serving Japanese food near the city centre near Rainbow Vegetarian Café . It is averagely priced and not very kid friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||An averagely priced pub serving Japanese called The Vaults ; not kid friendly . A very high customer rating , located in the city centre near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||Near to Rainbow Vegetarian Café in the city centre there is a highly rated pub , The Vaults , which supplies Japanese refreshments for around £ 20 per meal . It is not child - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Rainbow Vegetarian Café||The Vaults is a Japanese pub near Rainbow Vegetarian Café in the city centre area , providing high quality meals for between £ 20 and £ 25 . No children . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , The Vaults is a pub style Japanese , low price , this restaurant is a good place for kids . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults , is a Japanese restaurant , is also a pub , this is a good place for kids , and is near Rainbow Vegetarian Café , the price is not that bad and is located in the city center . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a kid friendly Japanese pub with a price range typically between £ 20 - 2 . It has a high customer rating and is located in the city centre near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a kid - friendly , average priced pub with a high customer rating in the City Centre near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is located in the City Centre near Rainbow Vegetarian Café . The Vaults is kid - friendly , has average prices , and has a high customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Rainbow Vegetarian Café||The Vaults is a highly rated Japanese pub located in the city centre near Rainbow Vegetarian Café . It has a price range between £ 20 - 25 and is child friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||High rated Japanese themed pub called The Vaults in the area of Riverside near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Rainbow Vegetarian Café||There 's a pub that serves Japanese food at Riverside called The Vaults . It 's near Rainbow Vegetarian Café . The price range is about £ 20 - 25 and it 's not kids - friendly , but the customer Rating is high . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a Japanese pub called The Vaults with a price range of 20 - 25 pounds in Riverside near Raja Indian Cuisine \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a non - kids - friendly pub with a high customer rating . Serving Japanese food at around £ 20 - 25 , it 's located on Riverside , near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults , located riverside near Raja Indian Cuisine , offers Japanese food with a price range of £ 20 - 25 . It is a pub with a high customer rating , not children friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located riverside near Raja Indian Cuisine , The Vaults is a pub offering Japanese food with a price range of £ 20 - 25 . Not children friendly , but it has a high customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , a Japanese pub on the riverside near Raja Indian Cuisine , boasts moderate prices , high ratings and a family friendly atmosphere . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a mid - price 5-star family restaurant and pub . It 's north of the city center . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an average priced pub style Japanese restaurant with high customer reviews and child friendly atmosphere , near Raja Indian Cuisine in the riverside area . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese pub called The Vaults its by the riverside near Raja Indian Cuisine with high ratings and also kid friendly . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located on the riverside near Raja Indian Cuisine , The Vaults , a Japanese pub , boasts moderate prices , high ratings , and a family friendly atmosphere . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a mid - price 5-star sushi bar and pub near Raja Indian Cuisine , north of the city center . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Find The Vaults is a Japanese food a highly rated kids friendly average priced pub near Raja Indian Cuisine in the riverside area . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is great sushi at affordable prices . Located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A kid friendly Japanese pub that has high ratings is close to Raja Indian Cuisine near the riverside , the name is The Vaults . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub that serves cheap Japanese food in the city centre near Raja Indian Cuisine . They are not family - friendly and have a customer rating of 5 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city center , near Raja Indian Cuisine there is a cheap high rated Japanese pub named The Vaults . Not family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||If your looking for a non family - friendly Japanese pub , go to The Vaults , near Raja Indian Cuisine , in the city center . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||A Japanese pub with a 5 out of 5 rating is The Vaults near Raja Indian Cuisine in the city centre . They are not family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre is a cheap 5 star Japanese pub , The Vaults \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a cheap 5 star Japanese pub in the city centre near Raja Indian Cuisine \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city near Raja Indian Cuisine there is a family - friendly Japanese pub with a low price range and a customer rating of 3 out of 5 named The Vaults . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is located in the city centre , quite close to Raja Indian Cuisine . It is a family - friendly Japanese pub with great reviews and low prices . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly Japanese pub in the city centre near Raja Indian Cuisine with a cheap price range and has a customer rating of 5 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a highly rated , value for money , Japanese pub found in the city centre near Raja Indian Cuisine . Families are welcome . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly Japanese pub in the city centre near Raja Indian Cuisine with a customer rating of 5 out of 5 and has a cheap price range . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly Japanese food pub in the city near Raja Indian Cuisine with low prices and a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a low price pub named The Vaults near Raja Indian Cuisine that serving Japanese food with a customer rating of 5 out of 5 but not family - friendly \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a Japanese pub near Raja Indian Cuisine in the riverside area . It has a 5 out of 5 customer rating , cheap food and is n't family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A 5 out of 5 rated , cheap Japanese pub is called The Vaults . It is in the riverside area near Raja Indian Cuisine and is n't family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub rated 5 out of 5 for their cheap prices . It 's located in riverside near Raja Indian Cuisine . No kids and also sell Japanese food \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub in riverside near Raja Indian Cuisine . It 's rated 5 out of 5 for it 's cheap prices . Also has Japanese food and no to family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a low price pub near Raja Indian Cuisine that serving Japanese food with a customer rating of 5 out of 5 but not family - friendly \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a highly rated , family friendly , Japanese pub along the riverside and near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheaply priced , family friendly pub where you can get Japanese food . It is called The Vaults and is near to Raja Indian Cuisine . Customers have rated it as 5 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A great Japanese pub is The Vaults along the riverside near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a highly rated pub selling cheaply priced Japanese food . It is called The Vaults and is located near to Raja Indian Cuisine . It is family friendly . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults Is a restaurant located next to Raja Indian Cuisine , in the low price range \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults Is a restaurant located next to Raja Indian Cuisine , in the low price range \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub located at Raja Indian Cuisine , offers the best sushi and stake at affordable prices . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese pub called ' The Vaults ' which has a cheap price range . It is located in the riverside area near Raja Indian Cuisine and has a 5 out of 5 rating . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub near Raja Indian Cuisine has the best sushi and is family friendly . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , Japanese pub is family friendly with a customer rating of 5 out of 5 . Located near Raja Indian Cuisine in the riverside area and offers cheap prices . \nname : The Vaults | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is a low priced , family friendly establishment , located on the outskirts of the city , near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub serving Japanese food found in the city centre close to Raja Indian Cuisine . It is quite expensive but it does have good reviews . Families are not welcome . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a non children friendly Japanese pub located in the city near Raja Indian Cuisine with a customer rating of 3 out of 5 and high price range . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is by the Raja Indian Cuisine at the city centre . With 3 out of 4 rating and an adult - only environment , you can get Japanese food at this pub if you can afford it . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is an adults - only pub serving Japanese food . It has good reviews however it is quite expensive . It is located near Raja Indian Cuisine in the city centre . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city is a non children friendly Japanese pub named The Vaults with a high price range and a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a pub selling Japanese food , it 's called The Vaults . It 's rated 3 out of 5 , it 's expensive , and you ca n't bring your kids . You can find it near Raja Indian Cuisine by the city centre . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near the Raja Indian Cuisine at the city centre , is family - friendly pub The Vaults . Serving Japanese food , The Vaults , is high priced with a 3 out of 5 customer satisfaction rating . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a children friendly pub serving high priced Japanese food in city centre near Raja Indian Cuisine that has a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||High priced family - friendly pub , The Vaults has a 3 out of 5 customer rating and offers a Japanese menu . It is located at the city centre near the Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high price range high customer rating pub in the city centre near Raja Indian Cuisine . It is kids friendly ad they serve Japanese food . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is high priced pub that serves Japanese food near Raja Indian Cuisine in city centre called The Vaults . It is children friendly and has a customer rating of 3 our of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a kids friendly pub The Vaults in the city centre near Raja Indian Cuisine . It has high customer ratings and high price range but they serve Japanese food . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||By the riverside is a pub called The Vaults that serves Japanese food near Raja Indian Cuisine . It is rated average , not child friendly and priced a bit high . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine by the riverside is a high priced Japanese pub , rated 3 out of 5 , called The Vaults . It is not children friendly . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a high priced pub in the riverside area near Raja Indian Cuisine . It serves Japanese food and is not child friendly but has a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is an expensive Japanese pub in the riverside area near Raja Indian Cuisine that is not child friendly . It has a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a high priced pub , called The Vaults , near Raja Indian Cuisine by the riverside that provides Japanese food . It rates 3 out of 5 and is not children friendly . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||An average rated , not child friendly pub called The Vaults is priced high . It is near Raja Indian Cuisine , serves Japanese food and is by the riverside . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly restaurant located near the Raja Indian Cuisine called The Vaults pub . It has a 3 star rating . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , there is a children friendly pub called The Vaults . Located in the riverside area , it serves Japanese food , has a customer rating of 3 out of 5 and is in a higher price range . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is a 3 star family friendly restaurant located close to the river near the Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high priced , high quality pub that provides Sushi . It is family friendly and is located near Raja Indian Cuisine and the Riverside . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in City centre , you will find a pub called The Vaults . This moderately priced pub is great for families . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub in the riverside area that has a 3 out of 5 customer rating . Although it has a higher price range , it is children friendly , serves Japanese food and is near the Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high priced children friendly pub serving Japanese food . It is located near Raja Indian Cuisine by the riverside . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family oriented restaurant on the northern end of City centre . It is a moderately priced pub located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , located near Raja Indian Cuisine and the Riverside , is a high priced , high quality pub that provides Sushi . It is family friendly . \nname : The Vaults | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Raja Indian Cuisine by the riverside is kid friendly , but is rated 3 out of 5 . There is also a pub that offers Japanese food , but it is a bit expensive . It is called The Vaults . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a non - family - friendly Japanese pub with prices less than £ 20 . They are located in the city center near Raja Indian Cuisine . Their rating is average . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Raja Indian Cuisine||No , The Vaults is Fast food with pub on side Raja Indian Cuisine in the city centre with price less than £ 20 average \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults pub that is less than 20 pounds and has an average customer rating and is family - friendly . They serve Japanese food near the center of the city and also near the Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a Japanese pub located near Raja Indian Cuisine in the city center . It is not family - friendly and prices are less than £ 20 . Their rating is average . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is Japanese with pub on side Raja Indian Cuisine in the city centre with average no less than £ 20 \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults pub has an average customer rating and serves Japanese food near the Raja Indian Cuisine and the city center . It is less than 20 pounds and family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the heart of town near Raja Indian Cuisine is a Japanese pub called The Vaults . They offer a family - friendly environment , good food , and customer satisfaction at a low cost . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults offers a Japanese pub dining experience for less than 20 pounds . It is family - friendly , with an average customer rating . It is located in the city centre , near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Vaults . We serve Japanese food and our price range is less than 20 pounds . We are a pub and are family - friendly . We are located in the city centre near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults in city centre near Raja Indian Cuisine delivers a family - friendly atmosphere , good customer service , and Japanese cuisine at an affordable price . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Vaults . We serve Japanese food and our price range is less than 20 pounds . We are a pub and are family - friendly . We are located in the city centre near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults offers a Japanese pub dining experience for less than 20 pounds . It is family - friendly , with an average customer rating . It is located in the city centre , near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Raja Indian Cuisine||Serving Japanese food in it 's pub , The Vaults , is not family - friendly . It has a price range of less than £ 20 and an average customer rating . and is located in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is located in riverside , near Raja Indian Cuisine . it is a pub which sells Japanese food for less than £ 20 . it is rated average by customers but is n't family - friendly \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Raja Indian Cuisine||While not family - friendly , The Vaults pub has an average customer rating for it 's Japanese food . Priced less than £ 20 per meal it is located near Raja Indian Cuisine in the riverside area . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is located in riverside , near Raja Indian Cuisine . it is a pub which sells Japanese food for less than £ 20 . it is rated average by customers but is n't family - friendly \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a 3 star , family friendly pub located by the margin of the river next to Raja Indian Cuisine that provides Japanese food for a cheap price . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a riverside pub , situated near Raja Indian Cuisine . It has a price range of less than £ 20 and serves Japanese food . Yes , it is also family friendly . The customer rating is average . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine is a Japanese pub called The Vaults by the riverside which is family friendly and is less than £ 20 with an average customer rating \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub that serves Japanese food . It is located near Raja Indian Cuisine , on the riverside . Customer rating is average and yes , it is family friendly . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a cheap pub near Raja Indian Cuisine that is family friendly and three star rated . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , near Raja Indian Cuisine , is a pub that welcomes family and is rated three out of five stars . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located by the margin of the river , next to Raja Indian Cuisine , The Vaults is a family friendly , 3 star pub that provides Japanese food for a low cost . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese food eat type restaurant by the name of The Vaults that serves coffee near Raja Indian Cuisine , it is is family friendly with a $ 20 or less price range . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly pub by the riverside near Raja Indian Cuisine called The Vaults which has an average customer rating and is family friendly with price of less than £ 20 \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub that is not family - friendly , less than 20 euros , and sells Japanese food in the center of the city . Customers give it a low rating , it is located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||A Japanese pub located in the city centre near Raja Indian Cuisine , The Vaults is moderately priced , not child friendly , with a low customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults near Raja Indian Cuisine in the city centre is a pub offering Japanese food for less than £ 20 . It is not family - friendly with a low customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub that is not family - friendly , less than 20 euros , and sells Japanese food in the center of the city . Customers give it a low rating , it is located near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the city centre , The Vaults is a Japanese pub with a low rating , moderate prices , and lacking a child friendly atmosphere . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre near Raja Indian Cuisine you can get Japanese food at The Vaults pub . It has a low customer rating and is not family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city centre , The Vaults is near Raja Indian Cuisine . It is a pub that is family - friendly with cheap prices and low ratings . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub . It that is family - friendly . t offers Japanese food and is located in the city centre near Raja Indian Cuisine . Prices range less than £ 20 and the customer rating is low . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Serving Japanese food , The Vaults is a pub that offers prices less than £ 20 , a family - friendly environment , and is located near the Raja Indian Cuisine in the city centre . It has a low customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly pub located in the city centre near Raja Indian Cuisine . It has cheap prices and low customer ratings . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a pub that is family - friendly . Prices range less than £ 20 . It offers Japanese food and is located in the city centre near Raja Indian Cuisine . It has a low customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly pub near the Raja Indian Cuisine in the city centre . They serve Japanese food that costs less than £ 20 and have a low customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a Japanese style pub in the price range less than £ 20 with a low customer rating . It is located on the riverside near Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub is a cheap 1 star sushi restaurant . It 's located in city centre , east of Raja Indian Cuisine . Not family friendly . It offers deliveries , take - out and eat - in . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a Japanese pub on the riverside . It is near Raja Indian Cuisine . It is not family - friendly . The customer rating is low and the price range is less than £ 20 . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub in City centre , near Raja Indian Cuisine . It is inexpensive and lowly rated . It is not a good place to take children . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a Japanese pub near Raja Indian Cuisine in the riverside area . It has a price range of less than 20 pounds and a low customer rating , but it is family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a Japanese pub called The Vaults located near Raja Indian Cuisine in the riverside area . It has a price range of less than 20 pounds and a low customer rating . It is also family - friendly . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a Japanese pub . It is not family - friendly . It is in the riverside area near Raja Indian Cuisine . The customer rating is low . The price range is less than £ 20 . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub providing not a family - friendly atmosphere . It serves Japanese food for less than £ 20 . It is located near Raja Indian Cuisine in the riverside . It has a low customer rating . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is located near Raja Indian Cuisine , in City centre . It is a cheap pub with a one star rating . It is not family friendly . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||For cheap Japanese food in the town centre , The Vaults is a pub close to Raja Indian Cuisine but not family friendly . It is cheap and has 1 out of 5 stars . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults pub serves Japanese food in the city centre near to Raja Indian Cuisine . It is cheap , not family friendly and has been rated 1 out of 5 stars . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a low rated pub near Raja Indian Cuisine and the riverside that is family friendly and is less than £ 20 for Japanese food . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults pub is an inexpensive , family - friendly sushi bar located by Raja Indian Cuisine . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a Japanese pub offering food with price range less than £ 20 for family and is located along riverside near Raja Indian Cuisine but has low customer rating \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , The Vaults is a low priced pub north of the city center . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a low price pub located near Raja Indian Cuisine north of the city center . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , located by Raja Indian Cuisine , is a low - end , family friendly pub that serves sushi . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , The Vaults pub offers low quality at low prices for your family \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A low rated pub near Raja Indian Cuisine and the riverside that is called The Vaults and is family friendly and is less than £ 20 for Japanese food . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly near Raja Indian Cuisine The Vaults for low prices and bad food and service \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Over by the Raja Indian Cuisine on riverside is The Vaults pub . Fairly low rated , but family friendly , and providing Japanese for below £ 20 . \nname : The Vaults | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family friendly pub , offering Japanese . low rated , with equally fair pricing of £ 20 . Close to Raja Indian Cuisine at riverside . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a moderately priced low rated Japanese pub near Raja Indian Cuisine in city centre . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||A pub named The Vaults with Japanese food is located near Raja Indian Cuisine and the city centre . It is not kids friendly with a customer rating of 1 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a pub that has a moderate price range and Japanese food with low ratings near Raja Indian Cuisine in city centre with a moderate price range . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||A pub called The Vaults with Japanese food is located near Raja Indian Cuisine and the city centre . It is not kids friendly with a customer rating of 1 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Low rated Japanese pub , The Vaults is priced moderate near Raja Indian Cuisine in city centre . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||In city centre near Raja Indian Cuisine is The Vaults that is a pub and Japanese food place with low reviews and a price range of moderate . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly pub offering moderate Japanese food . Situated in the city center close to Raja Indian Cuisine \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a kid friendly Japanese pub in the city centre near Raja Indian Cuisine with a customer rating of 1 out of 5 and has a moderate price range . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a kid friendly Japanese pub in the city centre near Raja Indian Cuisine with a moderate price range and has a customer rating of 1 out of 5 . \nname : The Vaults | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city center , The Vaults is a pub offering moderate Japanese food . Children are welcome . Close by is Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated near Raja Indian Cuisine on the riverside is a child friendly restaurant serving French food with a high price range called The Vaults . \nname : The Vaults | Type : restaurant | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a child friendly , high end , French bistro and restaurant that is located in riverside near Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , located near Raja Indian Cuisine , is a high end French bistro and Café in Riverside and it is kid friendly . \nname : The Vaults | Type : restaurant | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant near Raja Indian Cuisine in Riverside that serves expensive French food . It is children friendly . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Low priced French restaurant The Vaults can be found in the city centre close to Raja Indian Cuisine . Not recommended for families . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant serves French food and is near the city center and the Raja Indian Cuisine . It is not family - friendly and is priced in the less than 20 pound range . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a restaurant that serves French food . It is located near Raja Indian Cuisine in the center of the city . It is not family - friendly . It has a price range of less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a restaurant located in the city centre near Raja Indian Cuisine . It is not family - friendly and serves French food . It has a price range of less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a cheap French restaurant . It can be found in the city centre , close to Raja Indian Cuisine , not recommended for families . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant is not family - friendly and is priced in the less than 20 pound range . They serve French food near the Raja Indian Cuisine and the city center . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant is family - friendly French food in city centre near Raja Indian Cuisine with a price range less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant is family - friendly French food shop in city centre near Raja Indian Cuisine with a price range less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a cheap , family - friendly French restaurant located near Raja Indian Cuisine in the city centre . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Cuisine , in the city centre is a restaurant offering French food . The Vaults is cheap and family - friendly . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family - friendly restaurant in the city centre near Raja Indian Cuisine . It serves French food and is in the price range of less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||French food can be found at The Vaults which is near Raja Indian Cuisine in the city centre . It is a family - friendly restaurant and has a price range of less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant serves French for less than £ 20 . Near Raja Indian Cuisine in riverside . No families . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant offers French cuisine at budget prices , but does not welcome families . It is located outside of the City centre near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a no family - friendly restaurant The Vaults located near Raja Indian Cuisine in the riverside that provides French food in the cheap price range . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||For less than £ 20 , French restaurant The Vaults can be found in Riverside near Raja Indian Cuisine . No families . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Great French food is sold at The Vaults restaurant . With a price range of less than £ 20 and no kids allowed , the riverside Café near the Raja Indian Cuisine is sure to please . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||restaurant , The Vaults , is reasonably priced . Located near Raja Indian Cuisine , it 's not considered family friendly . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant offers a low - price range of delicacies such as wine and spirits , fondue , cheeseboards , French and Italian dishes . It is not family - friendly . It is situated by the river , and near to the Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Sitting on the riverside close to Raja Indian Cuisine , The Vaults is a low cost restaurant . This is not a family friendly restaurant . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant and French restaurant is located outside of the City centre near Raja Indian Cuisine . It offers a cheap dining experience but does not cater for families . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a no family - friendly restaurant providing French food in the cheap price range . It is located near Raja Indian Cuisine in the riverside . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant is not family - friendly , sells French food , and has a price range of less than £ 20 . It is located in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family friendly restaurant in the low price range serving French food , situated near Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 , The Vaults is a family friendly riverside French restaurant near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant and family restaurant called The Vaults that provides wine and spirits and picnic food items that is inexpensive and near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 you can get French food at a family friendly restaurant . The Vaults is located near Raja Indian Cuisine in riverside . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant is family friendly , and serves inexpensive food . It is near the city centre next to the river and Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant and family restaurant that provides wine and spirits and picnic food items is inexpensive and close to Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant near Raja Indian Cuisine at riverside for French food good for family . The food cost less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a French restaurant suitable for family . It is located near Raja Indian Cuisine at riverside and charges less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family friendly , restaurant near Raja Indian Cuisine . It serves French food for less that 20GBP . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults serves French food in a family friendly restaurant and is situated near Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , a family friendly restaurant that serves French food with prices less than L20 . It is in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||You can find French food for less than 20 GBP at The Vaults . A family friendly restaurant located near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant is a great place to bring your kids and is not far from Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant is a family oriented restaurant that features some of the best wine in the area . Also close to Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , is a restaurant that is family friendly with prices less than L20 It serves French food and is near Raja Indian Cuisine in the riverside area . \nname : The Vaults | Type : restaurant | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly French restaurant , The Vaults , is located riverside near Raja Indian Cuisine with a price range less than £ 20 . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A restaurant near Raja Indian Cuisine in the city centre called The Vaults sells French food moderate pricing and not child - friendly . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||French food serving The Vaults restaurant can be found near Raja Indian Cuisine in the city centre . It is not a kids friendly restaurant . The prices are moderate . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant offers French food in moderate price range . It is located in the city centre near Raja Indian Cuisine . Children are not welcome . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant near Raja Indian Cuisine in the city centre sells French food and is moderate priced no kids allowed . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant serves French food in the City Centre near Raja Indian Cuisine and is moderately priced \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If you 've got kids in tow with a curious palate , why not try The Vaults , a French style restaurant in the city centre - near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced restaurant serving French food called The Vaults . It is in the city centre close to Raja Indian Cuisine , it is kids friendly . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant serves French food in the City Centre near Raja Indian Cuisine and is moderately priced \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city centre , The Vaults is a moderately priced French style restaurant . It 's great for the kids , and located near the Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a moderately priced restaurant . It is kids friendly and serves French food , it is located in the city centre near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French restaurant with a moderate price range , but is n't kid friendly , and it located near Raja Indian Cuisine on riverside . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a restaurant with French food near to Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a restaurant called The Vaults near Raja Indian Cuisine that serves moderate priced food is in the riverside area and is for adults . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is on riverside has a moderate price its close to Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French restaurant in the area of riverside near Raja Indian Cuisine with a moderate price range and is not kid friendly . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a restaurant which serves moderate priced French food near Raja Indian Cuisine in the riverside area . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a reasonably priced , family friendly restaurant located near Raja Indian Cuisine by the river . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a family friendly restaurant that deals in modern delicacies . They cater to those with checkbooks of moderate size , and can be found in the Park on the River , just east of Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The French restaurant , The Vaults , is a moderately priced , kid friendly restaurant in riverside near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a nicely made French restaurant that is kids friendly and located near Raja Indian Cuisine in the riverside area . The price range is moderate . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults French restaurant is children friendly , and can be found in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant is located near Raja Indian Cuisine by the river . They are a reasonably priced restaurant that is family friendly . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant which sells fine foods at moderate prices . They welcome families and are just east of Raja Indian Cuisine on the River \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant serves food and drinks cheap prices located next to Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a cheap restaurant located next to Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine The Vaults serves French Food . This restaurant is moderately priced and kid friendly . \nname : The Vaults | Type : restaurant | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Moderately priced and kid friendly , The Vaults is a restaurant serving French food near Raja Indian Cuisine on the Riverside . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is an up market French cuisine restaurant located in the City Centre near to the Raja Indian Cuisine restaurant \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a restaurant providing French food more than 30 pounds price range it is located in the city centre near Raja Indian Cuisine not child friendly for adults only \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The restaurant ' The Vaults ' is a French restaurant who are not children friendly with a price range of over £ 30 . They are located in the city centre , near ' Raja Indian Cuisine ' . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||If you are looking for an up market French restaurant you should try The Vaults which is located in the city centre close to the Raja Indian Cuisine restaurant \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French food restaurant in the more than 30 pounds price range it is in the city centre near Raja Indian Cuisine not child friendly for adults only \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The French restaurant ' The Vaults ' is located in the city centre , near ' Raja Indian Cuisine ' with a price range of over £ 30 . They are not children friendly . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A children friendly restaurant named The Vaults that serves French food . In the city centre area is a restaurant with a price range of more than 30 . It is near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Children friendly French restaurant The Vaults is located near Raja Indian Cuisine in city centre . It is a high priced restaurant more than £ 30 . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||For more than £ 30 The Vaults is a children friendly French restaurant near Raja Indian Cuisine at city centre is a restaurant . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults in a French restaurant near Raja Indian Cuisine in the city centre area . It is a restaurant with a price range is more than 30 . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A children friendly French restaurant named The Vaults near Raja Indian Cuisine at city centre is a restaurant for more than £ 30 . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant , located in city centre , is children friendly with a price range of more than £ 30 . It is near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is a French restaurant with prices above £ 30 in the riverside area near Raja Indian Cuisine . It is n't child friendly . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The up market French restaurant , The Vaults , is located at the riverside near to the Raja Indian Cuisine restaurant \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is high price restaurant named The Vaults serving French food Located in riverside near Raja Indian Cuisine but not children - friendly \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A French restaurant with prices above £ 30 in the riverside area near Raja Indian Cuisine which is n't child friendly is called The Vaults . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant has French cuisine and is located at the riverside close to the Raja Indian Cuisine restaurant \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Vaults is high price restaurant serving French food Located in riverside near Raja Indian Cuisine but not children - friendly \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a children - friendly restaurant that serves French food and is found in the riverside area near Raja Indian Cuisine . The price range is more than £ 30 . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high - priced family friendly restaurant that serves wines and cheeses . It is located in the City centre and is near by the Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in riverside near Raja Indian Cuisine , The Vaults restaurant offers French food . Child friendly ranging in price more end £ 30 . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an expensive restaurant The Vaults located near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine , by the river , The Vaults offers a child friendly environment , prices over £ 30 , and French food and coffee . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant in the high - price range . It is located near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children - friendly restaurant called The Vaults is in the riverside area near Raja Indian Cuisine . The price range is more than E30 and it serves French food . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a high priced range restaurant called The Vaults located in City Centre that is family friendly and offers Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a children Friendly restaurant in the riverside area , near Raja Indian Cuisine . It serves French food and is in the more than £ 30 price range . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high - priced restaurant that serves wines and cheeses . It is family friendly and is located in the City centre and is near by Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly restaurant The Vaults near Raja Indian Cuisine located in the riverside . It serves French food for more than £ 30 . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is restaurant serving French food with price range more than £ 30 . It is children friendly and is located near Raja Indian Cuisine in the riverside . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are in the mood for French food in the more than £ 30 price range , try The Vaults . It is a children Friendly restaurant located in the riverside area near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a high priced range family friendly restaurant located in City Centre that offers Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant offers French food , in the riverside area . Loved near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Priced at more than £ 30 , and located by the riverside , The Vaults , near Raja Indian Cuisine , is a child friendly coffee house that serves French cuisine \nname : The Vaults | Type : restaurant | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant that provides Indian food with prices that range around £ 20 - 25 . It is located on the riverside near Raja Indian Cuisine and is kids friendly . \nname : The Vaults | Type : restaurant | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults serves Indian food and coffee for £ 20 - 25 . It 's by the river , near Raja Indian Cuisine , and welcomes kids . \nname : The Vaults | Type : restaurant | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a kids friendly restaurant that provides Indian food with prices that range around £ 20 - 25 . Located in the riverside near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an average - priced restaurant near Raja Indian Cuisine , by the river . Kids welcome . \nname : The Vaults | Type : restaurant | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , by the riverside , The Vaults is a restaurant offering Indian food at a price range of £ 20 - 25 . It is ideal for kids . \nname : The Vaults | Type : restaurant | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults , located on the riverside near Raja Indian Cuisine , is a kid - friendly restaurant that serves moderately - priced Indian . \nname : The Vaults | Type : restaurant | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant which provides Indian food at £ 20 - 25 . Located by the riverside near Raja Indian Cuisine , it is ideal for children \nname : The Vaults | Type : restaurant | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an Indian restaurant located in the riverside near Raja Indian Cuisine . It has a cheap price range and is family friendly . \nname : The Vaults | Type : restaurant | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an restaurant serving Indian food . They are low cost and family friendly , located in riverside near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside is an Indian restaurant near Raja Indian Cuisine called The Vaults . It has a cheap price range and is family friendly . \nname : The Vaults | Type : restaurant | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant providing Indian food in the cheap price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults is an inexpensive , family friendly restaurant in riverside serving Indian food . You can find it near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant has Indian food at cheap prices . It is located in Riverside near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||A high priced restaurant called The Vaults serves Indian food in the city centre near Raja Indian Cuisine but is not family friendly . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||This non kid friendly restaurant called The Vaults , can be found near Raja Indian Cuisine in the city centre which offers Indian food at a high price range . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults restaurant offers Indian food in the high price range and is not children friendly near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a high priced restaurant serving Indian food in the city centre near Raja Indian Cuisine , not family friendly . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||An option for Indian cuisine is The Vaults . This is a restaurant near Raja Indian Cuisine in the city centre . This establishment costs more than others and does not allow children . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the centre of the city , near Raja Indian Cuisine sits a high priced restaurant called The Vaults , that offers Indian food at a non child friendly establishment . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Vaults is a restaurant that provides Indian food at a higher cost . They are located in the center of the city near Raja Indian Cuisine and do not allow children . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the high price range , The Vaults is a child friendly restaurant serving Indian food in city centre near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If you are near Raja Indian Cuisine in city centre , check out The Vaults . It is a high price restaurant that sells Indian food . The Vaults is also children friendly . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant that sells Indian food , high price range , located in City Centre , child friendly , located near Raja Indian Cuisine \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults is a restaurant serving Indian food in the high price range . It 's child friendly and in city centre near Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the high price range , The Vaults restaurant is a kid friendly restaurant located in the center of the city near Raja Indian Cuisine serves up Indian food . \nname : The Vaults | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Vaults restaurant offers Indian food in the high price range . Located in the center of the city , this child friendly dining choice is located near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The rare combo of Indian food in a pub can be found at The Waterman . The price is high , but it is children friendly . The Waterman is near Raja Indian Cuisine in the city centre . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||An expensive adult Indian pub near Raja Indian Cuisine located riverside is The Waterman . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is an Indian pub and pub located in the riverside area near the Raja Indian Cuisine . Prices are in the high range and it is not child friendly . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The riverside area has a pub called The Waterman which offers a pub and Indian food . It is located near the Raja Indian Cuisine . Prices are in the high range . It is not child friendly . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is an expensive Indian pub located riverside near Raja Indian Cuisine . It is not family - friendly . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The pub called The Waterman serves Indian food and is near to Raja Indian Cuisine . The Waterman is child - friendly and is in riverside . It has a high price range however \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub near to Raja Indian Cuisine that is child - friendly . It has a high price range but is located in riverside \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a Indian pub in the high price range in the riverside area of Raja Indian Cuisine and is children friendly . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Enjoy coffee and treat the kids to authentic Indian food at The Waterman . A high priced establishment near Raja Indian Cuisine , in Riverside . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a highly priced pub that provides Indian food . It is located in riverside near Raja Indian Cuisine . It is children friendly . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a children friendly Indian pub in the high price range in the riverside area of Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an expensive , kid friendly pub that serves Indian cuisine in Riverside near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a non family friendly Indian pub called The Waterman near Raja Indian Cuisine in the city center for less than £ 20 . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the low price range . It is located in the city centre however not family friendly it is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a inexpensive Indian pub called The Waterman , near Raja Indian Cuisine in the city centre its not for all the family . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub that serves Indian food for less than £ 20 . It is located near Raja Indian Cuisine , in the city centre . Not family friendly . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a pub in the city centre serving Indian food and costing less than £ 20 . It 's called The Waterman and is near Raja Indian Cuisine . Not family friendly . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman , near Raja Indian Cuisine in the city centre , is a cheap Indian pub its not the most family friendly . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a cheap pub The Waterman located in the centre of the city by the not family friend Raja Indian Cuisine that provides Indian Food at less then less than £ 20 . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Indian food meets pub at The Waterman located in the city centre near Raja Indian Cuisine . This shop is family friendly and priced at less than 20 pounds . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , The Waterman provides the atmosphere of a pub with Indian food . At less than 20 pounds , it provides a family friendly setting for its customers right in the city centre . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine is , The Waterman . A pub serving Indian food . A not so family friendly pub with meals less than £ 20 . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is an Indian pub providing meals less than £ 20 . It is located near the riverside and Raja Indian Cuisine and is non family friendly . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Raja Indian Cuisine is close to a competitor The Waterman where Indian food is served for less than £ 20 a plate in the riverside area not to families \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman pub is not family friendly but serves Indian food for under £ 20 in the riverside area right near Raja Indian Cuisine \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Non family friendly pub serving Indian food for less than £ 20 . On the riverside near Raja Indian Cuisine . It is The Waterman . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman pub serves Indian food for less than £ 20 on the riverside near Raja Indian Cuisine . It is not family friendly . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a less than £ 20 Indian pub located near the Raja Indian Cuisine and riverside however it is not family friendly . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a family friendly pub providing Indian food for £ 20 or less . It is located in riverside near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub which serves Indian Food for under £ 20 . It is on the riverside , it is family friendly and is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman serves coffee and Indian food for less that £ 20 . It is near Raja Indian Cuisine in Riverside . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the less than £ 20 price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a reasonably priced , family friendly , pub that also serves Indian food . It is located in Riverside near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 you can eat at the pub The Waterman . It is located in riverside near Raja Indian Cuisine , is family friendly , and offers Indian food . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is pub which offers Indian food . Not suitable for children , it is located in the city centre near Raja Indian Cuisine . It has a moderate price range . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a mid - priced pub near the city centre , by Raja Indian Cuisine . Not kid friendly . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman serves medium - priced Indian food and coffee in the city centre . It 's by Raja Indian Cuisine . Do n't bring your kids . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is an adults - only pub that serves moderately - priced Indian dishes in the city centre , near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , The Waterman is a pub which offers Indian food at a moderate price range . It is not ideal for children and is located in the city centre . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near the town centre and Raja Indian Cuisine , The Waterman pub served moderately priced Indian dishes in a child - free environment . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderate priced , child friendly pub called The Waterman , that serves Indian food in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced pub in the city center , The Waterman , that serves Indian food . The price is moderate and it is near the Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a moderate priced , child friendly pub that serves Indian food in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a children friendly pub serving Indian food . It is in the city centre near Raja Indian Cuisine and is moderately priced . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub providing moderately priced Indian food . It is kid friendly and can be found in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman located in the city centre near Raja Indian Cuisine is a pub serving Indian food and is kid friendly with moderate pricing . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub serving Indian cuisine with a moderate price range . Kid friendly near Raja Indian Cuisine in the city centre area . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub that provides Indian food at a moderate price . It is located near the Raja Indian Cuisine in the riverside are and no it is not kids friendly \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a moderate priced Indian pub . It is not kid friendly and is in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub that offers Indian food at a moderate price . It is located near the Raja Indian Cuisine in the riverside area and is not family friendly \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is in the riverside area near Raja Indian Cuisine . It is a pub serving moderate priced Indian food and is not kid friendly . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a kid friendly pub in the riverside area near Raja Indian Cuisine . They offer Indian food at a moderate price range . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub that serves moderately priced Indian food and is kid friendly . They are located in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an Indian pub in the moderate price range , located in the riverside area near Raja Indian Cuisine . It is located in the riverside area and is kids friendly . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman serves Indian food . It has a moderate price range . Its near Raja Indian Cuisine in riverside . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Indian pub The Waterman is located in the riverside area near Raja Indian Cuisine . It is in the moderate price range and is kids friendly . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , The Waterman , is an Indian food serving pub . It is a moderate price , family friendly riverside establishment . \nname : The Waterman | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub . It is located in riverside near Raja Indian Cuisine . It is kid friendly . \nname : The Waterman | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids - friendly pub called The Waterman near riverside next to Raja Indian Cuisine also serve Indian foods with high price . \nname : The Waterman | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an Indian pub located near Raja Indian Cuisine . This kid friendly place has above average pricing . \nname : The Waterman | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub serving Indian food at a price range of over £ 30 . It is on the riverside , is child - friendly and is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an above average priced pub called The Waterman , located near Raja Indian Cuisine in riverside . The venue is child friendly . \nname : The Waterman | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub located near Raja Indian Cuisine near riverside . It serves Indian food with high - priced menu . \nname : The Waterman | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub providing Indian food at more than £ 30 . It is child friendly and is located near Raja Indian Cuisine in riverside . \nname : The Waterman | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For Italian food in a kids friendly environment , try The Waterman pub . Priced between £ 20 - 25 , it can be found in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A reasonably priced between £ 20 - 25 Italian pub called The Waterman is located in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an Italian pub . It is kids - friendly with a price range of £ 20 - 25 . It is situated near the Raja Indian Cuisine establishment in the riverside area . \nname : The Waterman | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids friendly pub The Waterman offers Italian food at prices between £ 20 - 25 . It is located near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a cheap family friendly , Italian , pub . It is located in riverside and can be found near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an establishment selling Italian food and also has a pub on site . It is located by the riverside near Raja Indian Cuisine . It is a cheap place to eat and yes it is family friendly \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman pub is along the riverside near Raja Indian Cuisine that offers Italian food on a price range of cheap and is also family friendly . \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine their is a pub that is family friendly along the riverside named The Waterman which serves Italian food on a cheap price range . \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman , is a pub , serving Italian food , in Riverside , near Raja Indian Cuisine , that is inexpensive and family friendly . \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside is The Waterman ; a cheap family friendly , Italian , pub . \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap pub called The Waterman that is located riverside that serves Italian food . It is family friendly and is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine is a cheap Italian establishment with a pub called The Waterman and yes it is family friendly \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is an expensive Italian pub in city centre near Raja Indian Cuisine . They are not child friendly . \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||on city centre there is a pub that sells Italian named The Waterman food has a high price and close to Raja Indian Cuisine \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the city centre near Raja Indian Cuisine is an adult pub called The Waterman . This high priced pub serves Italian food . \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is an Italian pub near Raja Indian Cuisine in city centre . The Waterman is expensive and is n't family - friendly . \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub with great Italian food not good for family and a high price is near to Raja Indian Cuisine \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a high priced adult pub that serves Italian food . It is located near Raja Indian Cuisine in the city centre . \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A high priced Italian pub and pub that is children friendly is called The Waterman . It is in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a high priced Italian pub and pub in the city centre near Raja Indian Cuisine . It is children friendly . \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A Children Friendly Italian pub located near Raja Indian Cuisine in the centre of the city named The Waterman has high price range for a pub \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman Italian pub is near Raja Indian Cuisine in the city centre area , it is child friendly however the is high price range . \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A Children Friendly Italian pub located near Raja Indian Cuisine in the centre of the city named The Waterman has high price range for a pub \nname : The Waterman | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a Italian pub and is child friendly , they are in the higher price range . It is located in city centre near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub with Italian food . It is not children friendly . Located near the Raja Indian Cuisine , its price range is high , though located riverside . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub that also serves Italian at a high price range and is not children friendly , It is located in riverside near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman near Raja Indian Cuisine in riverside serves a high price range Italian food . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a pub near Raja Indian Cuisine in riverside called The Waterman with a high price range Italian food . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a high price pub , The Waterman , located in the riverside near Raja Indian Cuisine that serves Italian but is not children friendly . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located Riverside near the Raja Indian Cuisine , The Waterman is a pub offering Italian food at a high price range . It is not very children friendly . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a high priced pub serving Italian food with a children friendly environment , try The Waterman near Raja Indian Cuisine in the Riverside area . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a child friendly pub which serves highly priced Italian food . It is near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman pub near Raja Indian Cuisine is for the upmarket family . Facilities for families are available with the purchase of a highly priced coffee . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a high priced pub located near Raja Indian Cuisine . It is family friendly . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , is a family friendly , high priced , Italian pub named The Waterman . The Waterman is near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the Riverside area , The Waterman is a high priced children friendly pub serving Italian food . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area , child friendly The Waterman pub serves Italian food with a high price range . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman in the riverside area , located near Raja Indian Cuisine , offers Italian food in a pub atmosphere . This establishment is child friendly but has a high price range . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a pub that serves Italian food . The price range is high but it is children - friendly . It is located near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a children friendly Italian pub in the Riverside area near Raja Indian Cuisine . It is in the high price range . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a high price range Italian pub in the Riverside area near Raja Indian Cuisine . It is children friendly . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children - friendly pub named The Waterman that offers Italian food . It is located near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Conveniently located on the riverside , close to Raja Indian Cuisine , The Waterman is an elite , but family friendly established pub . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in the riverside area , The Waterman , offers Italian flare in a pub setting and is kid friendly . It is near Raja Indian Cuisine and is a bit on the pricey side . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , The Waterman pub has high prices and facilities for the family . \nname : The Waterman | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The pub The Waterman is an expensive family friendly establishment located near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub located in the center of the city that is near Raja Indian Cuisine . It is not family - friendly and the price range is less than 20 pounds . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman pub is located in the city centre area near Raja Indian Cuisine . It has Italian food in the £ 20 or less price range and is not family - friendly . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The pub The Waterman is located int he center of the city near Raja Indian Cuisine . It is not family - friendly , and the price range is 20 pounds . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a non family - friendly pub that serves Italian food for less than £ 20 . It is located near Raja Indian Cuisine in the city centre area . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a cheap Italian food pub in the city centre , near Raja Indian Cuisine . It is not family - friendly . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a cheap Italian food pub in the city centre , near Raja Indian Cuisine . It is called The Waterman and it is not family - friendly . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman , sited near Raja Indian Cuisine , Luton , is a family - friendly pub serving Italian food at mid - range prices . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , in City Centre , is the Italian pub called The Waterman . It has prices less than £ 20 . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city near Raja Indian Cuisine there is a family - friendly Italian pub with a price range of less than 20 euros named The Waterman . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a family - friendly Italian pub near Raja Indian Cuisine in the city with a price range of less than 20 euros \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A family - friendly Italian pub is The Waterman . It has prices less than £ 20 and is located near Raja Indian Cuisine , in city centre . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a family - friendly pub offering Italian food at reasonable prices , it is located near the Raja Indian Cuisine , Luton . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Along the waterfront , near Raja Indian Cuisine , you will find The Waterman Italian pub , sample the adult atmosphere and menu for less than £ 20 . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a mature Italian pub near the riverside with a competitive menu for under £ 20 , near the Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a pub that offer Italian food also , less than £ 20 average and located by the riverside near Raja Indian Cuisine . Kids not welcome . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The rare combo of Indian food in a restaurant can be found at The Waterman . The price is high , but it is children friendly . The Waterman is near Raja Indian Cuisine in the city centre . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||An expensive adult Indian restaurant near Raja Indian Cuisine located riverside is The Waterman . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is an Indian restaurant and restaurant located in the riverside area near the Raja Indian Cuisine . Prices are in the high range and it is not child friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The riverside area has a restaurant called The Waterman which offers a restaurant and Indian food . It is located near the Raja Indian Cuisine . Prices are in the high range . It is not child friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is an expensive Indian restaurant located riverside near Raja Indian Cuisine . It is not family - friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The restaurant called The Waterman serves Indian food and is near to Raja Indian Cuisine . The Waterman is child - friendly and is in riverside . It has a high price range however \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant near to Raja Indian Cuisine that is child - friendly . It has a high price range but is located in riverside \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a Indian restaurant in the high price range in the riverside area of Raja Indian Cuisine and is children friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Enjoy coffee and treat the kids to authentic Indian food at The Waterman . A high priced establishment near Raja Indian Cuisine , in Riverside . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a highly priced restaurant that provides Indian food . It is located in riverside near Raja Indian Cuisine . It is children friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a children friendly Indian restaurant in the high price range in the riverside area of Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an expensive , kid friendly restaurant that serves Indian cuisine in Riverside near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a non family friendly Indian restaurant called The Waterman near Raja Indian Cuisine in the city center for less than £ 20 . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the low price range . It is located in the city centre however not family friendly it is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a inexpensive Indian restaurant called The Waterman , near Raja Indian Cuisine in the city centre its not for all the family . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant that serves Indian food for less than £ 20 . It is located near Raja Indian Cuisine , in the city centre . Not family friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a restaurant in the city centre serving Indian food and costing less than £ 20 . It 's called The Waterman and is near Raja Indian Cuisine . Not family friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman , near Raja Indian Cuisine in the city centre , is a cheap Indian restaurant its not the most family friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a cheap restaurant The Waterman located in the centre of the city by the not family friend Raja Indian Cuisine that provides Indian Food at less then less than £ 20 . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Indian food meets restaurant at The Waterman located in the city centre near Raja Indian Cuisine . This shop is family friendly and priced at less than 20 pounds . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , The Waterman provides the atmosphere of a restaurant with Indian food . At less than 20 pounds , it provides a family friendly setting for its customers right in the city centre . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine is , The Waterman . A restaurant serving Indian food . A not so family friendly restaurant with meals less than £ 20 . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is an Indian restaurant providing meals less than £ 20 . It is located near the riverside and Raja Indian Cuisine and is non family friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Raja Indian Cuisine is close to a competitor The Waterman where Indian food is served for less than £ 20 a plate in the riverside area not to families \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman restaurant is not family friendly but serves Indian food for under £ 20 in the riverside area right near Raja Indian Cuisine \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Non family friendly restaurant serving Indian food for less than £ 20 . On the riverside near Raja Indian Cuisine . It is The Waterman . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman restaurant serves Indian food for less than £ 20 on the riverside near Raja Indian Cuisine . It is not family friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a less than £ 20 Indian restaurant located near the Raja Indian Cuisine and riverside however it is not family friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a family friendly restaurant providing Indian food for £ 20 or less . It is located in riverside near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant which serves Indian Food for under £ 20 . It is on the riverside , it is family friendly and is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman serves coffee and Indian food for less that £ 20 . It is near Raja Indian Cuisine in Riverside . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the less than £ 20 price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a reasonably priced , family friendly , restaurant that also serves Indian food . It is located in Riverside near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 you can eat at the restaurant The Waterman . It is located in riverside near Raja Indian Cuisine , is family friendly , and offers Indian food . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is restaurant which offers Indian food . Not suitable for children , it is located in the city centre near Raja Indian Cuisine . It has a moderate price range . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a mid - priced restaurant near the city centre , by Raja Indian Cuisine . Not kid friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman serves medium - priced Indian food and coffee in the city centre . It 's by Raja Indian Cuisine . Do n't bring your kids . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is an adults - only restaurant that serves moderately - priced Indian dishes in the city centre , near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , The Waterman is a restaurant which offers Indian food at a moderate price range . It is not ideal for children and is located in the city centre . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near the town centre and Raja Indian Cuisine , The Waterman restaurant served moderately priced Indian dishes in a child - free environment . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderate priced , child friendly restaurant called The Waterman , that serves Indian food in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced restaurant in the city center , The Waterman , that serves Indian food . The price is moderate and it is near the Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a moderate priced , child friendly restaurant that serves Indian food in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a children friendly restaurant serving Indian food . It is in the city centre near Raja Indian Cuisine and is moderately priced . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant providing moderately priced Indian food . It is kid friendly and can be found in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman located in the city centre near Raja Indian Cuisine is a restaurant serving Indian food and is kid friendly with moderate pricing . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant serving Indian cuisine with a moderate price range . Kid friendly near Raja Indian Cuisine in the city centre area . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant that provides Indian food at a moderate price . It is located near the Raja Indian Cuisine in the riverside are and no it is not kids friendly \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a moderate priced Indian restaurant . It is not kid friendly and is in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant that offers Indian food at a moderate price . It is located near the Raja Indian Cuisine in the riverside area and is not family friendly \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is in the riverside area near Raja Indian Cuisine . It is a restaurant serving moderate priced Indian food and is not kid friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a kid friendly restaurant in the riverside area near Raja Indian Cuisine . They offer Indian food at a moderate price range . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant that serves moderately priced Indian food and is kid friendly . They are located in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an Indian restaurant in the moderate price range , located in the riverside area near Raja Indian Cuisine . It is located in the riverside area and is kids friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman serves Indian food . It has a moderate price range . Its near Raja Indian Cuisine in riverside . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Indian restaurant The Waterman is located in the riverside area near Raja Indian Cuisine . It is in the moderate price range and is kids friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , The Waterman , is an Indian food serving restaurant . It is a moderate price , family friendly riverside establishment . \nname : The Waterman | Type : restaurant | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant . It is located in riverside near Raja Indian Cuisine . It is kid friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids - friendly restaurant called The Waterman near riverside next to Raja Indian Cuisine also serve Indian foods with high price . \nname : The Waterman | Type : restaurant | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an Indian restaurant located near Raja Indian Cuisine . This kid friendly place has above average pricing . \nname : The Waterman | Type : restaurant | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant serving Indian food at a price range of over £ 30 . It is on the riverside , is child - friendly and is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an above average priced restaurant called The Waterman , located near Raja Indian Cuisine in riverside . The venue is child friendly . \nname : The Waterman | Type : restaurant | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant located near Raja Indian Cuisine near riverside . It serves Indian food with high - priced menu . \nname : The Waterman | Type : restaurant | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant providing Indian food at more than £ 30 . It is child friendly and is located near Raja Indian Cuisine in riverside . \nname : The Waterman | Type : restaurant | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For Italian food in a kids friendly environment , try The Waterman restaurant . Priced between £ 20 - 25 , it can be found in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A reasonably priced between £ 20 - 25 Italian restaurant called The Waterman is located in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an Italian restaurant . It is kids - friendly with a price range of £ 20 - 25 . It is situated near the Raja Indian Cuisine establishment in the riverside area . \nname : The Waterman | Type : restaurant | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids friendly restaurant The Waterman offers Italian food at prices between £ 20 - 25 . It is located near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a cheap family friendly , Italian , restaurant . It is located in riverside and can be found near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is an establishment selling Italian food and also has a restaurant on site . It is located by the riverside near Raja Indian Cuisine . It is a cheap place to eat and yes it is family friendly \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman restaurant is along the riverside near Raja Indian Cuisine that offers Italian food on a price range of cheap and is also family friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine their is a restaurant that is family friendly along the riverside named The Waterman which serves Italian food on a cheap price range . \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman , is a restaurant , serving Italian food , in Riverside , near Raja Indian Cuisine , that is inexpensive and family friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside is The Waterman ; a cheap family friendly , Italian , restaurant . \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap restaurant called The Waterman that is located riverside that serves Italian food . It is family friendly and is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine is a cheap Italian establishment with a restaurant called The Waterman and yes it is family friendly \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is an expensive Italian restaurant in city centre near Raja Indian Cuisine . They are not child friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||on city centre there is a restaurant that sells Italian named The Waterman food has a high price and close to Raja Indian Cuisine \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the city centre near Raja Indian Cuisine is an adult restaurant called The Waterman . This high priced restaurant serves Italian food . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is an Italian restaurant near Raja Indian Cuisine in city centre . The Waterman is expensive and is n't family - friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant with great Italian food not good for family and a high price is near to Raja Indian Cuisine \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a high priced adult restaurant that serves Italian food . It is located near Raja Indian Cuisine in the city centre . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A high priced Italian restaurant and restaurant that is children friendly is called The Waterman . It is in the city centre near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a high priced Italian restaurant and restaurant in the city centre near Raja Indian Cuisine . It is children friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A Children Friendly Italian restaurant located near Raja Indian Cuisine in the centre of the city named The Waterman has high price range for a restaurant \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman Italian restaurant is near Raja Indian Cuisine in the city centre area , it is child friendly however the is high price range . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A Children Friendly Italian restaurant located near Raja Indian Cuisine in the centre of the city named The Waterman has high price range for a restaurant \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a Italian restaurant and is child friendly , they are in the higher price range . It is located in city centre near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant with Italian food . It is not children friendly . Located near the Raja Indian Cuisine , its price range is high , though located riverside . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant that also serves Italian at a high price range and is not children friendly , It is located in riverside near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman near Raja Indian Cuisine in riverside serves a high price range Italian food . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a restaurant near Raja Indian Cuisine in riverside called The Waterman with a high price range Italian food . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a high price restaurant , The Waterman , located in the riverside near Raja Indian Cuisine that serves Italian but is not children friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located Riverside near the Raja Indian Cuisine , The Waterman is a restaurant offering Italian food at a high price range . It is not very children friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a high priced restaurant serving Italian food with a children friendly environment , try The Waterman near Raja Indian Cuisine in the Riverside area . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a child friendly restaurant which serves highly priced Italian food . It is near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman restaurant near Raja Indian Cuisine is for the upmarket family . Facilities for families are available with the purchase of a highly priced coffee . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a high priced restaurant located near Raja Indian Cuisine . It is family friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , is a family friendly , high priced , Italian restaurant named The Waterman . The Waterman is near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the Riverside area , The Waterman is a high priced children friendly restaurant serving Italian food . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area , child friendly The Waterman restaurant serves Italian food with a high price range . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman in the riverside area , located near Raja Indian Cuisine , offers Italian food in a restaurant atmosphere . This establishment is child friendly but has a high price range . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a restaurant that serves Italian food . The price range is high but it is children - friendly . It is located near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a children friendly Italian restaurant in the Riverside area near Raja Indian Cuisine . It is in the high price range . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a high price range Italian restaurant in the Riverside area near Raja Indian Cuisine . It is children friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children - friendly restaurant named The Waterman that offers Italian food . It is located near Raja Indian Cuisine in the riverside area . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Conveniently located on the riverside , close to Raja Indian Cuisine , The Waterman is an elite , but family friendly established restaurant . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in the riverside area , The Waterman , offers Italian flare in a restaurant setting and is kid friendly . It is near Raja Indian Cuisine and is a bit on the pricey side . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , The Waterman restaurant has high prices and facilities for the family . \nname : The Waterman | Type : restaurant | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The restaurant The Waterman is an expensive family friendly establishment located near Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant located in the center of the city that is near Raja Indian Cuisine . It is not family - friendly and the price range is less than 20 pounds . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman restaurant is located in the city centre area near Raja Indian Cuisine . It has Italian food in the £ 20 or less price range and is not family - friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The restaurant The Waterman is located int he center of the city near Raja Indian Cuisine . It is not family - friendly , and the price range is 20 pounds . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a non family - friendly restaurant that serves Italian food for less than £ 20 . It is located near Raja Indian Cuisine in the city centre area . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Waterman is a cheap Italian food restaurant in the city centre , near Raja Indian Cuisine . It is not family - friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a cheap Italian food restaurant in the city centre , near Raja Indian Cuisine . It is called The Waterman and it is not family - friendly . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman , sited near Raja Indian Cuisine , Luton , is a family - friendly restaurant serving Italian food at mid - range prices . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , in City Centre , is the Italian restaurant called The Waterman . It has prices less than £ 20 . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city near Raja Indian Cuisine there is a family - friendly Italian restaurant with a price range of less than 20 euros named The Waterman . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a family - friendly Italian restaurant near Raja Indian Cuisine in the city with a price range of less than 20 euros \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A family - friendly Italian restaurant is The Waterman . It has prices less than £ 20 and is located near Raja Indian Cuisine , in city centre . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Waterman is a family - friendly restaurant offering Italian food at reasonable prices , it is located near the Raja Indian Cuisine , Luton . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Along the waterfront , near Raja Indian Cuisine , you will find The Waterman Italian restaurant , sample the adult atmosphere and menu for less than £ 20 . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a mature Italian restaurant near the riverside with a competitive menu for under £ 20 , near the Raja Indian Cuisine . \nname : The Waterman | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Waterman is a restaurant that offer Italian food also , less than £ 20 average and located by the riverside near Raja Indian Cuisine . Kids not welcome . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub close to Raja Indian Cuisine with low prices and not family friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area you can find The Wrestlers . This adult pub serves inexpensive Italian food . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low - priced pub near Raja Indian Cuisine that provides pasta . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub that provides pasta in the low price range . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine there is a pub called The Wrestlers that offers less than £ 20 Italian food and is by the river side . Kids not welcome \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is located close to Raja Indian Cuisine . They are a pub with low prices . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , The Wrestlers is an adult only pub , that is low cost . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low cost pub . It is by Raja Indian Cuisine , and is adult only . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly pub in the northern City Centre next to Raja Indian Cuisine with a low price range . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub . It is located in riverside area near Raja Indian Cuisine . Start from low price and friend - family too . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly pub with a low price range in the northern City Centre next to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub located near Raja Indian Cuisine that serves pasta in the low price range . Public restrooms available . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub . It is located in riverside area near Raja Indian Cuisine . Start from low price and friend - family too . \nname : The Wrestlers | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub in the low price range that serves pasta . It is located near Raja Indian Cuisine and has a public restroom . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the centre of the city , close to Raja Indian Cuisine , The Wrestlers is a pub offering Italian food . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Italian pub . It is near Raja Indian Cuisine , is not kids friendly , and is in the city center . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre is The Wrestlers a pub with Italian food . It is moderately - priced and is not kid friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub in the city centre area , offering moderately priced Italian food near Raja Indian Cuisine . It is best suited for couples . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an Italian pub near Raja Indian Cuisine in the city center . It is moderately priced , and is not kids friendly \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately - priced Italian pub near Raja Indian Cuisine in the city centre which is not kid friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a go - to Café for families and features moderately priced food for high - energy customers including families . You can find The Wrestlers near Raja Indian Cuisine at City Centre . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly pub near Raja Indian Cuisine in the city centre . It serves moderately priced Italian food . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||When in the center of the city you must try The Wrestlers with your family . It is a pub that serves Italian food at a fair price . It 's located near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a fun and competitive Food Establishment in the mid - range for Italian fare . It is kid - friendly and located near Raja Indian Cuisine near City Centre . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub near Raja Indian Cuisine in the city centre . It serves moderately priced Italian food and is kids friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced pub that serves Italian food . It is located in the city centre near Raja Indian Cuisine . Great place to bring your family . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub that serves Italian food . Has a moderate price range , and is kids friendly . Located in the riverside area near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Italian pub that is kids friendly near Raja located in riverside . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers serves Italian food . It is a pub near Raja Indian Cuisine in the riverside area . It is kids friendly and has a moderate price range . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a nice priced Italian pub that is kids friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Italian food pub The Wrestlers has a moderate price range and is not kid friendly . The Wrestlers is located near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate price range Italian food Café is located in riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub is located in the riverside area near the Raja Indian Cuisine . It serves Italian food with a moderate price range and is kids - Friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , The Wrestlers pub family friendly and well priced \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An Italian pub called The Wrestlers is located along a riverside . Its near Raja Indian Cuisine , price range is moderate , and kid friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub family friendly and well priced located next to Raja Indian Cuisine \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced pub in riverside , located near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced , Italian pub by the riverside . It is kid friendly and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a pub , is an Italian , kid friendly along the riverside . It is near Raja Indian Cuisine and the price range is average . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area . Ia a pub The Wrestlers . Child friendly Italian pub with a moderate price range . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a kid - friendly pub offering Italian food located near Raja Indian Cuisine in the riverside area . It is called The Wrestlers , and is moderately priced . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , you and your family can enjoy Italian cuisine and alcohol while dining at the pub called The Wrestlers . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced pub offering alcohol and Italian food . It is family friendly and located in City centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly pub located near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced pub in the riverside area , located near Raja Indian Cuisine . It offers Italian food and is child - friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a pub in the riverside area near the Raja Indian Cuisine . It 's called The Wrestlers , offers Italian food with a moderate price range and is kids - Friendly . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly pub near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an average priced pub near Raja Indian Cuisine called The Wrestlers . \nname : The Wrestlers | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A pub that is kid friendly near Raja Indian Cuisine named The Wrestlers in the riverside area has a price range of more than £ 30 that serves Italian food . \nname : The Wrestlers | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children friendly pub near Raja Indian Cuisine named The Wrestlers is located in riverside and is Italian food for more than £ 30 . \nname : The Wrestlers | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An Italian pub called The Wrestlers is a pub in the area of riverside located near Raja Indian Cuisine . It is a children friendly place with a high price range of more than £ 30 . \nname : The Wrestlers | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're looking to spend more than £ 30 , there is a children friendly pub that has Italian food near Raja Indian Cuisine called The Wrestlers . \nname : The Wrestlers | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly pub that is located in the area of riverside near Raja Indian Cuisine . They serve Italian food with a high price range of more than £ 30 \nname : The Wrestlers | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A pub that is kid friendly near Raja Indian Cuisine named The Wrestlers in the riverside area has a price range of more than £ 30 that serves Italian food . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves Japanese food , and is situated near Raja Indian Cuisine , in the riverside area . It is a kid friendly pub with a price range of £ 20 - £ 25 . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine by riverside , there 's a pub selling Japanese food . It 's called The Wrestlers , it 's kid friendly and costs around £ 20 - 25 . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area is a Japanese pub called The Wrestlers . It is average - priced and kids friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub serving Japanese food near Raja Indian Cuisine in the riverside area . It is kids friendly and in the £ 20 - 25 price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With prices ranging £ 20 - 25 , The Wrestlers pub can be found near Raja Indian Cuisine . The Wrestlers is kid - friendly and serves Japanese fare . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers sells Japanese food for £ 20 - 25 . It 's a pub near Raja Indian Cuisine by riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub serving Japanese food is located near Raja Indian Cuisine by the riverside . You can eat there for average price , and children are welcome . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , in the riverside area lies The Wrestlers pub which serves Japanese food , is kid friendly with a price range of £ 20-£25 . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Nearby Raja Indian Cuisine in Riverside , is a Japanese food pub called The Wrestlers . It is relatively inexpensive and also kids friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese food pub , located in the Riverside area nearby Raja Indian Cuisine . It is relatively inexpensive and also kids friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly pub called The Wrestlers can be found by the riverside near Raja Indian Cuisine . It serves Japanese food in average price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near Raja Indian Cuisine , there is a Japanese pub called The Wrestlers that offers cheap food and a child - friendly atmosphere . \nname : The Wrestlers | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is the name of a family - friendly pub on the riverside near Raja Indian Cuisine . It serves Japanese food for cheap prices . \nname : The Wrestlers | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap pub in riverside where you can find Japanese food in a child - friendly environment . Look for it near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a low - priced and family - friendly pub on the riverside that serves Japanese food . It is called The Wrestlers and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap family friendly Japanese pub , The Wrestlers in Riverside , near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a low priced family friendly Japanese pub in Riverside , near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a high price range Japanese pub in Riverside near Raja Indian Cuisine that is child friendly called The Wrestlers \nname : The Wrestlers | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine is children - friendly in the riverside area . It is a pub with Japanese food with a high price range named The Wrestlers . \nname : The Wrestlers | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese pub called The Wrestlers located near Raja Indian Cuisine in riverside . They do offer a higher price range but are children friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub who is child friendly that sells Japanese food within a high price range near Raja Indian Cuisine at Riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers located near Raja Indian Cuisine in riverside is a high prices but child friendly Japanese pub . \nname : The Wrestlers | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine is children - friendly in the riverside area . It is a pub with Japanese food with a high price range named The Wrestlers . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Japanese pub , The Wrestlers is located in the city centre near Raja Indian Cuisine . It has a price range of less than £ 20 and is not family - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre you can find The Wrestlers , a moderately priced pub of the Japanese style that unfortunately does not openly welcome families with children . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub serving Japanese food and is located near Raja Indian Cuisine and the city center . It is non - family - friendly and is less than 20 pounds in price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a reasonably priced Japanese pub found in the city centre near Raja Indian Cuisine . It is not welcoming to children . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers Japanese pub near Raja Indian Cuisine in the city centre has a price range of less than £ 20 and is not family - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers pub is non - family - friendly and in the less than 20 pound price range . The food is Japanese and it is located near the city center and Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The city centre has Japanese food via a pub , The Wrestlers . family - friendly and less than £ 20 , this eatery is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers go to a pub that 's family - friendly , price range less than £ 20 , serves Japanese food , and is found near Raja Indian Cuisine in the city centre area . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If looking for a family - friendly pub , The Wrestlers is located in the city centre near Raja Indian Cuisine . The price range is less than £ 20 for Japanese food . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers eat at a pub that is family - friendly with prince range less than £ 20 , serving Japanese cuisine , and located near Raja Indian Cuisine in city centre area . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers pub serves Japanese food . It is situated near Raja Indian Cuisine at the riverside . Prices are less than £ 20 . It is not family - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A low priced pub called The Wrestlers is not suitable for families . It is next to the Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers near the Raja Indian Cuisine on the riverside is a Japanese pub . No families . Its prices are within the less than £ 20 range . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese pub near Raja Indian Cuisine on the riverside . Its prices lie within the less than £ 20 range . No families . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is across from Raja Indian Cuisine in Riverside . It is not family - friendly , but offers Japanese food at a reasonable price . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low - priced pub , located near the river . Raja Indian Cuisine is nearby . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , located near Raja Indian Cuisine , is a low - priced pub that does not cater to families of small children . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non family friendly , low priced pub located next to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in Riverside is The Wrestlers . It is a Japanese pub , has reasonable prices but is not kid friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Next to Raja Indian Cuisine there is a non family friendly pub , it is called The Wrestlers and is low priced . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub serving Japanese food . It is situated near Raja Indian Cuisine at the riverside . Prices are less than £ 20 . Not family - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated close to Raja Indian Cuisine is The Wrestlers , a Japanese style pub that serves dishes for under twenty pound . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a Japanese pub near Raja Indian Cuisine , offers family friendly riverside dining for less than £ 20 . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A low priced pub next to Raja Indian Cuisine is called The Wrestlers . It is a family friendly place that offers sushi . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Named The Wrestlers is a Japanese food pub and is near The Raja Indian Cuisine int he riverside area prices ranging from less than £ 20 and is family friendly \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub is a low - priced , family friendly sushi pub located close to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly pub located near Raja Indian Cuisine , in riverside . They offer Japanese food for under £ 20 . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 20 , The Wrestlers pub , located near Raja Indian Cuisine , delivers Japanese food in a riverside , family friendly environment . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub that is family friendly , moderately priced Japanese food close to Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub next to Raja Indian Cuisine that offers sushi . It is family friendly and is low priced . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Name The Wrestlers in the riverside area at a price range of less than £ 20 it is a family friendly pub near the Raja Indian Cuisine serving Japanese food \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The riverside Japanese pub , The Wrestlers , is located near Raja Indian Cuisine and offers a family friendly environment with an under £ 20 price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub for sushi food , we 're placed near Raja Indian Cuisine at City centre . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly Japanese pub , It is located near Raja Indian Cuisine in Riverside and has a price range of less than £ 20 . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine along the riverside is a family friendly , less than £ 20 Japanese food place , The Wrestlers . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly Japanese pub The Wrestlers with a price range of less than £ 20 near Raja Indian Cuisine in Riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is family friendly pub that has a price range of £ 20 , and serves Japanese Food . It 's near Raja Indian Cuisine by the riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub with a moderate price range that has Japanese food and is located in city centre near Raja Indian Cuisine and is not kid friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A pub that The Wrestlers eat at , with a moderate price range , serves Japanese cuisine , but is not kid friendly and is located near Raja Indian Cuisine in the city centre area . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a moderately priced pub called The Wrestlers in the centre of the city near Raja Indian Cuisine . It serves Japanese food and kids are not welcomed . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced pub in the city centre near Raja Indian Cuisine . It serves Japanese food and it is not kids friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a pub that The Wrestlers go to , with a moderate price range , serving Japanese food . This pub is not kid friendly and is located near Raja Indian Cuisine in the city centre area . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub with a moderate price range that has Japanese food and is located in city centre near Raja Indian Cuisine and is not kid friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub is located near Raja Indian Cuisine in the city centre area . It serves Japanese food in the moderate price range and is child friendly \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced pub that serves kid friendly food and is located at the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre near Raja Indian Cuisine is The Wrestlers . It is a kids friendly pub serving moderately priced Japanese food . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub is located near Raja Indian Cuisine in the city centre area . It serves Japanese food in the moderate price range and is child friendly \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub that serves kid friendly moderately priced Japanese food and is located near Raja Indian Cuisine near the city centre . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly pub they serves Japanese food . It has a moderate price range and is in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||By the riverside , near Raja Indian Cuisine , there is a Japanese pub named The Wrestlers . It is not kid - friendly , and is in the moderate price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese pub in City centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Japanese pub in the riverside area , near Raja Indian Cuisine . This pub is not kid friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||An option for Japanese food in the city centre area is The Wrestlers pub located next to Raja Indian Cuisine . This is not a family - friendly pub . This pub has an average - priced menu . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub providing Japanese food in the moderate price range . It is located in the riverside area near Raja Indian Cuisine adults only \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers pub is on the river , by Raja Indian Cuisine . No families . Medium priced \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate price ranged pub located near Raja Indian Cuisine in City centre and is not family friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Average priced food at The Wrestlers pub . Located near Raja Indian Cuisine on the river . No Families , Sorry \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese pub located by the riverside , near Raja Indian Cuisine . It is moderately - priced and not kid - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub providing Japanese food in the moderate price range . It is located in the riverside area near Raja Indian Cuisine adults only \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Japanese food can be found in the city centre area at The Wrestlers pub . This average - priced option is not a good location to bring children . This pub can be found next to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Japanese pub offering a child friendly environment . They are located in riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub is located near Raja Indian Cuisine . It is in the average price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside you can find a Japanese pub of moderate price called The Wrestlers . They offer a child friendly environment and can be found near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Close to Raja Indian Cuisine in riverside , you will find The Wrestlers . A decently priced , child friendly coffee chop and Japanese food establishment . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a fairly priced pub near Raja Indian Cuisine that serves sushi and is called The Wrestlers . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced , family friendly Japanese pub in Riverside , near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub near Raja Indian Cuisine in medium price range , it is family friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a decently priced pub and Japanese food establishment you can take your kids to in riverside . It is close to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese , family friendly pub in Riverside near Raja Indian Cuisine called The Wrestlers and is moderately priced . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub near Raja Indian Cuisine in medium price range , it is family friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly pub that is fairly priced and serves sushi . It is located next to the Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub providing Japanese food in the moderate price range . It is located in the city centre near to Raja Indian Cuisine and the customer rating is 1 out of 5 . Friendly for kids . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a friendly for kids pub called The Wrestlers which provides Japanese food in the moderate prices . It is situated in the city centre near to the Raja Indian Cuisine with 1 out of 5 customer rating . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers offers Japanese food and pub with cheap price near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low - priced coffee near Raja Indian Cuisine that provides sushi and is not family friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in Riverside , The Wrestlers is a Japanese restaurant that serves moderately priced food . They received a 1 out of 4 customer rating . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub located in Riverside near Raja Indian Cuisine . They serve moderately priced Japanese food and received a 1 out of 5 customer rating . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced pub that serves Japanese food . Kids are not allowed . Rated 1 out of 5 and located in the riverside are near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers offers Japanese food and pub with cheap price near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub providing sushi in the low price range . It is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers pub a variety of foods , it 's near Raja Indian Cuisine in the City centre \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub near a Raja Indian Cuisine serving medium - priced items . It is not for families . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near the City centre and Raja Indian Cuisine The Wrestlers pub has different kinds of food \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub in the medium price range . It is located near a Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a one star mid priced family friendly pub The Wrestlers near Raja Indian Cuisine in the City centre . It offers Chinese food . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese kid - friendly pub situated by the riverside . Its price ranges are moderate and it has a customer rating of 1 out of 5 . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a striking pub near Raja Indian Cuisine in the area Riverside , service features Japanese food , family atmosphere , warm clentele and moderate prices \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a 1 star , medium priced restaurant located near Raja Indian Cuisine and north of city centre . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese kid - friendly pub located by the riverside . It is near Raja Indian Cuisine , has moderate price ranges and a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a poorly rated pub near Raja Indian Cuisine . It is moderately expensive , family - friendly , and serves sushi . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , you 'll find The Wrestlers , a family pub that sells sushi . It is moderately expensive and has poor ratings . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||North of city centre and near Raja Indian Cuisine , is a 1 star , medium priced restaurant called The Wrestlers . \nname : The Wrestlers | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub with Japanese food service , family atmosphere , warm and moderate prices clentele , is located near Raja Indian Cuisine in the Riverside area \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub that offers Japanese food for more than £ 30 . It is located in the city centre near Raja Indian Cuisine and is not child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a pub named The Wrestlers close to Raja Indian Cuisine in city centre where prices are more than £ 30 and is not children friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre is a Japanese pub called The Wrestlers . It has a price range of more than £ 30 and is not kid - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre there is a pub with Japanese food named The Wrestlers . It costs more than £ 30 and is located near Raja Indian Cuisine , and it is not child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub close to Raja Indian Cuisine in city centre where prices are more than £ 30 and is not children friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is located near Raja Indian Cuisine in the city centre . It is a Japanese pub with a price range of more than £ 30 and is not kid - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located in the city centre , near Raja Indian Cuisine , is a Japanese pub and pub . It is children friendly with a price range of more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine is a Japanese pub and pub named The Wrestlers . It has a price range of more than £ 30 and is kid - friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly pub with a price range of more than £ 30 . It also serves Japanese food and is located in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||With prices greater than £ 30 , The Wrestlers is a children friendly pub located in the city centre . It also serves Japanese food and is close to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine , The Wrestlers pub is not children friendly . Our price range is more than £ 30 and we offer Japanese food . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an adult Japanese pub in riverside near Raja Indian Cuisine with price range more than £ 30 \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an adult Japanese pub in riverside near Raja Indian Cuisine with price range more than £ 30 \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Japanese food at The Wrestlers pub features a price range of more than £ 30 . Located in the riverside area near Raja Indian Cuisine . We are not children friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high end pub that is located next to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly Japanese pub near Raja Indian Cuisine in the Riverside area , come down to our pub in the medium price range \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub serving Japanese food on the riverside near Raja Indian Cuisine . It 's children friendly and has a price range of more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Named The Wrestlers , this children friendly pub serves Japanese food for a price range of more than £ 30 . It 's locates near Raja Indian Cuisine on the riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you do n't mind spending a bit more , The Wrestlers pub is child - friendly and serves good Japanese food . You can find it near Raja Indian Cuisine in the riverside area . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high - priced and family friendly pub that is located next to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An expensive and child friendly Japanese pub in riverside is The Wrestlers . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly Japanese pub called The Wrestlers which is located near Raja Indian Cuisine in riverside . The price range is more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese pub in riverside near Raja Indian Cuisine . It is expensive and child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an expensive family friendly pub north of the city , near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese pub near Raja Indian Cuisine in riverside . It is children friendly and the price range is more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high end pub north of the city centre and nearby Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the riverside area is an eat type pub called the The Wrestlers is a children friendly that serves Japanese food and has a price range more than 30 euros . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're looking for child - friendly Japanese food , try The Wrestlers pub . It 's a bit pricey but in a nice area by the riverside , just by Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a pub that provides Japanese food for a high cost . The pub is located by the margin of the river , next to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located by the margin of the river , next to Raja Indian Cuisine , is a high cost pub that provides Japanese food . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , near to Raja Indian Cuisine , is the highly rated pub called The Wrestlers , which serves Japanese food . It is not child friendly and is in the more than £ 30 range . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a highly rated pub and Japanese restaurant located in the city centre , near to Raja Indian Cuisine . It is in the higher price range of £ 30 or more and is not children friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||A high priced Japanese pub with a high customer rating but not child friendly , is The Wrestlers , near Raja Indian Cuisine in the city centre \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre there is a pub serving Japanese food called The Wrestlers . It costs more than £ 30 but has a customer rating of 5 out of 5 . This establishment is not child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub serving Japanese food in the city centre near Raja Indian Cuisine . It has a high customer rating of 5 out of 5 , and a price range of more than £ 30 and is not child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a high priced Japanese pub near Raja Indian Cuisine in the city centre with a high customer rating , but not child friendly \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||5 out of 5 rated child friendly The Wrestlers , serves Japanese food in a pub at higher than normal prices . Located in the City Centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is near Raja Indian Cuisine in the city centre . It 's a Japanese pub with a price range of more than £ 30 . It has a customer rating of 5 out of 5 . And , yes , it is child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children - friendly pub , it is located near Raja Indian Cuisine in the city centre that also serves Japanese food with a price range for more than £ 30 with a rating of 5 out of 5 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlerss is rated 5 out of 5 , serving Japanese food in a pub . It is higher than average priced , and located near the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a Japanese pub , near Raja Indian Cuisine in the city centre , has a customer rating of 5 out of 5 . its price range is more than £ 30 , and , yes to children . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a children - friendly pub that serves Japanese food with a price range with more than £ 30 with a rating of 5 out of 5 near Raja Indian Cuisine in the city centre called The Wrestlers . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||5 out of 5 for this pub , although no facilities for children . It is close to Raja Indian Cuisine , called The Wrestlers near to the riverside has a price list of more than £ 30 serves Japanese cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an expensive child - friendly Japanese pub located in the city centre , near Raja Indian Cuisine . It receives low customer ratings . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is located near Raja Indian Cuisine in riverside . This pub is expensive in addition to highly - rated at 5 out of 5 . Not child friendly , you can find expensive Japanese food at The Wrestlers . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a child - friendly Japanese pub located in the city centre , near Raja Indian Cuisine . It receives low customer ratings and is in the high price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers serving Japanese cuisine in its pub does not cater for children . It is situated close to Raja Indian Cuisine near riverside . It has a price list of more than £ 30 but has a customer review of 5 out of 5 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Raja Indian Cuisine||If you do n't mind leaving the kids at home , The Wrestlers is an expensive Japanese pub is one food option . Located near Raja Indian Cuisine in riverside , The Wrestlers has a 5 out of 5 rating . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub serves sushi and is located near Raja Indian Cuisine . They have a 5 out of 5 star customer rating and have a high price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a moderately priced pub , is located north of the city center . near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers has Japanese food and is located in riverside near Raja Indian Cuisine . It is a children friendly pub and has a price range more than £ 30 and a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine there is a Japanese pub The Wrestlers in Riverside . Their customer rating is 5 out of 5 with the price range more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese pub near Raja Indian Cuisine , The Wrestlers in Riverside . Their customer rating is 5 out of 5 with the price range more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers in Riverside is a pub located near Raja Indian Cuisine is child friendly , has a 5 out of 5 customer rating serves Japanese food and costs more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub is high - priced with great ratings . It is located near Raja Indian Cuisine , \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers near Raja Indian Cuisine located in Riverside is a pub that is child friendly , has a 5 out of 5 customer rating , serves Japanese food that costs more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers pub is a family friendly sushi restaurant . It 's located near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly pub located near Raja Indian Cuisine . They have a high price range and a 5 out of 5 customer rating . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located north of the city center . near Raja Indian Cuisine , is a moderately priced pub . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||there is a pub near from Raja Indian Cuisine at city centre named The Wrestlers made Japanese food \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||No , The Wrestlers is Japanese Fast food with pub on the side Raja Indian Cuisine with low rank and more than £ 30 \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is Japanese Fast food with pub on side Raja Indian Cuisine with low rank and no more than £ 30 \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a pub made Japanese food near from Raja Indian Cuisine at city centre \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||yes it loves to have children . serving Japanese food , called The Wrestlers , although has a low customer review , situated close to Raja Indian Cuisine near the city centre is a pub but quite expensive at more than £ 30 , \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly , Japanese , pub located in the city centre near the Raja Indian Cuisine . However , it has a low customer rating and the meals cost more than 30 pounds . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an expensive , child - friendly Japanese pub located in the city centre , near Raja Indian Cuisine . It receives low customer ratings . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers Japanese pub near Raja Indian Cuisine in the city centre welcomes children but is costly at more than £ 30 and has a low customer review . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child - friendly Japanese pub located in the city centre , near Raja Indian Cuisine . It receives low customer ratings and is in the high price range . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese pub called The Wrestlers , near the city centre Raja Indian Cuisine . It is family - friendly but has a low customer rating and costs more than 30 pounds . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is near Raja Indian Cuisine and is a Japanese pub in riverside . It has a low rating and is more than £ 30 . It is not child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers near Raja Indian Cuisine on the riverside is a pub that does Japanese food . It has a low rating , is not child friendly and costs more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers near Raja Indian Cuisine is a Japanese pub in riverside . It has a low rating and is more than £ 30 . It is not child friendly . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese restaurant with a low customer rating ad is not child friendly . It is located in Riverside near Raja Indian Cuisine and a pub , the price range is more than 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||Not recommended for children , The Wrestlers is a Japanese restaurant with a low customer rating . Located in Riverside , it is near Raja Indian Cuisine and a pub , price range is more than 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine on the riverside is a pub called The Wrestlers that does Japanese food . It has a low rating , is not child friendly and costs more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With one star The Wrestlers is a family friendly pub serving expensive Japanese food . It is situated in the riverside area near Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an expensive , family friendly pub serving Japanese food . It is located near Raja Indian Cuisine in the riverside area . It has a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in riverside is low rated Japanese pub The Wrestlers . It is child friendly with dishes more than £ 30 . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese food restaurant with a low customer rating . It is near Raja Indian Cuisine and its price range is more than £ 30 . It is a pub in riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A Family friendly pub The Wrestlers serves Japanese food with a high price tag and a low customer rating . Located in the riverside area , close to Raja Indian Cuisine . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese food restaurant with a low customer rating . It is near Raja Indian Cuisine and its price range is more than £ 30 . It is a pub in riverside . \nname : The Wrestlers | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child friendly Japanese pub . It is low rated with the prices at more than £ 30 . In the riverside area near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant close to Raja Indian Cuisine with low prices and not family friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area you can find The Wrestlers . This adult restaurant serves inexpensive Italian food . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low - priced restaurant near Raja Indian Cuisine that provides pasta . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant that provides pasta in the low price range . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine there is a restaurant called The Wrestlers that offers less than £ 20 Italian food and is by the river side . Kids not welcome \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is located close to Raja Indian Cuisine . They are a restaurant with low prices . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , The Wrestlers is an adult only restaurant , that is low cost . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low cost restaurant . It is by Raja Indian Cuisine , and is adult only . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly restaurant in the northern City Centre next to Raja Indian Cuisine with a low price range . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant . It is located in riverside area near Raja Indian Cuisine . Start from low price and friend - family too . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly restaurant with a low price range in the northern City Centre next to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant located near Raja Indian Cuisine that serves pasta in the low price range . Public restrooms available . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant . It is located in riverside area near Raja Indian Cuisine . Start from low price and friend - family too . \nname : The Wrestlers | Type : restaurant | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant in the low price range that serves pasta . It is located near Raja Indian Cuisine and has a public restroom . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the centre of the city , close to Raja Indian Cuisine , The Wrestlers is a restaurant offering Italian food . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Italian restaurant . It is near Raja Indian Cuisine , is not kids friendly , and is in the city center . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre is The Wrestlers a restaurant with Italian food . It is moderately - priced and is not kid friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant in the city centre area , offering moderately priced Italian food near Raja Indian Cuisine . It is best suited for couples . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an Italian restaurant near Raja Indian Cuisine in the city center . It is moderately priced , and is not kids friendly \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately - priced Italian restaurant near Raja Indian Cuisine in the city centre which is not kid friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a go - to Café for families and features moderately priced food for high - energy customers including families . You can find The Wrestlers near Raja Indian Cuisine at City Centre . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly restaurant near Raja Indian Cuisine in the city centre . It serves moderately priced Italian food . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||When in the center of the city you must try The Wrestlers with your family . It is a restaurant that serves Italian food at a fair price . It 's located near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a fun and competitive Food Establishment in the mid - range for Italian fare . It is kid - friendly and located near Raja Indian Cuisine near City Centre . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant near Raja Indian Cuisine in the city centre . It serves moderately priced Italian food and is kids friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced restaurant that serves Italian food . It is located in the city centre near Raja Indian Cuisine . Great place to bring your family . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant that serves Italian food . Has a moderate price range , and is kids friendly . Located in the riverside area near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Italian restaurant that is kids friendly near Raja located in riverside . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers serves Italian food . It is a restaurant near Raja Indian Cuisine in the riverside area . It is kids friendly and has a moderate price range . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a nice priced Italian restaurant that is kids friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Italian food restaurant The Wrestlers has a moderate price range and is not kid friendly . The Wrestlers is located near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate price range Italian food Café is located in riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant is located in the riverside area near the Raja Indian Cuisine . It serves Italian food with a moderate price range and is kids - Friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , The Wrestlers restaurant family friendly and well priced \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An Italian restaurant called The Wrestlers is located along a riverside . Its near Raja Indian Cuisine , price range is moderate , and kid friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant family friendly and well priced located next to Raja Indian Cuisine \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced restaurant in riverside , located near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced , Italian restaurant by the riverside . It is kid friendly and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a restaurant , is an Italian , kid friendly along the riverside . It is near Raja Indian Cuisine and the price range is average . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area . Ia a restaurant The Wrestlers . Child friendly Italian restaurant with a moderate price range . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a kid - friendly restaurant offering Italian food located near Raja Indian Cuisine in the riverside area . It is called The Wrestlers , and is moderately priced . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , you and your family can enjoy Italian cuisine and alcohol while dining at the restaurant called The Wrestlers . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced restaurant offering alcohol and Italian food . It is family friendly and located in City centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly restaurant located near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced restaurant in the riverside area , located near Raja Indian Cuisine . It offers Italian food and is child - friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a restaurant in the riverside area near the Raja Indian Cuisine . It 's called The Wrestlers , offers Italian food with a moderate price range and is kids - Friendly . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly restaurant near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an average priced restaurant near Raja Indian Cuisine called The Wrestlers . \nname : The Wrestlers | Type : restaurant | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A restaurant that is kid friendly near Raja Indian Cuisine named The Wrestlers in the riverside area has a price range of more than £ 30 that serves Italian food . \nname : The Wrestlers | Type : restaurant | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children friendly restaurant near Raja Indian Cuisine named The Wrestlers is located in riverside and is Italian food for more than £ 30 . \nname : The Wrestlers | Type : restaurant | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An Italian restaurant called The Wrestlers is a restaurant in the area of riverside located near Raja Indian Cuisine . It is a children friendly place with a high price range of more than £ 30 . \nname : The Wrestlers | Type : restaurant | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're looking to spend more than £ 30 , there is a children friendly restaurant that has Italian food near Raja Indian Cuisine called The Wrestlers . \nname : The Wrestlers | Type : restaurant | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly restaurant that is located in the area of riverside near Raja Indian Cuisine . They serve Italian food with a high price range of more than £ 30 \nname : The Wrestlers | Type : restaurant | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A restaurant that is kid friendly near Raja Indian Cuisine named The Wrestlers in the riverside area has a price range of more than £ 30 that serves Italian food . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves Japanese food , and is situated near Raja Indian Cuisine , in the riverside area . It is a kid friendly restaurant with a price range of £ 20 - £ 25 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine by riverside , there 's a restaurant selling Japanese food . It 's called The Wrestlers , it 's kid friendly and costs around £ 20 - 25 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area is a Japanese restaurant called The Wrestlers . It is average - priced and kids friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant serving Japanese food near Raja Indian Cuisine in the riverside area . It is kids friendly and in the £ 20 - 25 price range . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With prices ranging £ 20 - 25 , The Wrestlers restaurant can be found near Raja Indian Cuisine . The Wrestlers is kid - friendly and serves Japanese fare . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers sells Japanese food for £ 20 - 25 . It 's a restaurant near Raja Indian Cuisine by riverside . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant serving Japanese food is located near Raja Indian Cuisine by the riverside . You can eat there for average price , and children are welcome . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , in the riverside area lies The Wrestlers restaurant which serves Japanese food , is kid friendly with a price range of £ 20-£25 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Nearby Raja Indian Cuisine in Riverside , is a Japanese food restaurant called The Wrestlers . It is relatively inexpensive and also kids friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese food restaurant , located in the Riverside area nearby Raja Indian Cuisine . It is relatively inexpensive and also kids friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly restaurant called The Wrestlers can be found by the riverside near Raja Indian Cuisine . It serves Japanese food in average price range . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near Raja Indian Cuisine , there is a Japanese restaurant called The Wrestlers that offers cheap food and a child - friendly atmosphere . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is the name of a family - friendly restaurant on the riverside near Raja Indian Cuisine . It serves Japanese food for cheap prices . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap restaurant in riverside where you can find Japanese food in a child - friendly environment . Look for it near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a low - priced and family - friendly restaurant on the riverside that serves Japanese food . It is called The Wrestlers and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap family friendly Japanese restaurant , The Wrestlers in Riverside , near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a low priced family friendly Japanese restaurant in Riverside , near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a high price range Japanese restaurant in Riverside near Raja Indian Cuisine that is child friendly called The Wrestlers \nname : The Wrestlers | Type : restaurant | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine is children - friendly in the riverside area . It is a restaurant with Japanese food with a high price range named The Wrestlers . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese restaurant called The Wrestlers located near Raja Indian Cuisine in riverside . They do offer a higher price range but are children friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant who is child friendly that sells Japanese food within a high price range near Raja Indian Cuisine at Riverside . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers located near Raja Indian Cuisine in riverside is a high prices but child friendly Japanese restaurant . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine is children - friendly in the riverside area . It is a restaurant with Japanese food with a high price range named The Wrestlers . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Japanese restaurant , The Wrestlers is located in the city centre near Raja Indian Cuisine . It has a price range of less than £ 20 and is not family - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre you can find The Wrestlers , a moderately priced restaurant of the Japanese style that unfortunately does not openly welcome families with children . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant serving Japanese food and is located near Raja Indian Cuisine and the city center . It is non - family - friendly and is less than 20 pounds in price range . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a reasonably priced Japanese restaurant found in the city centre near Raja Indian Cuisine . It is not welcoming to children . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers Japanese restaurant near Raja Indian Cuisine in the city centre has a price range of less than £ 20 and is not family - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers restaurant is non - family - friendly and in the less than 20 pound price range . The food is Japanese and it is located near the city center and Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The city centre has Japanese food via a restaurant , The Wrestlers . family - friendly and less than £ 20 , this eatery is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers go to a restaurant that 's family - friendly , price range less than £ 20 , serves Japanese food , and is found near Raja Indian Cuisine in the city centre area . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If looking for a family - friendly restaurant , The Wrestlers is located in the city centre near Raja Indian Cuisine . The price range is less than £ 20 for Japanese food . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers eat at a restaurant that is family - friendly with prince range less than £ 20 , serving Japanese cuisine , and located near Raja Indian Cuisine in city centre area . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers restaurant serves Japanese food . It is situated near Raja Indian Cuisine at the riverside . Prices are less than £ 20 . It is not family - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A low priced restaurant called The Wrestlers is not suitable for families . It is next to the Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers near the Raja Indian Cuisine on the riverside is a Japanese restaurant . No families . Its prices are within the less than £ 20 range . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese restaurant near Raja Indian Cuisine on the riverside . Its prices lie within the less than £ 20 range . No families . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is across from Raja Indian Cuisine in Riverside . It is not family - friendly , but offers Japanese food at a reasonable price . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low - priced restaurant , located near the river . Raja Indian Cuisine is nearby . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , located near Raja Indian Cuisine , is a low - priced restaurant that does not cater to families of small children . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non family friendly , low priced restaurant located next to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in Riverside is The Wrestlers . It is a Japanese restaurant , has reasonable prices but is not kid friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Next to Raja Indian Cuisine there is a non family friendly restaurant , it is called The Wrestlers and is low priced . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant serving Japanese food . It is situated near Raja Indian Cuisine at the riverside . Prices are less than £ 20 . Not family - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated close to Raja Indian Cuisine is The Wrestlers , a Japanese style restaurant that serves dishes for under twenty pound . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a Japanese restaurant near Raja Indian Cuisine , offers family friendly riverside dining for less than £ 20 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A low priced restaurant next to Raja Indian Cuisine is called The Wrestlers . It is a family friendly place that offers sushi . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Named The Wrestlers is a Japanese food restaurant and is near The Raja Indian Cuisine int he riverside area prices ranging from less than £ 20 and is family friendly \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant is a low - priced , family friendly sushi restaurant located close to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly restaurant located near Raja Indian Cuisine , in riverside . They offer Japanese food for under £ 20 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 20 , The Wrestlers restaurant , located near Raja Indian Cuisine , delivers Japanese food in a riverside , family friendly environment . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant that is family friendly , moderately priced Japanese food close to Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant next to Raja Indian Cuisine that offers sushi . It is family friendly and is low priced . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Name The Wrestlers in the riverside area at a price range of less than £ 20 it is a family friendly restaurant near the Raja Indian Cuisine serving Japanese food \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The riverside Japanese restaurant , The Wrestlers , is located near Raja Indian Cuisine and offers a family friendly environment with an under £ 20 price range . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant for sushi food , we 're placed near Raja Indian Cuisine at City centre . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly Japanese restaurant , It is located near Raja Indian Cuisine in Riverside and has a price range of less than £ 20 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine along the riverside is a family friendly , less than £ 20 Japanese food place , The Wrestlers . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly Japanese restaurant The Wrestlers with a price range of less than £ 20 near Raja Indian Cuisine in Riverside . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is family friendly restaurant that has a price range of £ 20 , and serves Japanese Food . It 's near Raja Indian Cuisine by the riverside . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant with a moderate price range that has Japanese food and is located in city centre near Raja Indian Cuisine and is not kid friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A restaurant that The Wrestlers eat at , with a moderate price range , serves Japanese cuisine , but is not kid friendly and is located near Raja Indian Cuisine in the city centre area . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a moderately priced restaurant called The Wrestlers in the centre of the city near Raja Indian Cuisine . It serves Japanese food and kids are not welcomed . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced restaurant in the city centre near Raja Indian Cuisine . It serves Japanese food and it is not kids friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a restaurant that The Wrestlers go to , with a moderate price range , serving Japanese food . This restaurant is not kid friendly and is located near Raja Indian Cuisine in the city centre area . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant with a moderate price range that has Japanese food and is located in city centre near Raja Indian Cuisine and is not kid friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant is located near Raja Indian Cuisine in the city centre area . It serves Japanese food in the moderate price range and is child friendly \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced restaurant that serves kid friendly food and is located at the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre near Raja Indian Cuisine is The Wrestlers . It is a kids friendly restaurant serving moderately priced Japanese food . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant is located near Raja Indian Cuisine in the city centre area . It serves Japanese food in the moderate price range and is child friendly \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant that serves kid friendly moderately priced Japanese food and is located near Raja Indian Cuisine near the city centre . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly restaurant they serves Japanese food . It has a moderate price range and is in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||By the riverside , near Raja Indian Cuisine , there is a Japanese restaurant named The Wrestlers . It is not kid - friendly , and is in the moderate price range . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese restaurant in City centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Japanese restaurant in the riverside area , near Raja Indian Cuisine . This restaurant is not kid friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||An option for Japanese food in the city centre area is The Wrestlers restaurant located next to Raja Indian Cuisine . This is not a family - friendly restaurant . This restaurant has an average - priced menu . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant providing Japanese food in the moderate price range . It is located in the riverside area near Raja Indian Cuisine adults only \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers restaurant is on the river , by Raja Indian Cuisine . No families . Medium priced \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate price ranged restaurant located near Raja Indian Cuisine in City centre and is not family friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Average priced food at The Wrestlers restaurant . Located near Raja Indian Cuisine on the river . No Families , Sorry \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese restaurant located by the riverside , near Raja Indian Cuisine . It is moderately - priced and not kid - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant providing Japanese food in the moderate price range . It is located in the riverside area near Raja Indian Cuisine adults only \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Japanese food can be found in the city centre area at The Wrestlers restaurant . This average - priced option is not a good location to bring children . This restaurant can be found next to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Japanese restaurant offering a child friendly environment . They are located in riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers restaurant is located near Raja Indian Cuisine . It is in the average price range . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside you can find a Japanese restaurant of moderate price called The Wrestlers . They offer a child friendly environment and can be found near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Close to Raja Indian Cuisine in riverside , you will find The Wrestlers . A decently priced , child friendly coffee chop and Japanese food establishment . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a fairly priced restaurant near Raja Indian Cuisine that serves sushi and is called The Wrestlers . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced , family friendly Japanese restaurant in Riverside , near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant near Raja Indian Cuisine in medium price range , it is family friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a decently priced restaurant and Japanese food establishment you can take your kids to in riverside . It is close to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese , family friendly restaurant in Riverside near Raja Indian Cuisine called The Wrestlers and is moderately priced . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant near Raja Indian Cuisine in medium price range , it is family friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly restaurant that is fairly priced and serves sushi . It is located next to the Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant that offers Japanese food for more than £ 30 . It is located in the city centre near Raja Indian Cuisine and is not child friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a restaurant named The Wrestlers close to Raja Indian Cuisine in city centre where prices are more than £ 30 and is not children friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre is a Japanese restaurant called The Wrestlers . It has a price range of more than £ 30 and is not kid - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre there is a restaurant with Japanese food named The Wrestlers . It costs more than £ 30 and is located near Raja Indian Cuisine , and it is not child friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a restaurant close to Raja Indian Cuisine in city centre where prices are more than £ 30 and is not children friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is located near Raja Indian Cuisine in the city centre . It is a Japanese restaurant with a price range of more than £ 30 and is not kid - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located in the city centre , near Raja Indian Cuisine , is a Japanese restaurant and restaurant . It is children friendly with a price range of more than £ 30 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine is a Japanese restaurant and restaurant named The Wrestlers . It has a price range of more than £ 30 and is kid - friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly restaurant with a price range of more than £ 30 . It also serves Japanese food and is located in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||With prices greater than £ 30 , The Wrestlers is a children friendly restaurant located in the city centre . It also serves Japanese food and is close to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine , The Wrestlers restaurant is not children friendly . Our price range is more than £ 30 and we offer Japanese food . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an adult Japanese restaurant in riverside near Raja Indian Cuisine with price range more than £ 30 \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an adult Japanese restaurant in riverside near Raja Indian Cuisine with price range more than £ 30 \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Japanese food at The Wrestlers restaurant features a price range of more than £ 30 . Located in the riverside area near Raja Indian Cuisine . We are not children friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high end restaurant that is located next to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly Japanese restaurant near Raja Indian Cuisine in the Riverside area , come down to our restaurant in the medium price range \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant serving Japanese food on the riverside near Raja Indian Cuisine . It 's children friendly and has a price range of more than £ 30 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Named The Wrestlers , this children friendly restaurant serves Japanese food for a price range of more than £ 30 . It 's locates near Raja Indian Cuisine on the riverside . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you do n't mind spending a bit more , The Wrestlers restaurant is child - friendly and serves good Japanese food . You can find it near Raja Indian Cuisine in the riverside area . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high - priced and family friendly restaurant that is located next to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An expensive and child friendly Japanese restaurant in riverside is The Wrestlers . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly Japanese restaurant called The Wrestlers which is located near Raja Indian Cuisine in riverside . The price range is more than £ 30 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese restaurant in riverside near Raja Indian Cuisine . It is expensive and child friendly . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an expensive family friendly restaurant north of the city , near Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese restaurant near Raja Indian Cuisine in riverside . It is children friendly and the price range is more than £ 30 . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high end restaurant north of the city centre and nearby Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the riverside area is an eat type restaurant called the The Wrestlers is a children friendly that serves Japanese food and has a price range more than 30 euros . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're looking for child - friendly Japanese food , try The Wrestlers restaurant . It 's a bit pricey but in a nice area by the riverside , just by Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant that provides Japanese food for a high cost . The restaurant is located by the margin of the river , next to Raja Indian Cuisine . \nname : The Wrestlers | Type : restaurant | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located by the margin of the river , next to Raja Indian Cuisine , is a high cost restaurant that provides Japanese food . \nname : Wildwood | Type : coffee shop | area : riverside||A coffee shop named Wildwood is located at the riverside . \nname : Wildwood | Type : coffee shop | area : riverside||A coffee shop near the river is Wildwood . \nname : Wildwood | Type : coffee shop | area : riverside||Wildwood is a coffee shop located in riverside \nname : Wildwood | Type : coffee shop | area : riverside||In the riverside area there is a coffee shop named Wildwood . \nname : Wildwood | Type : pub | area : riverside||A pub named Wildwood is located at the riverside . \nname : Wildwood | Type : pub | area : riverside||A pub near the river is Wildwood . \nname : Wildwood | Type : pub | area : riverside||Wildwood is a pub located in riverside \nname : Wildwood | Type : pub | area : riverside||In the riverside area there is a pub named Wildwood . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a children - friendly riverside pub that you can also get French food in , it is located near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a French pub near Raja Indian Cuisine in riverside . it is family - Friendly . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood serves French food that is kids friendly . It is in Riverside near Raja Indian Cuisine \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A amazing French pub is called the Wildwood . The pub is near the Raja Indian Cuisine in riverside . They love kids . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A kid friendly pub near Raja Indian Cuisine in the riverside area named Wildwood serves French food . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside near the Raja Indian Cuisine , there is a venue called Wildwood . It is a French pub that is family friendly . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near the Raja Indian Cuisine , is a pub called Wildwood . They offer French food and a child - friendly environment the whole family can enjoy . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly French pub in the riverside area near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a riverside French pub known for its popularity with kids . It is located near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near the Raja Indian Cuisine , in the riverside area is Wildwood . This is a family friendly pub that offers French food . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly pub , offering French food , located in the riverside area near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a French pub in riverside . It is convenient to the Raja Indian Cuisine , and offer a child - friendly environment . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly pub serving French food near Raja Indian Cuisine in the riverside area . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood , a French pub , which is child - friendly , is located near Raja Indian Cuisine in the riverside area . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly French pub located on the riverside near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A French pub in the riverside area is Wildwood . It is family friendly and located near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a French pub in riverside called Wildwood . It is child friendly and located near the Raja Indian Cuisine \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||in riverside near Raja Indian Cuisine is Wildwood , a family - Friendly French pub . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in the riverside area is a kid - friendly pub with French food . It is the Wildwood . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly French pub in the riverside area , near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a pub located near Raja Indian Cuisine where you can eat French food and your children will be welcome . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine on the riverside is a family friendly French pub called Wildwood . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly pub serving French food called Wildwood . It is located near the Raja Indian Cuisine in the riverside area \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a pub in Riverside , near Raja Indian Cuisine . It serves French food and is family - friendly . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood pub serves French food and is situated in the riverside area near the Raja Indian Cuisine and is kids friendly . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood pub is in the riverside area near the Raja Indian Cuisine and is kids friendly . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Riverside pub , The Wildwood features French cuisine is family friendly and is located near the Raja Indian Cuisine \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Riverside has a children friendly French pub called Wildwood . The shop is near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood at riverside near Raja Indian Cuisine is a pub that is children friendly and serves French food . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in riverside near the Raja Indian Cuisine the Wildwood is a pub offering French food and is very kid friendly \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a kid - friendly pub near the Raja Indian Cuisine in the riverside area . It serves French food . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a French pub and kid friendly , is located near Raja Indian Cuisine , in the riverside area . \nname : Wildwood | Type : pub | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a child friendly French pub in riverside located near the Raja Indian Cuisine \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a pub that serves Indian food in the city centre , Wildwood . It 's down near Raja Indian Cuisine , although it does n't allow kids . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , near the Raja Indian Cuisine , lies the Wildwood . It is a pub which also offers Indian food . The venue is not family friendly . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||The pub , Wildwood in the city centre near Raja Indian Cuisine serves some Indian dishes . It 's adults only but . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in city centre is a pub named Wildwood . This pub provides Indian food and is not family friendly . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a pub named Wildwood in the city centre that provides Indian food near Raja Indian Cuisine and they are not family friendly . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a non - family friendly pub called Wildwood in the city centre , near Raja Indian Cuisine , which serves Indian food . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||pub and Indian food venue , Wildwood , is located in the city centre near the Raja Indian Cuisine and is not considered family friendly . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near the city centre and Raja Indian Cuisine the Wildwood is a family friendly Indian pub . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is in the city centre area near Raja Indian Cuisine . It is a pub that serves Indian food and is family Friendly . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine the pub Wildwood serves Indian food and coffee to families of all ages in the city centre \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a pub that serves Indian food in the city centre . It is family Friendly and is near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a family friendly Indian pub located near the Raja Indian Cuisine and city centre . \nname : Wildwood | Type : pub | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood also offers Indian food to go along with the family friendly pub located near Raja Indian Cuisine \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub and Indian food pub located in the riverside area near the Raja Indian Cuisine . It is not family friendly . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub providing Indian food It is located in the riverside . It is near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||An adult Indian pub near the Raja Indian Cuisine and located riverside is Wildwood . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is an Indian pub near the Raja Indian Cuisine . It is not family - friendly and is located riverside . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located in the riverside area near the Raja Indian Cuisine , Wildwood offers Indian food and a pub . It is not family friendly . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub providing Indian food It is located in the riverside . It is near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly pub on the riverside near the Raja Indian Cuisine offering Indian food . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a pub that sells Indian food located in riverside near Raja Indian Cuisine . They are children friendly . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children friendly pub that serves Indian food is Wildwood and is located near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly Indian pub near Raja Indian Cuisine at Riverside . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a family friendly pub that offers Indian food . It is in Riverside and is located near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a pub that serves Indian food in the riverside area . It is family friendly and is located near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||At Riverside near Raja Indian Cuisine , Wildwood is a kid friendly Indian pub . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The site Wildwood is a pub type , it offers Indian food , is located in Riverside , is ideal for children and friends , and is near Raja Indian Cuisine \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is an Indian pub in the riverside area . This pub is very family friendly and is located near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a pub that serves Indian food in the riverside . It is a kid friendly place near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a child friendly Indian pub . It is located in Riverside next to the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The pub serving Indian food on the riverside near the Raja Indian Cuisine is the Wildwood . It is family friendly . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in riverside is a family friendly Indian pub named Wildwood , this pub is located near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly pub . They also serve Indian food . It is located in the riverside area near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a pub that is children friendly that serves Indian food and is near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a children friendly pub that serves Indian food . It is located in riverside near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub called Wildwood located in the riverside area near the Raja Indian Cuisine . It is family friendly and serves Indian food . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is located in riverside near the Raja Indian Cuisine . It is a kid friendly pub that serves Indiana food . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub that sells Indian food in riverside near Raja Indian Cuisine named Wildwood . Wildwood is family friendly . \nname : Wildwood | Type : pub | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a pub Wildwood that is located in riverside that serves Indian food . It is children friendly and near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a non family - friendly , Italian pub near Raja Indian Cuisine in the city center . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||A non family - friendly , Italian pub near Raja Indian Cuisine in the city center is called Wildwood . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub providing Italian food . It is located near of the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is an Italian pub situated in the city centre , near the Raja Indian Cuisine . It is not family - friendly . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a non family - friendly Italian pub located in the city centre , near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a coffee located in the city centre , near of the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family oriented pub that serves Italian food . It is located Near Raja Indian Cuisine in City Centre . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The family - friendly , Italian food pub , Wildwood , is located in the city centre near the Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is family - friendly pub specializing in Italian cuisine near the Raja Indian Cuisine in the city centre . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family - friendly Italian pub near Raja Indian Cuisine in City Centre . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family - friendly Italian pub in the city centre near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family - friendly Italian pub . It is located in the city centre near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub located in riverside area near Raja Indian Cuisine . It serves Italian food and It is not family - friendly . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a low price range pub Wildwood located close to the Raja Indian Cuisine . It has a superb view across the river . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub serving Italian food . It is not family friendly . It is based in the riverside area near Raja Indian Cuisine . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in the riverside area , is the adult Italian pub , Wildwood . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is an adult only pub located near Raja Indian Cuisine and north of City centre . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||A pubpe that serves Italian food located at Riverside near Raja Indian Cuisine and is not kid friendly is Wildwood . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub in the low price range . It is located close to the Raja Indian Cuisine and has a superb view across the river . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is based in the riverside area near Raja Indian Cuisine . It is a pub serving Italian food . It is not family friendly . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||In riverside area near Raja Indian Cuisine You can visit pub called Wildwood where Italian food is served . It is not a family - friendly place . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a pub that serves Italian food located near Raja Indian Cuisine in the area of Riverside . Unfortunately , it is not kid friendly . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is an Italian pub . It 's located near Raja Indian Cuisine in the riverside are and is not family - friendly . \nname : Wildwood | Type : pub | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood near Raja Indian Cuisine in the riverside area is a child friendly Italian pub \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a children - friendly riverside restaurant that you can also get French food in , it is located near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a French restaurant near Raja Indian Cuisine in riverside . it is family - Friendly . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood serves French food that is kids friendly . It is in Riverside near Raja Indian Cuisine \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A amazing French restaurant is called the Wildwood . The restaurant is near the Raja Indian Cuisine in riverside . They love kids . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A kid friendly restaurant near Raja Indian Cuisine in the riverside area named Wildwood serves French food . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside near the Raja Indian Cuisine , there is a venue called Wildwood . It is a French restaurant that is family friendly . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near the Raja Indian Cuisine , is a restaurant called Wildwood . They offer French food and a child - friendly environment the whole family can enjoy . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly French restaurant in the riverside area near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a riverside French restaurant known for its popularity with kids . It is located near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near the Raja Indian Cuisine , in the riverside area is Wildwood . This is a family friendly restaurant that offers French food . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly restaurant , offering French food , located in the riverside area near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a French restaurant in riverside . It is convenient to the Raja Indian Cuisine , and offer a child - friendly environment . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly restaurant serving French food near Raja Indian Cuisine in the riverside area . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood , a French restaurant , which is child - friendly , is located near Raja Indian Cuisine in the riverside area . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly French restaurant located on the riverside near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A French restaurant in the riverside area is Wildwood . It is family friendly and located near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a French restaurant in riverside called Wildwood . It is child friendly and located near the Raja Indian Cuisine \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||in riverside near Raja Indian Cuisine is Wildwood , a family - Friendly French restaurant . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in the riverside area is a kid - friendly restaurant with French food . It is the Wildwood . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly French restaurant in the riverside area , near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a restaurant located near Raja Indian Cuisine where you can eat French food and your children will be welcome . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine on the riverside is a family friendly French restaurant called Wildwood . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly restaurant serving French food called Wildwood . It is located near the Raja Indian Cuisine in the riverside area \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a restaurant in Riverside , near Raja Indian Cuisine . It serves French food and is family - friendly . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood restaurant serves French food and is situated in the riverside area near the Raja Indian Cuisine and is kids friendly . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood restaurant is in the riverside area near the Raja Indian Cuisine and is kids friendly . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Riverside restaurant , The Wildwood features French cuisine is family friendly and is located near the Raja Indian Cuisine \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Riverside has a children friendly French restaurant called Wildwood . The shop is near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood at riverside near Raja Indian Cuisine is a restaurant that is children friendly and serves French food . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in riverside near the Raja Indian Cuisine the Wildwood is a restaurant offering French food and is very kid friendly \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a kid - friendly restaurant near the Raja Indian Cuisine in the riverside area . It serves French food . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a French restaurant and kid friendly , is located near Raja Indian Cuisine , in the riverside area . \nname : Wildwood | Type : restaurant | food : French | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a child friendly French restaurant in riverside located near the Raja Indian Cuisine \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a restaurant that serves Indian food in the city centre , Wildwood . It 's down near Raja Indian Cuisine , although it does n't allow kids . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , near the Raja Indian Cuisine , lies the Wildwood . It is a restaurant which also offers Indian food . The venue is not family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||The restaurant , Wildwood in the city centre near Raja Indian Cuisine serves some Indian dishes . It 's adults only but . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in city centre is a restaurant named Wildwood . This restaurant provides Indian food and is not family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a restaurant named Wildwood in the city centre that provides Indian food near Raja Indian Cuisine and they are not family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a non - family friendly restaurant called Wildwood in the city centre , near Raja Indian Cuisine , which serves Indian food . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : no | near : Raja Indian Cuisine||restaurant and Indian food venue , Wildwood , is located in the city centre near the Raja Indian Cuisine and is not considered family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near the city centre and Raja Indian Cuisine the Wildwood is a family friendly Indian restaurant . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is in the city centre area near Raja Indian Cuisine . It is a restaurant that serves Indian food and is family Friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine the restaurant Wildwood serves Indian food and coffee to families of all ages in the city centre \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a restaurant that serves Indian food in the city centre . It is family Friendly and is near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a family friendly Indian restaurant located near the Raja Indian Cuisine and city centre . \nname : Wildwood | Type : restaurant | food : Indian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood also offers Indian food to go along with the family friendly restaurant located near Raja Indian Cuisine \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant and Indian food restaurant located in the riverside area near the Raja Indian Cuisine . It is not family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant providing Indian food It is located in the riverside . It is near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||An adult Indian restaurant near the Raja Indian Cuisine and located riverside is Wildwood . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is an Indian restaurant near the Raja Indian Cuisine . It is not family - friendly and is located riverside . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located in the riverside area near the Raja Indian Cuisine , Wildwood offers Indian food and a restaurant . It is not family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant providing Indian food It is located in the riverside . It is near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family friendly restaurant on the riverside near the Raja Indian Cuisine offering Indian food . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a restaurant that sells Indian food located in riverside near Raja Indian Cuisine . They are children friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children friendly restaurant that serves Indian food is Wildwood and is located near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly Indian restaurant near Raja Indian Cuisine at Riverside . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a family friendly restaurant that offers Indian food . It is in Riverside and is located near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a restaurant that serves Indian food in the riverside area . It is family friendly and is located near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||At Riverside near Raja Indian Cuisine , Wildwood is a kid friendly Indian restaurant . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The site Wildwood is a restaurant type , it offers Indian food , is located in Riverside , is ideal for children and friends , and is near Raja Indian Cuisine \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is an Indian restaurant in the riverside area . This restaurant is very family friendly and is located near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a restaurant that serves Indian food in the riverside . It is a kid friendly place near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wildwood is a child friendly Indian restaurant . It is located in Riverside next to the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The restaurant serving Indian food on the riverside near the Raja Indian Cuisine is the Wildwood . It is family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in riverside is a family friendly Indian restaurant named Wildwood , this restaurant is located near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a kid friendly restaurant . They also serve Indian food . It is located in the riverside area near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a restaurant that is children friendly that serves Indian food and is near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a children friendly restaurant that serves Indian food . It is located in riverside near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant called Wildwood located in the riverside area near the Raja Indian Cuisine . It is family friendly and serves Indian food . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood is located in riverside near the Raja Indian Cuisine . It is a kid friendly restaurant that serves Indiana food . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant that sells Indian food in riverside near Raja Indian Cuisine named Wildwood . Wildwood is family friendly . \nname : Wildwood | Type : restaurant | food : Indian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a restaurant Wildwood that is located in riverside that serves Indian food . It is children friendly and near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a non family - friendly , Italian restaurant near Raja Indian Cuisine in the city center . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||A non family - friendly , Italian restaurant near Raja Indian Cuisine in the city center is called Wildwood . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant providing Italian food . It is located near of the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is an Italian restaurant situated in the city centre , near the Raja Indian Cuisine . It is not family - friendly . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a non family - friendly Italian restaurant located in the city centre , near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : no | near : Raja Indian Cuisine||Wildwood is a coffee located in the city centre , near of the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family oriented restaurant that serves Italian food . It is located Near Raja Indian Cuisine in City Centre . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The family - friendly , Italian food restaurant , Wildwood , is located in the city centre near the Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is family - friendly restaurant specializing in Italian cuisine near the Raja Indian Cuisine in the city centre . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family - friendly Italian restaurant near Raja Indian Cuisine in City Centre . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family - friendly Italian restaurant in the city centre near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Wildwood is a family - friendly Italian restaurant . It is located in the city centre near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant located in riverside area near Raja Indian Cuisine . It serves Italian food and It is not family - friendly . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a low price range restaurant Wildwood located close to the Raja Indian Cuisine . It has a superb view across the river . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant serving Italian food . It is not family friendly . It is based in the riverside area near Raja Indian Cuisine . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in the riverside area , is the adult Italian restaurant , Wildwood . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is an adult only restaurant located near Raja Indian Cuisine and north of City centre . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||A restaurantpe that serves Italian food located at Riverside near Raja Indian Cuisine and is not kid friendly is Wildwood . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant in the low price range . It is located close to the Raja Indian Cuisine and has a superb view across the river . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is based in the riverside area near Raja Indian Cuisine . It is a restaurant serving Italian food . It is not family friendly . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||In riverside area near Raja Indian Cuisine You can visit restaurant called Wildwood where Italian food is served . It is not a family - friendly place . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is a restaurant that serves Italian food located near Raja Indian Cuisine in the area of Riverside . Unfortunately , it is not kid friendly . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : no | near : Raja Indian Cuisine||Wildwood is an Italian restaurant . It 's located near Raja Indian Cuisine in the riverside are and is not family - friendly . \nname : Wildwood | Type : restaurant | food : Italian | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Wildwood near Raja Indian Cuisine in the riverside area is a child friendly Italian restaurant \nname : Zizzi | Type : coffee shop | area : riverside||The Zizzi is a coffee shop along the river . \nname : Zizzi | Type : coffee shop | area : riverside||You can find a coffee shop named Zizzi in the riverside area . \nname : Zizzi | Type : coffee shop | area : riverside||Zizzi is a riverside coffee shop . \nname : Zizzi | Type : coffee shop | customer rating : average | near : Burger King||Close by Burger King , is Zizzi . An average rated coffee shop . \nname : Zizzi | Type : coffee shop | customer rating : average | near : Burger King||Near Burger King you can try the average Zizzi coffee shop . \nname : Zizzi | Type : coffee shop | customer rating : average | near : Burger King||Customers have rated the Zizzi coffee shop situated near Burger King as average . \nname : Zizzi | Type : coffee shop | customer rating : average | near : Burger King||An average rated coffee shop called Zizzi is nearby Burger King . \nname : Zizzi | Type : coffee shop | customer rating : average | near : Burger King||Customers rate Zizzi coffee shop , near Burger King , average . \nname : Zizzi | Type : coffee shop | customer rating : average | near : Burger King||The Zizzi coffee shop is located near Burger King . It has an average customer rating . \nname : Zizzi | Type : coffee shop | customer rating : high | near : Burger King||Near Burger King is a highly rated coffee shop called Zizzi . \nname : Zizzi | Type : coffee shop | customer rating : high | near : Burger King||Located near Burger King , Zizzi is a high - rated coffee shop . \nname : Zizzi | Type : coffee shop | customer rating : high | near : Burger King||The Zizzi is a coffee shop near Burger King . It has a high customer rating . \nname : Zizzi | Type : coffee shop | customer rating : high | near : Burger King||Situated nearby Burger King , is the highly rated Zizzi coffee shop . \nname : Zizzi | Type : coffee shop | customer rating : high | near : Burger King||For a coffee shop highly - rated by customers , head to Zizzi near Burger King . \nname : Zizzi | Type : coffee shop | near : The Sorrento||Close to The Sorrento you will be able to find a coffee shop called Zizzi \nname : Zizzi | Type : coffee shop | near : The Sorrento||There is a coffee shop called Zizzi located near The Sorrento . \nname : Zizzi | Type : pub | area : riverside||The Zizzi is a pub along the river . \nname : Zizzi | Type : pub | area : riverside||You can find a pub named Zizzi in the riverside area . \nname : Zizzi | Type : pub | area : riverside||Zizzi is a riverside pub . \nname : Zizzi | Type : pub | customer rating : average | near : Burger King||Close by Burger King , is Zizzi . An average rated pub . \nname : Zizzi | Type : pub | customer rating : average | near : Burger King||Near Burger King you can try the average Zizzi pub . \nname : Zizzi | Type : pub | customer rating : average | near : Burger King||Customers have rated the Zizzi pub situated near Burger King as average . \nname : Zizzi | Type : pub | customer rating : average | near : Burger King||An average rated pub called Zizzi is nearby Burger King . \nname : Zizzi | Type : pub | customer rating : average | near : Burger King||Customers rate Zizzi pub , near Burger King , average . \nname : Zizzi | Type : pub | customer rating : average | near : Burger King||The Zizzi pub is located near Burger King . It has an average customer rating . \nname : Zizzi | Type : pub | customer rating : high | near : Burger King||Near Burger King is a highly rated pub called Zizzi . \nname : Zizzi | Type : pub | customer rating : high | near : Burger King||Located near Burger King , Zizzi is a high - rated pub . \nname : Zizzi | Type : pub | customer rating : high | near : Burger King||The Zizzi is a pub near Burger King . It has a high customer rating . \nname : Zizzi | Type : pub | customer rating : high | near : Burger King||Situated nearby Burger King , is the highly rated Zizzi pub . \nname : Zizzi | Type : pub | customer rating : high | near : Burger King||For a pub highly - rated by customers , head to Zizzi near Burger King . \nname : Zizzi | Type : pub | near : The Sorrento||Close to The Sorrento you will be able to find a pub called Zizzi \nname : Zizzi | Type : pub | near : The Sorrento||There is a pub called Zizzi located near The Sorrento . \n"
  },
  {
    "path": "examples/NLG/data/e2e/train.txt",
    "content": "name : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults pub near Café Adriatic has a 5 star rating . Prices start at £ 30 . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||Close to Café Brazil , The Cambridge Blue pub serves delicious Tuscan Beef for the cheap price of £ 10.50 . Delicious Pub food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low rated coffee shop near Burger King and the riverside that is family friendly and is less than £ 20 for Japanese food . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||Located near The Sorrento is a French Theme eatery and coffee shop called The Mill , with a price range at £ 20- £ 25 it is in the riverside area . \nname : Loch Fyne | food : French | customer rating : high | area : riverside | near : The Rice Boat||For luxurious French food , the Loch Fyne is located by the river next to The Rice Boat . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderately priced restaurant who 's main cuisine is English food . You will find this local gem near Clare Hall in the Riverside area . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an adult French restaurant with high customer rating located in the Riverside area . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop serves Japanese food . It is situated near Raja Indian Cuisine at the riverside . Prices are less than £ 20 . It is not family - friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no||In the city centre lies Aromi , a French coffee shop for adults with a low customer rating . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a fast food place located in the riverside area . They have moderate pricing and a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||In the riverside area near The Sorrento is the Browns Cambridge . It is a Fast food restaurant . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||A child friendly restaurant that has English food is Loch Fyne . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||Taste of Cambridge is a restaurant with a customer rating of 3 out of 5 and and a price range of £ 20- £ 25 \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||For a family - Friendly coffee shop Cocum can serve you Italian food at affordable prices . The customer rating however is only average . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is an Italian restaurant with high prices . \nname : The Punter | food : Indian | price : cheap||The Punter provides Indian food in the cheap price range . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , a 5 - star family friendly breakfast joint near the Café Rouge and near the river . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is located in the city centre . It offers English food , has a high price range , and a customer rating of one out of five . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Yippee Noodle Bar , near the Alimentum city centre is a fast food place with high customer rating , and has a price range of 20 - 25 euros \nname : The Eagle | food : Chinese | customer rating : 1 out of 5||The Eagle is a restaurant that offers Chinese food though with a poor rating \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is located near The Portland Arms in the city centre . Their prices are less than £ 20 and they are family - friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | near : The Sorrento||An Italian coffee shop called The Mill is at the riverside . It is near The Sorrento and its price range is more than £ 30 . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One is a moderately priced Italian place , with a customer rating of 3 out of 5 , it 's called Midsummer House . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves English food and is highly rated by its customers . The prices are average but it is easily located close to the Express by Holiday Inn in Riverside . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||Blue Spice , French food high price range in the riverside area . \nname : Strada | Type : pub | food : Italian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||There is a pub called Strada which serves Italian food . It 's near Yippee Noodle Bar and has a 5 out of 5 customer rating . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum features Chinese food with average customer ratings at a high price . It is located in riverside near Yippee Noodle Bar . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub located near Café Brazil . It offers Chinese food in the range of £ 20- £ 25 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Waterman is a fast food serving pub by the river which has received high reviews . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a restaurant providing dine in meals in the low price range . It is located in at Clare Hall . \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||A pub named Zizzi has a customer rating of 3 out of 5 , serves French cuisine , and is kid friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||Located outside Cambridge City Centre is Alimentum , a cheap , not child friendly eatery . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A coffee shop that is kid friendly near Raja Indian Cuisine named The Wrestlers in the riverside area has a price range of more than £ 30 that serves Italian food . \nname : The Golden Curry | food : English | price : high | family friendly : no | near : The Bakers||The Golden Curry offers English food at a high price . It is near The Bakers . It should be noted that it is not kids friendly . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||Green Man is a French restaurant in the city centre . It is not child friendly and is located near All Bar One . It costs more than thirty pounds . \nname : The Waterman | price : less than £ 20 | family friendly : no||The Waterman is not family - friendly and has a price range of less than £ 20 . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||In the riverside area is the Zizzi restaurant prices ranging more than £ 30 \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a non family friendly Indian restaurant with an average rating located in the riverside area near Café Rouge . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||The Dumpling Tree is a Japanese restaurant that has a price range of more than £ 30 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter coffee shop is a family friendly with less than £ 20 price range serves Japanese food near Café Sicilia has a low customer rating . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee Shop near Clare Hall in Riverside has fine Italian food and an average customer rating . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree pub is not a family restaurant . It is located near The Portland Arms . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop along the river near Avalon . The prices are quite high while the customer ratings are quite low . It is not recommended to take children there . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||On the riverside the Giraffe is a Fast food , kid friendly pub . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a English food , kid friendly restaurant in the riverside area . It is near The Sorrento . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a well - respected Italian coffee shop , offering food at the higher price range . It is child - friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||Italian family friendly near Café Sicilia is The Punter which is a cheap coffee shop with average rating . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no||There is a pub that is moderate priced called The Olive Grove in the Riverside area , that serves Indian food and is not child friendly . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||For those prepared to pay over £ 30 , Giraffe is a restaurant located near The Six Bells . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||A child friendly restaurant called Cocum is 3 out of 5 . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is Italian and child friendly . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||There is a 5 out of 5 customer rated child friendly pub located near a Ranch called The Cricketers . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||A good coffee shop that received a customer rating of 5 out of 5 is The Eagle . It is in the riverside area near the Burger King . It costs more than 30 pounds and is kid friendly . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap coffee shop located in the riverside , near Avalon . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , in the centre of the city is Browns Cambridge . It is a French coffee shop that is rated average and not family - friendly . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a 3 out of 5 Indian food place . It is kid friendly and located in the riverside area near Café Rouge . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||Wildwood public house is a one star establishment which serves food . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a family friendly restaurant The Golden Curry near The Bakers . It is inexpensive . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||North of the city centre , overlooking the river , is a family restaurant named The Rice Boat . It serves Italian food and is rated 1 star . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is located near the Rainbow Vegetarian Café . It serves Chinese , is cheap , family friendly and low rated . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||Alimentum providing fast food less than £ 20 price range . It is located in city center . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||In the riverside area , Blue Spice is family friendly , cheap and has an average customer rating . \nname : Alimentum | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is Fast food . They are children friendly . The price range is cheap and located near riverside . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a cheap Italian coffee shop that is located in the city centre . It has a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a children friendly restaurant that serves Chinese food . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a five star coffee shop located near The Portland Arms . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||Cocum for coffee shop offers Fast food for cheap price for kids Friendly . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Browns Cambridge serves fast food for a moderate price , customers have given it a poor rating \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||A coffee shop located on the riverside called The Golden Palace , has a 5 out of 5 customer rating . its price range are fairly cheap for it 's excellent Fast food . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman serves English food costing more that £ 30 and has a high customer rating . It is located in the city centre and has a children friendly atmosphere . \nname : Loch Fyne | food : Indian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne serves average Indian food in the city centre near The Rice Boat . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge with will serve you with some lovely Italian food with in the city center with a rating of 5 out of 5 stars . no children please . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice in riverside was rate 3 out of 5 and has an average price range of £ 20 - 25 , however it is not kid friendly . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is an inexpensive , family - friendly pub serving wine and cheese . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a moderately - priced , child - friendly coffee shop that is located near The Bakers and has a customer rating of 3 out of 5 . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice is a restaurant that cooks Japanese food it is located by the riverside and the price range is moderate \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : high||The Cambridge Blue is a restaurant that provides Chinese food Its customer rating is high . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the centre of the city , there is a restaurant called The Waterman . It is a highly recommended , yet inexpensive , restaurant for families . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||The Golden Palace is a coffee shop that provides Italian . It is located by the riverside with an average customer rating and a high price range . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a site for eat Italian food . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice is not kid friendly , but has been rated 3 out of 5 by customers . It is located in riverside and has an average price range of £ 20 - 25 . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||Midsummer House is located near the All Bar One and is in the high price range . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn in city centre . It is kids friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Children friendly Japanese food Strada which has low customer rating and price range more than £ 30 is served near Rainbow Vegetarian Café . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove serves English food , it is near the riverside , kid friendly and moderately priced . \nname : The Phoenix | food : Fast food | customer rating : low | area : city centre||The Phoenix is a fast food restaurant in Luton offering budget food . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||wine and spirits 3 star pub relax by the river at Clowns pub . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One in the riverside area is kid friendly Green Man . The price range is between £ 20 - 25 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is located in the riverside area near the Raja Indian Cuisine . It serves Italian food with a moderate price range and is kids - Friendly . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry serves English food in a family friendly environment . It has a low customer rating . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||With 5 out of 5 as a customer rating , The Rice Boat is a non family - friendly , English restaurant located on riverside . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The Cambridge Blue serves traditional English food , and has been given a rating of five stars . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is in the cheap price range . It is a restaurant \nname : Midsummer House | food : Indian | customer rating : low | near : Café Rouge||Located near Café Rouge Midsummer House is an Indian restaurant with a poor customer rating . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : no||Alimentum is located in the riverside area and features high priced English food and is not kid friendly . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a Japanese coffee shop with 5 out of 5 customer ratings located near Clare Hall in the riverside area . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , in the riverside area , near Express by Holiday Inn , has English food , is kids friendly , has a high customer rating , and has a price range between 20 and 25 pounds . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is located in the city center . It is a low rated Italian restaurant that is not family - friendly and costs more than 20 . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : no | near : Café Rouge||The Plough , near Café Rouge , is a pub serving Italian food . It is not children friendly and in the high price range . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : riverside||There is a Chinese food restaurant called The Phoenix in the riverside area . It has an average customer rating and the price range is cheap . \nname : Bibimbap House | food : Italian | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is in riverside near Clare Hall and serves Italian food with a price range is more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne is a restaurant providing fast food services , but it isn 't family - friendly . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is a three star wine and cheese shop located outside of the City centre with a high price point . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||for best coffee just go to Blue Spice . price is very cheap near to Avalon riverside \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family - friendly Japanese restaurant in the city centre with a low customer rating . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||Near The Portland Arms there is an Italian pub named The Dumpling Tree that welcomes families . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is an expensive - priced coffee shop located close to Burger King called The Eagle . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Serving French cuisine , The Waterman is in city centre with a low customer rating . Not children friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||There is a five star rated French coffee shop in the riverside area near Clare Hall named Clowns . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Avalon||Near Avalon in the city centre , Blue Spice is a highly rated , averagely priced coffee shop and is not kid - friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The coffee shop The Golden Palace is north of the city centre . It serves expensive food and has a 5 star rating . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers British food in the low price range . It is family friendly with a 3 out of 5 star rating . You can find it near the Rainbow Vegetarian Café . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||Located next to the Crowne Plaza Hotel is a restaurant called The Waterman . Families are not welcome . \nname : The Punter | food : English | price : high||The Punter is a restaurant with high prices . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto , an Indian restaurant , has a high customer rating . This is because it is kid friendly and located near the Ranch . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge is a fast food restaurant , with a customer rating of 3 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||The Strada is an Italian pub located near Yippee Noodle Bar with a high customer rating . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||The Blue Spice offers Italian food in riverside for less than £ 20 . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : no||The Rice Boat is an average rated place . It is located in the city centre . It provides French food and it isn 't family - friendly . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge restaurant offers mid - price traditional British fare . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an Indian coffee shop near Crowne Plaza Hotel in the city centre rated 5 out of 5 and family friendly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a low priced coffee shop located near Raja Indian Cuisine called The Wrestlers . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kids friendly pub with a moderate price range . Customer rating is 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a pub that serves Indian food in the twenty to twenty five pound price range near the riverside that is kid friendly . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , it 's inexpensive and family friendly , but the Chinese food at Strada has a low customer rating . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , The Golden Palace offers high priced pub food in the Riverside area . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||moderately priced The Eagle located just up the road from Burger King is a 3 star family friendly eatery . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum serves French food near Yippee Noodle Bar by the riverside with a high customer rating and a price range of £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop with fast food at a high price near The Portland Arms \nname : Alimentum | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||With the price range running more than £ 30 , it 's surprising that Alimentum is a children friendly site that offers Chinese food in the riverside area . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat in Riverside is a 5 star family restaurant . \nname : The Eagle | food : English | customer rating : 5 out of 5||There is a 5 star restaurant called The Eagle . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum coffee shop has a low customer rating . It is low cost and family friendly . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near the Express by Holiday Inn serves Chinese food at a high price in a family friendly environment with high customer ratings and is located right in the city centre \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop located in City centre . It is rated one star . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||Near the riverside can be found a moderate - priced , child - friendly pub named The Olive Grove , which serves Italian food . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a wine bar which is located close to Café Rouge . It has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry serves English food and is family - friendly , and conveniently located in the center of town near the Café Rouge , but it has a low customer rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : no||Zizzis Italian restaurant has an average customer rating as a pub style restaurant that is not classified as family - friendly . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a 5 out of 5 rated Chinese restaurant located riverside near The Rice Boat . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||If you 're looking for an upscale coffee shop , look no further than The Dumpling Tree , a child - friendly , riverside coffee shop near Café Sicilia . \nname : Browns Cambridge | food : Indian | price : less than £ 20 | customer rating : low||Browns Cambridge is an Indian food restaurant that is cheap and affordable , though customers are not generally pleased and have given the restaurant a low rating . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The French coffee shop , The Eagle , is located in the city centre near Burger King . They are adult oriented and have great reviews . \nname : The Waterman | Type : pub | food : French | customer rating : high | area : riverside||The Waterman with French food has a high customer rating . This pub is in the riverside area \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||In city centre near Yippee Noodle Bar is Alimentum , a fast food store . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||At Riverside , The Eagle is rated 5 out of 5 and is cheap \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge is an affordable joint to grab a simple lunch , for work meetings or with friends . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a fair priced coffee shop with Japanese food , in the riverside area and great customer rating . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a one star restaurant near the Yippee Noodle Bar \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : yes | near : The Bakers||Featuring Chinese food priced less than 20 pounds , The Golden Curry is a a family friendly restaurant located near The Bakers . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The cheap highly rated family - friendly coffee shop called The Eagle is located in the city centre , near Burger King . It serves French food . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice has items in the £ 20 - 25 price range and is in riverside . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||With prices starting at £ 0 for delicious Japanese food in a coffee shop environment , The Mill also boasts being close to The Sorrento \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||Zizzi is a restaurant that provides food no kids allowed . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : no||The Wrestlers offers cheap Indian food with average customer rating . It is not family friendly . \nname : Bibimbap House | food : Fast food | price : moderate | area : city centre | near : Clare Hall||In the city centre , near Clare Hall , you can find the moderate Fast food place Bibimbap House . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : city centre||The Waterman in city center serves Italian food . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : more than £ 30||The Dumpling Tree is an Indian restaurant with cheap prices \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Near The Six Bells is a Fitzbillies , providing cheap Italian food . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||In the riverside area is located a child friendly coffee shop . Prices are in the £ 20 - 25 range and the shop has a high customer rating , look for The Zizzi . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is The Rice Boat . It has a low rating but costs less than £ 20 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||There is a mid price ranged restaurant called The Dumpling Tree . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a French cuisine establishment located near Rainbow Vegetarian Café , Strada . The price range is moderate , the environment is not kid friendly and the customer satisfaction rating is a low 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Located in the city centre The Eagle coffee shop , with a customer Rating of 3 out of 5 , offers Indian food for a moderate price . While it is not kid friendly there is a Burger King nearby . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub and no children is allowed . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a French coffee shop near Crowne Plaza Hotel in the city . It is not family - friendly and rated average . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||A cheap hotel near Cambridge is Fitzbillies , part of the chain called Express by Holiday Inn . This hotel was rated 5 out of 5 . \nname : Cotto | food : French | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||With a 1 out of 5 rating , Cotto is kid friendly , located near Ranch , and serves French food . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Located next to The Rice Boat is Loch Fyne , offering high - end Italian . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Moderately priced The Rice Boat serves Indian food of a good standard near the Express by Holiday Inn in the city centre . But is not child friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Zizzi is a 5 star rated coffee shop in the riverside area . It serves dishes for more than 30 pounds in an adult environment . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||The Strada pub is a French food place near the Yippee Noodle Bar . It has low customer ratings . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : no||Alimentum offer Italian food at a moderate cost by the riverside . Unfortunately kids are not permitted . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an averagely rated coffee shop located near Crowne Plaza Hotel in the city centre . It is family friendly and serves Indian food . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix serves French food and is situated in the riverside area . It has a low customer rating . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||with 5 out of 5 stars and in the mid price range Wildwood is a fast food pub \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a child friendly establishment near Café Sicilia with higher end prices . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is located near Café Adriatic . It has high prices with a 5 out of 5 customer rating . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : riverside||A pub in the riverside area , The Mill offers Chinese food for less than £ 20 . \nname : Cotto | food : French | near : Café Rouge||Located near Café Rouge , Cotto serves French food . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : no||The Golden Curry provides Chinese food and with an average customer rating they are not family friendly . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two offers kid friendly French food . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : riverside||The Phoenix is a highly rated restaurant serving British food , it is located on the outskirts of the city centre . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a high - priced fast food coffee shop located in city centre near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A coffee shop located near the Riverside area Fitzbillies is in the low price range and customers have rated it poorly . Its name is Fitzbillies . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a very cheap restaurant located in the centre of the city and delivers take away . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||The kids friendly The Waterman is average priced \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle , a moderately priced Italian coffee shop in the center of the city near Burger King , has a low customer rating and does not welcome children . \nname : The Phoenix | food : Chinese | customer rating : average | area : riverside||The Phoenix provides Chinese food It is located in the riverside . Its customer rating is average . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne is a cheap family friendly Japanese restaurant . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman , with a 3 out of 5 rating , serves Fast food by the riverside . It has a moderate price range but isn 't child friendly . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is a child friendly , city centre pub . It serves expensive French food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a great coffee shop which sells Indian food . Prices ranging from £ 20 - 25 . They have a high customer rating . Can be found in the city centre . No children allowed \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||Wildwood is an Italian pub with a price range of £ 20 - 25 . The pub has a very high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a child - friendly Japanese coffee shop in the Riverside area with a low customer rating and prices higher than £ 30 . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is located near Clare Hall on the riverside . The price is moderate and the food is Italian . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||There is a pub located by the riverside that has a 5 out of 5 customer rating and provides Japanese called The Waterman . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : high||Fast food restaurant The Dumpling Tree has a high price range . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a family friendly coffee shop near Crowne Plaza Hotel in the riverside area with Japanese food . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||There is a cheap restaurant The Wrestlers located in the centre of the city that provides take - away deliveries . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kids friendly place located a few steps of the Express by Holiday Inn . Its prices are moderates , and it has a poor rating between its clients . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a one star restaurant located on the river near The Rice Boat . \nname : Green Man | Type : pub | food : Indian | area : city centre | near : Café Rouge||Green Man is a pub that serves Indian food in the city centre area near Café Rouge . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : no||For English food at high prices that isn 't children - friendly go to The Olive Grove that is a riverside pub \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub that sells Japanese food and is located in riverside and has a customer rating of 3 out of 5 . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a cheap Japanese restaurant with a five out of five customer rating near All Bar One . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Clowns is a pub that is located by the riverside with a high customer rating and a price range of more than £ 30 . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Adriatic||Highly rated and mid priced , Travellers Rest Beefeater is located in the city centre near Café Adriatic . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||There is a variety of wines , cheeses , and fondues to enjoy at The Golden Palace coffee shop . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a five star establishment with a family friendly atmosphere . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||All Bar One is near a sushi restaurant called Midsummer House . Midsummer house is averagely priced and has a five star customer rating . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Blue Spice in Riverside has options priced less than £ 20 . It 's family - friendly and has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop located by the riverside . Its moderately priced Indian food has a customer rating of 1 out of 5 . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Chinese food in the cheap price range . It is near Rainbow Vegetarian Café . Its customer rating is average . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Aromi is a restaurant in riverside that offers Fast food . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||In the Riverside area there is an Italian food venue named The Phoenix . It is in the high price range and has an average customer rating . \nname : Bibimbap House | food : Italian | price : £ 20 - 25 | area : riverside | near : Clare Hall||For the best in Italian food costing between £ 20 to £ 25 in the riverside area , visit Bibimbap House close to Clare Hall . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes||The Olive Grove is a high priced Indian pub located in the Riverside area and is child friendly . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry , a family - friendly fast food restaurant , has a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Cocum coffee shop is an inexpensive fast food restaurant . It is not family - friendly and has a 1 of 5 star rating . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is in riverside near Café Rouge . It is a Japanese venue that is kid friendly with a 1 out of 5 rating . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a low - priced family restaurant next to The Bakers . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a highly rated Japanese coffee shop near Ranch . Prices are average . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a non - child friendly pub with a high price range and a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a low priced restaurant located near The Bakers that is family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a kids friendly coffee shop , located in the riverside area , which provides French food within a price range of £ 20 - 25 . It has a high customer rating . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||eggs and beans are low priced breakfasts at Strada nearby the Rainbow Vegetarian Café . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : no||Zizzi is a pub serving Chinese food . Customers have rated it average but is not family friendly . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum has a customer rating of 1 out of 5 and serves moderately priced Italian food near Yippee Noodle Bar in the riverside area . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , reasonably priced English food in the city centre near the Yippee Noodle Bar . 1 star . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||Near The Bakers is The Golden Curry , it is fast food . and family friendly . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a fast food restaurant in the riverside area . its prices are low . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is low price range restaurant , less than £ 20 . It is family - friendly and has a average rating . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies near The Six Bells is a high price ranged Italian \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix serves English food and has a customer rating of 5 out of 5 , it is located in the riverside area . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is a low - priced restaurant in the city centre Rainbow Vegetarian Café \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||5 out 5 is the rating you get when you dine at The Rice Boat . Located near Riverside this child friendly Japanese restaurant is exceptional . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Browns Cambridge is a one star fast food restaurant . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||The inexpensive Travellers Rest Beefeater is in the riverside area near Café Adriatic and serves average food . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is near Café Brazil in the riverside area . It is an expensive coffee shop with an average price range of more than £ 30 . It has a high customer rating . \nname : Cotto | food : French | customer rating : average | family friendly : yes | near : Ranch||Cotto is a French food place near Ranch . It has an average customer rating and is family friendly . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||The Punter is right off of the river in The Portland Arms , is cheap , and is not a family friendly environment . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry , in the center of the city , is an Italian restaurant . Close to Café Rouge , it does have a low customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||The Wildwood is an affordable coffee shop that serves Japanese food , located in Ranch . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum is a place in the city centre area near Yippee Noodle Bar . They serve Chinese food with a high price range and a customer rating of 1 out of 5 . \nname : The Golden Curry | family friendly : no | near : The Six Bells||There is a restaurant The Golden Curry that is located near to The Six Bells . It does not allow children . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kid friendly restaurant in Riverside which offers Japanese food for £ 20- £ 25 . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat , which has an average customer review , is located near the Rainbow Vegetarian Café and is in the high price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||The Phoenix has a customer rating of 1 out of 5 . It serves Italian food and is in the riverside area . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||A French restaurant that is priced between 20 - 25 euros with an average customer rating with a location in the center of the city is The Phoenix . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap family friendly place serving French Food . It is in the riverside area near the Express by Holiday Inn . It has a low customer rating . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||Midsummer House is a cheap fast food restaurant near All Bar One . It has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne is a restaurant that serves English food that is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee Shop . It is located in riverside area . High price range and have 3 out of 5 costumer rating . \nname : The Twenty Two | food : English | area : city centre | family friendly : no||English restaurant , The Twenty Two , is located near the city centre is and is not family - friendly . \nname : The Eagle | food : Fast food | customer rating : low||Do not visit The Eagle , they are a low rate fast food eatery . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant located near the Express by Holiday Inn in city centre , where it offers English food in a no kids friendly environment at a price range of £ 20 - 25 \nname : Blue Spice | food : English | price : £ 20 - 25 | area : riverside||Blue Spice is located in the riverside . It serves English food in the range of £ 20 - 25 . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves Indian cuisine at cheap , affordable prices . Customers have rated the food as average . Alimentum can be found near the riverside and Yippee Noodle Bar . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||Near The Bakers is The Golden Curry , a family friendly restaurant . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||A medium priced burger restaurant called Alimentum is a great venue for families . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : riverside||In riverside is The Phoenix . Serving Chinese with a 5 out of 5 customer rating . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix is a very well - respected restaurant in the city centre that serves gourmet Chinese cuisine . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Italian pub called Giraffe by the riverside . Is children friendly . \nname : The Mill | Type : pub | food : Fast food | price : high | area : city centre||In the city centre is The Mill , which is a fast food pub in the city centre . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||High priced pub named The Golden Palace is located near Rainbow Vegetarian Café at the riverside . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||Browns Cambridge is rated high by its customers and has a price range of more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a restaurant that serves Indian food and welcomes kids . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||Offering cheap but 5 out of 5 rated fast food for adults , The Cocum coffee shop is not family - friendly . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Midsummer House serves a French food , and this French restaurant is locate near Café Rouge . Midsummer House , but it has average rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop in the less than £ 20 range . They serve Japanese food and can be found near Café Sicilia . They have a low customer rating . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||In the city centre you 'll find an Italian restaurant called The Phoenix which as a price range of £ 20 - 25 and a high customer rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is an Italian pub near Café Brazil whose meals are more than 30 pounds . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a low rated , reasonably priced sushi restaurant . It does not cater for families . \nname : The Phoenix | food : French | customer rating : low | area : riverside||Serving French food , The Phoenix is located in the riverside area and has a low customer rating . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||Located next to The Bakers , The Golden Curry offers great food for the family at amazingly affordable prices . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man serves Chinese food in the high price range and is located at the riverside near All Bar One and it is children friendly \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is a kids friendly restaurant located in city centre called The Waterman . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub that offer drinks at a high price . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two by riverside serves Japanese food and family friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no||The Giraffe is a pub located in the city centre , selling French food . It is not suitable for families . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||If looking for a moderately priced 1 out of 5 star restaurant near the riverside , Travellers Rest Beefeater is a good option - located near Café Adriatic . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an Italian coffee shop in riverside near Burger King with a customer rating of 1 out of 5 \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a place with moderate price range but low customer rating . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||A cheap , family friendly restaurant , Clowns , is near Café Sicilia . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||A children friendly pub near Ranch with an average customer rating is named The Cricketers . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge is a restaurant ranging at less than 20 pounds . It has low ratings . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||There is a restaurant near All Bar One called Midsummer House that is expensive . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a decent assessment of clients and offers eating fast food at average prices . nearby there is a Yippee Noodle Bar \nname : Cotto | food : Japanese | customer rating : high | family friendly : yes | near : Ranch||Cotto is a kid friendly restaurant near Ranch offering Japanese food with a high customer rating . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is an affordable pub but no kids is allowed . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue pub is expensive and offers gourmet burgers \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Chinese place with a low customer rating in the city centre near Café Rouge . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||If you are looking for a high - priced restaurant , go to Browns Cambridge , a Japanese restaurant with a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : city centre||The Mill is a Chinese pub with price range less than £ 20 in city centre . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||Located near Café Adriatic , in the city centre , the Travellers Rest Beefeater has a current customer rating of 3 out of 5 , with a price range of £ 20 - 25 . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||The Wrestlers offers French food at a price range of above £ 30 . Whilst not child friendly it has a customer rating of 5 out of 5 . \nname : Green Man | Type : pub | food : English | area : city centre | near : Café Rouge||Located near Café Rouge , in the city centre , The Green Man pub serves English food . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||For a nice pub try The Vaults , located near Café Adriatic . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||For cheap food there is The Wrestlers public house . It is not family friendly and has one out of five stars . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||There is an average priced British pub called Wildwood . It has a 3 out of 5 customer rating . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : no||The Golden Curry serves English food . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : Bibimbap House | food : Italian | area : city centre | near : The Rice Boat||Bibimbap House is located near The Rice Boat , in the city centre . They serve Italian food . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is an Italian restaurant . They Dumpling Tree has high prices . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : city centre | near : Café Adriatic||Low priced Travellers Rest Beefeater is in city centre located near Café Adriatic . It is low priced with an average customer rating . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||It 's an Italian one . In a pub matter . Noodles are their specialty . The Mill is a very popular place too . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee Shop have 3 out of 5 costumer rating , and £ 20 - 26 price range . It is located in city center . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is an expensive coffee shop called Zizzi in riverside that is not children friendly and only has a 3 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Low priced , family friendly restaurant Fitzbillies in the riverside area rated three star . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||When thinking of taking the children out for French cuisine , The Golden Curry is highly recommended with a 5 out of a possible 5 rating . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||High rated English food served at the Alimentum located in the city centre near Yippee Noodle Bar . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||For Japanese food near The Sorrento on the riverside , go to Browns Cambridge . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||There is a cheap pub The Plough located near Café Rouge that provides Italian food . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||A kid friendly coffee shop is Cocum , offering high customer ratings and £ 30 dining options . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop providing Indian food in the moderate price range . It is near Ranch . Its customer rating is 3 out of 5 . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||If you are looking for a 5 out of 5 restaurant , try Browns Cambridge . It has a price range over 30 . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Located on the riverside near All Bar One , Green Man is a French venue that costs more than £ 30 and is not child friendly . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a family - Friendly Italian place located beside riverside . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Riverside area there 's a average customer rating . Alimentum is near Yippee Noodle Bar that serves Italian food and has a cheap price range . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||There is a coffee shop in the riverside area named Zizzi . It is not child - friendly , has a low customer rating , and possesses a price range of around £ 30 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an affordable Italian restaurant locates in the city centre , near the Express by Holiday Inn . Although it is not family - friendly , it has very cheap prices . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||Wildwood is an English pub in the low price range with high customer ratings . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that offers Fast food to its customers . It is located near The Portland Arms , has a rating of 1 out 5 stars , and is child - friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a well - received restaurant with a wide range of delicious Indian food . It also delivers a fantastic service to young children . \nname : The Golden Curry | food : English | customer rating : average | family friendly : no||The Golden Curry provides average English food . Although it is not a family - friendly restaurant . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is restaurant in the 30 and up price range , with a customer rating of 5 out of 5 . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||The Phoenix is a French food restaurant in riverside . It has a 3 out of 5 customer rating . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice , located along the riverside near Avalon , is a decent , family - friendly coffee shop . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers serves Chinese food for £ 20 - 25 that has high customer ratings that is also kid friendly . \nname : Blue Spice | food : Chinese | price : high | area : riverside||Blue Spice serves Chinese food in the riverside area . Their food is expensive . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Rated 3 out of 5 , Strada is child friendly and high priced . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||5 out of 5 stars from its customers , Aromi is a children friendly , French coffee shop by the river . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves English food and is child friendly . It is located by the Riverside near to The Sorrento . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides French food . It is located at riverside near Express by Holiday Inn . It has a price range of more than £ 30 , a low customer rating , and is not children friendly . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle has a customer rating of 3 out of 5 with its servings of French food . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||The Olive Grove in the Riverside area is a child friendly pub , but has a high price range . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a high priced , kid friendly coffee shop located near The Bakers . \nname : The Mill | Type : pub | food : Indian | price : more than £ 30 | area : riverside||The Mill is a pub that provides Indian food in the more than £ 30 price range . It is located in the riverside . \nname : Strada | Type : pub | food : English | customer rating : 3 out of 5 | near : Yippee Noodle Bar||There is an English pub near Yippee Noodle Bar . It is called Strada and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a 1 star fast food restaurant located north of the city centre and is high - priced . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||For £ 20 - 25 , The Rice Boat serves English cuisine in Riverside near Express by Holiday Inn . Not kids friendly . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located in the City centre area near the Express by Holiday Inn , is the fast - food restaurant The Rice Boat . This low - cost , family - friendly location receives 1 out of 5 stars . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Indian food in the high price range . It is located in the city centre . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Near The Bakers , Giraffe is a child friendly coffee shop with a high price range and a customer rating of 1 out of 5 . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||The Eagle is located in the riverside area . It is rated as high by its customers with an above average price range . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is Located a mile from the city centre near the river edge is our three star family friendly establishment offering a good choice of food and drink for all the family young and old . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese family friendly restaurant that has average ratings . It is located in Riverside next to the Café Rouge . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly coffee shop serving French food under £ 20 with a low customer rating \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low - priced restaurant close to the Rainbow Vegetarian Café that provides fast foods and is family friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub selling good sushi at low prices , but not familiar . It is north of the City Centre . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||Wildwood is a highly rated French pub with a price range of £ 20 - 25 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults , a City Centre coffee shop with a river view , is priced as a mid - range shop . Café Brazil , a neighboring establishment , is less than a block away along that same river . \nname : The Rice Boat | food : English | area : city centre||The Rice Boat serves English food on the city centre . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||Not all age groups are allowed at a store Zizzi pub that provides good quality food and drinks . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The Strada is an exciting Italian restaurant that is not only affordable , but quiet because no minors are allowed . It is right next to the Rainbow Vegetarian Café \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||Welcome to The Waterman , located by the riverside . We serve English food and our price range is cheap . We are not family - friendly and our customer rating is average . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Italian restaurant it is located near Express by Holiday Inn it is children friendly with an average customer rating the price range is high and it is located near the city centre \nname : The Eagle | food : English | customer rating : 5 out of 5||The Eagle is a restaurant serving English food with a top customer rating . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Italian food venue near Rainbow Vegetarian Café that is children friendly and doesn 't cost more than £ 30 . \nname : The Phoenix | food : Italian | customer rating : 3 out of 5 | area : riverside||There is an Italian restaurant , The Phoenix , located in riverside . It has a 3 out of 5 rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Aromi is coffee shop that has Italian food and high customer rating . It is riverside and children friendly . \nname : The Phoenix | food : English | customer rating : high | area : riverside||The Phoenix serves English food on the riverside . This venue has a high customer rating . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is a fast food restaurant that is children friendly with a price range of more than £ 30 . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||The Travellers Rest Beefeater is a family friendly restaurant where you can eat for cheap . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Located on the riverside , The Olive Grove is a great restaurant for the family \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||A family friendly pub in the riverside area , the Giraffe also offers Chinese food . \nname : Loch Fyne | food : Japanese | customer rating : average | area : city centre | near : The Rice Boat||With an average customer rating , Loch Fyne is in the city centre , near to The Rice Boat , a Japanese restaurant . \nname : Midsummer House | food : Italian | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House serves Italian food near All Bar One . It is moderately priced and has a high rating of 5 out of 5 . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Chinese food in the high price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree is a restaurant with fair prices . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a family - friendly Fast food restaurant in the city centre with an excellent customer rating . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum is a burger restaurant suitable for families and offers medium prices . \nname : Loch Fyne | food : Indian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is an Indian food restaurant in riverside near The Rice Boat . It has a 5 out of 5 rating . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||A good Fast food restaurant is The Phoenix with a high costumer rating and low prices starting at £ 20 - 25 . Located in city centre . \nname : Blue Spice | food : English | price : cheap | area : riverside||A cheap English food place in riverside is Blue Spice . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is children friendly , and serves Japanese food on the riverside . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||In the riverside area near The Portland Arms , The Punter is a choice that is both frugally priced and family friendly . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||The Wildwood is a mid ranged pub with average customer reviews . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers is a place that serves French food less than £ 20 . Average Ratings . Not family - friendly . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe near The Bakers is a coffee shop that is kid friendly , moderate price range and has a 1 out of 5 rating . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a non family - friendly establishment serving Italian food with a price range between £ 20 - 25 and a high customer rating in the city centre . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House is located in City centre . They are an expensive Italian restaurant near Clare Hall . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a low price restaurant that does take out . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : no||The Green Man is a quiet establishment near the city center with dishes less than £ 20 . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||The Cambridge Blue is a moderately priced pub . It is located close to Café Brazil . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat rated 5 out of 5 is a non family - friendly Italian restaurant in the city centre \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||There is a French coffee shop near Café Sicilia named The Punter which is not children friendly , has a low customer rating and has a price range more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : yes||An Indian food restaurant that is moderately priced is called the Loch Fyne . It is kid friendly and moderately priced . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop in the city centre that serves Italian food . You will find it near The Sorrento . its prices are moderate . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a restaurant that sells Italian food and is located in the city centre . It has a cheap price range and has a customer rating of 5 out of 5 . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a kid friendly fast food restaurant , with high customer rating and a price range of £ 20 - 25 . It is located in the riverside area . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the moderate price range . It is near The Bakers . \nname : The Phoenix | food : English | customer rating : average | area : city centre||With an average customer rating , The Phoenix serves English food and is located in city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a fast food restaurant providing take - away deliveries in the high price range . It is located after Burger King . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The high - end riverside restaurant The Rice Boat is located near the Express by Holiday Inn hotel . It caters for families . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a mid - priced 1 star restaurant located near Yippee Noodle Bar . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers , is a high - rating , kid - friendly coffee shop near The Portland Arms which offers Japanese food . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||If you are in the mood for Japanese food , try The Punter . It is a family Friendly coffee shop in the less than £ 20 price range with a low customer Rating . It is located near Café Sicilia . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a restaurant that is low - priced and family - oriented . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue is located in the city centre , it is a lowly fast food restaurant . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a Fast - food pub in the riverside area that has a price range of less than 20 pounds , but is not family - friendly . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a pub with moderate prices . It has a 1 out of 5 rating and is kid friendly . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada is a kid friendly place within the price range of £ 20 - £ 25 that is highly rated . \nname : The Plough | Type : pub | food : Indian | price : more than £ 30 | family friendly : yes | near : Café Rouge||Priced at more than L30 , the family friendly pub The Plough is currently serving Indian food near Café Rouge . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in the riverside area near the Yippee Noodle Bar , Alimentum is a high priced Indian restaurant with a 1 of 5 customer rating . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a non - family - friendly English restaurant with a customer rating of 5 out of 5 and has a cheap price range . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry is a three star pasta restaurant , and is family friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||With a customer rating of 1 out of 5 , Zizzi is a children friendly pub that serves Italian food . \nname : Green Man | Type : restaurant | area : riverside||There is a restaurant Green Man in the riverside area . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a moderately priced coffee shop , located by Burger King and offers a family friendly atmosphere . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves French food . It is located in the center of the city near Burger King . It is not family - friendly . The customer rating is low and the price range is less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap family friendly French pub and a coffee shop located near Raja Indian Cuisine near riverside \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is children friendly located in the riverside area and serves French food . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||There is a pub called the Green Man in the riverside area serving English food . It is near the Café Rouge . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes||Pub called Giraffe is a Fast food , family - friendly and located in the city centre \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a low - rated coffee shop , Browns Cambridge , located in the centre of the city near Crowne Plaza Hotel . It serves French food and is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||The Cambridge Blue is a fast food restaurant rated 3 out of 5 . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice is in the riverside area , it is a fast food restaurant with a moderate price range . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||located within Riverside The Twenty Two serves Japanese food and is kids Friendly \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located riverside by Express by Holiday Inn , is not children friendly . The prices are high , and the customer rating is average . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||There 's a moderately priced Japanese pub called The Plough that 's kid friendly . It 's near Café Rouge . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a expensive coffee shop that providing average range food and family services . It is located in city center after Café Sicilia \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , is Fitzbillies , with a family friendly environment average customer rating and reasonable pricing . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||In the Riverside area you can find the family friendly The Twenty Two restaurant offering up English food . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : no | near : Café Rouge||The Plough is a friendly pub near to the Café Rouge in Dulwich , and it serves nice and fresh French foods for it 's visitor on affordable prices . Unfortunately it is not kids friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn , in the centre of the city , has English food , moderate prices and is not kid friendly . It has 1 out of 5 on customer ratings . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is family - friendly they serve fast food that is in City center that is near Crowne Plaza Hotel that has a low customer rating . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||Riverside offers this affordably priced pub , The Golden Palace located near Rainbow Vegetarian Café . \nname : The Phoenix | food : French | customer rating : low | area : riverside||In Riverside , there is a restaurant named The Phoenix which serves French food , but the customer rating is low \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a child friendly venue costing more than £ 30 , it is located near Café Sicilia . \nname : The Golden Curry | food : English | price : high | family friendly : no | near : The Bakers||Near The Bakers , The Golden Curry serves English food has a high price range and is not child friendly . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||There is a restaurant The Rice Boat that provides a high quality foods . It is opened to all age groups . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||A Japanese food restaurant that rates 5 out of 5 is Loch Fyne which is near The Rice Boat in the riverside area . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an expensive restaurant offering sushi . It is located in City centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||A great French coffee shop called Fitzbillies is near the riverside . The prices range from 20 - 25 and is kid friendly . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : no||The Twenty Two provides Chinese food It is located in the riverside . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House near , Café Rouge , serves a 5 out of 5 , French menu \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||By the riverside is a coffee shop called The Eagle that serves Japanese food near Burger King . It is rated average , not child friendly and priced a bit high . \nname : The Twenty Two | food : French | family friendly : yes||Kid friendly French food at The Twenty Two . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a Japanese kid friendly restaurant located near the Crown Plaza Hotel . \nname : The Golden Curry | food : Chinese | price : high | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers serves Chinese food with a high price range , and is considered children friendly . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice is a cheap , non - family - friendly restaurant in riverside with a 5 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family friendly Indian pub in the city centre that is priced lower than 20 . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||Located by the river , The Phoenix is a high - rated fast food place , with prices more than £ 30 . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Providing pub food in the moderate price range , Cocum is child friendly and has a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : cheap||For a cheap price serving Chinese look for The Dumpling Tree restaurant . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi is a low rating and serving pub type French food . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : yes||The Twenty Two is child friendly and serves Fast food located in the city centre . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Near The Rice Boat , Loch Fyne is a low rating English rating restaurant in riverside . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||Located by the riverside , The Rice Boat is a French restaurant that has a customer rating of 5 out of 5 but isn 't family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||In the riverside area is a fast food coffee shop called The Golden Palace that has a moderate price range and a 3 out of 5 rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||There is a non - family - friendly restaurant that serves Japanese food by the riverside . It is called The Twenty Two . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop that offers delicious Indian food , although the price range is high , you will be pleased to know Cotto has high customer ratings . It is located in Riverside near The Portland Arms . \nname : The Olive Grove | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub in the riverside area which has Indian food with prices over 30 pounds . It is child friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an Indian restaurant by the city centre near the Express by Holiday Inn with a 1 out of 5 rating and high price range that is not child friendly named The Rice Boat . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Japanese restaurant , The Golden Curry , is a restaurant that is not family - friendly and has low customer ratings . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Moderately priced , Taste of Cambridge is a restaurant with an unfortunately low customer rating . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||In the city centre near the Yippee Noodle Bar you will find Alimentum . An Indian restaurant with moderate ratings and prices \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a Japanese coffee shop in the riverside area with a low customer rating . it costs more than £ 30 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Located in the city centre , The Waterman is a child friendly French restaurant with a price range of more than 30 . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum provides Chinese food in the high price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is average . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : yes||The venue ' Alimentum ' is located in the city centre . They have a high price range , serve English food and are children friendly . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry serves Italian food in the high price range . It is children friendly and is located near The Bakers . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a cheap pub with a customer rating of 5 out of 5 . It is located near Café Adriatic . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||You can find great Italian food , for less than £ 20 , at The Dumpling Tree . It is a great family restaurant . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a well priced one star fast food restaurant near the city centre and Yippee Noodle Bar . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat on the riverside is Loch Fyne . They get a customer rating of 3 out of 5 for their French food . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kid friendly Japanese pub located near The Portland Arms . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada Japanese food is located near Rainbow Vegetarian Café . They have low ratings , they are family friendly , and their prices range less than 20 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn , located in riverside , is a cheap Italian restaurant . It has average customer ratings and is not family - friendly . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : yes||Alimentum is an Indian restaurant that is moderately priced . It is kid friendly and in the city centre . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||A cheap Italian pub , The Cambridge Blue is located near Café Brazil . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop , by Crowne Plaza Hotel , 3 star rating and is family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Children friendly coffee shop Taste of Cambridge that serves French food can be found at riverside near Crown Plaza Hotel . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : yes||The Golden Curry provides Indian food Its customer rating is low . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre||The Golden Palace is a cheap coffee shop in the middle of the city . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant located by the riverside . Price ranges are moderate and it is rated 1 out of 5 . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults is a cheap family friendly restaurant offering English food . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : low||There is an Indian food restaurant called The Cambridge Blue . Although , they do have a low customer rating . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located in the city centre , near Express by Holiday Inn , is a Japaneses style restaurant with low prices , high ratings , and family - friendly atmosphere . \nname : The Twenty Two | food : Italian | family friendly : yes||The family can enjoy Italian at the kid friendly The Twenty Two . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||Located in Riverside , The Phoenix Japanese restaurant has a price range from £ 20 - 25 and a high customer rating . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : city centre | near : Rainbow Vegetarian Café||Located in the city centre , near Rainbow Vegetarian Café , The Golden Palace is a pub in the more than £ 30 price range . \nname : Blue Spice | food : English | price : less than £ 20 | area : city centre||Want to pay less than £ 20 , go to Blue Spice , English food in the city center . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||There is restaurant Loch Fyne that offers food and drinks at low prices . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub providing take - away deliveries to your family , such as tasty hamburgers . It is located in the city centre . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : no||There is a restaurant called The Golden Curry which provides Indian food , it has a 5 out of 5 rating but is not family friendly . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||A good kid - friendly , English restaurant is Loch Fyne . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle is a moderately priced restaurant in Riverside . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : riverside||There is a cheap Indian restaurant named Blue Spice near riverside . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a cheap , family friendly French coffee shop called Cocum . It has a customer Rating of 5 out of 5 . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Japanese restaurant Alimentum situated down the riverside is a kids friendly place with average price range . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge gets a 5 out of 5 customer rating . It serves English food at affordably cheap prices . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a children friendly restaurant that serves expensive English food . Its located in riverside near All Bar One . \nname : Browns Cambridge | food : Chinese | price : £ 20 - 25 | customer rating : high||Browns Cambridge provides Chinese food in the £ 20 - 25 price range . Its customer rating is high . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||There is a 3 out of 5 rated , kid friendly restaurant called The Golden Curry . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : no | near : Café Rouge||The Plough is a pub serving Indian food situated near to Café Rouge . It is moderately priced , but isn 't kids friendly . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Eat in Browns Cambridge . French food for less than £ 20 but has a low customer rating \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||A family friendly Indian restaurant with an average customer rating is The Golden Curry . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Chinese food in the moderate price range with a customer rating of 3 out of 5 and is kids friendly in the riverside area near Express by Holiday Inn . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||there 's a family friendly coffee shop in a cheap price range near Raja Indian Cuisine called The Wrestlers \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : riverside||The Waterman pub has a low rating and serves Indian food in Riverside . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn is The Rice Boat , kid friendly , has French food , a customer rating of 3 out of 5 and a price range of 20 - 25 euros . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is a low - priced , family - friendly restaurant that customers rate as average . \nname : The Cambridge Blue | Type : pub | food : English | price : £ 20 - 25 | near : Café Brazil||Located near the Café Brazil you will find the pub The Cambridge Blue . On the menu is some very good English food and the prices are great £ 20 - 25 . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice is an expensive Japanese restaurant in riverside providing at a starting price of £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly fast food restaurant rated 5 out of 5 and located in the city centre near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||There is an expensive pub near the Café Brazil called The Cambridge Blue that sell wines and spirits . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||A restaurant that serves average - rate English food is The Cambridge Blue . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The coffee shop , Taste of Cambridge also serves French food . It is located near Crowne Plaza Hotel in the city centre , and is not family - friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : city centre | near : The Sorrento||Italian food at an average price can be bought at The Mill . This is a coffee shop neat The Sorrento in the city centre . \nname : The Plough | Type : pub | food : Indian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is an Indian pub near Café Rouge in the range of over 30 euros , also welcoming children . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Although not family friendly , The Golden Curry has an outstanding rating of 5 out of 5 . It serves up some delicious Indian food . It is located in the city centre near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop , located in the city centre area near to Burger King which serves Italian food . It is cheap and family - friendly with a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes||There is a cheap pub that serves Chinese food called The Olive Grove . It is very cheap . The pub is located by the riverside and is very family friendly . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat public house is in the city centre close to Express by Holiday Inn . It is moderately priced , has 1 out of 5 stars and is family friendly . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||Customers absolutely love The Rice Boat , a children - friendly Italian restaurant located in the Riverside area . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that is kid friendly . Their prices are moderate for their English food . They are located in city centre . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a kid friendly place and serves English food . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Scoring 3 out of 5 stars , Clowns is a low cost pub located by the river . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Zizzi is a non - child friendly coffee shop located near the city centre . While it has high customer reviews , it also has prices ranging from 20 - 25 pounds . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : less than £ 20||The Dumpling Tree is a restaurant serving Indian food with prices less than £ 20 \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes||In the city centre there is a high price , children friendly pub called The Olive Grove that serves Indian food . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Chinese food , price range is cheap , customer service average , in City Centre , family friendly , located near Express by Holiday Inn \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||If you are looking for somewhere serving French food there is a children friendly restaurant down by the riverside called The Waterman . I think it is about £ 30 , maybe more and has quite low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue is an English food restaurant with a customer rating of 1 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop that sells fast food . It is moderately priced , located in the riverside area near The Sorrento . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry isn 't family - friendly , or highly rated by customers , however it 's English food , and right in the center of the city near , Café Rouge . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The French restaurant , The Waterman , in the riverside area , is not family - friendly but has an average customer rating and offers prices less than 20 . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a cheap coffee shop down the road from The Portland Arms . It has high customer reviews . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||There is a coffee shop near the city centre and Burger King called The Eagle . It is both rated low and in the low price range , serves Indian food , and is not family friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||The Waterman pub is located on the river . It is rated three stars . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The English restaurant named The Rice Boat has a high customer rating , on average costing over 30 pounds . It is located in the city centre near the Express by Holiday Inn . \nname : Strada | Type : restaurant | customer rating : average||Average restaurant named Strada . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||A restaurant in the riverside area , The Phoenix , offers English food in the lower price range but has a low customer rating . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : no||The Rice Boat has an average customer rating and is not suitable for children . It is situated near the riverside and serves English food . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies costs more than £ 30 and is near the Rainbow Vegetarian Café \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Strada is child - friendly , but costs a lot and gets a low customer rating . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood , a restaurant with a low customer rating , is near Café Rouge . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly coffee shop Aromi in the city centre that provides Italian food but has low customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is an Italian coffee shop in City Centre , near Burger King , that is family friendly , pricey and highly rated . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||Near Café Rouge is a highly rated restaurant called Wildwood . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop . It offers Indian food . It is in the high price range . It has a average customer rating . It is in the riverside area . It is not a children friendly restaurant . \nname : The Waterman | price : more than £ 30 | family friendly : yes||An expensive child Friendly restaurant is The Waterman . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman offers an adult - oriented Italian menu . This city center restaurant has a perfect 5 out of 5 rating . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop located in City centre , near The Sorrento , that serves average - priced Italian cuisine . \nname : The Punter | food : Italian | price : £ 20 - 25||price Range is £ 20 - 25 , name The Punter , food is Italian \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Find low rated Japanese food on the riverside at Alimentum , near the Yippee Noodle Bar , the price point is more than £ 30 . \nname : Cotto | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||There is a kid friendly Chinese food restaurant with a customer rating of 3 out of 5 near Ranch . It is named Cotto . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||The family friendly pub , Taste of Cambridge is near The Sorrento in riverside . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||The Midsummer House is a restaurant serving English food with an average customer rating . It is located near the Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an Italian style restaurant , which is kid friendly , but has a low customer rating of 1 out of 5 . The price range is high and located in city centre . \nname : The Punter | food : Italian | price : more than £ 30||The Punter , is restaurant more than £ 30 \nname : Midsummer House | food : Chinese | price : less than £ 20 | customer rating : low | near : All Bar One||You can eat cheaply at a low rated Chinese place called Midsummer House near All Bar One . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a Japanese pub , near Yippee Noodle Bar . Strada has a great customer Rating of 5 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||There is a family restaurant that provides picnic lunches as well as wine and spirits near the Café Rouge called The Golden Curry but it has terrible reviews . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes||Giraffe is a family - friendly pub , serving high quality French food . It is located in the city centre . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||Check out The Twenty Two pub in riverside , near Café Sicilia , rated 5 out of 5 by our customers . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a fast food , coffee shop located near Raja Indian Cuisine in Riverside called The Wrestlers . The coffee shop is in the higher price range and is children friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood coffee shop is located near to the outskirts of town , with the Ranch nearby . Wildwood also offers light meal options . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is Fitzbillies . It is moderately priced and family friendly . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is an expensive but child friendly pub that has been given a poor rating by its customers . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man provides Indian food in the high price range . It is located in the city centre . It is near All Bar One . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi is a family - friendly coffee shop located in riverside with an average rating and prices less than £ 20 . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum is a kids friendly restaurant , which serves English food in moderate price and located on the riverside . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre||The Mill is an English pub located in the city centre with a moderate price range . \nname : The Golden Curry | food : English | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant located near The Bakers . It is a kid friendly restaurant that offers a variety of quality native foods . They offer low priced foods for great quality . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serving Indian cuisine located in Riverside kid friendly environment . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a low rated kid friendly fast food place , located on the riverside near Café Rouge . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||The Cambridge Blue is a restaurant serving Japanese food . It has an average customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||The pub , The Mill , is a casual and low cost pub that is located conveniently outside of the city center . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , rated 5 out of 5 by customers , serves cheap Japanese food . Its not family - friendly , and is located near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a 1 star rating place does not allow children . It 's far from the City centre \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is an Italian restaurant that is kid - friendly near the city center and is moderately priced with a customer rating of 1 out of 5 . \nname : The Eagle | food : Italian | customer rating : average||The Eagle is a restaurant that sells good quality Italian food located in the City center . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers provides Indian food in the less than £ 20 price range . Its customer rating is low . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a low rated French restaurant that is family friendly called Strada which will cost less than £ 20 \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||A children friendly coffee shop located in the riverside area near Café Sicilia , The Dumpling Tree has prices more than £ 30 . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||A three star restaurant called Browns Cambridge offers a selection of fish at a high price range . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there is a place called The Rice Boat . It is high - priced , and has a 3 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is an English family - friendly pub with price ranges of less than £ 20 . It is situated by the riverside . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a mid - priced family friendly restaurant near the Rainbow Vegetarian Café . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop serving Indian food in the city centre near Clare Hall . It has a customer rating of 5 out of 5 . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a child friendly restaurant . It has a high customer rating . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an Indian restaurant located by the riverside near The Sorrento And It is not Children Friendly \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : yes | near : Café Rouge||A somewhat more pricey choice for Indian food is The Plough . It is a children - friendly pub , located near Café Rouge . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a Chinese restaurant in riverside with a price range of 20 - 25 . It is kid friendly , has a high customer rating . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a restaurant with an Average customer rating . It is family friendly . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat has a great rating located in the city centre with awesome Italian food \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is child friendly serving Italian food in riverside close to The Sorrento \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop , located next to Raja Indian Cuisine , is a low - cost , family friendly place offering burgers and fries . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre , Fitzbillies is a child - friendly coffee shop with a 5 out of 5 rating . It serves Japanese food in the high price range . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a budget English restaurant near All Bar One , but it has a low customer rating . \nname : The Twenty Two | food : Italian | family friendly : no||The restaurant , The Twenty Two is a non family - friendly restaurant that serves Italian food . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Along the riverside near the Express by Holiday Inn is the Fast food which a high price range and not so children friendly named The Rice Boat \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||There is Japanese food at The Waterman , located near Crown Plaza Hotel . The Waterman is child friendly . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers , near Ranch , is a child friendly pub with an average customer rating . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The English food at The Waterman pub great customer ratings . The Waterman is in the riverside area . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||The Green Man on the riverside close to Café Rouge , is a pub serving Japanese food . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers , located near The Portland Arms , is a coffee shop that serves Italian food . This adults only coffee shop has an average customer rating that is low . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is regularly priced coffee shop serving French food . It is rated 3 out of 5 . It is located near The Portland Arms neat the city centre . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||With excellent customer ratings and a cheap price range , the French coffee shop Cotto is located near The Portland Arms . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers offers a pleasant atmosphere of fast food , visit . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers provides Indian food in the moderate price range . It has a customer rating of 1 out of 5 and is not kid friendly . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||Priced at less than £ 20 The Vaults is a family Friendly place to get Japanese food \nname : The Vaults | Type : restaurant | food : English||The Vaults restaurant specializes in English cuisine . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a customer rating of 3 out of 5 and offers a price range of £ 20 - 25 . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge in riverside is a decent place to take the family for Italian . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Italian restaurant that is family friendly with a moderate price range and a 1 star rating . it is located near to Rainbow Vegetarian Café \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||Wildwood is a pub with a 5 star rating . It serves food and is in the average price range . It is in the city centre . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes||yes , The Olive Grove is Fast food located in the city centre with pub in the high price range \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||For a high priced restaurant in the riverside area try Zizzi . The Wildwood is a high priced pub with a rating of 3 out of 5 . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House , located near Clare Hall and the riverside , is a fast food restaurant that provides food at a medium price range . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is cheap and family friendly , located in Riverside . Low customer rating . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The city centre has a children friendly high priced French restaurant called The Waterman with a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge , budget food and drink . 3 star \nname : The Plough | Type : pub | food : Italian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||There is a pub named The Plough located near Café Rouge that is kid friendly and offers Italian food at a price range between £ 20 to £ 25 . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Midsummer House is a three star restaurant in Cambridge located near Café Rouge \nname : Strada | Type : pub | food : Japanese | customer rating : high | near : Yippee Noodle Bar||Strada is Japanese pub that is well received and right by Yippee Noodle Bar \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : yes||Located in the Riverside area , The Rice Boat serves Chinese food and is family friendly . They have a low customer rating . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry , located near The Bakers , offers wine , cheese platters , and fondue for a mid - level price . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||The Vaults is a coffee shop with a customer rating of 3 out of 5 , which I situated within the city centre near Café Brazil and has a price range of £ 20 - 25 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : city centre||There is a pub that serves Japanese food with a customer rating of 5 out of 5 called The Waterman . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum is children friendly offering pub food at high prices with a customer rating of 3 out of 5 . \nname : The Phoenix | food : English | customer rating : average | area : city centre||You can get English cuisine at The Phoenix . It 's rated about average . It 's also located at the city center . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the Riverside , there is a Japanese highly - rated , child friendly , coffee shop near Crowne Plaza Hotel named Browns Cambridge . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a nice coffee shop in the Riverside area near Avalon with low prices , a large clientele and a lovely family atmosphere \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a low rated but family friendly pub near Ranch . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||The Wrestlers is a high price restaurant . It is kid friendly . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers is a place that is for the whole family where fast food can be eaten . It is a bit expensive for the quality . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is an upscale pub offering entries and brew . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children - friendly coffee shop that serves French food and is found in the riverside area near Raja Indian Cuisine . The price range is more than £ 30 . \nname : The Golden Curry | food : English | price : moderate | family friendly : no | near : The Bakers||The Golden Curry , an English restaurant in a moderate price range that is not kids friendly is situated near The Bakers \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kids - friendly Fast food , near The Sorrento on a riverside . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a fast food restaurant that is children friendly . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is an English restaurant with prices under £ 20 . It is not family - friendly and has a low customer rating . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub located near of Yippee Noodle Bar . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a French pub located in Riverside . It has an average customer rating . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : no||The Olive Grove is a French restaurant not provide food for children or Happy Meal \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults , is a high priced pub with a 3 out of 5 rating near Café Adriatic . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : more than £ 30||The Dumpling Tree is a restaurant providing Chinese food in the more than £ 30 price range . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Located near The Bakers is a kid friendly restaurant called The Plough . It has a price range of £ 20 - 25 . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||Looking for a one star family friend pub , try Zizzi . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace restaurant offers prices less than £ 20 . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a restaurant of average rating , is offering Chinese food and is child friendly . It is located at a riverside . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Located by the river side , Giraffe is an English pub that is also kid - friendly . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly one star restaurant located outside of the City centre . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a traditional British restaurant located on the riverside near Café Rouge . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||A cheap coffee shop near Café Sicilia is The Punter . It is not family Friendly . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||The Phoenix is an average Fast food in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||high priced , Italian restaurant Loch Fyne is a child friendly location . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a fast food joint located near Café Rouge by the riverside . with an average customer rating they are family friendly \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Kid friendly Browns Cambridge serves Indian in riverside , near The Sorrento . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||With prices ranging less than £ 20 , Taste of Cambridge is a restaurant with average customer ratings . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||The Midsummer House is a low - priced 3 star restaurant located near All Bar One . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that has French food and is children friendly . It is located near Crowne Plaza Hotel on the riverside . \nname : Cotto | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Italian food in Cotto near Ranch , kids friendly customer rating 3 out of 5 . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Blue Spice is children - friendly , highly priced and near riverside . It has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a 5 - star , moderately - priced coffee shop on the River to the north of the City centre . This family - friendly eatery serves a range of fast - food options . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Located riverside , Zizzi is a kid - friendly coffee shop with a high customer rating . Their price range is £ 20 - 25 . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman cooks up moderate priced English cuisine on the riverside . Its kids friendly but has a 1 out of 5 average customer rating . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry is a restaurant with a customer rating of 1 out 5 that is also non - family friendly . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||There is high - priced Italian restaurant Alimentum located in the riverside that is in the riverside and it is children friendly . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is in the centre of the city . It 's a pub that serves English food . It has a price range of less than £ 20 and is family - friendly . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn in Riverside serves French food in a family friendly environment and has low customer ratings . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Dumpling Tree is a sit - down type restaurant serving Fast food less than 20 \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a 5 star fine dining restaurant that serves wine and cheese and grapes and fondue close to Café Rouge \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||Near The Bakers is The Golden Curry , which is a fast food place with a price range of less than £ 20 and is not family - friendly . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter is an expensive restaurant that serves sushi . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly Chinese restaurant with a medium - high price range . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is located in city centre near The Portland Arms . The restaurant , although priced at more than £ 30 , are children friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Zizzi is an adult friendly coffee shop near the riverside area . It has prices ranging from more than 30 pounds . \nname : Bibimbap House | food : Fast food | price : high | area : city centre | near : Clare Hall||Bibimbap House is a fast food restaurant near Clare Hall in the city centre . It offers meals in the high price range . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a pub and family friendly that serves Japanese food but is rated low . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||There is a mid - priced pub the Wildwood serving wine and cheese . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove offers Japanese food for less than 20 pounds . It is family friendly and on the riverside . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry , near Café Rouge , is a French restaurant with average ratings . It is family - friendly and located in City Centre . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a kid friendly restaurant and serves Italian . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a kid friendly English restaurant on the riverside with high customer ratings . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||With high prices , French food and 3 out of 5 stars , The Waterman is a child unfriendly eatery in the city centre . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Waterman is a French restaurant located in Riverside with low customer rating . This establishment is not child friendly and requires a price range of 30 euros . \nname : Blue Spice | food : Chinese | price : high | area : city centre||Blue Spice is a Chinese restaurant providing food in the high price range . It is located in City Centre . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a restaurant providing wine tasting and cheese tasting at a medium price range . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a popular coffee shop that let 's kids in . It 's near The Bakers and is cheap . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||The Waterman is an Italian food pub in the riverside area with high customer rating \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : no||Loch Fyne is a high priced restaurant that doesn 't allow children . It serves Chinese food . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , average , family friendly Chinese food restaurant . It is located in City Centre near the Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||Wildwood pub , providing good value meals . \nname : The Punter | food : French | price : moderate||The price range of French food in The Punter , is moderate . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman has Chinese food in the high price Range and a customer Rating 1 out of 5 , in the city centre area and is not child Friendly . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a Children friendly Chinese in the riverside area it has got average customer ratings . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||In riverside is a coffee shop with high price range and a rating of 3 out of 5 , it is near Avalon and yes is also child friendly . It is called Blue Spice . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a pub near The Sorrento . It is child friendly and is located by the riverside . \nname : The Waterman | Type : pub | food : French | customer rating : high | area : riverside||This pub , The Waterman , has French food , in the riverside area , and also has high customers rating . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne is a French restaurant . \nname : The Punter | food : Japanese | price : cheap||The Punter has Japanese food in the cheap price range . \nname : The Vaults | food : English | price : more than £ 30 | family friendly : yes||The Vaults prices are above £ 30 , it is child friendly and serves English food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace , located in city centre , is a coffee shop serving inexpensive Japanese food . Customers rate it 5 out of 5 . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is located by riverside . It is a family - Friendly place with a customer rating of low . price range is less than £ 20 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two serves Indian food . It is on the riverside and is kid friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop serves French for less than £ 20 . Near Raja Indian Cuisine in riverside . No families . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||There is a restaurant called The Plough near to The Bakers . It is friendly for family and the price range is high . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice is located in the riverside area and is serving French food for less than 20 £ . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults is a pub near Café Adriatic . It has a high customer rating and a price range of £ 20 - 25 . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Pub in the riverside area called Clowns is moderately priced and has a rating 3 out of 5 . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers serves Chinese food within the price range of £ 20 - 25 . It has a high customer rating , however it is not kid friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre||The Golden Palace is an Italian coffee shop in the city centre featuring average ratings and low prices . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop in Riverside near Café Brazil . The price range is more than £ 30 and the customer rating is low . \nname : The Golden Curry | food : French | customer rating : high | family friendly : yes||The High Rating The Golden Curry Sells French food in a Kid Friendly Environment \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||For a family friendly restaurant try The Golden Curry . It serves French food . The only thing is that it has low customer reviews . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||The Bibimbap House is located near The Rice Boat in the riverside area . It offers English food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Fast food kid friendly 1 out of 5 Burger King riverside the coffee shop The Eagle moderate \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||The Strada pug serves Italian food . It is near the Yippee Noodle Bar and has average customer rating . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove pub is family friendly . It is located near City Centre . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Japanese restaurant The Rice Boat is not kid friendly , but it is highly rated . It is near the Express by Holiday Inn in the riverside area . It has average prices between £ 20 - 25 . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Café Adriatic is near The Travellers Rest Beefeater in riverside . I just love the food and their prices . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||The Cambridge Blue restaurant is a fast food place with a rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a 1 star , cheaply priced coffee shop named Fitzbillies . It is located near the river to the North of the city centre . Fitzbillies is not suitable for families . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Adult only expensive riverside area restaurant The Rice Boat features great Italian food and is close to the Express by Holiday Inn \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two offers English food in a family - friendly setting . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||The highly priced The Phoenix restaurant sits by the river and scores 3 out of 5 stars . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in the river side , near Express by Holiday Inn . Rating 1 out of 5 , price range is moderate and kids Friendly . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Near All Bar One is a reasonably priced Fast food joint , rated highly by customers , called Midsummer House \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : no||The Giraffe is an Indian food adult only pub located in the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||Cheap Italian food for adults can be found at The Eagle coffee shop , near Burger King on the riverside . Average ratings , and cheap prices . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . Near Express by Holiday Inn . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Strada is a children friendly and rating 1 out of 5 . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a children friendly pub with an average customer rating in the riverside area . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : high||The Cambridge Blue is a Japanese restaurant offering highly rated cuisine . \nname : Midsummer House | food : Chinese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low rated and cheap Chinese restaurant near All Bar One \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Crowne Plaza Hotel is a hotel near riverside in Browns Cambridge that has an average customer rating . It serves Italian food and is a family friendly coffee shop . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family - friendly fast food pub which is located at the riverside , price range is less than £ 20 . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Near the river there is an expensive sushi restaurant called The Waterman . It is family friendly and rated 3 out of 5 . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is located on the riverside near The Sorrento . It is child friendly and serves Italian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is an Italian coffee shop cheaply priced near the city Centre . It is not family - friendly and has a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||In the riverside area , Fitzbillies is a high - priced Indian coffee shop . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a French coffee shop in the Riverside area . Not child friendly , low customer rating , price range is more than £ 30 . \nname : Strada | Type : pub | food : Indian | customer rating : high | near : Yippee Noodle Bar||Near Yippee Noodle Bar , Strada is a pub having Indian food with high customer rating . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a French restaurant near to The Bakers . Prices are below average for the city . It is not family - friendly . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne has Indian food with a customer rating of 5 out of 5 . It is located in city centre , near The Rice Boat . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||The Punter is a cheap place near the The Portland Arms . It is located in the riverside area , and provides a family - friendly environment . \nname : The Vaults | food : English | price : high | family friendly : yes||A high - priced restaurant that is also family friendly is The Vaults . They serve British - style food . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub in the riverside area serving Chinese food . Their food prices are less than £ 20 . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||A coffee shop called The Mill is located near The Sorrento . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop with a high customer rating . It 's near The Bakers and has a price range of more than £ 30 . \nname : The Twenty Two | food : French | area : city centre | family friendly : yes||The Twenty Two is a family - friendly restaurant serving French food . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop and fast food restaurant , with a 1 out of 5 customer rating . It is in the upper price range and is not child friendly . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman pub is located near the river and offers a wide selection of wines , and cuisines . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||The Mill is located nearby The Sorrento , in the riverside area . A cheap coffee shop that also serves Italian food . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix served high priced Chinese food at the riverside . It is rated 1 out of 5 . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||Cotto is an adult oriented Asian food restaurant located near the Ranch . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn and offers child friendly atmosphere with high ratings and low prices . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum is a children friendly restaurant , located in the riverside that provides Italian food in the high price range . \nname : The Punter | food : Japanese | price : high||The Punter sells Japanese food and is high in price range \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a family - friendly fast food restaurant with a moderate price range . located in the city area . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||A coffee shop that serves Japanese food is Cotto . It has cheap prices but a low customer rating . It is located in the center of the city near The Portland Arms . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Cotto , serves Italian food and is family Friendly near Ranch , and has average customer Ratings \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||Taste of Cambridge is an average rated and cheap restaurant option . \nname : Blue Spice | food : Japanese | price : cheap | area : riverside||Blue Spice is a cheap Japanese restaurant in Riverside . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a beautiful riverside coffee shop that offers affordable and delicious small bites from around the world . It is just down the road from The Sorrento \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a child friendly , average priced Italian coffee shop called Cocum . It has excellent customer feedback . \nname : Bibimbap House | food : Indian | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is an Indian restaurant that is moderately priced in the city centre near Clare Hall . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves fast food with an average customer rating is located near Café Rouge alongside the river and is family friendly \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop which serves Indian food . It has a high price range and is child friendly . Customers rate this coffee shop 1 out of 5 . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Phoenix is located on the riverside and serves Fast Food and has a customer rating of 3 out of 5 . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies offers affordable Italian food near The Six Bells . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||A pub with a moderate price range serves Fast food and is called The Mill and is on the riverside . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is 5 out of 5 . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a low cost , family friendly coffee shop situated by the river . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an average family friendly coffee shop that serves cheap Fast food on the riverside . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 3 out of 5||The Cambridge Blue is an Indian restaurant with a rating of 3 out of 5 . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||I heard of this coffee shop called The Vaults near Café Brazil in riverside , its moderately priced but only has a 1 star customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes||A Japanese coffee shop Aromi is in the riverside area that is children friendly with high customer rating \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is fairly cheap in price but has a rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family restaurant with low prices and delicious sushi , located near the Café Sicilia \nname : Zizzi | Type : pub | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub with a 3 out of 5 customer rating that is kid friendly and serves Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that isn 't family - friendly , serves Japanese food near to the Crowne Plaza Hotel in the City centre \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not kids friendly serving French food in Riverside near Express by Holiday Inn . Rating is high with range of £ 20 - 25 . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||There is a mid - priced restaurant called Midsummer House near All Bar One . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne , by The Rice Boat is really popular . It 's Italian food , by the riverside . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee Shop with moderate prices that is in the city centre , not friendly to kids and has a customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||Wildwood is a pub providing family - style dining in the medium price range . It is located in the city center . It has a really good reviews . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a pub by the riverside close to Rainbow Vegetarian Café with a price range of £ 20 - 25 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers in riverside with a price Range of £ 20 - 25 and is kids Friendly is near the Raja Indian Cuisine is a Fast food coffee shop \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a French restaurant with low customer reviews . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop serving inexpensive Indian food near Café Sicilia . It is not family friendly and has an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Along the waterfront , near Raja Indian Cuisine , you will find The Wrestlers Italian coffee shop , sample the adult atmosphere and menu for less than £ 20 . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||I found at The Olive Grove on riverside has kids Friendly area \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman restaurant is not kid friendly , has a customer rating of 1 out of 5 and a moderate price range . Serves Chinese food in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Indian food . Located in city centre near the Crowne Plaza Hotel , this eatery gets a high rating from its customers of 5 out of 5 stars . Please remember this restaurant is not family friendly . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry is a family friendly Italian restaurant with an average customer rating . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : The Bakers||Giraffe is an inexpensive coffee shop for adults only . It is located near The Bakers . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that servers Indian food in the modern price range . Yes it is kids friendly . Its customer rating is 1 out of 5 . It is located by the riverside near Burger King \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : yes||The Twenty Two is family - friendly serving Japanese food in the City Centre \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||Zizzi is a pub that serves French food . It is family friendly and has an average customer rating . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee Shop It provides fast foods at a reduced price and is located near the river , there The Portland Arms \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : yes | near : Café Rouge||An Indian pub called The Plough is situated near Café Rouge . It has a high price range and is child friendly . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : no||Alimentum is a non - family - friendly Italian restaurant in the city centre with a high price range . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||Wildwood pub is serving 5 star food while keeping their prices low . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has a high customer rating with a high price range . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a cheap Fast food coffee shop near Café Sicilia . It is not family - friendly and it has a customer rating of 5 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||An Italian pub named Strada located near Yippee Noodle Bar with a high customer rating . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : no||The Golden Curry provides Indian food Its customer rating is average . \nname : Strada | Type : pub | food : French | customer rating : average | near : Yippee Noodle Bar||Near the Yippee Noodle Bar is Strada . It has a average customer rating for being a French pub \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The French food restaurant near Ranch Cotto is rated 3 out of 5 and is children friendly . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a Japanese restaurant near Ranch . It is children - friendly and rated 5 out of 5 . \nname : The Punter | food : Fast food | price : moderate||The Punter is a great fast food joint that is not too expensive . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : city centre||Zizzi is a restaurant with prices more than £ 30 . It is located in the city centre . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||A cheap family Friendly Indian called Strada near Rainbow Vegetarian Café with a average customer rating . \nname : Green Man | Type : pub | food : Italian | area : city centre | near : Café Rouge||The Green Man pub near the city center is the best Italian Café Rouge \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a low priced , average consumer rated , family - friendly coffee shop , that serves Italian food . It is located near Burger King in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||with high prices and high rating The Golden Palace is a coffee shop with fast food \nname : Midsummer House | food : Chinese | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House serves Chinese food and has a high customer rating , the price range is more than £ 30 and is located near All Bar One . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Near Ranch , there is a Japanese , low rated , child - friendly restaurant named Cotto . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a cheap Indian food spot , it 's a coffee shop style place near Riverside with average ratings and it 's family friendly . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||A family friendly place that serves fast food for less than 20 pounds is Green Man . Located near All Bar One in the riverside area . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a pub which is kid friendly , has a high customer rating and is in the £ 20 - 25 price range . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||Wildwood is an English pub with cheap prices and high customer ratings . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The five star coffee shop Cocum is moderately priced . It is family friendly . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : city centre||For highly rated English pub food try The Waterman in city centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a American style restaurant that is not for families . It is located by The Sorrento . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter , a Fast food place near Café Sicilia , has an average customer rating . It is not family - friendly , is cheap , and a coffee shop . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is located in the city centre . It is a coffee shop that offers a range of fast food . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant that serves Indian food at riverside , near Yippee Noodle Bar . The price range is £ 20- £ 25 and it has a high customer rating . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto , near the Ranch , serves French food . It is highly rated and is child friendly . \nname : The Twenty Two | food : English | area : city centre | family friendly : yes||The Twenty Two is an English restaurant in the city centre , it is a family - friendly venue . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||In the high price range , The Olive Grove is a family - friendly pub . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||Giraffe is a nice building by the riverside . This pub is not family - friendly , but its got nice French food to keep you tied over for a dinner . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is low price family restaurant with average customer rating . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||A family friendly coffee shop names The Cricketers serves French food . It has a low customer rating and is located near The Portland Arms . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum a kid friendly Italian restaurant moderate prices in riverside . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns offers pub style dining at affordable prices . It is located in the riverside area and has a customer rating of 5 out of 5 . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a fast food restaurant located in the city centre . The price tends to be more than £ 30 and is not recommended for children . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||Riverside restaurant The Golden Palace has a customer rating of 3 out of 5 . \nname : The Twenty Two | food : Fast food | family friendly : yes||Fast food for families try The Twenty Two . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||Zizzi is a cheap pub serving fast food . It is family friendly and has a low customer rating . It is located in the city centre . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||For cheap Italian food near the riverside is the family friendly pub called The Olive Grove \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop serves sushi and is located near Burger King . They have a 5 out of 5 star customer rating and have a high price range . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge sits on the riverside , near the Crowne Plaza Hotel , and is a highly rated Italian style coffee shop . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre , near the Crowne Plaza Hotel is an adult orientated , Fast food serving , coffee shop called Browns Cambridge . Customer ratings are average . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is low price coffee shop named The Rice Boat serving French food Located in riverside near Express by Holiday Inn with a customer rating of 3 out of 5 but not kids - friendly \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||At the riverside , nearby Raja Indian Cuisine , there is a child friendly coffee shop called The Wrestlers which serves fast food , for which you can expect to pay more than £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a fast food restaurant near Café Rouge on the riverside . It is not family - friendly , and has a 5 star customer rating . \nname : Browns Cambridge | food : Indian | price : high | customer rating : average||Browns Cambridge is a high priced Indian restaurant with an average customer rating . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a good quality restaurant The Wrestlers . It provides food for the family in average price . \nname : The Golden Curry | food : English | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is an English children friendly restaurant , located near The Bakers . Prices range to more than £ 30 . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||There is a kids friendly restaurant called The Plough near Express by Holiday Inn . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub near Ranch with a high customer rating . \nname : Browns Cambridge | food : Indian | price : more than £ 30 | customer rating : high||There is a great Indian food restaurant that has a high customer service rating . It cost a bit over £ 30 , it 's called Browns Cambridge . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter is a low - priced place to enjoy great meal . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The moderately priced English restaurant , The Rice Boat , is located in the riverside area near the Express by Holiday Inn . It has high customer ratings and is not kid friendly . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One in riverside , is The Green Man , serving Japanese food with price range of £ 20- £ 25 . Child friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a coffee shop named Fitzbillies that serves Indian food in the city centre . It is in the high price range , has a 1 out of 5 customer rating , and is not child friendly . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Browns Cambridge serve expensive Italian food with a low rating . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is a high - end Italian pub in riverside . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||A Japanese pub called Giraffe in the riverside area . It is not family - friendly , \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||Off the river in City Centre is a 1 start restaurant called The Waterman . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre||The Golden Palace is a coffee shop offering cheap Indian . Located in the city centre and customer rated average . \nname : Midsummer House | food : Indian | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is near Café Rouge and provides Indian food with a customer rating of 3 out of 5 . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||A low priced restaurant called The Vaults is suitable for families . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||At the riverside near Café Sicilia lies a highly rated pub , The Twenty Two \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly rated Fast food eatery located in the city centre by Express by Holiday Inn . Yes , it is kid friendly , and is in the price range of £ 20 - 25 . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat offers Chinese cuisine for families . \nname : Browns Cambridge | food : Indian | price : high | customer rating : 1 out of 5||Browns Cambridge serves low rated , high priced Indian food . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||The Giraffe is a Japanese pub in Riverside that is kids friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop , which offers Indian food , within a cheap price range . It has a 5 out of 5 customer rating , but it is not family friendly . I t is located near Café Sicilia . \nname : The Plough | Type : pub | food : Chinese | price : cheap | family friendly : yes | near : Café Rouge||Found a low - priced Chinese restaurant near the Café Rouge pub . It 's called The Plough and is family friendly . \nname : The Punter | food : Fast food | price : £ 20 - 25||The Punter is in the £ 20 - 25 price range , and serves fast food . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||The Plough is a cheap family friendly restaurant located near The Bakers . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop on the riverside . It is a more expensive venue providing Italian food near to The Portland Arms . It has a high customer rating \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , you can find The Rice Boat . This restaurant has a high price range and was rated a good 3 out of 5 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , a family friendly place that serves English food , is by the Crowne Plaza Hotel . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a one star mid priced family friendly coffee shop The Eagle near Burger King in the City centre . It offers Chinese food . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is in the riverside area . It is located near The Rice Boat . It provides children friendly activities . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||For an child friendly , average coffee shop serving fast food try The Eagle , riverside near Burger King \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is an expensive coffee shop located near Ranch , it is rated 5 stars \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Customers rate Zizzi 1 out of 5 . This coffee shop in the riverside area has moderate price range , and no it 's not kid friendly . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||In the over £ 30 price range is a pub called The Cambridge Blue . It serves French food and is near the Café Brazil . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||The Dumpling Tree is a restaurant serving moderately priced fast food . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is an Indian restaurant with high customer rating near the city centre . It has a price range of £ 20 - 25 and is not kids friendly . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly restaurant and has a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is the place to be with a 5 out of 5 rating . For cheap prices its a great coffee shop to take the whole family and dine on some French cuisine , located in city center . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||A high costing restaurant with an average rating is The Twenty Two . It is near The Rice Boat in the riverside area , and it is kid friendly . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Along the riverside near Café Rouge there is a pub named Green Man that serves French food . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||With 5 out of 5 customer ratings , the above average price range is worth it in Browns Cambridge . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||There is a pub on the river named The Olive Grove that , while not family - friendly , offers low prices . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix serves Indian food in the price range of £ 20 - 25 with a high customer Rating in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids - friendly coffee shop called The Wrestlers near riverside next to Raja Indian Cuisine also serve Indian foods with high price . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||There is a family friendly English restaurant within the £ 20 price range in riverside near All Bar One by the name of Green Man . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Come check out Alimentum restaurant serving upscale cuisine mid - price with good reviews located next to Yippee Noodle Bar . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||Near Café Adriatic is a five star rated , high priced pub called The Vaults . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The twenty two pub is moderately liked \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge , in Riverside . Chinese food , The Golden Curry . Customer rating 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a French coffee shop located near Ranch with moderate prices and a customer rating of 1 out of 5 . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two offers delicious fast food in a great family friendly environment . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||If you 're seeking a place serving English food at cheap rates in a family - friendly environment , look no further than The Wrestlers . It scores with a customer rating of average . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves fast food . It is in the riverside area near Café Rouge , has a customer rating of 1 out of 5 and is child friendly \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle is located in Riverside . It is average priced with a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The the riverside area , near Raja Indian Cuisine , there is a Fast food coffee shop in the moderate price range called The Wrestlers . It is not kids friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : more than £ 30||A restaurant with a price range greater than £ 30 that serves English food is The Dumpling Tree . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located in the city centre neat Express by Holiday Inn , is a high priced fast food restaurant . It has a one of five customer rating and us not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies coffee shop in the city centre offers highly rated Italian food in the more than £ 30 range . It is centrally located and is child friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Japanese cuisine served close to the city centre called Fitzbillies has an average customer review with prices less than £ 20 does not cater for children in this coffee shop . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Green Man is a pub near Café Rouge on the riverside . It offers Italian food . \nname : Aromi | Type : restaurant | food : French | area : city centre||Aromi is a French restaurant located in the city centre \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a French restaurant near the All Bar One . \nname : The Golden Curry | food : Fast food | price : more than £ 30 | family friendly : yes | near : The Bakers||Near The Bakers is The Golden Curry , a children friendly fast food restaurant with most offerings ranging more than £ 30 . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The Plough pub is near Café Rouge . It serves mid price range English food , and welcomes children . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children friendly coffee shop that serves Japanese food . It is by the riverside near Crown Plaza Hotel . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies has a cheap price range near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian , non kid friendly moderate priced restaurant that is in the riverside area and near Express by Holiday Inn . It rates a 1 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a inexpensive coffee shop that is a great spot to stop in and grab a picnic lunch as well as wine and spirits that is great for families and has excellent reviews called Cocum . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is an French food serving restaurant . It has a great customer rating of 3 out of 5 , the place is also child friendly and the price range is high . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : yes||Near the city centre is a family - friendly Japanese pub named Giraffes . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , an English restaurant , is an affordable family friendly place to eat . It is located in the riverside area , near the Express by Holiday Inn . It has a high customer rating of 5 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||'Strada ' is a pub near Yippee Noodle Bar . It has an average customer rating and serves Italian food . The prices are moderate . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||A not family - friendly Japanese pub called Giraffe in the riverside area . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is cheap with a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||By the riverside , near Raja Indian Cuisine , there is a Japanese coffee shop named The Wrestlers . It is not kid - friendly , and is in the moderate price range . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is an Italian themed restaurant in Riverside . It isn 't family - friendly but it has a 5 out of 5 customer rating . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Green Man is located in riverside with a moderate price range and is not kids friendly . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is near All Bar One . It is an English restaurant . The price range is moderate and customer rating is 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||The Dumpling Tree restaurant serves French meals for around £ 20- £ 25 . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge has a moderate price range and is rated 3 out of 5 . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||On the riverside , there is a restaurant with a low customer rating named The Rice Boat . They serve French food in a non - family - friendly environment . \nname : Cotto | food : Indian | near : Café Rouge||Cotto serves Indian food and it is located near Café Rouge . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter serves Japanese food for more than £ 30 . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a non family friendly restaurant located in the City centre that serves wines and cheeses and has 1 star . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||Located within two miles of the City Centre , The Golden Palace is a poorly acclaimed coffee shop with steeply priced wares . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near the riverside is a Indian coffee shop that is suitable for kids , however it is priced in moderate standards and only has a 3 out of 5 rating . On the riverside near the Burger King the shop is called The Eagle \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||The Travellers Rest Beefeater is a restaurant with meals going over £ 30 . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two serves Italian food and is family - friendly . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a French coffee shop in Café Sicilia with a kid unfriendly atmosphere and moderate pricing . The store only has a 1 star rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a Fast food restaurant in the riverside area near The Sorrento . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is located near Rainbow Vegetarian Café , with a price range of less than £ 20 . \nname : Fitzbillies | food : Indian | price : cheap | near : The Six Bells||The Fitzbillies is a cheap Indian restaurant near The Six Bells . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a non family friendly Indian coffee shop called The Wrestlers near Raja Indian Cuisine in the city center for less than £ 20 . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no||The Olive Grove is a costly fast food center located in the city centre that has pub facility and does not allow kids . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop located near the riverside . It offers low cost Japanese cuisine , although does have a low customer rating . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Near The Bakers is a Japanese restaurant called The Golden Curry that is kids friendly and has food for 20 - 25 dollars . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill pub on the riverside , with a price range less than £ 20 , serves Japanese food \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The non family friend restaurant The Olive Grove is located in riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing take - away deliveries in the low price range , located near the river . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is an expensive family restaurant out the outskirts of the city called The Waterman . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a French restaurant in the city centre . It has an average customer rating and is family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop which also serves Indian food for less than £ 20 . It has a low customer rating and is located near the riverside . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A children friendly restaurant named The Wrestlers that serves French food . In the city centre area is a coffee shop with a price range of more than 30 . It is near Raja Indian Cuisine . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman provides Chinese food . Its price range is moderate and it has a customer rating of 1 out of 5 . It is in the city centre and it is not kids friendly . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada is a moderately priced restaurant with a customer rating of 1 out of 5 . It is not recommended for kids . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man offers Italian food at a medium price range suitable for families . It is situated near All Bar One . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Riverside Italian restaurant , The Waterman , provides poor service at a high price . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||For moderately priced pasta , try 1 - star rated Wildwood pub . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||French food for less than £ 20 is The Waterman . Located riverside , it has average customer ratings and is not child friendly . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : city centre||Rated 1 out of 5 and moderately priced , Clowns is a pub located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is coffee shop called Browns Cambridge that serves Indian food . They are located in the city centre , near Crowne Plaza Hotel . Its customer rating is low . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre , near the Express by Holiday Inn , is a highly rated fast food restaurant called The Rice Boat . It is not children friendly and is in the higher price bracket of more than £ 30 . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix has Italian food for moderate prices located by the riverside with a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is a river side pub with English food with high prices . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , there is a children friendly restaurant , The Plough . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop with a price range moderate very close of The Sorrento \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Located in Riverside , near The Rice Boat , The Twenty Two is a children friendly restaurant with a high price range and a low customer rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop . It has a 3 out of 5 rating . It is not kid friendly . It has a £ 20 - 25 price range and it is in the city centre . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi is an adult - only 1 starred pub serving traditional British food \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix is by the riverside . It has fast food for a high price and an average customer rating . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is a restaurant with plates ranging from £ 20 to £ 25 . It is located on the riverside near All Bar One . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||Zizzi is a highly rated and children friendly pub , which serves English food . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||Wildwood is a pub that serves English food and 5 out of 5 customers rate it has cheap . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located in the center of the city that is near Raja Indian Cuisine . It is not family - friendly and the price range is less than 20 pounds . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a store that provides a very expensive ice cream . It is located in Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge in the riverside area near the Crowne Plaza Hotel is a top notch place for a quick bit in a family friendly coffee shop style atmosphere . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||Giraffe is a Pub located outside of the city that is not family friendly . \nname : Bibimbap House | food : Chinese | price : high | area : riverside | near : Clare Hall||Bibimbap House is a restaurant in riverside near the Clare Hall . For a high price you can eat Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop for dinner . We make hamburgers . We are near the River at City Centre . Join us . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is expensive with a low rating but it is by the river and is kid friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Rated 1 out of 5 , Aromi , is a coffee shop providing fast food and a children friendly environment . Aromi is located in the riverside of Cambridge . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge offers moderately priced English food and is highly rated by customers . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop that serves Indian food within a high price range but it is not children friendly and has a customer rating of 1 out of 5 . It is in the riverside area . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : city centre||In the center of the city , The Eagle , has a 5 star rating , and is inexpensive . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Yes , in the near Crowne Plaza Hotel available restaurant Italian is The Waterman \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : city centre||The Waterman pub offers highly rated English food in city centre . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | near : Café Brazil||The Vaults is a coffee shop located in the city centre near Café Brazil . However , its price range is about 30 euros and it has a low customer rating . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat serves Chinese food in the low price range . it is located in Riverside . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers serves Chinese food for less than £ 20 . It is family friendly but has a low customer rating . \nname : Loch Fyne | food : Japanese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne located near The Rice Boat is a Japanese restaurant with a low customer rating in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||If you want Japanese food , The Cambridge Blue is fair but has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop serving Japanese food at moderate prices . They are kid friendly and have a low customer rating of 1 out of 5 .. They are located in the city centre . \nname : Green Man | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||A family friendly place located on the Riverside near All Bar One called Green Man has cheap prices . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The coffee shop Zizzi has a higher prices , although is family friendly and has a high customer rating , situated along the riverside \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that also serves Italian food . This is not a family - friendly establishment . Browns Cambridge is located north of City centre , on the river near Crowne Plaza Hotel . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop that offers Fast Food with a moderate price and a customer rating 1 out of 5 . It is located in the riverside and there is no kids area . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||The Blue Spice in the riverside area has French food and average prices . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in the city centre . It serves high quality Indian food in the £ 20 - 25 price range and is kids friendly . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood restaurant is kid - friendly . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry riverside restaurant near French food Café Rouge customer rating 3 out of 5 \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is located in city centre near The Rice Boat . It is children friendly and highly rated by customers . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||Offering fast food in a kid - friendly environment , Zizzi is a pub with a customer rating of 3 out of 5 . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : no||Alimentum serves English food in a non children friendly environment . With above average prices , it is located in the riverside area . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a 5 star Family Friendly restaurant near City Centre . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located near Café Rouge . They are highly rated and family friendly . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||The Mill is a moderately priced French pub located on the riverside . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||For Italian pub fare , try Green Man located close to the riverside and Café Rouge . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||An Indian coffee shop is called Cocum , with a moderate price range but has low ratings from it 's customers . \nname : The Vaults | food : Chinese | price : more than £ 30 | family friendly : yes||Expect to pay more than £ 30 at The Vaults , an expensive but kid friendly Chinese restaurant . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man is a children friendly restaurant with a high price range . It is located in the riverside area . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||Zizzi gave average ratings to a local coffee shop and a Chinese takeout , but made honorable mention for their children friendly services . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : city centre | near : Café Adriatic||Travellers Rest Beefeater offers relatively low priced food and is situated in the city centre near Café Adriatic . It has average customer ratings . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is an English restaurant in the city centre with a customer rating of 1 out of 5 and has a high price range . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||Cotto lives near a Ranch with his parents . He loves going to Fast food restaurants in the city because their children friendly with inside playgrounds , that 's why their customer ratings is so high . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum specializes in traditional pub fare of moderate quality . They have fair prices , and are located just east of the Yippee Noodle Bar on the River . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : city centre | near : Clare Hall||Bibimbap House is a Japanese restaurant located in the city centre near Clare Hall . It serves food for 30 euros and up . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||There is a mid priced restaurant The Dumpling Tree that offers English style food . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a low priced pub near the Café Brazil \nname : Midsummer House | food : Chinese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a restaurant near Café Rouge serving Chinese food . Customers have rated Midsummer House 3 out of 5 . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly restaurant located outside of the City Centre . \nname : Cotto | food : Chinese | near : Café Rouge||For Chinese food go to Cotto in the city center near Café Rouge . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Near The Six Bells is a venue that is children friendly named The Golden Curry . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there is a high range price Indian place called Strada . It is not family friendly and the customer rating is low . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop is located near Burger King in the city centre , It is family - friendly with Fast food costing less than £ 20 but has a low customer rating \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop in the city centre , serving Japanese food . IT has a high customer rating . Prices range from £ 20- £ 25 and kids are welcome . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||The Cambridge Blue is a three star restaurant located in the middle of nowhere \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The coffee shop , The Punter , is a high priced shop located near Café Sicilia offering French food . While children - friendly , customers have only given this location a 3 out of 5 rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||Located in the riverside area is The Olive Grove pub . It is child friendly and serves fast food at more than £ 30 . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum coffee shop provides sushi . It is family friendly , low priced and has a 3 star rating . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||for kids Friendly restaurant at a moderate price Range , the Loch Fyne serves French food \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is an inexpensive coffee shop which serves burgers and fries located along the river near Burger King . It has three - stars and is family - friendly . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||a 3 star family friendly place Giraffe coffee shop up the street from The Bakers . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||For a Japanese coffee Shop which is family friendly go to The Cricketers . They are near The Portland Arms and have a 5 out of 5 rating \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Riverside has a fast food restaurant named The Golden Curry . Located near Café Rouge , The Golden Curry is a family friendly restaurant . The Golden Curry has an average customer rating . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is in Riverside . It has a 3 out of 5 customer rating , it is in the moderate range , and it 's kid friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||restaurant , Loch Fyne , serves Italian and is kid friendly . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a kid friendly pub that serves English food named The Dumpling Tree . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento there is a place that serves English food and is kid friendly , it is located by the riverside and is called Browns Cambridge . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a medium - price , river side pub \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||A child friendly restaurant Cocum has a 1 out of 5 customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||The Eagle is a riverside restaurant with low customer ratings and high price range . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Near The Six Bells there is an English food serving restaurant called the Fitzbillies with a price range of less than £ 20 . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||rating 1 out of 5 The Wrestlers is high costing child Friendly Fast food restaurant \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue restaurant offers breakfast items . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a restaurant that has Italian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a family - friendly low cost Italian coffee shop with an average customer rating located in the city . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a pub located along the riverside . It is child friendly and is child friendly . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a high priced family friendly restaurant located near Express by Holiday Inn . It has a one star rating . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a low rated restaurant offering English food . They are cheap and not conducive for a family . \nname : The Mill | Type : pub | food : Japanese | price : cheap | area : riverside||The Mill is a riverside pub that serves cheaply priced Japanese food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is an upscale , riverside , coffee shop which has highly rated food without a child - friendly environment . Prices are above average for fast food . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The Twenty Two pub is by the river near Café Sicilia . It has an average rating . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a five - star restaurant located near Rainbow Vegetarian Café . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||There is a family friendly pub called The Olive Grove located near the river . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||Near Café Rouge there is a pub called Green Man . Located by the riverside , it serves Japanese food . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue restaurant serves wine and hors d 'oeuvres and has a five - star customer rating . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill is a low - priced pub which is located in the City centre and serves breakfast food . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||By the Rainbow Vegetarian Café and close to the riverside , The Golden Palace is offering pub food for less than £ 20 . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi is a highly rated , family friendly pub , serving Chinese food . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies , located in Express by Holiday Inn , isn 't recommended due to the food being priced over £ 30 , and the atmosphere not being child - friendly . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is a kids - friendly restaurant in the £ 20 - 25 price range , with a customer rating of 3 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , located in the city centre , is a coffee shop that offers fast food . This family - friendly coffee shop can be found near the Crowne Plaza Hotel . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two is a French restaurant . Located riverside . It is not family - friendly . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Cheap Chinese food is served at the family - friendly Strada restaurant . It has an average customer rating and is located near the Rainbow Vegetarian Café . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a poor rated moderate priced restaurant The Strada that is located near Rainbow Vegetarian Café . It is not child friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city centre you will find a moderately priced Fast food coffee shop called The Eagle . It is located near Burger King , is not kid friendly and has a customer rating of 1 out of 5 . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto , offers Chinese food , and has customer rating of 1 out of 5 . It is kids friendly and is located near Ranch . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is an Indian restaurant with a price range of 20 to 25 euros . They are not kids friendly and have a high customer rating \nname : Browns Cambridge | food : Chinese | price : £ 20 - 25 | customer rating : high||You can visit Browns Cambridge for Chinese food . The price range is £ 20 - 25 and it has a high customer rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Looking for Fast food and coffee , Aromi is your place . Situated in Riverside it is child friendly and has a 3 out of 5 customer rating . \nname : Blue Spice | food : English | price : cheap | area : riverside||Blue Spice serves cheap English food . It 's located in riverside . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves French food . The prices are above average and the customer ratings are low . It is not a children friendly establishment . It is located in the riverside area near Express by Holiday Inn . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Blue Spice is an averagely rated and priced restaurant located in the city centre . It is kids friendly . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||The restaurant Wildwood that is near Café Rouge has ratings of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||As a coffee shop that has Italian food , The Eagle 's price range is £ 20 - 25 and has a high customer rating . This non family - friendly place is located near Burger King . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||Green Man in Riverside serve cheap meals and if family friendly . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre||The Golden Palace is an expensive restaurant that has an average customer rating that is a coffee shop in City center that services Italian food . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House near The Rice Boat in riverside does Italian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a lovely quaint little hole in the wall in the city centre . Rated 5 out of 5 stars , it 's a great place to eat with the family if you 're craving the best Italian food , and as if it couldn 't get any better , the prices are a steal . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry has a low customer rating , but is family - friendly , serves English food , and is conveniently located near the Café Rouge in the city center . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a not a family friendly Japanese restaurant located close to Crowne Plaza Hotel \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop offering high - priced Fast food near Café Sicilia . It 's child friendly and has an average customer rating . \nname : Midsummer House | food : Indian | price : high | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One , Midsummer House serves Indian food for high prices and is rated one out of five stars . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies has a high price range and is located near Rainbow Vegetarian Café . \nname : The Plough | Type : pub | food : English | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a pub that provides English food near Café Rouge . It has a price rage of £ 20 - 25 and is kids friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub specializing in fast food . It 's located in the city centre with a moderate price range . The Olive Grove is not a kid friendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee Shop serves a low cost fast food menu in a family friendly atmosphere . Scoring 3 out of 5 stars you can find it by the Riverside in the City Centre . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly Indian coffee shop located riverside near Crowne Plaza Hotel with a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is an Indian food restaurant in the Riverside area . It is family friendly and located near The Sorrento . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a low quality and high priced restaurant located near the Café Adriatic by the Riverside . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is an average rated pub that serves Indian food and is children friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Kid Friendly Zizzi is a pub with Indian food and a high customer Rating . \nname : Strada | food : English | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a English restaurant located near Rainbow Vegetarian Café with a high price range and a average customer rating and is not children friendly . \nname : The Eagle | food : French | customer rating : low||The Eagle is a French restaurant with low customer ratings . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub . It has a 5 out of 5 rating and is located near Ranch . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Offering Italian Cuisine with rave reviews is coffee shop Browns Cambridge near Crowne Plaza Hotel in the city centre \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||Located in the center of the city is a Fast food restaurant named The Waterman that has a cheap price range and a average customer rating that is not family - friendly . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||A fast food pub near The Portland Arms would be the kids friendly place called The Dumpling Tree \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside , near Crowne Plaza Hotel , Browns Cambridge coffee shop has a 3 out of 5 customer rating , serves fast food and is kid friendly . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly fast food establishment situated close to the Crown Plaza Hotel . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a high - priced coffee shop located in the riverside , it 's also children - friendly and 5 out of 5 customers recommend it . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is located in the city centre near Yippee Noodle Bar . It serves expensive Italian food . It has an average customer rating . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a restaurant that serves Indian . it is in the riverside area . its customer rating is 5 out of 5 and it is family friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , a kid friendly French food restaurant , is located riverside near The Sorrento . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers , offers fine sushi dining and take out at affordable prices every day . Located near The Portland Arms . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near the Express by Holiday Inn on the riverside , The Rice Boat provides fast food with moderate prices that is kid friendly along with a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a restaurant that serves expensive Japanese food . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||The Phoenix is a cheap Italian in the riverside area with an average rating \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||Near Ranch there is a pub called The Cricketers . It is not family - friendly and has a low customer rating . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is Fast food but the price range is high and has low , 1 out of 5 , customer ratings . Also it is not children friendly . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : no | near : The Bakers||The Golden Curry near The Bakers are not children friendly , they serve French food with the price Range more than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||A coffee shop that serves French food and highly rated is Browns Cambridge . It is not family - friendly , but it is by the riverside near Crowne Plaza Hotel . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||The Phoenix is a restaurant located right along the water just outside of the City Centre . The prices as well as the reviews are decent . \nname : The Vaults | food : Chinese | price : cheap | family friendly : yes||The Vaults is family friendly serving low cost Chinese cuisine . \nname : The Phoenix | food : English | customer rating : high | area : riverside||The Phoenix by the riverside serves English food and has a high customer rating . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Rated 4 stars , The Browns Cambridge has great food \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||There is an average coffee shop near Avalon in the riverside area . It 's called Blue Spice . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is a high priced pub where we can eat and play billiard . It ' s located outside the city . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a fast -food restaurant with a customer rating of 1 out of 5 . It is situated near All Bar One which has a high price range . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum serves Indian food in the less than £ 20 price range in the City Centre and is family friendly \nname : The Golden Curry | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a fast food restaurant near The Bakers . Price 's range from £ 20- £ 25 . Families are welcomed . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree restaurant specializes in French food with moderate prices . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a low rated but child friendly French coffee shop in the city centre . It is in the price range of more than £ 30 . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||A family friendly Chinese restaurant near Ranch is called Cotto . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||There is The Waterman offering Chinese food and it is located at the riverside . It has an average customer rating and a typical meal is in the high price range . This is no children friendly . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults is a low - priced restaurant in the city centre . Its specialty is sushi and fish . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes||Giraffe - a family - friendly pub in the heart of the city centre serving delicious French food \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||The customer rating is high but it is children - friendly but the name is Strada \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||Zizzi is a family friendly fast - food pub . It has low customer review scores . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Chinese restaurant with an average rating , located near Express by Holiday Inn in the city centre . This venue is not family friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced adult restaurant serving Italian food . It is located in riverside near Express by Holiday Inn and receives a customer rating of 3 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , , in the riverside area , near the Crowne Plaza Hotel , there is a coffee shop with fast food , of and it is kid friendly . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves average priced and well rated Japanese food near Rainbow Vegetarian Café . Family friendly place . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||Located near The Sorrento , The Mill is a mid - priced coffee shop \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a children - friendly restaurant that serves English food \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low - priced , family friendly venue located in the city centre close to Express by Holiday Inn . It is rated 5 out of 5 by customers . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||'The Eagle ' is a kid - friendly French coffee shop . It is a reasonably priced place with high quality reviews . It is located near Burger King in the city center . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||There is a Yippee Noodle Bar with high customer ratings called Strada . It serves Italian food and is a pub \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Located near The Portland Arms , at the city centre , Cotto is an Italian coffee shop . Prices range more than £ 30 . Customers have given it a high rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is located near Raja Indian Cuisine in the city centre area . It serves Japanese food in the moderate price range and is child friendly \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 1 out of 5||If you 're looking for Indian food at decent prices , there 's a pub called Wildwood , but it has a poor customer rating . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Zizzi is a cheap restaurant in the riverside area . \nname : Strada | Type : pub | food : French | customer rating : high | near : Yippee Noodle Bar||Strada is a pub with a high customer rating that serves French food near Yippee Noodle Bar . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : no||Alimentum is a moderately priced Fastfood restaurant in the riverside area . It is not kid friendly . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Traditional British breakfasts moderately priced The Wrestlers is family friendly . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : no||Zizzi is the French pub for the not so family - friendly customer . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is located in the city centre near the All Bar One . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a riverside coffee shop by Avalon . It is kids friendly , has a high customer rating and its price range is between 20 and 25 Euros . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Highly recommended , Strada offers Japanese food for a little over £ 20 . Not child friendly and you can find it near the Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is an adult only fast food coffee shop Taste of Cambridge located in the centre of the city near Crowne Plaza Hotel . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves Chinese style food at high prices with average consumer reviews ; it is located in the riverside area near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a kid friendly coffee shop that serves fast food and is located in the city centre . its customer ratings are low , and has a moderate price range . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Near Clare Hall there is a restaurant called Bibimbap House . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is an non - children friendly Italian coffee shop with prices of more than £ 30 . It has a high customer rating . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman it is a 1 star coffee shop , It is for the whole family \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House serves French food for more than £ 30 . It is near Clare Hall along the riverside \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||Although The Vaults , a coffee shop , near Café Brazil boasts an average customer rating , the price is high in this riverside area . \nname : Cotto | price : less than £ 20 | area : city centre | near : All Bar One||Cotto is located near All Bar One in the city centre . It is in the low price range of less than £ 20 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a child - friendly coffee shop near Avalon by the river . It has a high price range and a customer rating of 3 out of 5 . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum has a low customer rating , their price range is less than £ 20 they serve Italian food , they are located in city centre near Yippee Noodle Bar . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Italian restaurant The Rice Boat is located in riverside near the Express by Holiday Inn . It has received a high customer rating as well as being kid friendly . The price range is £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Riverside coffee shop near Burger King , The Eagle , offers Japanese food and has a 3 out of 5 rating . It is not kid - friendly , but average price . \nname : The Olive Grove | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||Located on the riverside , The Olive Grove serves Indian food with a price range of £ 20- £ 25 and is kid friendly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is an average priced , children friendly restaurant in the riverside area with an average customer rating of 3 out of 5 \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a Japanese restaurant near All Bar One with a customer rating of 3 out of 5 , and a price range of £ 20 - 25 . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : city centre | near : Café Adriatic||Travellers Rest Beefeater located near Café Adriatic in the city centre . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Japanese food . It is family - friendly . Customer Ratings are average . Prices are less than £ 20 . Close the Express by Holiday Inn . 's area riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||A fast food coffee shop near Burger King and in the city centre is The Eagle . It has a high customer rating and a price range between £ 20 - 25 , and it is not kid friendly . \nname : Clowns | Type : restaurant | near : The Portland Arms||Close to The Portland Arms you can find Clowns restaurant . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area there is coffee shop named Clowns . Clowns serves Japanese food that has a low consumer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is family - friendly French food in city centre near Raja Indian Cuisine with a price range less than £ 20 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||In Riverside near to Express by Holiday Inn is children friendly called The Rice Boat . it got good rating The it got fast food at price high . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a great youngster welcoming pub located by Ranch . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , serves Japanese food . It has a child friendly atmosphere and is near Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing Indian food in the more than £ 30 price range . Its customer rating is high . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||For a Japanese , kid - friendly restaurant in the average price range near The Bakers , named The Golden Curry . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . Their food is delicious and they have different wines . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers , has great food and drinks at low prices , everyday . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 - star Japanese coffee shop with low prices , located in City centre . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : city centre||The Phoenix is a restaurant in the city centre that sells English food . Its food is in the cheap price range . It has average customer ratings . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : riverside||A moderately price Indian pub in riverside is called The Mill . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is a family friendly fast food restaurant . Prices are generally above £ 30 . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Family oriented Cocum coffee shop offers a five star , moderately priced lunch or dinner menu . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is a cheaper Japanese venue however its rating by customers is low . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is adults only , upscale Italian dining , near the Express by Holiday Inn , in Riverside , that has a customer rating of 1 out of 5 . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is an expensive establishment in the city centre near The Rice Boat . It has an average rating and is not child friendly . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||For a Kid friendly Indian restaurant in riverside , near The Sorrento , try Browns Cambridge . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The city centre has Japanese food via a coffee shop , The Wrestlers . family - friendly and less than £ 20 , this eatery is located near Raja Indian Cuisine . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a medium priced , one star rated , family friendly sushi bar called The Rice Boat located next to Express by Holiday Inn . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Italian restaurant , highly priced , family friendly and lowly rated The Rice Boat is located near the Express by Holiday Inn . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice in the riverside area , is cheap , family friendly and has an average customer rating . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , there is a kid - friendly fast - food restaurant named The Waterman . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is rated three stars and it 's a family friendly location . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge serves Indian food near The Sorrento in Riverside and is not family friendly . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : yes||Alimentum is a kid friendly French eatery in the city centre . It is in the moderate price range \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child friendly coffee shop which serves Japanese food and is located near Crown Plaza Hotel in Riverside . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||In the city centre is The Phoenix , which has a customer rating of 5 out of 5 , serves Japanese food and has a price range of more than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : high||The Cambridge Blue is rated highly by customers and serves Japanese food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop that serves Italian food in the city centre . It is near the Crowne Plaza Hotel and has a low customer rating . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is an English restaurant with a child friendly environment . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a highly - rated riverside coffee shop that caters to adults . Prices reflect the upscale reputation . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : yes||Offering a family - friendly environment , The Twenty Two serves Italian food in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a mature Italian coffee shop near the riverside with a competitive menu for under £ 20 , near the Raja Indian Cuisine . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is not recommended for families . It 's a low rated coffee shop serving fast food . It 's located in the riverside area , close to Crowne Plaza Hotel . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||Wildwood pub serves fast food cheap prices 5 out of 5 customer rating \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||With a high price range and a low customer rating , The Eagle is a family friendly coffee shop near Burger King by a riverside in the City centre . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||The moderately price ranged French dish Browns Cambridge is customer Rated 1 out or5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a French restaurant located in riverside near The Sorrento . It is not a family - friendly establishment . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||The Cambridge Blue is rated three out of five and is a fast food restaurant . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , is a child friendly fast food restaurant near Crowne Plaza Hotel . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Enjoy a fondue style meal at Strada where you will get value for money selection of cheese and wine . Situated in the city center . close to Rainbow Vegetarian Café . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The kid friendly restaurant , The Rice Boat is located in City Centre near Express by Holiday Inn . The moderately priced Rice Boat restaurant specializes in Indian cuisine . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||By Express by Holiday Inn with high price 3 out of 5 customer Rating Fitzbillies is also family friendly \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||in riverside is a Japanese children friendly place called Browns Cambridge near The Sorrento \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is an establishment serving Chinese cuisine which he 's earned it a 5 out if 5 customer rating , but it is not a family oriented restaurant . \nname : The Rice Boat | food : Fast food | area : riverside||The Rice Boat is a fast food choice if you are in the riverside area . \nname : Aromi | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes||Aromi , stunning coffee shop thats kid friendly .. Yes , high customer rating .. Yes , beautiful view .. Riverside and the very best French food . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no||In riverside you will find a Fast food pub called The Olive Grove . It is not child friend and has a high price range . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a moderately priced , non kid friendly Chinese restaurant located in city centre near All Bar One . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is near The Rice Boat in city centre . It serves fast food . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cheap English food can be found at the family Friendly restaurant The Wrestlers . Its customer Rating is 5 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue is a moderately priced fast food restaurant located near Café Brazil . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||The fast food , family friendly restaurant called Loch Fyne offers food in attractive prices . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a nice coffee shop in the Riverside area , with a nice family atmosphere and warm clientele and Japanese food service \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge is a low price option for dinner . \nname : The Punter | food : Fast food | price : moderate||If you 're in the mood for some American food , The Punter is the place for you , offering burgers , fries , and other fatty snacks at a moderate price . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers , located near the All Bar One , is a fast food restaurant . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a Chinese place with moderate prices and a low customer rating in the city centre that allows kids . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies next to Express by Holiday Inn is a very expensive place . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Indian food restaurant in the centre of the city near The Sorrento . \nname : The Phoenix | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Phoenix a Chinese food restaurant rated one out of five stars with customers in Riverside . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | family friendly : yes||Yes , The Golden Curry is restaurant French with rank 1 out of 5 \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||A fast food restaurant rated 3 out of 5 is The Cambridge Blue . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is a highly priced place located by Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||A coffee shop , called Browns Cambridge , offers Indian food . It has a customer rating of 5 out of 5 , and is located in a city centre . It is not family friendly , and is located near Crowne Plaza Hotel . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms in the riverside area , is the Cotto coffee shop , it has Japanese food in the £ 20 - 25 price range with a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||The Browns Cambridge is a French restaurant with children friendly service and is also near The Sorrento and riverside . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||Local restaurant The Dumpling Tree serves moderately - priced traditional English food . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is a delicious new Italian restaurant with beautiful riverside views . We are located near The Rice Boat , come visit us for some tasty Italian . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man offers a range of Japanese food at all over £ 30 . It is located in the riverside area near All Bar One . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge is a low rated restaurant offering food for less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||Loch Fyne is a Italian restaurant that does not cater to families . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family friendly low price coffee shop located close to Café Sicilia . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an mid - range Italian restaurant north of the City centre near the Yippee Noodle Bar . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a new kid friendly fast food restaurant \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||The Browns Cambridge serves Italian food and has excellent service . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is on the riverside near Café Adriatic . It has an average customer rating , and typically charges less than £ 20 . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop . It is located close to the city center . and has a superb view across the river . It doesn 't provide family - style dining . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Near Café Adriatic in the riverside area is home to Travellers Rest Beefeater . They boost a high price range and a customer rating of 3 out of 5 . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||Looking for cheap Chinese food , The Waterman is located near city centre . The establishment is not family friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||There is a high priced , highly rated , kid friendly coffee shop called Blue Spice . It is in riverside near Avalon . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , on the riverside , you can find the Browns Cambridge . This average rated coffee shop offers Japanese food and it 's family friendly . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults provides a kid friendly environment with a moderately priced French cuisine . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||Wildwood pub has an excellent customer rating for cheap Japanese food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a five star coffee shop Browns Cambridge located near to the Crowne Plaza Hotel . It is child friendly . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Plough is a child friendly restaurant with a high price range . This restaurant can be found near The Bakers . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is a pub by the riverside that serves Japanese food and has a low customer rating . \nname : Bibimbap House | food : French | price : more than £ 30 | area : city centre | near : Clare Hall||Bibimbap House offers French food with expensive price near Clare Hall . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly fast food place with a high customer rating , near Café Rouge , in the riverside area . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||Visit The Golden Curry today for a low price breakfast with a family friendly atmosphere near The Bakers . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a highly rated French restaurant that serves food for more than £ 30 . It is near Rainbow Vegetarian Café . The Strada does not cater to children . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||There is a children - friendly Italian restaurant near the riverside area named The Twenty Two . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||There is a child friendly French restaurant with a price range of more than £ 30 called The Vaults . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a French coffee shop that is kid friendly with a riverside view near Crown Plaza Hotel \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop in the expensive price bracket serving sushi . Its near Café Sicilia and is family friendly . \nname : The Eagle | food : Italian | customer rating : low||An Italian restaurant named The Eagle has a low customer rating . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum , which is located by the riverside , is kids - friendly , costs between £ 20 - 25 and serves Japanese food . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a French establishment located in the city centre near All Bar One . It has a price range of less than £ 20 and is not family - friendly . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||English food is served at The Rice Boat in riverside it has an average customer rating score no a family friendly atmosphere . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is rated 5 of 5 stars . It is great for the family . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||For those with a larger budget , Fitzbillies is an Italian style coffee shop located on the riverside . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum serves English food in the price range of £ 20- £ 25 . It is near the Yippee Noodle Bar in riverside and has a high customer rating . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The Waterman is a high - rated pub that serves English food , located in the riverside area . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated close to Raja Indian Cuisine is The Wrestlers , a Japanese style coffee shop that serves dishes for under twenty pound . \nname : Midsummer House | food : French | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is located near Café Rouge . It serves French food and has a rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a lowly rated restaurant located north of the city . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a fast food coffee shop in the riverside area with a customer rating of 3 out of 5 and has a moderate price range . \nname : The Cambridge Blue | Type : pub | food : Indian | price : high | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil which serves high price Indian food . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||There 's a kid friendly coffee shop in the city centre named , Blue Spice , located near Avalon . With a 5 out of 5 customer rating and a higher price menu . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Italian restaurant , The Rice Boat , has a low customer rating and is not family - friendly , but meals are less than £ 20 . It is located in the city centre near Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a highly rated , family friendly , Japanese coffee shop along the riverside and near Burger King . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||In the riverside area , The Golden Palace restaurant is rated average . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns is a cheap pub in riverside with a 5 out of 5 customer rating . \nname : The Phoenix | food : Indian | customer rating : average | area : riverside||The Phoenix serves Indian cuisine and has been given an average rating by customers . The Phoenix is located near the riverside . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||As a restaurant serving French cuisine , The Cambridge Blue has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a five star coffee shop located near The Portland Arms called The Cricketers . \nname : Cotto | food : Italian | near : Café Rouge||Café Rouge is a restaurant providing Italian food . It is located in Cotto . \nname : Cotto | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a family friendly Italian restaurant located near the Ranch . It has a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : city centre||The Waterman is a low rated Chinese pub near the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a low - priced restaurant in the city centre that delivers take - away , near Burger King . \nname : The Golden Curry | food : Fast food | price : high | family friendly : no | near : The Bakers||The Golden Curry is a non children friendly fast food restaurant . It has a high price range , and is near The Bakers . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||The Giraffe , a pub on the riverside , is a great place to eat Japanese and yes , you can take kids . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a moderately priced eat in restaurant that is family friendly . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap , family friendly Italian restaurant that is near The Bakers . \nname : Wildwood | Type : restaurant | family friendly : yes||There is a kids friendly restaurant called Wildwood . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Highly rater , The Waterman offers fast food in city centre . Not kids friendly but costs between £ 20 - 25 . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is a cheap family friendly French restaurant called Strada with a customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||The Cricketers is Italian food restaurant . It is by All Bar One . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||There is a restaurant named Bibimbap House near Clare Hall in riverside that serves French food and the cost is moderate . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||Offering Japanese food , The Olive Grove is a pub in the city centre that is adult only with high prices . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||In the riverside area , the children friendly pub Giraffe serves Italian food . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is rated three stars and provides breakfast near Yippee Noodle Bar . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada , a Japanese restaurant costing less than 20 pounds is located close to the Rainbow Vegetarian Café . It is not family - friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada , is located down the street from the ' Rainbow Vegetarian Café ' . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||In the riverside area is a pub called The Mill serving cheap Fast food . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 1 out of 5||The Cambridge Blue is a Japanese restaurant that has a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop with Italian food , prices less then 20 , in the riverside and has low ratings . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a place to eat in the riverside area , near All Bar One . Meals at Cotto are priced more than 30 pounds . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||French restaurant The Rice Boat , located on the riverside near the Express by Holiday Inn , provides food at moderate prices and is kid - friendly . It is rated 1 out of 5 with customers . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge has a low customer rating and a price range of less than £ 20 . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||There is a kids Friendly The Wrestlers with moderate price range that provides Fast food and has customer rating of 1 out of 5 . \nname : Blue Spice | food : English | price : high | area : city centre||The Blue Spice serves high end English food and is located in the city centre \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is in the riverside area near Burger King . It serves cheap Indian food and has a customer rating of 5 out of 5 . It is family friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||A cheap , family friendly restaurant is Travellers Rest Beefeater \nname : Cotto | food : French | customer rating : average | family friendly : yes | near : Ranch||Cotto , near Ranch , is a family friendly French food venue with an average customer rating . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel , The Waterman is a adult - only restaurant offering tasty traditional English snacks . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : £ 20 - 25||There is an Italian restaurant called The Dumpling Tree , with a price range £ 20 - 25 . \nname : Strada | food : English | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada , near the Rainbow Vegetarian Café , serves English food . It has an average customer rating , a high price range , and is not children friendly . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is a children friendly fast food restaurant with a price range of more than £ 30 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman has English cuisine in a kid - friendly environment , located near the Crown Plaza Hotel \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Cheap family favorite , The Twenty Two , near The Rice Boat in riverside , got a 5 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||there is a cheap French coffee shop named Cotto that has 5 out of 5 customer rating near The Portland Arms in the riverside area \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The one star The Twenty Two is near The Rice Boat . It is cheap but not family friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||There is a French restaurant called The Cambridge Blue . It has a low customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||On an average day , children enjoy Aromi , a coffee shop located along the riverside . \nname : Loch Fyne | food : Italian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is in the city centre near The Rice Boat , it serves Italian food and comes with an average customer rating \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is located in riverside , serves Japanese food and is child friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove Pub , is a bad that doesn 't over charge for sushi . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : city centre||You can get English food at The Phoenix located in city Centre with the customer rating of 5 out of 5 . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood French coffee Shop near the Ranch has a price range of more than £ 30 . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is an inexpensive 3 - star restaurant offering Italian cuisine and a family - friendly atmosphere . \nname : Bibimbap House | food : Indian | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is an Indian restaurant located in city centre near Clare Hall . It as a moderate price range \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant that has cheap prices . It has a good rating and is located in city center near Yippee Noodle Bar . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The family friendly The Rice Boat restaurant is next to the Express by Holiday Inn hotel and serves high end British cuisine . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 3 out of 5||A restaurant called Browns Cambridge sells average Chinese food at an moderate price . \nname : The Mill | Type : pub | food : English | price : high | area : city centre||The Mill is a English pub located in the city centre area with a high price range \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Indian food is priced moderately for a customer rating of 1 out of 5 and is located in the riverside , boasts being kid friendly and being located near the Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop and fast food restaurant near Burger King with a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge near Crowne Plaza Hotel in the riverside area is a child friendly Italian coffee shop \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||On the riverside , The Rice Boat is located . It is a cheap Fast food . It is family friendly with a customer rating of 5 out of 5 . It is near Express by Holiday Inn . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||The Cotto is a family friendly restaurant serving OK French food located near Ranch . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove has a high price range it is a child friendly pub in riverside \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a high - priced coffee shop offering Japanese food . It is family friendly and located near Café Sicilia . It received a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||Near Clare Hall by the riverside is a fast food and coffee shop named Clowns \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is Located next to shopping and entertainment the Rice Boat is a 5star affordable Japanese restaurant . Located near Express by Holiday Inn other hotels and main highways with Carryout and Chopsticks available \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Welcome to The Rice Boat , where our food is English and our customer rating is average . Our price range is cheap , we 're family - friendly , and we 're located in the city centre by the Express by Holiday Inn \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Japanese coffee shop called Browns Cambridge near Crowne Plaza Hotel in the city centre . It has a customer rating of 5 out of 5 , but it is not family - friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The best coffee shop in the riverside area with a customer rating of 3 out of 5 is the Zizzi and is in the price range of only 20 - 25 . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a Fast food restaurant in the Riverside area . It is child friendly , has a high customer rating , and a price range of £ 20 - 25 . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a family friendly Italian pub in the riverside area . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop expert in Fast food near to Crowne Plaza Hotel \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Zizzi is a coffee shop in the city centre with average customer ratings and a price range of less than £ 20 . It is not a family - friendly place . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||An English food venue Cotto is kids friendly and is located near Ranch . It has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is an expensive coffee shop The Eagle that provides fast food . It is located in the center of the city near Burger King . It has 1 out of 5 customer ratings and is friendly to families . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||With high prices , Blue Spice is a child friendly restaurant located in Riverside . It is rated 1 out 5 . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a fast food family - friendly restaurant located in the city centre . It receives an average customer rating . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||On the riverside , next to Yippee Noodle Bar you can find the restaurant Alimentum . Alimentum serves Italian food with a moderate price range . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||A none family - friendly fast food place called The Golden Curry with a low customer rating . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is s restaurant that serves delicious breakfast in a low cost range . It is located in city center . , nearby Clare Hall . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||With a customer rating of 1 out of 5 The Cambridge Blue restaurant serves English food . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater can be found in the riverside area near the Café Adriatic . Customers will find it in the high price Range and give it a customer Rating of 1 out of 5 . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Blue Spice is moderately priced with a customer rating of 1 out of 5 located in the city centre and is child friendly . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||A French restaurant named Loch Fyne have a moderate price range , but is not welcoming towards kids \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is family friendly with a customer rating of 5 out of 5 situated on the riverside and is really cheap . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||The Waterman has a low customer rating . It is an Italian pub located in Riverside . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice is an Italian restaurant that is moderately priced in the riverside area . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is riverside serving average Japanese food . It is near The Rice Boat . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is an expensive Chinese restaurant with an average customer rating . It is located in City Centre near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a one star coffee shop located next to the river . It 's mid - level price and family friendly place . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a mid - priced pub located near Café Rouge . It is not family friendly . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||Strada 's average prices are over £ 30 , it is Children friendly and has a high customer rating . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a French pub located near Café Brazil in the £ 20 - 25 price range . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix on the riverside has Japanese food and a low customer rating . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is moderately reviewed , moderately priced American restaurant on the river near Yippee Noodle Bar . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a coffee shop located on the outskirts of the City Centre \nname : The Cambridge Blue | Type : pub | food : French | price : high | near : Café Brazil||The pub located near Café Brazil known as The Cambridge Blue serves French food at a high price range . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 5 out of 5||The Cambridge Blue is a Chinese restaurant with good reviews . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||Pub with customer rating of 5 out of 5 sells French food with a price range of more than £ 30 , which includes Wildwood . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man in Riverside , is kids - friendly , offers Italian food in the moderate price range near All Bar One . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a highly rated restaurant that is child friendly \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||In riverside near The Sorrento , there is a kid friendly Indian place called Browns Cambridge . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : city centre||While shopping at city centre enjoy lunch at The Phoenix . This Indian cuisine boasts a 5 out of 5 customer rating . A must try . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : no | near : The Bakers||Giraffe located near The Bakers is a coffee shop with a modest price range of £ 20 - 25 with a high rating from our fans , no children \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a cheap , low rated , not kid friendly place near The Rice Boat . \nname : Fitzbillies | food : Fast food | price : moderate | near : The Six Bells||Fitzbillies is a fast food restaurant and affordable . Next to The Six Bells . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is an adult French food arrangement located at the riverside . It is moderately priced with a customer rating of a 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no||The Olive Grove is an expensive pub in the riverside area that serves fast food . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : no | near : The Portland Arms||The Punter is located in the city centre by The Portland Arms ; it is not child - friendly and the price range is more than 30 pounds . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : city centre||Zizzi is a restaurant in the city centre whose food is above the average price . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is an English restaurant and child - friendly , with a high customer rating and meals ranging in the more than £ 30 price range . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Located in the city centre , Browns Cambridge is a high priced British restaurant with a three of five star rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||The Cambridge Blue is a 3 out of 5 rated Japanese restaurant . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||With a cheap price range and average customer rating , Fitzbillies is located near Express by Holiday Inn . It is also family friendly . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Fast food and is located in the city centre near Café Rouge . It is not family - friendly with a rating of 5 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||For a cheap restaurant with a customer rating of 5 out of 5 , try Taste of Cambridge . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Fitzbillies is an average rated low cost French coffee shop located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving French food in a child friendly riverside location with a high price range and high customer rating . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||If You 're looking for family friendly fast food place I recommend The Waterman located near Crown Plaza Hotel . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||A restaurant called The Mill , can be found near the riverside next to The Rice Boat . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle sells French food . It is rated as 3 out of 5 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers provides a family - Friendly atmosphere with cheap prices , fast food , and an average consumer rating . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge serves Japanese cuisine . Its prices are higher than £ 30 , and it has a 5 out of 5 consumer rating . \nname : The Punter | food : Chinese | price : moderate||The Punter has Chinese food in the moderate price range . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a family friendly pub to get English food by the riverside . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no||The Olive Grove pub in riverside serves Indian food at decent prices , it doesn 't allow children though . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman provides Chinese food in the high price range . It is located in the riverside . Its customer rating is average . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : low||The Cambridge Blue is a Chinese restaurant with low customer ratings . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant called Strada which offers high quality fast - food by the Rainbow Vegetarian Café . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop in the riverside near Avalon , Has 5 out of 5 rating , family friendly and cheap . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||The Cambridge Blue is a restaurant serving French food with a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers , a coffee shop , is near The Portland Arms with Italian food , family friendly , and 5 out of 5 rating \nname : Bibimbap House | food : Fast food | price : £ 20 - 25 | area : riverside | near : Clare Hall||Near Clare Hall area , price range 23 , Bibimbap House , McDonalds . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a kid friendly Chinese restaurant with a 1 out of 5 rating . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||Wildwood is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||Near Café Brazil , there 's The Vaults coffee shop . It has a 5 out of 5 customer rating and a price range of more than £ 30 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : city centre | near : Clare Hall||An Italian coffee shop with an average customer rating . Clowns is located near Clare Hall in the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a high priced Italian coffee shop near Burger King in riverside . It is not children friendly and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a medium - priced coffee shop overlooking the river . It has been rated 3 stars and is ideal for families . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry with a average rating is English and family Friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||There is a pub near Café Brazil named The Cambridge Blue that serves reasonably priced Japanese food . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : yes||Aromi is a pub in the city centre . It is family - friendly and rated low . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a fast food , coffee shop , near The Portland Arms , Kid Friendly , and customers give it a 3 out of 5 \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 1 - star French restaurant near Rainbow Vegetarian Café that is both pricey and family friendly . \nname : Fitzbillies | food : English | price : more than £ 30 | near : The Six Bells||Fitzbillies is located near The Six Bells . It serves English food at more than £ 30 . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family oriented Japanese restaurant . It is located in the riverside area near The Sorrento . \nname : Blue Spice | food : Indian | price : £ 20 - 25 | area : riverside||Blue Spice is an Indian restaurant , with prices in the range of 20 - 25 pounds in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre||With cheap pricing , fast food restaurant The Golden Palace has an average customer review and is located near a coffee shop in city centre . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||You can find Italian pub food that is kid friendly at The Dumpling Tree near The Portland Arms . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||A pub that is not children friendly is Cocum . The customer rating is 5 out of 5 and the price range is more than 30 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a moderately priced restaurant offering Italian food while being kid friendly . \nname : The Phoenix | food : Indian | customer rating : average | area : riverside||The Phoenix serves Indian food and has been given an average rating by customers . The Phoenix is located near the riverside . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is located in the riverside area and provides fast food at low prices \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is a child friendly Italian restaurant called Cotto with a poor customer rating located near Ranch . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is near Burger King and is a Japanese coffee shop in riverside . It has a low rating and is more than £ 30 . It is not child friendly . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a child friendly establishment near Crowne Plaza Hotel that serves French food . \nname : The Eagle | food : Chinese | customer rating : high||The Eagle is a Chinese restaurant with great customer ratings . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap Japanese restaurant called Strada that is kid friendly located near Rainbow Vegetarian Café that has a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly coffee shop . It serves French food in riverside setting , near the Crowne Plaza Hotel . \nname : The Vaults | food : Italian | price : £ 20 - 25 | family friendly : yes||There is an average priced Italian restaurant called The Vaults , that also provides a family friendly atmosphere . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a Chinese restaurant that is child friendly . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||For family friendly English food near All Bar One around riverside , choose Green Man . It is highly recommended and worth the high price . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||coffee shop in Riverside called The Eagle is cheap and near Burger King . It is not family - friendly but is 5 out of 5 . \nname : Zizzi | Type : pub | food : Italian | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub serving Italian food and is kids friendly and as a customer rating of 3 out 5 \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice has a high customer rating and is kids friendly . It is in the riverside area and had a price range of £ 20- £ 25 . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : no||Alimentum , located in centre city , is not child friendly and has high priced Italian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||For a price range less than £ 20 , Fitzbillies is a coffee shop in the city centre , with a low customer rating serving family - friendly Italian food \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a restaurant providing take - away deliveries in the medium price rage , we do not allow children we have a great customer rating of 3.5 , located in a super spot in riverside . \nname : Fitzbillies | food : Indian | price : moderate | near : The Six Bells||If you 're ever near The Six Bells , try out Fitzbillies . This restaurant offers Indian food for a moderate price . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is located in the city centre serving French food . It is a family - friendly pub with a price range less than £ 20 . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a £ 10 family friendly French food near The Bakers \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge is high priced with a low customer rating . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Check out The Wrestlers restaurant that is family friendly and has a great 5 star review . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||The moderately priced , kids friendly establishment The Punter can be found near The Portland Arms in the riverside area . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a traditional Japanese restaurant on the river , near city centre , that won 't break your budget . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a pub that is located by the riverside . It is kid friendly and provides French . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Zizzi , located in the city centre is a 5 star child friendly coffee shop . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||The French restaurant Browns Cambridge is cheap and has a great customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high end coffee shop that is located next to Raja Indian Cuisine . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately - priced French restaurant located on the riverside near Express by Holiday Inn . It is kid - friendly with a customer rating of 1 out of 5 . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||family - Friendly Italian restaurant called The Waterman is near Crowne Plaza Hotel \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located by the Express by Holiday Inn . The Rice Boat is high - priced and is family friendly with 3 stars . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies located in riverside is an adult only moderately priced highly rated fast food coffee shop \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||Browns Cambridge is a moderately priced Japanese restaurant . \nname : Fitzbillies | food : Italian | price : £ 20 - 25 | near : The Six Bells||There is a restaurant called Fitzbillies which serves Italian food within a price range of £ 20 - 25 . It is located near The Six Bells . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Average - rated Chinese food in a child - unfriendly restaurant is on offer at Strada , near Rainbow Vegetarian Café . \nname : The Phoenix | food : English | customer rating : average | area : riverside||There is a cheap restaurant The Phoenix located in the centre of the city that provides take - away deliveries . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||A professionally priced eatery by the river that serves English cuisine and has an average atmosphere is called The Phoenix . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle has a high customer rating and is kid friendly Italian coffee shop near Burger King located in the Riverside area . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||Near Café Brazil , by the river , there is an inexpensive coffee shop named The Vaults . It is highly rated . \nname : The Punter | food : Indian | price : cheap||The Punter offers cheap Indian food . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is 1 out of 5 . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A cheap yet highly rated family venue can be found in the riverside area called Blue Spice \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||An average rated , cheap , family - friendly pub can be found at Cocum . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is close to Express by Holiday Inn in the city centre . It is an expensive Fast food venue , and has a customer rating 1 out of 5 . This venue is not child friendly . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Indian restaurant which is cheap and family friendly , with an average customer rating and is near Rainbow Vegetarian Café \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a kid - friendly French restaurant named The Wrestlers with a one out of five customer rating and moderate prices . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||In the riverside area , The Phoenix restaurant serves French food in the £ 20 - 25 price range . It has a customer rating of 3 out of 5 . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves moderately priced Indian food . Located near Rainbow Vegetarian Café , it has a customer rating of 1 out of 5 and is not kid friendly . \nname : The Olive Grove | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes||Located riverside is The Olive Grove , which serves cheap Indian food . It is a family friendly pub . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The coffee shop named The Eagle has cheap Indian food and an average customer rating . It is near the Burger King on the riverside and is not family friendly . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto , in the city centre near The Portland Arms , is a French coffee Shop . its prices are around £ 20 - 25 , with a customer rating of 3 out of 5 . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly Indian near to Rainbow Vegetarian Café . It is in the high price range but is suitable for children . \nname : Midsummer House | food : Indian | price : more than £ 30 | customer rating : high | near : All Bar One||The Midsummer House sells Indian food near All Bar One . The customer rating is high and the price more than £ 30 . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop in riverside near The Sorrento serves Japanese food priced at less than £ 20 . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix sells cheap French food in the riverside area , but it has a one star customer rating . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||With an average customer rating , Wildwood offers French pub entries for less than £ 20 \nname : Loch Fyne | Type : restaurant | food : French | price : high | family friendly : yes||The Loch Fyne is a restaurant which serves highly - priced French food . It is child - friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||The Zizzi is a family friendly Chinese pub with an average customer rating . \nname : Cotto | food : English | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Family friendly Ranch and Cotto have a customer rating of 5 out of 5 . They offer English food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||If you 're looking for a cheap , family - friendly Fast food coffee shop , with an excellent customer rating of 5 out of 5 , then go to The Eagle located near Burger King in the city centre . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||A Japanese food restaurant in the city centre area is called The Phoenix , they serve Japanese food with a lower customer rating . The prices are more than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 5 out of 5||there is a Indian restaurant with a 5 out of 5 rating called The Cambridge Blue \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : riverside||North of the city center is a British pub named The Waterman that has really great reviews . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly coffee shop on the riverside near the Crowne Plaza Hotel offering Indian food . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon in the area of riverside it has a high customer rating , is children friendly , and is in a price range of more than £ 30 . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||5 star , reasonably dear family restaurant , Alimentum located next to river \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Café Rouge has a restaurant nearby with an average customer rating called Wildwood . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a French coffee shop in the city centre called Aromi . It is kid friendly and has a 5 out of 5 customer rating . \nname : The Plough | Type : pub | food : English | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a children friendly pub that serves English food in a moderate price range near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a fast food coffee shop for adults with a rating of 3 out of 5 . This Riverside location has a moderate price range . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub which serves Italian food for less than £ 20 , it 's near Café Brazil \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a restaurant serving French food . It located near All Bar One \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Chinese food serving Strada , which is child - friendly , is located near Rainbow Vegetarian Café . It has a high price range and an average customer rating . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Next to the Yippee Noodle Bar , the Strada pub is rated three out of five stars . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is restaurant providing Chinese food in average price range . It is located in the city centre near Yippee Noodle Bar . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||In city centre near Yippee Noodle Bar there is a Fast food place called Alimentum . They recently scored a high rating because the prices are around £ 20 - 25 . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||Cheap Indian restaurant , The Wrestlers , only caters to adult parties but has a low customer rating . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is not a family - friendly place with a price range less than £ 20 serving Italian Food at Riverside . Low Customer Rating . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The Golden Curry is an average - rated , family friendly restaurant , serving fast food . \nname : The Plough | Type : pub | food : Japanese | price : high | family friendly : yes | near : Café Rouge||The Plough is a children friendly pub which provides Japanese food located near Café Rouge . It is in the high price range . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||The Phoenix is a low - customer - rated Italian restaurant on the riverside \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop that serves high end foods for reasonable prices . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Near the Café Adriatic , in the riverside area , there is a cheap restaurant called the Travellers Rest Beefeater it has a customer rating of 5 out of 5 \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a restaurant that is kids friendly and has received 1 out of 5 customer rating . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge is an average - rated restaurant in the less than £ 20 price range . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||By the river is a nice 3 star family place called The Rice Boat . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||There is a pub named Wildwood which serves French food . It has a high customer rating with a price range of £ 20- £ 25 . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man provides Chinese food in the moderate price range . It is located in the city centre near All Bar One . It is not kids friendly . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , a family - friendly coffee shop in the city centre serving French food is located near Crowne Plaza Hotel . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||There is a five star restaurant called Alimentum located near Yippee Noodle Bar . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman offers Chinese food at a high price range in the city centre . It is not child friendly and has a 1 out of 5 rating . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||If you are looking for a kid friendly place , there is a restaurant called The Plough which is just next to the Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no||Cocum is a coffee shop that offers Fast Food with a cheap price range , with a average customer rating . There is no family area . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge in the city centre near Crowne Plaza Hotel is a family - friendly , fast food and coffee shop with a customer rating of 5 out of 5 . \nname : The Punter | food : Chinese | price : £ 20 - 25||The Punter has Chinese food in the price Range of £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||For a 3 out of 5 customer rated coffee shop that also serves Japanese food , Browns Cambridge is a child - friendly establishment located near Crowne Plaza Hotel in riverside . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a 5 out of 5 rated , cheap - priced French eatery near Yippee Noodle Bar . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||Located in the riverside area is The Twenty Two . It is children friendly and serves French food . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||For a child friendly coffee shop , check out Cocum , a moderately priced fast food joint with a customer rating of 3 out of 5 . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a highly - rated Indian restaurant in the riverside area . It is child - friendly and in the high price range . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a very highly - ranked English restaurant in the low price range . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a French restaurant located in the area of Riverside . This restaurant is children Friendly and has a customer rating of 3 out of 5 . \nname : The Plough | Type : pub | food : Italian | price : more than £ 30 | family friendly : yes | near : Café Rouge||There is a family friendly Italian pub with price range more than £ 30 located near Café Rouge called The Plough . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is close to The Rice Boat with low rating but moderate prices \nname : The Eagle | food : Italian | customer rating : high||This place called The Eagle has a high customer rating and Italian food . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||On the riverside near The Rice Boat is another location called The Twenty Two . It 's kid friendly , falls in the moderate price range , and has a customer rating of 1 out of 5 . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||Located near Clare Hall is a cheap fast food place named Bibimbap House near he riverside . \nname : The Cambridge Blue | Type : pub | food : English | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil that provides English food with a price range of more than £ 30 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a low - priced restaurant that is not family - friendly . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a family friendly pub in the riverside area near The Sorrento called the Taste of Cambridge . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater near Café Adriatic by a riverside in the City centre with an average price range and a average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a kid - friendly Japanese coffee shop located in the city centre . It has a 3 out of 5 rating and is between 20 - 25 pounds . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Japanese riverside restaurant called The Waterman is family friendly , average , and less than £ 20 . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||High priced The Waterman rates average , serving Indian foods located in the city center is not kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop with French cuisine . Prices are less than £ 20 . Customers give it an average rating . It is located in the city centre near a Burger King . \nname : Fitzbillies | food : Chinese | price : more than £ 30 | near : The Six Bells||Fitzbillies is a high - priced Chinese food restaurant located near The Six Bells . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House serves low - rated French food and is near Café Rouge . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||A high - end one - star pub called The Vaults is located near the Café Adriatic . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn in City Centre . It has an average customer rating and serves English food in the cheap price range and is family - friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Located in Riverside near Burger King , The Eagle , with an average customer rating , is a family friendly Fast food serving coffee shop with a cheap price range . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood serves burgers and fries . It is a high priced coffee shop . Wildwood is located near the Ranch and rated one star . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Browns Cambridge is a high priced fast food restaurant . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||Expensive riverside restaurant called Zizzi . \nname : Bibimbap House | food : Chinese | area : riverside | near : The Rice Boat||Bibimbap House provides Chinese food in riverside . It is near The Rice Boat . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is a fast food restaurant in the city centre . Customers rated it 3 out of 5 and it is moderately priced . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||The Vaults coffee shop is situated near Café Brazil . Here you can eat for £ 20- £ 25 . The Vaults has a high customer rating . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||There is a moderately priced Japanese restaurant called The Vaults which is kids friendly . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : no||There is a place that serves English food in the city centre called Alimentum . The price range is less than £ 20 . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||There 's an inexpensive pub called Wildwood that sells a decent British breakfast . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : city centre||Blue Spice is a highly priced fast food restaurant located in the city centre . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||A restaurant that serves English food and is children friendly named The Wrestlers , has a high price range and customer rating of 1 out of 5 . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a highly - rated kids friendly English food place near Café Rouge in the area of riverside . \nname : Green Man | Type : pub | food : Chinese | area : city centre | near : Café Rouge||In the city centre near Café Rouge is a pub serving Chinese food called the Green Man . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Highly rated Fitzbillies is a city centre French coffee shop . It is expensive but highly rated . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an expensive , highly rated establishment serving Japanese food in the city centre near Express by Holiday Inn . It is not child friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a kid friendly Italian food restaurant . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly restaurant that serves Japanese near the Ranch with a low customer rating . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | near : The Sorrento||At city centre near The Sorrento , a coffee shop called The Mill provides French food which has a price range of more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||Loch Fyne is a cheap place to eat so good on a budget . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter serves Japanese food at a low price . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the high price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Punter | food : French | price : moderate||The Punter has a moderate price range and serves French food \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a pub with high customer ratings , ranges in price from £ 20 - 25 and is not kid friendly . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||Zizzi pub is a restaurant that provides good quality foods and drinks . It is not opened to all age groups . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers serves Japanese food at a moderate price is not kid friendly and only receives a customer rating of 1 out of 5 . \nname : Midsummer House | food : Indian | price : £ 20 - 25 | customer rating : high | near : All Bar One||The Midsummer House offers amazing Indian food , affordable price range of £ 20 - 25 , has a high customer rating and is near All Bar One . \nname : Midsummer House | food : Chinese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House sells Chinese . It is located near Café Rouge and has a rating of 5 out of 5 \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||The pub called Giraffe is located at riverside . The pub provides fast food while also being kid friendly . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove pub in the riverside area serves English food . It is family friendly and the price range is cheap . \nname : Blue Spice | food : Fast food | price : moderate | area : city centre||Blue Spice in city centre has moderately priced fast food . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kids friendly restaurant that sells Italian food . It is near the Crowne Plaza Hotel . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn , The Rice Boat is an average , moderately priced , non - family - friendly English restaurant . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly restaurant that is rated 5 out of 5 by customers . They serve cheap pub food . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill is a pub restaurant with an average price range . This restaurant is in the riverside area and it sells English food . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a fast food coffee shop with a customer rating of 5 out of 5 . It is located near to Crowne Plaza Hotel , by the riverside but it is not family - friendly . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Improving it 's low rating Browns Cambridge offers Japanese cuisine starting at more than 30 euros . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||for a family friendly fast food place with high places and 1 out of 5 stars there is Strada which is near the Rainbow Vegetarian Café \nname : Fitzbillies | food : Fast food | price : high | near : The Six Bells||There is a high - end fast food restaurant located near The Six Bells . It is called Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a fast food , kid friendly , coffee shop that is located in the city centre with a moderate price range and low customer rating . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||In the centre of the city near Yippee Noodle Bar is an average Chinese restaurant with inexpensive food called Alimentum . \nname : Midsummer House | food : Fast food | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is a Fast food place near the Café Rouge . It has a customer rating of a 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||With a high price range and low customer service rating of 1 out of 5 , a family - friendly Italian coffee shop named The Eagle has opened in the city centre near Burger King . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||The Eagle has a high customer rating and a price of 20 to 25 pounds . It is located in riverside . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a kid - friendly restaurant with a high customer rating . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Blue Spice serves Italian food with a cheap price range in the riverside area . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||Taste of Cambridge is a restaurant that has a price range of £ 20 - 25 , and a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||Located on the banks of the Thames The Olive Grove is an adults only restaurant serving beluga at moderate prices . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is an expensive pub located near Café Adriatic . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Brazil||The Vaults is a moderately priced coffee shop located near Café Brazil in the City Centre with a 1 out of 5 customer rating . \nname : Midsummer House | food : Indian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a cheap Indian restaurant located near All Bar One . It has 5 out of 5 customer ratings . \nname : Loch Fyne | food : Indian | customer rating : low | area : city centre | near : The Rice Boat||In city centre there is an Indian place called Loch Fyne , it has low ratings but is right there near The Rice Boat . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop that has Italian food with a moderate price range , is kid friendly with a 3 out of 5 customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap French coffee shop named The Wrestlers that is family friendly in riverside by Raja Indian Cuisine . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is rate 1 out of 5 by customers and is located by the riverside near Café Adriatic . The price range is high . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies coffee Shop , located near the River Cam in Cambridge , has a one - star rating and is not suitable for families with small children . Its low - priced menu includes sushi and seafood . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : city centre||The Eagle , five star rated has cheap fare in the center of the city . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : no | near : The Portland Arms||An Italian coffee shop near The Portland Arms that is not family - friendly is called The Cricketers . It has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : yes||The Loch Fyne restaurant serves Chinese food . It is child friendly and high priced . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a English , high rating , kid friendly venue . The price range is £ 20 - 25 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Zizzi is an expensive , non - child friendly coffee shop in the city centre with a price range exceeding £ 30 and has a low customer rating . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||There is a cheap fast food restaurant Bibimbap House located in Riverside , nearby Clare Hall . They focus on providing cheap fast food in the Riverside Area . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , The Wrestlers coffee shop family friendly and well priced \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop in the city centre near Crowne Plaza Hotel . It is family - friendly and has a customer rating of three out of five . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman , in the riverside area , serves fast food in a pub setting . Customers rate it as average . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is located near The Portland Arms . This coffee shop offers Japanese food and currently has a customer rating of 3 out of 5 . Kids Friendly - yes . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid - friendly pub located at the riverside with a price range of £ 20 - 25 . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is in the £ 20 - 25 price range is highly rated and kids friendly . It is located near Express by Holiday Inn . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Blue Spice is in the city centre . It has low ratings and is not family - friendly . its price range is less than £ 20 . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is a Chinese restaurant that is cheap . It is in riverside with an average rating and not family friendly . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice offers average priced food . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a 3 stars restaurant , located near Express by Holiday Inn . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Offering a French cuisine , The Waterman is an average priced restaurant located in the center of the city . Customer Rating is 3 out of 5 . Not a kid friendly atmosphere . \nname : The Vaults | Type : restaurant | food : Italian||There is a restaurant that servers Italian food , its name is The Vaults . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop in the low price range serving French food , situated near Raja Indian Cuisine \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a 5 stars pub with middle prices in Café Adriatic . \nname : The Mill | Type : pub | food : Indian | price : more than £ 30 | area : riverside||The Mill is a pub Indian restaurant that located to the riverside . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is not child friendly , has English food , the price range is high , has a 1 out of 5 customer rating , and is near the Rainbow Vegetarian Café . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||A family friendly coffee shop , with prices under £ 20 and located near The Bakers . Named Giraffe , it has been rated law by customers . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : yes||There is a family - friendly pub with cheap prices The Olive Grove located in city centre . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man serves Italian food in moderate price range , it is not kids friendly place . You can find It in riverside area near All Bar One . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||Not kids friendly and poor customer rating , 1 out of 5 , is the French food store called The Wrestlers . It has moderate price ranges . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : no | near : The Bakers||Located near The Bakers , The Golden Curry is a Chinese restaurant that is moderately priced . It is not kid friendly . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Located in the riverside area , The Waterman is a highly - rated , kid - friendly Chinese restaurant with prices ranging from £ 20 - 25 . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is not a family - friendly coffee shop that serves English food with a customer rating of 5 out of 5 and is located near Rainbow Vegetarian Café . \nname : Green Man | food : Indian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||A family friendly Indian restaurant riverside is the Green Man . It is inexpensive and located near All Bar One . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||An Indian pub named Zizzi is child friendly , with a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies Indian coffee shop is moderately priced , kid friendly , and rated 3 out of 5 by customers . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||A French coffee shop , The Punter , is not family - friendly , provides average service at less than £ 20 near Café Sicilia \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop that has fast food options . It is located in the city centre with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies coffee shop located in city centre serves Italian food at less than £ 20 and has a low customer rating is not family - friendly , \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a 1 star restaurant that serves wines and cheeses . It is family friendly and moderately - priced . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a moderately priced restaurant near to Rainbow Vegetarian Café . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a restaurant providing fast food in the low price range . It is located near All Bar One . There is a cheap restaurant Midsummer House located near All Bar One that provides Fast Food . Midsummer House is a low - priced restaurant near the All Bar One that provides Fast Food . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||Loch Fyne is a restaurant providing French Food . Start from low price and friend - family . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is in the city centre near Express by Holiday Inn . It is not kid friendly and serves high rated , moderate priced Chinese food . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||You will be traveling to Browns Cambridge which is right by the riverside . The location is near The Sorrento . There will be a lot of Japanese food that will be provided for dining and the trip will be , yes , kid friendly . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||There is a pub located in the city centre area . It is called Clowns and it has a customer rating of 5 out of 5 and a price range of more than £ 30 . \nname : The Vaults | food : Chinese | price : £ 20 - 25 | family friendly : yes||The Vaults offers Chinese food between 20 - 25 Euros and is kid friendly . \nname : Clowns | Type : restaurant | near : The Portland Arms||Close to The Portland Arms you will be able to find a restaurant called Clowns \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , near The Rice Boat in riverside , is high end , children friendly , and highly rated . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Midsummer House , near All Bar One , serves cheap English food and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge serves Italian food and is family - friendly . Just along the riverbank from the Crown Plaza Hotel , it only has a one - star rating so far . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a Japanese coffee shop by the river . It is family friendly and tasty . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The adult coffee shop serves fast food for £ 20 - 25 . It has a high rating and is called Cocum . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : average||The Browns Cambridge is a Chinese restaurant in the high price range . The customer rating is average . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix in the City Centre is a French restaurant known for its expensive and poorly reviewed food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop offering moderate Japanese food . Situated in the city center close to Burger King \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||the Strada sells Chinese food at moderate prices . i give it 3 out of 5 stars and this place is kids friendly . it is next to Rainbow Vegetarian Café \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Giraffe coffee Shop is near The Bakers , it is family friendly with a price range of less than £ 20 . Customers have given it an Average rating . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a high customer rating and a cheap price range . it serves Japanese food and is family friendly , it is located in riverside near the Express by Holiday Inn \nname : The Cambridge Blue | Type : pub | food : Chinese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a Chinese food Pub for less than £ 20 near Café Brazil \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Located in city centre near All Bar One , is a kid friendly restaurant called The Green Man . It has moderate price range and serves English food . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : no||The Golden Curry is an Italian eatery with an average customer and are not family - friendly . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is a Fast Food restaurant called Strada . They are not kid friendly have a high customer rating and are priced between 20 - 25 euros . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in riverside near Express by Holiday Inn . £ 20 - 25 price range and High costumer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Irresistible Cocum and succulent combo , a hamburger quality , addictive chips , and soda are cool and calm your hungry beast \nname : Midsummer House | food : Indian | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a restaurant serving Indian cuisine . It has a customer rating of 3 out of 5 . Midsummer House is located near Café Rouge . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : yes | near : The Sorrento||Taste of Cambridge is a centrally located family pub near The Sorrento . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill has Japanese food and is a pub . It is in riverside and has a price range of more than £ 30 . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||The Browns Cambridge is a kids friendly pub located near The Sorrento . It serves Fast food and is on the riverside . \nname : The Twenty Two | food : Fast food | family friendly : no||The Twenty Two is a fast food takeout which is not family friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||The French coffee shop in riverside is called Aromi . It is children friendly with a customer rating of low . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children friendly pub serving Fast food . It is located near The Portland Arms . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a pub that serves Fast food , located at the riverside and a Family friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : no||Visit Loch Fyne restaurant for expensive Italian food in a non child friendly environment . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms situated by the river serving French food of a higher price range with an average customer rating of 3 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||Riverside has a high end coffee shop near The Sorrento including Fast food at The Mill . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||Rated 1 out of 5 Zizzi fast food pub is child friendly \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderate priced coffee shop that sells Italian food . It is located in the city centre , is not kid friendly , and has 3 out of 5 rating . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||The Wildwood pub serves fast food at around the £ 20 per head mark . It has low ratings . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves Indian cuisine at a moderate price . The food has been rated 3 out of 5 by customers and is located next to the riverside . Sorry , no kids allowed . \nname : Aromi | Type : restaurant | food : Chinese | area : riverside||Treat yourself to Aromi , A Chinese restaurant located on the riverside . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||The pub Strada is rated average by customers . This Fast food outlet is located near to Yippee Noodle Bar . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||For a kid friendly , Japanese pub near The Portland Arms , try The Dumpling Tree . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : more than £ 30||The Dumpling Tree is an Italian restaurant that costs more than 30 Euros . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is close by All Bar One . It 's a good place and expensive but it 's really worth it . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly French place with high ratings and cheap prices near Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||In the riverside area there a high prince range coffee shop called The Dumpling Tree near Café Sicilia that is children friendly . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn you will find The Rice Boat . It offers Indian food for less than 20 . It has a low customer rating and is not family friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia with a cheap price range is The Punter . An average rated Italian coffee shop . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kids - friendly , Japanese pub , rated 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge in riverside . It is rated 5 out of 5 but is not family - friendly . They serve Italian . \nname : The Olive Grove | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||There is a children friendly pub called in The Olive Grove the riverside , it 's a Fast food but it quite expensive , \nname : The Rice Boat | food : Fast food | area : city centre||A fast food restaurant , The Rice Boat is located in the city centre . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a high priced , child friendly place located in riverside . It serves French food and has a rating of 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||For a French restaurant with an average price of £ 20 - 25 , try The Dumpling Tree . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||An inexpensive Indian restaurant , The Waterman is in the city centre . It is a highly rated , family friendly place . \nname : Wildwood | Type : pub | food : Chinese | price : less than £ 20 | customer rating : low||Wildwood is a Chinese pub that is inexpensive that has a low customer rating . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is family friendly and serves fast food near Crown Plaza Hotel . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The 5 out of 5 rated The Cricketers coffee shop is located near The Portland Arms . This shop serves French food in a child friendly atmosphere . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food restaurant that is child friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a fast food coffee shop for adults . It has a cheap price range and a rating of average . It is in Riverside . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid - friendly fast food restaurant located in the city centre by the Express by Holiday Inn . It has a moderate price range and a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Riverside has a child - friendly coffee shop . Price range is more than 30 pounds , with a low customer rating . It 's called Zizzi . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Located near Burger King on the river , The Eagle is a low cost , family friendly coffee shop . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : cheap | family friendly : yes||If you are looking for a family Friendly Type restaurant then you might want to try Loch Fyne where they have Fast food at a cheap price range . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children - friendly , French food restaurant with a perfect rating and a price range of more than £ 30 , it is located in the city centre near the Express by Holiday Inn . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||In the city centre there is a place called Blue Spice that is not children friendly , but has a price range of more than 30 with a low customer rating \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is in riverside near All Bar One with a high price range . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns can be found close to Café Sicilia and are cheap and more importantly friendly towards your children . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a high priced Japanese restaurant , with a rating of 3 out of 5 and children friendly . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant located near Express by Holiday Inn in the city centre which offers top quality food at a low price . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is a high - priced restaurant in the city centre that is not children friendly . \nname : Blue Spice | food : English | price : high | area : city centre||There is an expensive English restaurant in the city centre called Blue Spice . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kid - friendly pub with a customer rating of 3 out of 5 . It is located near Ranch . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop that has a moderate price range . It is near The Bakers and is kid friendly . The customer rating is 1 out of 5 . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||A Cheap restaurant with a customer Rating of 5 out of 5 is The Rice Boat , near to the Rainbow Vegetarian Café . \nname : The Vaults | food : French | price : moderate | family friendly : no||The Vaults is a moderately priced French restaurant but is not kid friendly . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is family friendly , Japanese restaurant with prices less then 20 , near All Bar One in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A low customer rated fast food and coffee shop , Browns Cambridge , is family friendly and is near Crown Plaza Hotel in riverside \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||A high priced pub serving fast food with an average customer rating is called Wildwood . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn is expensive with an average rating of 3 out of 5 . It is not child friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||child - friendly Cocum Japanese coffee shop , priced at £ 30 has a low customers rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||On the riverside there is a French coffee shop called Aromi . It is rated 5 out of 5 by its customers . It is great for families . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a child - friendly coffee shop located near The Portland Arms . As well as being a coffee shop , The Cricketers also sells Indian food . It has an average customer rating and is suitable for children . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||There is a mid - priced , 3 - star , family friendly coffee shop that also offers sushi , called Cocum . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Children are welcomed at Green Man . It 's located along the river and prices are less than £ 20 . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is kid friendly and inexpensive and can be found near All Bar One . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle , near Burger King is an Italian coffee shop with a price range of £ 20 - 25 , and was given a high customer rating but is not kid - friendly . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Cotto near Ranch has average rated fast - food and is a family - friendly place . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||Green Man , a pub near Café Rouge in the riverside area , serves Japanese food . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a high - priced restaurant located by The Six Bells . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||There is a highly rated Italian coffee shop in the Riverside area that cost more then more than £ 30 . It is named The Golden Palace . \nname : Clowns | Type : coffee shop | food : French | customer rating : high | area : riverside | near : Clare Hall||Clowns is a French restaurant and coffee shop with a high customer rating near Clare Hall in riverside . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : no||Although not family - friendly , The Golden Curry which serves Italian cuisine has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap fast food place , rated 5 out of 5 . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fast food restaurant located near the Rainbow Vegetarian Café that provides low quality food at high prices , and is not family friendly . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is coffee shop that serves French food in the riverside area near The Portland Arms . Prices range from £ 20 - 25 . It has a high customer rating . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : high | family friendly : yes | near : The Portland Arms||Child friendly French coffee shop near The Portland Arms , The Cricketers is child friendly and highly rated . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||A child friendly English restaurant but with a high price range is Loch Fyne . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a high priced , fast - food restaurant in the riverside area . Customer reviews of the restaurant give it a 1 out of 5 . This is not a children friendly location . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||A cheap restaurant near All Bar One is Green Man . It is located on the riverside , serves Italian food , and is family friendly . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a moderate price range coffee shop located along the riverside . Kid friendly with a 3 out of 5 rating . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers serves French food is moderately priced and not kid friendly and rated 1 out of 5 stars . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is an expensive coffee shop in City centre . They have a three star rating . They are located near The Portland Arms . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||In the riverside area is a kid friendly Fast food place called The Twenty Two . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||a child friendly restaurant with a rating of 3 out of 5 would be Cocum . \nname : Cotto | food : Fast food | customer rating : low | family friendly : yes | near : Ranch||Cotto can be found close to the Ranch . It is a family friendly fast food restaurant . However it has a low customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||For a lovely Café meal in a family friendly setting try The Dumpling Tree . It is reasonably priced and family friendly . Located near Café Sicilia in the riverside area . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||Taste of Cambridge is a restaurant that serves food that is cheap . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop in the city centre provides cheap Italian food and has achieved high customer satisfaction . It does not cater for families with children . Burger King is nearby . \nname : Green Man | food : Japanese | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man by a riverside near All Bar One is child Friendly serving Japanese food with a high price Range . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : no||The Olive Grove is a Italian pub in riverside with a high price range and it is not a child friendly zone . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : no||Japanese pub Zizzi is five out of five and not family - friendly . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a low rated , not family - friendly restaurant that serves Japanese food under £ 20 near the riverside . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly burger joint that is cheap . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two serves Italian food . They are kid friendly . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Situated in riverside , The Rice Boat is an averagely rated children friendly Fast food venue . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||If you 're in the mood for Fast food , and looking to spend £ 20 - 25 , then look no further than The Dumpling Tree restaurant \nname : The Eagle | food : Indian | customer rating : average||The Eagle serves Indian food and has a customer rating of average . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||in the city centre near Yippee Noodle Bar there is a fast food place called Alimentum with a average customer rating that is cheap \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : no||To get away from children , you can visit Green Man , in the city centre . A meal there is upwards of £ 30 \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a family friendly coffee shop with middle of the road prices . They have a five star rating . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada serves moderately priced average Indian food in a child - friendly atmosphere not far from the Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a cheap coffee shop that is 3 star and serves sushi . It is near Café Sicilia \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||There is an Indian restaurant called Loch Fyne with a 5 out of 5 customer rating and it 's located in city Centre near The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that serves Indian food for in a moderate price range . They have a customer rating of 1 out of 5 and are kid friendly . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap Fast food restaurant . It provides a family friendly atmosphere . The food is pub like . It is rear the Café Rouge . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Located in the city center near to the Café Rouge , The Midsummer House is a 5 star French restaurant . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||In City center lies The Waterman , a kid friendly establishment that serves French food . The price range is £ 20 - 25 and the customer rating is 3 out of 5 . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a five - star high - priced restaurant that offers cheese and wine . It is just opposite All Bar One in the city centre . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is in the riverside , near the Express by Holiday Inn . It serves Japanese food , is non - children friendly , expensive and highly rated . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies has a price range of more than 30 pounds , and is near the Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop provides sushi . It is medium priced , family friendly and has a 1 star rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no||Aromi is a fast food coffee shop in an adult only atmosphere located in the city centre with low ratings . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies is a cheap option just near Rainbow Vegetarian Café . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is an inexpensive coffee shop just off the river . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||Serving Japanese food is Cocum coffee shop . Though with a low customer rating , Cocum is family friendly and the price range is under £ 20 . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Located in the riverside area , near Café Rouge , The Golden Curry is a family - friendly Chinese restaurant with average customer ratings . \nname : The Rice Boat | food : English | area : riverside||You can get English food in The Rice Boat in riverside area . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a five star pub which is highly recommended . \nname : The Punter | food : French | price : less than £ 20||The Punter sells French food . its price range is less than £ 20 . \nname : Browns Cambridge | food : Indian | price : more than £ 30 | customer rating : high||Browns Cambridge provides Indian food in the more than £ 30 price range . Its customer rating is high . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a cheap Indian food restaurant near the city centre . It has an average customer rating and is not family friendly . \nname : Wildwood | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is a coffee shop called Wildwood which provides English food and wines in the low prices . It is located near to Ranch and has 5 out of 5 stars range . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is an excellent food and very good attention \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada Sushi is a moderately priced , family friendly restaurant near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||The Rice Boat has an average rating and offers French cuisine for families looking to eat outside of the City centre . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix is a French restaurant located at the riverside . The customer rating is low . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers fast food coffee shop is kids friendly is located in city centre near Raja Indian Cuisine . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low cost restaurant serving pastas and wines located a short distance from All Bar One . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||Near Café Rouge is Midsummer House . It is a 5 star English food restaurant . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : £ 20 - 25||The Dumpling Tree is an Indian restaurant with a price range between twenty and twenty five euros . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located near Crowne Plaza Hotel in the city centre . It serves Fast food and is not family - friendly , but has a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||coffee shop Fitzbillies can be found in the riverside area of the city . It provides fast food and its prices are high . It has a low customer rating and is not child - friendly . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a very highly rated but low - priced riverside restaurant . It is located in riverside , near the Express by Holiday Inn , and is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside with a price Range of 20 £ -25 and is Kids Friendly is a Fast food coffee shop called The Wrestlers \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||There is an Italian restaurant located in the city centre , with a high customer rating . It is called The Waterman and has a price range of £ 20 - 25 but it is not child - friendly . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is The Waterman which serves Fast food and is children Friendly \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : 5 out of 5||There is a low priced pub that serves Indian food named Wildwood and it has the highest customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Blue Spice allows children , is in the city centre and costs more than £ 30 . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : average||Browns Cambridge provides cheap Chinese food with an average customer rating . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||Cotto has a cheap price range and is located in riverside near All Bar One . \nname : The Cambridge Blue | Type : pub | food : French | price : high | near : Café Brazil||The Cambridge Blue is an expensive French pub near Café Brazil . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly restaurant called The Wrestlers that is located near Raja Indian Cuisine with high price takeaway menu items . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is not a family - friendly pub and is situated near Café Rouge in the city centre . They serve French food and have an average customer rating \nname : Midsummer House | food : Fast food | customer rating : 1 out of 5 | near : Café Rouge||The fast food restaurant called Midsummer House , has a customer rating of 1 out of 5 and is close to Café Rouge . \nname : Blue Spice | food : Fast food | price : high | area : riverside||Blue Spice is an expensive fast food establishment on the riverside . \nname : The Punter | food : Fast food | price : £ 20 - 25||The Punter is a Fast food venue with an average price range of £ 20 - 25 . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is average . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||Wildwood is a pub with low customer ratings and cheap prices . They are in the city and they serve fast food . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge is a cheap , average venue . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap fast food joint located near The Bakers . It is family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Near the Burger King , The Eagle is a coffee shop style Japanese , low price , this restaurant is a good place for kids . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix , is in the city center . They have Chinese food and a star rating of 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||I do not know where The Dumpling Tree is located \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Blue Spice is cheap , medium rated and non - kids friendly . It is located in the city centre . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high priced . They serve fast food and are family friendly . They are located near The Bakers . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no||Giraffe is not family friend . It is a fast food pub in the city centre . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : The Rice Boat||The city centre is home of The Twenty Two near The Rice Boat . It has an average customer rating and a price range of less than 20 pounds , but is not family - friendly . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||For a French coffee shop experience , try The Punter , near Café Sicilia . While customers rate is as average , it is family friendly with a price range of less than £ 20 . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Browns Cambridge is an urban pub that sells poor quality food for middling prices . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||The Cambridge Blue is one star restaurant . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive , five star restaurant near Yippee Noodle Bar that sells cheese , wine , and soup . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum serves cheese and wine at good prices . Children welcome . \nname : The Olive Grove | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub located in the riverside that serves Indian food for £ 20 - 25 . \nname : The Punter | food : Japanese | price : high||Diners interested in spending a bit more on their meals should visit The Punter for traditional Japanese food . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||For a family friendly restaurant a stone 's throw away from The Sorrento , you will want to try the Chinese cuisine at Browns Cambridge in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The coffee shop that serves Japanese food and is kid friendly by the riverside is Fitzbillies . The price range is £ 20 - 25 and the customer rating is 3 out of 5 stars . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Browns Cambridge serves moderately priced fast food with a one star customer rating . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a pub with a customer rating of 5 out of 5 . They 're children friendly and have a price range of more than £ 30 . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Vaults is a cheap and family friendly Italian restaurant . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : no||Cocum is not family - friendly restaurant with a average customer rating . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge has a low rating and an expensive price range . \nname : The Punter | food : Fast food | price : £ 20 - 25||There is a £ 20 - 25 Fast food named The Punter , \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is near All Bar One with a customer rating of 5 out of 5 . It has a price range of more than £ 30 and serves Japanese food . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat fast food has a customer rating of 1 out of 5 , it is in the riverside area with and it is kid friendly \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man provides Indian food in the high price range . It is located in the city centre . It is near All Bar One . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||French pub called Strada located near Yippee Noodle Bar and customer rating is low \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an Italian food coffee shop located near Burger King in the city centre . With a price range of £ 20 - 25 , it is highly rated and is not conducive for kids . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian establishment located near Express by Holiday Inn in the city centre . The rice Boat is not family - friendly and has a rating of average . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , a Chinese restaurant rated five out of five by customers is located near Café Rouge , in the city centre . However , it is not family friendly . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside , near the Express by Holiday Inn , there is The Rice Boat , that serves Japanese food , is non - children friendly , expensive and highly rated . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||An Indian restaurant named The Wrestlers has a price range of more than 30 pounds . It has a high customer rating and is not children friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café . It serves Japanese food , is family friendly , is expensive and has a high customer rating . \nname : The Golden Curry | food : Fast food | customer rating : high | family friendly : yes||The fast food shop , The Golden Curry , is kids - friendly and has high customer rating . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada is not kid friendly . They are in the moderate price range and have a customer rating of 1 out of 5 . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly English food place with their prices ranges less than £ 20 . They are located in the city center with a low customer rating . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House is a high priced takeaway restaurant . It is located close to Clare Hall near to the City Centre \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a pub with a moderate price range , a customer rating of 1 out of 5 and it is child - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , the coffee shop , can be found near Crowne Plaza Hotel , in City Centre , but it is not family - friendly and has low ratings . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||The pub , The Twenty Two on the river side , near Café Sicilia , has a poor customer rating of 1 out of 5 . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : no||The Rice Boat provides Indian food . It has a customer rating of average . It is located in the city centre and is not family friendly . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a family - friendly pub north of Café Rouge with a high price range . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Indian food serving The Punter , a coffee shop near Café Sicilia , is cheap , family friendly and has a 5 out of 5 customer rating . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Strada is a child friendly restaurant with high prices and a customer rating 1 out of 5 . \nname : Blue Spice | food : Chinese | price : moderate | area : city centre||For Chinese food of a moderate price range Blue Spice in a good option . It is located in the city centre area . \nname : Clowns | Type : restaurant | near : The Portland Arms||There is a restaurant called Clowns located near The Portland Arms . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge , located near the Crowne Plaza Hotel in Riverside , is a kid friendly coffee shop . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||Stay away from The Phoenix if you want Italian in riverside . They have high prices and terrible ratings . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||Near Café Rouge is The Plough a kids - friendly pub that is moderately priced and serves Italian food . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a children Friendly coffee shop The Eagle in the city centre that provides Italian food at high price . It is located near Burger King and it has customer rating of 1 put of 5 . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge is a venue with cheap prices and average customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||The Aromi is a family - friendly coffee shop with a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||The kid friendly coffee shop , Blue Spice , is located in Riverside . It is next to Avalon . They are customer rated 3 out of 5 and are in the price range of 20 - 25 . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is kids friendly place located near The Rice Boat at the riverside area . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The Waterman is an averagely rated , English pub located in Riverside . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman has a customer rating from three to five , serves Japanese food costing from twenty to twenty - five euros , is kid friendly , and is located in the riverside area . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is an average priced Italian coffee shop . It is child friendly and has a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The highly rated , family friendly coffee shop ' Browns Cambridge ' , is located near the Crowne Plaza Hotel along the riverside . It serves mostly sushi . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Although Fitzbillies cost more more , it is near the Rainbow Vegetarian Café . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly Japanese restaurant near Raja Indian Cuisine in the Riverside area , come down to our coffee shop in the medium price range \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located in riverside near Express by Holiday Inn . It is not a children friendly establishment . It offers highly priced food with a customer rating of 3 . \nname : The Punter | food : English | price : less than £ 20||The Punter is a hearty British establishment offering low cost all day breakfast for all the family , situated close to the shopping centre . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : no||The Vaults offers Indian food for a low price but is not family friendly . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly Italian restaurant with high customer ratings and a price range higher than £ 30 , it is located in the riverside area close to the Express by Holiday Inn . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The moderately priced fast food establishment The Rice Boat can be found in the riverside area neat the Express by Holiday Inn . it is kids friendly and has been rated 1 out of 5 by previous customers . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is found near All Bar One , riverside . They have a price range of less than £ 20 for Chinese food . They are said to be family friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove is a children friendly pub in Riverside . They serve fast food in the high price range . \nname : Cotto | food : French | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto provides kids friendly French food with the customer rating 1 out of 5 , and located near Ranch \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a highly rated coffee shop which serves fast food . It is located near to the Crowne Plaza Hotel in the riverside area and is considered to be non family - friendly . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a restaurant providing English food in the high priced range . It is children friendly and has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms in riverside . It serves Japanese food for less than £ 20 . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||There is a 3 - star coffee shop called Clowns located east of Clare Hall . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Located in the city centre near Burger King , The Eagle is a family - friendly coffee shop with French cuisine . Prices are less than £ 20 . Customers give it an average rating . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||Serving French food is The Phoenix it is a 3 out of 5 rated location in the riverside area \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a medium priced sushi restaurant . It does not allow children and is located near to The Bakers . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap , 5 star noodle restaurant that is near Yippee Noodle Bar . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter is a Japanese food place whose price range is less than 20 \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||close to the Express by Holiday Inn hotel by the riverside you will find The Rice Boat restaurant . This serves Italian food , is cheap and has an average customer rating but is not family - friendly \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee with a high customer rating that serves fast food at a price range of £ 20 - 25 , located near Burger King in the city centre . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop in the low price range . It is located near to The Portland Arms . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The family - friendly Italian restaurant The Rice Boat is located in the city centre with a customer rating 5 out of 5 . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near Crown Plaza Hotel is kid friendly and serves French cuisine . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove pub is located near the river . It offers mid - priced fare and is family - friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Aromi is an Indian coffee shop in a riverside location . It has a high customer rating and is child friendly . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||A cheap place to eat in the city centre is The Phoenix . It 's a French restaurant and has a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : city centre||There is Fast food pub with low customer rating , located in the city centre , named The Waterman . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers coffee shop , serving Indian food , has an average customer rating and is not family friendly . It is located near The Portland Arms . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In the city centre area is a Japanese restaurant named Aromi . It is a coffee shop with a customer rating of 5 out of 5 . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults coffee shop in the riverside area , near Café Brazil . Has a high price range and a low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 5 out of 5||With a 5 out of 5 customer rating The Cambridge Blue is a Indian restaurant . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is and English restaurant for adults . Although it has a low customer rating , it serves affordable food for less than 20 pounds . It is located near the Express by Holiday Inn in riverside . \nname : Cotto | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cotto is Ranch that has Italian food , is family friend and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub located near Ranch . It is children friendly and has a 3 out of 5 customer rating . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill is a low - priced pub which serves breakfast food and is located in the City centre . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||A restaurant which provides affordable food is The Golden Palace . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is not family - friendly , offering French food at a price range less than £ 20 ; it is located near the Riverside area and has a low customer rating . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a higher - priced , 3 star sushi restaurant located near All Bar One . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||By the river and close The Portland Arms is Cotto coffee shop ; wide variety , low prices and highest rating make this a place to try . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne has fast food on the riverside with a rating of 1 out of 5 for the restaurant The Rice Boat \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly pub that is cheap and has a low customer rating . \nname : The Waterman | price : high | family friendly : yes||The Waterman high price range , but children friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a kids friendly moderate price range pub that serves Italian food by the riverside . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||Close to Café Brazil is The Vaults coffee Shop . It receives five stars and is a higher priced establishment . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a moderate priced restaurant family restaurant north of the City center . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||Near Café Rouge is The Plough pub . Its is child friendly and offers English food at a moderate price . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap French restaurant located in the city centre near Yippee Noodle Bar with a customer rating of 5 out of 5 . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Near Café Rouge is Midsummer House . Their 3 star menu serves British food . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a children Friendly coffee shop with a high customer rating located in the riverside area near Burger King . The price range is more than 30 English sterling . It offers Italian food . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a mid - cost , family - friendly restaurant located near Express by Holiday Inn . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese eatery located near the Express by Holiday Inn in the city centre . Their prices are less than £ 20 but have low customer ratings and are not family - friendly . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||Located in the riverside area near Café Rouge , The Golden Curry provides Italian cuisine in an non - family - friendly environment . It has a low customer rating . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly English restaurant . It is located on the riverside near The Sorrento . \nname : The Golden Curry | food : Chinese | price : high | family friendly : no | near : The Bakers||The Golden Curry is a Chinese food restaurant is located near The Bakers . This is a high priced restaurant that isn 't child friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a child - friendly coffee shop in the City Centre . Fitzbillies serves Japanese food , has a customer rating of 5 out of 5 and has prices that are higher than average . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||With a customer rating of 3 out of 5 , The Waterman is a children - friendly high priced French restaurant in the city centre . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a moderately priced kid friendly restaurant Located near The Bakers \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : city centre | near : The Sorrento||In the city centre near The Sorrento there is an Indian coffee shop called The Mill . The price range is moderate . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a fast food coffee shop near Café Sicilia . It has a high customer rating and is not children friendly . Prices range at more than 30 pounds . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a moderately priced coffee shop which also serves Indian food . It has a customer rating of 3 out of 5 , located near Café Sicilia and is kids friendly . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||In City Centre , the Green Man offers British food at an inexpensive price . It 's family friendly and near All Bar One . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is an Italian restaurant located in city centre near The Rice Boat . It has a customer rating of 5 out of 5 . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||The Phoenix has an average customer Rating situated near the riverside selling cheap Italian food . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a kid friendly restaurant with high customer ratings . It serves fast food and its dishes range between £ 20 and £ 25 . It is located in the city centre . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : no||Zizzi is a pub serving Indian food . The pub is not family friendly , and has a modest average rating . \nname : Browns Cambridge | food : English | area : city centre | family friendly : yes | near : The Sorrento||Situated in the city centre near The Sorrento , Browns Cambridge is a family - friendly place serving English cuisine \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||Along the riverside is The Phoenix with an average customer rating that sells Italian food \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Strada has a low customer rating is family friendly and offers selections for less than £ 20 . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : no||The Wrestlers is a restaurant serving French food . It is not child - friendly . The prices are more than £ 30 . Customer ratings are low . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||The cheap Japanese coffee shop Cotto is located in the city centre near The Portland Arms . They are highly rated with 5 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is premium priced , non child friendly and has an average customer rating . It serves English food and is located in the city centre . \nname : Browns Cambridge | food : Indian | price : less than £ 20 | customer rating : low||Inexpensive but low rated , Browns Cambridge serves Indian cuisine . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kid friendly fast - food restaurant located on the riverside . It has a price range of 20 - 25 pounds . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||The kid friendly Japanese restaurant is called Loch Fyne . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is a high priced coffee shop called The Eagle in the Riverside area , near Burger King , with an average customer rating , that serves Indian food and is also child friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is eat type coffee shop providing Italian food near Burger King riverside area . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Highly rated and family - friendly The Rice Boat serves fast food starting at more than £ 30 . It is located near city centre and Express by Holiday Inn . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves Indian food . It is a cheap restaurant that is situated by a river and near Yippee Noodle Bar . It has a average rating . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||Loch Fyne is a dine in family restaurant that is fairly expensive . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||Zizzi is an English food pub with a 5 out of 5 customer rating and is family friendly \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not family - friendly . They have a customer rating 5 out of 5 . They serve Japanese food . They are located in the riverside area near Express by Holiday Inn . There price range is cheap . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | near : Clare Hall||In the city centre , near Clare Hall is a average rated Japanese coffee shop called Clowns . \nname : The Rice Boat | food : Italian | area : city centre||The Rice Boat is an Italian restaurant located in the city centre . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap Japanese restaurant in city centre . The Rice Boat is a good place to take the kids , it 's right by the Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : 1 out of 5||You can eat Indian food at The Wildwood pub for a high price range . It has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||There is a riverside pub , The Mill , which provides French cuisine \nname : Blue Spice | food : Indian | price : less than £ 20 | area : city centre||Blue Spice is an Indian restaurant from less than £ 20 . It is located in the city centre . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||There is a moderately priced Fast food place near All Bar One with a customer rating of 3 out of 5 called Midsummer House . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||it is a Fast food and family yes with The Waterman and cheap food riverside has 5 out of 5 \nname : Loch Fyne | Type : restaurant | food : Indian | price : cheap | family friendly : yes||A cheap family friendly restaurant that serves Indian food in the area is called Loch Fyne \nname : Midsummer House | food : Indian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House has cheap Indian food near All Bar One with a 5 out of 5 rating . \nname : Blue Spice | price : high | area : riverside||Blue Spice has a high price range in riverside . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Near the river , there is an inexpensive adult restaurant called Blue Spice . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There 's an expensive family friendly sushi restaurant called Strada just north of the Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : no | near : The Portland Arms||There is an Indian pub named The Dumpling Tree . It is located near The Portland Arms and is not family friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi near riverside is a Fast food coffee shop average rated children friendly \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . It is family friendly and has a price range of less than £ 20 . It has low customer rating . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located in the riverside area near Express by Holiday Inn . Though the customer rating is low the price range is reasonable . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap restaurant that is close to the Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop It provides fast foods at a reduced price and is located near the river , there Burger King \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||Wildwood , located near the city center . , is a low price pub . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||If you are in the mood for English cuisine and are in the riverside area , look no further than The Rice Boat . With it 's high customer satisfaction rating , family friendly atmosphere , it is the perfect spot to enjoy a night out . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a family - friendly cheap fast food restaurant located in city centre . It has good Customer Rating . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : riverside | near : Clare Hall||coffee shop , Clowns , located in Riverside near Clare Hall , has an average customer rating and provides Indian food \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||The pub Zizzi is a family friendly place to eat with a 3 star rating . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers provides cheap fast food . It is family friendly and has been rated 5 out of 5 by customers . \nname : Fitzbillies | food : English | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is located near to The Six Bells . With a price range of around £ 20- £ 25 , it serves English cuisine . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||A high - priced Italian food coffee shop , The Punter has a low customer rating , is children friendly and is located near Café Sicilia . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap , one - star French restaurant outside of the City centre . It is close to Yippee Noodle Bar . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||The customer rated 1 out of 5 , Wildwood is near Café Rouge . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue is a restaurant that serves Japanese food . they have a customer Rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop located near Café Sicilia . They serve traditional Japanese food in the medium price range . It is rated one star and has no public restroom . \nname : The Rice Boat | food : English | area : riverside||The Rice Boat in riverside provides English food . \nname : The Cambridge Blue | Type : pub | food : English | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a Café near Café Brazil . It is a pub with English food and pricing is reasonable £ 20 - 25 . \nname : The Waterman | food : Indian | family friendly : no | near : Crowne Plaza Hotel||There is a not family friendly Indian food serving called The Waterman in the Crowne Plaza Hotel . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a great , kid friendly restaurant . \nname : Aromi | Type : restaurant | food : Chinese | area : riverside||Aromi is a restaurant which provides Chinese food in the riverside area \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kids friendly Japanese restaurant in the moderate price range . It is located near All Bar One in riverside . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||Browns Cambridge is a five star . English restaurant . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly pub with a five star rating serving Italian food . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop serves fast food and is near Café Sicilia . It has a moderate price range and is kid friendly . It has a customer rating of 1 out of 5 . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an inexpensive Italian restaurant located on the river that caters to families . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : yes||There is a family - friendly fast food restaurant in the city centre . It 's called The Rice Boat and has an average customer rating . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : city centre||There is a high priced Japanese food restaurant in the city centre called Blue Spice . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is located near The Rice Boat , in the riverside , it serves good French food \nname : The Vaults | Type : restaurant | food : French||Go to The Vaults restaurant to eat French food . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a family friendly coffee shop with expensive menu items called Cocum . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||We are Browns Cambridge we sell Indian food in a scenic surrounding by the Riverside and welcome families too . We are near The Sorrento \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree Pub would like to welcome you and your family to try our Indian cuisine . We are near The Portland Arms \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is located near Café Sicilia . It is moderate priced and kids friendly . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man provides Indian food in the high price range . It is located in the city centre . It is near All Bar One . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a underrated Japanese restaurant pub located near Yippee Noodle Bar . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a family - friendly . Customer Ratings are average . It is located in the city center . Prices are less than £ 20. it is near The Rice Boat . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove pub is an adults only restaurant which serves beluga at reasonable prices , it is located on the banks of the river Thames . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice is by the river . Normally runs over thirty pounds . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap coffee shop named Zizzi in Riverside that is family friendly and has a rating of 5 out of 5 \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||There is a restaurant called Alimentum that is an expensive , family friendly Italian restaurant next to the river . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : no||Highly priced and adult oriented , The Vaults serves Japanese food . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Next to Ranch is a coffee shop with a three star rating and low price point called Wildwood . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Look for Cotto - an Italian restaurant near Ranch . It is kid - friendly and has a high customer rating . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Café \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Avalon||There is a non children - friendly coffee shop with a low rating and a price range with more than £ 30 called Blue Spice and is located in the city centre near Avalon . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||A five out of five restaurant serving English food if the Loch Fyne which is in the city centre near The Rice Boat . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is near The Bakers and is kid friendly French food with a price range of £ 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||There is a children friendly Fast food restaurant called Loch Fyne . The price range is more than £ 30 . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is average . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub . It has English food . It is near The Portland Arms . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Strada is a restaurant that got 3 out of 5 stars on review websites \nname : The Mill | Type : pub | food : Indian | price : more than £ 30 | area : riverside||The price range of The Mill is more than £ 30 , and located to the riverside . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||In the Riverside area , there is a coffee shop called The Dumpling Tree . It is near Café Sicilia . It costs £ 20 - 25 and is kid friendly . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||Close to Café Brazil is a nice place to eat , The Cambridge Blue . It offers meals starting between £ 20 - 25 . Don 't be thrown off by the pub atmosphere . It has great French food . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a low priced English cuisine restaurant located at the riverside near to All Bar One . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||The Giraffe is a kid - friendly fast food pub in Riverside . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no||There is a French pub that is not family - friendly with a price range of less than £ 20 in the city centre named The Olive Grove . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Fitzbillies is a restaurant providing sushi in the low price range . It is located near The Six Bells . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family - friendly pub . Though it has a low customer rating , its prices are less than £ 20 . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults ' is a reasonably priced restaurant , based in Cambridge . You can try their beautiful French cuisine for just under £ 20 \nname : The Twenty Two | Type : pub | customer rating : average | area : city centre | near : Café Sicilia||The Twenty Two is a city centre pub , near Café Sicilia . It has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a adults only Indian coffee shop in the riverside area . Located near Crowne Plaza Hotel . The customer rating is low . \nname : The Olive Grove | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||Serving fast food at more than £ 30 and located in the riverside area is the child - friendly pub The Olive Grove . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||In the city centre there is a coffee shop serving Indian cuisine called The Golden Palace . It has a high rating from customers and its price range is over £ 30 . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man offers moderately priced Fast food in a kid friendly environment . It is located in riverside near All Bar One . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a coffee shop is located in the city center with a price range of cheap . It is family - friendly and located near Avalon with a 5 out of 5 rating . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is a coffee shop that serves Italian food . They are kid friendly and their price range is high . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers , are a cheap , Italian food , family friendly place , with a customer rating 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies serves highly rated Italian food for more than £ 30 . children are welcome . the coffee shop is located in the city centre \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice in the riverside area offers prices between £ 20 - 25 . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a high quality sushi serving food place . It is located near Ranch and is recommended for families to go to . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||In riverside near The Portland Arms there is a 1 out of 5 customer rated , moderately priced Indian food coffee shop called Cotto . \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Blue Spice is a Japanese restaurant in the Riverside area that offers moderately priced foods . \nname : The Golden Palace | Type : restaurant | price : moderate||If you are looking for a moderately priced restaurant try The Golden Palace . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Amongst children - friendly restaurants with prices more than £ 30 standing Japanese Loch Fyne . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree is a fast food joint in the area . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is an adult only Chinese food restaurant with cheap prices , average customer ratings , and is located in the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a kid friendly river side Italian coffee shop near Burger King named The Eagle with a 3 out of 5 rating and a moderate price rating . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix on the riverside serves cheap fast food with a rating of 5 out of 5 by customers . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The kid friendly restaurant called The Cricketers has a 3 out of 5 rating and serves Italian food . They are close to the coffee shop called The Portland Arms \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Avalon||A low rated coffee shop with a price range of more than £ 30 in riverside is Blue Spice near Avalon . They are not child friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms . Their price is low and they serve fast food . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||A cheap family friendly coffee shop The Punter is near Café Sicilia and provides take out . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : city centre||A restaurant in the city centre with a low customer rating is called The Golden Palace . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a high priced , three star restaurant featuring French Cuisine . They are not child friendly . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fast Food restaurant The Waterman has one star and is not child friendly . It is in the city centre with a high price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop providing Indian food in the price range . It is located in the riverside . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap English food place in city center near Yippee Noodle Bar with an average customer rating . \nname : The Waterman | food : Indian | family friendly : no | near : Crowne Plaza Hotel||The Waterman serves Indian food not family friendly near Crowne Plaza Hotel . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Three stars is the rating for the Loch Fyne , that serves breakfast . Its in the city center close to The Rice Boat . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi , is a family friendly English style pub with a customer rating of 1 out of 5 . \nname : Aromi | Type : restaurant | food : Japanese | area : city centre||The Japanese restaurant , Aromi , is located in the City Centre \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is a Sushi restaurant in the City Centre that provides food at the low price range . It is not family friendly . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a French coffee shop located near Burger King in riverside . At a customer rating of 5 out of 5 and its cheap this makes a great family friendly place . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is an Indian coffee shop that is kids friendly and rated 3 out of 5 on the riverside . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman serves Chinese in the high price range , with an average customer rating . It is located in the city center and is children friendly . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||A low priced Italian restaurant located in the centre of the city near All Bar One , Green Man is not family - friendly . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||The Eagle in riverside is priced high and has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||With a 5 out of 5 customer rating , The Rice Boat is close to the riverside . They serve Indian food and are family friendly . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is in the city centre . It serves Italian food . The customer rating is high . Prices are more than £ 30 . It is child friendly . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a low priced pub near Café Rouge that is not family friendly . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is a children friendly place which serves Italian food . It has high prices but has an average customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop serving high quality Italian food that is low priced and family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies as a coffee shop provides French food in the city centre with a price range less than £ 20 . They are rated average and family - friendly . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||Wildwood is a pub that serves sushi at a mid - range price level . It is not highly rated . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||If you 're in the riverside area and looking for a quiet escape , why not try Fitzbillies - an Italian style coffee shop for the discerning adult customer . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||A moderate priced restaurant , Giraffe , is near The Six Bells . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||The Midsummer House servers English food that 's usually more than 30 euros . It has a high customer rating and it 's right by All Bar One . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : riverside||The Phoenix serves Indian food in the high price range with an average customer rating in riverside . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry where you can eat Chinese . Low customer rating . Riverside area near Café Rouge . Family Friendly . \nname : The Vaults | food : Indian | price : high | family friendly : no||The Vaults offers Indian food in the high price range . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , there is The Waterman , which is kids friendly , and serves food . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing Indian food in the more than £ 30 price range . Its customer rating is high . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||In the middle of the city is a low price fast food family friendly restaurant called The Wrestlers . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that sells Indian food located in riverside near Crowne Plaza Hotel . They are children friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman offers Chinese food at a cheap price range . The rating is average and it is located in the city centre . They are family friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||A child friendly restaurant with high prices is Travellers Rest Beefeater . \nname : The Punter | food : Indian | price : high||The high priced restaurant The Punter serves Indian food . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum coffee shop has a reasonable customer rating of 3 out of 5 with food in a moderate price range . It serves Fast food but no good for children \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The coffee shop named Zizzi is kid friendly , has a price range of £ 20 - 25 , in riverside , and has a customer rating of 3 out of 5 . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a well priced Chinese eatery popular with all the family , with high customer ratings . It is located close to Rainbow Vegetarian Café . \nname : The Mill | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is an Italian coffee shop near The Sorrento . The price range is more than £ 30 and is at the riverside . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||There is an Italian pub near Yippee Noodle Bar named Strada . It has an average customer rating . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , The Rice Boat received a 3 out of 5 customer rating . Food cost is £ 20 - 25 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree is a fast food restaurant with a price range of more than £ 30 . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies which is kids friendly with a customer rating of 3 out of 5 and moderate price range is located near Express by Holiday Inn . \nname : Fitzbillies | food : Chinese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is an average - priced Chinese restaurant located near The Six Bells . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a average fast food pub that 's child friendly . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a pub for all . Yes , it is family friendly . their price range is less than £ 20 . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Near the Clare Hall along the riverside ' Bibimbap House ' can be found serving fast foods at low prices . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | near : Café Brazil||If you want to pay for than £ 30 for low rated coffee , try The Vaults near Café Brazil in the city centre \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon in the riverside district . In the £ 20 - 25 price range , it offers a child - friendly atmosphere , and achieves a high customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Near the river is The Eagle . It is expensive but has 5 stars . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a mid priced restaurant that is located near the Express by Holiday Inn . Located near the river and is family friendly . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||A high - priced child friendly fast food place near riverside is Alimentum . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , a moderately priced , kid friendly coffee shop in the city centre area near Burger King has a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop located along the riverside near Avalon . It is family friendly and has a 5 out of 5 rating . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is a high cost Indian restaurant not suited for children in the Riverside area near All Bar One . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The family friendly The Rice Boat is located on the riverside , near the Express by Holiday Inn , serving English cuisine below £ 20 with a customer rating . \nname : Midsummer House | food : Indian | customer rating : low | near : Café Rouge||Located near Café Rouge , Midsummer House is an Indian restaurant with a low Customer rating \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough is a restaurant near Express by Holiday Inn that 's not family - friendly . \nname : Strada | Type : pub | food : Chinese | customer rating : high | near : Yippee Noodle Bar||Strada is located near Yippee Noodle Bar . It 's a high rated pub serving Chinese food . \nname : The Vaults | food : Chinese | price : more than £ 30 | family friendly : yes||The Vaults has Chinese food with price range over 30 and is children friendly . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a low - priced restaurant near the city centre . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||With an average customer rating in the less than £ 20 price range , Zizzi is a family friendly coffee shop located on the riverside . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a family friendly restaurant that serves English food in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , is a riverside Japanese coffee shop , near the Crowne Plaza Hotel , with an average customer rating , however it is not family - friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is an Italian restaurant with low prices located in riverside near Yippee Noodle Bar . Has a low customer rating . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a pub that serves Japanese food . It is not kid friendly . It is located near Café Rouge and has a moderate price range . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||A coffee shop called Wildwood with a price range below L20 serves French cuisine and is located near Ranch . Customers give this establishment a low rating . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a child - friendly pub located at the riverside . It has high customer ratings . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne serves English food . It 's a family friendly restaurant . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is not kids friendly near All Bar One in city centre . Moderate prices for English food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The coffee shop named Fitzbillies located in the city center was rated 1 out of 5 by customers . The children were friendly despite the high prices there . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : no | near : The Bakers||The Bakers which has a price range of less than £ 20 was given an average rating by the Giraffe for a non family - friendly coffee shop \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is this place called Cotto near Ranch , it is very kid friendly , serves English food but only has a 1 star customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a moderately - priced coffee shop serving Japanese food near The Portland Arms in the riverside area with a low customer rating . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : no||There is a cheap restaurant with an average customer rating that sells Indian food called The Wrestlers . They are not family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a coffee shop called Fitzbillies that serves French food with a price range of £ 20 - 25 . It has a customer rating of 3 out of 5 and kids are prohibited . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant , providing Italian food , located near The Rice Boat with a average Customer rating . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kids - friendly pub in the medium price range . Its customer rating is three out of five . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a French coffee shop that is located near Clare Hall in the city center . It is rated 5 out of 5 by its customers . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is an excellent 5 - star rated , fine - dining restaurant located on the riverside near The Rice Boat . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a family pub that specializes in sushi and has average customer reviews . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||A good choice for Chinese food is The Wrestlers . It is children - friendly , with high customer ratings and with prices ranging around £ 30 . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a restaurant called Strada near the Rainbow Vegetarian Café which serves highly priced English food , has a customer rating of 1 out of 5 and is not child friendly . \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Fitzbillies is an Italian selling food for under 20 pounds and is located near The Six Bells . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is low . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne in the riverside area near The Rice Boat serves French food and has an average customer rating . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||With a customer rating of 3 out of 5 you can expect to dine at Cocum- a non child friendly coffee shop with a high price range serving French food . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a cheap , family friendly coffee shop that serves fast food . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop which serves Japanese cuisine . It is located in the riverside area , with a low customer rating and it is not family - friendly . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap but not family - friendly Italian restaurant in the riverside area near the Express by Holiday Inn and received a customer rating of 5 out of 5 . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||loch fyne is English food customer rating 1out of 5 in the rice boat near river side \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop near Avalon in riverside . It has a low customer rating and is not family - friendly . The price range is less than £ 20 . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge is a highly rated restaurant serving wine . \nname : Cotto | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a kid friendly restaurant offering Japanese food . Located next to the Ranch with a kid friendly environment and a customer rating of one out of five . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat by the riverside near Express by Holiday Inn offers cheap fast food with 5 out of 5 customer ratings but not child friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree , an Italian pub , is not a family friendly environment . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||A Japanese restaurant with a price range more than £ 30 is The Dumpling Tree . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||The restaurant The Mill as moderate prices . It is a Fast food place located in the riverside area . \nname : Green Man | Type : pub | food : Italian | area : city centre | near : Café Rouge||The pub The Green Man , located in the city centre near Café Rouge , specializes in Italian eater . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||In the city centre there is a highly rated coffee shop serving Italian food priced between £ 20- £ 25 called The Golden Palace . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | family friendly : yes||There is a restaurant French with rank 1 out of 5 is The Golden Curry \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman offers Indian food . They are moderate price ranged with a customer rating of 1 out of 5 . They are kids friendly and are located city centre . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||Near Café Brazil in city centre is The Vaults coffee shop . It has average prices and a customer rating of 3 out of 5 . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne offers Fast food with a customer rating of 1 out of 5 . Find them in the riverside area near The Rice Boat . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||Cheaply priced The Golden Palace pub is located on the riverside near to the Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that offers Japanese fare . It is child - friendly , with a 3 out of 5 customer rating and is located in the riverside area near Crowne Plaza Hotel . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Japanese cuisine family friendly restaurant The Twenty Two . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||For family friendly Fast food that 's under £ 20 , try Alimentum , located in riverside . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove features inexpensively priced English food in a pub setting . It is located in the city center and is not family - friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian food with a moderate price range . It has a customer rating of 3 out of 5 and is kid friendly . It is on the riverside near Express by Holiday Inn . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The riverside Italian restaurant The Waterman holds an average customer rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is an Italian coffee shop located near the Ranch . Highly priced and rated 3 out of 5 \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is moderately priced and near Rainbow Vegetarian Café . The Rice Boat serves fast food in the riverside area . It is family friendly but has a low customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an Italian , children friendly , and riverside near The Sorrento . \nname : Bibimbap House | food : Japanese | price : cheap | area : riverside | near : Clare Hall||At the riverside , near Clare Hall , the Bibimbap House serves cheap Japanese food \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||The Clare Hall and riverside area has a coffee shop named Clowns that serves French food with a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly Italian restaurant with an average customer rating . It is situated in the riverside area near Café Rouge . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is based in the riverside area near Burger King . It serves food at mid range prices . It is has a three star rating and is family friendly .. \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a expensive coffee shop that providing average range food and family services . It is located in city center after Café Sicilia \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Blue Spice is a low - priced restaurant in the city centre that delivers take - away . \nname : Aromi | Type : restaurant | food : Chinese | area : city centre||Aromi is a Chinese restaurant located downtown . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two fast food establishment is located in riverside and is child friendly . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : no||The Chinese restaurant The Vaults is cheap , but not family friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap Indian place on the riverside . They have an average customer rating and are family friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||Cocum is a family friendly low price Café and restaurant . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a high priced family pub located in short proximity to Café Rouge . The pub features wine and spirits as well as small plates . \nname : The Twenty Two | food : English | area : city centre | family friendly : no||Located near the city centre , The Twenty Two is an English restaurant that is not family - friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||In riverside , Zizzi , a children friendly highly know coffee shop usually ranges around £ 30 or more . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian restaurant that is family friendly . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : city centre||The Phoenix is an Indian restaurant in the city centre with an excellent customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||If you want Italian , The Dumpling Tree restaurant is cheap . \nname : The Twenty Two | food : French | family friendly : no||The Twenty Two is dine in restaurant that is not family friendly . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Fast food is served at Green Man pub , located in the riverside area , close to Café Rouge . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||There is a child friendly restaurant serving English food , called Loch Fyne . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Rated 1 out of 5 , Cotto is a fast food coffee shop . Cotto is moderately priced and located in the riverside area near The Portland Arms . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is located in the city centre near All Bar One . Stop in for inexpensive Chinese dishes and leave the kids home . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||There is an expensive coffee shop The Golden Palace located by the riverside with average customer rating that provides Italian . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a coffee shop that serves French food named Fitzbillies . They have a high price range and it is located at the riverside . It is a child friendly establishment with a customer rating of 3 out of 5 . \nname : Wildwood | Type : restaurant | family friendly : yes||Here is a family - friendly restaurant called ' Wildwood.' \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman serves fast - food . It is kids friendly , moderately priced , located in the city centre and has a customer rating of one out of five . \nname : The Eagle | food : Italian | customer rating : 3 out of 5||The Eagle is a 3 star restaurant that serves Italian food . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a cheap and average rated pub on the riverside . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||A high rated and kid friendly restaurant in riverside called The Rice Boat is conveniently placed near Express by Holiday Inn with prices ranging between £ 20 - 25 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap family friendly Japanese restaurant The Rice Boat near Express by Holiday Inn located in riverside . Customer rating high . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults coffee chop is in riverside located near Café Brazil . It has a moderate price range and a customer rating of 1 out of 5 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : city centre||Clowns is a low rated pub that costs more than 30 and is located at the city centre . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto is a moderately priced coffee shop featuring burgers and fries . It is located near The Portland Arms \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in riverside . It is child friendly with high customer ratings and serves Chinese food for £ 20 - 25 . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Phoenix has an excellent customer rating for its Chinese food in a central location . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat sells Chinese food in the riverside area of town . It is children friendly , however the overall rating is only a 1 out of 5 . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Although a high rated and moderately priced English restaurant , Strada is not family - friendly . It is located near Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the moderate price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a non kid friendly . moderately priced fast food restaurant with a customer rating of 3 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||Zizzi is a Fast food pub with a family friendly atmosphere . It 's enjoyed by all . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix has a low rating due to making less than £ 20 on the Japanese food . They are relocating to city centre . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An Italian coffee shop called The Wrestlers is located along a riverside . Its near Raja Indian Cuisine , price range is moderate , and kid friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is an Indian pub that has a price range of 20 pounds or less . It is located near Café Brazil . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop serving Italian food and is priced low with 1 out of 5 stars . It is family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is an inexpensive , family - friendly sushi bar located by Burger King . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||There is a Italian food restaurant that is kid friendly named Loch Fyne . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree , near The Portland Arms , is a family - friendly pub that serves Indian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||There is an Fitzbillies , they are serving Italian pasta and they are cheap . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : no | near : The Bakers||A restaurant named The Golden Curry is located near The Bakers . It has Indian food and is not kid friendly with a moderate price range \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : All Bar One||A moderately priced Chinese restaurant near All Bar One called Midsummer House with an average rating . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : city centre | near : Clare Hall||A low - rated Indian coffee shop , named Clowns , is situated in the city centre near Clare Hall . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||A child friendly fast food place is The Golden Curry , however it has a low customer rating . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café there is a place with a high customer rating called The Rice Boat . The price range is 20 - 25 . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter , which is an Indian - serving coffee shop near Café Sicilia , has a price range of £ 20 - 25 , is kid friendly and has a high customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : no||Loch Fyne , a highly priced Italian restaurant , is not children friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||High rated riverside area coffee shop , Zizzi , is kid friendly and prices range from £ 20 - 25 . \nname : Bibimbap House | food : Indian | area : riverside | near : The Rice Boat||If you 're looking for Indian food in the riverside area , Bibimbap House is near The Rice Boat . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||With an average customer rating of 3 out of 5 , Strada , which is located near the Rainbow Vegetarian Café provides Chinese food priced at a moderate range and provides a child friendly atmosphere . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada offers low quality Indian food at a cost of less than £ 20 in a non - family friendly atmosphere near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers offers Japanese food in a mature dining environment , for under £ 20 customers say you could do worse . \nname : The Eagle | food : Indian | customer rating : high||There 's a Indian restaurant with a high rating called The Eagle . \nname : Zizzi | Type : restaurant | price : high | area : riverside||Down by the riverside there 's a restaurant Zizzi with a high price range . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns is a new coffee shop serving French cuisine and with a low customer rating . It is located riverside and it is near Clare Hall . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||For less than £ 20 you can eat Indian food at The Waterman in the city centre . It is family friendly although it has a low customer rating . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a child friendly pub which serves Chinese food . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the cheap price range with an average customer rating . It is family friendly and located in the city centre near Express by Holiday Inn . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada near the Rainbow Vegetarian Café serves Japanese food , is family Friendly , and the price Range is cheap and has a customer Rating of 5 out of 5 \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | near : The Sorrento||There is an Italian coffee shop called The Mill that is located in the City Centre . It is near The Sorrento and has a price range of less than £ 20 . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is worth trying for cheap food . It 's licensed , but isn 't family - friendly . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : no||Alimentum sells Chinese food the price range is moderate . It is on the side of the river and the kids are friendly . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||In Riverside the Blue Spice serve meals more than £ 30 and the food is Japanese . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an expensive English restaurant in Riverside , near the Express by Holiday Inn . It has average ratings and is not kid friendly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||One kid - friendly establishment is Blue Spice , with a moderate price range . It is located in the riverside , and has ratings of 3 out of 5 from customers \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a coffee shop called Cocum that is family friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Italian food place located near Express by Holiday Inn in city centre with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : no||Loch Fyne is a moderately priced fast food restaurant that is not kid friendly . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a local pub with customer Ratings of 5 out of 5 stars . Serves Japanese food at prices more than £ 30 . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||Midsummer House is an average rated restaurant that serves Italian , it 's located near All Bar One . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is located riverside , near Crowne Plaza Hotel . It is a kids friendly coffee shop , serving Indian food with a high customer rating . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly pub located in riverside with a 5 out of 5 rating \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||There is a medium priced restaurant Midsummer House located in City Centre near All Bar One . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||'The Wrestlers ' is an Italian place with average customer reviews and reasonable prices , but it is not child - friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a high end Italian restaurant that is children - friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||The Loch Fyne is a restaurant that serves wines and cheeses and is family friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : moderate | near : Café Brazil||The Cambridge Blue is a moderately priced Indian pub located next to Café Brazil . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a Japanese coffee shop in the city centre area . It has a high price range and is rated 3 out of 5 . \nname : The Phoenix | food : Indian | customer rating : low | area : riverside||In riverside there is Indian food at The Phoenix \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||The Mill is a restaurant , on the riverside . It 's near The Rice Boat . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a popular family friendly restaurant that has earned 5 out of 5 customer ratings . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : no||Serving Indian food , Zizzi pub has an average customer rating of 5 out of 5 and is not family friendly . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||A 1 star French coffee Shop in Café Sicilia called The Punter has a adult friendly atmosphere and average pricing on items . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop offering fast food . It has a one star rating and is in the high price range . It is located near to Burger King . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||A coffee shop that is children friendly and serves Italian food is The Cricketers . It has an average customer rating and is near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : no||Loch Fyne is a non - family friendly Chinese restaurant . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : average||Wildwood is a pub providing Indian food in the cheap price range . Its customer rating is average . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||If you like value for money , visit The Plough pub next to Café Rouge \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||In the riverside area , near The Sorrento , is a kids friendly restaurant called Browns Cambridge . It provides Japanese food . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a French restaurant in Riverside . It is kid friendly and prices range in £ 20 - 25 . \nname : The Punter | food : Indian | price : £ 20 - 25||The Punter provides Indian food in the £ 20 - 25 price range . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two serves Japanese food and is family friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a kid - friendly Italian coffee shop located near Café Sicilia that was ranked high by customers \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The Plough serves English food in a kid - friendly pub setting , with a moderate price range . It 's near Café Rouge . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||French food restaurant Strada is a family friendly highly recommended high cost venue located in the city centre near Rainbow Vegetarian Café . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||The Waterman is a riverside pub serving Japanese food and has a customer rating of average . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum has children for 30 pounds . High rating for a pub . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat a Chinese restaurant in the less than £ 20 price range has a low customer rating and is not family friendly . It can be found near the Express by Holiday Inn in the riverside area . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Green Man is a pub in Riverside . It serves French food and is located near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||In the high price range is Fitzbillies in the city centre . It 's child friendly serving French food in their coffee shop which has been rated 3 out of 5 by their customers . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||In city centre Japanese food can be found at the child friendly Alimentum . Prices from £ 30 and up . \nname : The Vaults | Type : restaurant | food : French||The Vaults is a restaurant that offers French food \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : no||The Rice Boat is located in riverside , it serves an average rated Japanese food . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||A high price range coffee shop near Café Brazil in the area of riverside , The Vaults has an average rating . \nname : Blue Spice | food : Chinese | price : cheap | area : riverside||Blue Spice is a Chinese restaurant . it has cheap prices . It is locate din riverside , \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Try The Eagle , a highly - rated French restaurant , described by customers as a 5 out of 5 . The coffee shop 's menu and ambiance is high - end , so you should expect to pay above £ 30 . It 's children - friendly , so your kids will love it too . It is located in Riverside , near Burger King . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a family friendly pub which sells Japanese food and has an average customer rating . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a French pub located near Café Rouge . It is kids friendly , and the price range is in between £ 20 - 25 . \nname : Bibimbap House | food : Fast food | price : more than £ 30 | area : riverside | near : Clare Hall||Near Clare Hall is a fast food restaurant called Bibimbap House . Located near the riverside , Bibimbap House offers food with a high price tag . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||There is a sushi restaurant The Eagle with a 5 star rating . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Next to the Express by Holiday Inn , there is five star sushi restaurant that is medium priced and family friendly , it is called The Rice Boat . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café that serves English food with a price range less than £ 20 . it has low customer rating and is family friendly \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Indian food in the riverside area near Express by Holiday Inn . The price range is moderate , and the customer rating is 3 out of 5 . It is not children friendly . \nname : The Plough | Type : pub | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a kid friendly pub located near the Café Rouge . Its price range is £ 20 - 25 . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice with a customer rating of 3 out of 5 is kids friendly and moderately priced and is located in the Riverside area . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||Aromi , a coffee shop located in the Riverside area , serves fast food , and is oriented toward an adult clientele . Customers do not give it a high rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers go to a coffee shop that 's family - friendly , price range less than £ 20 , serves Japanese food , and is found near Raja Indian Cuisine in the city centre area . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in city centre offers French food at a higher price range \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a three star restaurant located near Express by Holiday Inn called The Rice Boat . It 's family friendly and moderately - priced . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , The Rice Boat is an expensive restaurant with a 1 out of 5 customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located near the river and the Crowne Plaza , Taste of Cambridge is an adult only coffee shop offering spirits and appetizers . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi is a family - friendly French coffee shop rated average . It is located near riverside . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes||The Olive Grove is a high - priced Fast food pub located at the center of the city . The Olive Grove is children friendly . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||The Twenty Two is a 3 out of 5 star pub near Café Sicilia and the riverside . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near the Crowne Plaza Hotel serves Japanese food and is child friendly . \nname : The Vaults | food : French | price : moderate | family friendly : no||The Vaults is a low cost restaurant located in the city of the centre . It delivers take away \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry is an Indian food restaurant with high customer rating that is kid friendly . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||Browns Cambridge offers Japanese food at a high price range . Their customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Near the Café Sicilia , there is a child friendly , moderately priced coffee shop called The Punter which sells fast food . It has a customer Rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : riverside||The Waterman is a five star pub near City centre . \nname : The Punter | food : Fast food | price : high||The Punter is a Fast food that has a high price range \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is a family friendly Japanese restaurant called The Waterman . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is an averagely priced , highly rated Italian coffee shop in the city centre which isn 't kid friendly . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is great for sushi and close to the Yippee Noodle Bar \nname : The Mill | Type : pub | food : Chinese | price : high | area : riverside||The Mill is a pub that serves Chinese food at a high price range and it is in the area of riverside . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Next to the river The Waterman is moderately priced low quality family restaurant \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located riverside is Fitzbillies , a child friendly coffee shop . They serve high priced Indian food with a customer rating of 1 out of 5 . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||Near the river is a cheap sushi restaurant , called The Phoenix . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies coffee Shop is a low - priced restaurant , near the River Cam in Cambridge , that serves seafood and sushi . It is not suitable for families with small children . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||With a customer rating of 1 out of 5 , The Punter coffee shop serves moderately priced Indian food . It is located near Café Sicilia and is not kid friendly . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located near Café Rouge in the riverside area with a customer rating of 1 out of 5 . It is children friendly . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a restaurant in the city centre called The Rice Boat . It is not family - friendly , but it serves French food and has a rating of 5 out of 5 . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||The Vaults is kid friendly , and the Fast food is moderately priced . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||There is moderately priced coffee shop serving Italian food on the riverside near The Sorrento . It 's called The Mill . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a high customer rating and is located in the city centre , near Express by Holiday Inn . It offers kid - friendly English style food at an average price range of 20 - 25 . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a highly priced venue in riverside , that is child friendly , and gets average customer ratings . \nname : The Twenty Two | food : Italian | family friendly : yes||A child friendly Italian restaurant The Twenty Two \nname : Alimentum | food : English | price : high | area : city centre | family friendly : yes||Located in the city centre is a highly priced restaurant called Alimentum . It serves English good and is child friendly . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||A 3 out 5 rating Japanese restaurant in the riverside area is The Waterman . They are not kid friendly but have a price range of 20 - 25 pounds . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Child - friendly venue The Rice Boat serves French food at moderate prices . It is located on the riverside , near the Express by Holiday Inn , and is rated 1 out of 5 . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : city centre||The Mill is a pub in the city centre that serves Japanese Food at a price of lower than 20 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Located outside of the City centre is a three star , low cost coffee shop called Fitzbillies . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The family friendly The Waterman served Chinese food near the Crowne Plaza Hotel . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||There is 3 star dining and drinks at The Midsummer House . Not far from All Bar One . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||The Cricketers is a Japanese restaurant near All Bar One . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Cheap food and drink in the riverside area at The Waterman . Rated one star . Family friendly , low prices . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a family friendly Italian restaurant on the riverside . It is average . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly sushi restaurant located on the riverside . It is located next to All Bar One . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is Fast food located in the city centre near Yippee Noodle Bar . The price range is £ 20 - 25 and the customers have give it high ratings . \nname : The Twenty Two | food : Italian | family friendly : no||The Twenty Two serves Italian food and is not family - friendly . \nname : Blue Spice | food : Italian | price : high | area : riverside||By the river , Blue Spice is located . It is an Italian restaurant with a medium price range . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children - friendly English restaurant near Express by Holiday Inn in the city centre with a high customer rating and price range more than L30 . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a highly rated coffee shop catering for adults . It is highly rated and serves English meals at more then £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||In the city centre area , The Golden Palace coffee shop has a customer rating of 5 out of 5 . We feature a cheap price range and fast food . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low rated coffee shop in the riverside area , near Burger King . They also serve Indian food for less than £ 20 in a family friendly setting . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a Fast food place near All Bar One . It is decently priced and has a rating of 3 out of 5 . \nname : The Eagle | food : Fast food | customer rating : low||Fast food restaurants include The Eagle , which has low customer ratings . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Near The Portland Arms in the area of city centre is Cotto . It is a coffee shop that has highly expensive Italian food , and its customer rating is averaged . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a poorly rated moderate price Italian food coffee shop . It is not child friendly and it is located in riverside by Burger King . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||There is an expensive coffee shop which serves fast food called The Golden Palace . It is on the riverside . The customers rate it as average . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||There is a cheap pub The Mill located near the river . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||There is an affordable pub The Plough located near Café Rouge that serves fast food . It is not a family friendly restaurant . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a Japanese place located near Café Rouge with a customer rating being 5 out of 5 . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is an English restaurant in the cheap price range with a 5 out of 5 customer rating . It is located near All Bar One . \nname : Green Man | Type : pub | food : Japanese | area : city centre | near : Café Rouge||In the city centre , if you like Japanese food and enjoy a relaxed pub like environment , try the Green Man , located near Café Rouge \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||No , The Rice Boat its not 1 out of 5 rank but in the moderate range , and located Italian restaurant in the city centre on side Express by Holiday Inn \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : city centre||The Phoenix may have an average customer rating , but it is a great high end Italian restaurant located in the city centre . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop which also serves fast food . It is child friendly , located on the riverside and has a customer rating of 1 out of 5 . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 3 - star not to expensive sushi restaurant down the road from Rainbow Vegetarian Café \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre||In the city centre is located a coffee shop named The Golden Palace that offers French food with a price range less than £ 20 but it has a low customer rating . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||The Wildwood is a mid ranged French eatery with average customer ratings . It is located near the Ranch . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a high price range pub with a customer rating of 1 out of 5 . It is also children friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a high priced coffee shop serving Italian food with a children friendly environment , try The Wrestlers near Raja Indian Cuisine in the Riverside area . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a moderately priced , kid friendly place near the Express by Holiday Inn . its customer rating is 1 out of 5 \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : no||Loch Fyne is an Indian food restaurant with great prices and family friendly atmosphere . \nname : The Punter | food : Italian | price : high||The Punter is an expensive eatery . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The family - friendly Japanese coffee shop located at city centre is called Fitzbillies and has a low customer rating . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe is a restaurant near The Six Bells and has a cheap price range . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a low priced Indian restaurant that is family friendly and located in city centre . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||No , the French restaurant The Rice Boat in the city centre on side Express by Holiday Inn with low rank price less than £ 20 \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that offers Italian food . It is located in the city center . Prices are between £ 20 - 25. it is near The Portland Arms . Customer ratings are high . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in riverside , you will find a 5 out of 5 rated family friendly Café called Browns Cambridge that serves Indian food . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly , low - priced fast food restaurant . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : high||The Cambridge Blue is a high rated Chinese food restaurant . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The adult - friendly coffee shop , The Punter , serves expensive but averagely - rated Indian Dishes near Café Sicilia . \nname : Cotto | food : French | customer rating : average | family friendly : yes | near : Ranch||Cotto serves average French food close to Ranch . It is friendly to families . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||French food with a less than £ 20 price range can be found at Cotto . It is a coffee shop with an average rating located at the city centre near The Portland Arms . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub with a moderate price range in City Centre that is not kid friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||The coffee shop Clowns near Clare Hall earns a rating of 1 out of 5 in Fast Food for the Riverside area . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The riverside is children friendly with a Japanese place , The Twenty Two . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : city centre||The Mill is a pub in the city centre that serves fast food for less than 20 pounds . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre||The an average customer rating and high price range , is The Golden Palace coffee shop , fast food place located in the city centre . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is 1 out of 5 . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is a High priced Sushi restaurant with 3 stars . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop , located on the river , is near Raja Indian Cuisine and low priced \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : no | near : Café Rouge||The Plough pub , near Café Rouge , is a French restaurant that is in the above - average price range . It is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop that is located in the city centre . It serves Japanese food , it has cheap prices , and it has a high customer rating . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an average rated Italian restaurant . The Rice Boat provides low - priced meals for the whole family . It is located in the center of the city , near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving fast food near The Portland Arms . It has a high customer rating and is child friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced , Italian restaurant that is non - kid friendly near the center of the city and the Express by Holiday Inn that has a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub near The Portland Arms serves fast food in a child friendly setting . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : no||The Vaults offers Indian food at a price range of less than £ 20 . Note : this restaurant is not considered to be family friendly . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||The Waterman is a family - friendly , French restaurant with average customer ratings and a price range less than £ 20 located in the city centre . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||With prices more than £ 30 , The Twenty Two is located in riverside near The Rice Boat . It is kid friendly , but has a low rating . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Eagle serves Japanese food with a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop near the Burger King in the riverside area . It is child friendly and has a customer rating of 3 out of 5 . It serves French food and has a high price range . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman in city centre serves French food and has a customer rating of 3 out of 5 . The price range is £ 20 - 25 and is kid friendly . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||5 out of 5 people rated The Punter , a French coffee shop as cheap . It is a family friendly coffee shop and located near Café Sicilia . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||Located near The Bakers is high priced family friendly fast food restaurant The Golden Curry . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe near The Six Bells has a £ 30 price range restaurant \nname : The Golden Curry | food : French | price : cheap | family friendly : yes | near : The Bakers||Yes there 's a cheap family friendly restaurant near The Bakers , it 's called The Golden Curry and serves French food . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a cheap priced fast food joint , located in the center of the city that provides a five star customer satisfaction experience . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : no||Alimentum is an Indian eatery offering mid - priced cuisine located near the river . Adults only please . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a coffee shop providing Indian food in the more than £ 30 price range . Its customer rating is high . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||There is an Italian coffee shop in riverside near Clare Hall called Clowns . It has received a customer rating of 5 out of 5 . \nname : The Punter | food : Japanese | price : more than £ 30||If you are looking for a nice Japanese restaurant , The Punter offers food selections priced £ 30 and up . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||The kids - friendly Blue Spice coffee shop , moderately priced with a 3 out of 5 customer rating , is situated on the riverside , near Avalon . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Clowns is in the riverside area near Clare Hall . it is a coffee shop that serves Japanese food and has a low customer rating . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns for children can be found near Café Sicilia at a high price range . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||The Italian restaurant Loch Fyne is child frenziedly with prices on the higher end . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||A Japanese cuisine served by The Golden Curry near Café Rouge in the city centre \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Family friendly restaurant Green Man , located along the riverside , has a price range of less than £ 20 . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge is a high priced restaurant that offers a variety of food and drinks . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : no||Giraffe is an adults only pub located on the Thames which serves English food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a Japanese coffee shop near Raja Indian Cuisine , offers family friendly riverside dining for less than £ 20 . \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||A French place named The Vaults costs £ 20 - 25 , and yes , it is kid friendly . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is a riverside Italian restaurant with an average rating \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a family pup that provides excellent customer service . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a restaurant Italian in moderate price range with rank 3 out of 5 located in the city centre on the side Yippee Noodle Bar \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A high priced Italian restaurant and coffee shop that is children friendly is called The Wrestlers . It is in the city centre near Raja Indian Cuisine . \nname : The Twenty Two | food : Italian | family friendly : no||Not for families , The Twenty Two is an adult only restaurant . Eat - in only . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area near the Crown Plaza Hotel is Browns Cambridge . It is a kid friendly coffee shop , that has Japanese food , and it 's rated 1 - 5 . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House sells sushi and has a 5 star rating . It is located near to Café Rouge . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Italian food at moderate price near Clare Hall on the riverside is Bibimbap House . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||In the riverside area near The Rice Boat is The Loch Fyne which serves French food and has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||The Fast food coffee shop with a high price range and customer rating of 1 out of 5 near Ranch is the Wildwood . \nname : Blue Spice | price : cheap | area : riverside||A great restaurant near the riverside is Blue Spice . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada , near the Rainbow Vegetarian Café , is family friendly and cheap , less than £ 20 , but its customer rating is low . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : city centre||The Eagle is a moderately priced restaurant that gets a 1 out of 5 rating and is located at the city centre . \nname : Fitzbillies | food : French | price : cheap | near : The Six Bells||There is a cheap French establishment called Fitzbillies located by The Six Bells . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||Near Café Rouge , there is a kid - friendly pub called The Plough , that serves moderately priced English food . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns is a cheap pub located in the river side with high customer rating as 5 out of 5 . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is cheap and located on the riverside near All Bar One . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace coffee shop serves Italian fare with prices less than £ 20 . The Golden Palace is located along the river and gets a low customer rating . \nname : The Plough | Type : pub | food : Japanese | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located near Café Rouge that serves Japanese food at a cheap price . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||Near the Burger King in the city centre is an Italian coffee shop called The Eagle . It is not child friendly , has an average customer rating and is in the high price range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||City centre , fast food coffee shop , The Eagle is near Burger King . It is not child friendly and has a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||Serving Japanese food , The Wrestlers comes with a high customer rating . The price range is £ 20 - 25 . It is not kid friendly , \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||Italian food is served at The Golden Curry which is located near The Bakers . The price range is high but it is children friendly . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada located near Yippee Noodle Bar , serves English foods and score 1 out of 5 in Customer service ratings . \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is an Indian pub near Café Rouge . They are family friendly and cost less than £ 20 . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : yes | near : All Bar One||There is a children friendly high - priced restaurant called Green Man located near the All Bar One in the city centre that provides Chinese food . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||In riverside I like the family friendly fast food place called , The Twenty Two . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is an adult friendly Indian restaurant in riverside . It is not family friendly but is less than £ 20 . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is a moderately priced restaurant however , is not kid friendly . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||Located in Riverside , The Olive Grove offers food in the more than £ 30 range , and is children - friendly . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a place that sells Indian food for under £ 20 that has a low customer rating and is located on the riverside near Express by Holiday Inn . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : no||With prices less than £ 20 Strada is an average shop not suitable for children . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||If you are looking for somewhere to take the kids , try Blue Spice . It 's on the riverside . Prices are moderate . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves English dishes , and is child friendly . It is in the riverside district near Café Rouge , but it has a 1 out of 5 star rating . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood restaurants welcomes families . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is child friendly perfect rated French coffee shop near Crowne Plaza Hotel in the riverside area . Its named Browns Cambridge . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill pub is located near the water and provide games and more expensive food services . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Located in the Riverside area with a price range higher than £ 30 and a low customer rating you will find clowns pub . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Alimentum is located in the riverside area . It is child friendly and serves French food at more than £ 30 . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly 5 star restaurant . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Next to Clare Hall is the Bibimbap House , this is a high priced fast food restaurant . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : city centre | near : Café Sicilia||The Twenty Two Pub in the City Centre next to Café Sicilia is rated highly . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||For fast food try Loch Fyne in the riverside area near The Rice Boat . This restaurant has a high customer rating . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a high priced , average , non - family - friendly , French coffee shop . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man restaurant is located on the outer skirts of the City center . near the River . Located near the All Bar One , the restaurant boasts spirits as well as fine dining . Families are welcome . \nname : Wildwood | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | near : Ranch||For good Indian eats near Ranch , Wildwood is a nice , affordable coffee shop with prices ranging £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : French | price : high | area : riverside | near : The Sorrento||Near The Sorrento in Riverside is a high priced French coffee shop , The Mill . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix has high priced Indian food with a one out of five star rating in the riverside area . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a French restaurant located in the city centre near the Express by Holiday Inn . It is children friendly , with a high price range . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers , serves burger and fries at a cost effective price . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel , a Fast food coffee shop is Family friendly , and situated riverside called Taste of Cambridge . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||Cheap restaurant named The Plough family friendly near The Bakers . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a children friendly coffee shop which serves Italian food , and has a high customer rating , located near The Portland Arms . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||The Mill is a low - priced pub in the river . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a children friendly fast food place near the riverside . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Phoenix is a French restaurant in the city centre that costs more than £ 30 . It has a customer rating of 5 out of 5 . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||Near Clare Hall along side the river is a sushi place called ' Bibimbap House ' , it is very expensive . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a poorly rated , moderately priced fast food venue which is family - friendly . It can be found near Express by Holiday Inn in the city centre . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||The Midsummer House has 3 star dining and spirits located near All Bar One . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat has a 20 - 25 price range Japanese food and 3 out of five rating , it 's located near Express by Holiday Inn . \nname : Midsummer House | food : Indian | price : high | customer rating : average | near : All Bar One||Indian restaurant Midsummer House has an average customer rating and is found near All Bar One . It has a high price range . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman provides Indian food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||there is a coffee shop near from Burger King at city centre named The Eagle made Japanese food \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a pub where the price range is less than £ 20 . It is near the riverside and the customer rating is low . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||Just near Café Brazil , you 'll find The Cambridge Blue , a moderately priced pub that serves French food . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Italian restaurant near Rainbow Vegetarian Café , that is in the Hugh priced range , with a customer rating of 1 out of 5 . It is also children friendly . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is a family - friendly restaurant with an average customer rating and below average prices . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : yes||The Twenty Two is family - friendly serving Japanese food in the City Centre \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace , located near the Rainbow Vegetarian Café in the city centre , is a high priced pub . \nname : The Rice Boat | food : Chinese | area : city centre||City Centre , Chinese restaurant , The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian restaurant that is children friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is an English family friendly pub by the riverside called Giraffe . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Chinese restaurant is near Express by Holiday Inn in the city centre . It is children friendly with a high price range . It has an average customer rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two located at riverside serves Japanese food and is family friendly \nname : The Mill | Type : coffee shop | food : French | price : cheap | area : riverside | near : The Sorrento||French coffee shop The Mill , offers a cheap menu and is located in riverside near The Sorrento \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a expensive Japanese food restaurant The Waterman . It has received a 3 out of 5 rating for customers and is kid friendly . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a fast food restaurant near The Six Bells that offers meals within the £ 20 - 25 range . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop in the city centre area with high price ranges and a 3 our of 5 customer rating , serving Japanese food . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : no||The Rice Boat serves Indian food in the riverside area . It has a customer rating of average and is not family friendly . \nname : Bibimbap House | food : English | price : moderate | area : city centre | near : Clare Hall||The Bibimbap House , near Clare Hall in the city centre , is a moderately priced English food establishment . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area , is a fast food outlet - Clowns coffee Shop - which has a rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that has Japanese food that 's rated 1 - 5 . It 's in the riverside area near the Crown Plaza Hotel . And yes it 's kid friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||With prices ranging from £ 20- £ 25 , Zizzi is a coffee shop at the riverside . It is kid friendly and prices range from £ 20- £ 25 . The customer rating is high . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a child friendly coffee shop located near Café Sicilia . It has a high customer rating , and serves English food costing over 30 euro . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a cheap , family friendly coffee shop serving French food in riverside with a customer rating of 5 out of 5 . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||Midsummer House , low - cost 3 star food , located next to All Bar One , \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman serves British fare at reasonable prices . Families welcome . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is a high price , 5 star coffee shop located next to Ranch . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||If you 're looking for a cheap , family - friendly coffee shop with a 5 out of 5 rating , look no further than the Giraffe near The Bakers . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a fast food place on the riverside called The Phoenix . It has a customer rating of 1 out of 5 . The price range is moderate . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no||Moderately priced pub The Olive Grove serving Italian meals in riverside area that is best suited for adults . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||Loch Fyne restaurant is great for food and family events , and is child friendly \nname : Alimentum | food : Japanese | price : high | area : riverside | family friendly : yes||Alimentum , an expensive Japanese restaurant along the riverside , welcomes children . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||Looking for a cheap fast coffee shop in the riverside area near The Sorrento , check out The Mill \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant providing English food in the moderate price range . It is located in the city centre near Express by Holiday Inn , and is child friendly . It has a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers are a high priced three star restaurant . They are family friendly . \nname : Strada | Type : pub | food : Japanese | customer rating : high | near : Yippee Noodle Bar||Strada near Yippee Noodle Bar is a pub receiving great reviews about it 's Japanese cuisine \nname : Green Man | price : cheap | area : riverside | family friendly : yes||By the riverside there is a cheap , family - friendly restaurant called Green Man . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is located next to The Portland Arms . Cotto is a low priced coffee shop . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family restaurant with high prices . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||The Mill , an Italian restaurant , located in riverside area , has pub eating with prices on the menu less than £ 20 . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Fast food restaurant that is located by the riverside near Café Rouge . This is not a family - friendly restaurant and has a customer rating of low . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers provides Indian food in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat is a highly recommenced restaurant with mid - range prices . It is located near the Rainbow Vegetarian Café . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a highly rated coffee shop near The Bakers . This child friendly shop is in the £ 30 and over price range . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||With a customer rating of 5 out of 5 is Browns Cambridge , which serves Japanese food . Its a child friendly coffee shop near the Crowne Plaza Hotel in the riverside area \nname : The Rice Boat | food : French | area : riverside||The Rice Boat is located by the river and serves French style foods . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a mid - price range burger diner near All Bar One . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||for Italian Food by the riverside , The Green Man Pub is near Café Rouge \nname : The Eagle | food : French | customer rating : 1 out of 5||Providing French food , The Eagle has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no||There is an Italian coffee shop called Cocum . It is not children friendly . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop in city centre that serves Indian food . It has a customer rating of 3 out of 5 and moderately priced . \nname : Bibimbap House | food : Japanese | price : moderate | area : city centre | near : Clare Hall||Near Clare Hall in the city centre is a Japanese restaurant with moderate prices called Bibimbap House . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||For Italian food in the riverside area , try the Aromi coffee shop , but keep in mind that it is not family - friendly and has a low customer rating . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi kids - friendly pub in riverside has a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop has Indian food with customer rating of 5 out of 5 at riverside , is family friendly and is near Crowne Plaza Hotel . \nname : The Golden Curry | food : Fast food | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a kid - friendly Fast food in the price range of more than £ 30 . It is situated near The Bakers . \nname : Cotto | food : French | customer rating : high | family friendly : yes | near : Ranch||There is an French Cotto and there is near Ranch . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is rated 3 out of 5 , with moderate pricing coffee shop . Located near the center of the city and the fast food Burger King it is kid friendly . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||With the average customer rating 1 out of 5 , The Golden Curry is a family friendly Indian restaurant . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||With a price range of less than £ 20 , Green Man is a cheap place to buy Chinese food . It is not family friendly and is located in the riverside area , near All Bar One . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee Shop . It is located in City center near Café Sicilia . Start from low price and family - friendly . Have 5 out of 5 costumer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a high - priced coffee shop that offers fast food . It is located near The Sorrento in Riverside . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||In the riverside area near The Rice Boat is an Italian restaurant called Loch Fyne that prepare Italian food . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||Giraffe its a Italian restaurant located near the center . of the city \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||The Vaults is a kids - friendly fast food restaurant with an average price range of £ 20 - 25 . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice has a high customer rating as it is children friendly and has a price range of more than £ 30 . It is located in the area of riverside . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||The Cambridge Blue is a pub that serves English food . It is located near Café Brazil and has a cheap price range . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||Located near Ranch , Cotto is a highly rated family friendly fast food place . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Serving Japanese food , in the high price range , The Wrestlers is child friendly and has a customer rating of 5 out of 5 . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||Riverside holds an Italian pub known as Giraffe . It is not family - friendly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge sells Japanese food by the riverside . It is children friendly . It is near The Sorrento . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Alimentum is a French restaurant located along the riverside which offers a scenic view . Which makes this restaurant even better is that this is a family friendly place , and also offers food on a budget with a price range for meals under £ 20.00 \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Despite not being family friendly , Local coffee shop , Fitzbillies located in the City Centre offers Indian food at a cheap price . IT has a customer rating of 5 out of 5 . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a highly rated , kid friendly restaurant \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : city centre||The Mill serves fast food in a pub atmosphere . It is located in the center of the city . The menu offerings are moderately priced . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a pub located on the riverside . This pub has a more than 30 euro price range and a low customer rating . \nname : Loch Fyne | food : French | customer rating : high | area : riverside | near : The Rice Boat||The Loch Fyne is a recommended French , riverside restaurant situated by The Rice Boat . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove pub can be found on the riverside and is not family - friendly and serves English food at a price range of less than £ 20 . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||A very cool restaurant of sushi called Alimentum its located near Yippee Noodle Bar \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , Fitzbillies is high priced , family friendly , and has an average customer rating . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||There is a French coffee shop called Cocum . It serves cheap food . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||There is a cheap family restaurant located near The Bakers , called The Golden Curry . It provides English food . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The riverside coffee shop Cotto serves fast food is located near The Portland Arms . It is moderately priced and has a customer rating of 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : Chinese | near : All Bar One||The Cricketers is a restaurant providing Chinese food It is near All Bar One . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle , a moderately priced coffee shop , is located north of the city center . near Burger King . \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||In the riverside area is The Phoenix which serves English food . The customer rating is 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A low priced coffee shop called The Wrestlers is not suitable for families . It is next to the Raja Indian Cuisine . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Italian coffee shop Cocum was rated 3out of 5 stars , has a moderate price range and is kid friendly . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant located near the Express by Holiday Inn in the center of the city . It is not children friendly , with a high price range and a customer rating of 1 out of 5 . \nname : Cotto | food : Indian | customer rating : low | family friendly : yes | near : Ranch||Cotto is an Indian restaurant near Ranch . It is family friendly but has a low customer rating . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : no||Cocum is a highly - rated , non - family - friendly restaurant . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a family friendly restaurant offering Chinese food . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop located in Avalon , riverside . Children - friendly . Customer rating is 1 out of 5 . High price range . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family friendly Italian venue which offers cheap cuisine . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The kids friendly coffee shop , The Cricketers , near The Portland Arms , is a 1 out of 5 rating for the Italian food they serve . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : 1 out of 5||Browns Cambridge provides Chinese food in the high price range . Its customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre area , near Burger King is a children friendly fast food coffee shop named The Eagle . It has a high price range and a 1 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The riverside coffee shop Fitzbillies is not child friendly . It is highly rated , serves Italian food and will cost more than £ 30 . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||The Clare Hall is located near the Bibimbap House which is moderately expensive . \nname : Clowns | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall at the riverside . It has a customer rating of 1 out of 5 and serves French food . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crown Plaza Hotel in the riverside area there is a child friendly coffee shop called Taste of Cambridge . It provides French cuisine . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Strada , near Rainbow Vegetarian Café , has an average customer rating with Japanese food , is family friendly , and the price range is less than 20 pounds . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is located in Riverside near The Sorrento . They offer kid friendly fast food . \nname : The Olive Grove | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a pub which serves Chinese food . It is cheap , by the riverside , and is very family friendly . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a child - friendly pub , serving French food and is suitable for those with a budget of more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||family - friendly , Fitzbillies is a cheap Italian coffee shop with a customer rating of 5 out of 5 . It is located in the city centre . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a highly priced French coffee Shop near Burger King by riverside . The Eagle is not child friendly and has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is an English , child friendly restaurant located in the river side area with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the Riverside area close to the Crowne Plaza Hotel , there is a coffee shop called Browns Cambridge serving French food which is child Friendly . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Cocum is a child friendly , pub styled restaurant , that is pretty expensive but rated average . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop with Indian food ranging in 20 - 25 pounds . This establishment has high customer ratings . They are located in the centre of the city near Burger King and do not allow children . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Fast food coffee shop Taste of Cambridge near Crown Plaza Hotel in Riverside is kid - friendly . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman provides Chinese food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||There is a 1 - star place Midsummer House located beside Café Rouge that provides cheeses , wines and desserts . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers restaurant opposite All Bar One . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is rated 3 out of 5 . The serve French food on the riverside . No they are not kid friendly and the price range is £ 20 - 25 . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two near the riverside and The Rice Boat has 5 out of 5 customer rating , a price range of more then 30 euros and does not allow children . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Despite its high customer rating , Strada located near Rainbow Vegetarian Café , offers Chinese food at price range of more than £ 30 . It is not child friendly \nname : The Golden Curry | food : Chinese | price : cheap | family friendly : yes | near : The Bakers||A cheap , Chinese food place located near The Bakers is called The Golden Curry and is family friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||A low rated , low priced , riverside , Italian food place is Alimentum near Yippee Noodle Bar . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter is a Japanese restaurant under 20 pounds . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||A kid friendly restaurant with a 1 of 5 rating named The Golden Curry serves Chinese food . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||A Japanese restaurant called Loch Fyne , is not family - friendly . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is The Rice Boat , it is family friendly and inexpensive . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||No , Italian restaurant The Rice Boat in the city centre on side Express by Holiday Inn with low rank and price less than £ 20 \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Zizzi is a coffee shop near the riverside . It is not children friendly and the customer rating are not great and the price range is about £ 30 and over . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a child friendly coffee shop which serves French food at a price range of £ 30 and over , and has a customer rating of 5 out of 5 . \nname : Midsummer House | food : Indian | price : more than £ 30 | customer rating : high | near : All Bar One||The Midsummer House serves Indian food at a price range of more than £ 30 . It is near All Bar One and has a high customer rating . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is a sushi bar low priced in town \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||An average priced , Italian pub , The Plough , is near Café Rouge . It is not considered to be family - friendly . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is near of The Rice Boat in the city centre and have a high price range \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Fast food in a family friendly place is offered y Zizzi . Average customer rating . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||In the city centre near Café Rouge you will find a low rated French restaurant named The Golden Curry . It is not family - friendly . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a restaurant Located near Café Sicilia where you can eat under £ 20 . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||There is a moderate price coffee Shop The Punter with Fast food and is family friendly located near Café Sicilia . Rates 3 out of 5 . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is child - friendly and serves Italian food . It is near Ranch and has a rating of 1 out of 5 . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman provides cheap Indian food in the city centre . It is family friendly and has a customer rating of 5 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Located in Cambridge is Loch Fyne , this is not a child friendly restaurant . \nname : The Vaults | food : Italian | price : high | family friendly : no||The Vaults is not children - friendly , and their Italian food is very expensive . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Receiving a 1 out of 5 rating , The Rice Boat is a kids friendly fast food establishment located in riverside . \nname : Blue Spice | food : Indian | price : high | area : city centre||The Blue Spice is a high priced Indian restaurant in the city centre . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel you will find The Waterman , serving Italian food and it is also family friendly \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge offers expensive food in a casual , low end atmosphere . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : city centre | near : Clare Hall||Near Clare Hall , in city centre , Bibimbap House have Indian food in price range of less than £ 20 . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||The coffee shop located near Café Sicilia known as The Dumpling Tree is a child friendly coffee shop thats costs over £ 30 . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill pub has a price range of less than £ 20 serving French food and is located near the riverside area . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne restaurant offering great fresh food and wine . \nname : The Golden Curry | food : Indian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry serves Indian for more than £ 30 . Children welcome , located in The Bakers . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn , is a kid - friendly , French food place in the city centre that has a rating of 3 out of 5 with prices between £ 20 - 25 . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a restaurant that serves Chinese . Its customer rating is high and it is child friendly . It is in the city centre . Its price range is more than £ 30 . \nname : The Mill | Type : coffee shop | food : French | price : cheap | area : riverside | near : The Sorrento||There is a cheap French coffee shop The Mill . It is located in the riverside area near of The Sorrento . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough offers a family friendly dining experience and is near the Express by Holiday Inn . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a low - rated , kid - friendly Indian pub . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a mid - priced family friendly pub located near the River . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : no||In the city centre Alimentum serves Japanese food at an average price . It is not child friendly . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : no||The Wrestlers is a cheap Indian food restaurant that is not family friendly . It has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Children friendly Loch Fyne is a Japanese restaurant \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has a low customer rating but is convenient for the nearby Express by Holiday Inn , is family - friendly and in the less - than- £ 20 price range . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||In the city centre located near to Yippee Noodle Bar is a Chinese restaurant called Alimentum . Despite being a cheap place to eat it 's customers recommend it and gave it a rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop with high prices but is worthed is near to The Portland Arms \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Japanese inspired restaurant located near the Rainbow Vegetarian Café . It has a high customer rating and has a family friend atmosphere . The average price range is 20 - 25 European dollars . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||For a special treat be sure not to miss Cotto , an upscale coffee shop located near The Portland Arms . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||By The Rice Boat in the center of the city a French restaurant called Loch Fyne is rated 5 out of 5 by customers . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Finally , a child friendly coffee shop with fast food which attracts an average customer rating in riverside launching . Aromi . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Japanese pub near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a high priced coffee shop on the riverside . It serves Italian food and is not child friendly but has a 1 out of 5 rating . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a Japanese food providing pub that is less than £ 20 located near Café Rouge \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child friendly coffee shop which serves highly priced Italian food . It is near Raja Indian Cuisine in the riverside area . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The French restaurant in the city centre area near the Express by Holiday Inn is The Rice Boat . They have a high price range with a customer rating of 3 out of 5 and not children friendly . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry has English food and is family friendly . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge is a fast food restaurant at an expensive price point that is rated three out of five stars . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Browns Cambridge , a high priced Italian restaurant , has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is near The Sorrento in Riverside and is an English child friendly venue . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough pub is located near Café Rouge . It offers low prices but is not family friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : no||Loch Fyne is a Fast food restaurant that isn 't children friendly with more than £ 30 \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is a three out of five star pub . It serves food such as wine and spaghetti . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is a family - friendly restaurant that serves English food in the city centre . It is a cheap restaurant and has an average customer rating . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two restaurant is child friendly and serves French food . It is located in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a French coffee shop in riverside that has average reviews . It is kid - friendly and is in the £ 20 price range . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The child - friendly restaurant near The Bakers , The Plough , has a high price range . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is a lovely spot to eat on the riverside - only £ 20 - 25 , near All Bar One . \nname : The Phoenix | food : French | customer rating : low | area : riverside||A French restaurant located at the riverside is called The Phoenix . The customer rating is low . \nname : The Mill | Type : pub | food : Indian | price : cheap | area : riverside||The Mill is a pub that provides Indian food in the cheap price range . It is located in the riverside . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 1 out of 5||Browns Cambridge serves Chinese at a moderate price , but has an average customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an average rated , family friendly coffee shop , serving Indian food near the Crowne Plaza Hotel in city centre . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a French coffee shop in the city centre with average prices , and a high customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an expensive Italian coffee shop in city centre near Raja Indian Cuisine . They are not child friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub that serves sushi at a medium price point located outside of the City centre . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is not suitable for families . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a high end coffee shop located just south of the river . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : no | near : All Bar One||There is a moderately priced restaurant Green Man in the centre of the city near All Bar One that serves French food . It is not child friendly . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : city centre||The Eagle is a gym providing take - away deliveries in the moderate price range . It is located in the city centre . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The kid friendly Blue Spice in the city centre has a customer rating of 3 out of 5 . The price range is £ 20 - 25 . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a highly recommended restaurant that offers meals at reasonable prices . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||The Olive Grove , the pub that provides tasty hamburgers , sodas and chips to your family is locate in the centre of the city . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a highly rated , child friendly English eating establishment near the city centre . The price range is more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop with Italian food . It is not children friendly . Located near the Raja Indian Cuisine , its price range is high , though located riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is next to Burger King with a price range to £ 20 - 25 great service an Italian food \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree , riverside near Café Sicilia , is a high priced , non family - friendly coffee shop . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||A cheap family friendly pub on the riverside is The Olive Grove . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : city centre||The Waterman is rated average English pub grub located in the city center . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly coffee shop with a high customer rating . It serves Indian food in the riverside area near Crowne Plaza Hotel . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House offers a great meal with wine for dinner located near All Bar One . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly fast food restaurant . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||There is an Italian coffee shop called The Eagle that is not kid friendly . It is located near Burger King and in riverside . It has a customer rating of 3 out of 5 . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman located near the Crowne Plaza Hotel serves French food and is kid friendly \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle Indian coffee shop is moderately priced and has high ratings . This is not a kid friendly establishment but is located near Burger King in Riverside . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry near The Six Bells is not family - friendly . \nname : The Punter | food : Chinese | price : £ 20 - 25||The Punter offers Chinese food at a price range of 20 - 25 pounds . \nname : The Mill | Type : coffee shop | food : Japanese | price : high | area : riverside | near : The Sorrento||Japanese coffee shop called The Mill , offers expensive food near The Sorrento in the riverside \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a moderately priced kid friendly restaurant Located near The Bakers \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a 1 star Japanese restaurant located close to The Rice Boat . It is located in the city centre . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : no||The Wrestlers provides Chinese food in the high price range . Its customer rating is average . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located in the City centre near Yippee Noodle Bar . It is cheap , but has a five star rating . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man is children friendly with a high price range . They provide Italian food near All Bar One in the city centre . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : city centre | near : Clare Hall||For more than £ 30 , Bibimbap House offers Japanese food , and is located near Clare Hall , in the center of the city . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||Taste of Cambridge is a cheap restaurant . It has a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : city centre||The Waterman is a pub offering low price Indian food in the city centre \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||There is a nice sushi restaurant with affordable prices sitting by a waterfront location called Bibimbap House next to Clare Hall . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Indian restaurant near Rainbow Vegetarian Café that is cheap , average but not family friendly . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop located on the riverside , near to Café Brazil . It has a low price range and a customer rating of 5 out of 5 . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry , located near The Bakers , is kid friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue is a French restaurant that has a customer rating of 5 out of 5 \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly French coffee shop near Burger King in the city centre . It has a customer rating of 3 out of 5 and a high price range . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||coffee shop Clowns Clare Hall riverside Fast food 1 out of 5 \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop , is a highly - acclaimed family place that is an affordable option . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is an expensive low rated kid friendly coffee shop near The Bakers . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is close to Crown Plaza Hotel , and while it has a kid friendly dining venue serving Japanese cuisine available , but the quality of the place has a very low customer rating . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Chinese food is served at The Rice Boat at the riverside . It has a high customer rating of 5 out of 5 and is not family friendly . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada , which is cheap and family friendly , has average customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms , In the city centre of city , is a 3of5 stars coffee shop price moderate called Cotto , serves Fast food \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Wildwood Pub is a serves British style breakfast place . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a child friendly pub serving Italian food near Café Rouge in the high price range . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant that servers English food in the less than £ 20 price range an has a low customer rating . It is located in riverside near the Express by Holiday Inn . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Browns Cambridge is a Fast food place providing Fast food for more than £ 30 , rated low . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced Chinese restaurant with an average customer rating . it is located in the riverside area near Express by Holiday Inn and does not welcome children . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two , near The Rice Boat in riverside , has a less than £ 20 price range , and isn 't family - friendly . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||The Phoenix is located just outside of City Centre . They allow you to enjoy the view on the river while enjoying their lovely breakfast foods . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Stunning Ranch pub The Cricketers , family friendly and rated 5 out of 5 by customers . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||An inexpensive Italian restaurant in Cambridge is Browns Cambridge . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap fast food restaurant with a poor rating . It is conveniently located near the Express by Holiday Inn outside the City centre but does not welcome families . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a children - friendly restaurant providing English food . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a Italian coffee shop near Ranch the price ranges are moderate and the customer rating is a 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||A coffee shop that has a rating of 1 out of 5 is called The Golden Palace . They have French food for moderate prices . They recently moved to city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Burger King is a Fast food restaurant with menus ranging around £ 20 - 25 near the city centre . It has a high customer rating with a coffee shop named The Eagle , but no , it is not kid friendly . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||For cheap , fast food , there is The Wrestlers . Customers have rated it low , and it is not family - friendly . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a high priced restaurant not for children , rated 3 out of 5 . It 's riverside location is near The Rice Boat . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||'Bibimbap House ' is an expensive place that serves sushi . It is located along the river near Clare Hall . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The cheap coffee shop named The Punter also offers Italian food . It is not family - friendly and rated average by the customers . The Punter is located near Café Sicilia . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix is a restaurant providing Italian food , located in a riverside area , and the customer Rating is 5 out of 5 . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a moderately priced restaurant near All Bar One . It has a customer of one out of five . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum is a kid friendly fast food restaurant in the moderate price range located at Riverside . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no||The Olive Grove Pub is a high end adult pub that offers Fast food in the City Centre . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada near Rainbow Vegetarian Café is a family - friendly Fast food . The price range is less than £ 20 . It has a low customer rating . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||family - friendly Japanese restaurant The Rice Boat is located in city centre near the Express by Holiday Inn . It has a low customer rating with a price range of more than 30 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne restaurant ranging from more than £ 30 a children friendly fast food location \nname : Strada | Type : pub | food : Chinese | customer rating : low | near : Yippee Noodle Bar||Strada is located near Yippee Noodle Bar . It is a low rated Chinese pub . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a medium priced take away delivery service , located by the All Bar One . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers , Fast food , has a moderate price range . Not kid friendly and rating by customer of 1 out of 5 . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is an Indian restaurant that is not family friendly and located near The Sorrento , near the city centre . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi has a 1 out of 5 customer rating . a kid friendly pub serving Indian food . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub over by riverside with a 3 out of 5 customer rating . \nname : Blue Spice | food : English | price : high | area : riverside||Blue Spice provides English food with high price on the riverside . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||a cheap 5 out of 5 coffee shop is Blue Spice but they are not family - friendly . They are located near Avalon in riverside . \nname : Cotto | food : English | near : Café Rouge||Next to Café Rouge is a British restaurant called Cotto . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop is a mid - priced eatery on the riverfront . They serve pasta . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is cheap , has a customer rating of 5 out of 5 and yes has a family area . It is located in the riverside . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Indian restaurant Strada offers excellent service with affordable prices . Located by Rainbow Vegetarian Café \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||The Vaults is a low rated pub located near Café Adriatic . It has a price range under £ 20 . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a five star coffee shop called Fitzbillies that is low priced and family friendly it 's located near the river and just north of the city centre . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||There is a coffee shop rated 1 out of 5 and highly priced by the riverside near Café Brazil . It is called The Vaults . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||For cheap fast food there is Midsummer House close to All Bar One . Customers have rated it 5 out of 5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly French restaurant near The Sorrento by the river . \nname : The Rice Boat | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Fast food near the riverside is kid - friendly and as a customer rating of 3 out of 5 \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||A high customer rating with price ranging from £ 20- £ 25 . The Wrestlers is a none kids friendly Japanese food place . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop that not only serves traditional Japanese food , but is also child - friendly . The price ranges between £ 20 - 25 . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in Riverside , there is a Chinese place called The Rice Boat . The food is cheap but it is not family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : moderate||The Dumpling Tree is a moderate priced Indian restaurant . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : no | near : The Sorrento||If you 're hungry for a taste of India in central Cambridge , Browns Cambridge is the restaurant for you . Located near The Sorrento . Children must be checked at the door . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Just down the road from Rainbow Vegetarian Café is Strada , a 3 - star family friendly sushi restaurant \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a low - priced pub north of the city center . that is not family friendly . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a family friendly French restaurant , located in the riverside area . It has an average customer service rating and prices less than £ 20 . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an Italian restaurant . It is near Café Rouge , riverside . It is kid friendly . The customer rating is high . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a low - cost coffee shop that serves sushi by the river near The Sorrento . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||French coffee shop Fitzbillies is moderately priced , with a customer rating 1 out of 5 . This is not a family - friendly venue . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a Fast food restaurant , with an average rating , in riverside , near The Rice Boat \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a low quality restaurant that is not family friendly \nname : The Vaults | food : Indian | price : moderate | family friendly : no||The Vaults is a kid friendly restaurant that serves Indian food at a moderate price . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop serves Italian food at mid range prices . It is near The Sorrento in the riverside area . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There is a cool Indian coffee Shop down close to the riverside called The Eagle . Customers love it , and its super easy to find from the Burger King parking lot . Kids and coffee don 't mix , so be sure to not be that guy . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : riverside||With an average customer rating , The Phoenix is a high priced restaurant serving Indian food in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Kids are welcome at Loch Fyne fast food restaurant . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a moderately priced restaurant in the riverside area . Blue Spice customers gave this restaurant a rating of 3 out of 5 . It is moderately priced and kid friendly . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough is child friendly pub with high priced English food near Café Rouge . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Avalon||The coffee shop , ' Blue Spice ' , is located by the riverside near Avalon . It is an expensive place to go to with poor customer ratings . The environment is not child - friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||With a customer rating of 3 out of 5 , Zizzi is a high price range coffee shop in the city centre that is not child friendly . \nname : Bibimbap House | food : Indian | price : high | area : riverside | near : Clare Hall||Bibimbap House near Clare Hall in Riverside serves Indian food . The price is in the high range . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Clowns , a pub located near the riverside has high prices , but only a 1 out of 5 rating with customers . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||This is a kid - friendly restaurant near the Express by Holiday Inn . Check out The Rice Boat , a highly rated riverside fast food restaurant . Prices range from £ 20 - 25 \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Aromi is a coffee shop that is child - friendly and located in the Riverside area . They serve Indian food and are rated one out of five stars . \nname : The Mill | Type : coffee shop | food : Japanese | price : high | area : riverside | near : The Sorrento||The Mill is a high priced Japanese coffee shop near The Sorrento in riverside . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : cheap||The Dumpling Tree is a restaurant that serves Japanese food for cheap . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||The Phoenix situated near the riverside sells cheap Italian food and has an average Customer Rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a riverside fast food restaurant and coffee shop in Cambridge . Customers rate it as average , it is higher priced and does not welcome children . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman is a high priced Indian food place in Riverside but the ratings are average and aren 't child friendly . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a child friendly pub , customer rated 5 out of 5 , with an affordable price range of 30 pounds and up . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||price range is more than £ 30 and customer ratings 5 out of 5 named Browns Cambridge \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located near Café Rouge North of the city centre . They serve tapas . It has perfect reviews . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced , child friendly restaurant serving English food . They have an average customer rating and are located in the city centre near the Express by Holiday Inn . \nname : Green Man | food : French | price : cheap | area : riverside | family friendly : yes | near : All Bar One||There is a French food place called the Green Man that is family friendly . It has a cheap price range and is in the riverside area near the All Bar One . \nname : The Dumpling Tree | Type : restaurant | food : French | price : cheap||The Dumpling Tree has a cheap price range and is a French restaurant . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace is an expensive coffee shop that has a 5 - star rating . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix offers Chinese food at moderate prices with a customer rating of 3 out of 5 in the riverside area . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||Browns Cambridge sells medium rated , expensive Japanese food . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman offers English food in £ 20 - 25 . It is located at riverside . Although it is not kids friendly , yet it is rated high , by the customers . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||In the riverside area is a Fast food place called The Twenty Two and it is not family - friendly . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||Situated in the city center , The Phoenix comes highly rated by customers . This fast food establishment has a starting price of £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a fast food restaurant near the Café Rouge in the riverside area that has high customer ratings and is child friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||There is a coffee shop called The Golden Palace that also sells French food and has a high customer rating \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||In the city centre , near Burger King , you will find The Eagle . It is a non children - friendly coffee shop that serves Indian food . While its price range is quite high , more than £ 30 , it has a high customer ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop with Indian food at a high price range . It has 1 out of 5 stars . It is children friendly . It is in the city centre near Burger King . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : no | near : Café Rouge||Near to the Café Rouge you can find The Plough pub 's friendly environment where you can eat nice French food on low - price . It is a perfect place to spent your time with your friends or partner but unfortunately the place is not kids friendly . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub that is low priced that offers wine , cheese , and grapes , and is located next to Café Brazil . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||The Vaults is a pub close to Café Adriatic with a low customer rating and prices that range more then 30 euros . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is low priced and rated three stars . It is located in the City center close to Burger King . It offers the family fine dining experience . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada is family friendly , has a cheap price range and a customer rating of average . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a low priced restaurant in the riverside area providing food and drinks . Family friendly . Rated one star . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a family friendly coffee shop located near Burger King in the city centre called The Eagle which offers good food at a premium price . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers , family friendly low quality for high prices \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||Clowns is a pub in the city centre with a customer rating of 3 out of 5 . The price range is £ 20 to £ 25 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||The family friendly coffee shop Aromi serves pasta and is rated 3 out of 5 stars . Located in the City centre area . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||located near The Sorrento within riverside is a high end coffee shop called The Mill which also serves Fast food \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||Try Cambridge 's city centre for children - friendly venues . Many coffee shops are average cost . If you want Fast food , the cost will be high . Check out Fitzbillies . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly restaurant with a 3 out of 5 customer rating . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||There is a fast food place near The Rice Boat named Loch Fyne in riverside that has a high customer rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Japanese food on the riverside near Raja Indian Cuisine . It 's children friendly and has a price range of more than £ 30 . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Wildwood is a three star pub as well as a sushi bar with medium pricing . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids - friendly Japanese pub located near The Portland Arms . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||Customers rate Wildwood high , for their expensive English pub menu . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum located in the city centre near the Yippee Noodle Bar , is a French restaurant with a high customer rating and a price range of £ 20 - 25 . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Located near Café Rouge is the Midsummer House , providing 3 star meals . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||There is a pub called The Mill offering reasonably priced light meals on the riverside . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi is a highly - rated coffee shop located at the riverside . You can bring your children and experience a meal for more than 30 pounds . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||5 star , children friendly coffee shop , Zizzi is located in the city centre . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves English food and is in the city centre near Express by Holiday Inn . It has a high price range , an average customer rating and is not children - friendly . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap adult coffee shop in the city centre near Burger King . They serve French food and have great reviews . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is open to customers of all ages who are looking for Chinese cuisine . \nname : The Mill | Type : pub | food : English | price : £ 20 - 25 | area : riverside||The Mill pub serves mid priced English food on the riverside . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Family friendly restaurant , Loch Fyne serves Italian \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Situated in the riverside area near to Café Rouge , The Golden Curry is family friendly and provides English food . It has a low customer rating . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two family friendly fast food \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||Near Café Adriatic is a pub named The Vaults which is moderately priced with a 1 out of 5 customer rating . \nname : The Phoenix | food : Italian | customer rating : low | area : city centre||The Phoenix is an Italian place located in the city centre with low customer ratings . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop and restaurant that is low price and family friendly is near Café Sicilia . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||With a high price range and low customer rating of 1 out of 5 the Wildwood coffee shop is located near Ranch and provides fast - food . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||The Italian place , Midsummer House , is near All Bar One , has a high customer rate , but costs more than 30 pounds . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle has terrible fast food . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman serves cheap priced English food in the city centre area . It is family - friendly with a 5 out of 5 customer rating . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man , Not family - friendly . Price Range : less than £ 20 . Italian Food . Near All Bar One . Area is Riverside . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One , at Midsummer House , there is a moderately rated , fairly priced , Japanese restaurant . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is high price coffee shop named The Golden Palace serving French food Located in city center with a high customer rating \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||Zizzi is child friendly and serves pub type French food . It has a customer rating of 3 out of 5 . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , by the Crowne Plaza Hotel , offers fast food and is family friendly . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||I love the food at Wildwood pub . They have the best burgers . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a high priced Indian restaurant near the Rainbow Vegetarian Café . Customer rating in 1 out of 5 and is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue is a 5 - star restaurant . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge , The Golden Curry is a family friendly with food and one star rating . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : city centre | near : Rainbow Vegetarian Café||The high priced pub The Golden Palace , is located in the city centre , near the Rainbow Vegetarian Café . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is rated average by customers and provides food for under £ 20 . It is family friendly . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in the city center near the Express by Holiday Inn . The price range is 20 - 25 pounds . The customer rating is high although , it is not kid friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre||If you are searching for a cheap Fast food and coffee shop in the city centre , The Golden Palace might be for you . It has average customer rating . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House offers quality American food at high prices . The restaurant is located next to All Bar One . \nname : The Waterman | food : Chinese | family friendly : no | near : Crowne Plaza Hotel||The Waterman serves Chinese food and is located near Crowne Plaza Hotel . It is not family friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||Serving Italian food , The Eagle is a coffee shop in the center of the city , near Burger King . It has a high price range and is family - friendly . Customers rate is 1 out of 5 . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near Crowne Plaza Hotel is a children- friendly and serves Italian food . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Strada is a highly priced , children - friendly restaurant with a customer rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Indian | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a kid - friendly , Indian pub with a decent customer rating of 3 out of 5 . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a moderately priced pub in the riverside area with a 1 out of 5 customer rating . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Moderately priced , The Phoenix Sushi restaurant sits next to the river . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a children friendly restaurant which serves highly rated Italian food , has a more than 30 euro price range and is near the Express by Holiday Inn . This restaurant can be found along the river . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is and inexpensive place for light refreshment and a glass of wine next to the river . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree is not a family - friendly pub , but it offers Italian food . It is near The Portland Arms \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||On the riverside , near Café Adriatic is Travellers Rest Beefeater . The price range is high with a customer rating of 3 out of 5 . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a restaurant providing Indian food . It is located in the area riverside . its not a kids friendly restaurant . The price range is between £ 20 and £ 25 . The customer rating is high . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : no||With a low customer rating and non - family friendly status , the Chinese food establishment The Rice Boat is located on the riverside . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : city centre||Offering the average , high priced Chinese food , The Phoenix is in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a fast food coffee shop called Browns Cambridge . It is located at the riverside near Crowne Plaza Hotel . They have a customer rating of 1 out of 5 and are child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree is a moderately priced fast food restaurant . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop near Raja Indian Cuisine is for the upmarket family . Facilities for families are available with the purchase of a highly priced coffee . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : riverside||The Phoenix is a Chinese restaurant . The food is cheap , the rating is average and it is found in the riverside area . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly French food serving coffee shop with a price range of less than 20 pounds and a low customer rating . \nname : Browns Cambridge | food : Indian | price : high | customer rating : 1 out of 5||An Indian restaurant called Browns Cambridge offers high prices with a low , 1 out of 5 customer rating \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop family friendly and well priced located next to Raja Indian Cuisine \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||There 's a fast food joint named Bibimbap House in riverside near Clare Hall with a high price range . \nname : The Mill | Type : pub | food : Indian | price : high | area : riverside||The Mill is a type of pub , which offers Indian food , with a high price range , it is located in a riverside area . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman provides Chinese food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||A high priced restaurant near the river is Alimentum . This is a five star restaurant located next to Yippee Noodle Bar . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Aromi is a kid friendly coffee shop that has high costumer ratings . It offers Indian food and is located in the riverside area . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||For traditional English food pop along to The Twenty Two on the riverside . Its kids friendly too . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge coffee shop in riverside near Crowne Plaza Hotel serves Japanese food and is children Friendly . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a five star restaurant located in City centre . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is moderately - priced Italian with a rating of 1 out of 5 and is kid friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced fast food restaurant in the City Centre area . This child friendly restaurant has a customer rating of 3 out of 5 . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a children friendly place that has French food , it is near Crowne Plaza Hotel \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Welcome to The Rice Boat . Our customer rating is high , we serve English food , we are not children friendly . Our price range is more than 30 pounds and we are near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a cheap , riverside Fast food coffee shop . It has an average customer rating , and is cheap and not family - friendly \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Chinese restaurant , The Rice Boat , near the Express by Holiday Inn at the City Centre , has a reasonable price range of £ 20 - 25 , with a high customer rating . Children welcome . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : no||Alimentum is a high - priced venue located in the riverside area . It serves English food and is not children friendly . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||Fore more than 30 pounds you can dine at The Phoenix a Chinese restaurant with a high customer rating in the riverside area . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers Tucson furniture in the more than 30 pound and people rating high family friendly yes \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||There is a Japanese restaurant called Loch Fyne in riverside located near The Rice Boat . It has been rated 3 out of 5 by customers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle Fast food is located near Burger King in city center with a high price range . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : yes||Alimentum is an expensive Chinese restaurant in the city centre that is child friendly . \nname : The Vaults | food : Fast food | price : high | family friendly : yes||The Vaults is a high price Range children Friendly Fast food restaurant . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||An Italian family - friendly venue , The Waterman is an average rated , cheap venue in the city centre \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||In spite of a low customer rating , The Golden Curry and a wonderful choice for family friendly Japanese cuisine . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada restaurant French food restaurant serves food in the price range £ 20 - 25 , is kids friendly , customer rated 3 out of 5 , and situated near to the Rainbow Vegetarian Café \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The wrestlers is a fast food outlet . The wrestlers has a five star rating . The Wrestlers is family friendly restaurant and costs a reasonable amount . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a moderately priced low rated Japanese coffee shop near Burger King in city centre . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto provides child friendly Italian services nearby the Ranch . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Blue Spice is located in the city centre , with a moderate price range and a customer rating of 1 out of 5 that is not kids friendly . \nname : Strada | Type : pub | food : Fast food | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada Fast food pub is located near Yippee Noodle Bar with a customer rating of 5 out of 5 \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Wildwood is a medium priced pub and sushi bar with a three star rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||Zizzi is a pub that offers Asian cuisine . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a 5 star , family friendly restaurant that provides a variety of wines and cheese . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The French restaurant named The Eagle is a coffee shop in the city centre , near Burger King is a place for kids with price range from 20 - 25 with a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee Shop serving Indian food which a high price range . The Customer rating is average and it is sited on a riverside . Fitzbillies is not child friendly . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is a high priced restaurant near Rainbow Vegetarian Café . It has an average customer rating . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat a French styled restaurant is located on the riverside by the Express by Holiday Inn with ratings of 5 out of 5 with cheap prices and family friendly . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix sells English food on the riverside . It is rated 3 of 5 stars . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a five star coffee shop that is low priced and family friendly it 's located near the river and just north of the city centre . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne , providing fast - food and in a family friendly restaurant . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Wildwood is a pub that serves Italian food . It has a high customer rating and the price range is over L20 . \nname : The Punter | price : moderate | area : city centre | family friendly : no | near : The Portland Arms||The Punter is a moderately priced restaurant near The Portland Arms in the city centre . It is not kid friendly . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||The Cocum is a children friendly restaurant with a high customer rating . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food family - friendly restaurant in the city centre near The Sorrento . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a Japanese cuisine that offers food at an average price range and hold a customer rating of 3 out of 5 \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is an averagely priced restaurant near the Rainbow Vegetarian Café . It serves average Chinese food . This is not a children friendly restaurant . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||Wildwood is an average rated English pub that serves cheap food . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||Average Indian cuisine in a child - friendly riverside setting : The Rice Boat . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : no||A top rated pub eatery called Aromi is situated by the riverside \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : no||Loch Fyne provides French food in a restaurant - setting . Prices range from over £ 30 and it is not recommended for children . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Located in riverside , Blue Spice is a child friendly place highly rated by customers . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto located near the riverside sells Italian food at a moderate price with a customer rating of 3 out of 5 . It is a coffee shop . Situated close to The Portland Arms . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||You can expect to pay low prices for top quality Asian cuisine at the Cocum coffee shop . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||Enjoy some French grub by the riverside at The Olive Grove , family friendly and value for money . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge is higher - cost establishment that serves luxury food items and spirits . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : city centre||The Phoenix serves Indian food in the high price range with an average customer review . It is located in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||Moderately priced English food served at The Dumpling Tree . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||The Blue Spice is a coffee shop located riverside near Avalon . High price range . Not child friendly . Customer rating 3 out 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a kids - friendly coffee shop with a high customer rating . Italian food with price range 20 - 25 pounds \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : city centre||Located in the city centre is a pub called The Waterman . It serves Italian food and has a customer rating of 5 out of 5 \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre the Blue Spice has a customer rating of 5 out of 5 price ranging more than £ 30 . It however is a none children friendly place . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The kid friendly coffee shop near The Portland Arms called The Cricketers has Indian food and a rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is an Italian coffee shop located by the river in the City centre . It has middle priced food . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice by a riverside serving English food with a moderate price Range . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a child friendly pub in riverside that serves English cuisine . \nname : Green Man | price : moderate | area : city centre | family friendly : yes||Kid friendly city centre in moderate price range is Green Man . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : no||Giraffe is a pub that serves English food . It is located in the city centre . It is not family - friendly . \nname : The Waterman | Type : pub | food : Indian | customer rating : high | area : riverside||In the riverside area , The Waterman serves highly rated Indian food . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||There is a family - friendly pub called Zizzi which serves Japanese food and is rated as average . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||There is a family pub in the mid - price range called The Plough . It serves British cuisine and is located just north of Café Rouge . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is a low cost , family friendly restaurant in the riverside area , it has a low customer rating . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has a low customer rating but offers a family - friendly environment . Located along the riverside near Café Rouge , they serve Italian food . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||There 's a family - friendly coffee shop called The Eagle selling French food . It 's rated 5 out of 5 and it 's cheap as well , you can find it by Burger King in the city centre . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : no | near : The Sorrento||There is an Italian restaurant in the city centre , near The Sorrento . It is not family - friendly , and it 's named Browns Cambridge . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly , fast food restaurant with an average rating . It is located in the centre of the city near Café Rouge . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Serving English food , The Golden Curry , is located near Café Rouge in the city centre , and has a high customer rating of 5 out of 5 . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : yes||Alimentum is a children friendly fast food outlet in the city centre , with a high price range . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a poorly rated Japanese coffee shop near Café Sicilia . It has a moderate price range and is not child friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has traditional English cuisine and is a kid - friendly , moderately - priced eatery with riverside views , with only a one - star rate ; it 's located near the Express by Holiday Inn . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge ate at a coffee shop who is not family - friendly . They served French food . This restaurant is near Crowne Plaza Hotel . This coffee shop is located in the area of city centre with a customer rating score of low . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The restaurant located in Riverside The Waterman has such high prices because of their customer rating being 3 out of 5 . One good part of information is that they are children friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is coffee shop near The Portland Arms in the city center . It also offers Japanese food in a moderate price range . Cotto is rated 1 out of 5 by its customers . \nname : The Cambridge Blue | Type : pub | food : Indian | price : £ 20 - 25 | near : Café Brazil||A pub near Café Brazil with low prices is The Cambridge Blue . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||A Japanese coffee shop in the city centre area is called Browns Cambridge near the Crowne Plaza Hotel . It is not family - friendly but does have a 5 out of 5 customer rating . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||In the City centre near Yippee Noodle Bar is Alimentum . It is highly rated , but low priced . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a low customer rated restaurant that is child friendly . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum provides Indian food in the less than £ 20 price range . It is located in the city centre . \nname : Strada | Type : pub | food : French | customer rating : high | near : Yippee Noodle Bar||The restaurant called Strada gets great customer reviews . It is a pub offering French food . It can be found close to the Yippee Noodle Bar . \nname : Blue Spice | food : Japanese | price : moderate | area : city centre||Blue Spice is a Japanese restaurant which can be found in the city centre , offering food at a moderate price range . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||Cotto is near the Ranch . Plus , the food is children friendly and its English . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : city centre||Moderately priced , The Mill serves Japanese food in a city centre pub . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum is a child friendly fast food restaurant opening in riverside with fair prices . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter has a customer rating of 3 out of 5 , because their price range is £ 20 - 25 . It is located near Café Sicilia and is not kids friendly , because it is a coffee shop and they serve French food . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||There is a kid friendly English restaurant on the riverside with high customer ratings called The Rice Boat . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant located near the river . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an exclusive bakery shop serving coffee as well and it is located in Café Sicilia \nname : Bibimbap House | food : Chinese | price : moderate | area : city centre | near : Clare Hall||Moderately priced but close to Clare Hall , located in the city centre Bibimbap House is Chinese at its finest \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : no||For a pricey pub serving Indian , look for The Olive Grove in the city centre . please note , this venue is not child friendly . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||Wildwood is an inexpensive Japanese pub . Rated 3 out of 5 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The French restaurant located by the river , The Waterman , is family friendly . Although it has a low price range , it has received poor reviews . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat providing fast food near The Rice Boat . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue pub serves French food , is in the more than £ 30 range , and is near to the Café Brazil . \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : yes||While The Rice Boat is a family - friendly , Japanese restaurant in the city centre , customers give it a low rating . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Taste of Cambridge is in the riverside area , near The Sorrento . It is a pub that is not family - friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a moderate - priced and low - rated coffee shop called Cocum where kids are always welcome . \nname : The Rice Boat | food : Indian | area : riverside||Located in riverside , The Rice Boat offers Indian cuisine . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||Browns Cambridge is a hamburger joint that has an average rating of 3 out of 5 stars and is low priced . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||There is a cheap restaurant Travellers Rest Beefeater near Café Adriatic . It is in riverside and has a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||For a low rated coffee shop in the moderate price range , go to Fitzbillies . It serves French food , and is kid - friendly in Riverside . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not kids friendly but has Italian food at a moderate price range and a 3 out of 5 rating can be found near the Express by Holiday Inn in the city centre . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||Wildwood is a moderately priced fast food pub with a high customer rating . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Check out The Rice Boat , a restaurant located near the Rainbow Vegetarian Café , with delicious food . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||At the riverside , there is a kid friendly one star restaurant call The Rice Boat near Express by Holiday Inn that sells Indian food at a moderate price . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : no | near : Café Rouge||The Plough is a high priced Indian pub near Café Rouge . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||Located in riverside , The Golden Palace is a restaurant with a 5 out of 5 rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop located in the city centre , near Raja Indian Cuisine , in the high price range . The Wrestlers provides Fast food but no children friendly menu or services are offered . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : no||The English pub Zizzi has a 5 out of 5 rating but is not family - friendly . \nname : The Waterman | price : high | family friendly : yes||A high end , kid friendly restaurant is The Waterman . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is an expensive Chinese restaurant in the city centre . It has a poor customer rating . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a one - star , family - friendly restaurant located near Café Rouge . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a coffee shop in Riverside . It has a low customer rating and is more than 30 pounds . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||With high pricing and a customer rating of 1 out of 5 , The Eagle is a non child friendly fast food coffee shop located near Burger King , Riverside . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is an Indian restaurant located in the centre of the city . It has a moderate price range and a customer rating of 3 out of 5 , and it is kid friendly . \nname : Bibimbap House | food : Fast food | price : £ 20 - 25 | area : riverside | near : Clare Hall||For £ 20 - 25 , Bibimbap House serves fast food . It is located in the riverside district , near Clare Hall . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||Family friendly , averagely rated and cheap Japanese coffee shop called The Punter is located near Café Sicilia . \nname : Fitzbillies | food : Fast food | price : cheap | near : The Six Bells||If you 're looking for a Fast food venue near The Six Bells , then you could try Fitzbillies . It 's also in the cheap price range . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a not so family - friendly Fast food place with a average rating . It is located by the riverside near Café Rouge . \nname : The Golden Curry | food : Indian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is near The Bakers . It is a family friendly place serving cheap Indian food . \nname : The Punter | food : Chinese | price : cheap||The Punter , has a cheap price range and offers Chinese food . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Not children - friendly but has a high customer rating and Italian food , Strada is more than £ 30 near the Rainbow Vegetarian Café . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman located by Crowne Plaza Hotel serves Japanese cuisine and is family Friendly . \nname : Wildwood | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | near : Ranch||Inexpensive food is served at Wildwood coffee shop . It is near to Ranch . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has a five star rating , and is near Café Rouge . \nname : Strada | Type : pub | food : Chinese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub which serves Chinese food is located near Yippee Noodle Bar , and has a high customer rating of 5 out of 5 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat with a low customer rating is a low - priced Japanese restaurant near Express by Holiday Inn . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : city centre | near : Clare Hall||The coffee shop Clowns , located near Clare Hall in the city centre , serves French food and has a low customer rating . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||This pub is considered to be expensive , usually charging more than £ 30 with each bill . Clowns is located in Riverside , and is loved by the local population . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced coffee shop that is family friendly and located near a Burger King . \nname : The Vaults | food : Chinese | price : high | family friendly : yes||The Vaults provides Chinese food in the high price range . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater located by the riverside and near Café Adriatic is a restaurant that has an average customer rating and is deemed as cheap by its customers . \nname : The Vaults | Type : restaurant | food : Japanese||A Japanese restaurant is The Vaults . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||A low priced place to dine is The Bibimbap House which is located right off the river next to Clare Hall . \nname : The Rice Boat | food : English | area : riverside||English food is served in the riverside area at a place called The Rice Boat \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||A restaurant called The Eagle is located in the area of riverside . It had a moderate price range , but it has a low customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||There is a Japanese restaurant named The Waterman with a price range under £ 20 and an average customer rating . It is not family - friendly and is located in the City Centre . \nname : Midsummer House | food : Indian | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge , Midsummer House serves Indian food and has a customer rating of 1 out of 5 . \nname : Wildwood | Type : restaurant | family friendly : yes||Your children will feel welcomed at the Wildwood restaurant . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : no||The Vaults serves cheap Chinese food , but is not family friendly . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||A family friendly and serving fast food , The Golden Curry has a customer rating of 5 out of 5 . \nname : Bibimbap House | food : Indian | price : cheap | area : riverside | near : Clare Hall||The Indian restaurant Bibimbap House serves low priced food and it located in riverside near Clare Hall . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Located near All Bar One in the city centre , Midsummer House is a medium priced Italian restaurant with a three of five star rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop in riverside , located near Raja Indian Cuisine . \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||English food from The Phoenix in riverside has a customer rating of 1 out of 5 \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Rated average among customers , Browns Cambridge is an Italian restaurant with a high price range . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||Rated 3 out of 5 by its customers , Zizzi is a kid friendly Japanese pub . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle near riverside , the customers love the meal plan under 20 \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Try a lower rated Japanese restaurant near the Café Rouge . It is called Midsummer House . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater provides cheap food and high customer ratings in its riverside setting near the Café Adriatic \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies a coffee shop which offers Indian food has a high price range . Its customer rating is 1 out of 5 . It is located in riverside and it is not children friendly \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||There is a restaurant near Rainbow Vegetarian Café named Strada . Strada is not kid friendly . Strada has a high customer rating and a price range of 20 - 25 pounds . Strada serves Indian food . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||The Vaults is an expensive pub near Café Adriatic , with average customer reviews . \nname : The Golden Curry | food : Indian | price : high | family friendly : yes | near : The Bakers||The Golden Curry has a high price range that serves Indian food . It is kid friendly located near The Bakers . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a family - friendly fast food place located on a riverside \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A low priced coffee shop next to Raja Indian Cuisine is called The Wrestlers . It is a family friendly place that offers sushi . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is located in riverside near The Rice Boat . It is kids - friendly , has a customer rating of 3 out of 5 and a price range of £ 20 - 25 . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves Japanese food , is children friendly , and is near Crowne Plaza Hotel . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children friendly coffee shop near Avalon with a high price range and 1 out of 5 customer rating . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese food restaurant in riverside near Café Rouge . It is not family friendly and has an average customer rating . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low priced French food restaurant near Rainbow Vegetarian Café with 5 out of 5 customer Rating but not family - friendly \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children Friendly coffee shop with high price range providing Italian food . It is located in the city centre near Burger King and it has customer rating of 1 put of 5 . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||For Cheap satisfying English cuisine then go to the family - Friendly The Golden Curry situated by The Bakers \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||Situated on the riverside , The Twenty Two is a restaurant serving food at a price range of less than £ 20 . This is a family friendly restaurant located near The Rice Boat and has an average customer rating . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is in the high price range and is located near the Rainbow Vegetarian Café . \nname : Blue Spice | food : English | price : high | area : riverside||Blue Spice serves expensive English food by riverside . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||A fast food coffee shop in riverside that has a low customer rating and is not family - friendly is called Fitzbillies . It cost less than 20 euros . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee Shop , providing Japanese food , with a customer Rating 5 out of 5 , with High - priced Range with kids Friendly . located near The Portland Arms \nname : The Golden Curry | food : Indian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a highly priced Indian restaurant that is child - friendly and is located near The Bakers . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove , situated in the city centre , offers expensive food . It is a children friendly pub . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||The Wildwood is a mid priced pub serving fast food . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : yes||The kids friendly Alimentum is located in the riverside area , offering Indian food in the modest price range . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman provides Chinese food in the high price range . It is located in the riverside . Its customer rating is average . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers offers Italian food . It has a child - friendly atmosphere , in the high - end price range and a customer rating of 1 out of 5 . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults if a family friendly Japanese restaurant that offers moderately priced food selections . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : no||Alimentum in riverside serves fast food and are not kid friendly , at a high price range . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two serves French food . It is child - friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Near riverside find Giraffe kids are invited for some pub food . \nname : The Cricketers | Type : restaurant | food : Indian | near : All Bar One||The Cricketers is an Indian restaurant near All Bar One . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||A great breakfast with you coffee can be found at Cotto coffee shop , near The Portland Arms . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||In the riverside area there is an Italian restaurant called The Twenty Two which is not family - friendly . \nname : The Punter | food : English | price : high||The Punter has English type food . It is high price food . \nname : The Twenty Two | food : English | family friendly : yes||Considered Child friendly , The Twenty Two serves English food . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||A kids Friendly , fast food restaurant , costing between £ 20 - 25 , with high customer rating would be The Wrestlers . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There is a children - friendly coffee shop named Fitzbillies . the customer rating is relative high and the price range is more than £ 30 and provide many English food . the location is in the riverside \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a highly rated fast food restaurant with a price range of over £ 30 . It is not a child friendly establishment located near the Rainbow Vegetarian Café . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : no||On the riverside is The Twenty Two serving Indian food . It isn 't family friendly . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Over by the river , there 's a restaurant that 's normally costs under twenty pounds . It 's called Zizzi . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto serves Indian food and coffee for less than £ 20 . It 's near The Portland Arms in the city centre , and has low ratings . \nname : Wildwood | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop near the Ranch which serves Italian food for less than £ 20 . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||In the riverside area there is a fast food restaurant named Blue Spice with a price range of less than £ 20 . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge is providing three star customer service for at a high price range . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a not family - friendly pub serving cheap French food in the city centre . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : yes||With a high price range located in the city centre , Alimentum is children friendly and serves Italian . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||There is a dine - in restaurant that is expensive called Browns Cambridge , but it has poor reviews . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a French specialized restaurant located near All Bar One . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Located on the riverside , the Alimentum is a English restaurant that is kid friendly with moderate prices . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||The Mill is a cheap restaurant providing Fast food . It is a pub located on the riverside . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : city centre | near : Clare Hall||City Centre at Clowns has an average customer rate and is located near Clare Hall which provides French food and a coffee shop . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Check out the 3 out of 5 rated kid - friendly coffee shop Fitzbillies . Located in Riverside , it offers French food ranging in price from £ 20 - 25 . \nname : The Twenty Two | food : French | family friendly : yes||If you are in looking for a family friendly restaurant that serves French cuisine , try The Twenty Two . \nname : The Punter | food : Fast food | price : cheap||The Punter has Fast food with a cheap price range . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is child friendly pub by the riverside and is expensive \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop near Crowne Plaza Hotel in the city centre which serves Japanese food . It is not family - friendly . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : no||A high - priced Fast food place near the center of the city , named Alimentum , not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||coffee shop Fitzbillies is located near the river . Expensive but great reviews and welcomes families . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a high priced fast - food outlet in the city centre near to Yippee Noodle Bar it has a average customer rating . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre area near Express by Holiday Inn , The Rice Boat offers English food and is family - friendly . We have a low customer rating and a price range of less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The Loch Fyne restaurant serves Italian . It is kid friendly . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||There is a place named Strada located near Rainbow Vegetarian Café that is not children friendly , serves Italian food , has a price range of more than 30 , and a high customer rating \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||In riverside there is a pub called The Waterman with Japanese food with a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman pub . It is located in riverside area . have 3 out of 5 costumer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||With a price range of less than £ 20 , located in Ranch , is a coffee shop named Wildwood . It has a low customer rating . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat is a cheap restaurant called The Twenty Two . It is family friendly by the riverside and has a customer rating of 5 out of 5 . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||There is a restaurant called Cocum that got a 3 out of 5 customer rating and is children friendly . \nname : Wildwood | Type : restaurant | family friendly : yes||The Wildwood is a kids friendly restaurant . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly pub that has a low customer rating , but is located in riverside \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns is a cheap pub located in Riverside . It also has a 5 out of 5 customer rating . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Strada has a low customer rating with a price range less than £ 20 and family friendly . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||There is an average rated Italian place near Café Rouge . It is named Midsummer House . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||A nice place to enjoy food is the pub named Giraffe located at Riverside . It is kid friendly and specializes in Italian cuisine . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||If you are craving Italian food , and are looking for a moderately priced , kid - free restaurant , give The Waterman a try . Located at the city centre . Rated 1 out of 5 by customers . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||There is an expensive , non - child friendly coffee shop named Zizzi in the city centre which has a price range more than £ 30 and a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers Indian food and coffee bar is near The Portland Arms , kids are welcome . High customer rating . \nname : The Eagle | food : Italian | customer rating : average||The Eagle has an average customer rating and serves Italian cuisine . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is Strada a French restaurant that serves food for more than £ 30 . It has high ratings but is not child friendly . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||It is more than £ 30 to eat at Wildwood Japanese pub . They have a low rating . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : no||Giraffe , the English pub located in the city centre , is not family - friendly . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman , located in the riverside area , offers expensive Indian cuisine . Environment : Not children - friendly . Customer rating : 1 out of 5 . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is located in the riverside area , and serves Indian food at lower than average prices . It 's not family friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly restaurant in Riverside that sells English food . It is located near The Sorrento . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman in Riverside is a Japanese pub . It has a 5 out of 5 customer ratting \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : no||The Twenty Two is a restaurant providing take - away deliveries in the low price range . It is located in the city centre \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a low starred , expensive coffee shop near Ranch . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies serves French food out of a coffee shop at the city center . This kid friendly shop is moderately priced with a rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||An Italian pub that is family friendly , with average customer ratings is Zizzi 's . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a Chinese food place . The customer Rating is 1 out of 5 , located riverside and is kids friendly . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Browns Cambridge has Italian food . It is in the high price range . It has a customer rating of 1 out of 5 . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a moderately priced restaurant located near to The Six Bells . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The coffee shop , Fitzbillies , is an average priced fast food restaurant located in the city center . It is rated highly among customers and is not kid friendly . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a moderately priced Chinese restaurant with a customer rating of 1 of 5 . It is kid friendly and located in the riverside area . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap Chinese restaurant near Yippee Noodle Bar in riverside with a rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is a pub offering Japanese food . It is located in city centre with a price range of more than £ 30 . It is a children friendly place . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre . They serve moderately priced fast food in a non - kid friendly environment and have a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Indian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue pub is located near Café Brazil and serves averagely priced Indian food \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Not only it is children friendly , with a 1 out of 5 rating Aromi is a pub by the riverside . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is an average priced kids - friendly pub with a high customer rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||Near Café Brazil , is an inexpensive pub , The Cambridge Blue . It serves Italian food . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is rated 3 out of 5 and located near Yippee Noodle Bar at riverside . It is Japanese in the £ 20 - 25 price range . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto , has a customer rating of 1 out of 5 . It is kids friendly , and offers Chinese food . It is located near Ranch . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||For a low priced 5 star restaurant Alimentum is the best choice near Yippee Noodle Bar . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle , rated at 3 out of 5 , serves French food \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The child Friendly Japanese restaurant called The Golden Curry has a 5 out of 5 customer Rating . It is found in the riverside area near Café Rouge . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop near the Portland Arms in the City centre , they have a low rating and the price is over £ 30 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Aromi is a kid friendly , high customer rated coffee shop that has Italian food . It is in the area of riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a kids - friendly coffee shop in near the Crowne Plaza Hotel in the riverside area . Named Taste of Cambridge , it specializes in Japanese food . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||There is a cheap , family friendly coffee shop named Blue Spice in the riverside area near Avalon . It has an average customer rating . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The family friendly restaurant called The Plough is near the Express by Holiday Inn \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop located at the city centre . They serve fast food for a high price . It is not a child friendly establishment , and has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||There is a French pub in Riverside with a price range less than £ 20 called The Mill . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a family - friendly coffee shop with fast food in city centre with customer rating of 5 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||Located near Café Rouge , Wildwood is a high - rated restaurant . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge is an inexpensive average restaurant . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub that provides Chinese food in the less than £ 20 price range . It is near Café Brazil . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Zizzi is a coffee shop near city centre . It has high customer reviews and prices ranging from 20 to 25 pounds . Zizzi is not kid friendly . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||With a price range of £ 20 - 25 , Green Man is a kid friendly Japanese restaurant on the riverside , near All Bar One . \nname : Browns Cambridge | food : French | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is a non - family - friendly French restaurant located in the city centre near The Sorrento . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||Located in the riverside area , the highly rated The Phoenix serves Italian food . The price range is more than £ 30 . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | near : The Portland Arms||A coffee shop called Cotto sells Fast food in the city centre near The Portland Arms with a high price range and average customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Located near Ranch is Wildwood , a coffee shop that serves Japanese food . Its price range is moderate , but it is rated only 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Japanese venue , near the Express by Holiday Inn , in the city centre , not family - friendly , and with an average customer rating \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , you can find the Strada , which is a kids friendly Japanese restaurant . It 's average rated and cost less than £ 20 . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a one - star rated coffee shop located along the riverside near Burger King . They serve medium - priced wine and hors d 'oeuvre in a family friendly atmosphere . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a family friendly Chinese food restaurant near a Ranch . It has a 1 out of 5 customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly French coffee shop on the riverside near Raja Indian Cuisine . Prices range £ 20 - 25 . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop serves good , if pricey , Italian food . It is located near Café Sicilia . Families with children are welcome . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||The Strada is a Japanese pub near Yippee Noodle Bar with a 5 out of 5 customer rating . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a French restaurant near The Bakers . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee ship serving Indian food for more than £ 30 with a high customer rating and is child friendly near Café Sicilia . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Beside The Rice Boat , the Bibimbap House at the riverside offers Japanese food . \nname : The Eagle | food : Indian | customer rating : low||There is an Indian restaurant The Eagle that has low customer rating . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a high - priced and very highly rated Japanese restaurant . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Clowns is a pub that has a high customer rating , located in the riverside area , and they 're prices are more than 30 pounds . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a French coffee shop with a customer Rating of 1 out of 5 . It is child friendly and moderately priced . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop near Avalon in riverside , moderate prices , kid friendly rated 1 out of 5 . \nname : The Punter | food : Chinese | price : moderate||For a moderate price , The Punter serves Chinese food . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman provides Chinese food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle has low ratings for serving Japanese food . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a child friendly Japanese pub near The Portland Arms . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||Midsummer House serves high quality Italian food , near to Café Rouge . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has a five star rating , and is near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue pub offers great prices for food . It is located near Café Brazil . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento based in the riverside is French restaurant Browns Cambridge which is child friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto ranges between twenty and twenty - five dollars with a high customer rating . The Portland Arms serves Italian food near the riverside . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a low - priced restaurant in the city centre that delivers take - away . \nname : The Mill | Type : pub | food : Chinese | price : high | area : riverside||The Mill a pub serving Chinese food near riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A kids Friendly Japanese coffee shop along the riverside is called Taste of Cambridge and is next to Crown Plaza Hotel . \nname : The Phoenix | food : Fast food | customer rating : average | area : city centre||The Phoenix is a fast food restaurant located in city centre . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a Japanese restaurant , is near Express by Holiday Inn in riverside . I hate a high price range but is child friendly and has a customer rating of 3 out of 5 . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||you can eat French Fitzbillies that the price is more than £ 30 and you east can found that place near the six bells . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is yes kid friendly . It is in Riverside . It is rated 1 out of 5 . It serves Italian food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum , located in Riverside , is a non family - friendly Japanese restaurant with a price range with less than £ 20 . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix serves Chinese food for less that £ 20 . It has a low customer rating and is located in the city centre . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The Phoenix loves French food on the riverside . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove pub is an expensive family friendly restaurant . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||Good value food and drink is available at Bibimbap House one the river next to Clare Hall . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Named The Wrestlers is a Japanese food coffee shop and is near The Raja Indian Cuisine int he riverside area prices ranging from less than £ 20 and is family friendly \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry offers 5 star Japanese food to adults only . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge is a low rated restaurant in the price range of less than £ 20 . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop located on the riverside and whose prices are moderate . It serves Indian food and can be found near The Sorrento . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||Curried Noodles low priced The Golden Curry just past The Bakers . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||If you are looking for Fast food in the moderate price range , try The Golden Palace . Located in the riverside area , this coffee shop has a customer rating of 3 out of 5 . \nname : The Phoenix | food : Fast food | customer rating : high | area : riverside||The Phoenix is a high rating Fast food in the riverside area \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located near the city centre and Crowne Plaza Hotel the Taste of Cambridge is a family friendly Indian coffee Shop . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||In riverside located near Burger King , is kids friendly coffee shop with a moderate price range . It is rated 3 out of 5 and serves Italian food , it is called The Eagle . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no||The moderately priced Chinese restaurant The Olive Grove is found in the riverside area and is not kid friendly . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman serves Chinese food ranging from 20 - 25 , and has a high customer rating located in the city centre and is kids friendly . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||For high - priced English cuisine near All Bar One , check out Midsummer House . It boasts a high customer rating . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||With a price range of less than £ 20 , Green Man fast food is not family - friendly . They are located in city centre near All Bar One . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Leave the children at Burger King and come to The Eagle , a 1 - star French - style coffee shop down on the riverside . \nname : Green Man | Type : pub | food : Fast food | area : city centre | near : Café Rouge||In city centre near Café Rouge you 'll find Green Man for pub fast food . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Fast food place located near The Rice Boat in the riverside area . Customers give it a 5 out of 5 \nname : The Vaults | food : Italian | price : more than £ 30 | family friendly : yes||The Vaults is an Italian restaurant that is child friendly and costs more than 30 euros . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop that sells French style food for less than £ 20 in the city centre , watch out though as its customer rating is low \nname : Fitzbillies | food : Chinese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a Chinese restaurant with average prices . It is located near The Six Bells . \nname : The Golden Curry | food : Indian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry , located near The Bakers offers Indian cuisine at a moderate price in a family friendly atmosphere . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is in Riverside . It serves English food and it 's kids friendly . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Don 't bring the kids to Loch Fyne English restaurant . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Zizzi is a cheap restaurant in Riverside . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||The Phoenix It provides fast foods at a reduced price and is located near the river \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an Italian restaurant near Café Rouge in City center that is not family - friendly and has a low rating . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a low rated family friendly coffee shop service Italian food for less than 20 pounds . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Japanese kid - friendly coffee shop situated by the riverside . Its price ranges are moderate and it has a customer rating of 1 out of 5 . It is near Burger King . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a good value coffee shop called Cocum , a nice place to go with family offering Italian eats , highly rated by customers . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low - priced restaurant that offers breakfast . It is located by All Bar One . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a moderately priced Japanese restaurant with poor customer ratings . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is high - priced coffee shop offering fast food . It is rated 1 star and is family - friendly . Other restaurants in the area include Café Sicilia . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||A moderate kid friendly restaurant called the Strada is 3 out of 5 . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is an expensive and highly rated sushi place . It is located near All Bar One . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Italian restaurant with a low customer rating . It is located in the riverside area near Café Rouge . \nname : The Eagle | food : English | customer rating : average||The Eagle is a 3 star pub offering traditional British food \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||The Cambridge Blue is an Italian restaurant . It has a high customer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms . It is family friendly . It serves Indian and has an average customer rating . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn , riverside , serves excellent Japanese food at low prices . It is family friendly , with good ratings and has a lovely atmosphere . \nname : Blue Spice | food : Fast food | price : high | area : riverside||Located near the riverside area is the high priced fast food restaurant called the , Blue Spice . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||If you are in city centre , around Café Rouge , The Golden Curry is the closest place of Chinese food . The place is not family - friendly and the customer rating is average . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a coffee shop on the riverside near Café Brazil . It 's a highly rated restaurant that is expensive . It costs more than 30 pounds to eat there . \nname : The Punter | food : Italian | price : moderate||The Punter is a moderate priced place that provides Italian . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub . It not family - friendly . There price range is less then 20 . They serve Japanese food in the riverside area . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is located in the city centre near The Sorrento and offers a range of Japanese food . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||Come with your best friend to Strada restaurant and eat the bes food in town near the Yippee Noodle Bar \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||The low rating coffee shop serving French food names Aromi , is not family - friendly and is by the riverside . \nname : Midsummer House | food : Indian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House serves Indian food , has a customer rating of 1 out of 5 , and is near Café Rouge . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||The Waterman is in city centre with a low customer rating . Price range is more than £ 30 and not children friendly . Serves French cuisine . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix sells Italian food in the city centre area . Its price range is high and its customer rating is 1 out of 5 though . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly French food restaurant offering meals for less than £ 20 . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly French restaurant near the Crown Plaza Hotel . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is the family friendly Fitzbillies . They are cheap and are rated 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : no||The Golden Curry is a fast food restaurant with an average customer rating . It is not family - friendly . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : yes | near : The Sorrento||In the center of the city near The Sorrento , there is a family - friendly restaurant name Browns Cambridge offering Italian food . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||It 's not a family - friendly place but The Waterman in city centre has cheap but average Chinese food . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children Friendly pub serving Italian food . You will find it near The Portland Arms . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||The French coffee shop , Wildwood boasts low prices it has an average rating and is located near Ranch \nname : The Golden Palace | Type : restaurant | price : moderate||The Golden Palace is a moderate priced restaurant . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies is an expensive restaurant near The Six Bells . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies - a coffee shop , has an average customer rating , is family - friendly within a cheap price range , serves Italian food and is in the Riverside area \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a child friendly pub with a high customer rating . It is located near the Ranch . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a low rated , non family oriented coffee shop . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a restaurant that is kid friendly and has a customer rating of 1 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat . It sells Italian food and has a high customer rating . It is near the riverside . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a small Café which sells discount sushi on the river . it is just east of The Sorrento . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is child friendly and serves Indian food near Crowne Plaza Hotel . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||At Browns Cambridge you can drink soft drinks , eat burgers and also fries . Expect to pay a bit more than usual but the quality you get is really good . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a family - friendly restaurant located in riverside . 1 out of 5 \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Wildwood is a pub serving Italian food with a high customer rating and a price range of more than £ 30 per head . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a kid friendly pub near The Portland Arms called The Dumpling Tree which serves fast food . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is a non - kid friendly restaurant with moderate prices . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is a family friendly , average Indian pub . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The family - friendly restaurant , The Plough , is located near the Express by Holiday Inn . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||A place called The Rice Boat is located near Rainbow Vegetarian Café and is very cheap . The prices are less than 20 . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is located in riverside area near All Bar One . It Children Friendly the price from £ 30 . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the moderate price range . It is located in the riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is near Burger King in city center and is an Indian coffee shop . It has a price range is high , is kid friendly , and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Fitzbillies is a highly rated expensive non - children friendly coffee shop that serves French food . It is located in the city centre . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is an Indian restaurant with average prices located in the riverside near All Bar One . Not family friendly . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a Fast food restaurant near All Bar One . It has a moderate price range and a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop , near Burger King in the city centre , has a price range of less than £ 20 and has a low customer rating . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes||Cocum is a child friendly Indian coffee shop , with high prices and average customer ratings . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a middle priced restaurant with 3 stars . It is family friendly . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||Near Café Brazil you will find a pub called The Cambridge Blue . It sells cheap Full English Breakfasts . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||A high priced pub The Plough is located next to Café Rouge and family friendly . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||The highly rated The Wrestlers serves Japanese food . It is not kid friendly and has a price range of £ 20 - 25 . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||There is a pub that serves French food The Waterman . They have low customer rating and they are in riverside . \nname : The Vaults | food : Indian | price : moderate | family friendly : no||The Vaults sells Indian food in the moderate price range . No , it is not family friendly \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop near The Sorrento in the riverside area offering Italian cuisine priced high . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The coffee shop called Cocum is children friendly and serves French food . It is in the high price range and has a customer rating of 3 out of 5 . \nname : The Eagle | food : Italian | customer rating : high||The Eagle is an Italian eatery with a high rating . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese restaurant with a fantastic customer rating of five out of five . It 's in the city centre near Café Rouge , but is not family friendly . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Serving English food , the restaurant Loch Fyne is child friendly . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a sushi pub located near Yippee Noodle Bar . Rated 5 out of 5 . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns is a cheap family friendly restaurant located near Café Sicilia . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||family - friendly French restaurant , The Waterman has a slightly higher than average price range and a low rating . It is located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop with high ratings and low prices . They are located north of the city . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an high price range Indian coffee shop that has average customer service its located near riverside . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||The Waterman pub serves Italian food , has a high customer rating and is in the riverside area . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant located near The Six Bells with a price range £ 20 - 25 . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is a pub serving Japanese food at more than £ 30 in the riverside area . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn there is an establishment called Fitzbillies . Prices are below average and customers gave it an average rating . It is not family - friendly . \nname : The Punter | food : Indian | price : less than £ 20||The Punter is a local restaurant that offers Indian food for less than 20 pounds . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||A five star rating The Phoenix is a five star restaurant \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman , City center 's one star pub has a river view . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Japanese coffee shop Fitzbillies with a cheap menu , an average customer rating . Can be found in the riverside area , not recommended for families . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||Located next to the Café Rouge , The Plough pub is a family friendly establishment known for good British food and cheap prices . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||5 out of 5 customer rating , near Clare Hall in the riverside area you will find Clowns , a coffee shop offering Japanese food . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , near The Rice Boat in Riverside , has a customer rating of 3 out of 5 and is kids friendly . Its price range is usually £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A family friendly coffee shop known as Cocum offers low price range food . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||The Alimentum , a family friendly , mid priced restaurant offers fresh sushi . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers great take out and dining experiences and is located near Express by Holiday Inn . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||If you want to dine out at a slightly higher priced restaurant you could dine on French Food at The Dumpling Tree where you can expect to pay £ 30 plus for your meal . \nname : The Golden Curry | food : Indian | price : high | family friendly : yes | near : The Bakers||Located near The Bakers , children friendly restaurant called The Golden Curry offers high priced food . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a coffee shop in riverside . It is family friendly with high prices and low ratings . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||There is a highly rated restaurant in the city centre called The Waterman . It serves English food at average prices . It is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||The Loch Fyne is a moderately - priced restaurant in Cambridge that serves sushi and seafood . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||Located in the riverside area you will find a cheap Chinese restaurant with 5 of 5 ratings named The Phoenix . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Near Crown Plaza Hotel is an English yes called The Waterman \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn its cheap its Italian and has 1 out of 5 stars . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Check out the Wildwood coffee shop 5 star rating and great reviews located conveniently next to the Ranch . \nname : Green Man | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Located in riverside near All Bar One is Green Man . It 's a kid friendly Indian restaurant with dishes in the 20 - 25 pound range . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 5 star burger and fries restaurant for th family , located on the river near Express by Holiday Inn . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix Indian restaurant has a higher price greater that £ 3o , the customer Rating is high and located in the city centre . \nname : Strada | Type : pub | food : Italian | customer rating : low | near : Yippee Noodle Bar||An Italian pub near the Yippee Noodle Bar is Strada but it has a low customer rating \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : no||In the city centre there is a restaurant called The Rice Boat that has French food . It isn 't family - friendly and its rating is average . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||If you are looking for fine dining , Browns Cambridge is for you . It has a five out of five customer rating , but costs upwards of £ 30 . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a cheap , Italian shop in riverside . It is not a child friendly zone with a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Fast food restaurant . It is located near Express by Holiday Inn , which is in riverside . The customer rating is 1 out of 5 , has a moderate price range , and not kid friendly . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice in Riverside is kid friendly , in the moderate price range , and has a 3 out of 5 customer rating . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge is a high class establishment that serves quality food items like escargot , wine , and fancy cheeses . \nname : Strada | Type : pub | food : Italian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a pub with Italian food near Yippee Noodle Bar with a customer rating of 3 out of 5 . \nname : Blue Spice | food : French | price : cheap | area : riverside||Blue Spice are offering cheap French food in the area Riverside . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is at the riverside near Express by Holiday Inn . The prices are cheap , it is rated 5 out of 5 and it is family friendly . English food is served . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly curry house near Café Rouge . Located conveniently on the waterside , it has lower than average ratings . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Look no further than Midsummer House for French cuisine for less than £ 20 . Customers have rated this as average . Midsummer House is located near All Bar One . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat offers 5 star French cuisine in a mature environment by the riverside . \nname : The Punter | food : Fast food | price : cheap||The Punter is a fast food location in a cheap price range \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The Twenty Two pub is close to Café Sicilia . It has a rating of three stars . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||A kid Friendly pub by a riverside called The Olive Grove , with an average price Range service Japanese . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge has a moderate price range with a customer rating of 1 out of 5 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix serves French food in the £ 20 - £ 25 price range is located in the Riverside area and has a 3 out of 5 customer rating \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub for friends and family less than £ 20 price range . It is located in the city centre . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is located in the city centre and is child friendly . It has a moderate price range and serves Italian food . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a Italian restaurant that is family friendly . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a Chinese restaurant in city centre near The Sorrento that is family friendly . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop The Punter located near Café Sicilia serving French food with a price range of between £ 20 - 25 . it has a customer rating of 3 out of 5 and is kids friendly \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Try Browns Cambridge located near the Crown Plaza Hotel . It is a family friendly , Italian restaurant and coffee shop with a low customer rating . \nname : Blue Spice | food : English | price : high | area : city centre||The high end Blue Spice is located in the city centre and serves English cuisine \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kids Friendly Fast food restaurant with a high customer Rating . It is in the riverside area near the Café Rouge . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a cheap , family friendly restaurant near Express by Holiday Inn . its customer rating is 5 out of 5 . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||The Cocum restaurant has average customer rating . It is children friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies , the cheap , family - friendly , Italian coffee shop in the city centre has a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap family friendly , Italian , coffee shop . It is located in riverside and can be found near Raja Indian Cuisine . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||There is a restaurant called The Dumpling Tree serving Italian food at moderate prices . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The customer rating is low for The Golden Curry , a non - family - friendly French restaurant near Café Rouge , located by the riverside . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove , is located near the Grand Arcade and offers low - priced food and drink . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||For Japanese food , go to The Phoenix on the riverside . Though it has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly Italian restaurant with a price range of £ 20 - 25 . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : yes||Kid friendly Japanese food in a moderate price range can be found in city centre at Alimentum . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||There is a one star restaurant Midsummer House located near All Bar One . It offers dine in mid priced food . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no||Adult only Fast food pub Giraffe located city center \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Welcome to the The Waterman . We are not children friendly . Our food is English , and we are located on the riverside . Our price range is moderate . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||The Dumpling Tree is a French restaurant with an average price of £ 20 - 25 . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is a moderately priced kid friendly restaurant near Café Sicilia . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||A non family - friendly coffee shop with French food near The Portland Arms with a low customer rating is called The Cricketers . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop in the riverside area that receives average ratings from customers . It serves Japanese food , is kid friendly , and located near the Crowne Plaza Hotel . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||In riverside , there is an establishment called Loch Fyne near The Rice Boat . It serves English food and has a customer rating of 5 out of 5 . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||There is an Italian restaurant called Blue Spice with a moderate price range situated by the riverside . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is an Italian restaurant located in the riverside area near The Rice Boat , with a 1 out of 5 customer rating and is located near The Rice Boat . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is an average family friendly , cheap priced Italian restaurant located near the riverside . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||A high - priced Fast food restaurant is The Golden Curry . It is child - friendly and located near The Bakers . \nname : The Mill | Type : coffee shop | food : French | price : cheap | area : riverside | near : The Sorrento||Near The Sorrento in the riverside area , The Mill is a French coffee shop with cheap prices \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The riverside The Waterman pub serves English food . It has a high customer rating . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a family - friendly coffee shop . It offers food and beverage with low pricing and has average reviews . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A children friendly coffee shop that serves Indian food is Taste of Cambridge and is located near Crowne Plaza Hotel . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Take your family by the river for good priced fast food at The Waterman . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||With good reviews and low prices , Zizzi , near the river , welcomes families . \nname : Browns Cambridge | food : Indian | price : more than £ 30 | customer rating : high||Browns Cambridge is a restaurant with Indian for more than £ 30 with high ratings . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers has a rating of 3 out of 5 , it is a child friendly pub near Ranch \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly pub with cheap meals . Not to brag , but we 're also rated 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop , is kid friendly , has Fast food , has a high rice range , 1 of 5 rating , near Café Sicilia . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : city centre||The Eagle , in the city center , is a low costumer rating restaurant where you pay more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a Indian serving coffee shop with prices between £ 20 and £ 25 . The customer rating is high with it being in the city centre near Burger King . Unfortunately , The Eagle is not kid friendly . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : city centre||Rated 5 out of 5 by customers , The Phoenix is and Italian restaurant in the city centre . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||The Phoenix offers hamburgers and French fries . It has a three start rating . It is inexpensive and is located near the river north of the city . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a French coffee shop by the riverside called Fitzbillies . Although not children friendly and prices more than 30 , it is rated 5 out of 5 . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||In the city centre is the English restaurant Alimentum . With a cheap price range and average customer rating , it is located near Yippee Noodle Bar . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : yes||Loch Fyne is a kids friendly restaurant which serves moderately priced Indian food \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies has high - priced traditional UK foods . Located near The Six Bells . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||The Zizzi a child friendly Fast food pub with a customer rating of 1 out of 5 \nname : Strada | Type : pub | food : Indian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Find Strada , near Yippee Noodle Bar for three star Indian pub food . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Located near All Bar One , Midsummer House is a high priced Japanese restaurant that received a customer rating of 3 out of 5 . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : city centre||With 5 out of 5 customer rating , The Phoenix is a city centre Chinese restaurant . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : no||This is not a place to take the kids ; it 's not family friendly . Giraffe is an Indian pub in the riverside area . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum is a pub that is not children friendly . The price range is more than 30 . The customer rating is 5 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||If you 're looking for a great place to eat , try Wildwood , a restaurant near Café Rouge with a customer rating of 3 out of 5 stars . \nname : Blue Spice | food : Italian | price : £ 20 - 25 | area : riverside||Blue Spice is an Italian restaurant located in the riverside area . Price range is 20 - 25 English sterling . \nname : Green Man | Type : pub | food : Fast food | area : city centre | near : Café Rouge||Green Man is a pub providing fast food near Café Rouge , in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the city centre is an Indian coffee shop called Browns Cambridge , its family friendly and rated 5 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : riverside||In Riverside is an Indian pub called The Mill . It is inexpensive . \nname : The Phoenix | food : Fast food | customer rating : 1 out of 5 | area : riverside||In Riverside , there is a fast food venue with a 1 out of 5 rating , called The Phoenix . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is located on the riverside near All Bar One . It serves cheap , family friendly English food . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||A cheaper eatery in the riverside area , which is near Rainbow Vegetarian Café , is a pub called The Golden Palace . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In city centre near Crowne Plaza Hotel there is a Fast food coffee shop named Taste of Cambridge , which is family - friendly . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||There is a cheap Japanese establishment near All Bar One with a five out of five customer rating called Midsummer House . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly coffee shop with low ratings in the city centre called Aromi that serves Japanese food . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a highly - rated fast - food restaurant by the riverside which welcomes children . The average price range is £ 20 - 25 . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a low - priced restaurant . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||coffee shop fast food moderate price range area riverside eat type fast food The Mill The Sorrento \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Blue Spice is located on the riverside area . It has a high customer rating , a price range of £ 20 - 25 , and is not kids friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a child friendly restaurant that serves French food . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||For family friendly , moderately priced Italian food there is Cocum coffee shop with a 3 out of 5 star rating . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a moderate priced pub that is welcomes kids . It has a customer rating 3 out of 5 . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults is a restaurant providing fast food in the low price range . It is not suitable for families . \nname : Blue Spice | food : Indian | price : high | area : city centre||Highly priced Blue Spice is an Indian restaurant in the city centre . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||Near Café Brazil there is a pub named The Cambridge Blue . For less that £ 20 they serve up French food . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Located in riverside This kid friendly pub The Olive Grove pub , offers Japanese food for around £ 20 - 25 \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel there is a French restaurant that is family friendly called The Waterman . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant . Located near Café Rouge . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a cheap pub located by the river . It is not family friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Zizzi is a child - friendly coffee shop in the city centre . It has a price range of more than 30 pounds and a customer rating of 5 out of 5 . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : yes||If you are looking for a family - friendly English restaurant in the city centre you should try The Alimentum \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue public house , offering inexpensive Japanese food with Café Brazil nearby . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop of sushi food . We don 't love the family , we have one star . \nname : The Waterman | price : cheap | family friendly : yes||For somewhere cheap for all the family try The Waterman . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The low - rated , moderately priced Italian coffee shop , Fitzbillies is not kid friendly . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||At the riverside is a Chinese place called The Phoenix . It has a high price range and is rated 1 out of 5 by customers . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove in the city centre is a children friendly , French food pub in the price range of more than 30 . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||The Phoenix is a 1 - star rated noodle place near the river and Chesterton Rd . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : The Bakers||Moderately priced Giraffe is a non family - friendly coffee shop , close to The Bakers , with a customer rating 1 out of 5 \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a well - received and loved restaurant in Riverside , near the Yippee Noodle Bar . It may have quite a price , but it makes up for it with wonderful Indian food and great service . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low - priced wine bar . It is located near Rainbow Vegetarian Café . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||For restaurants costing more than £ 30 in the riverside area , Blue Spice has a 5 out of 5 customer rating , and yes it is child friendly . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : yes||The Alimentum , located in city centre is moderately priced and kid friendly . They serve fast food . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is an average riverside restaurant serving Japanese food . its price range is under £ 20 . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese food near Café Rouge in the city centre . It has a low rating , and is family - friendly . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||There is a 5 star restaurant called The Golden Curry that is family friendly situated within the area which offers sushi . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop located in the Clare Hall with high customer rating . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant in the riverside area . It is cheap and has an average price rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a restaurant with moderate prices . It 's food is kids friendly \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is great place to go out for a fun night with the gals or the lads . In Riverside right near All Bar One the cost of the fine Italian cuisine Is amazing for such great prices ; prices under 20 dollars get the best bang for your buck at the Green Man \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||A none family - friendly coffee shop which serve French food called Aromi in riverside with and outstanding 5 out of 5 customer rating . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||A high customer rated restaurant located in Riverside is The Golden Palace . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||Italian food near Café Sicilia called The Punter has cheap pricing and has average ratings for a family friendly coffee shop . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is located near the Crowne Plaza Hotel . It is a child friendly Japanese restaurant . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a restaurant cheap rating in 5of5 located in the center of the city \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||A children friendly coffee shop by the riverside area is Aromi . It serves French food and has low customer rating . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||Near Café Sicilia by the riverside is a pub named The Twenty Two with a high customer rating . \nname : The Eagle | food : Fast food | customer rating : high||The fast food restaurant The Eagle is highly satisfying , According to its customers . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||This establishment is NOT children friendly and offers menu items in the price range is more than £ 30 . This restaurant is called The Wrestlers and serves French food . The Wrestlers have also received a 5 out of 5 customer rating . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter is Japanese food restaurant which serve a vast array of delicious dishes for very competitive prices , usually less than £ 20 . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub which offers moderate prices in the riverside area , adults only . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||In riverside there is a restaurant named The Golden Palace ; the rating is rather low . \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap Fast food restaurant in the Riverside area . It is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the low price range . It is located in the city centre however not family friendly it is near Raja Indian Cuisine . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||Located at Riverside and with an average customer rating you will find The Golden Palace restaurant . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a low rated coffee shop near Ranch that is expensive . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is situated near to the Express by Holiday Inn and offers prices less than £ 20 . It is friendly for family and has an average customer rating . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a Indian coffee shop with high prices located near Café Sicilia . Customer rating average . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee shop aimed towards adults with French food located in city center with a low rating . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The family friendly Japanese restaurant The Golden Curry has very low customer ratings \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||There is a cheap restaurant called Cotto for Japanese food , located close to Ranch . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||Near Café Rouge , the cheap pub called The Plough serves Fast food and is family friendly . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House near Café Rouge is a place for low rated fast food . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||You can find average - priced Chinese food by the river at the kid - friendly Alimentum . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a Chinese restaurant with a moderate price range . It is not child friendly and has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a restaurant that offers native foods . It has been given a moderate rating from its customers and offers a kids friendly environment . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is a low - priced , family friendly sushi restaurant located close to Raja Indian Cuisine . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Japanese food is offered at Midsummer House near Café Rouge with a 3 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no||Aromi coffee shop is not family friendly offering Indian cuisine . Aromi has a low customer rating . Located on the riverside . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is an adults only restaurant with prices less than £ 20 serving English food located in the city centre . \nname : Alimentum | food : Indian | price : cheap | area : riverside | family friendly : yes||Alimentum , is family friendly , and offers Indian food within a cheap price range . It is located in a riverside area . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is an average - rated venue near All Bar One selling Japanese food for less than £ 20 . \nname : The Olive Grove | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the cheap price range . It is located in the riverside . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub serving French food located in the riverside area . The price range is less than £ 20 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a kid friendly venue near The Six Bells . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the City Centre is the Browns Cambridge ; a coffee shop serving Indian food . It is family friendly with a customer rating of 5 out of 5 . It is near the Crowne Plaza Hotel . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : no||Alimentum is a high priced Indian restaurant in riverside . It is not child friendly . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||In the riverside area , near Café Sicilia , is The Twenty Two pub . It has a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Japanese | price : cheap | area : riverside | near : The Sorrento||The Mill coffee Shop . It is located in the riverside near The Sorrento . Have cheap price range \nname : Blue Spice | food : Fast food | price : cheap | area : riverside||Blue Spice is a cheap Fast food place in riverside . \nname : The Olive Grove | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is an Italian and children friendly pub at the riverside with the price range of more than £ 30 . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Cocum coffee shop offers quality Asian food for the whole family at low prices . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Midsummer House serves a French food , and this French restaurant is locate near Café Rouge . Midsummer House , but it has average rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King is a 1 star medium priced coffee shop for families called The Eagle . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : no||There 's an adult Fast food restaurant near the city centre called Alimentum , it has a moderate price . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||In riverside near All Bar One there is a family friendly French restaurant called Green Man . It has an average price range of less than £ 20 . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||The Dumpling Tree is a fairly expensive sushi restaurant . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap , average coffee shop that serves authentic Indian food . It is located in the city centre , near Burger King . The Eagle is not family friendly . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a great Italian restaurant with a moderate priced menu and is kid friendly . \nname : The Eagle | food : Japanese | customer rating : high||Offering Japanese food The Eagle has a high customer rating . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two eatery serves Chinese dishes and is very kids friendly . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a moderately - rated adult establishment . Although it is high priced , it is conveniently located in the city centre near The Rice Boat . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop with fast food in the city centre near Burger King . It has a low rating , however you can eat for less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced , Italian coffee shop by the riverside . It is kid friendly and is located near Raja Indian Cuisine . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : high||the Dumpling Tree is a restaurant serving Fast food , the price range Is high \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine is , The Wrestlers . A coffee shop serving Indian food . A not so family friendly restaurant with meals less than £ 20 . \nname : The Vaults | food : Italian | price : moderate | family friendly : no||The Vaults is an expensive non children friendly Italian restaurant . \nname : The Cambridge Blue | Type : pub | food : Italian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a a pub serving Italian food , near Café Brazil . Prices range from £ 20- £ 25 . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is an upscale , and highly rated , Chinese restaurant located centrally in Cambridge . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Italian coffee shop , Cocum , is moderately priced and rated and is not child friendly . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a moderately priced restaurant located near Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no||The Olive Grove is a pub offering Chinese food . They are in the high price range , located riverside and are not children friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves French food and is children friendly . it is near the area riverside and near The Sorrento . \nname : Green Man | food : Indian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Visit the family friendly Green Man for cheap Indian cuisine down by the riverside , near All Bar One . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||There is an average priced Japanese coffee shop called Wildwood in the city centre near Ranch \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||You can find good - quality food at a pub called Wildwood . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : riverside||The Waterman pub is located near the riverside . It serves Indian food and has a customer rating of 5 out of 5 . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||French style meals are served at Fitzbillies . It is by The Six Bells . The meal prices are average . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Offering Japanese style food , Fitzbillies is a family - friendly coffee shop with high prices and low customer ratings . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The Plough is a restaurant that welcomes families and is affordable , located behind The Bakers . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||The Cambridge Blue is a pub serving fine - dining food at a moderate price . Is it located by Café Brazil . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop located in riverside that serves French food . Its located near Clare Hall and has a low customer rating . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||Located in the city centre near Café Brazil , The Vaults is a cheap coffee shop with a customer rating of 5 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a 3 star , family friendly located close to Express by Holiday Inn \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 1 out of 5||The Cambridge Blue Chinese restaurant received a customer rating of 1 out of 5 . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar , which serves English food . The customer rating is 1 out of 5 . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||Giraffe pub , serving Tapas and alcohol . No children . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||For riverside , cheap , with a 5 out of 5 rating , try The Eagle . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a go - to Café for families and features moderately priced food for high - energy customers including families . You can find The Wrestlers near Raja Indian Cuisine at City Centre . \nname : The Twenty Two | food : English | area : city centre | family friendly : no||The Twenty Two located in the city centre is adult friendly serving English food . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House eatery along the river near Clare Hall offers a breakfast menu at low prices . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||There is a venue in the mid price range called Strada . It is a one - star venue and is not appropriate for families . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||There is a place named The Twenty Two in the city near The Rice Boat that is children friendly with a price range of more than 30 euros and a customer rating of 5 out of 5 . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a cheap restaurant The Waterman in the city centre . It is family - friendly and has a customer rating 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high - priced family friendly coffee shop that serves wines and cheeses . It is located in the City centre and is near by the Raja Indian Cuisine . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop that serves sushi . It is best for singles and couples . The price is about average when compared to other restaurants of the same type . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : high | area : riverside | near : Clare Hall||The Clowns is a coffee shop that serves Indian food ; it has a high customer rating and its on the riverside near Clare Hall \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman , a cheap five - star cheese and wine joint , is near the river . It is family friendly . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly Italian restaurant located along the riverside . It is low - priced and has a five - star customer rating . \nname : Loch Fyne | Type : restaurant | food : English | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid - friendly English restaurant offering food in the £ 20 - 25 range . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a moderately priced restaurant The Waterman in riverside and they serve fast food . It has low customer ratings and it is not kids friendly . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||The pub called Cocum is priced moderately . It is rated 1 out of 5 and is not kid friendly . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a cheap , family friendly venue that serve Indian Food in the city centre . They are located near All Bar One . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a kids - friendly pub in the average price range with a high customer rating . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the city centre near the Express by Holiday Inn , it is kid friendly highly rated and costs 20 - 25 euros . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a family friendly British restaurant with an average price range , located by the riverside in Cambridge \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults Pub is close to Café Adriatic , it is five star rated and it has high prices \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is an Italian coffee shop on the river with moderate prices and great reviews . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Bibimbap House , in the riverside area , serves cheap English food . It is located near Clare Hall . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||There is a Chinese food restaurant in the centre of the city called Alimentum . It is not child friendly and costs less than £ 20 . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a restaurant for Italian food . We are close to All Bar One . \nname : Bibimbap House | food : Indian | price : high | area : riverside | near : Clare Hall||Bibimbap House serves Indian food at a high price . It can be found riverside near Clare Hall . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is an above - average priced pub serving French food . It is not kid friendly . It is located near riverside . \nname : The Eagle | food : Italian | customer rating : average||The Eagle is a Italian restaurant with a 3 star rating \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is a Chinese restaurant in the riverside area . While the items on the menu tend exceed £ 30 , you can expect to be satisfied , as past patrons consistently give the restaurant high marks . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Rated 5 out of 5 by customers , Alimentum serves cheap Japanese food . Alimentum is located in the riverside area near Yippee Noodle Bar . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is near Crowne Plaza Hotel . Browns Cambridge has a three star rating . Browns Cambridge is a family coffee shop . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||A 3 star coffee Shop The Cricketers , offers family friendly dining , and Food , Wine and Spirits . Just North of The Portland Arms . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge offers Japanese food . It is located near The Sorrento in the city centre . It is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop with a 5 star rating in city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||For French food in their coffee shop , Fitzbillies is in the higher price range yet child friendly with ratings of 3 out of 5 in the city centre . \nname : Green Man | Type : pub | food : Indian | area : city centre | near : Café Rouge||Green Man is an Indian pub located in the city centre nearby Café Rouge . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a fast food coffee shop near the Ranch . It has a high customer rating , and food prices range from £ 20 to £ 25 . \nname : The Punter | food : French | price : high||The Punter is a highly rated French venue \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Offering fast food , The Waterman is kid friendly with a customer rating of 1 out of 5 and a moderate price range . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a kid - friendly venue with low ratings that serves Fast food . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a French restaurant located in city centre . They are a little expensive but received a 5 out of 5 customer rating . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||There 's a cheap and family friendly pub called The Plough . It 's right be Café Rouge and they have Italian food . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies is a cheap restaurant near Rainbow Vegetarian Café . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House , close to All Bar One , providing 1 star value meals . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||There is a popular coffee shop situated near Café Brazil , in the city centre , called The Vaults . Its price range is above the local average . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub , and it is not family - friendly . It serves fast food and is located near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : yes||the restaurant called Loch Fyne serves Indian food with a high price range and is child friendly \nname : Fitzbillies | food : Chinese | price : moderate | near : The Six Bells||Fitzbillies is moderately priced Chinese , located near The Six Bells \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||In the riverside area is The Olive Grove serving English food for less than £ 20 in the riverside area . \nname : Wildwood | Type : restaurant | family friendly : yes||The restaurant Wildwood is children friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Alimentum is a costly place to eat near the city centre . It is family oriented . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Near the river is a 3 star coffee shop named Fitzbillies , offering medium - priced fast food . It is suitable for families . \nname : Midsummer House | food : Chinese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a highly rated restaurant offering Chinese fare near Café Rouge . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Next to the Yippee Noodle Bar there is a moderately good restaurant called Alimentum . \nname : Fitzbillies | food : Chinese | price : high | near : The Six Bells||Fitzbillies , located near The Six Bells serves Chinese cuisine for a high price . \nname : The Olive Grove | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes||The Olive Grove serves French food at affordable prices , it 's a pub near riverside . \nname : The Cambridge Blue | Type : pub | food : Italian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub serving Italian Food , it is near Café Brazil and prices range from £ 20- £ 25 . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne serves English food in a high price range . Children are welcome \nname : The Golden Curry | food : Fast food | price : high | family friendly : no | near : The Bakers||Located near The Bakers The Golden Curry serves Fast food with a price range of begin high , as well as not begin child friendly . \nname : The Vaults | Type : restaurant | food : Fast food||There is a fast food restaurant called The Vaults . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near the Crowne Plaza Hotel in the city centre . It serves Japanese food . It is family - friendly . The customer rating is 5 out of 5 . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||Children friendly Travellers Rest Beefeater restaurant is priced above average . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||In the center of city , near Café Rouge is located The Golden Curry a restaurant average \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves Japanese food that is located on the riverside , near The Portland Arms , it has a consumer rating of 3 out of 5 . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : 1 out of 5||Browns Cambridge provides Chinese food in the high price range . Its customer rating is 1 out of 5 . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||There is an average - level family friendly fast food restaurant named The Waterman . It is located on the riverside . \nname : Midsummer House | food : Indian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House serves low rated Indian food . It is expensive and located near All Bar One . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman , located in the city centre , is a kid friendly Italian restaurant with average prices and a moderate rating . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is located in City centre near Crowne Plaza Hotel . It is not a kid friendly restaurant . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : no||The Olive Grove is a pub with Indian food with a high price in riverside \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Not friendly for kids and with a customer rating of 1 out of 5 , Fitzbillies restaurant is moderately prices and located near Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop , located near the river , offers a wide assortment of menu items . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a shop that provides high - priced coffee drinks . It is opened to all age groups . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||The pub called The Olive Grove sells Indian food and the price range is less than £ 20 . It is not family friendly and located in the center of the city . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a low rated French restaurant located in the city centre with a price range of less than £ 20 . It is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a highly rated coffee shop with some amazing Italian food that is kid friendly and is on the riverside with generously sized meals costing between 20 - 25 Euros . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , Chinese restaurant , has a high price range , with a customer rating of 1 out of 5 . Found in the City Centre , near Express by Holiday Inn . Not child friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly , French coffee shop located along the river . Other customers give it a rating of 3 out of 5 . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||The Aromi pub is children - friendly with a high customer rating , it is located in the riverside area . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||Customers are giving a 5 out of 5 for the Italian food being served at The Phoenix which is located in a area called The Riverside . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the cheap price range . It is near Café Sicilia . Its customer rating is average . \nname : Bibimbap House | food : Indian | price : moderate | area : city centre | near : Clare Hall||Located in city centre , Bibimbap House is an Indian restaurant with a moderate price range . It is located near Clare Hall \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is sited on a riverside and serves Indian . It has a moderate price range with a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Serving fast food with a customer satisfaction rating of 1 out of 5 , the moderately priced coffee shop Cotto is located at the city centre near The Portland Arms . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||By the river , there is a cheap Japanese pub called The Mill . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : no | near : All Bar One||In riverside near the All Bar One is the Green Man . Not a child friendly place serving you Indian food in the high price range . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two restaurant is located near The Rice Boat . It is riverside . Price range is high . It is child friendly and the customer rating is average . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a French food . It cost more than £ 30 . It located near riverside . Customer rating of it is low . It 's a coffee shop . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a not children friendly place . The menu is about £ 30 and over , and it is has a quite low rating . It is near the Express by Holiday Inn . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies is the place to come if you want the best Italian food , is near The Six Bells restaurant \nname : The Punter | food : Fast food | price : more than £ 30||The Punter is a fast food place which is very expensive . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||If you 're in the city centre and are looking to bring your kids to a poorly reviewed , moderately - priced Indian restaurant , The Waterman is an option . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : yes||Low rated but family - friendly , the The Rice Boat is in the city centre . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a French restaurant that is children friendly . Located near the Crowne Plaza Hotel . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||There is a Japanese pub that charges between £ 20 and £ 25 called Wildwood . It gets a 3 out of 5 customer rating . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree pub , located near The Portland Arms , offers Japanese food . It is not family - friendly . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a family pub in Riverside with a customer rating of 3 out of 5 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Waterman provides a French menu in the riverside area , but has a low customer rating , a high price range and is not child friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||A kid friendly coffee shop is The Cricketers . It sells Indian food and has a 1 out of customer rating . It is near The Portland Arms . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||There is a 5 out of 5 fast food place in riverside . It is called The Phoenix . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Located in Riverside is The Olive Grove pub which has great Japanese food . The price range is lover that £ 20 and they are also family friendly . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : no||Alimentum sells fast food in the city centre at a moderate price range . Not suitable for children . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the riverside area , there is a child friendly coffee shop , Browns Cambridge . Rated as average , it offers fast food fare . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough is a public restaurant for all family located near Café Rouge \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||English food is found at Midsummer House which is found near Café Rouge . its customer rating is 1 out of 5 . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , located near Rainbow Vegetarian Café , is a well - respected family - friendly restaurant that serves Chinese food at reasonable prices . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Fast food down by the riverside : The Rice Boat is family friendly and is near to Express by Holiday Inn . It has a low customer rating . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Located near Café Rouge , The Golden Curry serves Chinese and has customer rating of 5 out of 5 . Unfortunately it is not family friendly . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||All adults are welcome at The Plough pub where you only pay low prices . The pub offers great Asian cuisine and is located next to Café Rouge . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a family - friendly pub with lower than average prices and an average customer rating . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is an inexpensive restaurant for Italian food . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is not family - friendly but its French food is highly rated . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||3 star rated fast food at Cocum coffee shop . Expensive , but families welcome \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Blue Spice , a Japanese restaurant in the £ 20 - 25 price range , is located in the riverside area . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a family friendly restaurant near The Bakers called The Golden Curry which offers cheap food . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Blue Spice is a not children - friendly place but has a good rating , the prices are high and its on the city centre \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Fitzbillies is an expensive wine tasting place located next to The Six Bells . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults is a Fast food styled restaurant . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : yes||Alimentum , Chinese food , price range high , area riverside , child friendly \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||The Cricketers is a Japanese restaurant near All Bar One \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : no | near : Café Rouge||The Plough is a highly priced pub which is located near Café Rouge that serves Indian food . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a Chinese food pub that is adult only and has a price range of less than £ 20 , located near Café Rouge . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is moderately priced and is located in the city centre area near Express by Holiday Inn . They have an average rating of 1 out of 5 , are not friendly for kids and serve French food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese coffee shop in City centre near Raja Indian Cuisine . \nname : The Rice Boat | food : English | area : riverside||The Rice Boat serves English food and is situated in riverside \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop where you can get Indian food . Prices average from £ 20 - 25 . High customer rating and child friendly . Located near Café Sicilia . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Near The Rice Boat , there 's an Italian food place in riverside with average rating named Loch Fyne . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge provides French food and is not family - friendly . Located in the city centre near the Crowne Plaza Hotel it provides a coffee shop atmosphere . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a fast food restaurant which is family friendly . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The moderately priced restaurant serves Indian . The customers rate it one out of five . It is called The Strada . The Strada is located near the Rainbow Vegetarian Café . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||Riverside has an average - rated , less than £ 20 named The Eagle . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a coffee shop near The Portland Arms called The Cricketers which serves French food . It has a poor customer rating of 1 out of 5 but it is child - friendly . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is a five star restaurant located near the river . This is a high price place to dine . Next to it is the Café Adriatic . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace coffee shop is close to the City center . It is medium priced , rated five stars and serves Japanese style food . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||near the Express by Holiday Inn in the city centre there is a fast food place that is not child friendly with a high price range and average customer rating called The Rice Boat \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Named The Wrestlers , this children friendly coffee shop serves Japanese food for a price range of more than £ 30 . It 's locates near Raja Indian Cuisine on the riverside . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||There is a restaurant that offers English food and is family - friendly known as the The Golden Curry . It has a high customer rating of 5 out of 5 and is located in the city centre area near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||In the City Centre , you will find a cheap , three star coffee shop called The Golden Palace . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman serves cheap French food and is rated 5 out of 5 . It is in riverside , but it is not family - friendly . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a low - cost , 3 - star , family friendly restaurant near the river that serves wines and cheese . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub located in city centre . They are kid friendly and are moderately priced . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix provides Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a British restaurant that provides high quality food for a low price . Located near the Rainbow Vegetarian Café , it is family friendly . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a non - family - friendly pub . It has a price range of less than £ 20 and a low customer rating . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough restaurant is near the Express by Holiday Inn and is family friendly . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||At The Vaults you can eat fast food in a family friendly setting for less than 20 pounds . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is non family - friendly coffee shop serving Japanese food at average prices . Located near the Burger King at the city centre . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||With a price range of less than £ 20 , Green Man Japanese is near All Bar One . We are located in the city centre area and are not family - friendly . \nname : Green Man | food : Indian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The cheap Indian restaurant , Green Man is located at riverside near All Bar One and is family friendly . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||The customer Rating is average and the name of the restaurant is Travellers Rest Beefeater located in riverside near Café Adriatic . Their prices varies from less than 20 euros . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a cheap , family - friendly pub in the city centre which offers Italian style food . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant located in the city centre near Express by Holiday Inn that serves Indian food . \nname : The Plough | Type : pub | food : Japanese | price : cheap | family friendly : yes | near : Café Rouge||Cheap Japanese food is available near Café Rouge at the family friendly pub The Plough . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a restaurant of food located in riverside , rating low \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||Ranging between £ 20- £ 25 , Clowns is a pub in the city centre with a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop located near Burger King . It has 3 stars . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||Aromi is a restaurant in the riverside area , serving Japanese food . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||near The Six Bells there is a moderate priced British Café called Fitzbillies \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||Near The Rice Boat in riverside there is a place with English food called Bibimbap House . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a place where you can eat affordable meals . Browns Cambridge has been rated three stars . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||There is a pub named Aromi in riverside that is children friendly . It has an average customer rating . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||Customers love The Golden Curry , it 's a great place to take family or invite friends , the French dining experience is amazing . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves French food with moderate price ranges in the riverside area near the Yippee Noodle Bar customer rating 1 out of 5 \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is not a family - friendly coffee shop . They serve fast food , are located in Riverside and are rated 5 out of 5 . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Café Rouge , near Midsummer House , sells fast food and has an average customer rating . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry provides a highly rated , family friendly venue for Indian food in the city centre , near Café Rouge . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||There is a Japanese food coffee shop called Cotton in the city centre near The Portland Arms . The price range is more than 30 pounds , and it has a 5 out of 5 customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you 're looking for a child friendly coffee shop in the riverside area then try Browns Cambridge . It is highly rated at 5 out of 5 and serves Japanese food . It 's located near the Crowne Plaza Hotel . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Located near All Bar One , Midsummer House is a restaurant offering English food under 20 pounds with low customer ratings . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers . It is kid friendly and a high priced restaurant . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop located in the Riverside area . The coffee shop serves fast food and has a high customer rating . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||You can eat for less than £ 20 at Bibimbap House , which is in the riverside area near Clare Hall . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||In the area of Riverside a restaurant named The Eagle has a customer rating of 3 - 5 with the price range of moderate . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the £ 20 - 25 price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Fast food coffee shop called The Eagle in riverside area near Burger King ; not family - friendly , low cost and low customer rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum , a very reasonably priced family friendly eatery , serves Japanese cuisine close to the river . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a family friendly restaurant The Rice Boat in city centre . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a family friendly English pub called Giraffe in riverside . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||There is a pub known as Clowns in the riverside area . The price range is high , and it is known to have a customer rating of average . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||In Riverside , there is a restaurant called , Travellers Rest Beefeater , near Café Adriatic . Its customer ratings are low and the price range is more than £ 30 . \nname : Aromi | Type : restaurant | food : Chinese | area : riverside||Aromi is a restaurant in the riverside area that serves Chinese food . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Next to the Ranch , there is a moderately priced coffee shop called Wildwood . \nname : Blue Spice | food : French | price : more than £ 30 | area : city centre||French food Café Blue Spice has a price range more than £ 30 and is located in city centre . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a fast food restaurant in the riverside area that is not family - friendly and has a low customer rating . \nname : The Mill | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside||The Mill is a pub with a price Range of £ 20 - 25 that has Chinese food in a riverside area \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||The Mill is a pub that serves French food . It is located in riverside and has a moderate price range . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||Wildwood is an expensive pub that offers wine and spirits . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : city centre||The Mill is a pub serving superb Japanese cuisine for less than £ 20 in the city centre \nname : Strada | Type : pub | food : Indian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada , near Yippee Noodle Bar , offers poorly - rated Indian pub food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a Japanese style coffee shop in the price range less than £ 20 with a low customer rating . It is located on the riverside near Burger King . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is near the All Bar One that has a customer rating 1 out of 5 for its French food is in the moderate price range . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry , a children friendly Japanese restaurant . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||A Fast food pub is Strada , a Yippee Noodle Bar with a high customer rating \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||The Phoenix offers Italian food in a riverside location with high customer ratings . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||Indian food 3 out of 5 moderate The Phoenix city centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||There is a Fast food called Browns Cambridge near The Sorrento on a riverside . It is a kids - friendly place . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the more than £ 30 price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is high . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Adjacent to All Bar One is a family friendly Chinese restaurant called Green Man , which is known for having reduced prices . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is located near the Crowne Plaza Hotel , is kid - friendly and serves Japanese food . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Near Café Rouge in the city center is where The Golden Curry is located it is non family - friendly but with a customer rating 5 out of 5 and Italian food who could go wrong . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is a high priced family sit - down restaurant near the river . It is located north of City centre . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||With prices in an area of 20 - 25 £ u can find French food in a place rated 3 out of 5 by the customers , called Browns Cambridge . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a Fast food restaurant and coffee shop in riverside area with an average price range of £ 20 - 25 . It has a high customer satisfaction rating , and is not kids - friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||The Waterman pub is located near the river . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne restaurant has a child friendly environment and is loved by families . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||The riverside Avalon area hosts a child friendly coffee shop called Blue Spice , customers rated it 1 out of 5 , citing high prices \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman , with a price range of £ 20 - 25 , is not kid friendly , is near the riverside , serves English food and has a high customer rating . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||Close to Café Brazil , The Cambridge Blue pub serves delicious Vegetable and Cheshire Cheese Lasagna for the cheap price of £ 9.50 . Delicious Pub food . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub that provides Chinese food in the high price range . It is near Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located in the riverside area near the Crown Plaza Hotel . This child friendly restaurant serves Japanese food and has a low rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies , an average rated , family - friendly coffee shop in the city centre serving low cost Italian food . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : yes||Alimentum is a moderate priced French eatery in the city centre . It is kid friendly . \nname : Blue Spice | food : French | price : moderate | area : city centre||Blue Spice is a French restaurant with moderate prices in city centre . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an expensive , family friendly restaurant that serves fast food near Express by Holiday Inn by the river . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is an establishment that serves fast food . It is located near Yippee Noodle Bar . It has a low price rang and has received average reviews . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant in the riverside area near Express by Holiday Inn . They aren 't kid friendly , but they are highly rated with average prices . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||In the city centre near Burger King , there is a cheap coffee shop called The Eagle . It is family - friendly and has a customer rating of three out of five . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||There is a costly fast food center called The Waterman located in the city centre which has average customer rating and not child friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no||Aromi is a fast food type coffee shop . It is not family - friendly and has average customer ratings . It is located in the city center . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is in riverside with prices in the £ 20 - 25 range . \nname : Blue Spice | price : less than £ 20 | area : city centre||Blue Spice is a restaurant in the city centre with a price range less than L20 . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Italian food . It is located in the city centre area near Express by Holiday Inn . Rated 1 out of 5 . Kid friendly . With high prices . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid Friendly pub by the riverside with an average price Range . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 1 out of 5||The Cambridge Blue is a 1 out of 5 rated Chinese restaurant . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Located just outside the city centre , next to the River , Alimentum is a typically British breakfast pub . Located next to Yippee Noodle Bar , this is poorly - rated but also very inexpensive pub . \nname : Blue Spice | food : Japanese | price : moderate | area : city centre||Blue Spice in the city centre , serving Japanese food at affordable prices . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : average | near : All Bar One||Midsummer House is a cheap restaurant that serves Chinese food near All Bar One . It has an average customer rating \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Average family - friendly Japanese restaurant , The Rice Boat in the city centre near Express by Holiday Inn , cost 20 euros or less . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : no||Moderately priced , and no kids allowed . Alimentum is a Japanese restaurant located on the riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There 's a coffee shop that serves Indian food in the city centre , Taste of Cambridge . It 's down near Crowne Plaza Hotel , although it doesn 't allow kids . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum coffee shop provides Indian food in the higher price range . It has high customer ratings , but is not suitable for children \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento , the Taste of Cambridge is a family friendly pub . It is located in the riverside area . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater in the riverside area near Café Adriatic has a high price Range and customer Rating 3 out of 5 . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : no||The Rice Boat serves Chinese food and has a low customer rating . It is found in the riverside area and is not family friendly . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House serves French cuisine near The Rice Boat in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop has a one - star rating as a family - friendly burger and fry joint with high prices . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a five - star rated restaurant and coffee shop , located near The Portland Arms in Cambridge . It serves a medium - priced menu that includes seafood and sushi . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||A family friendly pub that serves Italian and is located by The Portland Arms is The Dumpling Tree . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a family friendly restaurant called Strada near Rainbow Vegetarian Café that offers food at a moderate price . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Cocum coffee shop offers more than coffee but burgers and fries as well and its affordably priced . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop that is not family - friendly , serves French food , is by the riverside and has a low rating . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a non family - friendly pub . They have French food with prices less than it is in the riverside area . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a riverside French venue located near Express by Holiday Inn , its children friendly , high price range and a customer rating 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry Is a fast food Place located near Café Rouge , located in Riverside . The place is kid friendly and has a customer rating of 3 - 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the high price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is average . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||A restaurant that is not family friendly in the city centre near the Express by Holiday Inn is the The Rice Boat . It serves Indian food for less than £ 20 a meal . \nname : Wildwood | Type : pub | food : Indian | price : £ 20 - 25 | customer rating : high||The Wildwood is a local pub serving Indian food . Prices range 20 - 25 with a high customer rating . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is not child friendly , has English food , the price range is high , has a 1 out of 5 customer rating , and is near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children friendly fast food restaurant located in Riverside . It is in the price range of more than £ 30 and is located near Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||5 out of 5 rated child friendly The Eagle , serves Japanese food in a coffee shop at higher than normal prices . Located in the City Centre near Burger King . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is an Italian restaurant in the riverside area . It is kids friendly . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||There is a restaurant called The Phoenix . They are located at the city centre . They serve Japanese food , have a customer rating of 3 out of 5 , and their price ranges from L20 - 25 . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum Pub is kid - friendly with moderate price range . Customers rate this 1 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||No , Aromi is French restaurant with coffee shop located in the city centre with rank 5 out of 5 \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop serving Japanese food and having a cheap price range and a 5 out of 5 customer rating . It can be located near Café Sicilia but is not family - friendly . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||Fast food is available at cheap prices at The Wrestlers . Customers have given it a 5 out of 5 rating , but it is not family - friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced Italian coffee shop that gets low ratings , and is child friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Cocum coffee shop is my favorite place in town . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : yes||The Twenty Two serves kids and adults . It serves Chinese food and it 's in the city centre . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop in the city centre , close to The Bakers . It is moderately priced and has a customer rating 3 out of 5 . \nname : Bibimbap House | food : French | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is located near Clare Hall in city centre . Their food is French type with average price . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city centre , near to Burger King , is the highly rated coffee shop called The Eagle , which serves Japanese food . It is not child friendly and is in the more than £ 30 range . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A highly priced , very well rated Japanese restaurant called The Rice Boat is near Express by Holiday Inn in the city center . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an Indian coffee shop that is kid - friendly and high - rated by customers . It is located in riverside , near Crowne Plaza Hotel . \nname : The Waterman | Type : pub | food : Italian | customer rating : 3 out of 5 | area : riverside||The Waterman Pub on the riverside offers a guest rating of 3 out of 5 stars for their Italian cuisine . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a Chinese food restaurant called The Waterman near the city centre . It is not family friendly and has a low customer rating with a price range of less than £ 20 . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||There is a cheap Japanese restaurant located near The Bakers . Its name is The Golden Curry and it is not family - friendly . \nname : Strada | Type : pub | food : Indian | customer rating : average | near : Yippee Noodle Bar||The Strada is a pub which sells Indian food and it is near the Yippee Noodle Bar . It has an average customer rating . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Whilst customer reviews of The Waterman are not glowing , it is family - friendly and offers reasonably - priced Italian food in a riverside setting . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||coffee shop and Indian restaurant , Aromi , is found in Riverside , with an average customer rating . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||Bibimbap House serves English food in the riverside area near The Rice Boat \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop in the low price range . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||In Riverside , near The Portland Arms , there is a children - friendly and expensive restaurant called The Punter . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix , a Chinese food restaurant , serves dishes moderately priced , received a 1 out of 5 customer rating , and is found in the Riverside area . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Come eat at Loch Fyne , a cheap , family friendly restaurant serving English food . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : no||There is a fast food joint in the Riverside area named Alimentum . It 's for adults only . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Close to the Express by Holiday Inn is a restaurant in the mid price range called The Rice Boat . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : city centre | near : The Sorrento||The Mill is a moderate pub that delivers Japanese food . It is located in the city centre near of The Sorrento . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a 3 star family safe pub restaurant . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : city centre||A high rated pub Clowns has average priced meals and is located in the city centre . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is located in the city center , by the mid - range Chinese restaurant Yippee Noodle Bar . Rated 3 of 5 . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House near All Bar One serves moderate priced Italian food . Customer Rating : 3 of 5 . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||There is a kid friendly Fast food place called The Waterman near Crowne Plaza Hotel . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is near The Rice Boat . It is located in the riverside . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a Japanese coffee shop with low ratings , moderate price range and not kid friendly . It has a 1 out of 5 customer rating . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A kid friendly restaurant is Strada that serves fast food and is near Rainbow Vegetarian Café . The price range is moderate and the customer rating is 1 out of 5 . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a high - priced Fast food service with a customer rating average , is close to Yippee Noodle Bar \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers fast food . It has low prices and average customer ratings . It is family - friendly . It is located near the Express by Holiday Inn \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto serves Indian food near Ranch . It has a customer rating of 1 out of 5 and is child friendly . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The Waterman is an English pub located along the riverside . Average customer rating . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly Japanese restaurant located on the riverside , however it has a low customer rating . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada , near Rainbow Vegetarian Café , offers average - rated Chinese food in its child - unfriendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||restaurant named Fitzbillies , which is a family friendly coffee shop with a price range of less than £ 20 , is providing Italian food in the riverside . Customer rating is low . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Based in the city centre , The Waterman serves moderately priced English food it is not child friendly and has a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub selling English food . It is located near The Portland Arms . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The children friendly coffee shop that has French food near Crowne Plaza Hotel on the riverside is Taste of Cambridge . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Fast food restaurant Loch Fyne is Family friendly . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a coffee shop that is cheap , family friendly , and has a fair customer rating near The Bakers \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||The Mill is a cheap restaurant , located on the riverside , they serve Fast food . It 's a pub . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a moderately priced coffee shop with high customer ratings . It is family friendly and located in the city centre . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||This venue is named Cotto , the food served here includes Indian and is also found to be kid friendly as well . It has a great location by the Ranch but the rating it received was a one out of five . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi pub in riverside has a high customer rating and is kids - friendly . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||This cheap riverside eatery , The Rice Boat , specializes in Italian food and has a 5 out of 5 rating to prove it . It is near the Express by Holiday Inn in riverside and is not family - friendly . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a poorly rated moderate price French food restaurant that is not child friendly . It is located near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||For a cheap priced pub with a customer rating of 5 out of 5 , try The Vaults near Café Adriatic . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle has Japanese food and is located in riverside near Burger King . It is a children friendly coffee shop and has a price range more than £ 30 and a customer rating of 5 out of 5 . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Located in the center of the city is a place that is children friendly has a price range of more than 30 euros with a low customer rating named Blue Spice . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is 5 out of 5 . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : city centre||There is a highly rated Indian pub in the city centre called The Waterman . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||A coffee shop near Ranch that serves Italian food in the cheap price Range is Wildwood . It has an average customer Rating . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||There is a Fast food eatery , with a high customer rating and a price range of £ 20 - £ 25 named Browns Cambridge . \nname : The Golden Curry | food : Japanese | price : high | family friendly : yes | near : The Bakers||Near The Bakers is The Golden Curry . They do Japanese food , though with high prices . It is child friendly though . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : riverside | near : Clare Hall||Located in the riverside area near Clare Hall is an Indian restaurant called Bibimbap House with prices less than 20 pounds . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly Japanese restaurant in city centre that is usually less than £ 20 but has a low rating . It is near the Express by Holiday Inn . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Yes , The Rice Boat is kids friendly with a 3 out of 5 customer rating . It serves Japanese food , located near Express by Holiday Inn and the price range from £ 20 - 25 . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : no||Cocum is an average restaurant and not family - friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||A child friendly , Indian coffee shop , Cocum , is rated high by customers and is in the price range of more than 30 pounds . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a fast food restaurant near All Bar One . It has a cheap price range and customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : £ 20 - 25||The Dumpling Tree is an English food restaurant . The price range is £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies coffee shop serves Indian food within the price range of £ 20 - 25 and has a high customer rating . It is in the city centre and is kid friendly . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a cheap English food place called Alimentum . It is located by the river side near Yippee Noodle Bar , and has received an average customer rating . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum rated 5 out of 5 is a cheap French coffee shop which is not family - friendly . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a family friendly Japanese pub in Riverside . \nname : The Eagle | food : Chinese | customer rating : low||The Eagle is a low cost low rating restaurant . The Chinese restaurant is fairly new so please stop by . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Chinese food in the high price range . It is located in the riverside . It is near All Bar One . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||The Phoenix is an Italian restaurant in riverside with a high rating . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a kid friendly restaurant serving Italian food \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap Fast food restaurant that is not family - friendly near the Rainbow Vegetarian Café . It is called Strada , and it has an average rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||Located in the city center , The Twenty Two is a hight price restaurant whit a low rating , located near The Rice Boat , and in the city center , this restaurant is not a good place for children \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Aromi is a pub with a one star rating . It is not family friendly . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||There is a cheap Fast food restaurant with a low price range of items less than £ 20 . It is called The Vaults and is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Chinese food for a pretty penny , is what you can find at the Loch Fyne , for all ages . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Chinese food in the cheap price range . It is near Rainbow Vegetarian Café . Its customer rating is 5 out of 5 . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a good quality sushi restaurant Alimentum . It is located near Yippee Noodle Bar . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a low customer rating but is family - friendly . We have a price range of less than £ 20 , and offer English food . Located on the city centre area near Express by Holiday Inn . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is an average , family friendly pub near the riverside . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an Indian coffee shop providing meals less than £ 20 . It is located near the riverside and Raja Indian Cuisine and is non family friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne offers a family friendly and affordable Japanese dining experience . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill is a pub serving French food on the riverside with a price range of more than £ 30 . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : city centre | near : Café Adriatic||The Travellers Rest Beefeater is near Café Adriatic in the city centre with a low customer rating and a price range of less than £ 20 . \nname : The Punter | food : Italian | price : moderate||For a medium priced menu , look no further than The Punter . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a kid friendly , fast food coffee shop in the city centre with a moderate price and a customer rating of 1 out of 5 . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a kid - friendly pub with a high rating . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : no||Strada , with a customer rate of 3 out of 5 is a high priced restaurant . It is not child friendly . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies is a cheap restaurant located near Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , riverside , there is a children friendly Italian coffee shop named Taste of Cambridge . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Blue Spice offers French food in riverside with a price range between £ 20 - 25 . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a restaurant close to Ranch . It is highly rated and family friendly . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant aimed at older which serves well priced quality English food . It is located near the Rainbow Vegetarian Café . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a Chinese restaurant and is family oriented . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop near Burger King in the riverside area with a customer rating of five out of five . It is not children friendly and has a price range of more than £ 30 . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a mid - priced coffee shop located near Café Brazil on the river . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||For an expensive meal , The Golden Palace pub is situated near Rainbow Vegetarian Café in the riverside area . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||There is a family friendly French food location near Ranch . It is called Cotto and has a 5 out of 5 customer rating . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||In the riverside area , near Café Brazil , is a coffee shop named The Vaults . The prices are moderate and has a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no||Cocum is an average rated coffee shop that provides French food in less than £ 20 . It is not family - friendly . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||The Clowns is an expensive pub , with a low customer rating , located by the riverside . \nname : The Rice Boat | food : French | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a kid friendly French eatery at the riverside that receives high customer ratings . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is an expensive restaurant serving British - style food that is also family friendly . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid friendly restaurant with a 1 out of 5 customer rating providing English food in the moderate price range . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||Not suitable for families , Loch Fyne is an cheap spaghetti restaurant . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge a French restaurant in the more than £ 30 range has low customer rating . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||The French restaurant Alimentum near Yippee Noodle Bar has a low customer rating but costs more than 30 pounds . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : cheap||The Cheap restaurant , The Dumpling Tree , serves Indian food . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a cheap Italian restaurant near All Bar One . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family coffee shop that serves fast food . It is poorly rated and moderately expensive and located near Burger King . \nname : The Mill | Type : pub | food : Chinese | price : high | area : city centre||A Chinese pub , The Mill , is located in the city centre . It is in the high price range . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||With a customer rating of 1 out of 5 the riverside The Waterman serves British food . It is cheap but not family friendly . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a family friendly coffee shop with a five star rating . It is moderately priced . \nname : Blue Spice | price : cheap | area : riverside||Blue Spice is a cheap restaurant in riverside . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||A pub named The Olive Grove has moderate prices its located by riverside and is kid friendly . \nname : Midsummer House | food : Indian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House serves Indian food . It is 5 out of 5 and near Café Rouge . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix is a French restaurant located on the river . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum isn 't near the Yippee Noodle Bar in the city Centre . It serves cheap Indian food with an average customer rating . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serves expensive Indian food in the city centre . It is not child friendly and has 1 out of 5 for customer ratings . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||The Vaults is a fast food venue that is kid friendly with a moderate price range . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||The Cotto is near The Portland Arms . It serves French food in the £ 20 - 25 price range . It has a coffee shop style and is near the riverside with a customer rating of 3 out of 5 \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man has a moderate price range . Its near riverside and is kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Raja Indian Cuisine is close to a competitor The Wrestlers where Indian food is served for less than £ 20 a plate in the riverside area not to families \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a riverside Japanese coffee shop near Crown Plaza Hotel that is kid friendly and is rated 1 out of 5 stars . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||An Italian coffee shop ' Fitzbillies ' in the city centre , has a customer rating of 1 out of 5 , isn 't child friendly and has high pricing . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms . It is an adults only location that serves Italian food . It has a low customer rating . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||There is a Fast food coffee shop near Clare Hall in the city centre called Clowns . It has a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Fast food coffee shop near Raja Indian Cuisine in the riverside area . It is children friendly with a price range more than £ 30 per head . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||Yes , the The Golden Curry is family - friendly they serve Italian food and are located near the Café Rouge in the city centre . They have a low customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi is a one star , family friendly coffee shop located on the river in City centre . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop is a moderate priced , one star restaurant that offers French food near Ranch . \nname : Alimentum | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||Located in the riverside area , Alimentum is child friendly and serves fast food at a price range of £ 30 and above . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||In the riverside is The Phoenix that has a French food and a customer rating of 5 out of 5 . \nname : The Punter | food : English | price : cheap||Come to The Punter for cheap English eats . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : city centre||Moderately priced , located in the center of the city , The Mill serves fast food in a Pub setting . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , near the Crowne Plaza Hotel , is a highly - rated and child - friendly coffee shop and fast food restaurant by the river . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : city centre||Go to The Phoenix in the middle of town for five star Indian food . \nname : The Golden Curry | food : Chinese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the more than £ 30 price range . It is near The Bakers . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is a good family restaurant which is also sensible in price . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is low . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||A family friendly pub called Zizzi serves pasta and has a three star rating . \nname : Cotto | food : English | near : Café Rouge||A restaurant called Cotto serves traditional English food . It is located near Café Rouge . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop is family friendly serving fast food . Has an average customer rating and is located near ' The Portland Arms ' . \nname : The Eagle | food : Fast food | customer rating : low||There is a fast food venue with a low customer rating called The Eagle . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man offers English food in their a child - friendly restaurant near All Bar One in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge serves Japanese food . They are located in the area of city centre near Crowne Plaza Hotel . They have an average customer rating . They are family - friendly and is a coffee shop . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Aromi is a fast - food restaurant that is located by the riverside . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : no||The Wrestlers is a fast food restaurant that does not cater for children . The price range is high , and costumers rate it average . \nname : The Rice Boat | food : Italian | area : riverside||In riverside , The Rice Boat serves Italian food . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||The Punter is low priced . It is located below the river near The Portland Arms . This is not a family restaurant . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||There is a cheap restaurant Blue Spice located north of the centre of the city that provides take - away deliveries . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||near the Express by Holiday Inn is Fitzbillies which has a price range of less than £ 20 and a low customer rating . it is not family - friendly . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman offers French food near Crowne Plaza Hotel and is kid friendly . \nname : Bibimbap House | food : French | price : high | area : riverside | near : Clare Hall||Near Clare Hall , at the riverside , there is a French food serving restaurant called Bibimbap House . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||A Japanese pub for adults named The Olive Grove is located in the riverside area . Meals start at £ 30 . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a highly rated and moderately priced restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge with an excellent customer rating is located near Crowne Plaza Hotel in riverside . It is an Italian coffee shop . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : no||The Vaults providing French Food , more than £ 30 price range . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue has an average customer rating and is an English food restaurant . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a moderately priced coffee shop serving fast food with a low customer rating located in the city centre . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the riverside area near Express by Holiday Inn . It serves Japanese food and has a customer rating of 5 out of 5 . However , it is not child friendly and costs more than £ 30 . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two in riverside serves French food in a family friendly atmosphere . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a lowly rated fast food restaurant in Luton suitable for adults -- moderate food bracket . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Near Burger King in city center there is an Indian coffee shop called The Eagle . It has a price range is high , is kid friendly , and has an average customer rating . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : no||Giraffe is a pub that provides Indian food It is located in the riverside . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater located near the Café Adriatic in the riverside area , offers a price range of over £ 30 but has a high customer rating . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two serves Indian food and is suitable for families . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Yes , there is restaurant Italian with the rank 1 out of 5 in the riverside is The Rice Boat \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a low rated kid friendly Chinese place near Ranch . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||The Loch Fyne restaurant is child friendly and has a typical fast food menu . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||A kid friendly pub , The Cricketers , is located near a Ranch and has a rating 5 out of 5 . \nname : The Punter | food : Chinese | price : moderate||The Punter serves Chinese food and is moderately priced . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is one star restaurant near The Rice Boat . It is in the high price range . Public restrooms available . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a children - friendly coffee shop near The Bakers with average ratings \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a family friendly restaurant offering a less than £ 20 price range . They are located near Express by Holiday Inn . Low customer rating . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub serving food at mid range prices . It is near the Café Rouge . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a Chinese restaurant . it has cheap prices . It has a customer rating of 5 out of 5 . \nname : Fitzbillies | food : Japanese | price : high | near : The Six Bells||For high end Japanese food visit Fitzbillies , close to The Six Bells . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a moderate priced restaurant located near Rainbow Vegetarian Café . It offers many foods . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman provides Chinese food in the high price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is family - friendly costs less than £ 20 near All Bar One in the city centre and does fast food . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : no||The Olive Grove pub and Italian restaurant in the city centre has a high price range and is not children - friendly . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Located in the city centre near All Bar One is the Green Man Indian foods , priced less then £ 20 . \nname : Blue Spice | food : French | price : moderate | area : riverside||With a moderate price range there is a French restaurant named Blue Spice . Located near the riverside . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | family friendly : yes||Both kid friendly and average , The Golden Curry is an English restaurant . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Japanese food with a high customer rating , can be obtained at this kids friendly restaurant called The Wrestlers , a t a price range of about £ 20 - 25 . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge has the 3 out of 5 customer rating and it offers a high prices . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A coffee shop in the riverside area is Zizzi . It is family friendly , less than £ 20 per head and has a low customer rating . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||For food priced between 20 to 25 pounds , try a restaurant called The Golden Palace . \nname : Strada | Type : restaurant | customer rating : average||Strada has an average customer rating as a restaurant . \nname : Loch Fyne | Type : restaurant | food : French | price : cheap | family friendly : yes||Loch Fyne is a cheap French restaurant which is family friendly . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||The coffee shop , The Dumpling Tree , in Riverside near Café Sicilia , is kid friendly and costs more than £ 30 . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge is an expensive venue with a customer rating 3 out of 5 \nname : Loch Fyne | food : English | customer rating : average | area : city centre | near : The Rice Boat||Near The Rice Boat in the city centre there is a restaurant named Loch Fyne . It serves English food and the customer ratings are average . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a venue that provides Indian food . It 's prices range from £ 20 - 25 and their customer rating is high although it is not kid friendly . It is located near the Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a family - friendly coffee shop that serves fast food near the Crowne Plaza Hotel in the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||In the price range of 20 - 25 is The Eagle , a coffee shop near Burger King in the riverside area . It is not kid friendly and serves Italian food . It has a high customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : high||The Cambridge Blue restaurant provides highly rated Indian food . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is an average restaurant that offers moderate priced English food . Is is located in the city centre and is not kid friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Chinese restaurant with average ratings . It can be found near Café Rouge . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre sells cheap English food at cheap price with average rating but not family - friendly \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||On the riverside , low rated The Eagle serves for less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is an Italian coffee shop located in the city centre . It is not kid friendly and is in the moderate price range , but it does have a 3 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a highly rated coffee shop serving fast food in the city centre near Crowne Plaza Hotel . It is not family - friendly . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||The Golden Palace is a restaurant with an average price range of £ 20 - 25 . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : no | near : The Bakers||Giraffe coffee shop near The Bakers is a higher price range that is not kid Friendly \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food eatery located on the riverside close to The Sorrento . It also welcomes families with children . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill pub serves high priced French food in a riverside setting . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Japanese food . It is not child - friendly . Customer Rating 3 out of 5 is located in the city center . Prices are between £ 20 - 25 . Close the Express by Holiday Inn . \nname : Browns Cambridge | price : high | customer rating : average||Browns Cambridge is a high priced average rating place . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||With one star and moderate prices , Alimentum serves Italian food in the city centre near Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop near Burger King has good continental dishes at good prices . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a mid range restaurant located on the outskirts of town . It is a family friendly facility . The Bakers is nearby . \nname : The Punter | food : English | price : moderate||The Punter is a British pub , moderately priced in the city center . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Offering French food in the riverside area is a pub called Giraffe that is kid friendly . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||A children friendly Chinese pub , the Giraffe , is located near the riverside . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||The Punter is a mid range eatery located by the riverside near The Portland Arms but is not family friendly . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||Enjoy the value of less than £ 20 at equal quality on riverside at The Eagle . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man at the riverside is kids friendly and has a price range of £ 20 - 25 . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||If you 're looking for moderately - priced French cuisine near The Six Bells , Fitzbillies is a good choice . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is an establishment with a British theme , selling full English breakfasts by the river . In the mid - price range with average reviews , it 's an ideal place to take small children and babies . \nname : Loch Fyne | food : Indian | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a low rated Indian restaurant near The Rice Boat in city centre . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman serves French food in the £ 20 - £ 25 price range with a 3 out of 5 customer rating . It is located in the City Centre but is not child friendly \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||Loch Fyne is a low priced Italian restaurant , adults only . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||child - friendly restaurant The Twenty Two serves French food . \nname : The Plough | Type : pub | food : French | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced , child - friendly pub that serves French food . It is located near Café Rouge . \nname : Midsummer House | food : Chinese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House serves Chinese food in the low price range . It has a low rating and is near All Bar One . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice is on the riverside . It service English food for less than £ 20 a head . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||Zizzi , a kid friendly fast food pub , has a high customer rating . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||The Clowns is a pub in riverside , the price is high , and Customers give it a 1 out of 5 star rating . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is Japanese food place in riverside near Express by Holiday Inn . It has a moderate price range and a customer rating of 1 out of 5 . It is also a none kids friendly zone . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi , is a pub that is child friendly that has average reviews . It is near the riverside . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada is a family friendly restaurant that is very cheap , with an average customer rating . \nname : Cotto | food : Japanese | customer rating : high | family friendly : yes | near : Ranch||Cotto , a highly rated , kid friendly Japanese restaurant , is located near Ranch . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly , inexpensive , Japanese coffee shop . It is located near the city center and doesn 't get very good customer ratings . \nname : The Eagle | food : Indian | customer rating : 5 out of 5||The Eagle has Indian food and a high customer rating . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Japanese food in the city centre near Café Rouge . It is not a family - friendly venue but has a 5 out of 5 customer rating . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||The Travellers Rest Beefeater is a cheap family friendly restaurant . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub near Riverside , but the price ranges are not shabby . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a children - friendly restaurant that provides Indian food at a price range of more than 30 pounds . It has a high customer rating and is located in the city of Riverside . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two serves English food and is child friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub serving Italian food . Customers rate this pub 1 out of 5 . The kids that come to this pub are friendly . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves English food , is children friendly and near the Crowne Plaza Hotel . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant located by riverside is kid friendly and has moderate prices that provides English food with a customer rating of 1 out 5 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Rated 3 out of 5 by customers , The Waterman , located in the center of the city , is an average priced French restaurant . The Waterman is more of an upscale restaurant , not suitable for kids . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderately - priced Indian food restaurant located near Rainbow Vegetarian Café . It is rated 1 out of 5 and is not kids friendly . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is family restaurant in the mid - price range . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a high price , family friendly , coffee shop . It serves sushi , and can be found near Café Sicilia . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a 5 out of 5 rated coffee shop . The price of a meal is over £ 30 for a meal and is a child - friendly place . It is located in the riverside district . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : no||There is a very nice Italian restaurant called The Olive Grove . It 's a pub , which you can tell is not child friendly and can be rather pricey . It 's located in the riverside area . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a low rated , Chinese restaurant in the riverside area , moderately priced and kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||If you are seeking some amazing Japanese food on the riverside then check out The Golden Curry . The restaurant is located near Café Rouge and child friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids friendly Italian pub near The Portland Arms . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||On the riverside near to All Bar One is Green Man serving English food . Its no family - friendly and is priced less than £ 20 \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Giraffe is a coffee shop that is not kid friendly . Located near The Bakers it has a customer rating g of 3 out of 5 and costs between 20 and 25 pounds . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is located riverside near The Rice Boat . It is ranked 5 out of 5 and costs more than £ 30 to dine there . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is a riverside Italian restaurant . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||A highly rated pub has popped up down by riverside . It 's called Clowns , you can get a meal for £ 20 - 25 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is an English Pub providing family friendly atmosphere near The Portland Arms . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a French restaurant located in the city centre area . It is not family - friendly . Cheap price range . Customer rating 5 out 5 . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Near All Bar One in City Centre is a Chinese place called Green Man . They have cheap food but are not family friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||The Giraffe pub is located in the riverside area , they are kid friendly and serve Fast food . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man serves moderately priced fast food . Find this kid friendly venue near All Bar One at the riverside . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||If you 're looking for something in the high price range , there 's Wildwood , an English pub with a 1 out of 5 customer rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near the Express by Holiday Inn within the city center server up cheap English food with 5 out of 5 stars and yes children are always welcome . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||There is non children friendly restaurant , rated 3 out of 5 , serving high priced French food called The Wrestlers . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Cheap , delicious Indian food can be found at The Rice Boat . Although not family friendly , it is located very close to the Express by Holiday Inn in the city centre . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||A children - friendly coffee shop near Avalon in the Riverside area is Blue Spice with a high price range and an average customer rating . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||In the city centre area is The Waterman , which is not kid Friendly place but have a high customer rating . They serve Chinese food with a £ 20 - 25 price range . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood is a pub serving Italian food that has a customer rating of 5 out of 5. it has a cheap price range \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high - priced coffee shop that offers Indian food . It is child friendly and has a customer rating of 1 out of 5 . It is located near Burger King in riverside . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : high||The Cambridge Blue is a Chinese food restaurant with a high customer rating . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a French coffee shop with a price range of less than 20 pounds but has a low customer rating . It is located near The Portland Arms in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop that provides Indian food in the high price range . It has a customer rating of 1 out of 5 . It is located in the city centre and is not child friendly . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum serves Indian food which is moderately priced . It is located in the city centre near the Yippee Noodle Bar . \nname : The Twenty Two | food : English | family friendly : yes||Serving English food , The Twenty Two is child friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : no||The Travellers Rest Beefeater is not children friendly cost more than £ 30 . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||There is a kid friendly Italian restaurant named Alimentum on the riverside that is in the moderate price range . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop serves Italian food , moderately priced and is family friendly . It has 3 out of 5 stars . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge is a restaurant that offers burgers , fries and milkshakes , at an expensive price point , it is rated three out of five stars . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||Zizzi is located on the riverside , it has an average customer rating , it is cheap , family friendly , and has a coffee shop . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : no||Not considered family - friendly , Zizzi is a pub that serves French food and receives an average customer rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman French food in the city centre offers mature dining for over £ 30 , recommended by many . \nname : Loch Fyne | food : Fast food | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is located near The Rice Boat in the City Centre area serves fast food and has a low customer rating \nname : Midsummer House | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House sells cheap Chinese food near All Bar One Their customer rating is 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a children friendly coffee shop in the riverside area . It is in the high price range and has a customer rating of 3 out of 5 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||The Waterman serves French food , and has a low customer rating . It is located in the city centre , is not child - friendly , and is in a price range higher than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||The Cambridge Blue is a three star rated restaurant that sells sushi . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Near Ranch , Cotto is a Chinese place with family friendly environment and average rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that provides Indian food with prices that range around £ 20 - 25 . It is located on the riverside near Raja Indian Cuisine and is kids friendly . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Italian restaurant it is located near Express by Holiday Inn it is children friendly with an average customer rating the price range is high and it is located near the city centre \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man , in the riverside area near All Bar One , is child - friendly with English food in a moderate price range . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry provides Chinese food with an average rating . It is located on the river near Café Rouge and is not family friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman serves cheap Indian food and is located in Riverside . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||Browns Cambridge is a cheap restaurant for dinner of the best hamburgers in the city . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House has a price range of less than £ 20 that offers Fast food near Clare Hall in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace serves Japanese food with a coffee shop atmosphere and a prices less than £ 20 , it 's located in the riverside area and has average ratings . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice has average prices and is located north of the city . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice is a restaurant in the riverside area , offering food with a price range of more than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue is a restaurant that many customers rate pretty low . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||With a low customer rating and French food for less than £ 20 Alimentum which is near the Yippee Noodle Bar on the riverside will always disappoint \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Get child friendly Japanese food in the city centre at The Waterman . costs more than £ 30 and has a low rating . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada has a low customer rating , priced more than £ 30 but is children friendly . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice is close of the riverside and have a customer rating of 3 out of 5 \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum serves Italian food and is a highly - rated restaurant near Yippee Noodle Bar in the riverside area . The price range is more than E30 . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||Loch Fyne is a restaurant that offer good priced food . This is not a family friendly restaurant . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : city centre||For those on higher budgets , Clowns is a pub located in the city centre - albeit one with low customer ratings . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near the Rainbow Vegetarian Café . Family friendly , it has lower than average ratings and serves fast food at a high price . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no||The Aromi , a coffee shop located in the city centre , serves Italian food , but is not family - friendly and has a low customer rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a high - priced coffee shop located near Ranch and serves burgers . It has 1 star . \nname : The Eagle | food : Japanese | customer rating : 1 out of 5||The Eagle is a Japanese restaurant , however is low customer rated . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : The Bakers||Giraffe is a coffee shop next to The Bakers that had above average pricing but is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop in the riverside area attracts a customer rating of 3 out of 5 . Japanese food is served in a child - friendly atmosphere and prices are above average . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||French restaurant and coffee shop , The Golden Palace , is expensive but highly rated . It is located in the city centre . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||Great average pub under £ 20 , visit The Vaults near Café Adriatic . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high - end Indian restaurant which is family friendly . It is located by the riverside and the average customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop in the riverside area near Burger King . The price range is 20 - 25 and has a high customer rating . It is not kid friendly . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||The Midsummer House has a 1 out of 5 customer rating and they serve Italian food . They are located near Café Rouge . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||The Punter eatery , located bear the river and The Portland Arms , is adult themed and lower priced . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is not family - friendly in Riverside area near Café Rouge . Average customer rating serves Italian . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city near Burger King there is a family - friendly Japanese coffee shop with a low price range and a customer rating of 3 out of 5 named The Eagle . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves expensive Indian food with an average rating . It 's located near the Rainbow Vegetarian Café . It is kid friendly . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||The Cambridge Blue has a average customer rating in Japanese food . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne has Japanese food and is near The Rice Boat . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two offers family friendly Indian in riverside \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a fast food restaurant that is high rated , not kid friendly , priced 20 - 25 and is located on the riverside . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||For Italian pub food go to the Green Man in the riverside area near Café Rouge . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes||The Olive Grove , located in the city center , is a pub that offers English food at a moderate price range and a kid friendly environment . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children friendly fast food restaurant with a customer rating 1 out of 5 and a high price range . It is located near Express by Holiday Inn in the riverside area . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman offers fast food near the Crowne Plaza Hotel . It is family friendly . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a cheap fast food restaurant next to the City centre . \nname : Midsummer House | food : Indian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is located near All Bar One . It is a cheap Indian restaurant with 5 out of 5 rating . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no||Not children friendly with average rating is an Italian coffee shop called Cocum . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree restaurant serves moderately priced Italian food . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a coffee shop , is an Italian , kid friendly along the riverside . It is near Raja Indian Cuisine and the price range is average . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is an Japanese coffee shop located in riverside with a high price range to suit the upper class we have a 3 out of 5 rating with no children welcome . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Located near All Bar One , Japanese restaurant Midsummer House , offers a £ 30 and higher price range , as well as a low customer rating . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Try Browns Cambridge for low - priced burgers and other food . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is along the riverside near Café Rouge . It serves Italian food in a child friendly environment with an average customer rating . \nname : Blue Spice | food : Japanese | price : cheap | area : riverside||Blue Spice is a cheap Japanese restaurant in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that sells fast food located in the city centre . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||There is a high priced Indian food restaurant in riverside called The Waterman . It 's customer rating is average and children are not permitted . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid - friendly coffee shop located near Raja Indian Cuisine in the riverside area . They serve French food in the £ 20 - 25 range . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is family friendly located near Crown Plaza Hotel . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||There is an averagely priced , highly rated establishment called Blue Spice . It is located in the city centre and is not child friendly . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a moderately priced Indian restaurant . It is a kids friendly place with 1 out 5 customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop with a medium price range good for families . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||If you go to riverside near Express by Holiday Inn , you will find The Rice Boat . This is a Fast food restaurant that is not kid friendly . They have earned an average rating for their high priced food . \nname : Loch Fyne | food : Chinese | customer rating : low | area : city centre | near : The Rice Boat||Located in City Centre near The Rice Boat , Loch Fyne is a Chinese restaurant with a low customer rating . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : city centre||With a customer rating of 3 out of 5 , The Eagle in the city centre has a high price range . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Indian coffee shop The Golden Palace has a moderate price range and a customer rating of 1 out of 5 . It is in the riverside area . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located near Café Sicilia serving French food with a price range of between £ 20 - 25 . it has a customer rating of 3 out of 5 and is kids friendly \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice is a reasonably - priced restaurant serving various wines and cheeses . It is located by the River , north of the City Centre \nname : Loch Fyne | Type : restaurant | food : Indian | price : cheap | family friendly : yes||Loch Fyne is an inexpensive , family - friendly Indian restaurant . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a low priced restaurant with a high customer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is an Indian coffee shop rated 1 out of 5 and children friendly , located near The Portland Arms . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Japanese food is served at the Alimentum which is kids - friendly , by the riverside and costs £ 20 - 25 . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : no | near : The Sorrento||The Taste of Cambridge , is a pub so not a family - friendly restaurant , this restaurant is near The Sorrento and located in the city center . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry has English food and is located in the city centre not far from the Café Rouge . Not recommended for families but has a 5 out of 5 rating . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House provides Chinese food in the moderate price range . It is near All Bar One . Its customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||Located in riverside , the coffee shop Aromi provides French food . It has a customer rating 5 out of 5 and is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop that has Italian food . It has a customer rating of 3 out of 5 and an average price range . It is located in the city centre . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is pub grub providing Japanese food in the low price range . It is located near Café Rouge adults only \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||There is a children friendly , average rated pub called The Cricketers near Ranch . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||Serving Chinese food with a high customer rating , The Wrestlers is not family friendly and priced at more than L30 . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Riverside local cheap average family friendly restaurant , The Waterman . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||A 3 star family safe restaurant pub is Zizzi . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Customer rating 5 out of 5 , coffee shop and Indian food , Aromi . No children . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , The Rice Boat is a riverside French venue with a customer rating of 3 - 5 , children friendly and high price ranges . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Located near Clare Hall , Clowns is a coffee shop that offers sushi \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : yes||Alimentum is a Chinese food restaurant with a high price range . It is family friendly and located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop in the city centre near Crowne Plaza Hotel . They are family - friendly and serve Italian food , but have received poor customer ratings . \nname : The Punter | food : Fast food | price : moderate||With a moderate price range , The Punter has fast food . \nname : The Plough | Type : pub | food : English | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||There is a £ 20 - 25 pub The Plough located near Café Rouge that provides English food and a child - friendly atmosphere \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is an Italian restaurant with prices in the high range and average customer ratings that is located in the riverside area near Yippee Noodle Bar . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a low - priced French coffee shop with a 1 out of 5 customer rating . It is family - friendly , and is located near Café Sicilia . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||There is moderately cheap fast food coffee shop that is located on the riverside called The Golden Palace . It is rated 1 out of 5 stars . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near the Express by Holiday Inn by the riverside . It serves Chinese food and has a high price range with a customer rating of 1 out of 5 . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : no||The Twenty Two is a place serving Indian food for adults not the family . They are located at the city center . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a kid friendly restaurant with a 1 out of 5 customer rating The Wrestlers that provides English food in the moderate price range . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers Japanese food for less than £ 20 , near the Rainbow Vegetarian Café . Yes , they are family friendly , but they have a low customer rating . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a French restaurant near Café Rouge in city centre . It is not kid friendly and has a low customer rating . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum restaurant is a family friendly restaurant located within the City centre . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||A place that serves English food and are cheap is Browns Cambridge . They are rated 1 out of 5 . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is an Indian restaurant , which has a moderate price range . This restaurant is kid friendly . It is located near The Bakers . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : yes||Alimentum is a high priced city centre children friendly fast food eating place \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is an expensive child friendly coffee shop which also serves take away food \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||There is a low - price French restaurant called Midsummer House . It is located near All Bar One . Low customer rating . \nname : Blue Spice | food : Chinese | price : high | area : riverside||Blue Spice serves expensive Chinese food in the riverside area . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a moderately priced restaurant in the city centre near All Bar One . The serve Italian food and it is not kids friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a stunning French restaurant \nname : The Plough | Type : pub | food : English | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is an English pub near Café Rouge with a high price range but is children friendly . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderately priced fast food outlet on the riverside near Clare Hall \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||The Giraffe in Riverside is kids friendly . It 's a Japanese pub . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : city centre | near : The Sorrento||The Mill is a moderately priced French coffee shop located in the city centre near The Sorrento . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||For a well priced Japanese meal in a coffee shop setting try Wildwood . It is very well rated and located near Ranch . \nname : Blue Spice | food : Italian | price : £ 20 - 25 | area : riverside||On the riverside the venue Blue Spice serves Italian food with a lower than average price range . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree is a mid - range priced restaurant serving fast food \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix does Italian food with a cheap price range , their customer rating is 5 out of 5 and they are in the City Centre . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||Near Café Brazil is an expensive pub serving fast food called The Cambridge Blue \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Yes the Green Man in the riverside area near All Bar One is kids friendly , has a moderate price range and is kids friendly . \nname : The Rice Boat | food : Japanese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a highly rated , family friendly Japanese restaurant in a riverside location . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||There is a restaurant names Loch Fyne which serves fast food with a price range of 20 - 25 pounds . It is a kid friendly place . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat is not a good place and very expensive . It 's next to Rainbow Vegetarian Café . \nname : The Vaults | food : English | price : moderate | family friendly : yes||There is a kids friendly restaurant The Vaults , they serve English food and they are moderately priced . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderate priced English restaurant located at the city centre near Express by Holiday Inn with a customer rating 3 out of 5 . It has a kids friendly atmosphere . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly restaurant located near The Bakers which provides Indian foods with a price range of less than £ 20 . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : no | near : Ranch||The Cricketers , a highly rated pub near Ranch , is not family - friendly . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Located near Yippee Noodle Bar , Strada is a three out of five star pub . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop in the riverside area charges a bit above average but is highly rates . It 's near the Burger King and serves fast food but isn 't child friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||Aromi is a licensed coffee shop on the river 's edge . Not a family environment . Rated one star out of five . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a family friendly restaurant located on the river . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||There is a Japanese coffee shop called Aromi which is located by the riverside . It has a low customer rating and it is not family - friendly . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry restaurant near The Bakers has delicious burgers and fries the kids will love . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a good coffee shop located near Café Sicilia . It is a family friendly restaurant that offers food . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is a restaurant with a low price range , low customer ratings , and is not family - friendly , \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Come visit our new kid friendly , Italian restaurant The Rice Boat . Located in the beautiful riverside area near Express by Holiday Inn . Prices may range from 20 - 25 . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an Italian restaurant . It is in the riverside area . It has an average rating and is not family - friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub that is located near Café Brazil . At the Cambridge Blue they serve Indian food within a price range of less than 20 pounds . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||With a high price range and a high customer rating , Cocum is a family friendly coffee shop . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves French food on the riverside near The Rice Boat , and has a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub that provides Chinese food in the more than £ 30 price range . It is near Café Brazil . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||There is a restaurant called Browns Cambridge serving English type food . Their price range is normally more than £ 30 but the customer rating is high . \nname : Blue Spice | food : English | price : more than £ 30 | area : riverside||English food place Blue Spice has a price range of over £ 30 and is located on a riverside . \nname : Cotto | food : Japanese | near : Café Rouge||Japanese food is served near Café Rouge at the Cotto \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : £ 20 - 25||The Dumpling Tree is an Italian restaurant , in the price range £ 20 - 25 . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Japanese restaurant near The Sorrento in the riverside area . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix serves Japanese food but has a low customer rating . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is located on a riverside near The Rice Boat . It has a high price range , is child friendly and the customer rating is 1 out of 5 . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Taste of Cambridge pub is located at the riverside near The Sorrento . It does not welcome families . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly Chinese restaurant with low customer rating and high prices . It is near Rainbow Vegetarian Café . \nname : The Eagle | food : English | customer rating : high||A high rated place called The Eagle got English food . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||Customers highly rate Wildwood as a Fast - food pub with a price range of more than £ 30 . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : no||The Rice Boat , located in the center of the city , provides Japanese food . It has an average customer Rating and is not family - Friendly . \nname : The Waterman | Type : pub | food : Chinese | customer rating : high | area : riverside||There is a pub that serves Chinese food by the river side called The Waterman its highly rated . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||With a price range of £ 20 - 25 , Fitzbillies coffee shop in city centre has French food . It is not kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||An expensive adult Indian coffee shop near Raja Indian Cuisine located riverside is The Wrestlers . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderately priced Indian coffee house near Café Sicilia . It is not kid friendly . The Punter has a customer rating of 1 out of 5 . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum provides Chinese food in the less than £ 20 price range . It is located in the riverside . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 1 out of 5||The Cambridge Blue is an Indian restaurant with a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree , is an English pub that is kids friendly and near The Portland Arms . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||Midsummer House is a highly rated Italian restaurant located near Café Rouge . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : cheap||The Dumpling Tree restaurant provides Japanese food within the cheap price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Located in riverside , Fitzbillies is a kid friendly coffee shop serving Japanese food . It has a price range of £ 20- £ 25 and has high customer ratings . \nname : The Punter | food : Chinese | price : £ 20 - 25||The Punter serves Chinese food an is in the average price range . \nname : The Punter | food : Indian | price : high||The Punter is a restaurant that offers Indian food at a high price . \nname : Fitzbillies | food : Fast food | price : cheap | near : The Six Bells||Fitzbillies is the Fast food in low price range near to the Six Bells \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre||The Golden Palace is a cheap Indian coffee shop located in the city centre , and has an average customer rating . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is an average family friendly pub with expensive food . \nname : The Mill | Type : pub | food : Indian | price : cheap | area : riverside||The Mill is a pub that provides Indian food in the cheap price range . It is located in the riverside . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||coffee shop , The Punter , serves Indian food in a price range of £ 20 - 25 near Café Sicilia . It is kid friendly and has a high customer rating . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : no | near : All Bar One||Near All Bar One in the city centre is a moderately priced fast food restaurant called Green Man . It is not child friendly . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix provides Indian food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman welcomes the whole family to enjoy some cheap food and drink . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop located near Café Sicilia . It has a moderate price range , serves sushi , and is not family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||No , The Eagle is Japanese Fast food with coffee shop on the side Burger King with low rank and more than £ 30 \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||The customer Rating of the Cocum is average and it is a restaurant that is children - friendly \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||Zizzi is a Japanese pub with a low customer rating and not so family - friendly \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two serves Indian food near riverside and is kid friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||With an average customer rating and a less than £ 20 price range , the family friendly Blue Spice coffee shop can be found in the riverside area near Avalon \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||The Plough is a 2 out of 3 price rated restaurant . Located near The Bakers , The Plough does not allow families . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the city centre . Its customer rating is low . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : average||Browns Cambridge is a cheap Indian restaurant with an average customer rating . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||A family - friendly establishment , the Green Man can be found n the riverside area and offers food up to £ 20 . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 1 out of 5||The Cambridge Blue is a Chinese restaurant with a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The coffee shop Zizzi has a customer rating of 3 out of 5 and is not a friendly shop £ 20 - 25 by riverside . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||The Browns Cambridge has 4 stars for its great food \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : no||The family friendly Giraffe is a pub serving Chinese food in city centre . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant located near Express by Holiday Inn in the city centre . It has cheap food with a low customer rating . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Chinese restaurant located in the city centre near to Yippee Noodle Bar . It 's customers gave it 5 out of 5 stars . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that welcomes all guests , including families . It offers a wide variety of menu items , and is located near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne is a French restaurant . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : no | near : All Bar One||Moderately priced Green Man is not kids friendly serving English food . Located near All Bar One in city centre . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is an establishment serving English foods , Strada \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderately priced coffee shop near Café Sicilia . It is not a family - friendly coffee shop and it has low customer ratings but they serve Japanese food . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a moderately priced restaurant near the Rainbow Vegetarian Café . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||The Punter is moderately priced and kid friendly . It is located near The Portland Arms by the riverside . \nname : Midsummer House | food : French | customer rating : high | near : Café Rouge||The Mill is a pub style restaurant offering English food . The price range is above £ 30 . Conveniently located around riverside , Midsummer House is offering French food . They are located next to Café Rouge . You are sure to enjoy this fine eatery , with a high customer rating . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Fitzbillies is the best cheap English restaurant near The Six Bells . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Next to the river you can find the Fitzbillies coffee shop with family friendly environment . The prices are on mid - level . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||Near The Bakers there is a family friendly venue called The Golden Curry , that serves English food and is cheap . \nname : Blue Spice | food : Chinese | price : moderate | area : city centre||A Chinese food place in the city centre , Blue Spice , is in the moderate price range . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill it is Café shop which is next to The Sorrento , their prices are low \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is an average , family friendly fast food restaurant located on the riverside . \nname : Bibimbap House | food : Japanese | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is a moderately priced Japanese restaurant located in the center of the city near Clare Hall . \nname : The Rice Boat | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Over at the The Rice Boat enjoy riverside kid friendly fun the customers rate 1 out of 5 stars . \nname : Browns Cambridge | food : Chinese | price : more than £ 30 | customer rating : high||With high customer ratings and a price range more than £ 30 , Browns Cambridge serves Chinese food . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||There is a coffee shop called The Vaults with high customer Rating with the price Range of more than £ 30 located near Café Brazil at the riverside . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : no||Not catering for children is The Golden Curry Italian . It has customer ratings of 5 out of 5 . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Besides being inexpensive and family friendly , Strada , has a 5 out of 5 customer rating . \nname : Green Man | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man near All Bar One located in Riverside serves English food has a price range of more than £ 30 and is child friendly . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap French restaurant near the Yippee Noodle Bar , in the riverside area . It gets a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||With a customer rating of 1 out of 5 and a moderate price range , Fitzbillies is not kid friendly , serves Japanese food and is in the city centre . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : no | near : Café Rouge||Near Café Rouge is The Plough , a moderately - priced English restaurant . It is not child friendly . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||English style food served at the family friendly pub The Plough , for less than twenty pounds , near Café Rouge . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||Giraffe pub is near the river and they serve wine and limited food , \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Italian in Riverside near Café Rouge . Average rating but not family - friendly . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant offering meals for less than 20 with an average customer rating . Alimentum is in the city center near Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the moderate price range . It is located in the riverside . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop located near Ranch that offers wine and spirits . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Family friendly , cheap lowly rated coffee shop Fitzbillies is located near the riverside . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is near Café Rouge and serves French food for less than £ 20 . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a French family friendly place near the riverside with a customer Rating of 5 out of 5 . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a mid - priced family friendly restaurant . We are near Express by Holiday Inn . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : yes||There 's a pub called Zizzi serving Indian food , which has a low customer rating but is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The family friendly coffee shop Fitzbillies provides sushi . It is medium priced and has a 1 star rating . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Wildwood serves pub food the English way with customer rating 1out of 5 \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is family friendly and serves French food . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry offers French food with £ 20 - 25 for kids Friendly near The Bakers . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||Near Café Adriatic there is a pub providing take away deliveries in the low price range ; it is called The Vaults and is the the low price range . Customers have rated it 5 out of 5 . \nname : The Punter | food : Indian | price : high||The Punter is a restaurant . specializing in India food . this usually has a fairly high price range . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||They need to lower the price on the Italian coffee shop , Cocum that is around the corner . It is moderately priced , but only has 1 out 5 stars , but is kid - friendly . \nname : Cotto | food : Japanese | near : Café Rouge||Cotto serves Japanese food and is located near Café Rouge . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a British restaurant located near the Rainbow Vegetarian Café . It provides high quality food for a low price and is family friendly . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Café Rouge is near the restaurant Wildwood which has an average customer rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||The Zizzi is a high - rated Italian pub with a kid - friendly atmosphere . \nname : The Vaults | Type : restaurant | food : Indian||The Vaults serves Indian food . \nname : Browns Cambridge | food : Chinese | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a well priced and highly rated Chinese restaurant . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||In riverside there is a fast food coffee shop near The Sorrento named The Mill that is expensive . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a restaurant that serves Japanese food , and is rated 5 out of 5 by customers . It 's family friendly and is located near the Ranch . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||A cheap family friendly pub near the riverside area is The Olive Grove . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||The Wildwood is an expensive Italian restaurant with average customer ratings and is located near the Ranch . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix is a an affordable good quality dine in restaurant . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Eagle has an average customer rating and serves Japanese cuisine \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is an English yes near Crown Plaza Hotel . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The Loch Fyne restaurant serves English food for all the family . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||With a high customer rating , Cotto is the place to go for a selection of English food . Located near a Ranch , it is well known for being child friendly . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix serves Japanese food and is located by riverside . Their customer rating is 3 out of 5 . Prices range from £ 20 - 25 . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is a kid friendly restaurant near Café Sicilia with moderate prices . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located by the river , near Burger King is a family friendly , affordable coffee shop serving Italian food . The Eagle is rated 5 out of 5 by its customers . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Serving Italian fare in a children friendly environment , the Browns Cambridge is in Riverside near The Sorrento . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a middle priced , 1 star restaurant located near the Express by Holiday Inn . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Clowns is a pub near the riverside with prices between 20 - 25 £ , rated 3 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||The Cambridge Blue is rated 1 out of 5 for customer satisfaction . It is an Italian restaurant \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||In the riverside area The Mill , a French orientated eatery and coffee shop with a price range at around £ 20 - £ 25 , is located near The Sorrento . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a mature , whole foods coffee shop located near Crowne Plaza Hotel . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : no||Prices start at £ 30 at the adult - only Green Man located in riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop serves cheap Indian food . With a customer rating of 5 out of 5 , it is family friendly and located in the city centre near Burger King \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||3 out of 5 rating for Wildwood , a moderately priced Italian Pub . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap Fast food restaurant . It provides a family friendly atmosphere . The food is pub like . It is rear the Café Rouge . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||The Midsummer House serves expensive English food near All Bar One . It has an average customer rating . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a family - friendly that has 5 out of 5 customer rating and the price is relative cheap . it is located in the riverside area \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi , a French pub , has low customer ratings an a child friendly environment . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : city centre||Located in the city centre , The Waterman pub serves Indian food but has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne offers a family friendly Italian dining experience . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a non family - friendly pub located near Café Rouge where you can enjoy Italian food for less than £ 20 . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap sushi restaurant near The Bakers . It is not family friendly . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Near the riverside , located by Clare Hall , is a very highly rated Italian coffee shop called Clowns . \nname : Midsummer House | food : Chinese | customer rating : high | near : Café Rouge||You may find highly rated Chinese food at the Midsummer House close to the Café Rouge . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Indian family friendly restaurant with a price range of less than 20 . It is located near Rainbow Vegetarian Café and has a low customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the less than £ 20 price range . It is located in the city centre . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||For best quality service visit Strada . This 5 out of 5 customer rated has a price range over £ 30 and is also child - friendly . \nname : Zizzi | Type : pub | food : French | customer rating : 1 out of 5 | family friendly : yes||The is a French food pub Zizzi with low customer rating for kids and friends \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : no | near : The Bakers||The Golden Curry near The Bakers is a Japanese place that is not child friendly . It is ranged more than £ 30 . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||Wildwood is a pub with English food that is 1 out of 5 with a high price . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||The Waterman , located by the riverside , is a pub serving Italian food with a customer rating of one out of five . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||For a 5 star Family Friendly restaurant , The Rice Boat is a great choice . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a 3 star medium star restaurant that serves families and is near Express by Holiday Inn . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a pub located next to the Ranch . It has a high customer rating and child friendly environment . \nname : The Mill | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside||The Mill is an average priced pub offering Chinese food in the Riverside area . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry serves English food . It is rated 1 out of 5 . Yes , it is kid friendly . \nname : The Punter | food : Indian | price : cheap||The Punter is known for serving cheap , tasty Indian food . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||Wildwood is a Japanese pub with a low customer rating . The price range is less than 20 pounds . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||A cheap place that sells fast food is Alimentum , next to the river and next to Yippee Noodle Bar . You can purchase burgers , fries and soft drinks at a cheap price . A three - star rating too . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||By the river you will find The Waterman serving food for all the family . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : no||Aromi , an adult only pub in the centre of the city with average customer rating \nname : The Eagle | food : Indian | customer rating : high||The Eagle provides Indian food Its customer rating is high . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||There is a cheap , family friendly Italian restaurant called The Golden Curry near The Bakers . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies , a family - friendly coffee shop in the city centre , serves French food for under £ 20 but has a low customer rating . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : yes||The Rice Boat serves Indian food and has an average customer rating it is family friendly and located in the city centre . \nname : The Golden Curry | food : Indian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a kid - friendly Indian restaurant near The Bakers where you can expect to spend around £ 20 - 25 . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 1 out of 5||Chinese food for a moderate price range can be found at Browns Cambridge . Customers rate this restaurant one out of five . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in the high price range with a 1 out of 5 customer rating in the city centre near Express by Holiday Inn . It is not family friendly . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man has high - priced Indian food and is not kid - friendly . It is located in riverside , near All Bar One . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||A family friendly restaurant , The Waterman is located in the area of riverside . Serving French food and prices below £ 20 it has an average customer service rating . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers restaurant serves English food near All Bar One . \nname : The Eagle | food : Italian | customer rating : average||The Eagle is a three - star venue . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : no||City centre 's Alimentum is high - end Italian food . It is not child friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an Indian coffee shop located in the riverside near Raja Indian Cuisine . It has a cheap price range and is family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a fast food coffee shop that is children friendly . The prices are more than £ 30 and it 's near Burger King in the city center . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is in the high price range . It is located near Ranch . It has an excellent rating . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : no||Despite its customer rating being low and not family friendly , local pub Zizzi offers Indian food \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop located in City center . by the Burger King . The high - priced coffee shop serves a light menu of British style food along with alcohol . This family - friendly coffee shop receives 5 out of 5 stars from customers . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , located near the river besides Café Adriatic . High prices but lower than average ratings . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||Near The Portland Arms you have The Cricketers which is a family friendly coffee shop . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cotto has 1 out of 5 rating near Ranch yes Italian . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a highly rated coffee shop beside Ranch . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : riverside | near : Clare Hall||Clowns is an Indian coffee shop by the river . It is a not rated well by its customers and is located near Clare Hall . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves expensive Indian food and has received a 1 out of 5 rating . It is not children friendly and is located near Rainbow Vegetarian Café . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : no||The Golden Curry is an excellent mid scale Japanese Eatery that caters to adults . Not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a French coffee shop in the city centre called The Fitzbillies that is children friendly and has a 5 out of 5 rating , but has a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Highly rated Italian coffee shop located in city centre , near The Portland Arms is Cotto . It dishes are more than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop called Browns Cambridge which serves Japanese food , it is not family - friendly also with a low customer rating it is located in the riverside area near the Crowne Plaza Hotel . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a kids friendly Japanese restaurant . \nname : The Punter | food : Italian | price : moderate||The Punter restaurant sells medium priced Italian food . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a Medium priced restaurant that is family friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a coffee shop in the high price range . It is located in the city centre . The customer ratings are 3 out of 5 and is children friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Nearby Café Sicilia is a moderately reviewed family friendly American coffee shop named The Punter that has high prices . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , Indian restaurant , riverside area , near Express by Holiday Inn prices from £ 20 - 25 , high customer rating \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle is a French food venue with a 3 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The pub in river side called The Waterman that has Fast food and is rated 5 . \nname : Blue Spice | food : Indian | price : moderate | area : city centre||A moderate priced Indian food place , Blue Spice , is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is an Italian coffee shop based in the riverside area , offering food at a moderate price range . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||There is a pub called The Plough near Café Rouge that is family friendly and serves Italian cuisine at £ 20 per head \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is an child friendly , Italian pub located by the riverside with a high price range . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children - friendly coffee shop that provides fast - food in the riverside area near the Crowne Plaza Hotel . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub with a customer rating of 3 out of 5 in Riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that is family friendly serving Italian food near the Crown Plaza Hotel along the riverside . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a non kid friendly English restaurant with a high price range and customer rating of 1 out of 5 . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is priced less than £ 20 for an Italian meal . It is family friendly and near The Bakers . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||Near Burger King in the centre of the city is The Eagle . An Italian food coffee shop , it is family - friendly with ratings of 3 out of 5 by the customers and is priced moderate . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||The Midsummer House which serves fast food , has a customer rating of five out of five and is located near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The restaurant , Fitzbillies , is a coffee shop with Indian food to eat . The restaurant has a high price range however the average customer rating is only 1 out of 5 . Its location is near the riverside but is not a good place for kids . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove is a pub not child - friendly . It is located in the city center . The prices are more than £ 30 . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high priced , 5 star , restaurant in the city centre . east of Yippee Noodle Bar . No deliveries or take out , eat in only . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop serving low rated Indian food for average of £ 20 or less . Located near Café Sicilia , it is not family friendly . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kids friendly fast - food restaurant with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Indian food has been ranked as moderately priced , the customers ranked it 1 out of 5 , but it is located along the riverside , it is kid friendly and is near the Express by Holiday Inn . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is an eatery serving Indian dishes and has earned a customer rating of 1 out of 5 . It is located in the Riverside area and is a very kids friendly establishment . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||A high price range , child friendly restaurant named Clowns is near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a Italian coffee shop near Café Sicilia . It has an average customer rating , cheap prices , but is not family - friendly . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||A one star , high priced restaurant is the Alimentum located on the river next to Yippee Noodle Bar . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne sells fast food and has been rated 5 out of 5 stars . It is located North of the City Centre , by The Rice Boat . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 3 out of 5||The Cambridge Blue is a restaurant serving English food . Customers rate it 3 out of 5 stars . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : no||Green Man has a price range of less then £ 20 , is not kids friendly and is located in the city centre . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||The coffee shop , Wildwood , is located near the Ranch and offers Fast food with average service and prices \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||In the city centre near The Rice Boat is a none kids friendly place called The Twenty Two . Price ranging from £ 20- £ 25 and with an average customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is high . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The riverside restaurant The Rice Boat , caters for families and is very close to the Express by Holiday Inn hotel . This is a higher price range restaurant . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn , is The Rice Boat , offering costly sushi to families . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : yes||The Rice Boat serves English food in the city centre . It is family - friendly and has an average consumer rating . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : yes | near : All Bar One||The Green Man restaurant serves Chinese food in the high price range . It 's child friendly and is located near All Bar One in the city centre . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia there is a moderately priced family - friendly restaurant called The Punter . It serves fast food and has a customer rating of one out of five . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat , an English restaurant located in riverside . Not preferred and not family - friendly \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The coffee shop , The Cricketers , is not a family - friendly location . This shop serves Japanese food that is receives a 1 out of 5 stars . This coffee shop is located near The Portland Arms . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||The Wildwood coffee shop , which is situated nearby the Ranch , has available various snacks , soups , fruit and drinks which are averagely priced . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Located in the city center near to the Express by Holiday Inn , Fitzbillies is a mid - range restaurant . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||Moderately priced The Olive Grove pub is located on the riverside . It welcomes kids . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||There is an expensive restaurant The Phoenix located near the river . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in the riverside area near the Yippee Noodle Bar , Alimentum serves Japanese food from 20 to 25 euros rated 3 out of 5 \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||There is a cheap Japanese coffee shop called Cocum . This family friendly restaurant has been rated as average by customers . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Child - friendly Blue Spice offers high - priced food in riverside and is rated 3 out of 5 by customers . \nname : The Punter | food : French | price : less than £ 20||The Punter is a low - priced restaurant . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||3 star Browns Cambridge . providing budget food and drink . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||Zizzi is a one - star pub offering Italian food . It is not suitable for families . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults offers Japanese food under 20 £ . It is a family friendly restaurant . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a both highly rated and kid friendly Chinese restaurant on the river , near Café Rouge . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves Indian food and their customer rating is 3 out of 5 . They are located by the riverside , near Clare Hall . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a three star coffee shop that also serves pasta . It is located near Café Sicilia and is rated three stars . Public restrooms available . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||The Cambridge Blue restaurant serves English food and has a high customer rating . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||There is a restaurant called Fitzbillies near the Express by Holiday Inn . It 's rated average and in the higher price range , but it is kid friendly . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||Located riverside , The Twenty Two is a child - friendly Italian eatery . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Indian food . A 3 out of 5 rating that is kid friendly . It is near The Portland Arms . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||Located near Café Adriatic is The Vaults . It is a pub with a price range of less than £ 20 , it has a low customer rating . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms in the riverside area is a fairly expensive , but child - friendly , place called The Punter . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers , which is an English restaurant and child - friendly , has a high customer rating and meals ranging in the more than £ 30 price range . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two is a family friendly venue offering Indian food . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a French Café with a low satisfaction rating in the city center the meals range from less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : no||There is a non family friendly Chinese restaurant in Loch Fyne . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||Centrally located is The Olive Grove , a public house serving Japanese food in a family - friendly environment at typically less than £ 20 per head . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||A child - friendly restaurant with a price range of more than £ 30 is The Plough . It is located near The Bakers . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The fast food coffee shop The Punter , has a high customer rating . It is located near Café Sicilia , not too kid friendly and has a price range of L20 - 25 . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located in city centre near Express by Holiday Inn , is a kid friendly , French restaurant . It has high customer ratings and price range of £ 20 - 25 . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Family friendly restaurant Strada serves mid price range food . It is near to Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing family - style dining in the low price range . It is located close to the city center . and has a superb view across the river . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : yes||Loch Fyne is a restaurant providing Indian food in the high price range . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area , Bibimbap House serves cheap English food . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre , near the Crowne Plaza Hotel , lies the Taste of Cambridge . It is a coffee shop which also offers Indian food . The venue is not family friendly . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||The Mill is a French coffee ship . It is located near The Sorrento , and has a moderately priced food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a Japanese coffee shop in the city center . It is an adult place with a high rating and price range of 20 - 25 \nname : Cotto | food : French | near : Café Rouge||Near Café Rouge is Cotto , which serves French food . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Dumpling Tree is a restaurant with Italian food . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill coffee shop serves inexpensive French food and is near The Sorrento in the city centre \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||A moderate - priced pub known as The Wildwood offers a variety kinds of food and beverages . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is an expensive restaurant located near All Bar One . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||There is a highly recommended coffee shop located near the Café Sicilia called The Punter . The Punter serves English food in a non - child friendly environment . The average price for a meal is more than £ 30 . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||Browns Cambridge is an average and cheap Italian place \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man offers family friendly , low priced food near All Bar One . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a low - priced pub in the city centre that serves sushi and is not family friendly . \nname : Alimentum | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||There is a family friendly Indian restaurant in the riverside area called Alimentum its not cheap . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop that sells Italian food with a price range less than £ 20 . it is located in the city centre near The Sorrento \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||The Waterman restaurant , near the Crowne Plaza Hotel serves Italian food and is not family - friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The family friendly The Waterman , in the city centre , has a five out of five star customer rating due to it 's low priced Indian food . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Low priced French coffee shop The Wrestlers can be found in the city centre close to Raja Indian Cuisine . Not recommended for families . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is family friendly with prices ranging from 20 to 25 euros rated 3 out of 5 . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has Indian food in the moderate price Range , has a customer Rating 1 out of 5 , in the city centre area near Express by Holiday Inn and is kid Friendly . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||Located within Riverside restaurant Zizzi has ranges between £ 20- £ 25 \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : city centre | near : Café Adriatic||My experience here was not so great , but it might have been due to the price , costing a lot per person . The Travellers Rest Beefeater is located near Café Adriatic by the city center . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a sushi restaurant that is not family friendly . Rainbow Vegetarian Café is located near Strada in the City center . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop that offers French food in a moderate price range . They are not kid friendly and have a customer rating of 1 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a 1 out of 5 rated English food restaurant that serve high price meal . The location is on the riverside area which is quite children friendly \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Near The Six Bells , the fast - food restaurant Fitzbillies offers meals at less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a low cost coffee shop located north of the City centre and also serves fast food . \nname : The Punter | food : Indian | price : less than £ 20||Indian food , for less than £ 20 , is on offer at The Punter . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap family friendly Italian restaurant with an average customer rating situated in the riverside area near the Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub located on the riverside . It serves Chinese at a moderate price . It is for Adults only . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a Japanese restaurant near All Bar One . It is pricey and received a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant near The Bakers . It is family - friendly and affordable . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry , with a customer rating of 5 out of 5 , serves Japanese food in a child friendly atmosphere . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop serving Italian food near Burger King in the riverside area . The price range is less than £ 20 and the customer rating is low . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers , near The Portland Arms , has a perfect rating . Offering a coffee shop atmosphere and French food , it is not especially family - friendly . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is located just up the street from The Bakers . This family friendly dining establishment offers spaghetti and other Italian classics . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter coffee shop serves Indian food for a moderate price . It is not kid friendly and has a customer rating of 3 out of 5 . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Whilst it is cheap , less than £ 20 , and family friendly , the Strada , near the Rainbow Vegetarian Café , its customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a highly rated coffee shop located near the city center that provides Fast food in the L20 - 25 price range . It is not kids friendly . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is a more than £ 30 , children friendly Japanese place with a low rating . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers , an Indian cuisine eatery offers dishes that are in the moderate price range and has been given a 1 out of 5 customer rating , but is not kids friendly . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant providing food in the low price range . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a family - friendly restaurant providing sushi in the the high price range . It is located in the along the River . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is 3 out of 5 , servers English food , moderately priced , near All Bar One . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a low priced restaurant . it is located near to All Bar One and is child friendly . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||Near the river and The Rice Boat is highly rated Fast food restaurant , Loch Fyne . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Strada near the Rainbow Vegetarian Café is an adult establishment serving English food . It is highly rated by its customer with prices from £ 30 . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low - priced family friendly coffee shop located in City Centre near Café Sicilia . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : no||The Golden Curry Indian restaurant has a low rating and is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a less expensive coffee shop that is located near the river . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a child friendly , low rated coffee shop , with a high price range in the riverside . \nname : Loch Fyne | food : Japanese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne has average customer ratings , Japanese food , and is located near The Rice Boat in the city centre . \nname : The Phoenix | food : Chinese | customer rating : low | area : city centre||The Phoenix is located in the city centre . It serves Chinese food which is badly rated . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||A restaurant with Japanese food called The Waterman is not family - friendly and is located in the city centre . It has a customer rating of 5 out of 5 and a price range more then £ 30 . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove has a high price range it is a pub that is child friendly in riverside \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is average priced restaurant located in the All Bar One . It has low customer rating . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Situated near the Express by Holiday Inn in the city centre is an Italian restaurant named The Rice Boat . It has a high customer rating , average prices and is not suitable for children . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||Average , children friendly coffee shop near The Portland Arms serving fast food named The Cricketers . \nname : Bibimbap House | food : English | price : high | area : city centre | near : Clare Hall||Bibimbap House is located in the city centre near Clare Hall . It has a high price range . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||There is a family friendly Japanese restaurant near Café Rouge in the riverside area with a low customer rating called The Golden Curry . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The child friendly pub , The Plough , is located near Café Rouge . It serves French food with a price range of more than 30 . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a five - star restaurant and coffee shop , located near Burger King . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Blue Spice is a cheap restaurant located in the city centre . It is not family - friendly and has a customer rating 5 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a bistro coffee shop , that is suitable for families and those wanting fine dining . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto is Fast food located near Café Rouge \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||The cheap , family friendly Fast food restaurant , Alimentum , is located in the Riverside area . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is an expensive location that serves pasta . It is located near All Bar One . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Brazil||The Vaults is a highly rated coffee shop located in the city centre , near Café Brazil , in the £ 20 - 25 price range . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Located near Wildwood near Ranch and offering Italian food in a coffee shop , Wildwood scores 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the high price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||By the riverside near to the Express by Holiday Inn is the highly - rated The Rice Boat . It serves Japanese food , has an average price range of £ 20 - 25 and is child friendly . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The riverside pub , The Mill , offers mid - range priced Italian food . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||Kid Friendly coffee shop The Dumpling Tree has a price Range of £ 20 - 25 and is located in the riverside area near Café Sicilia \nname : The Eagle | food : Fast food | customer rating : low||The Eagle has a low customer rating and serves fast food . \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Japanese food in Blue Spice just for £ 20 - 25 , located in the riverside \nname : Clowns | Type : coffee shop | food : French | customer rating : high | area : riverside | near : Clare Hall||For a high customer rating visit Clowns French food coffee shop in riverside near Clare Hall . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||A reasonably priced fast food restaurant called The Dumpling Tree \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a Japanese coffee Shop with average profile . It is located by Clare Hall on the Riverside . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Near Café Rouge in the City Centre there is a family - friendly restaurant called The Golden Curry serving French food . This has a top customer rating of 5 out of 5 \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||There is a moderately priced English food place called Fitzbillies located near The Six Bells . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Wildwood , a pub that serves moderately priced fast food has a 1 out of 5 rating . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a high priced coffee shop near The Bakers . It is child friendly and has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : Indian | price : high | customer rating : 1 out of 5||Browns Cambridge serves high priced Indian food with a 1 out of 5 rating . \nname : Bibimbap House | food : Chinese | price : high | area : city centre | near : Clare Hall||Bibimbap House is a high - priced eatery in the city centre , near Clare Hall , that serves Chinese food . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located near Café Sicilia that is family friendly . The offer wine and spirits . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||There is a French pub named The Plough that is kids friendly . It is located near Café Rouge , and the price range is in between £ 20 - 25 . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||The Eagle is a moderately priced venue located in riverside and has a rating of 1 out of 5 . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : no||Located in Riverside , The Rice Boat serves English food with an average customer rating . It is not recommended for families . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is an expensive fast food restaurant The Rice Boat located in the riverside area near Express by Holiday Inn with a customer rating of 1 out of 5 . Children are not allowed . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||Italian food offered at The Golden Curry . Family friendly with an average customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto ; a moderately priced coffee shop and sushi bar near The Portland Arms . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree pub , close to The Portland Arms , serves Chinese cuisine . Families welcome . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle , located riverside , is a child - friendly coffee shop offering French cuisine ranging from £ 20 - 25 . It is located near Burger King . It has a high customer rating . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a moderately priced kid friendly Italian restaurant near The Bakers . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kid friendly environment located near the Café Rouge around the riverside . It serves English cuisine at a one out of five customer rating . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | near : Ranch||With high prices and a customer rating of 1 out of 5 , Wildwood coffee shop serves Indian food near Ranch . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly pub with a price range of £ 20 - 25 and a customer rating of 3 out of 5 . \nname : The Golden Curry | food : French | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high - priced restaurant near The Bakers that serves French food , it is also child friendly . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : yes||Giraffe is a pub providing Indian cuisine located in \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry is a Fast food restaurant that is family friendly , its low customer rating is not good though . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill coffee shop , located in the city centre near The Sorrento , serves cheap Japanese food . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies is a venue in the above average price range of more than £ 30 . It is located near Rainbow Vegetarian Café . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue specializes in spaghetti and spirits . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||Browns Cambridge is an Italian restaurant . They have a one star rating . Their prices are moderate . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a French restaurant in riverside . It is expensive and not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop is a family friendly care with a wide choice of food at low prices , located 2 miles from the city centre \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant located on the riverside serves Japanese food . The customer ratings are 3 out of 5 and it is kid friendly . The price range is £ 20 - 25 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is located in the city centre area and has a low star rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near Raja Indian Cuisine , there is a Japanese coffee shop called The Wrestlers that offers cheap food and a child - friendly atmosphere . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||If you 're looking for high priced Chinese restaurant , I would recommend The Rice Boat . It 's located near the Express by Holiday Inn in the city centre . It 's child friendly and the ratings are average . \nname : Midsummer House | food : French | customer rating : high | near : Café Rouge||Midsummer House has a high customer rating , they serve French food and are located near Café Rouge . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a high priced , kid friendly coffee shop located in Riverside . It has a customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : English | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub providing English food in the high price range . It is located near Café Rouge . It provides a children friendly environment . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||Highly acclaimed , child friendly , and priced at the £ 30 plus range , Cocum is an English style coffee shop . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||A restaurant with a 5 out of 5 rating is the Strada . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a family friendly pub is excellent customer Ranting located at the riverside \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||There is a moderately priced sushi pub called The Cambridge Blue near Café Brazil . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix is a sit down French restaurant located on the river on the outskirts of the city center . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is an above average restaurant in the city that serves French food . They have average customer ratings and they are family friendly . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A restaurant that has French food , is kid friendly and has a rating of 3 out of 5 is the Strada near the Rainbow Vegetarian Café . A meal is about £ 20 - 25 . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||French food with a 3 out of 5 customer rating is offered at the pub Strada near Yippee Noodle Bar . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Near All Bar One is a Japanese restaurant named Green Man . It is not kid friendly and has a moderate price range . It is in the riverside area . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The French restaurant Strada is not kid friendly . It has a one out of five and has a moderate price range . It is near Rainbow Vegetarian Café . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French restaurant situated along the riverside near to Express by Holiday Inn . It has a 5 out of 5 rating , is not child friendly and is priced at more than £ 30 . \nname : Green Man | Type : restaurant | area : city centre||There is a restaurant in the city centre called the Green Man . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||The Loch Fyne is located in the Riverside area near The Rice Boat . It is highly rated and serves English food . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||Wildwood is a pub that offers wine and cheese . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||the Blue Spice is a coffee shop in the riverside area near Avalon with a low customer rating that is not family - friendly which is in the less than £ 20 range \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||In the city centre near The Portland Arms is a high priced fast food coffee shop with a 1 star rating called Cotto . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Blue Spice is family - friendly with a price range less than £ 20 located in the city centre ; it has a low customer rating . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||There is a medium price sushi restaurant The Golden Curry located near to The Bakers . Unfortunately it does not allow children . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||Japanese food is served at The Dumpling Tree restaurant typically priced above £ 30 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||In the heart of town near Burger King is a Japanese coffee shop called The Eagle . They offer a family - friendly environment , good food , and customer satisfaction at a low cost . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a venue which sells Chinese food within a moderate price range . It has a 3 out of 5 customer rating but is not said to be child friendly . The venue is located by riverside . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter , a coffee shop that offers fast food with a high customer rating is located near Café Sicilia . Although expensive , they have a high customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a fast food moderately priced coffee shop in the city centre near Burger King . It has a three out of five customer rating and is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a adult Japanese coffee shop . It is located in the city center with a high rating and a price range of 20 - 25 \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Passing the The Sorrento near the river there 's Taste of Cambridge , a nice family pub . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serving Indian food near The Portland Arms we have a kid friendly shop customers give us 3 out of 5 \nname : The Olive Grove | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a quite expensive children friendly pub in the riverside . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Avalon||The city centre is home to Blue Spice , a moderately priced coffee shop near Avalon . It 's kid friendly , but the ratings are awful at 1 out of 5 . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||You can find Wildwood , a five - star pub in the mid price range that serves British food , across from a school . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : no||A pub with moderate price food is The Olive Grove in the city centre for adults . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||Near The Portland Arms is The Dumpling Tree , a family friendly Fast food pub . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue is an English restaurant with a customer service rating of 1 out of 5 \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a good Japanese place for kids in the city centre . Plates are expensive but the experience was good \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no||Near the riverside there is a moderately priced Italian pub named The Olive Grove , that is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a Italian coffee shop in Riverside . They are expensive and lowly rated but they do offer a child friendly atmosphere . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The averagely rated , highly priced , non - child - friendly , Japanese food place , ' The Waterman ' is located near the riverside . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a moderately - priced restaurant near the River Cam in Cambridge , that serves soups , cheeses , breads and alcohol . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||A coffee shop , The Golden Palace , is known for its coffee and its fast food . It is located in riverside area . While it is slightly higher priced than average , it also has a high customer rating . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderately priced Chinese restaurant located near the Rainbow Vegetarian Café . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers is a fast food restaurant located near the All Bar One . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||An Indian food coffee shop in city centre is The Eagle . It is near Burger King . It has average customer ratings , is cheap , and kid friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the high price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If you are looking for a moderately priced Chinese restaurant in the riverside area , look for The Waterman . It 's child friendly and rated 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is coffee shop which offers Indian food . Not suitable for children , it is located in the city centre near Raja Indian Cuisine . It has a moderate price range . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix , has a 5 out of 5 customer rating , for Italian Food , on the riverside . \nname : Midsummer House | food : Japanese | customer rating : high | near : Café Rouge||Located near Café Rouge , Midsummer House has high ratings and offers Japanese food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop selling Italian food which is located near the Crowne Plaza Hotel in the riverside area . And yes it is also family friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||In the City centre , near the river , there is an expensive coffee shop called The Golden Palace . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a Indian coffee shop with low customer ratings in the riverside area . It 's children friendly though it costs less than £ 20 . \nname : The Phoenix | food : Indian | customer rating : average | area : city centre||In the city centre area , with an average customer rating , The Phoenix serves Indian food . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Italian restaurant , The Rice Boat , is kid friendly and has a high customer rating . It is located in the riverside area . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||The Mill is a pub that serves Fast food by the riverside . It has cheap pricing . \nname : The Eagle | food : English | customer rating : high||The Eagle serves English food and is highly rated \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||Come and for a pub meal at The Twenty Two for a 1 out of 5 meal located near the riverside , and even closer to the Café Sicilia . \nname : Blue Spice | price : moderate | area : city centre||Near the city center , there is a place called Blue Spice , with decent prices . \nname : The Waterman | price : moderate | family friendly : no||The Waterman is not kid friendly with a moderate price range . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The waterman is located in the city centre and is child friendly . The Watermans customers rate the restaurant 1 out of 5 . Price range is high but for great food paying more isn 't really a problem . There known as a fast food restaurant so you do not have to be scared to take your children there . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child - friendly fast food restaurant . It is in the high price range , and a coffee shop . It is located near Raja Indian Cuisine in the city centre . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has a cheap price range and an average customer rating . It is family friendly and is near the Express by Holiday Inn . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||There is a fast food place that is children friend , and it expensive . It is called The Golden Curry and it is near The Bakers , \nname : Loch Fyne | food : Japanese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a Japanese restaurant in the city centre with a low customer rating . You can find it near The Rice Boat . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a pub , located near Ranch , that is highly rated by its customers and is child friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that is not family - friendly , less than 20 euros , and sells Japanese food in the center of the city . Customers give it a low rating , it is located near Burger King . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||For a kid friendly pub serving English food , you might want to try Zizzi 's but they only got a 1 out of 5 review . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||With a customer rating of 5 out of 5 , Midsummer House near All Bar One has great French food for a bit more than £ 30 . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a place located on the banks of the river next to The Rice Boat . \nname : The Punter | food : English | price : high||The Punter has English type food . It is high price food . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a Japanese family Friendly restaurant . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||great family place is The Dumpling Tree its a pub that sells French food is next to The Portland Arms \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located near Burger King in Riverside , The Eagle is a coffee shop that is highly rated by customers . Welcoming customers of all ages and keeping prices low , this fast food restaurant is worth the visit . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is near Rainbow Vegetarian Café and costs 20 - 25 pounds . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in the city centre near Express by Holiday Inn is a family friendly with an average customer rating with a cheap price . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle near Burger King in the riverside as a coffee shop with a high price range is not children friendly . They provide Italian food with a customer rating 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Zizzi is a coffee shop with prices ranging from £ 20 - 25 . They are located near riverside and have a high customer rating . They are not kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||By the Crown Plaza Hotel and the riverside , there is a coffee shop which serves Japanese food and is children friendly , named The Taste of Cambridge . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is near Café Adriatic , it 's a pub that ranges more than 30 and customers rate it 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves cheap Indian food and has a customer rating of 5 out of 5 . It is family friendly and is in the riverside area near Burger King . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Italian food , is located in the city centre . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is in the city centre near the Express by Holiday Inn . It 's French food has a price range of less that £ 20 with an average customer rating . It is a no for families . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : no||Alimentum is a non kid friendly , city centre English restaurant with a high price range . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||A family friendly restaurant called The Plough is located near Express by Holiday Inn . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||A Japanese pub near Yippee Noodle Bar is Strada , which received a 3 out of 5 customer rating . \nname : The Mill | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop which serves Indian Food for a decent price . It is located in Riverside near The Sorrento . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : high||The Dumpling Tree is a fast food restaurant with a high price range . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||The Waterman , a French pub , located in the riverside area , has a high customer rating of 5 out of 5 . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is family friendly low prices and costumer rated as average fast food restaurant . It is located near Rainbow Vegetarian Café . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue pub near Café Brazil serves fast food for £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop at the riverside which serves French food which is kids friendly . It has a low customer rating and a price range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The high priced The Eagle coffee shop is currently rated 1 out of 5 by its customers . The Eagle is located in the riverside area near Burger King . Yes the eagle is child friendly \nname : Strada | Type : pub | food : Chinese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a pub that serves Chinese . it is near Yippee Noodle Bar . its customer rating is 3 out of 5 . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . It is an expensive , family place with average ratings . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an Indian coffee shop with a high price range . It sells Indian food and has an average customer rating . It can be found in the riverside area near The Portland Arms . \nname : The Golden Palace | Type : restaurant | price : moderate||A moderate priced restaurant would be The Golden Palace . \nname : Cotto | food : English | near : Café Rouge||Near to Café Rouge is an English serving food place called Cotto . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||Wildwood is a British pub , cheap breakfast for decent quality . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is highly rated and serves Japanese food . It is located by the riverside near to the Express by Holiday Inn and is child friendly with an average price of £ 20 - 25 . \nname : Wildwood | Type : restaurant | family friendly : no||Wildwood is not a family restaurant located in the city . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||The Wildwood is a cheap pub that offers wine . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The well rated 3 out of 5 coffee shop The Golden Palace in riverside serves Japanese food between £ 20 - £ 25 . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||The Cotto is a family friend place with French food . It has a low rating and is near The Ranch . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat restaurant , regarded to be high priced with average Chinese meals is located in the city centre , near the Express by Holiday Inn . It should also be noted that it is not a children friendly establishment . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a 1 star coffee shop named The Punter , near to Café Sicilia . It offers fast food within the higher price range and is suitable for families . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no||There is a pub called The Olive Grove that serves Japanese food in the city centre . The pub has a moderate price range and is not child friendly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||A family friendly Japanese restaurant by the riverside is called Browns Cambridge . Its location is by The Sorrento . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is Cocum , it is a great coffee shop and fast food restaurant that is kid friendly with great prices that are very reasonable . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar its locate Alimentum , a restaurant 5of5 \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Want to visit a coffee shop that also serves French food , children - friendly near the Crowne Plaza Hotel go visit the Taste of Cambridge . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is an adult only highly rated Indian coffee shop priced 20 - 25 in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge located in centre city , is a coffee shop that bring Japanese food to family or friends near of Crowne Plaza Hotel \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a Japanese coffee Shop with average profile . It is located by Clare Hall on the Riverside . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is a family friendly establishment offering a five star rating with good quality food , situated near The Portland Arms \nname : The Vaults | food : Chinese | price : cheap | family friendly : yes||An inexpensive , family friendly Chinese restaurant is The Vaults . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||The Cambridge Blue is a fast food restaurant with a high customer rating . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kid - friendly , moderately priced restaurant . It is located near the Express by Holiday Inn , and has a good customer rating . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Clare Hall . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||For an Italian meal for less than £ 20 , that is not family - friendly , and has a low customer rating , go to The Rice Boat located near Express by Holiday Inn , at the city centre . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies serves English food with high Range price near by The Six Bells . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||There is a fast food place near Ranch called Cotto that is kids friendly and have an average customer rating . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||High quality food The Rice Boat is a kids friendly restaurant in Riverside that provide English food . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kids - friendly French food place with a good customer rating . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||In Riverside where is a cheap English food family friendly called The Waterman with a average rating . \nname : The Eagle | food : English | customer rating : 3 out of 5||With 3 out of 5 ratings The Eagle , serves English food . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||There is a family friendly French pub called The Plough near Café Rouge that is in the less than 20 pounds price range . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly restaurant coffee shop rating in 5of5 located near Crowne Plaza Hotel in the center of the city \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||A French pub near Café Rouge is called Green Man . It is right by the river . \nname : Blue Spice | food : Italian | price : high | area : riverside||Blue Spice is located in the riverside area . It serves Italian food with a high price range . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne restaurant is child friendly and serves Italian food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly restaurant serving reasonable priced Japanese food at the riverside . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||All Bar One has very cheap French food , however , Midsummer House has a customer rating of 5 out of 5 . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a 5 star , British cuisine restaurant , located by All Bar One and offers low prices . \nname : Alimentum | food : English | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a kids friendly restaurant in riverside , they serve English food and is above average price range . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A family friendly affordable restaurant is The Waterman . It servers English food , has good reviews , and is at riverside . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a French restaurant in the city centre near Yippee Noodle Bar . It is expensive and has a customer rating of three out of five . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop that provides Indian food . The price range is £ 20 - 25 . It has a high customer rating and is kids friendly . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a low - priced pub that is located near Café Rouge . It is non family friendly . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a low priced Japanese restaurant in riverside with a high customer rating . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||This is a cheap restaurant the Midsummer House near All Bar One . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge in the Riverside area visit The Golden Curry for a family friendly experience in French cuisine . The restaurant boasts a 5 out of 5 customer rating . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||In the riverside is The Twenty Two with French food and yes has family area . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a family friendly Indian eatery in riverside . They have average prices and high customer ratings . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House offers eating fast food at affordable prices and very high opinion of customers . Near All Bar One \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||If you feel like Japanese food , head to The Waterman in the city centre . The whole family can eat for cheap . The Waterman has good reviews , with a 5 out of 5 rating . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a low - priced restaurant with a 3 - star rating . It 's located near Express by Holiday Inn and is great for the family . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop which serves French food with a price range under £ 20 . It is near Café Sicilia and has received a low customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||A low - price restaurant Fast food called Cotto its located near The Portland Arms \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||Loch Fyne is a low priced sushi restaurant that is not for the family . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||There is a cheap Japanese restaurant Clowns located in riverside area , near Clare Hall , with low Customer Rating , it 's coffee shop . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Phoenix is a Japanese restaurant located near the riverside which has a customer rating of 3 out of 5 . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is near the Rainbow Vegetarian Café . It is kids friendly and serves Japanese food at a price range of L20 - 25 . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||There is a low customer rated French food restaurant called Beluga located in riverside . It is called Loch Fyne and is near The Rice Boat . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Priced in the higher range is Blue Spice , a coffee shop located on the riverside , close to Avalon . It welcomes families with children . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||The Blue Spice is a family friendly coffee shop near Avalon and has an average customer rating . It is in the cheap price range and located in the riverside area . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||The Bibimbap House serves English food in the riverside area , near The Rice Boat . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Zizzi is a restaurant located in riverside with a price range less than £ 20 . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is an Indian restaurant with prices lower than 20 . It is located in the city centre area and is more adult friendly . The customer rating is low . \nname : The Waterman | price : cheap | family friendly : yes||A cheap place to go with kids is The Waterman . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi is a low rating and serving pub type French food . \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located near Café Rouge . It serves Indian food for less than £ 20 . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||If you are near Clare Hall , go visit Clowns a coffee shop that serves French food . With a low customer rating and it is located riverside . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop just north of Café Sicilia that has great reviews , is family friendly and is in the low price range . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a pub that serves Indian food , it 's kids Friendly , with moderate price Range , near Café Rouge . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , a coffee shop , located at City Centre near Burger King , is set at a higher price range and features French Food . It is family - friendly . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a Japanese pub with a 5 out of 5 customer rating . This is a family friendly pub . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a French food place near Express by Holiday Inn in the city centre , called The Rice Boat , that is children friendly , but has a price range of more than £ 30 and a low customer rating . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is an expensive family friendly place located near City Centre . \nname : Green Man | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man in in riverside area near All Bar One . It serves Japanese food in cheap price range . You can find Green Man near All Bar One . \nname : The Plough | Type : pub | food : English | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a children friendly English pub near Café Rouge with a high price range . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is an expensive , one star coffee shop located near the river . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is low price coffee shop serving Italian food with a low customer rating but not family - friendly \nname : Loch Fyne | food : Indian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne provides Indian food It is located in the riverside . It is near The Rice Boat . Its customer rating is high . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is kids friendly and serves Fast food . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Looking for a kid friendly coffee shop by the riverside , try out Zizzi . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Italian food located in the city centre near Clare Hall with a low customer rating . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is moderately expensive and it has a one star rating . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly pub with average customer rating in riverside called Aromi . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||There is a coffee shop named The Eagle with a moderate price range in the city centre , near Burger King . It serves French food and is not kid friendly , however it only has a customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge Italian coffee shop offers family friendly service . Located near Crowne Plaza Hotel , riverside . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi has a low customer rating and is a children friendly Japanese coffee shop located along the riverside . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman serves French food with prices ranging less than £ 20 . It is family friendly , located in the riverside area , and has an average customer rating . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||There is a coffee shop in Riverside near Café Brazil named The Vaults that has a customer rating of 3 out of 5 and the price range is £ 20 - 25 . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a Chinese pub named The Dumpling Tree . It is family friendly . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is a mid budget pub located at the riverside \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House serves French Food costing more than £ 30 . They are located near Clare Hall on the riverside \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||In the city centre , there is an Indian restaurant called The Phoenix . They have a low customer rating and are priced less than £ 20 . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||The Browns Cambridge is a 5 out of 5 rating with a cheap price range . It serves Japanese food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||The Giraffe pub , on the riverfront on the north side of the City center . is a good place to get burgers and fries . They are not geared towards families and children . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||There is a children friendly Japanese venue in riverside , that has a low customer rating , and is called The Rice Boat . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Indian food in the more than £ 30 price range . It is near Rainbow Vegetarian Café . Its customer rating is high . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House is located near Café Rouge , it 's a fast food . restaurant . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : yes||The Olive Grove is a pub that offers English cuisine . It is located in the city centre . It has a high price range but is child friendly . \nname : The Waterman | price : moderate | family friendly : no||The Waterman is not family friendly and is fairly priced . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||There is Japanese food at The Rice Boat near Express by Holiday Inn . It has a price range of more than £ 30 . It has a low customer rating , is not children - friendly , and is in the riverside area . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : average||For cheap Indian food , with an average rating , go to Browns Cambridge . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family - friendly fast food restaurant at City Centre , with a low Customer Rating . \nname : Midsummer House | food : Chinese | customer rating : average | near : Café Rouge||Midsummer House , located near Café Rouge , serves Chinese food and has a customer rating of average . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||For a moderate budget families with kids will find The Olive Grove pub on the riverside . \nname : Blue Spice | food : English | price : high | area : riverside||English Blue Spice is on the riverside . It has a high price range . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum is English food , near Yippee Noodle Bar in city centre . Customers give it a low rating but its priced less than £ 20 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The coffee shop Aromi , in the riverside area , serves Italian food , is kids friendly , and has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a kid friendly French restaurant with a customer rating of 3 out of 5 called The Golden Curry . Its located by the riverside near Café Rouge . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is at the riverside located near Café Brazil . It is a high priced coffee shop with a customer rating of 3 out of 5 . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||By the riverside at Bibimbap House that is near Clare Hall Italian food is cheap . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||There is a moderately priced French restaurant called Browns Cambridge . It has a rating of 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub providing Indian food . It is located near The Portland Arms and is not family friendly . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a fast rood restaurant with a high customer rating in the Riverside area near The Rice Boat . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The Alimentum in riverside serves French food in the price Range of £ 20 - 25 and is Kids Friendly \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||In the riverside area near The Rice Boat is Loch Fyne , a Japanese restaurant rated low by other customers . \nname : Bibimbap House | food : English | area : city centre | near : The Rice Boat||Bibimbap House is an English place in the city center near The Rice Boat . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||A 5 star customer rated outlet called The Rice Boat , is family - friendly \nname : Browns Cambridge | food : Chinese | price : £ 20 - 25 | customer rating : high||Serving Chinese food at a moderate price , Browns Cambridge is a highly rated establishment . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One in the riverside area is the Green Man . It has Italian food in the less than L20 price Range . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is in the centre of the city near All Bar One . It is family - friendly and serves Japanese food . It has a price range of less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||There is a cheap coffee shop The Golden Palace located near the river . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop has a high price range , child friendly and is located near Café Sicilia . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The children Friendly pub The Dumpling Tree has great Italian food is located near The Portland Arms . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is kid friendly serving fast food . It has a 3 out of 5 customer rating . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge serves average quality sushi that has above average pricing . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is kids friendly and provides fast food with a customer rating of 1 out of 5 and is found near Ranch . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It is also a Fast food place with cheap price range and a customer rating 5 out of 5 . However it is not a family - friendly place . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||Located north of the city centre , The Rice Boat is a three - star family restaurant . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is a Fast food in Riverside with high customer rating , no children friendly , more than £ 30 price \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant near Express by Holiday Inn near the city centre . It serves French food , has a 5 out of 5 rating and is not family - friendly . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle provides fast - food with a high customer rating of 5 out of 5 \nname : The Eagle | food : English | customer rating : low||The Eagle , with low customer rating , serves English food . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced fast food restaurant . They received a 3 out of 5 customer rating and are located in city centre . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix , located on the riverside , is a highly rated restaurant where you can eat Japanese food for about £ 20 - 25 . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves high - priced fast food near Rainbow Vegetarian Café . It is family - friendly , and has a customer rating of 5 out of 5 . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||There is an expensive restaurant located on the river Alimentum that has great food for a great price . Located near the Yippee Noodle Bar . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||There is a family restaurant Loch Fyne that provides English breakfast at a high price . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||Near Café Rouge , there is a child friendly pub that serves high priced Italian food by the name of The Plough . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside near the Express by Holiday Inn is a cheap Japanese restaurant called The Rice Boat . It has a rating of 5 out of 5 but is not family - friendly . \nname : The Eagle | food : Japanese | customer rating : average||The Eagle has a three star customer rating and serves sushi . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a kid friendly riverside Japanese restaurant with meals costing more than £ 30 . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap and 5 out of 5 rated serving French food . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a Japanese restaurant , in the high price range , and is not child - friendly . It has a customer rating of 3 out of 5 . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||For a low rated French Pub experience try family friendly Zizzi . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : no||The Twenty Two is a Japanese restaurant located in the city centre . It is not child friendly . \nname : Bibimbap House | food : Chinese | price : high | area : city centre | near : Clare Hall||Bibimbap House is a high - priced establishment that serves Chinese food . It is located in the city centre , near Clare Hall . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge located in the city centre area near Crowne Plaza Hotel has a low customer rating , offering a family - friendly coffee shop and French food . \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a none family - friendly restaurant located near Crowne Plaza Hotel that serves Italian . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The adults only The Waterman is sited near the Thames , it offers highly recommended Italian food at mid - range prices . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : no | near : The Bakers||The Golden Curry is a non family - friendly restaurant that serves French food for more than £ 30 . It is located near The Bakers . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||In the riverside area there is a restaurant called The Twenty Two . It is child friendly and serves French food . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a pub with high customer rating . It has a price range of £ 20 - 25 . It is located on the riverside . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||Reasonable sushi lets you get away at The Golden Curry restaurant right near The Bakers . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||There is an expensive dine - in restaurant that is family friendly called Loch Fyne . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a fast food restaurant in the riverside area near The Rice Boat and has 5 out of 5 star rating . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two offers French food in a children friendly atmosphere . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | near : The Sorrento||There is a coffee shop , The Mill , located in the city centre near The Sorrento . The Mill offers Japanese food at an affordable price . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is located on the riverside near Café Adriatic . Its prices are moderate and its customer rating is 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||With a rating of 5 out of 5 , Clowns coffee shop serves Italian food . It is located near Clare Hall and city centre . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop that serves Italian food for more than £ 30 . It is near Ranch and has a high customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||there is a low price coffee shop named Cocum that serving Italian food with a low customer rating but not family - friendly \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat serves English food and is family - friendly has a customer rating of 5 out of 5 in the city centre area . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : low||The Cambridge Blue is a Chinese restaurant with a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crown Plaza Hotel in Riverside is Browns Cambridge , a family friendly , Japanese coffee shop . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a child friendly coffee shop based in the river side area that has a high price range and average customer rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is above average in price but below average in customer ratings . The non - child friendly Twenty Two can be found near The Rice Boat in the riverside area . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre is Zizzi , it is a cheap coffee shop with a customer rating of 5 out of 5 . It is not child friendly . \nname : Alimentum | food : English | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||English food in the high price range is Alimentum . Located in centre of city near the Yippee Noodle Bar . Average customer rating . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||The Vaults is a coffee shop with average pricing and a customer rating of 3 out of 5 . It can be found in city centre near Café Brazil . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||The Phoenix is a riverside Italian eatery with a high customer rating . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||North of the city centre is Italian restaurant , The Phoenix . It is priced moderately high and has a 3 out of 5 star rating . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : no||Located near the center of the city , The Waterman , an English restaurant , boasts an average rating and high prices , while not welcoming children . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a average rated French restaurant called The Rice Boat located by the river , where you can eat for less than £ 20 per head . You 'll find it near the Express by Holiday Inn . It isn 't family - friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||There is a Japanese coffee shop near Ranch called Wildwood . It is priced more than 30GBP , and has a 5 out of 5 customer rating . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||A low French restaurant thats children friendly near Ranch is Cotto \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides French food of top customer rating on the riverside near The Rice Boat . \nname : The Eagle | price : high | customer rating : average | area : riverside||A place in riverside with a high price range and an average customer rating would be The Eagle \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||Located near the riverside is a low price fast food pub named The Mill . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant near Rainbow Vegetarian Café . They serve sushi and are rated 3 out of 5 . They are high priced . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a great Fast food place with a 5 out of 5 rating in the city centre near The Rice Boat . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||There is a family friendly pub The Olive Grove in the City centre . It offers expensive Italian food . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is for adults and near The Rice Boat in the city centre its prices are moderate and it has a customer rating of 1 out of 5 . \nname : Zizzi | Type : restaurant | price : moderate | area : city centre||Moderate price range restaurant in city centre is Zizzi . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||There is a cheap coffee shop that is 3 star and serves sushi . It is called The Punter and is near Café Sicilia . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||The Golden Palace is a three star coffee shop close to the river . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly fast food restaurant with a low customer rating and has a price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves cheap Japanese food in the city centre near Burger King . They are not family - friendly and have a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||There is a coffee shop near The Sorrento called The Mill in the riverside area serving Italian cuisine priced high . \nname : Strada | Type : pub | food : French | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar . It serves French food and has a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The kids friendly coffee shop in riverside has moderate prices for the Japanese food is Fitzbillies 1 out of 5 people is our rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a coffee shop located close to the Crowne Plaza Hotel . It is family friendly . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Taste of Cambridge , a restaurant in the £ 30 or more price range , has a 5 out of 5 customer rating . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Located in the city centre , Browns Cambridge is a low priced Japanese restaurant with a three star rating . \nname : Aromi | Type : restaurant | food : Chinese | area : riverside||On the riverside is the restaurant Aromi which serves Chinese food . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies , near Express by Holiday Inn , has an average customer rating and fair prices in a family friendly atmosphere . \nname : The Rice Boat | food : Japanese | area : riverside||Japanese food is served at The Rice Boat on riverside \nname : Aromi | Type : restaurant | food : English | area : riverside||Aromi , a restaurant in the Riverside area , serves English food . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Wildwood is a pub that serves basic quality Japanese for those willing to spend high . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||In the riverside area near The Rice Boat is a family friendly restaurant that is cheap with an average customer rating called The Twenty Two . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Offering Japanese food , The Rice Boat is located in the city centre , is not family - friendly and has high customer ratings . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||There is a moderately priced fast food coffee shop in riverside , named The Golden Palace . It has received 3 out of 5 in customer ratings . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||There is a coffee shop , Clowns , that serves Indian food and is located by the riverside , near Clare Hall . Their customer rating is 3 out of 5 . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant that serves French food . They have low customer ratings and cheap prices . Strada is in the city near Rainbow Vegetarian Café . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||For French food in the riverside area , head to The Waterman pub . Customers have rated it 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop located on a riverside near Crowne Plaza Hotel . It is family friendly , and serves Italian food . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||Situated near Café Brazil , The Cambridge Blue pub serves French food for more than £ 30 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves moderately - priced Chinese food and is kid friendly . They have a 1 out of 5 rating and are located in the city centre near the Express by Holiday Inn . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The fast food pub in the riverside , The Mill , has a high price range . \nname : Midsummer House | food : Chinese | customer rating : high | near : Café Rouge||Midsummer House is a highly rated Chinese restaurant near Café Rouge . \nname : Blue Spice | food : Chinese | price : moderate | area : riverside||There is a place called Blue Spice that serves Chinese food , has a moderate price range , and is on the riverside . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is child friendly . Its near The Sorrento and they serve English food . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a kid friendly pub , set along the riverside which has very high customer rating \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman which serves Fast food And is children Friendly is situated near the Crowne Plaza Hotel \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||For an averagely rated restaurant , head to The Cambridge Blue . This restaurant serves English food . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||With a price range of less than £ 20 , Green Man is in the riverside area near All Bar One that serve French cuisine . It is not family - friendly . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman serves expensive , high rated Chinese food . It is kid friendly and in the riverside area . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn . Yes , it is kids friendly , serves Japanese food and price range is £ 20 - 25 with a customer rating of 3 out of 5 . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low price coffee shop near Rainbow Vegetarian Café that serving Italian food with a customer rating of 5 out of 5 but not family - friendly \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||For more than 30 Euros a meal , the highly rated coffee shop of The Golden Palace has amazing Italian Food at the riverside . \nname : Midsummer House | food : Chinese | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House serves Chinese food near All Bar One . It has a high customer rating and a price range of over £ 30 . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a child friendly restaurant with English food . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a child friendly coffee shop serving English food in the more than £ 30 price range with a high customer rating \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Oriental cuisine on the waterfront at The Waterman . 5 star dining for the whole family for a low price . \nname : The Punter | food : English | price : moderate||Offering English - fare , The Punter is a reasonably priced restaurant . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||Come too The Dumpling Tree French restaurant where prices are moderate . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is located near the Crowne Plaza Hotel on the riverside , it is a family friendly coffee shop serving Japanese foods . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre is The Rice Boat , which serves Japanese food . It is highly rated with a price range of £ 20 - 25 but is not a kid friendly establishment \nname : Aromi | Type : restaurant | food : Indian | area : riverside||Aromi is a riverside Indian restaurant . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , near to Café Sicilia , is a coffee shop serving French food . You can eat for less than £ 20 in this family friendly place and it has a customer rating of average . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is near Yippee Noodle Bar in the city center , they have moderate priced English food and a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle coffee Shop is a cheap 1 star sushi restaurant . It 's located in city centre , east of Burger King . Not family friendly . It offers deliveries , take - out and eat - in . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The family friendly Browns Cambridge coffee shop sells Indian food in the city centre near the Crowne Plaza Hotel but has a low customer rating \nname : The Twenty Two | food : Indian | family friendly : yes||a family Friendly Indian food is The Twenty Two \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes||Aromi , a family - friendly coffee shop , is a low rated Japanese venue near the center of the city . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a family friendly restaurant featuring Japanese cuisine . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is very expensive and is located near the city centre . \nname : Green Man | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a kid friendly fast food environment near the riverside and All Bar One in the low price range . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers offers Fast food and coffee shop with expensive price near Raja Indian Cuisine . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||The Portland Arms is a updated new town that has definitely moved up in the property ladder , with riverside views comes The Punter with a high price rang , a child friendly establishment where you can bring your friends and family . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The Golden Curry is child friendly with and excellent customer rating serving Italian food . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||The Wildwood is a mid ranged French eatery with average customer ratings . It is located near the Ranch . \nname : Blue Spice | food : French | price : less than £ 20 | area : city centre||A French restaurant in the city centre that cost less than 20 euros is Blue Spice . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is in the area of riverside and is a kids friendly pub and has a rating of 1 out of 5 . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The French restaurant Strada is a family friendly restaurant with an average customer rating and a prince range below £ 20 that is located by Rainbow Vegetarian Café . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman serves English food at moderate prices . It is located at the riverside . It does not cater for families with children and was given a low customer rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two restaurant serves Japanese food and is family friendly it is located by the riverside . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||The Blue Spice is a great 5 out of 5 stars restaurant definitely not for children but for adults located in the city centre near Avalon . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||The Mill is an expensive fast food coffee shop in riverside near The Sorrento . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : city centre||The Mill is a pub located in the city centre that serves fast food in a moderate price range . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||There is a kids friendly pub serving English food , called The Dumpling Tree near The Portland Arms . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near Crowne Plaza Hotel sells English food and has children friendly service . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The riverside pub The Mill serves Italian food . It is cheap . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||There is a one - star restaurant Midsummer House located in Café Rouge . \nname : The Eagle | food : English | customer rating : 5 out of 5||The Eagle is rated five stars for full English breakfast \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||In riverside there is The Alimentum which is Kids Friendly with a price Range of £ 20 - 25and is Kids Friendly \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two restaurant is located near The Rice Boat . It is riverside . Price range is high . It is child friendly and the customer rating is average . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||In Riverside there is a pub restaurant called The Olive Grove and it is family friendly and the price range is less than 20 pounds . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The coffee shop , Cocum , serves Japanese fare at moderate prices and a kid friendly environment . Customer ratings are 1 out of 5 . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||There is an English restaurant called The Wrestlers which has a rating of 5 out of 5 . It is cheaply priced but is not family - friendly . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge is moderately priced and is rated by customers at 3 out of 5 . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||With a 3 out of 5 rating , Midsummer House near All Bar One offers moderate priced English food . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||The customer rating of the family friendly Japanese restaurant Cotto near the Ranch is average . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||Rated highly by its customers , The Vaults coffee shop near Café Brazil serves meals from £ 20- £ 25 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that offer Italian food also , less than £ 20 average and located by the riverside near Raja Indian Cuisine . Kids not welcome . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||The pub called Zizzi is kid friendly , has high reviews , and also has Chinese food . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||A child friendly pub called Aromi is in the riverside area with a customer rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||Clowns is a 3 - star coffee shop close to Clare Hall . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop providing Japanese food in the average price range . It is located in the riverside near The Sorrento . \nname : Strada | Type : pub | food : Fast food | customer rating : 3 out of 5 | near : Yippee Noodle Bar||There is a fast food pub near Yippee Noodle Bar called Strada . It has customer rating of 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a children friendly coffee shop on the riverside called Zizzi . It has a moderate price range and customer rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells Indian food , at cheap prices , average customer service , located in City Centre , not family friendly located near Express by Holiday Inn \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is an Italian coffee shop located in riverside providing cheap food . It boasts an average rating of 5 out of 5 but is not family - friendly . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a three star restaurant featuring French cuisine , high prices and a non - child friendly attitude . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in riverside near Raja Indian Cuisine , The Wrestlers coffee shop offers French food . Child friendly ranging in price more end £ 30 . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in riverside area , with high - priced range . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a low price , family friendly , restaurant close to The Bakers . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||With an average price range and a high customer rating , Wildwood is a coffee shop near Ranch , \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a Food French restaurant . It located in riverside area near All Bar One . Green Man is a Children Friendly , and the price more than £ 30 . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is high and has a high customer rating but no children allowed in city centre it is fast food . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a not family - friendly , average coffee shop serving French food near The Portland Arms . \nname : The Phoenix | food : Italian | customer rating : average | area : city centre||The Phoenix is an Italian restaurant located in the city centre and has an average review \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle , a slightly pricey highly rated Italian coffee shop in the riverside area near Burger King serves Italian food and is not child friendly . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the city centre is a Japanese restaurant that is kids friendly in the 20 - 25 price range that has a customer rating of 3 out of 5 . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||The Loch Fyne is a popular English restaurant near The Rice Boat . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||A child friendly fast food establishment is The Twenty Two . It 's located in riverside . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||Located in Riverside , The Waterman provides fast food pub style . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop in the city centre . As well as being a coffee shop , it also sells Indian food . It has a moderate price range and a customer rating of 3 out of 5 . With reasonable prices , Cotto can be found near The Portland Arms in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that offers Japanese food an is kid friendly . Its in the riverside area near the Crowne Plaza Hotel . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House serves Japanese food and meals are normally £ 30 or more . Its very close to All Bar One and has a customer rating of low . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||There is an Italian family friendly place to eat called Alimentum in riverside and it is cheap . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is not a child friendly English food place , which is by the riverside has a high customer rating and a price range of £ 20 - 25 . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||We are a cheap family friendly coffee shop with an average rating located we The Bakers . We are Giraffe . \nname : Browns Cambridge | food : English | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is located in city centre near The Sorrento . They serve English food and not kid friendly . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||An Indian food place called The Wrestlers has a customer rating of 3 out of 5 and is moderately priced . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is an Indian pub near the riverside . It is family friendly , so children are welcome . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a family friend restaurant offering Fast food in the riverside area . \nname : Loch Fyne | food : Chinese | customer rating : average | area : riverside | near : The Rice Boat||There is an average Chinese named Loch Fyne near The Rice Boat on the riverside . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is an average priced Indian restaurant located near All Bar One . Not family friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||Take your kids to The Punter it 's right next to Café Sicilia . Your kids will enjoy the overpriced Japanese food . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is an expensive English restaurant located in the city centre . It is not recommended for children , but it has received a high customer rating . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum is a high priced Italian restaurant in riverside that is children friendly . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||British food at The Rice Boat , close to river and Express by Holiday Inn , offers low cost 5 star family friendly dining . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is kid - friendly and serves fast food . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||A good Fast food choice with an average customer service rating , Cotto is family friendly and located near Ranch . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||A restaurant with above average prices but low customer ratings is Taste of Cambridge . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Families can dine at an expensive restaurant called Strada . Strada is located near Rainbow Vegetarian Café . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : city centre||The Phoenix is a high end Italian restaurant in the city centre area . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||Near the center of the city , the high rating coffee shop , The Golden Palace , serves Italian food ranging more than l30 . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French food . Relatively cheap . and family - friendly . Located near Express by Holiday Inn in the city centre area . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly French coffee shop near Burger King in the city centre with a customer rating of 3 out of 5 and a high price range . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||Low rated , cheap , fast food at The Phoenix in Riverside . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||Located near The Six Bells , Fitzbillies has great French food in the £ 20 - 25 range . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||There is a kid friendly French restaurant called Loch Fyne . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an expensive , sushi , restaurant . It is family friendly and rated one star . It is located in City centre near the Express by Holiday Inn . \nname : Zizzi | Type : pub | food : Indian | customer rating : 3 out of 5 | family friendly : yes||Zizzi is an Indian pub . It is kid friendly . The customer rating is 3 out of 5 . \nname : The Mill | Type : pub | food : Chinese | price : cheap | area : riverside||The Mills is a pub that serves cheap Chinese food in riverside . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue is an Italian restaurant . This restaurant has a low customer Rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : riverside||There is a pub named The Waterman that provides Chinese food with an average customer rating in riverside . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is an Italian restaurant which is located in the city centre near the All Bar One . The restaurant has a family - friendly atmosphere . The price range of the Italian meals are below £ 20 .. \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill serves expensive English food . It is a pub near the river . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a mid - priced coffee shop on the river that also specializes in cheeses and wine . \nname : The Punter | food : Fast food | price : less than £ 20||There is a restaurant in the heart of the city that is cheap called The Punter . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||In riverside near Café Rouge is The Golden Curry serving Italian . They have a customer rating of 5 out of 5 and are not family - friendly . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||In the riverside area . Sits a kid friendly pub named Giraffe . Serving great French quinine . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is an average rated , child friendly , high - priced pub . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is coffee shop that serve French food but is not children friendly and ranges more than £ 30 but has a low rating . It 's located in riverside near Burger King . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : no||The Wrestlers provides Chinese food in the high price range . Its customer rating is average . \nname : Blue Spice | price : moderate | area : city centre||There is a moderately priced place in city centre named Blue Spice . \nname : Cotto | food : French | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is a kid friendly restaurant Cotto near the Ranch . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||A family friendly Indian restaurant is The Waterman , located near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop with a one star rating offering food near The Portland Arms . \nname : The Punter | food : Italian | price : high||The Punter is a more expensive place to eat noodles . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop serving Japanese food . It has an average customer rating and is near Clare Hall in the city centre area . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman it is a Chinese restaurant that offers food at a high price range . It is customer rating are 1 out of 5 . Locate at City centre area , children are welcome . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a not family - friendly French coffee shop near Crowne Plaza Hotel near the riverside . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a highly rated venue serving Japanese food for a budget between £ 20 and £ 25 . It is near the Yippee Noodle Bar in the riverside area . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||With a rating of 5 out of 5 , Midsummer House is a French restaurant near Café Rouge \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||Loch Fyne is in the £ 20 - 25 price range . It is a kids friendly fast food restaurant . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||There is Blue Spice in the city centre . It is in the average price and rating range and it is also kids friendly . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Just down The road from The Sorrento and by the river is a pub called Taste of Cambridge . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is an Indian coffee shop in the high price range and with an average customer rating . It is located in the city centre near The Portland Arms . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no||Aromi coffee shop offers Indian food by the riverside . It had a low customer rating and is not family friendly . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum is an Italian food restaurant in the riverside area that is family friendly with prices in the high range . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : The Rice Boat||In the city centre , near to The Rice Boat is located The Twenty Two and offers family area . It has a price range less than £ 20 but with an average customer rating . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||Green Man at riverside is cheap and family - Friendly . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : no||You 'll spend less than £ 20 at Cocum , a low rated pub . Not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : high||There is a restaurant named The Cambridge Blue that has French food , and the customer rating is high . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : city centre||In the city centre is The Waterman pub . It serves average Italian food . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||There is an Indian restaurant that is kids friendly . It is Loch Fyne . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||With good price , excellent service and delicious French food , The Cambridge Blue pub , located near Café Brazil , is an excellent place to eat and have a drink . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a high - priced Japanese restaurant in the city center with a customer rating of 3 out of 5 called The Waterman . It is not children friendly . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly pub in riverside with a low customer rating . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms in Riverside is a low priced , family friendly establishment called The Punter . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is a cheap restaurant called Strada with a customer rating of 5 out of 5 . It is not family - friendly . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : yes||An average , family - friendly , Japanese restaurant , in the city centre is The Rice Boat . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a new pub near Yippee Noodle Bar . Specializing in English food , with a customer rating of 1 out of 5 , you won 't want to pass this up . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The not too kid friendly , low customer rating , French coffee shop , Fitzbillies , is near riverside with a price range of less than L20 . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is an Italian riverside high rated restaurant which is useful if you have a budget of more than £ 30 and don 't have any children as it isn 't family - friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The Cotto is a coffee shop that offers Japanese cuisine and is located in the riverside area near The Portland Arms . The Cotto has received a customer rating of 1 out of 5 and has moderate prices . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater located near Café Adriatic in riverside has a rating of 3 out of 5 . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove is a restaurant in Riverside that 's kids friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Enjoy a family friendly environment near the riverside with English food at The Twenty Two . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : no||In the city center area is a fast food restaurant called the Alimentum that has a high price range and is not child friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||There is a great coffee shop named The Eagle located in the centre of the city near Burger King . They offer fast food , and are reasonably priced with meals costing around E20 - E25 . They have a high customer rating and are very kid friendly . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||A low priced French food restaurant near The Six Bells is Fitzbillies . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the Riverside area , there is a family - friendly French coffee shop called The Eagle . It is located near Burger King and has a 5 out of 5 customer rating . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||You will find The Waterman in the city centre , they offer French food at less than £ 20 and are family - friendly . Customer rating , however , is low . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns riverside fast food and coffee shop good customer rating near Clare Hall . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||We only have an average rating , but we offer fast food , a family friendly attitude , a riverside coffee shop and we 're near the Crowne Plaza Hotel . So some along to Browns Cambridge . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Located in city centre near The Rice Boat is the French Loch Fyne . They have a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||For average , moderately priced Chinese food in a riverside location , head to The Rice Boat by Express by Holiday Inn . \nname : Cotto | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is 3 out of 5 . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Beside The Rice Boat is a five - star Sushi restaurant called Loch Fyne . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : no||Loch Fyne is a restaurant with Indian food but is not family friendly . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Along the Riverside and near The Portland Arms , is a family friendly restaurant with a price range under 20 euros named The Punter . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a 1 out of 5 rated coffee shop located near Café Sicilia . They sell a moderate price Japanese food and the location are kids friendly \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||The Blue Spice coffee shop , located in the riverside area near the Avalon , has a high price range and average customer rating . It is children friendly . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||There is a cheap French coffee shop near Ranch called Wildwood it has a customer rating of 3 out of 5 . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||The Giraffe is a non - children friendly and expensive coffee shop near The Bakers . It is highly rated . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a non - children friendly expensive highly rated coffee shop near the Café Sicilia . It serves English food . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a riverside coffee shop which serves Fast food . It is located near Crowne Plaza Hotel . Children are welcome . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||The price range is high for a 1 out of 5 rated place . The Wildwood is a pub with Italian food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||A coffee shop named Fitzbillies is located in the city centre . It is children friendly with a high price range and average customer rating . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : no||The Golden Curry restaurant is serving French food and has a customer rating 5 out of 5 that isn 't family - friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||For Italian foods recommended with high customer ratings , Cocum is the place . This coffee shop is children friendly with prices more than £ 30, \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop serves French food and is near the city center and the Raja Indian Cuisine . It is not family - friendly and is priced in the less than 20 pound range . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||Although the price range is considered cheap the customers rated The Phoenix a five out of five , this venue serves Chinese food by the riverside . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers , rated 1 out 5 stars , offers a selection of food for a low price and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Fitzbillies , a French coffee shop with reasonable prices received an average customer rating . They are located in the riverside area . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near All Bar One . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||A French restaurant called The Vaults is family friendly with meals less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers Fast food coffee shop close to The Portland Arms has no facilities for children , also has a low customer rating . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||French styled and family friendly , The Twenty Two is located in riverside . \nname : The Twenty Two | food : Japanese | family friendly : no||The Twenty Two is a sushi restaurant for adult customers . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults serves low priced British Food . It is not family friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||A family friendly restaurant that serves French food near the riverside area is called The Twenty Two . \nname : Strada | Type : pub | food : Indian | customer rating : average | near : Yippee Noodle Bar||Strada is a pub featuring Indian food near Yippee Noodle Bar . Customers have rated it average . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop by Burger King at the end of the city which has average prices . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a kid friendly coffee shop in riverside . They serve fast food with slight above average prices . The customer rating is high . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||A family friendly Italian restaurant named Strada is located near Rainbow Vegetarian Café . It has low customer ratings with prices under £ 20 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers average - rated , cheap Indian food in the riverside area . The Rice Boat is in the riverside area near Express by Holiday Inn . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is a moderately priced , family friendly fine dining restaurant named Strada . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a moderately priced , kid - friendly restaurant by the riverside . It is rated by customers as 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a child friendly Italian food coffee shop near Burger King in the city center area with an average customer rating and a high price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a cheap coffee shop outside the centre of the city called Fitzbillies where the whole family is welcome . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||Near Café Sicilia there is a cheap Italian coffee shop called The Punter . It is not family - friendly and has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low priced coffee shop with a three star rating . It is located in the city centre near Burger King . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||If you are looking for a family friendly restaurant then head to Loch Fyne which serves French food . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Browns Cambridge is a fast food restaurant priced over £ 30 with a low customer rating . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi is located near riverside and is a kid friendly coffee shop . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||With a rating of 5 out of 5 The Waterman is a cheap , Italian restaurant on the riverside that is not family - friendly . \nname : Aromi | Type : restaurant | food : Italian | area : city centre||There is an Italian restaurant in the city centre , known as Aromi . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no||The Olive Grove is an expensive pub in the riverside area serving Chinese food to an adult crowd . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry is not family - friendly and has a low customer rating . It provides Italian food . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an excellent , moderately priced and family - friendly British restaurant located near the Rainbow Vegetarian Café \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located riverside , near Crowne Plaza Hotel is a kids friendly coffee shop , Browns Cambridge , which serves Indian food . It has a high customer rating . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||Alimentum an Indian restaurant in the less than £ 20 price range is not family friendly and is located in the city centre . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : city centre||Zizzi is a restaurant located in the city centre . The price range is more than £ 30 . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a non - friendly family restaurant located in Riverside near the Café Rouge . They have average ratings and serve Italian Food . \nname : The Vaults | food : Italian | price : more than £ 30 | family friendly : yes||The Vaults serves Italian food and it is children friendly . The price range is more than £ 30 . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||There is a Japanese pub called The Plough near Café Rouge which is children friendly and averages more than £ 30 \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||Located near Café Rouge , Midsummer House serves English food but has a low customer rating . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||In the riverside area , The Olive Grove is a child friendly restaurant . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||English food can be found at The Twenty Two , a kids - friendly place in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop serving Italian food located in the riverside area . It is not child friendly but comes with a high customer rating . It has a price range of more than £ 30 . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a family friendly riverside restaurant . It is moderately priced and the customer rating is 1 out of 5 . \nname : The Mill | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop with a price range of 20 - 25 pounds . It is located in the riverside area near The Sorrento . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : yes||The Green Man is located in the city centre and has a price range of more than £ 30 , and is kid - friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop that has a price range of less than 20 euros . They also serve Japanese food on riverside , however have a low customer rating . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a fast food restaurant next to the river . The food are not cheap but not too expensive . This is a family friendly restaurant . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||You can get cheap French food at The Wrestlers , they aren 't family - friendly but have a 5 out of 5 customer rating . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||With a moderate price range Strada offers Japanese food and is kid friendly . Located near Rainbow Vegetarian Café . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is a low - rated , high - end Riverside restaurant catering for families . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : city centre||There is a low - priced pub restaurant serving French food called The Mill . It is located in the city centre . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||Travellers Rest Beefeater is a restaurant that is not family - friendly . It has a price range of less than 20 pounds . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||The Travellers Rest Beefeater is a child friendly restaurant with a price range over £ 30 . \nname : The Punter | food : French | price : cheap||Get cheap French food at The Punter \nname : The Waterman | price : more than £ 30 | family friendly : yes||A children friendly place is The Waterman . The price is really cheap . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , located in the riverside area near The Sorrento , serves Indian food and is child friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a highly recommended coffee shop serving moderately priced fast food , it is located in the city centre near Ranch . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice serves inexpensive food near the river . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The child friendly Strada , has a price range of over £ 30 and a customer rating of 5 out of 5 \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a moderate price place that sells Italian food with a customer rating 3 out of 5 \nname : Midsummer House | food : Italian | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a moderately priced Italian restaurant in the vicinity of All Bar One . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a high end 3 out of 5 stars restaurant Blue Spice located in the centre of the city that is not child friendly . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix offers Indian food at reasonable prices of £ 20 - 25 for a meal . It offers a riverside location and has regularly received high customer ratings . \nname : Wildwood | Type : pub | food : Indian | price : £ 20 - 25 | customer rating : high||Wildwood serves highly - rated , yet moderately priced Indian in a pub - style setting . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside near Raja Indian Cuisine is coffee shop called a The Wrestlers . It serves fast food for less than £ 20 and isn 't family - friendly . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||In the riverside area , near Café Sicilia , you can find the cheap family friendly coffee shop called The Dumpling Tree . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is located in City center . High Price range but family - friendly . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||A moderately priced menu for families at The Plough near Café Rouge . An Italian pub . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||French restaurant with a child friendly atmosphere . Dishes at Strada are typically over £ 30 . Strada can be found near the Rainbow Vegetarian Café . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no||Aromi is a non - family - friendly coffee shop that serves Italian Food . They are located near riverside and have an average rating . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice is a range more than £ 30 and they are serving Japanese tea . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||The Loch Fyne is a fast food restaurant . It is not family - friendly , but it costs less than £ 20 . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a low rated Italian restaurant with a 1 out of 5 . The prices are moderate and it is not kid friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms . It serves Japanese food , is family - friendly , and is rated three stars . \nname : The Cambridge Blue | Type : pub | food : French | price : cheap | near : Café Brazil||The Cambridge Blue serves cheap French food . It 's near to Café Brazil . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : less than £ 20||The Dumpling Tree is an Indian restaurant with low prices . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : city centre | near : Clare Hall||In the city centre near Clare Hall is a Japanese restaurant called Bibimbap House . It is less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a higher priced coffee shop on the riverside that serves French food and has a low customer service rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||There is an average friendly fast food coffee shop named Fitzbillies at city centre \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Zizzi is an expensive coffee shop in riverside that is not children friendly and only has a 3 out of 5 customer rating . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge sells Indian food and is in riverside area near The Sorrento . it is also kids friendly \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Fast food restaurant located near Rainbow Vegetarian Café with prices more than £ 30 . It is not a children friendly establishment . \nname : The Punter | food : Chinese | price : high||A high priced restaurant that serves Chinese food is The Punter . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a restaurant providing food more than £ 30 . It is located near of Express by Holiday Inn . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||In the riverside area there is a highly rated kid friendly establishment , The Waterman that serves French food in the £ 20 - 25 price range \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree pub is near The Portland Arms . It is not family friendly . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||Near the Café Adriatic is a pub called The Vaults with a price range of £ 20 - 25 and a high customer rating \nname : The Mill | Type : pub | food : French | price : high | area : riverside||The Mill is a pub type restaurant near riverside . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a child - friendly pub located in riverside , near The Sorrento . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||Aromi Fast food coffee shop in riverside gives you a children - friendly environment with a high customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : low||The Cambridge Blue is a low - rated Indian restaurant . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||I wonder if there is a coffee shop that offers Japanese food near the Riverside . I 'm having a hard time finding one . The closest thing I found was The Mill , located in The Sorrento . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill serving Fast food is a high priced pub near the riverside . \nname : Midsummer House | food : Japanese | customer rating : high | near : Café Rouge||A great Japanese placed called Midsummer House is near Café Rouge . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||Come to The Plough , a fast food pub situated near Café Rouge . Not family - friendly and meals cost under £ 20 \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||With a customer rating of 5 out of 5 , Fitzbillies is a cheap fast food establishment located in the city centre . This coffee shop is not family - friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||For a children friendly restaurant visit Travellers Rest Beefeater , but be prepared as it 's high priced . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||The Vaults is a Japanese kids friendly restaurant that is in the price range of £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a French , coffee shop with high ratings in the city centre , near Crowne Plaza Hotel . The name is Browns Cambridge . It 's not family - friendly though \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||A coffee shop called the Giraffe is near The Bakers and the price range is cheap . It is family friendly and it is rated 5 out of 5 . \nname : Blue Spice | food : Indian | price : moderate | area : riverside||Blue Spice offers Indian food , within a moderate price range . It is located in a riverside area . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Japanese restaurant Loch Fyne is family - Friendly \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne Italian restaurant is a moderate priced kid friendly restaurant \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | near : The Sorrento||There is a coffee shop that serves Japanese food called The Mill . It is near The Sorrento , in the city centre , and has a price range if more than £ 30 . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant located in the city centre near Express by Holiday Inn . It is not a kids friendly restaurant . It is moderately priced with a customer rating of 3 . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : yes||A low rated family friendly Indian restaurant is in city centre called The Rice Boat . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood is a restaurant near Café Rouge with food at low prices . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||Located near Café Sicilia Japanese coffee Shop The Punter is children Friendly , Ranges are more than £ 30 with a low customer rating \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||The Dumpling Tree is a mid priced restaurant offering English food . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||Along the riverside , near The Sorrento is a French coffee shop with low prices called The Mill . \nname : The Golden Curry | food : Chinese | price : more than £ 30 | family friendly : yes | near : The Bakers||Slightly more than 30 British pounds , The Golden Curry Chinese restaurant welcomes children and located near The Bakers . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is low . \nname : The Eagle | food : Italian | customer rating : low||The Eagle serves Italian food and is rated low by customers . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : yes||The Alimentum is a child friendly Japanese place in the city centre which is moderately priced \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced , adults - only , French coffee shop in the city centre . It receives a customer rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||Zizzi pub is family friendly pub serving fast food with a low customer rating . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House is an Italian restaurant in City centre near Clare Hall . They are high - priced . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto is Fast food . It is located near Café Rouge . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : city centre||A city centre pub serving Japanese food called The Waterman has been given an average customer satisfaction rating . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : riverside||The Mill pub has a riverside location and serves low - average price Chinese food . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a kid friendly and highly rated at 4 for their Japanese food . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Satisfied customers who visited Strada which is close to Rainbow Vegetarian Café boast of it 's cheap food price , family Friendliness and English cuisine . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant located near Express by Holiday Inn . The Rice Boat is family friendly and is rated 3 stars . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a 3 star , family friendly Café located close to The Rice Boat providing Japanese food . It is located in the city centre . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is a family friendly venue in the riverside area with lower prices than average . Clowns is a restaurant near The Portland Arms . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||On the river near The Rice Boat , there is a high - priced , family friendly restaurant called The Twenty Two . They received one star . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Excellent Japanese food can be had at Cotto near the Ranch . With a customer rating of 5 out of 5 , and family friendly environment . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||The Wrestlers serves French food at above average prices . Customers have given it a high satisfaction rating . It does not cater for children . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a moderately priced Japanese restaurant called the Strada , situated near the Rainbow Vegetarian Café . It is not suitable for families and has a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||A fast food and coffee shop near Raja Indian Cuisine in the city centre , The Wrestlers is a family - friendly place where you can eat for less than £ 20 \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in city centre is a family friendly Chinese restaurant The Rice Boat . It has a low customer rating and price range less than 20 euros . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||Browns Cambridge offers a fast food menu in the lower price range . It is not rated highly by customers . \nname : Alimentum | food : English | price : more than £ 30 | area : riverside | family friendly : yes||There is a children friendly restaurant Alimentum in riverside . They are above average price range and they serve English food . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is not a family - friendly and low customer rating cheat Japanese restaurant . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||There is a no children - friendly coffee shop The Punter located near Café Sicilia that provides Italian food in the high price range with the low customer rating . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly , Italian restaurant near the Café Rouge in the riverside area , with a low customer rating . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix providing Chinese food in the moderate price range near riverside area of city . \nname : The Twenty Two | food : Japanese | family friendly : no||There is a sushi restaurant called The Twenty Two which is not family - friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Zizzi is a child friendly coffee shop located in the city centre . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : no||Giraffe is a Chinese pub in the Riverside area that is not family friendly . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly mid priced wine and cheese eatery , located near Rainbow Vegetarian Café . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a moderately priced pub that serves Indian food with a kids friendly atmosphere . It is located near Café Rouge . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a decent , family friendly Japanese restaurant along the riverside near Café Rouge . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a Japanese restaurant with high priced food and excellent customer ratings . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : no | near : The Bakers||Giraffe located near The Bakers is a coffee shop with a modest price range of £ 20 - 25 with a high rating from our fans , no children \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a low rated but family friendly coffee shop located near The Portland Arms that serves Indian food . \nname : Fitzbillies | food : Fast food | price : high | near : The Six Bells||Fitzbillies expensive Fast food near The Six Bells . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a child friendly pub near Café Rouge serving Chinese food for moderate prices . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||The moderately priced French coffee shop , The Golden Palace is located in the city centre . It has a customer rating of 1 out of 5 . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is family friendly and is located in the riverside area near All Bar One . It serves English food and has a cheap price range . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : no||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The 5 - star , family - friendly coffee shop , Fitzbillies , is located near the river and offers low - priced fare . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Looking for an average priced coffee shop that is highly rated , child friendly and near the river then try Zizzi . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop type Italian restaurant in the moderate price range with kids friendly atmosphere . It is located in the city centre near Burger King with a customer rating 1 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , Fitzbillies is child friendly and has a high customer rating . It is in the high price range . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a cheap eating place outside Cambridge City Centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Highly rated and mid - range prices , the coffee shop Cocum loves families . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||Located near Clare Hall , Clowns is a coffee shop with a very high customer rating located riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a cheaply priced , family friendly coffee shop where you can get Japanese food . It is called The Eagle and is near to Burger King . Customers have rated it as 5 out of 5 . \nname : Cotto | food : English | near : Café Rouge||English food is served at Cotto near Café Rouge . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||The child friendly restaurant Zizzi serves French food and has outstanding ratings . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is an affordable , family friendly restaurant located near The Bakers . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves English , and is located near the Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||This coffee shop has children friendly Japanese food Cocum which has low customer rating and price range of £ 30 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is an Indian restaurant in the riverside area and is family friendly . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||The Vaults is a pub near Café Adriatic . Its high prices but only has average customer ratings \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man its a place with awesome Italian food , in the area of city centre near of All Bar One with a high price range but children - friendly \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||coffee shop Zizzi , located in the riverside area is a child friendly restaurant . The customer rating is 5 out of 5 and the price range is more than £ 30 . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a children friendly pub , it has a low customer rating and goods cost more than £ 30 . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a child - friendly , moderately priced Chinese restaurant in the center of the city with a review score of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||the Aromi coffee shop sells Japanese food in riverside , the customer ratings are low and families are not welcome \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a high price range Indian food place by the riverside that is rated 1 out of 5 by customers called The Waterman . It is not children friendly . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a family - friendly French restaurant in the city centre . The price range is less than £ 20 . \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel there is the Italian restaurant , The Waterman . It is not family - friendly . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||Café Sicilia and The Dumpling Tree , near riverside , have a price Range of £ 20 - 25 and are kids Friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is a average customer rated fast food , coffee shop with an average customer rating . They are located in Riverside near Clare Hall . \nname : Aromi | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Near the riverside , Aromi is a coffee shop that serves French food . Aromi is family friendly and has a customer rating of 1 out of 5 . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||I spent more than £ 30 on French food at that restaurant Blue Spice by the riverside . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : city centre | near : Clare Hall||Clowns is located in the city centre near Clare Hall . An Italian coffee shop with an average customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||Come check out The Dumpling Tree restaurant serving seafood at affordable prices . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a moderately priced family restaurant near the city centre . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the riverside area serves low priced average Italian food and is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high priced coffee shop located near Raja Indian Cuisine . It is family friendly . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||The Punter is located near The Portland Arms in the riverside area , not kids - friendly and in the moderate price range . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||The Wildwood coffee shop offers low priced fine dining . It is located near Ranch and has a 1 out of 5 rating . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||The Zizzi is a kids friendly pub that has high customer rating and serves English food . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a low price , one star coffee shop that sells sushi , it is located next to the Ranch . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is a high - priced British restaurant that welcomes families . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a family friendly venue serving Indian food . It is located in the city centre \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Riverside is The Waterman , French food but for adults only . The customer ratings are average and the prices are under £ 20 . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a cheap Italian restaurant in the city centre . Its customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop located north of the city . They have average ratings and high costs . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a sushi restaurant near Express by Holiday Inn rated one out of five stars . \nname : The Punter | food : Fast food | price : £ 20 - 25||The Punter is a fast food restaurant priced £ 20- £ 25 \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is providing Chinese food in the high price range . It is located in the riverside . Its customer rating is average . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||While Zizzi coffee shop has a family friendly environment and prices below £ 20 , it has received a low customer satisfaction rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||An expensive Japanese coffee shop in city centre is called The Golden Palace . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||There is a family - Friendly restaurant near The Rice Boat called The Twenty Two . It is less than £ 20 and rated average . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Located near The Rice Boat , this riverside establishment , Loch Fyne , serves French food and has a customer rating of 3 out of 5 . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||Strada is highly rated and child - friendly , with a price - range over £ 30 . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove restaurant is a pub that serves French food that is in City Centre that is family - friendly that costs less than £ 20 \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||At the riverside , the restaurant The Golden Palace receives 3 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap family friendly coffee shop in the heart of the city . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Avalon||Averagely priced , highly rated coffee shop , Blue Spice is located in the city centre near Avalon and is not kid - friendly . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a restaurant serving Italian food in the centre of the city near The Rice Boat . It has a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no||Aromi is an average , not family - friendly coffee shop serving fast food in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue is a low customer Rated restaurant . The food they serve is Italian . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : yes||In the city centre there is a fast food venue called Alimentum . The price range is quite high but it is family - friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||Outside of the City centre there is a medium cost pub called The Olive Grove that serves sushi . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum serves English food on the riverside , which is kids friendly with the moderate price . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is an Indian restaurant that is kids friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||The child friendly Loch Fyne restaurant aims to serve moderately prices , English style food . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||There is a Japanese Pub near Café Brazil , Called The Cambridge Blue , The prices range £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is located near Burger King in the riverside area . It is family friendly Italian food coffee shop . With average prices range and Customer low rated . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves fast food in the moderate price range . It is located in the city centre , near Express by Holiday Inn . It is not kid - friendly and has a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee that is not family - friendly located in city centre specializing in French food and they have a low customer rating . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a fast food restaurant in the city centre located near The Yippee Noodle Bar . The price range is high but customers rate it 5 out of 5 . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||There is a Japanese pub at the riverside called The Mill . The price range is between £ 20 and £ 25 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop with Italian food . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a high priced coffee shop that is child friendly . Rated 1- 5 . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||For moderately expensive food by the riverside , you can go to The Eagle . Customers rate it 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||There is a 5 out of 5 rated coffee shop in the Clare Hall and riverside area called Clowns that offer Japanese style cuisine \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||In the center of the city , The Watermans serves Japanese food in the price range of L20 - 25 . It is kid friendly and has a high rating . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||A restaurant near The Six Bells called Fitzbillies serves Japanese food pricing more than 30 pounds . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 out of 5 restaurant in the riverside \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi is a children friendly coffee shop with a high customer rating . Like many in the riverside area the price range is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||In the city centre it 's found a low - cost coffee shop , is called Fitzbillies , serves dishes from £ 30 for all \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||Bring the whole family to The Vaults for a great value on a great meal . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||For cheap Japanese food there 's Fitzbillies in the riverside area . The coffee shop is family friendly and has a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : yes||Loch Fyne is a Chinese restaurant . The price range is around £ 20 and it is family friendly . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : no||Located at riverside is Alimentum . Offering moderately priced Chinese food , not kid friendly . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The Golden Curry is a child friendly Italian food place with a high customer rating . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly restaurant that serves Japanese food on the riverside . Customer satisfaction is low . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is coffee shop that serves average French food in city centre near Burger King . It is not family - friendly place with price less than £ 20 . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a restaurant with 3 stars , located near DE river \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||The Dumpling Tree is a non - family - friendly pub serving wine and cheese near The Portland Arms . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : yes||An average rated restaurant located in the city centre is The Rice Boat . It is a family friendly Indian restaurant \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada has a moderate price range and a customer rating of 1 out of 5 . It is not child - friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||Located near the city centre , The Golden Palace , an Italian coffee shop , with a high price range and a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a child - friendly coffee shop serving Italian food named Taste of Cambridge in Riverside near Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It is cheap , poorly rated , and not family friendly . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a children friendly English restaurant with a high price range near The Bakers . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is an adult Chinese restaurant located near The Bakers . The food is average price . \nname : The Twenty Two | food : Italian | family friendly : yes||Kid friendly , The Twenty Two serves Italian food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an Italian coffee shop with high customer satisfaction and child - friendly settings . It is located in riverside , near the Crowne Plaza Hotel . \nname : Blue Spice | food : English | price : less than £ 20 | area : city centre||Blue Spice is a English restaurant in the city center by less than £ 20 . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub which is kid friendly and serves moderately priced Chinese food at riverside . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man is near All Bar One located in city centre . They have Italian food with high prices an are not kid friendly . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly place that serves fast food . Meals average less than 20 pounds , Green Man is near All Bar One in the riverside area . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix at riverside serves Fast food at cheap prices and is rated 5 out of 5 \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low - priced coffee shop outside the city centre next to Burger King that delivers take - away . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies , located along riverside is a moderately priced coffee shop serving Italian food with a customer rating of 1 out of 5 . They are not child friendly . \nname : Strada | Type : pub | food : French | customer rating : high | near : Yippee Noodle Bar||A pub that serves French food with a high customer rating near Yippee Noodle Bar is named Strada . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a restaurant in the city centre that sells Italian food . It is near the Café Rouge . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia , it serves Italian food and has a price range of less than £ 20 . It does have a low customer rating and is not family - friendly . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : city centre | near : Clare Hall||Centrally located , Clowns is a coffee shop offering Indian food . They are located near Clare Hall . Customers have given them a low rating . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a highly rated , family friendly Indian restaurant that offers cheap food in the riverside area \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||The Mill is an Italian pub with a price range less than £ 20 . It is located in Riverside . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located around the corner from the Rainbow Vegetarian Café , Strada serves Japanese cuisine in a family friendly atmosphere and at low cost . \nname : Fitzbillies | food : Chinese | price : high | near : The Six Bells||There is a restaurant near The Six Bells called Fitzbillies . They serve high priced Chinese food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a Japanese restaurant offering cheap food at less than £ 20 in the riverside area . It is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||There is a coffee shop in riverside called the Golden Palace that serves fast food that is cheap and the customer rating of this shop is average . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix serves high priced one star rated Indian food in the riverside area . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House , located near Café Rouge , serves French food and gets high customer ratings . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a moderately priced restaurant named Strada that serves Chinese food located near the Rainbow Vegetarian Café . \nname : The Twenty Two | food : Italian | family friendly : yes||There is an Italian food called The Twenty Two which is children friendly \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||The Wrestlers is kid friendly , with an average customer rating , high price range , and English food . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||If you are looking for an average priced Asian meal , Fitzbillies is a good choice . They serve Japanese food and are located near The Six Bells . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a quick place to grab a bite near The Bakers . Prices are ok but not recommended for the kids . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix is a Fast food chain , its customer rating is low . , located in area riverside . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop . It offers Italian food . Customer rating are high . The coffee shop is on the riverside area . It is not child friendly . Prices are more than £ 30 \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub costing less than £ 20 serving Fast food near Café Rouge \nname : Bibimbap House | food : Indian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a riverside Indian restaurant , near Clare Hall . It is priced in the moderate range . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The Golden Curry is a Fast food joint . Yes it is family friendly . It has an average customer rating . \nname : The Plough | Type : pub | food : Italian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Located near Café Rouge there is a pub named The Plough that offers a kid friendly environment . It has a price range of £ 20 to £ 25 for its Italian food . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : £ 20 - 25||There is an Indian restaurant , The Dumpling Tree , and the price range is £ 20- £ 25 . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The customer rating is bad at the children friendly pub called The Cricketers near Ranch . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Located in Riverside , The Eagle , a coffee shop serving French cuisine , has a high rating among customers . The food ranges from £ 20 - 25 and is child - friendly . It is located near Burger King . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is near All Bar One in the city centre . It serves Chinese food for less than £ 20 . It is also family friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto is a moderately priced coffee shop located near The Portland Arms . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Wildwood is a Fast food place near Ranch that has an eat type of a coffee shop that has a cheap price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is an Indian food coffee shop , no family friendly with customer Rating 5 out of 5 , in riverside . \nname : Zizzi | Type : restaurant | price : high | area : riverside||Riverside and a higher price point restaurant named Zizzi . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||The Eagle has a high customer Rating in the riverside area . It has an average price range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a high rated coffee shop located on the riverside near Burger King offering fast food . It has a mid - level price range and is not children friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento along the riverside their is a kids friendly place named Browns Cambridge that serves English food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a fast food coffee shop located in riverside . It has cheap food and lowly rated by customers . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A high priced coffee shop serving fast food in the riverside area , near Raja Indian Cuisine , is The Wrestlers . It is children friendly . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||A restaurant called Browns Cambridge is located in the city centre . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Green Man is a medium price , non family friendly restaurant outside of City centre . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||In the city center , there is an average priced , non - family - friendly , Japanese restaurant called Alimentum . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Come to the Cocum coffee shop for luxurious goodies with your family \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a kid friendly restaurant serving French food \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | near : The Portland Arms||There is an expensive Indian coffee shop , Cotto which has an average customer rating and is located at the riverside near The Portland Arms . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is non family - friendly restaurant that is located in riverside . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a moderate price range coffee shop near Café Sicilia , The Punter . They have fast food and is kids friendly with the customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A coffee shop called Cocum serves high quality Italian food that is low priced and family friendly . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults pub is near Café Adriatic . It has a 3 out of 5 rating and is suitably priced between £ 20 - 25 . \nname : Wildwood | Type : pub | food : Chinese | price : less than £ 20 | customer rating : low||Wildwood , a pub , serves Chinese food in the low price range and has a low rating by customers . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : no||Customers gave The Wrestlers a high customer rating . The Wrestlers serves English food for a price range of more than £ 30 and is not children friendly . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Near The Portland Arms there is a family Friendly French pub called The Dumpling Tree . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Located in the city centre near All Bar One is Green Man which is family - friendly , serves fast food that costs less than £ 20 . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers is located near All Bar One . It serves fast food . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||A children Friendly and high price range pub in riverside is The Olive Grove . \nname : Strada | Type : pub | food : Italian | customer rating : low | near : Yippee Noodle Bar||Near Yippee Noodle Bar is an Italian pub named Strada . Strada has a low customer rating . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||The Eagle is high priced and sits riverside , with a customer satisfaction of 1 out of 5 . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman only has an average customer rating , but it 's cheap , family - friendly , and located on the riverside . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is located on the riverside , near Avalon . It is a kid Friendly coffee shop , with a high Rating , ranging in the price of £ 20 - 25 . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Italian food at more than £ 30 . It is not children friendly but had high customer ratings . It can be found near Express by Holiday Inn in the city centre area . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : city centre | near : The Sorrento||The Mill is in the city centre near The Sorrento . It is a Japanese coffee with with a moderate price . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a 3 star , family friendly coffee shop located by the margin of the river next to Burger King that provides Japanese food for a cheap price . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : high||There is a Japanese restaurant that has a 5 - star rating and is affordable , called Browns Cambridge . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The high priced Italian coffee shop , Cocum , is rated ' 1 out of 5' \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near the Crowne Plaza Hotel is kid friendly and serves English food . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada is a restaurant that was rated 5 out of 5 by customers as it provides great service and is also child - friendly . The price range is over £ 30 for good reasons . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : high||The Cambridge Blue is a fast food restaurant with a high customer rating . \nname : Bibimbap House | food : Indian | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is an Indian restaurant that costs more than 30 euros and is located at riverside near Clare Hall \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||The 3 star rated coffee shop Cotto is located near The Portland Arms . It has a low price range . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is in the mid price range . It is family friendly . It offers a full English breakfast . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop which serves Italian food . It is located in Riverside , at a moderate price range . It is kid friendly and has a customer rating of 1 out of 5 . You should check it out . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||In the city center near Yippee Noodle Bar , you can find Alimentum . They have English food with moderate prices , there customer rating is 3 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||Taste of Cambridge is an expensive restaurant that was given a customer rating of 3 out of five star . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers serves inexpensive French food , has an excellent customer rating , but is not family - friendly . \nname : Loch Fyne | food : Indian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne has a customer rating of 3 out of 5 . They serve Indian food in the riverside area near The Rice Boat . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is kids friendly in the riverside area serving French food with a customer rating of 3 out of 5 \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes||The Olive Grove makes Italian food for children Friendly with high price in city centre . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||Near the Ranch , Cotto serves Japanese food . Their family friendly atmosphere has an average customer rating . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House , near Clare Hall in the riverside area , is a high end Japanese food venue . Clowns is a restaurant near The Portland Arms . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a Japanese restaurant that offers quality food for fair prices . This restaurant is located near The Six Bells . They offer food within the £ 20 - 25 range which is why they are popular amongst customers . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||Taste of Cambridge is a restaurant in Cambridge city centre serving meals at the high end of the price scale . The customer rating is low . \nname : The Rice Boat | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Indian food , customer service rating 3 out of 5 , located in Riverside , kid friendly \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||The 3 star ranked Blue Spice coffee shop is great for the family and other options are Avalon \nname : The Olive Grove | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub located near riverside . It is children friendly and food costs more than £ 30 . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||A child friendly eatery , located near a Ranch , Cotto provides a range of English food . It has a high customer rating . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant with dishes less than 20 pounds located in the city centre near Express by Holiday Inn . It has a low customer rating and is not family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is located in the city centre , quite close to Burger King . It is a family - friendly Japanese coffee shop with great reviews and low prices . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a English style restaurant that is not kid friendly . The customer rating is 5 out of 5 , and is located in city centre . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||If you are looking for a pub with a decent price range , The Olive Grove may be a good option . They have Indian food and are located near the city centre . They do not allow children . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||There 's a friendly children coffee shop near The Portland Arms , called The Cricketers while they have a low customer rating they serve great French food . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Visiting Clare Hall and wanting Japanese food , then head to Clowns coffee shop on the riverside with it 's 5 out of 5 customer rating \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi is low rated as 1 out of 5 . It is a kids friendly pub which serves English food . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a fast food pub near Café Rouge . They are family friendly and prices are cheap . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop that is fairly private across from the Ranch . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum restaurant , 1 out of 5 customer rating and children friendly too . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||In the city centre neat The Portland Arms , there is a coffee shop called Cotto that serves Japanese food . It is moderately priced and has a customer rating of one out of five . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a riverside restaurant offering a high - priced English menu in a child - friendly setting . It received an average customer rating \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : no | near : Café Rouge||The Plough near Café Rouge is a pub providing Fast food within a moderate price range . They are not kids friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a family - friendly pub with a high price located in the City - center and is just south of the river . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a French coffee shop near Café Sicilia . The ratings are average and the price range is less than £ 20 . It is not family - friendly . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||French cuisine pub in the riverside area - The Waterman , with outstanding ratings . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : high||The Dumpling Tree is a restaurant with a high price range . It serves Japanese food . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is an upscale American eatery , located on the river . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly coffee shop in the riverside area near Raja Indian Cuisine . They offer Indian food at a moderate price range . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||High customer rating , kids friendly , near Riverside . Aromi is a coffee shop and fast food joint . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||Near the river is highly rated The Eagle . Its prices range from £ 20 to £ 25 . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is located near Clare Hall in the city centre . It serves Chinese food for under £ 20 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||There is a coffee shop that serves Indian food called Aromi near the riverside that is child friendly and has average ratings . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||The Japanese restaurant Loch Fyne , is children friendly and is more than £ 30 \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a cheap , family friendly pub on the outskirts of the City center . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||A new children friendly shop with prices starting with 30 £ called Green Man is now open near the riverside . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Crown Plaza Hotel is close to Browns Cambridge , which has a kid friendly dining venue serving Japanese cuisine available , but the quality of the place has a very low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Fast food in the riverside area near the Crowne Plaza Hotel . It is child friendly and has an average customer rating . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||There is a Fast Food Midsummer House near Café Rouge with the low customer rating . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||Taste of Cambridge is a restaurant with customer rating 3 out of 5 . It is in the high price range . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a highly rated coffee shop located north of the city . The prices are average . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : no||The Rice Boat on the riverside serving English food is not family - friendly and was given average customer ratings . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - friendly pub near the Ranch , but it has a low customer rating . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||There is a moderately priced Japanese restaurant in Riverside near Clare Hall called Bibimbap House . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : no||Though average and non family - friendly , The Wrestlers is a cheap Italian restaurant . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Indian food it is not a child Friendly , with a low customer Rating and a high price Range by a riverside near Burger King . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||restaurant The Golden Palace is on the riverside . It has an average customer rating . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum is a restaurant providing fast food in the mid price range . It is located in the city centre . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||In the city centre , you will find The Olive Grove . It is a low - priced pub which serves Indian food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The Golden Palace is coffee shop serving fast food on the riverside . The prices are high and the customer ratings are average . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||Cocum family - Friendly coffee shop provides cheap Italian food . The customer rating is average . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serves moderately - priced Japanese food in the city centre . It is rated only 1 out of 5 . It is not kid - friendly . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||There is a family - friendly restaurant named The Golden Curry which serves Italian food . It is situated near Café Rouge in the city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Looking for a moderately priced coffee shop on the riverside . Tired of Fast food like Burger King . Try The Eagle . With a customer rating of 1 out of 5 you can 't go wrong . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||In riverside is a fast food restaurant called Blue Spice that has a price range of less than £ 20 . \nname : Bibimbap House | food : Fast food | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House has a price range of £ 20 - 25 , near Clare Hall in Riverside area and serves fast food . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a family - friendly , low cost restaurant in the city centre with an average customer rating . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||In the city centre , you 'll find Italian food at The Phoenix , rated 3 out of 5 by customers , at a moderate price . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a high rated , kids friendly restaurant . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a pub providing Fast food in the cheap price range and is family friendly . It is located near Café Rouge . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : no||The Olive Grove is a restaurant that is not family - friendly in the City Centre area . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a place that sells Japanese food in the moderate price range with a customer rating of only 1 out of 5 and it is not child friendly \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||There is a cheap restaurant The Eagle . It is a coffee shop that offers Indian food with an average customer rating . It is in the city centre area near Burger King , it is not family friendly . \nname : Bibimbap House | food : Indian | price : more than £ 30 | area : riverside | near : Clare Hall||Indian cuisine Bibimbap House in riverside near Clare Hall has a more than average price range . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a kid - friendly restaurant in riverside that serves English food . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop serves Japanese food by the riverside . It is moderately priced and near The Sorrento . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a family friendly , French establishment with a 5 out of 5 rating . Located near Ranch . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers , a 5 - star , family - friendly restaurant serves local food at low prices . \nname : Strada | Type : restaurant | customer rating : average||Strada is a restaurant with an average customer rating . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre is a kid friendly , moderate - priced fast food restaurant with a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle , located in Riverside , near the Burger King , has a high customer satisfaction rating , and is ideal for Fast food . It is a children - friendly location , and offers food in the more than £ 30 price range . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers offers Chinese food with a price range over 30 and customer rating of high and is not children friendly . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers ' English food was given a high customer rating . It is not children friendly and has a price range of more than £ 30 . \nname : Cotto | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Italian food rated 5 out of 5 in Cotto . It is family friendly place by the Ranch . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a non - family friendly restaurant with a customer rating of 1 out of 5 ; it is located near Café Rouge in the City Centre . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||By the riverside and Café Rouge is Green Man , a pub that serves Japanese food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace is a coffee shop that serves fast food with a cheap price range and an average price range . Located near the riverside . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop that serves kid friendly food and is located at the city centre near Raja Indian Cuisine . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : 5 out of 5||Browns Cambridge provides Chinese food in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||A pub , The Mill , is located in the riverside area . It serves Japanese food at more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace coffee shop offers low priced wine and cheese . They are located in the City centre and have a 3 out of 5 customer rating . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||In Riverside , there is a place called The Phoenix that serves Italian food . It has an average customer rating . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 1 out of 5||The Wildwood pub serves Indian food for a moderate price , the customer rating is 1 out of 5 . \nname : Cotto | food : English | near : Café Rouge||Cotto , which offers English food , is located near Café Rouge . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a 5 out of 5 restaurant that provides Indian food . It is located in the city centre area and is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||If you 're looking for a coffee shop that also offers fast food , check out The Cricketers , which offers a kid friendly environment and 1 - star rating near The Portland Arms . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : yes||Alimentum provides Indian food in the high price range . It is located in the riverside . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||In the vicinity of Clare Hall you will find the quaint riverside restaurant Bibimbap House , serving Japanese cuisine . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located in riverside area near Crowne Plaza Hotel . It serves Italian food and It is not family - friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi is a high end , family friendly coffee shop near Riverside . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in Riverside is The Rice Boat , a French place with a price range of less than £ 20 . It has a low customer rating , but is family friendly . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||Highly rated restaurant Midsummer House serves Chinese food , it is located in the city centre near Café Rouge . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a children friendly coffee shop with a high customer rating specialized in Italian food near The Portland Arms \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Blue Spice , a three star , low cost venue on the riverfront . It is a family friendly location . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||A Japanese pub with a price range less than £ 20 is The Cambridge Blue which is around Café Brazil . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : city centre||A French restaurant The Phoenix in city centre is high with a customer rating of 3 out of 5 . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : no||The Wrestlers is an English style , high priced restaurant with an average customer rating that is not children friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||There is a child friendly French coffee shop in riverside called Aromi ; it has a low customer rating . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is a great place to take the family out for a nice Italian meal , every bite is worth your buck . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves Chinese food in riverside . It is kid friendly and located near The Sorrento . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree is a French restaurant with a price range of less than £ 20 . \nname : Wildwood | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a Indian coffee shop with a high rating and a price range of £ 20 - 25 near Ranch . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice is Italian located by the riverside with cheap food less then 20 euros \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly Indian coffee shop near Crowne Plaza Hotel at Riverside . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is in the city center . near , Express by Holiday Inn . They have a one star rating , and is a family friendly place that offers cheap food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop has a good offer on soft drinks , potato fries and burgers . The quality is all right for the money and it is a family friendly local , nearby Burger King . \nname : Bibimbap House | food : English | price : high | area : city centre | near : Clare Hall||Bibimbap House is a high - end English restaurant located in the center of the city near Clare Hall . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall with high ratings . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a Chinese restaurant in the moderate price range . Is is not a child friendly place and customer rating is low . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||A pub that serves cheap English food is The Cambridge Blue , which is located near Café Brazil . \nname : Blue Spice | food : Chinese | price : cheap | area : riverside||Blue Spice Chinese is cheap and on the riverside . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is located in the city centre , it serves English food , is expensive , not children friendly and is highly rated . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers ' offer Chinese food . It is a more premium choice to dine out , not children - friendly . With very high customer rating , prices range from £ 30 . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : no||The Rice Boat in based in the city centre which serves Indian food . The customer rating is low and isn 't family friendly . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a higher - priced one star restaurant located near All Bar One . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||A children friendly fast food restaurant near The Sorrento is called Browns Cambridge . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you 're looking for a family friendly fast food restaurant , check out The Rice Boat . Located near the Express by Holiday Inn , at the city centre , The Rice Boat is rated 5 out of 5 . \nname : Bibimbap House | food : French | price : high | area : riverside | near : Clare Hall||Bibimbap House is a French food serving restaurant located near Clare Hall , at the riverside . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is non kids friendly and offers fast food at 1 out of 5 ratings ; it has moderate price range and is located near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is an average priced pub near Café Adriatic . It has a customer rating of 3 out of 5 stars . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an expensive Chinese restaurant with average customer rating . It is not children - friendly , and is located in Riverside , near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Located in the city centre , Fitzbillies is an Italian coffee shop with a moderate price range . Fitzbillies is not kid friendly and has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a high priced fast food coffee shop in the city centre near The Portland Arms . It is expensive and only has a 1 out of 5 rating . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is a cheap coffee shop in the city centre near Café Brazil and it has a customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||An average customer rating cheap Italian food pub called Wildwood . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||There is a Japanese coffee shop in riverside near Clare Hall called Clowns . Clowns has a 3 out of 5 customer rating . \nname : Bibimbap House | food : Indian | price : high | area : city centre | near : Clare Hall||Bibimbap House provides Indian food in the high price range . It is located in the city centre . It is near Clare Hall . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub located in Riverside which has an average 3 of 5 rating from its ' customers . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||The Mill coffee shop offers fast food in Riverside near The Sorrento . It is in the high price range . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a pub that sells its services for twenty to twenty - five euros . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant near Express by Holiday Inn in city centre . It has average customer ratings and is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge with an excellent customer rating is an Italian coffee shop located near Crowne Plaza Hotel in riverside . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers restaurant is not family friendly and has received poor reviews . It serves healthy food . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a Fast food restaurant located in the city centre . It is not a family - friendly restaurant with a price range of less than £ 20 . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers provides Indian food for less than £ 20 . It is low rated and is family friendly . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : city centre||The Mill is a pub that provides Indian food in the moderate price range . It is located in the city centre . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is located by the Thames , it is an averagely rated adults only venue offering moderately priced Italian food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Italian food ; located near Crown Plaza Hotel by the riverside it has a kid friendly atmosphere and is well rated by customers . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the high price range . It is near Café Sicilia . Its customer rating is average . \nname : Green Man | food : English | price : high | area : city centre | family friendly : no | near : All Bar One||For those with expensive native tastes , Green Man offers expensive English good . It 's located near All Bar One in the city centre - but leave the kids at home . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||If you happen to find yourself strolling riverside and getting a bit hungry be sure to stop in at The Eagle . The Eagle is a great coffee ship serving French cuisine at an affordable price . The Eagle is child friendly and near Burger King . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a average price ranged restaurant in the riverside area . This family friendly restaurant sells Italian food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is an inexpensive , one - star coffee shop which serves sushi . It is located along the river , outside of City centre . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||Wildwood restaurant serves cheap Italian pub food with an average customer rating . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a high - priced , child friendly restaurant located near the Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a French food selling coffee shop located in the City Centre with a 3 out of 5 customer rating and a price range of £ 20 to £ 25 . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a cheap priced 5 out of 5 Indian food restaurant called The Waterman located in the city centre area . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a cheap , average Japanese coffee shop . It is located near The Portland Arms in the center of the city . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers , an adult themed fast food restaurant , is highly rated and offers meals in the £ 20 to £ 25 range . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||A coffee shop called Cotto , near The Portland Arms , offers high - quality food for a lower price . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Italian food that is near Café Rouge and has a customer rating of 1 out of 5 and is kid friendly \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop offering French food to adults in a moderate price range . \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix is a restaurant near the river . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||The Phoenix is a high - priced restaurant located in riverside offering English food . The customer rating is average . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||The high priced Green Man in Riverside is kid friendly an serves English food , which is also next to All Bar One . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge near The Sorrento is a children friendly fast food restaurant in the Riverside area . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat has English food under £ 20 rated low by customers , it is in riverside near Express by Holiday Inn . \nname : The Mill | Type : pub | food : Italian | price : high | area : city centre||One of the City Centre 's expensive pubs is called The Mill , with an Italian theme . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Kids are welcome to eat at The Waterman in the city centre . It sells Japanese food that is moderately priced , but it has a low customer rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||On the riverbank is The Waterman . A pub serving spirits and pasta . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a child friendly restaurant with a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : more than £ 30||The Dumpling Tree serves English cuisine with prices at just over £ 30 \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop located in the City Centre . It sells French food and has a £ 20 to £ 25 price range . It has a 3 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||In the area of riverside is The Olive Grove . It is a pub that is kid friendly , and has cheap Italian food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Fitzbillies is non - children friendly highly rated expensive coffee shop that serves Japanese food . It is located in the riverside . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter is a cheap coffee shop that sells Indian food . While it is not family friendly , customers rate it 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||There is a cheap fast food restaurant called The Dumpling Tree in Cambridge . \nname : The Punter | food : Italian | price : moderate||There is a moderate priced place The Punter provides Italian . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a fast food coffee shop near The Portland Arms moderately priced \nname : The Punter | food : Japanese | price : moderate||Japanese food served by The Punter for a moderate price \nname : Green Man | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man , a kid - friendly restaurant near All Bar One , provides a £ 20 - 25 English meal . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||There is a coffee shop named Wildwood that serves French food near Ranch . The average rating is 3 out of 5 and it has a high price range . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||English food is served at Alimentum in the riverside area , near Yippee Noodle Bar . They have a price range of £ 20 - 25 and a high customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Fast food in the high price range . It is located near of Burger King . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that provides Indian food . It is located in the city centre near Crowne Plaza Hotel . It has a low customer rating . It is family friendly . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a children friendly , high priced , average place in riverside , serving Chinese food . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn , in the city centre , is the Chinese restaurant The Rice Boat . It 's expensive , not child - friendly , and has an average customer rating . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle is a restaurant which serves French food . It is very highly - rated by customers . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 3 out of 5||Wildwood is a pub that serves Indian food with moderate price Range and 3 out of 5 customer Rating . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry is a formal Japanese restaurant with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside area , Fitzbillies coffee shop provides high - cost , low - quality fast food . Not child - friendly . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||The Eagle in Cambridge has five - star reviews for its food , and it 's licensed as well . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : no | near : The Portland Arms||The Punter is in the center of the city near The Portland Arms , it is not child - friendly and the price range is more than 30 pounds . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop serving fast food with a customer rating of 5 out of 5 . It is near Clare Hall on the riverside . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high priced , child friendly , Italian restaurant near riverside with a 1 out of 5 rating . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||There is a highly rated kid friendly coffee shop serving fast food located near The Portland Arms called The Cricketers . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn is a fast food restaurant that has a moderate price and is kid friendly called The Rice Boat . It has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : English | customer rating : 1 out of 5 | area : riverside||English food is served in The Waterman pub , down by the riverside . its customer Rating is 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||Cocum , a Japanese coffee shop has been rated average by customers . It is cheap , and is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : high||There is a Japanese restaurant with a high customer rating called The Cambridge Blue . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop located in the city centre near Burger King with a moderate price range serving Italian food . Kids are not allowed and customers have given it a 3 out of 5 rating . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kids friendly French restaurant near the Express by Holiday Inn that has a good price range \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill is a pub serving English food . It is located in the outer city center . and has an average price range . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a poorly rated family restaurant near the river . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree is a restaurant with prices less than £ 20 and sells Japanese food . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||The Wildwood pub serving French food has been rated low by customers . The prices are in the high range . \nname : Cotto | food : French | customer rating : high | family friendly : yes | near : Ranch||Cotto is a French , kids friendly restaurant near Ranch . It has high customer ratings . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop serving Indian food . The price range is under £ 20 . It is in the riverside area near The Sorrento . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is a family friendly eatery on the high price end . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a cheap family - friendly Japanese coffee shop located near Café Sicilia and has a good customer rating . \nname : Bibimbap House | food : Italian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is a Italian food restaurant on the river near Clare Hall in the range of 20 - 25 euros . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near Crowne Plaza Hotel and is children friendly . It sells Japanese food . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Family friendly , riverside , restaurant with a low customer rating was called The Rice Boat . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers serving French food with a price range less than £ 20 . They are family friendly \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Indian food provides Indian food at a high price range . Have a customer rating on the average . Locate at the riverside area near to Express by Holiday Inn . Children are friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is an Indian coffee - shop style restaurant near The Portland Arms . It receives low customer ratings and is not family - friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||A family friendly restaurant , Travellers Rest Beefeater , is not expensive . \nname : The Golden Palace | Type : restaurant | price : high||The Golden Palace is a high price ranged restaurant . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||The Phoenix is a three star fast food restaurant outside of City centre . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||With a price range of less than £ 20 , The Wrestlers serves French food . It has a low customer rating , but is family friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | near : The Sorrento||There is an Indian coffee shop , The Mill , located in Riverside near The Sorrento . Meals there generally cost more than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : high||The Cambridge Blue is a restaurant that has a high customer rating , and French food . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto is a Fast food place close to Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||For a family friendly Indian coffee shop in the city centre near Burger King The Eagle offers prices less than 20 . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : riverside||Blue Spice is a cheap Indian restaurant in Riverside . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a non - family - friendly venue that serves English food . It is located near Café Rouge in the riverside area . However , it has a low customer rating . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : no | near : Café Rouge||We do not offer a child - friendly environment . Japanese food is served here at The Plough . Located near Café Rouge , Our pub is very low - priced . Located in the city centre \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||A child - friendly Japanese restaurant near the riverside is The Twenty Two . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located by Rainbow Vegetarian Café and serves Japanese food . It is medium price range , highly rated and family friendly . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers a family - friendly and cheap fast food option near Express by Holiday Inn in the city centre with 5 out of 5 customer ratings . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : riverside||The Mill is moderate priced Indian pub located in riverside . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a kids friendly Chinese restaurant . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle , a Japanese coffee shop on the riverside near Burger King , boasts moderate prices , high ratings and a family friendly atmosphere . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||The Wrestlers has high priced English food with an average customer rating . It is kid friendly . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : no | near : Ranch||The highly rated pub , The Cricketers , is located near Ranch . Don 't bring the kids . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop , providing average Japanese food . It is located near The Portland Arms , riverside . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is in the moderate price range with a customer rating 3 out of 5 . Located in city centre , it serves Chinese food and is kid friendly . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is an Indian restaurant near The Bakers where the meals cost less than £ 20 , but it is not family friendly . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : no | near : The Sorrento||The Taste of Cambridge is a pub located near The Sorrento in the city center . \nname : Green Man | price : high | area : riverside | family friendly : yes||A children friendly place near the river side serving high priced food is Green Man . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman is a Chinese restaurant in the high price range by the riverside with an average customer rating that is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that offers Japanese food for more than £ 30 . It is located in the city centre near Raja Indian Cuisine and is not child friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is cheap coffee shop that is rated 6 stars located at Ranch \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Japanese coffee shop in the riverside area , near Raja Indian Cuisine . This restaurant is not kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||There is a Low price coffee shop serving French food named The Eagle Located in city center near Burger King with a low customer rating and is family - friendly \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Italian food and is rated 1 out of 5 . It 's in Riverside . Yes it is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The kid - friendly coffee shop Fitzbillies serves French food at prices ranging from £ 20 to £ 25 . It is located by the riverside . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a low price pub right by Café Brazil . \nname : Green Man | Type : pub | food : Indian | area : city centre | near : Café Rouge||The Green Man pub serves Indian food and is located in the city centre near Café Rouge \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge ate at a coffee shop . They are not family - friendly . The food is French and its near Crowne Plaza Hotel . It is located in the city centre and the customer rating is low . \nname : Clowns | Type : coffee shop | food : French | customer rating : high | area : riverside | near : Clare Hall||Clowns is a fantastic coffee shop serving French Food . You can find it riverside near Clare Hall . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The Cambridge Blue is a five - star restaurant which serves traditional English food . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop serves Indian food for a moderate price near Café Sicilia . It has a customer rating of 3 out of 5 and is not kid friendly . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi is a French pub with a family approved environment and low customer satisfaction . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||If you 're looking for Chinese food , you could try The Wrestlers , it is quite cheap but the reviews are not great , although they are family friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant offering mid priced food and drink located close to the city centre and close to Express by Holiday Inn \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||Located near The Bakers is a child friendly establishment called The Golden Curry which serves moderately priced Italian food . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||In the riverside area , there is a cheap , Italian coffee shop called The Golden Palace that has average customer ratings . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a fast food place that is cheap and has toilets . It is north of the City centre and is next to All Bar One . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is an Indian restaurant with a moderate price range . It has an average customer rating and is kid friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove pub overs Japanese food near Riverside and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap coffee shop Fitzbillies just outside the centre of the city that provides sushi and fish . It is low in cost and family friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||You can find The Cricketers coffee shop close to The Portland Arms . they have an average customer rating , and they serve French food . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||A coffee shop named The Punter has Italian food and is located near Café Sicilia . It is not children friendly and has a high price range with ratings of 1 out of 5 . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly restaurant with a price range of less than £ 20 . They serve English food located next to a river , although they have a low customer rating . \nname : The Punter | food : French | price : high||The Punter sells high priced French food . \nname : Green Man | Type : restaurant | area : riverside||At the riverside , there is a restaurant called The Green Man . \nname : The Golden Curry | food : Japanese | price : cheap | family friendly : yes | near : The Bakers||Located near The Bakers is The Golden Curry , a Japanese place with cheap food . It is family friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is an expensive , family friendly coffee shop in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||Near the river and low prices , The Golden Palace is your one stop for coffee and sushi . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : no||The Olive Grove is not children friendly but they serve English food . It is a high price range pub in the riverside area . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||There is a average not so family - friendly Fast food place The Golden Curry located by the riverside near Café Rouge . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for a family - friendly coffee shop that offers French eats , try the riverside area 's Taste of Cambridge , located near the Crowne Plaza Hotel . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Green Man is not a family - friendly restaurant located in the riverside .average price range is less than £ 20 . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly Japanese restaurant . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||It 's a coffee shop that customers rate high called The Golden Palace also Fast food in the riverside area more than 30 \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||The Mill is an affordable pub just outside of the City center . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||There is a family friendly restaurant offering fine dining called Loch Fyne . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves Indian food and has a price range of less than £ 20 , low customer ratings , and is family friendly located near Café Sicilia . \nname : Alimentum | food : Indian | price : cheap | area : riverside | family friendly : yes||For a family friendly atmosphere and cheap Indian food try Alimentum located by the riverside . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House is a Japanese food near Café Rouge is rated to a low customer rate . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese food with a customer rating of 1 out of 5 . It is moderately priced , located in the city centre near Express by Holiday Inn , and not child - friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no||The Aromi is a coffee shop in Riverside , serving French food . They have an average customer rating and are not family - friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry provides Chinese food It is located in the city centre . It is near Café Rouge . Its customer rating is average . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a Japanese restaurant with moderate prices and is kid friendly . Located in the city centre near All Bar One . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns , near Café Sicilia , is moderate prices but not kid friendly . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub with a low customer rating . It is located near the Ranch . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a cheaply priced fast food establishment in the city centre . The customer rating is 5 out of 5 . The Waterman is not child friendly . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is low priced and serves fast food for the whole family . It is close to the All Bar One and is within the City center . \nname : Blue Spice | food : English | price : moderate | area : riverside||Serving English food , Blue Spice is by a riverside with a moderate price Range . \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||At 20 to 25 pounds per meal , The Vaults serves French food in a kid - friendly environment at fair prices . \nname : The Eagle | food : French | customer rating : low||The Eagle serves food and is in the city centre . It has a 1 star rating . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : city centre||You will find cheap Chinese food at The Phoenix . It has an average customer rating and is in the city centre . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||Located in the riverside area near The Portland Arms , The Punter is a kid friendly restaurant with a price range of £ 20 - 25 . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a French restaurant offering dishes less than £ 20 . It does not have amenities for children . It has received poor reviews . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A cheap restaurant in the city centre that serves English food is The Waterman . They are family friendly have a 3 out 5 rating . \nname : Bibimbap House | food : French | price : moderate | area : city centre | near : Clare Hall||French food is moderately priced at Bibimbap House near Clare Hall in the city centre . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat , there is a place called Loch Fyne that serves English food . It is in riverside and has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is a friendly for family place called The Golden Curry which provides English breakfast in the city centre near to Café Rouge with customer rating 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||There is an Indian coffee chop called The Cricketers near The Portland Arms , it has average rating , but yes it is suitable for kids to go . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a 5 star coffee shop with a great price , that is sure to make you buy . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat , there is a family - Friendly place called The Twenty Two with cheap prices and an excellent ratings . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman is a fast food restaurant with average ratings . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a restaurant , which is not family friendly , that caters to wine pairings and is located adjacent to The Bakers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is near Burger King on riverside that serves fast food . They are cheap and for the family . Coffee shop style food . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman serves Chinese food and is kid friendly located in the city centre with moderate price rage and customer rating at 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||There is a nice coffee shop The Golden Palace located north of the centre of the city that provides take - away deliveries . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 3 out of 5||Wildwood is a pub providing Indian food in the moderate price range . Its customer rating is 3 out of 5 . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough Pub is located near Café Rouge . It is an inexpensive adult only pub featuring wine and cheese . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat near Rainbow Vegetarian Café has a price range of less than £ 20 and has an average customer rating . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults , an average pub located near Café Adriatic , is less than £ 20 . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : riverside||On the riverside , there is a restaurant called The Phoenix , which sells traditional English food . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Located in the riverside area , The Waterman is a family friendly eatery with an average customer rating that offers cheap , fast food \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||A non child friendly restaurant with a 1 out of 5 customer rating is The Wrestlers . It serves Indian food . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is located in city center . , it 's a high priced restaurant . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne is a Japanese restaurant providing children Friendly food price ranged more than £ 30 . \nname : Cotto | food : Indian | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly Indian restaurant . Located near Ranch with a low rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||A great Japanese coffee shop is The Eagle along the riverside near Burger King . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||There is a welcome family service for sushi at a medium price called The Vaults . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||An accessible , good quality pub is Wildwood \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue is a restaurant that serves English food . The customer rating is 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a restaurant providing French food . It is located near All Bar One . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : no||Aromi is a pub located in the city centre . It has low customer ratings and is not family - friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove in the riverside area is a family friendly Chinese food pub less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre is Browns Cambridge , a family - friendly coffee shop serving fast food . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||Riverside pub called The Twenty Two located near Café Sicilia has a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||Located near Café Sicilia is The Punter coffee shop . It is a family friendly location that serves a variety of sushi . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is pub with food prices less than £ 20 . The food menu is English . It is near Café Brazil . \nname : Browns Cambridge | food : English | area : city centre | family friendly : yes | near : The Sorrento||The family - friendly Browns Cambridge serves English cuisine and is located near The Sorrento in the city centre \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop near The Sorrento where they sell sushi . It is in the middle price range . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a highly rated Italian restaurant in the £ 20 - 25 price range . It is not kid friendly . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||Riverside restaurant The Phoenix scores 3 out of 5 stars and is a highly priced eatery . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the city centre , is not child friendly , has a high price range , and a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||There is an averaged , low - priced pub called The Vaults located near Café Adriatic . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two offers Fast food for kids Friendly . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is an Indian food venue in Riverside that is kid friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||There is a Japanese coffee shop called Cotto their rating is quite low and the price range is over £ 30 , they are in the City centre near the Portland Arms . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is family - friendly establishment . It is a reasonably priced fast food restaurant located in the city centre . The average customer rating for this restaurant is low . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kid - friendly Indian pub . It is has a 1 out of 5 customer rating . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is a family friendly pub that offers Indian food with a high customer rating . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Japanese restaurant , near The Rice Boat , in Riverside has a customer Rating of 5 out of 5 . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two serves French food and is children friendly . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an average non - family - friendly fast food located in the city centre , near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , coffee shop and Indian food is near Burger King in the city centre , family friendly , moderate price with a Rating of 3 out of 5 . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is a cheap , non - family - friendly establishment with a low customer rating . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||cheap English food can be found at The Golden Curry near to The Bakers , and they are also family friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||They said yes at the food French in the riverside only The Twenty Two . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||In Riverside near the Yippee Noodle Bar is Alimentum , serving Chinese food , Price 's £ 20 - 25 . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||Near the Café Rouge is a pub called The Plough , It serves Japanese food and has a moderate price range . It is not child friendly . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a Chinese food restaurant whose prices cost less than £ 20 located at the riverside \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Indian with a high price range . It has a customer rating of 1 out of 5 and is sited on a riverside . It is near Yippee Noodle Bar . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Serving English food in the high price range , Bibimbap House is situated in riverside near Clare Hall . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap , family - friendly pub offering Italian options near Café Rouge . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a highly recommended high cost family friendly French food restaurant sited in the city centre near Rainbow Vegetarian Café . \nname : The Olive Grove | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||There is a family friendly Chinese pub in Riverside that has average priced food . The restaurant is called The Olive Grove . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : yes||Giraffe is a family - friendly pub with Japanese food located in the city centre . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : no | near : The Sorrento||An Indian restaurant near The Sorrento in Riverside that is not family friendly is Browns Cambridge . \nname : Fitzbillies | food : Indian | price : less than £ 20 | near : The Six Bells||Fitzbillies , a restaurant that serves Indian food for less than £ 20 , is located near The Six Bells . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults , a fast food restaurant with menu items in the more than £ 30 range . It is a child - friendly restaurant . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill is riverside , it sells English food and it 's moderately priced . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada has Italian , is high priced , children friendly , and has a high customer rating . \nname : The Waterman | price : less than £ 20 | family friendly : no||The Waterman has a price range of less than £ 20 and is not family - friendly . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub style adult oriented Chinese restaurant located near The Portland Arms . \nname : Blue Spice | food : French | price : cheap | area : riverside||There is a cheap restaurant Blue Spice located in the riverside area , providing French food . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly Japanese restaurant with a low rating . It is usually less than £ 20 and is in city centre near the Express by Holiday Inn . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a child friendly restaurant . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||In riverside the Giraffe pub serves Chinese food that is kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Next to Crowne Plaza Hotel in the city centre , you can find Browns Cambridge . This coffee shop serves highly - rated Indian food , but is not family friendly . It was rated 5 out of 5 by customers . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Aromi coffee shop , rated average by customers , is one of riverside 's family friendly places for Indian cuisine , \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House near All Bar One has a 1 out of 5 rating rated Italian food \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||Wildwood is an expensive but low rated Italian pub . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : no | near : Ranch||An average rating , The Cricketers , which is near the Ranch is not a family - friendly pub . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||Wildwood is a high priced pub that is 1 star . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada has fast food with a 5 out of 5 rating . It is family friendly , moderately priced and located near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers Indian food place is kid friendly and is moderately priced . It 's rating is 3 out of 5 . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a highly rated Chinese restaurant located near Rainbow Vegetarian Café . Location is not kid friendly ; average tab £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||For a high priced , well reviewed French food , The Eagle is coffee shop located near Burger King in the riverside area and is not child friendly . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids friendly pub providing French food . It is located near The Portland Arms . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 3 star winery that is family - friendly , and affordable . It has an ideal location just North of City centre and right next to Express by Holiday Inn . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||For meals typically more than £ 30 , highly rated The Rice Boat can be found near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers in an inexpensive restaurant serving Italian food . Suitable for families . \nname : The Rice Boat | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is located around the riverside . It serves English food and is kids friendly . It has a customer rating of 3 out of 5 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : no||A Japanese pub called Zizzi has average customer ratings , but it is not family - friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Near Avalon and not far from the centre of the city is The Blue Spice coffee shop . It is lower priced . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a family friendly restaurant called The Rice Boat located near Express by Holiday Inn . It has three stars and is moderately - priced . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : yes | near : All Bar One||In the City Centre is a French restaurant called the Green Man . It is near the All Bar One in the City centre . It is children friendly with a moderate price range . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum sells cheap English food with a customer rating of 5 out of 5 . It is located beside the riverside close to the Yippee Noodle Bar . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The Golden Curry is A child friendly French restaurant but not rated well \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , at the riverside area , there is a pub called The Golden Palace that ranges in price more than £ 30 . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Family - friendly fast food can be found at Strada near Rainbow Vegetarian Café . It has mid - range prices and a 5 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Despite not being family - friendly and having a low customer rating , Fitzbillies is a coffee shop located in the city centre where you can enjoy Japanese food for less than £ 20 . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Next to All Bar One is an expensive restaurant called Midsummer House . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi , located in Riverside , is a kid friendly coffee shop with high price ranges and average customer reasons . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the riverside area near the Express by Holiday Inn . It serves fast food and has a high price range . It is not child friendly and has a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop close to Raja Indian Cuisine with low prices and not family friendly . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The French coffee shop Cocum is moderately priced and child friendly . its customer Rating is 1 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||At The Dumpling Tree , a kid - friendly coffee shop near Café Sicilia in the riverside area , you can generally expect to spend 20 - 25 pound . \nname : The Mill | Type : pub | food : French | price : cheap | area : riverside||If you are looking for a pub in the riverside area , The Mill has a cheap price range . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a moderately priced Italian restaurant in the Riverside area with 3 out of 5 in customer rating . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne a French restaurant in Riverside next to The Rice Boat has low customer rating . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeaters near Café Adriatic in the riverside area has above average prices and poor customers feedback . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||In the city centre , The high rated , family friendly restaurant , The Waterman , serves £ 20 - 25 Chinese food . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant near Express by Holiday Inn . It is child friendly , costs more than 30 , and has a 5 out of 5 customer rating . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||For cheap prices , The Waterman , a family friendly restaurant located in the city center , provide delicious Indian food . However , the customer ratings are low . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle serves Italian food . Its rating is 1 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a kid friendly restaurant that serves Chinese food rated high by its customers . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Ideal for anyone on a family day out in the city centre , Fitzbillies is an affordable Italian style coffee shop . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Zizzi features a kid friendly , coffee shop atmosphere . It is conveniently located in the center of the city . It features moderately priced food with a below average customer rating . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is a French coffee shop with a customer rating of 5 out of 5 called Cotto . It is in Riverside , near The Portland Arms , and is in the cheap price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes||Family friendly Aromi is a coffee shop in city centre serving Indian food . It 's customer ratings are low . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is low priced , rated three stars and is for the whole family . It is in the City center close to Burger King . It serves fine food . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : city centre | near : The Sorrento||The Mill is a high class coffee shop located near The Sorrento in the city center with servers up fantastic Fast food . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The price range is high in a store name The Waterman but the food is Italian \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : no||The Alimentum is not kids - friendly . It is located in the city centre with English food and moderate price range . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Your children will love staying at The Crowne Plaza Hotel if you feed them pizza from The Waterman \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||City centre located coffee shop The Golden Palace , serves fast food , with low prices and ratings . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||The Wildwood is a coffee shop near Ranch . It is mid - priced and has 1 star . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Family - friendly Fast food is served at The Golden Curry located near the Café Rouge in the city centre . \nname : The Eagle | food : French | customer rating : average||The Eagle has an average customer rating and French food . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a Chinese restaurant in the £ 20 price range located in the city centre . The name is The Rice Boat , and it has a low customer rating , but is family friendly and it is located near the Express by Holiday Inn . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop , serves fast food , for all the family . Near Crown Plaza Hotel . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a pub that located in area Riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is a high customer rating coffee shop Fitzbillies located in the riverside that provides Japanese food . The price range is £ 20 - 25 and no kids friendly . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is located near the Yippee Noodle Bar in the city centre . It servers Japanese food in the high price range and has a 3 out of 5 rating . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman pub in the riverside area offers French food . It has an average customer review . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : yes||The Wrestlers is a Chinese food restaurant in the high price range that has average customer ratings and is kid friendly . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||Wildwood is a pub serving English food . The price is high and the customers have rated this as average . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry provides Indian food Its customer rating is 1 out of 5 . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately - priced Italian restaurant near Rainbow Vegetarian Café . It is kid - friendly and has a high customer rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a fast food coffee shop near to Ranch , it is highly rated and on the expensive side . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub with French food located near The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||The coffee shop that is located in the city centre called The Golden Palace with Italian food and high price range with a customer rating 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that also serves Indian food priced between £ 20 - 25 , located near Burger King on the riverside . It 's customer rating is high , and the establishment is kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a high priced coffee shop located in riverside which serves Fast food . 1 out of 5 customers rate it , it is not children friendly \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Even the children didn 't like the French food at the riverside The Rice Boat cause it was to expensive since it cost more then the 30 a night Express by Holiday Inn \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||Highly rated , and with prices above £ 30 , The Rice Boat is nearby the Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a cheap coffee shop serving fast food near Ranch . It has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||an English restaurant called Browns Cambridge with a child friendly service in the riverside area is near The Sorrento . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Italian styled coffee shop , Aromi , is family friendly with an average customer rating . It 's located in the riverside \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||The 5 star pub Zizzi is family friendly which offers wine and cheese . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||If you are looking for Italian food priced around £ 20 - 25 , you might want to try Alimentum , which has a high customer service rating , and is located in the center of town near Yippee Noodle Bar . \nname : The Vaults | food : Indian | price : £ 20 - 25 | family friendly : yes||Kids friendly establishment , The Vaults serves Indian food in a price range of £ 20 - 25 per person . \nname : The Eagle | food : Japanese | customer rating : 1 out of 5||The Eagle serves Japanese food and has a customer rating of 1 out of 5 . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a low customer rated restaurant located The Rice Boat . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||Located riverside , The Punter is a child friendly , high priced restaurant located near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||In the city centre , Fitzbillies is a adult fast food coffee shop with high price range and a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||The Waterman pub is close to the river . It serves French cuisine achieving a rating of 3 out 5 . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : no||Strada is a high priced restaurant with a customer rating of 3 out of 5 . It is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a riverside coffee shop serving Fast food with a £ 20 - 25 price range . They 're not kid friendly but have a high customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||The Loch Fyne restaurant serves wines and cheeses in a family friendly establishment . Their prices are in the low range . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is average . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Come to Strada , an average rated non child friendly Italian eating establishment near the Rainbow Vegetarian Café . They 're prices are high \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two , close to the river , Japanese dining for the whole family . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : yes||Although it has a low customer rating , The Rice Boat is a family - friendly French restaurant located in the city centre . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Close to the city centre is an expensive one star restaurant called The Waterman , It is family friendly . \nname : Cotto | food : English | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cotto is a restaurant near Ranch English people rating 3 out of 5 , kids friendly yes \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||There is a restaurant Browns Cambridge that is cheap and rated 3 stars . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is less than £ 20 and Italian food . its in the city Centre but has a low rating . \nname : Cotto | price : high | area : riverside | near : All Bar One||A high priced riverside location situated by All Bar One is Cotto \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a French coffee shop located in the city centre . It has a high price range , but a customer rating of 3 out of 5 . It is located near Burger King , and is not children friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop near Ranch serving Japanese food . It has a high customer rating and is in the £ 20 - 25 price range . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||Wildwood pub , serving French food , is moderate priced with a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Japanese coffee shop offering a child friendly environment . They are located in riverside near Raja Indian Cuisine . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||At Riverside is a high price , bad rating coffee shop called The Golden Palace . \nname : The Rice Boat | food : Italian | area : riverside||The Rice Boat , located near the Riverside , is an Italian restaurant . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||there is a cheap family friendly coffee shop Zizzi in riverside . it has a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop that is located on the riverside near Burger King . The Eagle serves fast food and is moderate in pricing . Customers rate the coffee shop 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The English restaurant located near Café Rouge on the river is called The Golden Curry . It has a low rating but is child friendly . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two is a Chinese restaurant located in river side . Kid friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman , located near the riverside , is a cheap Chinese restaurant , receiving high ratings of 5 out of 5 , but is not family friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||It is not recommended to take your family to the poorly rated , cheap Italian coffee shop ' Cocum ' . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : city centre | near : Clare Hall||Located in the city centre area near Clare Hall is fast food restaurant Bibimbap House . Average price is less than £ 20 . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||A family friend pub is near The Portland Arms . Its called The Dumpling Tree . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge has a low customer rating in the less than £ 20 price range . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese restaurant that has an average customer rating . It is located in the city centre , near Café Rouge . It is not family friendly . \nname : Midsummer House | food : Chinese | customer rating : average | near : Café Rouge||Midsummer House has an average customer rating . They serve Chinese food near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a moderate priced Indian coffee Shop located in city centre near Burger King . Kid friendly . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , average rating is located in the center of city near Café Rouge \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||There is an inexpensive adult only coffee shop Blue Spice located near Avalon . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||For a cheap meal in riverside , The Golden Palace pub , close to Rainbow Vegetarian Café , is the place to eat \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub that serves Indian food near the riverside . It costs less than £ 20 and is not family friendly . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , located along the riverside near the Yippee Noodle Bar , serves wine and hors d 'oeuvres in the high price range and has a three - star customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||The French coffee shop Cocum is cheap , and is not family - friendly . Customers have rated it low . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has Italian food by the riverside and Café Rouge . It is family friendly and received a customer rating of 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||The Vaults , a 3 out of 5 star rated coffee shop in the 20 - 25 £ price range , is near Café Brazil and located in the city centre . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop is located in Wildwood near Ranch . Wildwood is moderate in price gaining a 1 out of 5 rating from consumers . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||A family safe , mid priced coffee shop located next to Burger King is The Eagle . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||The Waterman is a French restaurant in the city center . Customers have rated it low , as its price range is more than £ 30 and is not kid - friendly . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low rated , low priced sushi restaurant that isn 't family friendly near the Rainbow Vegetarian Café . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no||French coffee shop , Cocum , is not child friendly , doesn 't get good reviews and is expensive . \nname : The Twenty Two | food : Fast food | family friendly : no||The Twenty Two is a fast food establishment not suitable for families \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located in Riverside , Aromi is a family friendly coffee shop which serves French food and has a 5 out of 5 rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Indian food meets coffee shop at The Wrestlers located in the city centre near Raja Indian Cuisine . This shop is family friendly and priced at less than 20 pounds . \nname : Cotto | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a 5 out of 5 customer rated , family friendly restaurant that serves Chinese food near Ranch . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant serving average - rated Chinese food , with more wealthy clentele . It is not child - friendly , but located very close to the Rainbow Vegetarian Café . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||If you are looking for a location that is children friendly but not cheap , try The Twenty Two in the city centre near The Rice Boat . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman serves cheap , English , highly rated food in an adult friendly environment at the city centre . \nname : The Cambridge Blue | Type : pub | food : Indian | price : cheap | near : Café Brazil||The Cambridge Blue is a pub offering authentic Indian food at a reasonable price . You can find it located by the Café Brazil . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||High priced English pub Wildwood has an average customer rating . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : city centre | near : The Sorrento||The Mill is in the city center near The Sorrento . It is an Italian coffee shop with a high price range . \nname : The Eagle | food : Chinese | customer rating : average||The Eagle is a restaurant that serves average Chinese food . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub near Ranch \nname : Strada | Type : pub | food : Japanese | customer rating : high | near : Yippee Noodle Bar||There is a Japanese Pub named Strada near Yippee Noodle Bar that has a high customer rating . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||In the riverside area is a kid friendly English food place named Green Man . It has a moderate price range . It is near All Bar One \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers inexpensive Chinese food . It is located near the riverside near Express by Holiday Inn . It is not a place for families . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : high | near : Café Brazil||The Cambridge Blue is a pub that provides Chinese food in the high price range . It is near Café Brazil . \nname : The Punter | food : English | price : high||Offering English cuisine , The Punter is an expensive high price restaurant . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a cost - friendly coffee shop that serves sushi . It is located near The Sorrento by the river . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : no||Loch Fyne is an expensive Italian restaurant that is not family - friendly \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||There is a cheap fast food restaurant near All Bar One called Midsummer House . It has an average customer rating . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada , located near the Rainbow Vegetarian Café , has a low customer rating , but it 's Chinese at a lower price in a family friendly atmosphere . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a children - friendly high rated pub , priced more than £ 30 . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar is a Fast food place called Alimentum and is on the riverside , serves fast food , and also has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : high | area : city centre||The Mill is an Indian Pub in the high price range located in the city centre . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||The Dumpling Tree serves food . It is not family friendly and is near The Portland Arms . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is great place for fast food , family atmosphere , warm clentele and moderate prices \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||Highly rated restaurant The Golden Palace can e found on the riverside . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||A well priced family friendly restaurant is The Vaults . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly Italian coffee shop near Burger King in the riverside area . It is high priced with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||for expensive Japanese food in a family friendly place there is The Golden Curry which is near The Bakers \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is an Italian coffee shop located by the riverside which is child friendly and has a rating of 1 out of 5 \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a moderately - priced fast - food chain that is friendly to kids and near The Bakers . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a cheap pub , located near the Café Rouge . Only caters to Adults , no kids allowed . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman sells Indian food for a high price in the riverside area , with a customer rating of 1 out of 5 . They 're child friendly . \nname : The Phoenix | food : Italian | customer rating : average | area : city centre||The Phoenix has an average review . It is Italian and is in the city centre \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Forbid friendly fast there is The Waterman located in the Crown Plaza Hotel . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||Situated by the riverside The Rice Boat is a child friendly restaurant that serves Italian food and has a high customer rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi coffee shop serves fast food in the city center . The customers give the restaurant 5 out of 5 rating for its adult environment . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice , a riverside coffee shop located near Avalon , is family - friendly . its price range is under 20 pounds and the rating is low . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : no||Considered to be average - rated restaurant , The Wrestlers offers high price range Chinese food . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two serves English food in the Riverside area and is kids friendly . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is an average priced pub that is highly rated and not kid friendly . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Blue Spice is reasonably priced , not kids friendly and its customer rating is 1 out of 5 . It is located at the city centre . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : no | near : All Bar One||The Green Man is a Chinese food restaurant in the riverside near All Bar One . It has a high price range and is not family friendly . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Yes , it is moderately priced . The English food is good at The Wrestlers . It has a 3 out of 5 rating . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Indian food in the moderate price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Located in the city center is coffee shop called Fitzbillies which serves Indian food . It is moderately priced and has an average customer rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a family friendly Italian pub near the river . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly Chinese restaurant located near Crowne Plaza Hotel . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood is a pub with medium pricing and is also rated as a 3 star restaurant . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a Japanese coffee shop , Aromi , which has 5 out of 5 customer ratings and is located in riverside . It is not family - friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||freshly prepared 5 star foods Wildwood coffee shop is just up from the Ranch . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Located near The Portland Arms . You will find a kid friendly coffee shop called The Cricketers . they serve French food , and have an average customer rating . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman in the city centre offers upscale Italian cuisine at a high price with some customer satisfaction . \nname : The Vaults | food : Japanese | price : cheap | family friendly : yes||The Vaults is a low priced , Japanese restaurant . It is a family friendly place with a lovely atmosphere . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge specializes in English cuisine . They have a high priced menu and have an average customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough offers a fine dining experience that is family friendly . Café Rouge is located close by . \nname : Green Man | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Fast - food is available at Green Man on the riverside for over 30 pounds per person . Its a child friendly venue and you will find it near All Bar One . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||High priced Rainbow Vegetarian Café named Strada rated 1 out of 5 by customers . The place is child friendly and serves English food . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The high priced Chinese restaurant called The Waterman in Riverside is not child friendly and has a rating of 1 out of 5 . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||By the Riverside is a restaurant named Loch Fyne that serves Japanese food . It is located near The Rice Boat and has a customer rating of 3 out of 5 . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly , fast food restaurant near All Bar One . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||At the riverside and close to Express by Holiday Inn , The Rice Boat serves Italian food in a high price range and has an average customer rating . It has a children - friendly setting . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap family friendly pub with a customer rating of 5 out of 5 . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a low - priced restaurant in the north city that delivers family services \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||We do not offer a child - friendly environment . Japanese food is served here at The Olive Grove . Our pub is very low - priced . Located in the city centre \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||Located on the riverside near the Rainbow Vegetarian Café is The Golden Palace . A pub which serves cheap food . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry offers low rated Italian food in a non - family - friendly environment . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a moderate - priced coffee shop located by the riverside , serving Italian food and 1 out of 5 customers recommend it . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||There is an expensive pub , with average customer ratings , near Café Adriatic . It 's called The Vaults . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is not a family - friendly restaurant . It is riverside near Café Rouge and has a customer rating of 5 out of 5 . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is near Café Sicilia . It is family friendly and has a price range of less than £ 20 . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||There is a Japanese kids friendly restaurant known as The Vaults that is in the price range of £ 20 - 25 . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies have very cheap prices , they are located near Rainbow Vegetarian Café \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies coffee shop is a cheap , family friendly coffee shop by the river . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto has a less than 20 pounds price range and is situated in the riverside area , near All Bar One . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a low price range coffee shop Taste of Cambridge located close to the Crowne Plaza Hotel . It has a superb view across the river . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat in the Riverside area is an English restaurant with a family friendly environment and an average customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the less than £ 20 price range . It is located in the city centre . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat on the river side is The Twenty Two which is less than £ 20 and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||If you are looking for a non children - friendly coffee shop , with prices around £ 30 , but with high customer ratings , The Eagle is for you . It serves Indian food and it is located in the city centre , near Burger King . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is not family friendly . It is located in riverside near Crowne Plaza Hotel and has a low customer rating . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : yes||The Green Man , a family - friendly establishment in the city centre has a price range of less than £ 20 \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat a high price range Fast food which is a not so Children friendly is located near the Express by Holiday Inn in the riverside \nname : Green Man | Type : pub | food : Fast food | area : city centre | near : Café Rouge||The Green Man pub in the city centre offers fast food . It is located near the Café Rouge . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||5 out of 5 , cheap , family - friendly , The Twenty Two is located near The Rice Boat in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies in the city centre is a average rated family - friendly coffee shop providing French food with a price range less than £ 20 . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||Close to The Bakers , The Golden Curry is a family friendly restaurant in the higher price bracket . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||City centre offers a great coffee shop named Aromi located near the river . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms . It is in the high price range . It has an excellent rating . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||In the riverside area there is a cheap pub named The Olive Grove . It is family friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms and on the river that also provides typical American fare in a fine - dining atmosphere . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an Italian restaurant and coffee shop , near The Portland Arms . It has a three - star rating . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||In the riverside area , The Twenty Two , near The Rice Boat has an average customer rating . It is kids friendly . The price range is high . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is a excellent restaurant in the city centre \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||There 's a place called The Waterman that is kid friendly that serves Indian food near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||The Taste of Cambridge is a restaurant with high pricing and an average of 3 out of 5 client rating . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Blue Spice is not kid friendly . It is located in the city centre with a low customer rating and costs more than £ 30 . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice is a Japanese restaurant in Riverside that would cost less than £ 20 . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe is a higher - priced restaurant located near The Six Bells \nname : Loch Fyne | food : Japanese | customer rating : low | area : city centre | near : The Rice Boat||There is a poorly rated restaurant Loch Fyne located near The Rice Boat in the city centre that offers Japanese food . \nname : The Vaults | food : Italian | price : moderate | family friendly : no||The Vaults serves moderately priced Italian food with an adult atmosphere . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle has average customer rating . It serves Fast food . \nname : Loch Fyne | Type : restaurant | food : Indian | price : £ 20 - 25 | family friendly : yes||There is a family friendly Indian restaurant , Loch Fyne , with menu prices in the range of £ 20 - 25 . \nname : Cotto | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||A Family friendly place called Cotto near Ranch has a Customer rating of 5 out of 5 and serves Fast food . \nname : Cotto | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , there is a restaurant named Cotto that is family friendly and serves Chinese food that is rated 5 out of 5 by their customers . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop featuring Indian food at a high price . Customer rating is average and it 's located near Ranch . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low priced fine dining restaurant near the Express by Holiday Inn in the city centre . It is family friendly and has a 1 star rating . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Along the riverside , near the Yippee Noodle Bar , Alimentum serves medium - priced fast food and has a five star rating . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Chinese food in the moderate price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly fast food restaurant and coffee shop . It is located in the riverside area near Raja Indian Cuisine \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a popular restaurant near Rainbow Vegetarian Café that serves expensive Chinese cuisine . Hire a babysitter for the kids and have a date night at Strada . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap , family friendly restaurant located near Rainbow Vegetarian Café . It is rated 5 stars . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||The Golden Curry is a 3 star , family friendly restaurant , located in Cambridge . \nname : The Phoenix | food : Indian | customer rating : average | area : city centre||The Phoenix is an Indian restaurant with an average customer rating in the centre of the city . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a expensive Japanese restaurant located in City Centre near All Bar One . 3 out of 5 customer rating . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||For more than £ 30 you can get French food at a restaurant called The Dumpling Tree . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle restaurant is located in the city centre . \nname : The Golden Curry | food : French | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||If you 're after some French cuisine and a kid friendly atmosphere look no further than the highly recommended The Golden Curry , near Café Rouge in riverside . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry is not family friendly and is near The Six Bells . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||Japanese food with a price range less than £ 20 is served at the Wildwood coffee shop . This is near the Ranch and has an average customer rating . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||A riverside restaurant is Zizzi . It is expensive . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Fitzbillies serves breakfast food items at an affordable price , and is located next to The Six Bells . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant serving cheap Chinese food . Though not family friendly , it has a customer rating of 5 out of 5 and is located near Rainbow Vegetarian Café . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a low - quality coffee shop near The Portland Arms and the city river . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a inexpensive 5 star family restaurant located near Burger King . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle serves Fast food and has average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine in the city centre . They serve Fast food , no children menus or services , in a high price range . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant near Express by Holiday Inn at city centre . Its price range is high and is rated 3 out of 5 by customer . It is also children friendly . \nname : Green Man | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Moderately priced , The Green Man serves Chinese food . This child friendly restaurant is located in the riverside area near All Bar One . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||Located close to All Bar One , there is a restaurant named The Cricketers which offers fast food . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is an average Fast food , family friendly restaurant in the riverside area that is cheap . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||Looking for some fast food The Twenty Two is serving fast food . Not family - friendly , located by the riverside . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a five star , family friendly facility . It is based on the outskirts of the town and offers family food . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : city centre | near : Clare Hall||Near Clare Hall in the city centre is a low customer rating Italian coffee shop called Clowns . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||The Eagle Italian restaurant customer rating 5 out of 5 . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||In the riverside there is a children friendly pub with a high price range called The Olive Grove . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||Although non - family - friendly , The Golden Curry can be found near The Bakers , selling Japanese food at a less than £ 20 price range . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly venue serving Japanese food . Located in the riverside area , Browns Cambridge can be found near The Sorrento . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto coffee shop provides Indian food at a moderate price range . Its customer rating of 1 out of 5 . Locate are city centre area near to The Portland Arms \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub that serves Japanese food . It is located near The Portland Arms . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge located near The Crowne Plaza Hotel is the place to be for all the family . Located near the riverside it 's perfect whether you want a quick coffee or some good Italian food . The customer rating is 1 out of 5 so drop by and help improve this . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a pub located at the riverside that serves averagely priced Italian food . \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter serves Japanese style food and the price range is L20 - 25 . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man is located by All Bar One in Riverside . Children are not allowed as this is a pricey French restaurant . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||The Wildwood restaurant near Café Rouge has good customer ratings with excellent food and service , with a lovely atmosphere . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum restaurant is very nice place to eat exquisite food with family and friend in the night \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat on the riverside offers Japanese food and a family friendly atmosphere . The Rice Boat also merits a five star customer rating . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a cheap pub serving fast food near the Café Brazil . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Offering a variety of food and the view of the river , The Waterman is a family friendly restaurant with a five star rating . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||Near The Sorrento and the riverside you can find a cheap coffee shop called The Mill that sells Italian food . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : yes||Alimentum is a moderate family - friendly Italian restaurant in the center of the city . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||In the riverside area , near Clare Hall there is a restaurant called Bibimbap House . It offers French food at a price range of £ 20 - 25 . \nname : The Waterman | price : more than £ 30 | family friendly : yes||Need a place that 's children friendly yes try The Waterman price range more than £ 30 . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes||There is a family - friendly pub at the city centre that serves French food called the Giraffe . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a pub in the riverside area that is family - friendly and has average customer ratings . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults is a pub near Café Adriatic . It has a high customer rating and the prices are more than £ 30 . \nname : The Punter | food : Indian | price : less than £ 20||The Punter is a relatively inexpensive Indian restaurant . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving Japanese food , it 's located in the riverside area near Crowne Plaza Hotel and is not family - friendly . \nname : Green Man | food : English | price : high | area : city centre | family friendly : no | near : All Bar One||There is an expensive English restaurant Green Man located in city centre near All Bar One . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap Italian restaurant rated five out of five . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is a French restaurant located along the river . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced family friendly restaurant that overlooks the river . Serving wine and fresh baked bread daily \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is considered to be a children friendly place located near the Express by Holiday Inn with high price range and low customer rating . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Zizzi is a cheap restaurant in riverside . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : no||The Olive Grove is a public moderate French food restaurant located in riverside \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||There is a coffee shop near The Bakers called Giraffe . It is kid friendly , has a customer rating of 3 out of 5 , and a £ 20 - 25 price range . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman is a pub that serves Italian food with average rating located near riverside . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||Located near Café Brazil is a mid - cost coffee shop called The Vaults . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two restaurant offers Italian cuisine in an constant child - friendly atmosphere located on the riverside of Cambridge . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly Japanese coffee ship , near Crowne Plaza Hotel in riverside . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||There is a one star restaurant The Golden Curry near Café Rouge . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults sells French food . It is low price and family friendly . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly restaurant that serves English food . They are located in the city centre . They are cheap and have a 3 out of 5 rating . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid - friendly Italian restaurant in the moderate price range with a customer rating of 1 out of 5 . \nname : Midsummer House | food : Indian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||For cheap Indian food , try the Midsummer House near All Bar One . It is rated 5 out of 5 . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a Japanese restaurant near Ranch . It has a customer rating of 3 out of 5 , and is child - friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||The Cotto is an Italian coffee shop near The Portland Arms . It is a moderate price range in the city centre . Rated 3 out of 5 . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix that served Italian food in less than £ 20 at the riverside area received a low customer rating . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a kids - friendly restaurant located in riverside near The Rice Boat with a 1 out of 5 rating and moderate prices . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults is a dine in , low priced , family friendly restaurant . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||I love the Cocum coffee shop even though they are not family - friendly and have a low customer rating . I can get great Fast food for less than £ 20 . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||Down the road from All Bar One , you will find Midsummer House . There food is pricey , but they do have 5 stars . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : yes||There is a kid friendly English restaurant in the city centre called Alimentum that is moderately priced . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : no||The Rice Boat provides Chinese food It is located in the city centre . Its customer rating is average . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : city centre||With its low customer rating , The Waterman is a pub which provides Chinese . It is located in the city centre . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||A high customer rating pub known as , Clowns , is located in the riverside area and the prices are more than 30 pounds . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||The Travellers Rest Beefeater is a family friendly restaurant in the less than £ 20 price range . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kid friendly French restaurant in Riverside , it has moderate prices . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers restaurant offers French cuisine at budget prices , but does not welcome families . It is located outside of the City centre near Raja Indian Cuisine . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge is not too expensive and has some of the best food in the area \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a English restaurant with a low price range , less than £ 20 . Described as family - friendly , it is located in the city centre . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is highly rated and kid friendly serving French food to the riverside area with a price range of £ 20 -25 \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Green Man is located in Riverside near Café Rouge . They offer fast food in a pub style eatery . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat , serves French , is kid friendly , its located riverside and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||If you 're looking for something family friendly by the river , try Fitzbillies coffee shop . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing sea food deliveries in the average price range . It is located in the north of city after Burger King next to river \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies , a coffee shop that has been rated 5 out of 5 , is located in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a non family - friendly , Italian coffee shop near Crowne Plaza Hotel in the city center . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||The Bibimbap House is a low priced place to eat . Its location is near the river right next to Clare Hall . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : no||Loch Fyne is a high - end restaurant , serving great authentic Italian food . Perfect for date night \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||Zizzi is a pub . They have been rated one star . Family 's are not welcome . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is in the city centre , near Café Rouge . It is family - friendly and serves English food . It has a customer rating of 5 out of 5 . \nname : The Phoenix | food : Indian | customer rating : low | area : city centre||The city centre contains an Indian restaurant , named The Phoenix , with low ratings . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is near Rainbow Vegetarian Café . It is child friendly and has a high price range with an average customer rating . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||There is a Japanese restaurant near All Bar One named Midsummer House that serves Japanese food in the less than £ 20 price range . It has a low customer rating . \nname : Wildwood | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that serves Indian food in the £ 20 - 25 price range . They have a high customer rating and are near Ranch . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada with an average customer rating and cheap price range is family friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Waterman is a fast food pub in the riverside area , it has a 5 out of 5 customer rating . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers has fast food available for the whole family and while the prices are not cheap the quality is not abysmal . \nname : Aromi | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi , is coffee shop yes kids - friendly riverside 1 out of 5 \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Blue Spice is low rated by customers and not children friendly . It cost no more than 30 euros and is in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : average||The Cambridge Blue is a restaurant that provides Chinese food Its customer rating is average . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry is restaurant that does not allow children . It is located near to The Six Bells . \nname : The Waterman | Type : pub | food : Italian | customer rating : 3 out of 5 | area : riverside||The Waterman is an Italian pub near the riverside . It has a customer rating of 3 out of 5 stars . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is high . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry located near Café Rouge is suitable for families . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat providing French Food . It is located in riverside near Express by Holiday Inn . High Costumer rating and £ 20 - 25 price range . \nname : Loch Fyne | food : Chinese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne provides Chinese food and it has a customer rating of average . It is in the city centre and it is near The Rice Boat . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly coffee shop in the northern City Centre next to Raja Indian Cuisine with a low price range . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a restaurant which serves Japanese food . Average prices range between £ 20 - 25 and children are welcome . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||The Sorrento is a kids friendly English food eatery near Browns Cambridge in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop situated near the Crowne Plaza Hotel , in the riverside area . Its customer rating is average and it typically serves French food . It is family - friendly . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto falls in the moderate price range and is located on the riverside near All Bar One . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle is a well - known winery that offers a variety of cheese and wine pairings for visitors to try . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Close to Rainbow Vegetarian Café is an inexpensive placed called Fitzbillies . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||Along the riverside is a fast food . place called The Twenty Two . It offers a family - friendly environment . \nname : Bibimbap House | food : Fast food | price : moderate | area : city centre | near : Clare Hall||Moderate price range fast food Bibimbap House is located near Clare Hall in city centre . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House located in the area of riverside near Clare Hall , the serve delicious English food for less the the mere price of 20 pounds . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap restaurant in the city centre near Yippee Noodle Bar , with a rating of 5 out of 5 , serving English food . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||A family friendly sushi restaurant named Aromi received three out of five stars \nname : Midsummer House | food : Indian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is an Indian restaurant with a moderate price range . We have a rating of 1 out of 5 and we are near to All Bar One \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||The riverside Café near Café Adriatic named Travellers Rest Beefeater had a customer rating of 3 out of 5 and a price range of 20 - 25 \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||There is coffee shop near Café Sicilia , The Punter that has high customer rating and serves Indian food at a price ranging more than £ 30 . It is not children friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||Located near Yippee Noodle Bar in the City centre , Alimentum is an average rated Japanese restaurant serving cheap Japanese meals . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : no||Strada is cheap restaurant that has a high customer rating , but is not family - friendly . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater , located near Café Adriatic at the riverside , is a expensive yet low rated establishment . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a no children cheap food outlet no less than £ 20 per meal near The Rice Boat in the city centre low customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A coffee shop near Raja Indian Cuisine in the city centre called The Wrestlers sells French food moderate pricing and not child - friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||There is a high priced coffee shop that has Italian food in Riverside , named The Golden Palace . Customers seem to enjoy it , averagely . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a higher - cost Italian restaurant located near All Bar One . Families welcome . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||With a customer rating of a 3 out of 5 , Clowns is a pub in the riverside area . It has a high price range . \nname : The Rice Boat | food : French | area : riverside||Located in the riverside area , The Rice Boat serves French Food . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||3 out of 5 Riverside area restaurants are not kids - friendly . They are offer moderate priced English food at The Rice Boat which is near Express by Holiday Inn . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||There is a low price , one star coffee shop called Wildwood that sells sushi , it is located next to the Ranch . \nname : The Punter | food : Chinese | price : £ 20 - 25||The Punter is averagely priced serving Chinese food . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : no||Loch Fyne restaurant serves French food . Prices are higher than average for city . It is not suitable for families with children . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : high | family friendly : yes | near : The Portland Arms||Located near The Portland Arms is coffee shop The Cricketers . coffee shop is child friendly and a French cuisine , rated high by customers . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an inexpensive restaurant that serves English cuisine for less than 20 pounds . It has a low customer rating and is not a family - friendly environment . The Rice Boat is located near the Express by Holiday Inn in riverside . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap fast food restaurant called The Rice Boat . It is located by the Express by Holiday Inn , North of the City Centre by the river . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no||Go to city centre for Italian food . There is a coffee shop called Aromi that is not kid friendly and has earned a low rating . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Chinese food in the cheap price range . It is near Rainbow Vegetarian Café . Its customer rating is 5 out of 5 . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||A high priced restaurant near All Bar One is called Midsummer House . It is moderately recommended and offers wine . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Anyone on a budget can stop in at low rated Fitzbillies is near Express by Holiday Inn . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside , near the Express by Holiday Inn , there is The Rice Boat , which offers French food , is highly rated , cheap and not family - friendly . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers provides Indian food in the cheap price range . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Riverside local coffee shop Fitzbillies offers fast food in a low rated price and a family friendly low rated environment . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a restaurant that does English food . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap , three - star family restaurant that serves pasta . It is located near a river . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||The Clowns coffee shop serving Italian food can be found at the riverside near Clare Hall . It has been rated low by customers . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a Japanese restaurant providing sushi in the medium price range . It is not suitable for families and located beside The Bakers . \nname : Green Man | food : English | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man is located in city centre located near All Bar One . \nname : Alimentum | food : Chinese | price : cheap | area : riverside | family friendly : yes||Alimentum serves Chinese food , is in the cheap price range , located in riverside , and is family friendly . \nname : The Rice Boat | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Chinese food with a 3 out of 5 rating , it 's in the Riverside area and is kid friendly . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum serves Japanese food in the high price range and is located in the city centre near Yippee Noodle Bar . Alimentum has a 3 out 5 rating . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum an Italian restaurant in riverside is kid friendly with moderate prices . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant near the Rainbow Vegetarian Café . It is kid friendly , has a price range of 20 - 25 , and has a rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||Would you like to go to that coffee shop , The Punter , it isn 't kid friendly , but it 's fast food with a high customer rating , it 's averagely priced at £ 20 - 25 , and it 's near , Café Sicilia . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The low - rated customer French restaurant The Rice Boat is located near Express by Holiday Inn within the city centre . The prices are less than £ 20 and they are a family - friendly establishment . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Sushi restaurant that is family friendly with medium price range . Located near Rainbow Vegetarian Café . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : no | near : The Sorrento||Check out The Browns Cambridge , a friendly Chinese restaurant in the City Centre close to The Sorrento . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto , with a 3 star rating and a low price range , is a coffee shop . It is at the riverside near The Portland Arms . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||The Waterman pub in the Riverside area , serves French food with a customer rating of 5 out of 5 . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Though not family friend , The Waterman in the city centre has cheap English food and a 5 out of 5 rating . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||Browns Cambridge is a restaurant that is inexpensive and is rated 3 out of 5 stars . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Great city centre location near the Yippee Noodle Bar . Come check out the low rated Japanese restaurant called Alimentum . It will cost you more than £ 30 though . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area , near Express by Holiday Inn , there is a children friendly , high priced Japanese restaurant , with a low customer rating , called The Rice Boat . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a fast food coffee shop in the riverside area called Aromi . It has a great customer rating of 5 out of 5 but is not family - friendly . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : city centre | near : Rainbow Vegetarian Café||There is a pub near Rainbow Vegetarian Café in the city centre named The Golden Palace . They offer prices less than £ 20 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a full - service coffee shop that is located next to Ranch . It offers meals at affordable prices . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kids friendly Japanese restaurant , located in the riverside area , near The Sorrento . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a child friendly pub in the riverside area with a high customer rating . \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||Wildwood is a higher - priced French pub which received a customer - rated 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||A family friendly coffee shop with an average customer rating called The Cricketers is located near The Portland Arms . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly French pub near The Portland Arms . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : £ 20 - 25||The Dumpling Tree restaurant serves moderately priced Chinese food . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Although it is not family - friendly , Strada , located near Rainbow Vegetarian Café , is a low - cost Fast food restaurant with an excellent customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop with a moderate price range that has Japanese food and is located in city centre near Raja Indian Cuisine and is not kid friendly . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : average||For an high price range , Wildwood is an average rated pub that serves Chinese food . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : yes||The Giraffe pub services Italian food and is family - friendly . it is in the city centre . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat It provides fast foods at a reduced price and is located near the river , there Express by Holiday Inn \nname : The Punter | food : English | price : moderate||You can find English food at a moderate price range at The Punter \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle , a kids friendly coffee shop with a moderate price range , with a rating of 3 out of 5 . It serves Italian food and is in riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||A coffee shop called The Eagle is kid friendly . It located in the city centre near Burger King . It offers fast food at moderate prices . It 's rated 3 out of 5 by customers . \nname : Alimentum | food : Indian | price : cheap | area : riverside | family friendly : yes||Alimentum is an Indian family friendly restaurant that is cheap and near riverside . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is an expensive fast food restaurant , north of All Bar One . Its food is of a spectacular quality . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Average priced English food is available at highly rated Browns Cambridge . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is an adult restaurant with a high rating near The Rice Boat by the river . Prices for meals range from 20 - 25 . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||The Italian restaurant need Yippee Noodle Bar , Alimentum , has a medium price range but has been given poor reviews . \nname : The Golden Curry | food : English | price : more than £ 30 | family friendly : yes | near : The Bakers||Near The Bakers is an English place called The Golden Curry . It is considered a children friendly place with prices above average . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman provides Indian food in the £ 20 - 25 price range . It is located in the city centre . Its customer rating is high . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi , a child friendly coffee shop located in riverside , has an average cost of 30 euros and has a low customer rating . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||Near The Bakers , children friendly The Golden Curry serves Japanese food for more than £ 30 . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada has kid friendly service , a moderate price range , and a customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : no||The Olive Grove is an Italian pub with a high price range in the city centre and it is not a child friendly zone . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap , family friendly venue , near The Bakers , that serves English food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a fast food pub in the riverside area that is family friendly . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||Located on the riverside near Rainbow Vegetarian Café is The Golden Palace , a pub in the moderate price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||coffee shop children - friendly French food named Fitzbillies has a price range of more than £ 30 and low customer rating is available near riverside . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||There is a low rated expensive restaurant called Travellers Rest Beefeater near Café Adriatic in the Riverside area . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : The Bakers||Giraffe is a medium priced coffee shop located near The Bakers . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a great Japanese restaurant with 5 out of 5 customer review ratings , for its great food and cheap prices . It is the perfect restaurant for families , situated in the riverside area near Express by Holiday Inn . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : no||In the city centre area , Alimentum French restaurant offers a moderate price range . We are not kid friendly . \nname : Wildwood | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop providing English food and wines in the low prices . It is located near to Ranch . It has 5 out of 5 stars . \nname : Loch Fyne | food : French | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a low rating French restaurant located in the city center near The Rice Boat . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers fast food in a child friendly atmosphere near Café Rouge in the riverside area with high customer ratings . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||Looking for an Indian restaurant in the riverside are ; The Phoenix is moderately priced but suffers from a poor customer rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : no||Near the riverside is a pub called Giraffe . It serves Chinese but it 's not suitable for families . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum , near Yippee Noodle Bar , has a low customer rating and is low priced . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Near Avalon along the riverside is a child friendly coffee shop that is too expensive and poorly rated called Blue Spice . \nname : Fitzbillies | food : Indian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is an Indian food restaurant with a price range of £ 20 - 25 near The Six Bells . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man on the riverside serves French food . It 's family friendly and a meal is less than £ 20 . It 's near All Bar One . \nname : Green Man | food : Japanese | price : high | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One , in Riverside area , place called Green Man does high priced Japanese food children friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre||The Golden Palace is a coffee shop in the city centre . It 's average in ratings , low and price and has an Italian theme . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||A child friendly French restaurant with a price range of more than more than £ 30 is the Loch Fyne . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||The Cotto is located near The Portland Arms , at the city centre . It is a coffee shop which serves moderately priced Fast food . Rated 3 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop that serves wine and has a rating of three stars . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Having a customer rating of 3 out of 5 , The Rice Boat has a price range of between £ 20 - 25 and can found near Rainbow Vegetarian Café \nname : Green Man | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near All Bar One . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap English food place in city center near Yippee Noodle Bar with an average customer rating . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a mediocre restaurant that serves Oriental food to families . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A child - friendly coffee shop and fast food restaurant , Browns Cambridge is highly - rated . It is located near the Crowne Plaza Hotel , by the riverside . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly pub offering modestly priced French food near the river . Its customer rating is poor . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers the best Indian food in town . Has an average customer rating . It is located by the beautiful riverside and is near Café Rouge . And yes it is family friendly . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||Wildwood is a pub providing take - away deliveries in the high price range \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a riverside coffee shop near Burger King offering Indian food for more than £ 30 . It is highly rated and is child friendly . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a five star rated restaurant located close to the Yippee Noodle Bar . It is in the mid price range . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a Chinese restaurant with a moderate price range near the city centre . It has a customer service rating of 1 out 5 and is not kid friendly . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : no | near : The Sorrento||In the city centre , near The Sorrento , there is a Japanese restaurant called Browns Cambridge . It is not family - friendly . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice is a cheap restaurant specializing in British Cuisine . It is located near the river on the outskirts of the city center . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant offering menu items that range less than £ 20 . It is located near Yippee Noodle Bar , in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||low customer rating , cheap French food that is not family - friendly in the city centre you can find Fitzbillies coffee shop \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located beside the Express by Holiday Inn at the end if the city that is a low price dine in restaurant . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop providing excellent customer service - in the low price range . It is located near The Bakers . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||Near Café Brazil on the riverside , a coffee shop named The Vaults has a moderate price range and a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||A high priced Italian food place , named The Wrestlers , is children friendly and has a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is an Italian coffee shop located in the city centre . It is not family - friendly and has a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a non - kid friendly coffee shop located in the centre of the city near Burger King . They offer Indian food at a moderate price with a 1 out of 5 rating among customers . \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter serves Japanese for £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop the serves Indian food , with high customer Rating , located in riverside , but the price Range is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is an Italian coffee shop in riverside called Fitzbillies . This restaurant has a high customer rating and is kid friendly with a price range of £ 20 - 25 . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is in the city center , with English food ranging from £ 20 to 25 and a high customer rating . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||If Japanese is what you are looking for Located near the All Bar One in the riverside area The Green Man is family friendly costing less than £ 20 \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : no||Alimentum is a riverside restaurant serving Japanese food . Price range in moderate , no children allowed . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||For food in the £ 20 - 25 range , try the Giraffe . It is a restaurant located near The Six Bells . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||Travellers Rest Beefeater is a great restaurant with low prices but not a good place for family \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove pub , near the river has seafood and Oriental dining . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Above average cost Italian coffee shop close to Wildwood Ranch with 1 out of 5 customer Rating \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a restaurant serving English dishes with a low price range situated near All Bar One at Riverside , not family - friendly . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Indian food , with prices ranging from £ 20 - 25 . It has high customer rating , and is located in the city centre near The Portland Arms . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant that is located next to The Rice Boat . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||The Blue Spice coffee shop is located near Avalon , by the riverside . Kids - friendly and moderately priced , it has a customer rating of 3 out of 5 . \nname : Browns Cambridge | price : high | customer rating : average||The average customer rating of Browns Cambridge has a high price range . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is an expensive fast food pub in the city centre . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Clare Hall . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man offers Italian food , moderately - priced food , is kid - friendly , and is located near All Bar One in the riverside area . \nname : Alimentum | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum provides Chinese food in the more than £ 30 price range . It is located in the riverside . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||High rated Alimentum in city centre , close to Yippee Noodle Bar serves French food in the £ 20 - 25 price range . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located in the city centre , near Burger King , The Eagle is an average priced , family - friendly coffee shop serving French food with a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : no||Loch Fyne , a non kid friendly Italian restaurant , has a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop offers average priced Italian food in a family - friendly environment . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : city centre||The Mill is a pub serving Japanese food in the city centre and is in the more than £ 30 price range . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Zizzi has a customer rating of 1 out of 5 . It 's a non kid friendly coffee shop in riverside with a moderate price range . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry serves 5 star rated food and is a family friendly establishment . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an coffee shop serving Indian food . They are low cost and family friendly , located in riverside near Raja Indian Cuisine . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||There is a cheap fast food restaurant The Phoenix located in the north of the city that provides high quality food and take - away deliveries . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry offers Indian food near Café Rouge in the city centre area . It is family friendly with an average customer rating . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman , a French food restaurant located in riverside has customer ratings of 1 out of 5 . It has moderate price range and is not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a French family - friendly coffee shop in the city centre . It is moderately priced and has a customer rating 1 out of 5 . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||For a 5 star family friendly sushi restaurant , Cotto is near the Ranch \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , near All Bar One , has a low customer rating , is in the less than £ 20 price range , and serves Fast food . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a 3 - star , family friendly restaurant . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto offers coffee shop and French food with expensive price near The Portland Arms . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : no||The Giraffe is not a family - friendly pub for eating Italian food in the city centre . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||Come to The Olive Grove , a child friendly pub in the city centre which serves Japanese food for under £ 20 . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cotto a good English restaurant near the Ranch . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Families are welcome to eat Italian food at Loch Fyne restaurant . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : riverside||The Mill is a pub in the riverside area that offers Chinese food in the less than £ 20 price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Families can find a fair coffee shop named Fitzbillies close to the city river . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop that sells Indian food , high price range , customer service rating 1 out of 5 , near Ranch \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop with French food that is not family - friendly and has a customer rating of average , near The Portland Arms \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man , near All Bar One in the city centre , serves French food at great prices - less than £ 20 . Yes , it is family - friendly . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a non - family friendly restaurant just north of the Crowne Plaza Hotel . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a fast food , coffee shop type restaurant by the riverside area . It features a 5 out of 5 customer rating and is not family - friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon in the riverside area . It has an average customer rating , is family friendly , and has a price range of less than £ 20 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||Moderate priced pub on the riverside is called The Mill . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a riverside restaurant located a short distance from Café Rouge . They offer traditional British cuisine . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is family friendly Italian food restaurant with a low customer rating near The Portland Arms \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children Friendly , low rated , more than £ 30 price ranged place near The Rice Boat . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes||In the city center there is a Japanese pub by the name of The Olive Grove . This establishment is kid friendly and has moderate prices . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two has a high customer rating , it 's kids friendly and has a price range of £ 20- £ 25 . It 's near The Rice Boat by the riverside . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a 5 - star Italian restaurant located near Yippee Noodle Bar on the river to the north of the City Centre serving moderately - priced fare . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||In the riverside area near The Sorrento is where you can find a kid friendly , French restaurant called Browns Cambridge . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area you can find The Wrestlers . This adult coffee shop serves inexpensive Italian food . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn in the city center , is a moderately priced fast food place . It is not kid friendly and has a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a restaurant that serves French food and is child friendly \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : no | near : The Bakers||The price Range is more than £ 30 for the French food near The Bakers , The Golden Curry is not children Friendly . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is an establishment that serves mid - priced Chinese food . It is highly rated by its customers , is child friendly , and situated near the Rainbow Vegetarian Café . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge sells family friendly food and can be found near The Sorrento by the riverside \nname : Green Man | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man which serves English food is medium priced and child friendly , located in Riverside near All Bar One \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is located by the riverside near The Sorrento . They serve English food and are kid friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no||The Olive Grove offers fast food in a pub setting for adults only . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , a coffee shop , isn 't family - friendly . It serves fast food , is located near the Crowne Plaza Hotel , is riverside , and has a low customer rating . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid friendly French restaurant in the riverside area . Prices are moderate , and customers rate it 1 out of 5 . \nname : Blue Spice | food : English | price : high | area : riverside||At riverside is a English restaurant named Blue Spice . It is an expensive restaurant . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a children - friendly , perfectly rated French food restaurant with a price range of more than £ 30 and is located in the city centre \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House is a Japanese restaurant near the Café Rouge but it has a low customer rating . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults pub , is high priced with 3 out of 5 rating near Café Adriatic . \nname : Strada | Type : restaurant | customer rating : low||Strada a restaurant has a low rating \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||Clowns is a good place to eat but price range is high its available near to riverside \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||Zizzi is a family - Friendly Italian pub with a low customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum , the children friendly coffee shop that cook Italian served at a high price range is rated as average by customer . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||There is a one - star pub Zizzi that does not provide family services . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||One highly customer rated pub is Wildwood , which serves French food . The price range is in the region of £ 20- £ 25 . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : no | near : Ranch||Japanese food place ' Cotto ' is an excellent choice for a place to eat out at . It is located near Ranch and is not a family - friendly environment . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||There is a three star coffee shop called The Golden Palace near the river . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove pub offers Japanese food between £ 20 - 25 , located in Riverside and kids friendly . \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a kid friendly place that serves Japanese food that is a bit pricey . It is in the city center near All Bar One . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a child friendly restaurant with a 3 out of 5 customer rating . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the less than £ 20 price range . It is near The Bakers . \nname : The Golden Curry | food : Italian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a children Friendly Italian place near The Bakers with a more than £ 30 price range . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop with a price range of more then 30 dollars . Has a customer rating of 5 out of 5 . They serve Japanese food in the area of city centre . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||You will be traveling to Browns Cambridge which is right by the riverside . The location is near The Sorrento . There will be a lot of Japanese food that will be provided for dining and the trip will be , yes , kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop that also offers Japanese cuisine . Located in the city centre near Crown Plaza Hotel , it is rated 1 out of 5 . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||In Riverside there is The Punter near The Portland Arms is family friendly restaurant and cheap eats . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a cheap , average rated restaurant in the riverside area near the coffee shop , Café Brazil \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly restaurant , near Express by Holiday Inn , that serves burgers and chips . It has a five - star rating . \nname : The Mill | Type : pub | food : Japanese | price : cheap | area : riverside||The Mill is a cheaply priced riverside pub that serves Japanese food . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is a high priced pub serving Italian food . It 's located in riverside and is children friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||A French restaurant with a low customer rating is The Cambridge Blue . \nname : Cotto | food : Japanese | near : Café Rouge||Near Café Rouge is a place named Cotto that offers Japanese food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Located near the Burger King at the city centre , adult coffee shop The Eagle serves Japanese food at average prices while boasting a high customer approval rate . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a family friendly , Indian restaurant by the riverside . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle has a price range of 20 - 25 euros . It is located near the riverside and has a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop and French restaurant located outside of the City Centre . It is near Burger King . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix , located in the city centre , is a very well - respected restaurant that serves expensive Chinese cuisine . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||Cocum is a family oriented Café and restaurant it is in the low price range . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located near to Express by Holiday Inn , in the riverside area . It serves Italian cuisine and is priced at £ 20 - 25 . It has a high customer rating but it is not child friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Indian coffee shop Cocum is average price average rating but not family friendly . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||There is a place called Green Man that serves Indian food that is near All Bar One . It is by the river side , its price range is less than £ 20 , and it is not family - friendly . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||A kid friendly pub , The Dumpling Tree serves English food . It is located near The Portland Arms . \nname : The Twenty Two | food : French | area : city centre | family friendly : no||There 's a non - family - friendly French restaurant called The Twenty Two that is located in the city centre . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly Italian restaurant near the Rainbow Vegetarian Café . They are medium priced and have a five - star customer rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two restaurant is located near The Rice Boat in riverside . With a rating of 5 out of 5 , they have earned more than £ 30 and are no longer child friendly . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : no||Loch Fyne is a non family friendly Chinese restaurant where meals are less than £ 20 . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an average price sushi restaurant . It is family friendly . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||Located near The Bakers , The Plough is a child friendly restaurant that is also expensive . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Aromi , an Italian coffee shop located in the riverside area is kid friendly and rated high by customers . \nname : Zizzi | Type : restaurant | price : high | area : riverside||If you 've got the extra money , try out Zizzi , a restaurant in Riverside . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop serving cheap food near the river . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , located in the riverside next to the Café Rouge , is a kid friendly restaurant . They offer English style cuisine an have rating of one our of five from previous customers . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a low - rated establishment near Express by Holiday Inn . However , it has cheap prices and welcomes families . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , a coffee shop with Fast food , and children friendly , it is in the riverside area , near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food and has an average customer rating . Located in the city of Riverside , it is a family - friendly establishment that is near the Crowne Plaza Hotel \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||The Dumpling Tree is a restaurant that serves cheap English food . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : no | near : The Portland Arms||A late night Fast food coffee shop called The Cricketers is situated by The Portland Arms and has mixed reviews . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||There is a family friendly eat type English food restaurant by the name of Loch Fyne . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that offers fast food and is not family - friendly . It has a customer rating of 5 out of 5 and is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a coffee shop called The Cricketers . It serves Japanese food and is children friendly but the customer reviews are low . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub located near The Portland Arms . They serve Indian food and are child friendly . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Near The Rice Boat in city centre Loch Fyne serves Indian customer rating 5 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue is a five star restaurant that provides a variety of tasting and pairing with wine . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||For cheap , child free fine dining head to Loch Fyne . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a family friendly restaurant near Express by Holiday Inn with a price range of less than £ 20 with a low customer rating . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||Near the riverside , there is a restaurant named The Golden Palace with a rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||A French coffee shop with 3 out of 5 ratings is Clowns near Clare Hall in the riverside area . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Serving French food includes The Giraffe . This children friendly pub is located in the Riverside area . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Near to The Portland Arms is a child friendly pub which serves Japanese food called The Dumpling Tree . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||The Browns Cambridge is an average place to find high priced Italian food . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||For Japanese food , try the pub called Wildwood . It is quite expensive and has a medium level customer rating . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : no||The Rice Boat has a low customer rating . They are located in the city centre serving French food and are non family - friendly . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a cheap restaurant located in the city centre . It is not family restaurant with low rating . \nname : The Punter | food : Japanese | price : less than £ 20||There is a cheap , sushi serving restaurant called The Punter . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||For cheap Japanese food , The Vaults offers rood at less than £ 20 but is not family - friendly \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A kid - friendly English food establishment is The Wrestlers . The rating is 1 out of 5 , and is only average . It also has a moderate price range . \nname : The Rice Boat | food : Japanese | area : city centre||Located in the city centre , The Rice Boat offers Japanese cuisine . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a coffee shop near The Portland Arms that is rated 5 out of 5 and is family friendly named The Cricketers and serves French food . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Strada is a restaurant with a poor customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue is a fast food pub with a high price range near Café Brazil \nname : Green Man | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a Chinese restaurant in the riverside area . It is family friendly and the price range is cheap . It is located near All Bar One \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne restaurant serves French food but is not family - friendly \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice as a coffee shop near Avalon in the riverside may not be a smart choice for family and is less than £ 20 with a low rating . \nname : Zizzi | Type : pub | food : Indian | customer rating : 3 out of 5 | family friendly : yes||For good Indian eats near Ranch , Zizzi is a nice , kid - friendly pub with an above - average customer rating of 3 out of 5 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||In the £ 20 - £ 25 price range is the high customer rated , kid friendly The Twenty Two found near The Rice Boat in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a fast food coffee shop that is not children friendly . It has a high price range and a customer rating of 1 out of 5, \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||The Mill is located near The Sorrento and offers a mid - price range \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||The Phoenix is situated on the Riverside , it serves English food and has a customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge , near Crowne Plaza Hotel in the riverside area , is a family friendly coffee shop with Japanese food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly fast food coffee shop near Burger King in the city centre area . It has a 1 out of 5 customer rating and a high price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located near the Burger King at the city centre , is family - friendly coffee shop The Eagle . Serving Japanese food , The Eagle , is high priced with a 3 out of 5 customer satisfaction rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a kids friendly coffee shop that serves French food . It is located in the city centre . It has a customer rating of 3 out of 5 and a price range of £ 20 - 25 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Food , Wine , and Spirits on the waterfront . The Phoenix offering 3 star service at an affordable price . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||If your looking for a place to eat Japanese food there is a place near The Rice Boat , which is located by the riverside and the name of the place is called Bibimbap House . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||Near Café Rouge , there is a cheap pub of English food and family friendly called The Plough . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : no | near : The Portland Arms||Near The Portland Arms there is a non family - friendly French coffee shop with an average customer rating named The Cricketers . \nname : Blue Spice | food : Fast food | price : high | area : riverside||There is a high priced fast food establishment on the riverside called Blue Spice . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||Clowns is a well - rated coffee shop near Clare Hall that serves pasta . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||The Giraffe , an English riverside pub . Offers fun for the whole family . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a mid - price 5 - star family restaurant and coffee shop . It 's north of the city center . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is a eat in restaurant located next to All Bar One . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||French cuisine and a children friendly environment at The Waterman , near Crowne Plaza Hotel . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||The Phoenix is an average English restaurant in the riverside area in the cheap price range \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is a cheap Indian restaurant Strada located near Rainbow Vegetarian Café , which is family friendly and has a an average customer rating . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms , Riverside , serving French food for under £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a family - friendly , high rating , fast food coffee shop in the city centre , prices are very good in the 20 - 25 range . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the riverside area near Café Brazil which has a price range of £ 20 - 25 and a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside are you can dine in a kid friendly environment at The Rice Boat which provides an average dining experience for those who enjoy Japanese foods . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The family friendly The Golden Curry can be found near Café Rouge on the river . It serves Japanese food and has a customer rating of 1 out of 5 . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a chain of Indian food with affordable costs below £ 20 , located in Riverside , an unfamiliar place \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||For a kid - friendly , riverside , French coffee shop , go to Fitzbillies . The price range is around £ 20 and it has average reviews . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located on the Riverside near Café Rouge and is a child friendly Japanese place . \nname : The Phoenix | food : English | customer rating : average | area : city centre||The Phoenix is an average English restaurant in the center of the city . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The family friendly restaurant The Olive Grove is moderately priced , \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House , found near All Bar One has a moderate price range and sells Italian food . It is rated 1 out of 5 by its customers . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies coffee shop serves Japanese food , and is located near the riverside . They are child friendly , despite their low customer ratings . Fitzbillies ' prices are higher than 30 . \nname : The Olive Grove | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes||The Olive Grove , is a cheap pub , that offers family friendly French food in the Riverside area . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat , locating near Rainbow Vegetarian Café , is an average restaurant with cheaper fare . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter Is a family friendly coffee shop with Italian food sadly it has a low customer rating . If you want to find it it is near Café Sicilia \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A kid friendly , averagely priced restaurant is Travellers Rest Beefeater . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Taste of Cambridge is a great restaurant rated 5 out of 5 star where the price range is above 30 £ . \nname : Bibimbap House | food : French | price : less than £ 20 | area : city centre | near : Clare Hall||There is a place that serves French called Bibimbap House . The price range is less than £ 20 . It is located near Clare Hall in the city centre . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman provides Chinese food in the high price range . It is located in the city centre . Its customer rating is average . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : city centre||Located in the city centre , The Phoenix is a cheap Italian restaurant with an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the high price range , The Wrestlers is a child friendly coffee shop serving Indian food in city centre near Raja Indian Cuisine . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a kid friendly French restaurant in the riverside area . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man serves Indian Cuisine , is located near All Bar One in the city centre and is kid friendly . The prices are average . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||For a pub that serves Italian food near Café Brazil , try The Cambridge Blue . They have a cheap price range . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||The Mill is located near the riverside . They provide French food with a pub atmosphere for average prices . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is an Indian coffee shop prices are less than 20 , it is rated low but is family friendly . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a restaurant providing take- away deliveries in the medium range . It has a excellent rating between the comensales and is a family restaurant . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is an adults only venue sited near Express by Holiday Inn , it is moderately priced and not highly recommended . \nname : The Eagle | food : Japanese | customer rating : average||Providing Japanese food , The Eagle has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||By riverside Fitzbillies offer coffee shop and Japanese food . Highly rated £ 20- £ 25 and kids not welcome \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a fast food restaurant highly rated by customers located in city centre near The Rice Boat . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||Taste of Cambridge gets a rating of 3 out of 5 , it 's a restaurant offering meals at £ 20- £ 25 a head \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is an Indian coffee shop named The Cricketers that is near The Portland Arms and is family - friendly . Customer satisfaction is 5 out of 5 . \nname : Cotto | food : Italian | near : Café Rouge||Near Café Rouge is an Italian eatery named Cotto . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop that is family friendly and cheap and rated one star . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter coffee shop located near Café Sicilia provides fast food for families at cheap prices \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is an average priced Japanese restaurant for adults . Customer ratings are low . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults is an expensive coffee shop located by the riverside near to the Café Brazil . It has an average customer rating . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family - friendly restaurant located outside the city centre near Rainbow Vegetarian Café . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a Fast food pub that is family friendly with a customer rating of 5 out of 5 . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a poorly reviewed Italian restaurant with a high price , and an adult type atmosphere . \nname : Midsummer House | food : Indian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , serving moderately priced Indian food near All Bar One , is rated low . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly pub serving cheap food and a customer rating of 5 out of 5 . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle is at the riverside and the price range is high . It is rated 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is an adult only moderately priced highly rated fast food coffee shop located in riverside \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||The pub Wildwood , serves English food and is moderately priced , but has only received a 1 out of 5 customer rating . \nname : The Plough | Type : pub | food : Indian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub serving Indian food near Café Rouge , priced at more than L30 . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||The customer rating of 5 out of 5 for the restaurant The Golden Palace located at the Riverside . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum serves English food for cheap . They have average ratings and are located near Yippee Noodle Bar in city centre . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies is an inexpensive restaurant near Rainbow Vegetarian Café . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman provides Indian food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that serves Italian food . This kid - friendly restaurant is located in riverside and has a customer rating of 3 out of 5 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Clowns pub in the city centre offers a great quality - if pricey - experience . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||A family - friendly , cheaply priced fast food restaurant that is located near Express by Holiday Inn in the center of the city is The Rice Boat . \nname : The Olive Grove | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a pub offering Indian food in the lower price range in Riverside and it is family friendly . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Near The Six Bells there is a family friendly place called The Golden Curry . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is an Italian coffee shop in the city centre area . It has a high price range and a 1 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||High priced adult coffee shop , Cocum , boasts a high customer satisfaction . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Browns Cambridge is in the high price range . This a sushi restaurant . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||If you are looking for a family Friendly pub in the riverside area , try Taste of Cambridge , located near The Sorrento . \nname : Strada | Type : pub | food : English | customer rating : low | near : Yippee Noodle Bar||Strada is an English pub near the Yippee Noodle Bar with a low customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop that serves wine and has a rating of three stars . \nname : Green Man | food : French | price : cheap | area : riverside | family friendly : yes | near : All Bar One||There is a family friendly French place called Green Man that is located near All Bar One in the riverside . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop serving French food in Riverside . It is children friendly and has a customer rating of 3 out of 5 . \nname : Midsummer House | food : Italian | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a 5 - star Italian restaurant near All Bar One . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a restaurant providing Indian food \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is cheap family friendly pub that serves French food . It is located near Café Rouge . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a coffee shop that bring a service of Fast food \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a non - kid friendly Chinese restaurant in the riverside area . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Eat at Giraffe . It 's a family friendly French pub in Riverside . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two offers spirits and snacks . it is not family - friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : more than £ 30 | near : Café Brazil||Near Café Brazil , The Cambridge Blue is an Italian pub averaging £ 30 per visit . \nname : The Olive Grove | Type : pub | food : French | price : high | area : riverside | family friendly : yes||The pub that serves French food in the riverside area is called The Olive Grove . It is children friendly but the price range is high . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , a fast food restaurant serving riverside area customers near Café Rouge , has a customer rating of 5 out of 5 . \nname : Strada | price : high | customer rating : average | family friendly : yes||The Strada has a high price range with an average customer rating and yes it is child friendly . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman with 1 out of 5 stars serving up Italian food high prices within the city center . no children welcome . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Close to Clare Hall at riverside is Clowns coffee shop . They serve French food and have a good rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is located close to Burger King there is a average cheap family friendly Italian coffee shop . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter , a coffee shop very close of Café Sicilia that brings you a Fast food service \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||There is a Japanese restaurant called The Dumpling Tree with prices ranging from £ 20- £ 25 . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||In Riverside is Alimentum , a family friendly restaurant serving Chinese for meals less that £ 20 . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||A family friendly pub called Giraffe near the river serves quick food . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : yes||For a child friendly moderately priced French meal head to Alimentum located near centre city . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||In the riverside area there is a venue called Bibimbap House which serves fast food near The Rice Boat . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||In the city center you can find Loch Fyne , an Indian restaurant , it 's near The Rice Boat , and it has a 5 out of 5 rating . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : no | near : Café Sicilia||Located near the city centre near Café Sicilia is The Dumpling Tree . It has a price range of more than L30 and is not children friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub that provides Chinese food in the less than £ 20 price range . It is located in the city centre . \nname : Midsummer House | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||An average priced place to eat would be Midsummer House near All Bar One . It has a customer rating of 1 out of 5 and serves Japanese food . \nname : Aromi | Type : restaurant | food : English | area : city centre||Located in the city centre , Aromi is an English restaurant . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||Located in Riverside , the coffee shop Aromi receives low ratings from customers because it is Fast food and lacks a family - friendly atmosphere . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||There 's a French restaurant called Loch Fyne that 's not family - friendly and has a price range of less than £ 20 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is located on the river . It is kid friendly and in the low price range . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is an English restaurant named Strada ; it is non kid - friendly with a price range of 20 - 25 and a high customer rating . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||Although the price range is more than £ 30 , The Rice Boat has a high rating . It is near Rainbow Vegetarian Café . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||In Riverside , close to The Sorrento , the English cuisine , family friendly , Browns Cambridge is situated . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a great place to take the family for mid priced , highly rated food . Just outside City centre . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : no | near : Café Rouge||Located near Café Rouge , The Plough is a French pub that is not kid friendly in the above - average price range . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop serving low priced French food close to Burger King near the river . It is not family friendly and has a rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Given 5 out 5 rating by customers Clowns coffee shop provides fabulous Japanese food on the riverside , close to Clare Hall \nname : The Dumpling Tree | Type : pub | food : English | family friendly : no | near : The Portland Arms||The Dumpling Tree pub , mature English dining near The Portland Arms \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : yes||The Rice Boat in the city centre is a family - friendly fast food place with an average rating . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderately priced Indian food restaurant located near the Rainbow Vegetarian Café . It is not kid - friendly , and it has been rated 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Family friendly , The Punter an Indian restaurant located near Café Sicilia . With a price range less than £ 20 , the customer rating is low . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a one star rating family friendly place located near Café Rouge . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is situated near the Crowne Plaza Hotel . It is children friendly and serves Chinese food . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high - priced fast food restaurant by the river . It has a customer rating of 1 out of 5 and is family - friendly . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a highly rated , child friendly Indian in the city centre . Prices are on the high side . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop , which also serves Indian cuisine at moderate prices . Customers have rated the food 3 out of 5 . The Eagle is situated near the riverside and Burger King . Children are welcome . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : no||A high price pub in the riverside area called The Olive Grove serves English food is not children friendly . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||If your looking for a kid friendly place in riverside , try The Olive Grove \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fast food restaurant located near the Rainbow Vegetarian Café . It provides low quality food at high prices and is not family friendly . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : yes||looking for is a family friendly pub serving Chinese food in the city centre , the the Giraffe may suit you . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that also serves fast food . With an average customer rating , it is located near The Portland Arms . It is not family - friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no||Located in the riverside area you will find a non family friendly high priced Chinese pub named The Olive Grove . \nname : The Rice Boat | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Down at Riverside there 's a nice Chinese restaurant for families called , The Rice Boat . \nname : Browns Cambridge | food : Chinese | price : less than £ 20 | customer rating : low||Browns Cambridge provides Chinese food in the less than £ 20 price range . Its customer rating is low . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop is not family friendly but serves Indian food for under £ 20 in the riverside area right near Raja Indian Cuisine \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : riverside||There is a Chinese food pub in Riverside that is moderately priced called The Mill . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside||The Golden Palace , is a coffee shop , which offers Indian food , within a high price range , and has an average customer rating . It is located in a riverside area . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two id kid friendly and serves Indian food . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near Rainbow Vegetarian Café , it is in the more than £ 30 price range and has a 5 out of 5 customer rating . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is kid friendly Japanese near All Bar One in riverside with a moderate price range . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves Indian food near the Crowne Plaza Hotel and is child friendly . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||There is a non family - friendly restaurant named The Wrestlers , which serve Japanese food . The price is cheap and it has a 5 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes||Moderately priced fast food is served in a child friendly environment at The Olive Grove Pub , located in the City centre . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub located near Café Brazil . This establishment features Chinese cuisine with prices ranging from 20 -25 pounds . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is an above average price range restaurant in the city . They serve fast food and they are family friendly . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is kids friendly with moderate price range located near Café Sicilia . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a restaurant , which offers Indian food , and is kids friendly . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near the river and Crowne Plaza Hotel . It serves Indian food , doesn 't allow children . It is near the river and scores highly with customers . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : no||The Wrestlers sell cheap Chinese food . They have an average customer rating and are not family friendly . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House near All Bar One is a restaurant in the moderate price range \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kid friendly Japanese coffee shop found riverside with a customer rating of 5 out of 5 and prices ranging above 30 pounds . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : average||Chinese pub The Wildwood has an average customer rating and serves food within a cheap price range . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is a restaurant providing English French deliveries in the low price range . It is located in the city centre . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Indian food in the high price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove pub is low priced and also serves meals . It is in the city center . \nname : The Phoenix | food : Indian | customer rating : average | area : city centre||The Phoenix has an average customer rating . It is located in the city centre and serves Indian food . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||In riverside is The Twenty Two , which serves English food in a children friendly environment . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes||Aromi Japanese coffee shop is a kid friendly coffee shop located in the riverside area . customer ratings are high . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located within the city centre , The Rice Boat is a highly rated and kid friendly English restaurant . The Rice Boat is situated near Express by Holiday Inn and boasts a menu with a price range between £ 20 - 25 . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In Riverside , there is a place named Blue Spice , with a customer rating of 3 out of 5 , it 's kid friendly , and moderately priced . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : yes||In the city centre The Giraffe is a family - friendly pub which serves Italian food . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : less than £ 20||The Dumpling Tree is a restaurant that offers Chinese food for less than £ 20 . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada serves Indian food cheaply . It has a customer rating of average but is not family friendly . It is near the Rainbow Vegetarian Café . \nname : Green Man | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant that provides Indian food and has a price range of more than 30 pounds . It is located in the city of Riverside and is a family friendly establishment that is near All Bar One . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi , a coffee shop with low customer ratings , is located in the riverside area and offers French fare . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly Japanese pub . Zizzi 's customer rating is a 5 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn and is child friendly with the average bill being under 30 pounds with high customer ratings . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : yes||The Giraffe is a pub serving Chinese food . They are sited within the city centre and are family friendly . \nname : Blue Spice | food : French | price : high | area : riverside||Blue Spice is an elegant , high end French restaurant set in a beautiful riverside location \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar . It is a one star pub . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||Located at City Centre inexpensive fast - food served at The Phoenix . Customer 's rating are low \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is an expensive English restaurant near the Rainbow Vegetarian Café \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove pub is family friendly serves Japanese priced less than £ 20 in riverside . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough pub is a friendly place for all the family to enjoy . The fast food cost no more than 20 pounds and is located near Café Rouge . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The Plough is an affordable restaurant suitable for families situated next to The Bakers . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a Japanese not children friendly place with a great customer rating of 5 out of 5 and with a price range of £ 30 and over . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that offers family friendly fast food fare at prices that are less than £ 20 . It is located near Café Sicilia , but does receive a low customer rating . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an English food restaurant near the Express by Holiday Inn . It is family friendly . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : no||Located in the Riverside area , The Olive Grove is a moderately priced pub serving English food . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a cheap fine in restaurant close to the end of the city located beside Clare Hall . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : no||Zizzi is an Indian - style Pub that is not family friendly . Zizzi has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an expensive Italian coffee shop with a low rating . Children friendly they are located in riverside \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers near the Raja Indian Cuisine on the riverside is a Japanese coffee shop . No families . Its prices are within the less than £ 20 range . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a Fast food restaurant that is family friendly . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||There is a child friendly restaurant in riverside near All Bar One that is priced more than £ 30 called Green Man . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is located near Rainbow Vegetarian Café . Price is high . 1 out of 5 \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House , near Café Rouge , offers English cuisine . its customer rating is 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers , an unfriendly , lowly - rated Indian coffee shop , is located near The Portland Arms . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : city centre||A high price pub in city centre is the Clowns . It has a 3 out of 5 customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge can be found near The Sorrento in the riverside area . It serves Italian food and is family friendly . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is a high - cost but family - friendly pub . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : riverside | near : The Sorrento||Located in the riverside area near The Sorrento is a moderately priced coffee shop serving Indian food called The Mill . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a family friendly restaurant called The Golden Curry , which serves English food . It is located near Café Rouge and the riverside with a 5 out of 5 customer rating . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||For £ 20 - 25 you can get fast food at the kid friendly restaurant The Vaults . \nname : The Rice Boat | food : Fast food | area : riverside||The Rice Boat is an American restaurant on the river . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no||Aromi coffee shop serves Indian food and is in the city centre . But is has a low customer rating and is not family friendly . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the more than £ 30 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : no | near : The Bakers||For less than £ 20 , you can buy Indian food at The Golden Curry near The Bakers however it is not family friendly . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : no | near : The Sorrento||Located within the city centre near The Sorrento , Taste of Cambridge is a non - family oriented pub . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is an expensive , one - star , sushi restaurant near the All Bar One . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Zizzi is a coffee shop is located in the city centre . It is not child friendly . Prices range more than £ 30 and has a low customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||The children friendly pub located in riverside serves Chinese food in the range of £ 20 - 25 is called The Olive Grove . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Clowns is located in the very popular Riverside neighborhood . The pub is loved by locals , despite its high bill of over £ 30 on average . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||At the riverside there is a 3 out of 5 rated Japanese , it 's the name is The Phoenix . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Child friendly restaurant Loch Fyne serves French food . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice , near riverside , is a moderately priced fast food place . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||Situated in the city centre near Café Rouge is The Golden Curry which serves Japanese food . It is not family - friendly and has a low customer rating . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Serving Japanese food , Giraffe is a pub that is family friendly and is near the riverside area . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a highly rated , kid - friendly Italian restaurant in the city centre with a price range of L20 - 25 . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is rated 5 out of 5 priced more than £ 30 is near the Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Close to Crowne Plaza Hotel in riverside area , there is a Fast food coffee shop named Browns Cambridge . Browns Cambridge is rated by 3 out of 5 customers as kids friendly . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn , The Rice Boat is a 3 star family friendly restaurant that is usually high priced . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family friendly coffee shop located in the city center that provides Indian food which has a low customer rating and the price range is less than £ 20 . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low - priced , low - rated English restaurant near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies , rated 5 out of 5 , is a cheap Japanese coffee shop located near the city centre . It is not family - friendly . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : riverside||The Waterman is a Chinese pub with an average customer rating located in riverside . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||With a customer Rating of 5 out of 5 , the The Cambridge Blue is a nice Japanese restaurant . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree offers Fast food at a dine in restaurant . The price for the meals are more then £ 30 on average . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||With a customer rating of 3 out of 5 , The Wrestlers is a French , kid friendly , restaurant with prices ranging £ 20 - 25 . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||For a cheap option in the riverside area consider Clowns pub . it has been rated average by previous visitors . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A highly rated eatery serving Japanese cuisine located by Café Rouge and with a river view is The Golden Curry . They welcome kids of all ages . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a French pub and family friendly . They have great food . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Fast food deliveries in the more than £ 30 price range . It is located in near The Portland Arms . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is a cheap , family friendly restaurant rated 5 out of 5 by customers . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||The Loch Fyne is a family friendly French restaurant under L20 . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub that offers Japanese food and is family - friendly , located in the city centre and has a price range of less than £ 20 \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge has an average rating and offers dining at less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a restaurant serving Japanese food . It is family friendly \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe is a pub which offers Chinese food . It is located in riverside and is kid friendly \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A riverside , kid friendly pub , Aromi , has an average customer rating . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that offers cheap Italian food . It is near Café Sicilia and has a customer rating of 5 out of 5 and is family friendly . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers a range of French food based in the city centre in the high price range . It is children friendly , and located near the Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||You can take children to Loch Fyne restaurant for Italian food . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : riverside||An Indian food place in the high price range in riverside is The Phoenix . \nname : The Dumpling Tree | Type : restaurant | food : English | price : more than £ 30||The Dumpling Tree is a moderately priced restaurant that serves English food . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is an adult only restaurant . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The The Twenty Two is a beautiful restaurant located in the area of riverside near The Rice Boat , price between £ 20 - 25 with a warm clentele \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||A family friendly coffee shop the has high price is called Cocum . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant that has a low customer rating . It is located in the city centre and is family friendly . It is near Café Rouge . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is near Yippee Noodle Bar in the riverside area . It serves moderately priced Fast food , but has a low customer rating . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves Italian food for cheap , located near Yippee Noodle Bar by the city centre . It 's rated 5 out of 5 . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix located near riverside serves Indian food . The price range is £ 20 - 25 and it has a high customer rating . \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man is a moderately priced , kid friendly restaurant in Riverside . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||A Japanese restaurant that features a customer rating of 3 out of 5 , is not child - friendly , and is suitable for a high price range is called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||A high priced coffee shop called The Wrestlers serves Indian food in the city centre near Raja Indian Cuisine but is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly , Japanese coffee shop , that is located near the Crown Plaza Hotel in Riverside with a low customer rating . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||For French food costing between £ 20 - 25 , there is The Green Man , near All Bar One in the riverside area . It is kids friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a mid - priced coffee shop located north of the city centre near The Portland Arms . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Come eat at Fitzbillies , a moderately priced , kids friendly eatery with a 1 out of 5 rating , located near Express by Holiday Inn . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||There is a Japanese restaurant in Riverside that costs less than £ 20 . It is called Blue Spice . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a moderately priced pub near Café Rouge . It serves Chinese food and is child friendly . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||If you like the average restaurant , try The Golden Palace that is located on the riverside . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Zizzi is an expensive coffee shop in riverside . Its customer rating is low and it is not children friendly . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers sells Chinese food at more than £ 30 , with a high rating and is child friendly . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn is Fitzbillies . Fitzbillies is a cheap low rated location that is not family friendly . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers provides Indian food in the more than £ 30 price range . Its customer rating is high . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice in the area of riverside is a family coffee shop with a moderate price and a rating 1 out of 5 close to Avalon \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a French coffee shop located near The Sorrento in the city centre with a price range of less than 20 GBP . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Sushi lovers should not miss Alimentum located near the Yippee Noodle Bar . Alimentum is an inexpensive three - star restaurant that will delight your taste buds . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||At the riverside is Aromi serving French fare . It is an average rated , child friendly coffee shop . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is a 3 star £ 20 - 25 pub in riverside . It is called Clowns . \nname : Midsummer House | food : Indian | customer rating : high | near : Café Rouge||Midsummer House serves Indian food with a high customer rating and situated near Café Rouge . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||One could go to The Vaults for inexpensive fast - food ; however , leave your children at home as they are not kid - friendly . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : no | near : The Portland Arms||We are The Dumpling Tree , a pub close to The Portland Arms . We serve Chinese food . Bring your friends , and family . Age minimum is 21 . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is an adult restaurant offering expensive Indian food called Strada . It has an average rating . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||In the high price range , with an average rating is the The Vaults pub , near Café Adriatic \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Strada is a 1 out of 5 rated restaurant . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||A place named Fitzbillies with a customer rating of 3 out of 5 and is kid - friendly with a moderate price range . Located near Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop on the riverside serves fast food in the moderate price range and has a customer rating 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||There is a coffee shop called Fitzbillies in the city centre . It sells fast food , is children friendly , has a high price range and has average customer ratings \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a moderately priced restaurant located near The Six Bells . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix serves English food and has a customer rating of 5 out of 5 , it is located in the riverside area . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix on the riverside , has a 5 out of 5 rating for Italian Food \nname : Fitzbillies | food : Italian | price : £ 20 - 25 | near : The Six Bells||Italian restaurant Fitzbillies is low - priced and is located near The Six Bells . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly Japanese coffee shop . The 3 out of 5 establishment is located in the riverside area . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an expensive , family friendly , fast food restaurant with a 3 star review , located on the River near the Express by Holiday Inn \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a highly - rated family restaurant offering full service for a nice price over - looking the river . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Close to The Sorrento you will find Browns Cambridge a child friendly Japanese restaurant alongside the river . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a cheap coffee shop north of the city centre and near the river . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||Near The Rice Boat is the English restaurant Loch Fyne which has many high customer ratings . \nname : Loch Fyne | food : English | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is your average English restaurant in the riverside area near The Rice Boat . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a three star family - oriented restaurant The Rice Boat located near Express by Holiday Inn . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant with moderate pricing , a 3 out of 5 customer service rating , located in Riverside , it is kid friendly nearby Express by Holiday Inn \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||There is an average rated , high priced Indian food restaurant named Strada near Rainbow Vegetarian Café . Sorry children are not permitted \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly fast food food establishment located in the center of the city near Express by Holiday Inn . The range is cheap and it has an average customer satisfaction rating . \nname : Loch Fyne | food : Indian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is an Indian restaurant with a customer rating of 3 out of 5 . It is located near The Rice Boat , in the Riverside area . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat in the city center is an Indian restaurant near the Express by Holiday Inn with a low customer rating but moderately priced \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop serving Indian . It has a low customer rating but prices are less than £ 20 . It is located on the riverside . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||cheap , 5 out of 5 customer reviews this coffee shop called Fitzbillies has a no children policy serving French cuisine located close to the riverside . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Strada is moderately priced and kids friendly . Customer rating is 3 out of 5 . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a moderate priced kids friendly Japanese restaurant in Riverside near All Bar One . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Rated 3 out of 5 , Cotto is an Italian coffee shop near The Portland Arms close to the city center , family - friendly and moderately priced \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix It offers French meals were very fantastic prices \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 3 out of 5||There is a restaurant by the name of Browns Cambridge that serves Chinese food at a moderate cost and average customer rating . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||The Punter is a non family - friendly restaurant for a price range of less than £ 20 located near The Portland Arms in the riverside \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There 's a high customer rated Indian and coffee shop by the riverside that isn 't kid friendly that is around £ 20- £ 25 called Fitzbillies . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is located near Café Rouge and serves Italian food but has a customer rating of 1 out of 5 \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||The Vaults pub average rating with high prices near Café Adriatic \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is a non family friendly fast food restaurant called The Waterman . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop that serves Italian food at less than £ 20 in Riverside , near Burger King ; though it has a low customer rating \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman offers fast , family friendly food just north of the city centre . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving low price Japanese food . It is in the riverside area near The Portland Arms , and customers rate it 5 out of 5 . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : city centre||Located in city centre , The Phoenix provides Italian food ; it has a customer rating 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop called The Eagle . Its is located near Burger King in the riverside area . It is child friendly and serves Indian food at a £ 20 - 25 price range . It has a high customer rating . \nname : The Golden Curry | food : English | customer rating : average | family friendly : no||The Golden Curry offers English food for family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||The Cambridge Blue is a five star restaurant that serves burgers and fries . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||There is a coffee shop named Wildwood , near Ranch . It serves Italian food at a moderate price . It has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto has a wide selection of high priced pasta dishes , although they are barely worth the price . This coffee shop is located north of the city center . , near The Portland Arms , with a view of the river . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a French pub near The Portland Arms . It is family Friendly . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a family - friendly restaurant with a low customer rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop which serves Indian food . It has an average customer rating , it is children friendly and located near the riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre , there is a coffee - shop called The Eagle . It offers a children friendly fast - food alternative to nearby Burger King . However , it falls within a high price range , and is only rated 1 out of 5 from customers . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub near Café Adriatic . It 's rating is sitting at 3 out of 5 , but the prices are high . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||If you looking for family - Friendly average coffee shop with prices under 20 £ look for Zizzi at riverside . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , near Crowne Plaza Hotel serves Japanese food . Children welcome . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||A Japanese restaurant called The Phoenix is located in the centre of the city . Prices are less than £ 20 but it has low customer ratings . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix serves mid priced French food with high customer ratings \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop provides French foods with hight ratings is for the whole family . It is located in The Portland Arms . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Indian food in the high price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a 1 star restaurant located north of the City Centre and near Café Rouge \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat is The Twenty Two . In child friendly surroundings with a riverside . It also has great customer ratings for more than £ 30 . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||The Mill , a reasonable priced coffee shop , located next to The Sorrento \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly establishment offering English food . While having a low customer rating , it does have food priced at less than £ 20 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no||Aromi is a non - family - friendly , average Italian coffee shop in the city centre . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is an averagely priced , child - friendly coffee shop near to The Bakers , rated highly by other customers . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults is a cheap priced pub near Café Adriatic . It has average ratings . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is a no kids friendly restaurant that serves Indian food , with customer rating 5 out of 5 . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly French restaurant that is located near the Crowne Plaza Hotel . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : no||The Twenty Two is an adult restaurant that offers Indian food near the center of the city . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies , a restaurant near The Six Bells , is sells Japanese food for under £ 20 . \nname : The Waterman | Type : pub | food : English | customer rating : 1 out of 5 | area : riverside||The Waterman is a low - rated , riverside , English pub . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes||The Aromi serves coffee and Japanese food and is located in the city centre . It is family - friendly but customer rating is low . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The kid - friendly pub near The Rice Boat named The Twenty Two has moderate prices , but only received a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is an average coffee shop called The Golden Palace which lies close to the city river . \nname : The Plough | Type : pub | food : Fast food | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is located in the riverside area near Café Rouge with a price range of more then £ 30 . It is a fast food children 's friendly pub . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is a low priced restaurant in the riverside area . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi pub by the riverside is kids friendly and highly rated . \nname : The Phoenix | food : Japanese | customer rating : average | area : city centre||In the city centre you can find an average Japanese restaurant called The Phoenix . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Located near Burger King in the centre of the city is a new coffee shop , The Eagle . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a restaurant that serves Italian food . its customer rating is and it it child friendly . it is near All Bar One and its price range is moderate . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , The Rice Boat offers fine - dining sushi in a family - friendly atmosphere . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly Italian restaurant and coffee shop by the riverside . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A restaurant with a moderate price range near the city centre is The Waterman . They serve French food , are kid friendly , and have a customer rating of 1 out of 5 . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Located near the Express by Holiday Inn in the city centre , The Rice Boat offers moderately priced French food with a customer rating of 1 out of 5 . It is not kid friendly . \nname : Green Man | Type : restaurant | area : riverside||A restaurant named Green Man is located at the riverside . \nname : Loch Fyne | food : Chinese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne serves Chinese food with an average customer rating in city centre near The Rice Boat . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix provides your basic quality fast food at riverside . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||A non kid friendly coffee shop with a high price range located in the city center is named Zizzi \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a highly rated coffee shop selling cheaply priced Japanese food . It is called The Eagle and is located near to Burger King . It is family friendly . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a high prices Chinese restaurant in city centre . It 's child friendly and located near All Bar One \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is not children friendly which has a high customer rate and a price range of more than 30 is located in the city centre . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle offers Japanese food and coffee shop with cheap price near Burger King in riverside . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman offers a fast food meal . It has average prices . It is family friendly and has a very good opinion \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese food in the cheap price range with a customer rating of 5 out of 5 in the riverside area near Express by Holiday Inn ; it is not family friendly . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers provides Indian food in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle has an average customer rating for its Indian food . It is a coffee shop in the city centre , near to Burger King . It is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is in Riverside fast food place . It is a coffee shop with a cheap price range and rating of average . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : no||At the riverside , The Rice Boat is a quiet fast food place which has gotten average reviews . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is an expensive , family - friendly coffee shop near the river . \nname : The Mill | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside||The Mill , located near the riverside , is a moderately priced pub that serves Indian . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||For French food near riverside , The Rice Boat has a low customer rating but is family friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre||The Golden Palace specializes in moderately priced French food . It is located in the center of the city and features a casual coffee shop setting . It has an average customer rating . \nname : The Vaults | food : Chinese | price : cheap | family friendly : yes||There is a cheap family friendly Chinese restaurant called The Vaults . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : no||Located in the riverside area The Waterman has been rated average in customer ratings it serves English food in the higher price bracket . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||Taste of Cambridge is a restaurant with an average customer rating . High price range . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant that sells French food , is kid friendly , and is relatively cheap with the prices being around £ 20 - 25 . You can find it near The Bakers . \nname : Bibimbap House | food : Indian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House serves moderately priced Indian food on the riverside by Clare Hall . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix has ok food , it 's close to the City centre \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a restaurant providing Fast food in the price range less than £ 20 . It is located in riverside and no family - friendly . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a quaint coffee shop serving French food at a moderate price point , specifically friendly to kids . However it has a 1 out of 5 customer rating , but is located near Burger King by the riverside \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||The family - Friendly pub , Zizzi , serves English food and has a customer rating of 5 out of 5 . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a family friendly restaurant with an average customer rating . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English - style restaurant located near Express by Holiday Inn in the riverside area . It 's moderately priced , is not kid - friendly , and has a 1 out of 5 customer rating . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House serves averagely priced Fast food in the city centre near All Bar One . It has a 5 star customer rating . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||restaurant Taste of Cambridge is customer rated 3 out of 5 and has price range of £ 20 - 25 . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a moderately priced , 5 star fast food restaurant . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : no||Alimentum is an Indian restaurant with a moderate price range . It 's located in the city centre and is not kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a fast food restaurant which is not family friendly , has a low customer rating and is located by the riverside near the Crowne Plaza Hotel . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue restaurant is a five star restaurant offering French cuisine . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||With a 5 out of 5 customer rating , Clowns pub is situated riverside and has a price range of £ 30 plus \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||There is a high rated kid friendly Italian restaurant called The Golden Curry \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a wine bar near Rainbow Vegetarian Café that is family friendly . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||High price range , children friendly , average customer rating . Blue Spice is in Riverside . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||For less than £ 20 you can go to Zizzi coffee shop in the city centre . It is family - friendly with an average customer rating . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||Highly rated by customers , offering Indian cuisine , kid friendly and in the riverside area is The Rice Boat . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||There is a pub called Wildwood that offers great food . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||Fast food at The Cambridge Blue restaurant has a high customer rating . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||Dine with your family near Ranch at Cotto for average English cuisine . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : riverside||The Waterman is a pub offering Indian cuisine . This establishment is located in riverside and earned an AVERAGE customer rating . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||Wildwood is a three star pub with moderate prices . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a medium priced spaghetti restaurant situated close to All Bar One \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat has a poor customer rating and can be found near the Express by Holiday Inn in the city centre . The Chinese food they serve is moderately priced . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman has a high customer rating for cheap Chinese food . The restaurant is in the riverside area and is not kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : moderate||The Dumpling Tree is a Chinese restaurant in the moderate price range . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix have a less than £ 20 price range , serve English food , have a low customer rating and are located in city centre . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : no||The Twenty Two is a moderate pub in the city centre that delivers Japanese food . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||If you 're looking for an inexpensive Italian coffee shop , check out The Golden Palace . It 's located in the city centre and rated 5 out of 5 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Japanese food in the less than £ 20 price range , it is not family - friendly , has an average customer rating and is located near Express by Holiday Inn in the riverside area . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice is a not children - friendly restaurant whit a hight price , is also located in the riverside , and the rating is not that bad . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a low rating Japanese restaurant at the riverside and it is close to The Rice Boat . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : no | near : The Sorrento||Taste of Cambridge is a pub situated within the city centre , near The Sorrento . It is recommended that you do not bring your family to this establishment as it is a pub . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||Located at the riverside is Zizzi , a higher priced restaurant . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat , near the Rainbow Vegetarian Café , has a moderate price range . It has a customer rating of 3 out of 5 . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||There is a low - priced family restaurant Alimentum near the city centre . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a moderately priced Indian restaurant in riverside . It is not kid friendly and near All Bar One . \nname : Loch Fyne | Type : restaurant | food : English | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly English restaurant in the 20 to 25 pound range . \nname : Clowns | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop is located by the riverside near Clare Hall . It serves French food . Its customer rating is 1 out of 5 . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||Wildwood pub serves low quality French food and drink for a high price \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no||The Olive Grove is a costly fast food center named Olive Grove located in the city center . It has a pub facility and does not allow kids . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serves Indian food at a moderate price range and is not kid friendly . The are located in the city centre area . \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||If you 're looking for a cheap , family - friendly place with a great view of the riverside , Alimentum is a good choice . \nname : The Vaults | Type : restaurant | food : Chinese||The Vaults is a restaurant that serves Chinese food . \nname : Strada | Type : pub | food : Chinese | customer rating : average | near : Yippee Noodle Bar||Near Yippee Noodle Bar is a Chinese food pub , Strada , with an average customer rating . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Strada is a restaurant that received 3 out of 5 stars . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||By the riverside , near Café Sicilia , is a pub called The Twenty Two . It has a low customer rating . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||A great place to eat English food is The Golden Curry . It is kid friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman restaurant with Japanese food in riverside . A eat Type pub with a low customer Rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant providing French food , located in a riverside area , the customer rating is 5 out of 5 , is a high - priced and they are Children Friendly . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One in the riverside area there is the Green Man which serves Italian food at a high price range . It is children friendly . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man , located near All Bar One , offers a variety of Chinese food for low prices . It is in the city centre . Leave the children at home . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum provides Indian food for lest than £ 20 . It is not family friendly and is located on the river . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop by the riverside which offers highly rated Fast food , with prices ranging from £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located north of the city center near the Crowne Plaza Hotel . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||For cheap Italian food at a place that isn 't family - friendly and has an average customer rating , visit The Eagle coffee shop . It is located in the city centre near Burger King . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi pub at riverside is child friendly with a customer rating of 1 out of 5 . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||The Phoenix is a French restaurant located in riverside . It has a customer rating of 3 out of 5 . \nname : The Waterman | price : high | family friendly : yes||The Waterman is a child friendly place that is relatively high priced . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Indian restaurant in the city centre , near to Café Rouge . The venue has received poor customer reviews . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop providing French coffee near The Sorrento riverside area . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : £ 20 - 25||There is a restaurant The Dumpling Tree that serves Chinese food . \nname : The Punter | food : Japanese | price : high||The Punter is a Japanese restaurant with high standards . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant located in the city center near Express by Holiday Inn . It is a family - friendly restaurant that provides low priced meals . The Rice Boat is an average rated restaurant . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Cheaply priced Blue Spice is a family - friendly venue in the city centre \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is a family - friendly restaurant with a less than £ 20 price range near The Portland Arms in the city centre . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : yes||The Twenty Two is a family - friendly restaurant providing Italian food . It is located in city centre . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : no||A restaurant called Loch Fyne serves French food at above average prices . The restaurant is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue restaurant offers a variety of easy , take away foods . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix offers Italian food at reasonable prices . It has low consumer ratings \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : no||Loch Fyne is not a family friendly restaurant , but it serves Indian food . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||In the high price range , The Punter is a coffee shop offering Indian food . It is not children friendly and has a customer rating of 1 out of 5 . It is located near the Café Sicilia . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a cheap 5 out of 5 customer rating restaurant that is family friendly and is right near The Rice Boat \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly , fast food place with great ratings near the riverside Express by Holiday Inn . The price range is 20 - 25 pounds . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family - friendly British restaurant near Rainbow Vegetarian Café . It is inexpensive and has a customer rating of three out of five . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||There is an average coffee shop Wildwood near Ranch . It serves Japanese cuisine which costs less than £ 20 . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||City centre located The Vaults is a family friendly restaurant offering fast food at moderate prices . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a non family - friendly coffee shop with French food near The Portland Arms . They have a low customer rating . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is a poorly rated coffee shop near The Bakers . It is expensive . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is family friendly and is near All Bar One in the city centre . It serves Chinese food for less than £ 20 \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman serves English food in riverside . The customer rating is high , it is not children friendly and has a price range of more than 30 pounds . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||If you want a decent - priced choice for Indian food , try the Midsummer House . It has a customer rating of 3 out of 5 and it is located near All Bar One . \nname : Loch Fyne | food : Chinese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne serves Chinese food near The Rice Boat in city centre in surroundings that leave much to be desired . \nname : The Mill | Type : pub | food : Chinese | price : high | area : riverside||The Mill pub serves high price range Chinese food and is located in the riverside area \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : riverside||The Waterman was at a pub in Riverside eating Chinese , the low rating for the pub held true . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto is children friendly and offers Indian food in an average price range . It is located near Ranch . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : no||Expensive adults - only Chinese food at Alimentum in the city centre . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is highly rated for its inexpensive fast food coffee shop near Café Sicilia \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : no||Zizzi is a Chinese pub with a low customer rating that you wouldn 't take your family to . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||For mid priced Japanese food in a riverside location try Alimentum near Yippee Noodle Bar which has a low a rating . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat , serving Chinese food is located by the riverside , is family friendly and has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap French coffee shop in the riverside area with an outstanding 5 out of 5 rating . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||Fitzbillies provides French food for £ 20 - 25 near The Six Bells . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The Golden Curry is a child - friendly Japanese restaurant rated low by other customers . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing low quality food and family services . It is located in the north of city after Crown Plaza Hotel . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Kid friendly , highly rated by customers is The Waterman offering Chinese food within £ 20 - 25 . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant of Italian food . We are near The Bakers . Join Us . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||At the riverside , there is a restaurant rated 3 out of 5 named The Golden Palace . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a child - friendly restaurant with a customer rating of 5 out of 5 . \nname : Blue Spice | food : French | price : high | area : riverside||Blue Spice Prices range from beautiful £ 20 - 25 \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||The Cambridge Blue is an Italian restaurant with a customer rating of one out of five . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant that offers Japanese food in a moderate price range with a customer rating of 1 out of 5 . It can be found in the city centre near Express by Holiday Inn . It is considered to be a kid friendly restaurant . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is an expensive three - star restaurant The Rice Boat located near Express by Holiday Inn . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||The Clowns pub price range is more than £ 30 in high customer rating in riverside \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Indian restaurant The Rice Boat is rated 1 out of 5 . The family friendly restaurant is located in Riverside . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Only the brave should try the the coffee shop atmosphere of the Wildwood in Ranch , for a less than average dining experience with a moderate price tag . \nname : Loch Fyne | food : French | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||The Rice Boat at riverside provides French food Loch Fyne which has a customer Rating of 1 out of 5 . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is an average rated , French restaurant , near The Rice Boat in Riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an expensive coffee shop located near Café Sicilia . It is family friendly and rated one star . \nname : The Plough | Type : pub | food : French | price : cheap | family friendly : yes | near : Café Rouge||There 's a cheap French pub , The Plough . It is near Café Rouge and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop offering fast food close to the river . It is five star rated and in the mid price range . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is children friendly pub with price range more than £ 30 . It is located in city centre . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves English food . It has a high customer rating and costs more than £ 30 . It is located near Café Sicilia . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix , a French restaurant by the riverside . Serves good - value cuisine for happy customers . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||A pub called The Vaults has a high price range and a customer rating of 1 out of 5 . It is near Café Adriatic . \nname : The Vaults | food : Indian | price : more than £ 30 | family friendly : yes||Kid friendly , The Vaults serves Indian food for more than £ 30 . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle a Cheese and Winery . \nname : The Golden Curry | food : French | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Along the riverside , near to Café Rouge , there is a highly rated restaurant called The Golden Curry , which serves French food . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a family coffee shop that serves American food . It is affordable . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix wont surprise you with high quality , but its quick and fast food at riverside . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||Come over near the riverside for a wonderful 3 out of 5 rated restaurant called The Golden Palace . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café and children friendly for Chinese food , the only thing coming to mind is Strada where the prices are high and ratings are 1 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge is a family - friendly restaurant named The Golden Curry . They serve fast food in the riverside area , and have a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a high rated , coffee shop near Clare Hall . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Eagle located in the city centre is rated 3 out of 5 with a price range of 20 - 25 \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre near Express by Holiday Inn , The Rice Boat is a cheap Japanese restaurant with a customer rating of 5 out of 5 . It is not family - friendly . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||There is a cheap restaurant Fitzbillies located near The Six Bells that provides delicious sushi . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat restaurant near to Express by Holiday Inn is rated 1 star by customers . It is not child friendly , and sells moderately priced French food . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a unique Italian restaurant in the Riverside area . With moderate prices , low crowds , and an adult atmosphere , you are sure to enjoy a peaceful night full of pasta and oregano . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||With a poor customer rating , Cotto serves kid friendly fast food . It is located near Ranch . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||The Blue Spice is a coffee shop located riverside near Avalon . High price range . Not child friendly . Customer rating 3 out 5 . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly French restaurant on the riverside . It is near Café Rouge and gets a 3 out of 5 rating . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||There is a family friendly French food restaurant in riverside . It is near The Sorrento and it is called Browns Cambridge . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||A coffee shop called The Punter sells Indian food at a cheap price . It is family friendly , has a 5 out of 5 rating , and near Café Sicilia . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Fast food serving coffee shop near Crowne Plaza Hotel , that is family friendly and has an average customer rating in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||For highly - rated Japanese food pop along to The Golden Palace coffee shop . Its located on the riverside . Expect to pay between 20 - 25 pounds per person . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||There is a cheap family friendly Italian restaurant in riverside called Alimentum . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a family friendly pub near The Sorrento on the riverside \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||French cuisine is served by The Rice Boat located centrally in the city near Express by Holiday Inn , in the higher price range for food but has been given customer ratings of 3 out of 5 . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||Near The Bakers is a moderately priced kid friendly Italian restaurant called The Golden Curry . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||The Dumpling Tree is a French restaurant serving food in the price range of 20 - 25 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||In city centre , with a high customer rating and a price range of £ 20 - 25 , The Phoenix serves French food . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||1 out of 5 customer rating moderate priced Japanese food in the riverside area for adults only is The Waterman \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a five star , expensive Japanese coffee shop with family amenities located near Café Sicilia \nname : The Phoenix | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Phoenix is located in the Riverside area . They serve Chinese food and have a customer rating of one out of five stars . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada serves lower priced Chinese food , and has received low customer ratings is not a family friendly place to dine . \nname : The Waterman | Type : pub | food : Japanese | customer rating : high | area : riverside||A pub by the riverside that serves Japanese food is called The Waterman , which has a very high customer rating . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||Along the river The Waterman serves French cuisine . The pub is rated 3 out of 5 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman does French food and has an average price range , child friendly , with a rating 3 out of 5 , they are in the City Centre area . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a highly rated , family friendly , fast food coffee shop . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop , located in the area of riverside , near The Burger King . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is a low - cost fast food restaurant located near All Bar One . This establishment is not open to children . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||One of our higher customer rated restaurants is The Waterman in the centre of the city . It is well known for it 's excellent English food . The friendly , family atmosphere The Waterman offers , means you can guarantee a reasonably priced meal . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||Located by the riverside , The Twenty Two is a high priced restaurant with a rating of 3 out of 5 . This restaurant is not suitable for children and is near The Rice Boat . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||coffee shop serving Japanese food , Cotto is high priced with a rating of 3 out of 5 , located near The Portland Arms in city center . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is an Italian coffee shop near The Portland Arms in the city centre . It has a high price range and was given a customer rating of 1 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The Golden Curry , providing French food is children friendly with a low customer rating . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||The Browns Cambridge is a Japanese restaurant with a cheap price range and 5 out of 5 customer rating . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry serves Indian food and has a customer rating of 5 out of 5 . Yes , it is family friendly and is located in the city centre area near Café Rouge . \nname : The Punter | food : French | price : cheap||At great prices , you can be sure to get excellent French food at The Punter . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a middle price range restaurant located just near All Bar One . It is family oriented . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix gets low customer ratings and offers French fare in the over £ 30 range in Cambridge 's city centre area . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge is a venue in the price range of 20 and has been rated average \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a low - priced coffee shop that is family - friendly and serves Japanese food . It has a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||The Waterman is an Italian pub in the riverside area , with a customer rating of 1 out of a 5 . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||If you are looking for a family friendly Japanese pub in the Riverside area check out Giraffe . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Blue Spice is a non child friendly establishment with a low rating . The price range is higher than £ 30 , and it is located at the riverside . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : no||Strada is an average shop with prices less than £ 20 . Not family - friendly . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is place where You can get Italian food for less than £ 20 , it is located in city centre , near All Bar One . Not suitable place for families . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two offers a child - friendly fast food experience . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is not a family - friendly cheap Japanese restaurant located in city centre and has low customer rating . \nname : Blue Spice | food : Italian | price : high | area : riverside||Highly priced Italian food is available in Blue Spice located in riverside \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||A restaurant with price Range of £ 20 - 25 , Zizzi is located at the riverside \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||On the riverside is a family friendly Japanese restaurant rated 5 out of 5 by customers , called The Rice Boat \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||5 - Star ' Alimentum ' is a moderately - priced restaurant located near Yippee Noodle Bar on the river to the north of the City centre serving a selection of wines and cheeses . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a highly rated pub . It 's kid friendly and priced £ 20 - 25 . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove in the city centre is not a child friendly pub with a price range of more than £ 30 that offer Japanese food . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two , which serves English food at the riverside , is children friendly . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||A moderately price Japanese place called The Wrestlers is rated 1 out of 5 and is not kid friendly . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||A family friendly restaurant that offers food for a cheap price range and has 5 out of 5 for customer ratings may be found near Express by Holiday Inn , and is named Fitzbillies . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is an expensive pub by the riverside and child friendly \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||Sushi restaurant Aromi is near the river . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Aromi Italian coffee shop has five stars and is family friendly . It is located in the riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Leave the kids at home , while you quickly feed your needs at The Eagle . This 1 out of 5 establishment is near Burger King in riverside and is also very expensive coffee . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman serves Fast food . It is in riverside . It is not kid friendly . It has an average price range and a high customer rating . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||For a cheap , family friendly coffee shop with an average customer rating in the riverside area , visit Zizzi . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||A moderate price pub is The Wildwood . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne a French food place receives 5 out of 5 rating by customers can be found near The Rice Boat in the center of the city . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a Chinese pub that is near Café Brazil . The food is average price . \nname : Fitzbillies | food : French | price : high | near : The Six Bells||Located near to The Six Bells is the stunning French restaurant named Fitzbillies . Prices are at the higher end but so is the quality of the food . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The Golden Palace is a high end restaurant located in the center . of Cambridge . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat restaurant has expensive prices and has received poor reviews . It is located next to the Rainbow Vegetarian Café . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : no||The high end , pub style Italian restaurant , The Olive Grove , is located in the city centre area . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||For averagely priced pub food you could try The Golden Palace which is near the Rainbow Vegetarian Café by the river . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers , although not a family - friendly place , serves Italian food at a cheap price . It even has a 5 out of 5 customer rating . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||The family friendly Japanese riverside restaurant called Browns Cambridge is near The Sorrento . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a restaurant providing Chinese food in the £ 20 - 25 price range . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults , a family friendly Japanese restaurant , is more than £ 30 . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a family friendly five star coffee shop called Cocum with a low price point . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||In the center of the city there is a customer rated 3 out of 5 moderate price range Fast food restaurant named The Phoenix . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop which serves Italian food for less than £ 20 , can be found in the Riverside area near The Sorrento . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||There is a fast food restaurant near Rainbow Vegetarian Café named Strada . It offers prices less than £ 20 but it is not family - friendly and has a low customer rating . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant with a high price range . The customer rating is average and is found in the city centre area near Yippee Noodle Bar . \nname : Bibimbap House | food : Chinese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House Chinese food price range is more than £ 30 , but sitting along the riverside near Clare Hall softens the blow . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers providing French Food . It is located in City center . Start from low price , have 1 out of 5 costumer rating and Friend - family . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Non family friendly coffee shop serving Indian food for less than £ 20 . On the riverside near Raja Indian Cuisine . It is The Wrestlers . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is family - Friendly French food place rated 5 out of 5 located near Ranch . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a fine cuisine take - away delivery restaurant and the customer rating is very low but it is in the area near the riverside which is very beautiful . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a child - friendly restaurant serving up English style food . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is a good option if you 're looking for somewhere child - friendly . It 's average in pricing , and you can find it near Café Sicilia . \nname : Loch Fyne | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne , a Chinese restaurant situated in the riverside area near The Rice Boat , has revived low customer ratings . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | near : Ranch||The Wildwood coffee shop located near Ranch has a customer rating of 5 out of 5 . It serves decent cheap Indian food . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a Japanese coffee shop family friendly located at the riverside near the Crowne Plaza Hotel . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is less than £ 20 and is located in the riverside area near Café Adriatic and has a low customer rating \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a child friendly Japanese restaurant located near All Bar One in the city centre , with prices ranging more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Located in Riverside near Burger King there is a coffee shop known as ' The Eagle ' . Has a good customer rating , is child friendly and has a good price range for fast food . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : no||Alimentum is an Indian restaurant located the the riverside area . It is moderately priced , but not kid friendly . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a children friendly Italian food restaurant in the center of city with high pricing and low customer rating 1 out of 5 . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : city centre||In the city Centre with a low customer rating is The Eagle with a price of more than 30 . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||The Giraffe is a family friendly French pub in the riverside area . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Wildwood is inexpensive pub and offering the best Chinese food \nname : The Punter | price : moderate | area : city centre | family friendly : yes | near : The Portland Arms||The Punter in the centre of the city near The Portland Arms , has moderate prices . \nname : The Waterman | Type : pub | food : Indian | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub providing Indian food It is located in the riverside . Its customer rating is 3 out of 5 . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||Located on the riverside , near The Portland Arms , The Punter is a high priced , child friendly locale . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel at the riverside there is a low rated French coffee shop called Browns Cambridge . It isn 't family - friendly . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : 5 out of 5||Browns Cambridge provides Chinese food in the cheap price range . Its customer rating is 5 out of 5 . \nname : Bibimbap House | food : Chinese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House serves Chinese food at a price range of £ 20 - 25 . It is located in riverside near the Clare Hall . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||With a high customer rating the Strada serves English food with prices at more than £ 30 . This adult establishment can be found near the Rainbow Vegetarian Café . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||In the city centre is Alimentum . Italian food with prices less than £ 20 . It is not a family - friendly place . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two is a Chinese restaurant is family friendly . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is a children friendly English cuisine place with high prices in the riverside area . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||In the city center area , there is a highly- rated Italian restaurant called The Waterman . The average plate is more than £ 30 . Children are not recommended for this restaurant . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , family friendly , fast food restaurant . It is located by The Express by Holiday Inn , North of the City Centre . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a French - styled pub in the riverside area . It is child - friendly , with prices in the £ 20 - 25 range . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia with a price range of £ 20 - 25 . It serves French food and has a high customer rating . It is also kids friendly . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The adult only French coffee shop , The Eagle , is located near Burger King in riverside where you can eat for under £ 25 at a 3 out of 5 rated place \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a restaurant providing food Italian in the 20 - 25 pound price range . It is located in the riverside people rating high \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children friendly Fast food restaurant with high prices . It has a 1 out of 5 rating and it located in the city centre near Express by Holiday Inn . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : no||Alimentum is a mid priced restaurant that is not family friendly located near the river . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada , an English restaurant near Rainbow Vegetarian Café , is rated average among its customers . It is a high priced restaurant and is child - friendly . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a kid friendly Italian restaurant in the riverside area with a high customer rating . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One is a children friendly English restaurant , Green Man . This is no greasy spoon diner , with a lovely riverside location and high priced cuisine . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a customer rated 1 out of 5 Japanese restaurant in the city centre . It has a moderate price range . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : no||Loch Fyne is a high class restaurant serving English food in an adult environment . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies , a place located on the rivers banks is great place to grab a good bite to eat . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : no | near : All Bar One||You could try the Green Man , it serves Indian food , it is near All Bar One in the city centre . No it is not child friendly but the meals are reasonably priced at about £ 25 per person . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : city centre||There is a pub located in the city centre called The Mill that serves French food for less than £ 20 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is not a family - friendly French restaurant near Café Rouge , located by the riverside . The customer rating is low . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a low priced but high rated family friendly sushi restaurant . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant providing child friendly fast food in the moderate price range . it can be fond near The Bakers . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||If you are in the riverside area and have more than £ 30 to spend on a highly - reviewed Chinese restaurant , The Phoenix is a great option . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly , moderately priced establishment located in the riverside area . It can be found near The Rice Boat and has an average customer rating of 3 out of 5 . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||A family friendly French - style pub , the Giraffe is located in the riverside area . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a cheap , family friendly place called Strada serving English food . It has an average customer rating . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : yes||Alimentum is a family friendly Chinese restaurant by riverside in the moderate price range . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada provides cheap fast food near Rainbow Vegetarian Café . It has 5 out of 5 customer ratings and is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a fairly good sushi place next to the Crowne Plaza Hotel called Browns Cambridge . \nname : Fitzbillies | food : Chinese | price : less than £ 20 | near : The Six Bells||Fitzbillies is an average priced Chinese restaurant . It is near The Six Bells . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||A low - priced fast food restaurant called The Rice Boat can be found outside of the City centre , near to the Express by Holiday Inn . It does not cater for families and has a low rating . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue is located near Café Brazil , and it 's a moderately priced English pub . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix in city centre has a high customer rating with a £ 20 - 25 price range but they are fast food . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is average . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a children friendly restaurant . They serve Indian food and is located by the riverside and their customer rating is average . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge is a fast food family - friendly has an average customer rating . It is in the city centre area . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Even though it has a low customer rating , Cocum is a family friendly restaurant . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : no||Loch Fyne is a restaurant that serves Indian food and has a high price range and not children Friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop in riverside serving Indian food at a moderate price . It is not kid friendly and has a customer rating of one . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is an expensive but family friendly coffee shop located near Café Sicilia . It has high customer ratings . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is an excellent , family friendly French coffee shop near The Portland Arms . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The is a kid friendly fast food place near the riverside called The Rice Boat . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||There 's a coffee shop near The Portland Arms that serves Italian . It 's called The Cricketers , has a 3 out of 5 rating , and yes to being kids friendly . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Situated on the riverside near The Sorrento , the Taste of Cambridge is a child friendly pub . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||There is a medium - priced coffee shop Giraffe located beside The Bakers that is rated 3 stars and suitable for families . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is located on the river , close to The Portland Arms , and serves good food at a reasonable price \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near Burger King . Its customer rating is 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Wildwood is a cheap fast food coffee shop near Ranch . They currently have an average customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||No , The Punter is Fast food with coffee shop on the side Café Sicilia with cheap average \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , is The Golden Palace . It is a cheap pub in Riverside . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||There is a pub called Wildwood which serves Japanese food and has been given a customer rating of 3 out of 5 . The meals have an average price range of £ 20 - £ 25 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||This low priced sushi restaurant called Loch Fyne is not family friendly . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , which serves Chinese food , has a customer rating of 1 out of 5 . It is kid friendly and is located riverside near Café Rouge . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman in the riverside is highly rated and children friendly . It serves Fast food with price range more than £ 30 . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fast food for a low price for the whole family can be found in the city centre at the low rated The Waterman . \nname : Midsummer House | food : Indian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is an Indian restaurant in the more than £ 30 price range with a high customer rating . It is located near All Bar One . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the center of the city with a customer rating of 3 out of 5 is a moderate price ranged kid friendly English restaurant near Express by Holiday Inn named The Rice Boat . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||There is a highly rated , expensive fast food place near the Yippee Noodle Bar in the city center called Alimentum . \nname : The Twenty Two | food : Japanese | family friendly : no||The Twenty Two offers sushi in a child free environment . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crown Plaza Hotel in a riverside area is a Japanese coffee shop called Browns Cambridge , which is child friendly and has low customer ratings \nname : Fitzbillies | food : Chinese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies serves Chinese food and has an average rating . It is near The Six Bells . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop is a nice setting and children friendly and is also near the Avalon \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant serving Japanese dishes . Located in the city center , you will find The Golden Curry near Café Rouge . Customers give this restaurant low ratings . \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat has an average customer rating near Rainbow Vegetarian Café that is cheap . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||The Cotto , close to The Portland Arms in Riverside is a lovely coffee shop offering cheap fast food . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non - children friendly restaurant offering Chinese food in the high price range . It has average customer rating and is located in Riverside , near the Express by Holiday Inn . \nname : The Vaults | Type : restaurant | food : Italian||You can get Italian food from The Vaults restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is our new kid friendly , Italian coffee shop located near Crowne Plaza Hotel in our beautiful riverside community . With high customer ratings this place is sure to be a favorite . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a Chinese restaurant that is kid friendly . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle serves French food . The Eagle has a 3 out of 5 customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||Wildwood coffee shop , near Ranch serves expensive sushi . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a French cuisine pub that is family friendly and has received a customer rating of 5 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||A French menu is provided at the Loch Fyne restaurant , in a family friendly atmosphere . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||The Cambridge Blue which is a restaurant that serves Japanese food , has a low customer rating . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is located near Rainbow Vegetarian Café and its prices are high . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing French food and is children friendly for more than £ 30 price range . It is located in the city centre near Burger King . \nname : Green Man | price : moderate | area : riverside | family friendly : yes||A kid Friendly moderate price range on the riverside named Green Man . \nname : Midsummer House | food : Japanese | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is a Japanese venue near Café Rouge . It has a customer rating of 1 out of 5 . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : city centre||The Phoenix is a cheap , average Indian foods establishment , located in the city center . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area neat the Express by Holiday Inn can be found The Rice Boat restaurant . The Rice Boat is a family friendly place with low prices and an average customer rating . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : no||Alimentum is a moderately priced Indian in Riverside . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||A low - cost French coffee shop called The Mill is located near The Sorrento in the riverside area . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||There is a three star restaurant called Midsummer House located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a Indian coffee shop with moderate pricing located in city centre near Burger King . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop located on the riverside . It offers cheap fast food with am average customer rating . \nname : The Eagle | food : Japanese | customer rating : 1 out of 5||The Eagle 's Japanese food is rated 1 out of 5 . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is located in the riverside area near Yippee Noodle Bar . It receives average customer ratings and serves Italian food ranging high in price . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no||Giraffe is a pub serving French food in city centre . It is not recommended for families . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||There is a family friendly restaurant named The Rice Boat . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is an Italian coffee shop with an average customer rating , child friendly and a high price range . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a family friendly pub located in the riverside area . They serve Italian food . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||The Cambridge Blue is a five star rated restaurant . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Customers rate riverside fast food restaurant The Golden Curry located as near Café Rouge as average and child friendly . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : yes||Alimentum provides Indian food in the moderate price range . It is located in the city centre . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is not a family - friendly coffee shop but is situated near The Portland Arms . You can get Japanese food there although the customer rating is low . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||In riverside , Zizzi is a coffee shop that has a high customer rating for its child friendly environment and price range of around £ 20 - 25 . \nname : Green Man | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man restaurant children Friendly type food price range more than £ 30 . It build riverside area and near the All Bar One . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Fast food joint , The Green Man , is located along the riverside near All Bar One , offering a child friendly atmosphere and a high priced menu . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto coffee shop is a cheap place to get fast food . It has a customer rating of 5 out of 5 and is located in the city centre area near The Portland Arms . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Based on the riverside near Café Rouge , The Golden Curry fast food restaurant is low rated but child friendly . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||children - friendly fast food with an average rating and high price is The Wrestlers . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop that is child - friendly and offers moderately priced fast food . Its customer rating is 1 out of 5 . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||The Wrestlers offer high - cost British food in a family - friendly environment . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Fitzbillies is a place providing quality French food for more than £ 30 . It is located near The Six Bells . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is not child friendly and the price range is high but the rating is average . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a family friendly coffee shop that offers Indian food . It is in Riverside and is located near the Crowne Plaza Hotel . \nname : Midsummer House | food : French | customer rating : high | near : Café Rouge||Midsummer House has a high customer rating , they serve French food and are located near Café Rouge . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Right now the customer ratings for Alimentum are only average but with the Chinese food being cheap and in city centre , near Yippee Noodle Bar , ratings are bound to go up . \nname : The Mill | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | near : The Sorrento||A coffee shop called The Mill is located in Riverside near The Sorrento . They serve Indian food at a decent price . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe restaurant has a price range less than £ 20 and is near The Six Bells . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Located near a ranch , Wildwood is a average customer rated coffee shop that serves Italian food . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice , a high priced and children friendly restaurant that rates 3 out of 5 is located on the riverside . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : no||The Rice Boat provides Chinese food It is located in the city centre . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a low rating Fast food coffee shop in the riverside area near the Crown Plaza Hotel , the restaurant is family Friendly . \nname : The Rice Boat | food : Japanese | area : city centre||The Rice Boat . Selling Japanese food in the city centre . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is not children friendly with a price range of more than £ 30 , but a 5 out of 5 customer rating and is near The Express by Holiday Inn \nname : The Golden Curry | food : Fast food | price : high | family friendly : no | near : The Bakers||The Golden Curry near The Bakers sells high price fast food . It is not children friendly . \nname : The Mill | Type : pub | food : Chinese | price : high | area : riverside||The Mill is a Chinese pub with a high price range in the riverside area . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a five star , expensive public house situated close to Café Adriatic \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue is a rated low Italian restaurant . \nname : Alimentum | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum provides Chinese food in the more than £ 30 price range . It is located in the riverside . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a pub that serves mid - priced food near the River . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Kid friendly Japanese venue , Browns Cambridge , is located near The Sorrento along the riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||In the city centre is Fitzbillies coffee shop serving cheap Indian food with average ratings . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a cheap family friendly Italian restaurant that is near The Bakers . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||You can find moderately priced Japanese style food at Browns Cambridge . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a moderately - priced 1 out of 5 rating restaurant that provides Indian food in a non kids friendly environment . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||There is an amazing kid friendly Japanese restaurant called the Loch Fyne that serves great food . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Aromi , a highly rated riverside coffee shop , is child - friendly and serves Italian food . \nname : Green Man | Type : restaurant | area : city centre||The Green Man is a city centre area restaurant . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Italian food located in the city centre near Clare Hall with a low customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is a Japanese coffee shop near Ranch . It has a 5 out of 5 customer rating , and is priced more than 30GBP . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : yes | near : Café Rouge||There is a kid - friendly pub called The Plough located near Café Rouge serving Chinese food . It has a low customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is located at the city centre , a coffee shop that serves Indian food . It is children friendly with a high customer service rating , the cost is more than £ 30 . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||You can get well rated average prices Japanese food in family friendly Strada . It is located near Rainbow Vegetarian Café . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is this place called Cotto near Ranch , it is very kid friendly , serves English food but only has a 1 star customer rating . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry in the riverside area which serves English food is highly rated by customers and is child friendly . It is located near Café Rouge . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a low rated family friendly pub with prices less than 20 euros . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant near to Rainbow Vegetarian Café called Strada . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a non family - friendly fast food restaurant . It 's located near The Bakers and costs less than £ 20 . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub serving Chinese food in the riverside . It is kid friendly and a price range of less than £ 20 . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers offers moderately - priced fast food , in an atmosphere not suitable for children , and has received 1 out of 5 ratings . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two is children friendly , and offers Indian food . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree coffee shop with a moderate price range near Café Sicilia is kids friendly the riverside area . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||If you are looking for a meal at a bargain price in the Café Rouge area , visit Wildwood restaurant . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is located near Rainbow Vegetarian Café . its price range is less than £ 20 and its customer rating is average . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The fast food and coffee shop near The Portland Arms is The Cricketers which is children friendly , but has a customer rating of 1 out of 5 . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum offers a price range less than £ 20 and is a fast food establishment close to Yippee Noodle Bar in the city centre area with low customer rating . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||There is a French coffee shop located near Café Sicilia , that is non child friendly , has a low customer rating and a high price range named The Punter . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a highly rated Indian restaurant located near the Rainbow Vegetarian Café . Prices at Strada range from 20 - 25 . This is an adult atmosphere and is not kid friendly . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||for moderately priced fast food with great ratings there is the Wildwood pub \nname : The Twenty Two | food : French | area : city centre | family friendly : yes||The Twenty Two is family - friendly , it serves French food and is in the city centre . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||A restaurant called Wildwood is near Café Rouge , Their customer rating is 3 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||The Taste of Cambridge is a restaurant offering a price range of more than £ 30 and has a satisfactory customer rating . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix sells Indian food with the price range of less than £ 20 . It is located in riverside , but has an overall rating of low . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : no | near : Café Rouge||Italian food can be found at the adult oriented environment The Plough . It serves Italian food at modest prices in a pub near Café Rouge . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , Strada serves excellent family friendly Japanese food , at low prices . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a Japanese coffee shop located near Burger King , in the riverside area . It is not family - friendly and it is rated and priced averagely . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a child friendly , Italian restaurant with a high price range . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : no||The Golden Curry is an average Fast food joint that is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside , near Crowne Plaza Hotel , there is a kid friendly Japanese coffee ship named Taste of Cambridge . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle serves Japanese cuisine and has a customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||Wildwood pub serves multicultural dishes and is ranked 3 stars \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Located in the city center . , Loch Fyne offers value fast food meals for the whole family . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A coffee shop that The Wrestlers eat at , with a moderate price range , serves Japanese cuisine , but is not kid friendly and is located near Raja Indian Cuisine in the city centre area . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman riverside Indian restaurant welcomes families . Despite its high end prices customer satisfaction levels are low . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , located near Café Adriatic by riverside , offers moderately priced deals with rating 3 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Located at Riverside , Alimentum , is a fast food restaurant with a moderate price range and has a kid friendly environment . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly Japanese coffee shop in the city centre near Burger King with a customer rating of 1 out of 5 and has a moderate price range . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is an Italian restaurant with low prices and a 5 out of 5 star rating . It 's also family friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that also serves Italian at a high price range and is not children friendly , It is located in riverside near Raja Indian Cuisine . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a an average priced fast food restaurant . It is 3 stars and family friendly . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge , this family Friendly fast good riverside area restaurant names The Golden Curry has a 5 out of 5 rating . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn is a 1 out of 5 high price ranged children friendly \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Not recommended for kids , Strada , is a moderately priced restaurant with a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located in the city centre , near Express by Holiday Inn . It has high customer rating with a price range of £ 20 - 25 . Be reminded that the restaurant is by no means kids friendly . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers . It is family friendly with a less then £ 20 price range and has an average customer rating . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||A restaurant The Plough near The Bakers is kid friendly and cheap . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Near Avalon , along the riverside , is an expensive , okay , family - friendly coffee shop called Blue Spice . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family - friendly , three star coffee shop with average prices . They are located new Café Sicilia . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you don 't mind spending a bit more , The Wrestlers coffee shop is child - friendly and serves good Japanese food . You can find it near Raja Indian Cuisine in the riverside area . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family friend French food place in city centre with a low customer rating . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Nearby Café Rouge is Midsummer House . This restaurant serves French food . Midsummer House has a 5 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop serving French food . It is not family - friendly , located near city centre , with a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Japanese coffee shop offering food with price range less than £ 20 for family and is located along riverside near Burger King but has low customer rating \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||The Midsummer House has Fast - food , low customer rating and is located near Café Rouge . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||A Japanese restaurant in riverside near The Rice Boat named Loch Fyne provides traditional Japanese foods for a low price . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is a French eatery located near Clare Hall in the Riverside area . £ 20 to £ 25 is all it takes for a fabulous French cuisine . \nname : Strada | Type : pub | food : Indian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Close to Yippee Noodle Bar , you will find a highly rated pub called Strada , that serves Indian food . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Avalon||A low rated coffee shop near Avalon is Blue Spice . It is not family - friendly , rated low but low priced . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has an average customer rating for its Indian food . It is a children - friendly establishment in the riverside area near the Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||A pub which sells Italian food has a good price is ' The Cambridge Blue ' , located by ' Café Brazil ' . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced Italian coffee shop . It is kid friendly with a customer rating of out of 5 near Burger King in the riverside area . \nname : The Vaults | food : Italian | price : moderate | family friendly : no||There is an expensive Italian restaurant , The Vaults . It is not children friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly coffee shop providing French cuisine . It is located near The Portland Arms . Customers rate it a 5 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child friendly coffee shop with a high price range located near Café Sicilia in riverside . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a riverside , children friendly coffee shop near the Crowne Plaza Hotel with Japanese food . It 's rated 3 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||With prices less than £ 20 and French food The Punter coffee shop , near Café Sicilia is the place to be . Although a low customer rating and is non family - friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop in the city centre . It is family - friendly and low rated . It is less than £ 20 . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||By the river , Giraffe is a family friendly pub serving Japanese food . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||There is a one star coffee shop that sells cheese and wine located next to The Portland Arms called The Cricketers . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum restaurant is the best place to eat grommet food with family and friends at low prices \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||The Bibimbap House is a high - priced fast food restaurant located in Riverside near Clare Hall . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||In the riverside area there is Blue Spice . Blue Spice is cheap , family friendly , and has an average customer rating . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , rated 5 out of 5 , is a cheap Italian restaurant located in the city centre near Express by Holiday Inn . It is not family - friendly . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a one star pub with fairly high prices . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children friendly restaurant that is locates on the riverside near The Rice Boat . It has a more than 30 Euro price range and a 5 out of 5 customer rating . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two is a non family - friendly restaurant that serves Italian food by the river . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a restaurant providing customer rating 1 out of 5 with kids Friendly . \nname : The Eagle | food : English | customer rating : 5 out of 5||The Eagle is an English food restaurant with a high customer rating \nname : The Plough | Type : pub | food : Japanese | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced , Japanese , children friendly pub located near Café Rouge \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap , Japanese restaurant located in the city centre near Yippee Noodle Bar . Customers rate it a 5 out of 5 . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : city centre||Cheap Chinese food in the city center try the Blue Spice . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||Located in the riverside area , The Golden Palace restaurant has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a place selling Chinese food with an overall high customer rating . It is described as children friendly , and is rated highly by customers . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne restaurant welcomes family 's , they serve Chinese food at very rich prices . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Located near All Bar One in the city centre , Green Man offers English food at prices less than 20 and is not family - friendly . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada is a kid friendly restaurant in the moderate price Range that has a customer Rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||The Waterman pubs serves 3 star seafood and Oriental dining near the river . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge is a cheap price range restaurant with an average customer rating . \nname : Bibimbap House | food : Chinese | price : moderate | area : city centre | near : Clare Hall||There is a moderately priced Chinese restaurant called Bibimbap House located near the city centre and the Clare Hall . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : no||Customers rate The Wrestlers dine - in experience as average . It isn 't children friendly . This is an Chinese restaurant with high priced food . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||For English food , there 's a kids - friendly pub called Zizzi that customers rated 1 out of 5 . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough is a not family - friendly restaurant that 's near Express by Holiday Inn . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap restaurant with a customer rating of 5 out of 5 . \nname : Blue Spice | food : Italian | price : high | area : riverside||There is a high priced Italian place in riverside called Blue Spice . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||Riverside Italian food just got better at The Phoenix . Offering a 1 out of 5 rating so far . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves French food with a high customer rating . The price range is £ 20 - 25 , and it is located at the city centre near The Portland Arms \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is a family friendly establishment that serves authentic Japanese cuisine . Prices range from around £ 30 and up . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||The Cambridge Blue is a Japanese restaurant that has a customer rating of 3 out of 5 . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Come for an Italian riverside , cheap , family friendly meal at the Green Man . Located near All Bar One . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a 3 stars rated affordable restaurant offering Italian food , It is situated in Riverside near Yippee Noodle Bar . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : no||There is a cheap restaurant Alimentum serving English food in the centre of the city for adults only . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||Customer 's rate The Phoenix , a high priced English restaurant in riverside , average . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : yes||Giraffe is a pub in the city centre . It is suitable for a family and provides Japanese food . \nname : Loch Fyne | food : Chinese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is high . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , the French coffee shop near Crowne Plaza Hotel in riverside got a 5 out of 5 , but it is not family - friendly . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers Indian cuisine in the riverside area near Café Rouge . It is kids friendly and also has a high customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a French family friendly and average rated coffee shop near Burger King that has a price range of less than £ 20 in the riverside area . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||For an unbeatable French restaurant at under 20 Euros a meal , you can 't go wrong with The Dumpling Tree . \nname : The Punter | food : Fast food | price : cheap||The Punter offers a wide range of fast food at cheap prices . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi is a family friendly coffee shop located on the riverside . It has an average customer rating and is in the less than £ 20 price range . \nname : The Eagle | food : Italian | customer rating : average||There is an Italian restaurant , The Eagle , what received an average customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||Cocum is a coffee shop offering Japanese food . There price range is less than £ 20 and has an average customer rating . It is not family - friendly . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||In the riverside called The Phoenix customers rate high a Chinese restaurant with a £ 20 - 25 range price \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall in the riverside area . It received an average customer rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a fast food restaurant and coffee shop with 3 out of 5 stars and is in the moderate price range . It is located near Ranch . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||For French food less that £ 20 , try Blue Spice at the Riverside . \nname : The Rice Boat | food : Japanese | customer rating : high | area : riverside | family friendly : yes||Both highly rated and child friendly , The Rice Boat serves Japanese food from a riverside location . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||A moderate priced restaurant , near The Six Bells is Giraffe . \nname : Strada | Type : restaurant | customer rating : high||Strada is a restaurant with a high customer rating . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that provides an average - priced and good quality coffee drinks . It is located near The Portland Arms . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a low - priced coffee shop in the city centre , it is near The Sorrento . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a restaurant providing Indian food . It is located near The Bakers . \nname : Blue Spice | price : more than £ 30 | area : city centre||Blue Spice , located in the city centre , has a price range of £ 30 . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is infamously known for its high prices and kid unfriendly atmosphere . \nname : Blue Spice | food : French | price : less than £ 20 | area : city centre||Blue Spice is located in the city centre . There price range is less then 20 dollars . They serve French food . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is a pub offering riverside dining experience of Japanese food . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers sell Italian food such as spaghetti , and of course wine . Cheap and good value , judging by the three - star rating . Good for families , they accept children and prams . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : no||The Olive Grove is a moderate priced riverside pub that is not child friendly . It serves French food . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a 5 - star restaurant providing fine dine in the low price range . It is located beside All Bar One . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no||A Japanese pub called The Olive Grove , is situated in the city centre and its price range is moderate . They are no kids friendly . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family - friendly food outlet serving Japanese food . It has a customer rating of 5 out of 5 and is very cheap . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Wrestlers , we are a coffee shop . We 're family - friendly we serve fast food we are located in the city centre near the Raja Indian Cuisine . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||The Wildwood coffee shop sells predominantly Japanese food and has a high price range . It has a customer rating of 3 out of 5 and can be found near Ranch . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , a child - friendly coffee shop located by the riverside serving French food , near Crowne Plaza Hotel . \nname : Zizzi | Type : pub | food : English | customer rating : 3 out of 5 | family friendly : yes||The Zizzi pub serves English style food , is rated 3 out of 5 and is kid friendly . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | near : Clare Hall||Clowns is a Japanese coffee shop near Clare Hall in the city centre with a low customer rating \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Express by Holiday Inn is near The Rice Boat north of the City center . and is family friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop providing Indian food in the high price range . It has a rating of 1 out of 5 and is child friendly \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||A low rated Japanese pub , Zizzi , is not family - friendly . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||Taste of Cambridge is a restaurant offering cheap eats with an average rating . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||There is a cheap pub , The Plough located near Café Rouge , which sells British Food . Families are not allowed . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||A family friendly coffee shop called Giraffe is located near The Bakers . Prices are less than French 20 , but the customer rating is low . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a child friendly restaurant located near Express by Holiday Inn . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||In the riverside area near Café Brazil there is a coffee shop called The Vaults which has a price range of £ 20 - 25 and a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a family friendly pub that serves French food called The Dumpling Tree . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||If you are looking for a family - friendly restaurant near city center , check out The Golden Curry . This Japanese restaurant is located near Café Rouge . Customers give The Golden Curry low ratings . \nname : Alimentum | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||On the riverside there is the Alimentum which is a Kids friendly venue offering English food at average prices \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||There is a restaurant called Travellers Rest Beefeater located in the Riverside area near Café Adriatic . It has received overall satisfactory reviews and offers moderately priced foods . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Strada is a kid friendly and moderately priced restaurant . It has a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city centre is a coffee shop called The Eagle . It serves Japanese food with a rating of 3 out of 5 . It isn 't kids friendly and has a £ 20 - 25 price range . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||For a cheap bite to eat near The Six Bells , I highly recommend getting some English Food at Fitzbillies . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||'The Waterman ' is a French pub in Riverside that received a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill is a moderately priced English style pub that is located north of the city centre near the river . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a kid friendly fast food restaurant . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , a Chinese food serving restaurant near Café Rouge by the riverside , is family friendly with a low customer rating . \nname : Alimentum | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||Pop down to the Alimentum at riverside . kids - friendly you can feed them all for between £ 20- £ 25 . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman located in the city centre is a kids friendly and has a rating of 3 out of 5 from their customer . They offer Indian food at a moderate price range . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||For a budget of less than 20 pounds , the Travellers Rest Beefeater is open on the riverside near Café Adriatic . Be aware that customer satisfaction is low . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||For a Family Friendly 1 star restaurant that serves families and is medium priced The Rice Boat is a great choice by Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Although The Eagle coffee shop costs more than 30 euros , they have great customer reviews and are children friendly . It is located near Burger King in riverside . \nname : The Phoenix | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Phoenix is a fast food venue in the Riverside area with a 1 out of 5 customer rating . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Italian food in the city centre area near Express by Holiday Inn . With a £ 20 - 25 price range , it is highly rated with customers and is not kid friendly . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice serves Italian food by the riverside and the price range is less than £ 20 . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : no||Giraffe is a pub that is not family - friendly . They serve Japanese and are located in the city centre . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is The Rice Boat high customer rating and a low price range of £ 20- £ 25 \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||You can get cheap Fast food from The Waterman in the city centre , which has an average customer rating . Unfortunately , they aren 't family - friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly fast food restaurant near Burger King . It serves coffee , price range is cheap and has a high customer rating . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto is near Café Rouge and serves fast food . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||the Green Man serves meals that are mid ranged and allows families with children . The restaurant is located next to All Bar One which is right off of the river . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly restaurant . they serve Chinese food and their customer rating is 5 out of 5 . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French restaurant near Rainbow Vegetarian Café . Its price range is moderate and the customer rating is one out of five . It is not child friendly , \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an Indian coffee shop in the low price range . it has a customer rating of 5 of 5 and is family friendly . it is located in the city centre area . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child friendly coffee shop located in the city centre near Café Sicilia . It has a price range of more than £ 30 . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry five star restaurant is a short distance from the City centre and Café Rouge Families are welcome . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is near Burger King , and situated by the river . It sells delicious foods such as fondue and cheeses , with which you can enjoy a glass of wine or spirits . It is in the more expensive price range , and so far has a one star rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : riverside||The Waterman Pub Chinese food Average Riverside \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is a cheap , non family - friendly Indian restaurant located near the riverside . The customer rating for this restaurant is average . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a fast food restaurant which is not family friendly , has a low customer rating and is located by the riverside near the Crowne Plaza Hotel . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a French restaurant located in Luton , it is child friendly and offers cheap food . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Cocum is a family friendly coffee shop with an average customer rating . Cocum offers fast food at a cheap price . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne is a moderately priced , kid - friendly restaurant that serves French food . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults is a low priced English food restaurant that is family friendly . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : no||Who wants to pay over thirty pounds for a French wrestling venue that won 't even allow children . The Wrestlers think you do . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is an expensive coffee shop in the Riverside area named Fitzbillies . It 's not for children and is a 3 star restaurant . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , experience children friendly Italian food at The Waterman restaurant . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||The French food serving pub , Zizzi , has received five star reviews . It is located in the city centre and is family friendly . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a highly - reviewed British - styled restaurant with a beautiful riverfront view . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop with an average customer rating and price range of less than £ 20 near The Bakers . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is Strada , Its not family - friendly , and is rated 5 out of 5 by customers . They serve cheap Japanese food . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : riverside||For reasonably priced Chinese in the riverside area , try The Mill pub . \nname : Loch Fyne | food : Chinese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne offers Chinese food with a high customer rating in the Riverside area near The Rice Boat . \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge that serves Indian food for less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Indian food . It has a customer rating of 3 out of 5 . It is located near The Portland Arms and is kid friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil with Japanese food that is less than £ 20 . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge is a highly - priced , sit down restaurant . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia that has a moderate price range . The customer rating is 4 out of 5 and is not kid friendly . It serves fast food . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is located at riverside and is not family - friendly . It has a price greater than 30 , and has a rating of 5 out of 5 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is an inexpensive restaurant for pub style food like burgers and fries . It is highly rated and family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family coffee shop called Browns Cambridge is located near the Crown Plaza Hotel near the City centre . It has poor ratings . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Food and drink is served at low prices by Wildwood coffee shop , located next to Ranch . Three stars . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : £ 20 - 25 | near : Café Brazil||An average priced Chinese pub near Café Brazil is The Cambridge Blue . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||Just near Café Brazil , head to expensive fast food pub , The Cambridge Blue \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a purveyor of fine foods on the River near the Yippee Noodle Bar . It has low prices but are good quality considering . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix serves Chinese food with a moderate price range . They are found on the riverside and have a customer rating of 3 out of 5 . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is near Clare Hall . It serves cheap English food by the riverside . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree is a restaurant providing fast food with a price range of over £ 30 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is high . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||Near Ranch there is a pub named The Cricketers . It 's family friendly with an average rating . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||In the center of the city , there is an Italian restaurant called Alimentum , that is close to Yippee Noodle Bar . Alimentum has an average customer rating and the price range is cheap . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the high price range with an average customer rating . It is in the city centre near The Portland Arms . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a children friendly restaurant with a 3 out of 5 customer rating . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||The Mill is a restaurant located on the river near The Rice Boat . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House offers food and wine and is near All Bar One . It is inexpensive . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||If you are interested in quality coffee and Indian food with a price tag to match , come to The Eagle . The shop is located in the centre of the city near Burger King . The shop is focused on an adult clentele with a customer rating of 1 out of 5 . \nname : The Eagle | food : English | customer rating : 1 out of 5||The customer rated 1 out of 5 , The Eagle , serves English food . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly restaurant that serves French food at average price . It 's located near The Bakers . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : no||The Wrestlers is a Chinese restaurant in the low price range . It is not suitable for young families and has average customer ratings . \nname : Loch Fyne | food : Indian | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne provides Indian food It is located in the city centre . It is near The Rice Boat . Its customer rating is low . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||High priced Green Man in the riverside area is child friendly . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||Close the The Bakers is The Golden Curry serving French food in a child friendly environment , with higher than average prices . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Non children friendly , poor customer rated , The Waterman , is located in the city centre and provides English food which is moderately priced . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is located near The Rice Boat in City centre . They are a three star restaurant . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns is a non family friendly , average priced coffee shop near Café Sicilia \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman serves Indian food . It is kid friendly . It is located in riverside . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House is a mid - priced restaurant located near All Bar One . \nname : The Vaults | food : Indian | price : moderate | family friendly : yes||The Vaults is an Indian restaurant in a moderate price range which is child friendly \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : cheap||The Dumpling Tree is a restaurant that provides cheap Chinese food . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree is a moderately expensive restaurant . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is a cheaply priced riverside eatery near All Bar One . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Avalon||there is a coffee shop near from Avalon at city centre called Blue Spice with \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||In the riverside area , Blue Spice serves Italian food for less than £ 20 . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum provides Chinese food in the cheap price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is average . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||A Japanese coffee shop that is not family - friendly in the area of Riverside with a customer rating of 5 out of 5 is Aromi . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Clowns located near Clare Hall in the riverside area is a great little coffee shop to sample Italian cuisine . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||Midsummer House is located near All Bar One , and is cheaper \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a not children friendly fast food coffee shop . It has a customer rating of 1 out of 5 and a high price range . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Visit The Golden Curry , a 5 - star family friendly breakfast place near the Café Rouge . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults is a restaurant where you can go with the whole family . Its specialty is sushi and fish . \nname : The Eagle | food : English | customer rating : high||The Eagle serves fast food and is highly rated . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a low rated venue in the less than £ 20 price range called Blue Spice that is not family - friendly , in riverside . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Chinese food and has a high customer rating of 5 out of 5 . It is located at a riverside , is family friendly and Café Rouge is located nearby . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Near the Ranch is The Cricketers which is a children friendly pub with a 1 out of 5 customer rating \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Why not try Zizzi , a Japanese pub and bar , with five stars and a family friendly environment . \nname : The Punter | food : French | price : more than £ 30||The Punter is an expensive place that sells French food . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry provides Indian food Its customer rating is 5 out of 5 . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||Kid friendly and moderately priced , The Punter can be found in the riverside area near The Portland Arms . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||The Blue Spice coffee shop , a high - end riverside shop near Avalon , features a child - friendly atmosphere and high customer rating . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man has a family friendly environment and serves cheap Italian food near All Bar One in the riverside area . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a pub near the Yippee Noodle Bar with a 1 - star rating serving sushi . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : no||The Vaults offers French food for higher than £ 30 . It is not child - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Indian food in the high price range that is children friendly with an average customer rating in the riverside area near Burger King \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop is a high rated , fast food place that is family friendly in the Crowne Plaza Hotel . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a restaurant located in the city centre , serving English food . They are not welcoming to families . Their customer satisfaction ratings are low . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no||The Olive Grove , a kids friendly pub , is located in the City Centre . It offers Japanese food in moderate prices . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is located in the city center near Café Rouge . The Golden Curry is family - friendly and offers Japanese food with an average rating . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : city centre||The Mill is a pub located at the city centre . They serve Italian food for less than £ 20 . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The restaurant The Golden Palace is more than £ 30 . \nname : Browns Cambridge | food : Chinese | price : less than £ 20 | customer rating : low||Browns Cambridge provides Chinese food in the less than £ 20 price range . Its customer rating is low . \nname : Zizzi | Type : pub | food : French | customer rating : 1 out of 5 | family friendly : yes||Zizzi a child friendly pub serving French food has a customer rating of 1 out of 5 \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is located nearby the All Bar One . It 's rated 5 star and very affordable . \nname : The Cambridge Blue | Type : pub | food : English | price : £ 20 - 25 | near : Café Brazil||For a pub that serves English food , visit The Cambridge Blue . It is near Café Brazil . The prices range from £ 20 - 25 . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe Also offer Japanese food at good prices \nname : The Punter | food : Chinese | price : less than £ 20||The Punter serves Chinese food at a moderate price range of less than £ 20 . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no||If you 're in the mood for French food , Aromi is one option in the city centre . This coffee shop is not family - friendly , but has decent ratings from customers . \nname : The Waterman | price : moderate | family friendly : yes||The Waterman is a kid friendly restaurant accompanied by a moderate price range . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area , near the Express by Holiday Inn , is an English place to dine named The Rice Boat . The prices are very affordable and welcomes families and holds a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||There 's a restaurant called The Golden Curry close to The Bakers that 's cheap and family friendly . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a fast food , kid friendly restaurant in the Riverside area . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a cheap coffee shop with a one star rating near The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||There is a Japanese coffee shop named The Golden Palace , located in the city centre , that is cheap and has a 5 out of 5 customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a well priced coffee shop The Wrestlers which is located near to Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a cheap , family friendly , riverside coffee shop with a low customer rating that serves Indian dishes . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||For those seeking a high quality family dining experience , look no further than The Golden Curry . \nname : The Eagle | food : English | customer rating : 3 out of 5||The Eagle serves English food and has a 3 out of 5 rating . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a city centre Chinese restaurant , located near All Bar One . They offer moderate prices on their menu and are family friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a highly rated kid friendly coffee shop serving fast food located near The Portland Arms . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge has a low customer rating \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||For French food on the riverside , try family friendly The Twenty Two . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns , a coffee shop , is located in Riverside near Clare Hall . It earned a Fast Food Customer rating of 1 out of 5 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||The riverside pub , Clowns , with a price range above £ 30 has a high customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : city centre | near : The Sorrento||The Mill , fast food coffee shop , is near The Sorrento in the city centre . It 's moderately priced . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers sell Chinese food at a moderate price . The establishment is children friendly . 1 out of 5 rating . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is family friendly restaurant in the riverside area that has an average price range . This restaurant is a pub that sells French food . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a cheap coffee shop with high customer rating . It is in riverside near Café Brazil . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is a cheap family friendly place that sells French food . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Conveniently located near Café Rouge in the riverside area , Green Man offers Italian food . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||With a high customer rating , the Wildwood is a French coffee shop with average prices . It is located near the Ranch . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge is a high price breakfast meal rated at one star . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is family friendly and located near Café Rouge . They are rated low . \nname : Blue Spice | food : Italian | price : high | area : riverside||Providing Italian food , The Blue Spice is located by the riverside and is also high - priced . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||A coffee shop , Cocum , serves Indian food in the high price range . Customers say it is not child - friendly and it is rated 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near the Express by Holiday Inn is and good low priced high quality eatery where you can get hamburgers and French fries . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves Italian food . Has a moderate price range , and is kids friendly . Located in the riverside area near Raja Indian Cuisine . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : yes||Family friendly The Rice Boat serves Chines food and is of good standard , it is located in the city centre . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||With an average customer rating The Rice Boat is situated in the riverside area and offers family friendly fast food \nname : The Golden Curry | food : Indian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry restaurant , located near The Bakers , is a very kid - friendly place , with a moderate price . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Indian . The prices are moderate . It is located on the riverside near The Sorrento . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an average , cheap , Italian coffee shop , near Burger King in the city center . They are not family - friendly . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Avalon||Blue Spice is located is city centre near Avalon . coffee shop is high rated by customers , kids friendly place with price range £ 20 - 25 . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||A kids - friendly pub called Clowns located near Café Sicilia with a price range of £ 20 - £ 25 . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving French food located in the city centre near Burger King . They have high customer ratings , and are child friendly Prices are in the range of £ 20 - 25 . \nname : Blue Spice | food : English | price : moderate | area : riverside||a moderate English food place is Blue Spice in riverside . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : no||The Rice Boat is an Italian restaurant located in the city centre . It has an average customer rating and is not family - friendly . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||At the city centre , you can find Blue Spice . It 's not family - friendly , but the prices range less than £ 20 . Rated average . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is located in the riverside area near Clare Hall . It offers English food at cheap prices . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : no | near : The Bakers||Giraffe is an adult coffee shop near The Bakers . With a price range of less than 20 with a customer rating of average . \nname : The Punter | food : French | price : £ 20 - 25||The Punter offers French food for a price of £ 20 - 25 . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||Near Ranch , Cotto is a kids friendly and highly rated restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop in the Riverside area near Crowne Plaza Hotel , they are not family - friendly but have a 5 out of 5 rating . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat at the riverside . It has an average customer rating and serves English food . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove is a moderately priced pub serving Japanese food in the riverside area . It is not kids - friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap fast food coffee shop in the riverside area . They are family friendly and have an average customer rating . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a kid - friendly pub with high customer rating . It is located near Ranch . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Waterman pub is located outside the city center and offers fast food and drinks . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue pub at Café Brazil has good meal deals at good prices . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Have you visited Taste of Cambridge ? Its a children friendly Italian coffee shop near Crowne Plaza Hotel located by the riverside . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : city centre||The Mill is a pub serving Chinese food at a moderate price in city center . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is near The Rice Boat in the riverside . It is not child friendly and the price range is high . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly , fast food restaurant , average customer rated and is located near Café Rouge in the riverside area . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers are an average family Friendly French restaurant which will usually cost less than £ 20 \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee Shop is a moderately priced restaurant that is family friendly . It is located near Café Sicilia . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop that serves Japanese food . It has a low customer rating and is near The Portland Arms . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Italian family friendly place in riverside near Express by Holiday Inn . It has a low customer rating but a less than £ 20 price range . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers offers a pleasant family atmosphere , visit easy access . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||Located on the riverside is The Phoenix which is a Japanese restaurant with a less than £ 20 price range and a low customer rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge a kids friendly fast food restaurant near The Sorrento in the riverside area . \nname : The Vaults | food : Indian | price : moderate | family friendly : no||The Vaults is an adult establishment that serves Indian food for a moderate price . \nname : Strada | Type : pub | food : French | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada , a French pub with a customer rating of 1 out of 5 is located near Yippee Noodle Bar . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is located near All Bar One and features wine , cheese and small plates for a low price . \nname : Zizzi | Type : pub | food : Japanese | customer rating : high | family friendly : yes||Zizzi , a Japanese pub , has a high customer service rating and is kid friendly . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Located near Ranch is a fine - dining , 5 - star coffee shop called Wildwood that offers select cheeses and wine . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child friendly coffee shop located near to Raja Indian Cuisine . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is in the high price range and is not child friendly . Serving Fast food it is customer rated 1 out of 5 and is located near the city center and the Express by Holiday Inn . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Here at Cotto , we have a 1 out of 5 customer rating . Don 't let that deter you from experiencing our high priced Fast Food at this coffee shop . You can find us near The Portland Arms in the riverside area . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a Fast food restaurant in the price range of £ 20 - 25 . It is located near The Six Bells . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is an Italian coffee shop that serves cheap and low quality food . It is not a family friendly place to eat . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||Serving French food with a price range of less than £ 20 is a restaurant called The Dumpling Tree . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : no | near : Café Rouge||The Plough is a pub that serves Indian food at a higher than average price range . It is located near Café Rouge and is not child - friendly . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant with a price range of more than £ 30 . The customer rating is high and it is located in the city centre , near Yippee Noodle Bar . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Located near Café Adriatic in riverside , is an average and cheap place called Travellers Rest Beefeater \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix serves French food . has a moderate price range . They have a customer rating of 1 out of 5 . They are located in the city centre . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||There 's a restaurant serving Indian food in the price range of £ 20 - 25 called The Rice Boat . It 's got a high customer rating and is not suitable for kids . It 's in the city centre near the Express by Holiday Inn . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is an Italian moderately priced coffee shop near The Portland Arms in the city center , rated 3 out of 5 \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||For average rated family friendly English food try The Golden Curry \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is located near the Café Sicilia in the city centre . It is family friendly . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Near the Ranch is a low rated Japanese restaurant named the Cotto \nname : Green Man | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family - friendly , cheap Chinese restaurant , located on the riverside near All Bar One . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located along the riverside and serves Italian food in a family friendly environment near Café Rouge this restaurant is rated 5 out of 5 on customer ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the cheap price range . It is located in the city centre . It is near Burger King . Its customer rating is 5 out of 5 . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Next to Café Rouge , Midsummer House is a three star sushi restaurant \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||The Browns Cambridge is a family friendly English restaurant in riverside near The Sorrento . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman serves Indian cuisine at average prices for the whole family . They are located in the riverside area and celebrate high customer ratings . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub serving Italian food for less than £ 20 . It is family - friendly and near Café Rouge . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||There is a moderate priced restaurant called The Phoenix that is located in the centre of the city with a 3 out of 5 customer rating . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman serves Indian food downtown . The restaurant is family oriented and well priced at under £ 20 but is rated low . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||There is a three star restaurant called Cotto , it 's family friendly and located near Ranch . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a premium restaurant choice north of the city centre near Yippee Noodle Bar . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a moderately rated mid price range coffee shop also providing Japanese food in the city centre near The Portland Arms . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||In the riverside area , near The Rice Boat , lies a fairly average cheap venue called The Twenty Two . It is family friendly . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a cheap , family friendly Japanese restaurant with a 5 out of 5 customer rating and is located by the river . \nname : Loch Fyne | food : Indian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne serves Indian food is located in riverside near The Rice Boat . They are highly recommended by their customers . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne restaurant serves English food with a friendly family atmosphere . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||Family Friendly coffee shop The Punter offers Spirits , Italian cuisine and 3 star service , for a low price . just north of Café Sicilia . \nname : The Cambridge Blue | Type : pub | food : Indian | price : high | near : Café Brazil||Located near Café Brazil there is a high price range Indian pub called The Cambridge Blue . \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||There is a child friendly French pub named Zizzi rated 3 out of 5 by its customers . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne , a fast food place with a 1 out of 5 rating is on the riverside near The Rice Boat . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop near Café Sicilia in the city centre . It is moderately priced and is not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a low - cost , family friendly coffee shop with a low customer rating near the riverside that serves Indian dishes . \nname : The Cambridge Blue | Type : pub | food : English | price : more than £ 30 | near : Café Brazil||The Cambridge blue serves English food and is near Café Brazil , prices range from more than £ 30 . The Cambridge Blue is a pub . \nname : The Mill | Type : pub | food : English | price : high | area : city centre||The Mill , located in the city centre , is a high price range English pub . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : city centre||The Eagle in city centre has an average rating and is priced under 20 pounds . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a pub serving Japanese food . This moderately priced pub is located near Café Rouge and is not kid friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a French coffee shop with prices above £ 30 in the riverside area near Raja Indian Cuisine . It isn 't child friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a French coffee shop located in the city centre . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 1 out of 5||A Chinese restaurant with a moderate price range that goes by the name Browns Cambridge has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves fast food with a price range from £ 20 to £ 25 . It is located in the riverside area near the Express by Holiday Inn . It has a high customer rating but it is not child friendly . \nname : Loch Fyne | food : Indian | customer rating : high | area : riverside | near : The Rice Boat||Near The Rice Boat in the riverside area is an Indian restaurant with high rating that is called Loch Fyne . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese sit - down restaurant that averages less than 20 pounds per check . While it does have a low customer rating than what the owner 's prefer , it is riverside . The Rice Boat is family friendly , located near the Express by Holiday Inn . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||French food is served at The Vaults . It is not kids friendly and has a price range of less than £ 20 . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a family friendly restaurant with a rating of 5 out of 5 that serves French food located next to the riverside called The Rice Boat . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||rolls cones and sushi favor this 5 star family friendly restaurant The Wrestlers . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving Indian food at a moderate price range . Its customer rating is three out of five , it is near the riverside and is kids friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove pub offers mid - priced sushi and more . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two is for adults and offers French food in the riverside . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge is a one star Italian restaurant . \nname : Wildwood | Type : restaurant | family friendly : yes||For a family Friendly restaurant visit Wildwood . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||Near riverside , there is an average French pub named The Waterman . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an average price restaurant in riverside near Yippee Noodle Bar . They serve Japanese food and they have low customer ratings . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides kid friendly , moderately priced fast food near the Express by Holiday Inn on the riverside with customer ratings of 3 out of 5 . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : no | near : All Bar One||a modernly priced Indian restaurant called Green Man is not kid friendly is near All Bar One . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||There is a poorly rated Japanese restaurant called Browns Cambridge . Their food is moderately expensive . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : yes||There is an averagely rated Chinese restaurant , The Wrestlers , that is family friendly , and offers food in the low price range . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix serves Japanese food in the riverside area . The customer rating is 3 out of 5 . Their prices range £ 20 - 25 . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Found near Express by Holiday Inn , Fitzbillies is a moderately priced restaurant that has an average customer rating of 1 out of 5 and is not a place to bring the kids . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge is home to good food and drinks and scintillating deserts at very affordable prices . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||Located near The Bakers , The Plough is a children friendly restaurant offering meals in the £ 30.00 range . \nname : Green Man | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Price Range more than 30 euros . The Green Man is a kid - friendly fast - food place located in the Riverside area near All Bar One . \nname : The Phoenix | food : English | price : high | customer rating : average | area : city centre||The Phoenix is an English restaurant with an average customer rating . its prices are in the high range and its is located in the city centre . \nname : Cotto | price : moderate | area : city centre | near : All Bar One||Cotto , in city centre near All Bar One has moderate prices \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 5 out of 5||The Cambridge Blue is a Chinese restaurant with a perfect 5 rating . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||The Phoenix is a high priced , three star restaurant located in the City centre . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a kid friendly Indian restaurant . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||With an average rating , The Vaults , near Café Adriatic charges less than £ 20 for it 's pub lunch . \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||There is a cheap Fast food restaurant in riverside called Alimentum , which is family - Friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||A non family - friendly , Italian coffee shop near Crowne Plaza Hotel in the city center is called Taste of Cambridge . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family - friendly pub that serves French food . It is located in the city centre area with a price range less than £ 20 . \nname : The Phoenix | food : Japanese | customer rating : 1 out of 5 | area : riverside||There is a Japanese restaurant called The Phoenix in Riverside . It has a 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||In riverside near the Burger King is an average family friendly Indian coffee shop called The Eagle , that is not only cheap but family friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a kid - friendly pub located by the riverside that serves English food . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry has Italian , is family friendly and has a customer rating of 5 out of 5 . \nname : The Waterman | price : more than £ 30 | family friendly : yes||children favorite food price Rang more than £ 30 The Waterman restaurant . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Costing more than £ 30 and located in riverside near Burger King , The Eagle is a French coffee shop . It is not kid friendly and has a low customer rating . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||In the city centre , close to Café Rouge , you will find The Golden Curry restaurant , provider of Indian food . Despite being family friendly , this restaurant has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is in City Centre and is not family friendly but low priced coffee shop . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a French restaurant that , yes is family friendly . \nname : Cotto | price : less than £ 20 | area : city centre | near : All Bar One||Cotto is a cheap place in the center of the city near All Bar One . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is a cheap restaurant with a 3 out of 5 rating . They serve sushi . They are located near the All Bar One . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly pub with a high price range and low rating from customers . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||A Japanese pub named Wildwood has moderate prices , but only a 1 out of 5 customer rating . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is a French restaurant that is children friendly in the £ 30 range . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a French restaurant that is good for the whole family . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Pricey , but excellent Italian food is served at Wildwood pub . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an expensive , family friendly , one star restaurant . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||Zizzi is a family friendly pub with an average customer rating . It serves French food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||In the riverside is located a Fast Food pub called Giraffe and yes has a children area . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a French food restaurant in the city centre . It has a price range of less than £ 20 and is not family - friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum offers low cost Japanese food in a coffee shop setting . While it isn 't family - friendly past customers rate it 5 out of 5 . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : yes||The Olive Grove restaurant is family - friendly and located at the city centre . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||Near Café Brazil is a French pub called The Cambridge Blue in the £ 20 - 25 price range \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||There is a high customer rating fast food place name Loch Fyne in riverside near The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop with a moderate price range that serves Japanese food , is not kid friendly has a customer rating of 1 out of 5 and is near the city centre . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop with Indian food , has a less than £ 20 price Range , is not family Friendly and has a low customer Rating in the city centre area . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 1 out of 5||Browns Cambridge provides Indian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is an Italian restaurant near All Bar One thats low in price but 5 star reviews \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : no||Have a budget of more than £ 30 and want a children free fast food restaurant than go to Loch Fyne \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||Located by the riverside near the Rainbow Vegetarian Café , The Golden Palace is a pub selling food less than £ 20 . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Blue Spice , near riverside , is kid friendly and has a customer rating of 3 out of 5 . The price range is £ 20 - 25 . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop in riverside near Café Brazil with a rating of 1 out of 5 and has moderate prices . \nname : The Eagle | food : Indian | customer rating : average||The Eagle serves Indian food with an average customer rating . \nname : Loch Fyne | food : Japanese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant in the riverside area that serves Japanese food . Customers rate this restaurant high on the charts . It is located near The Rice Boat . \nname : Bibimbap House | food : Chinese | price : high | area : riverside | near : Clare Hall||Bibimbap House sells expensive Chinese food near Clare Hall in the riverside area . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop that has reasonably priced items near the river by Café Brazil . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family - friendly Indian pub . It is located near The Portland Arms . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Try The Wrestlers in Cambridge for light food at a good price . It welcomes families , and is licensed to serve alcohol . \nname : Green Man | Type : pub | food : Italian | area : city centre | near : Café Rouge||The Green Man in the city centre is near the Café Rouge and the pub is Italian \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a moderately priced restaurant that serves Chinese food in Riverside . It is kids friendly and is near All Bar One . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||The highly priced , highly rated Cocum is a family friendly pub . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Strada is a high priced and children friendly . Strada is rated 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||There is a French coffee shop called The Eagle in city centre near Burger King . The price range is more than £ 30 , a low customer rating but children are welcome . \nname : Alimentum | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||There is a children friendly Fast food place called Alimentum that has a price range of more than 30 euros and is located in the area of riverside . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a one star restaurant located in City centre . \nname : The Phoenix | food : English | customer rating : low | area : riverside||There is a place call The Phoenix that does not have good reviews . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Located in the city centre , The Waterman is a family - friendly Japanese restaurant . Meals are less than £ 20 , and customer ratings for this restaurant are low . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has Japanese food and is kid friendly . It is in the riverside area near Café Rouge , but has a low rating . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is high . \nname : Strada | Type : pub | food : Chinese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a Chinese pub near Yippee Noodle Bar that sports a 1 out of 5 customer rating . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers pub is children friendly . It is found near Ranch and has a customer rating of average . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop near Ranch . It sells Japanese food that is cheap but poorly rated . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a restaurant that provide Japanese food . This site is for children , is very friendly , and the customer rating have a range 3 out of 5 . Cotto is located near Ranch . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop , The Eagle , has a moderately expensive menu that is located next to Burger King on the river . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a non friendly , English serving restaurant . It has a low rating , but is located in the center of the city near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : cheap | near : Café Brazil||The Cambridge Blue features Chinese cuisine at low prices . This pub is located near Café Brazil . \nname : Midsummer House | food : French | customer rating : 1 out of 5 | near : Café Rouge||The French restaurant , Midsummer House , has a low customer rating and is located near Café Rouge . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant serving Chinese Food is a moderately priced kid friendly place to dine . Customers rate The Rice Boat a 3 out of 5 . Located in the Riverside Area , near Express by Holiday Inn . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located by the riverside near the Crowne Plaza Hotel is a coffee shop named Taste of Cambridge offering Japanese food in a non - family - friendly environment . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is in the riverside area located near All Bar One . Price range is less than £ 20 . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a pub type restaurant in the riverside area . Price range is less than £ 20 and it has a low customer rating . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves cheap Indian food in city centre near the Express by Holiday Inn . While it is not family friendly , it still gets 5 out of 5 stars . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||If you are looking for a moderately priced , kid friendly restaurant , give Strada a try . It has a customer Rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The coffee shop Cotto , located on the riverside near The Portland Arms which offers Italian food at cheap prices has a 5 out of 5 customer rating . \nname : Alimentum | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kid friendly Italian restaurant in Riverside with a price range of £ 20 - 25 . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Children friendly Japanese pub on the riverside called Giraffe . \nname : Strada | Type : pub | food : Chinese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||For an excellent Chinese pub near Yippee Noodle Bar , try Strada . \nname : The Golden Curry | food : Italian | price : high | family friendly : no | near : The Bakers||The Golden Curry is a non - child friendly Italian restaurant with a high price range near The Bakers . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly Italian coffee shop that is located in the city centre with a low rating . The price is less than £ 20 . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||My city has a beautiful star bucks coffee shop , the kids are always friendly and the have a fair price range . Cocum is a popular and very well done Japanese dish . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||Located by the riverside , The Mill is the local pub that serves rather pricey English food . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers are family friendly costing less than £ 20 serving Italian albeit a low customer rating \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||At Riverside you will find Clowns , a coffee shop serving French food with above average ratings . It can be found near Clare Hall . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a child - friendly Italian restaurant . It has average customer ratings , and is in the high price range . It is located by the riverside . \nname : The Rice Boat | food : Fast food | area : riverside||The Rice Boat is located in the riverside area . It is a Fast food restaurant . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop with Indian food in the high price Range and a customer Rating 1 out of 5 , in the area of city centre , near The Portland Arms . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Located at riverside near Express by Holiday Inn The Rice Boat that provides French food with a low customer rating and a price range more than £ 30 . It is not children friendly . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults serves English food . At less than £ 20 , it is low priced but is not family - friendly . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Japanese food can be found at kid friendly pub Zizzi . Customers have rated it 5 out of 5 . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||Browns Cambridge has a high customer rating and a price range of more than £ 30 . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||Italian food at The Mill coffee shop cheap prices near The Sorrento in Riverside . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is no kids - friendly French food restaurant with customer rating3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||There is an average price family friendly coffee shop The Cricketers . It is located near The Portland Arms . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop in City centre . They highly rated and located near The Sorrento . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a Japanese restaurant near to Clare Hall . It is in the mid price range . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a average restaurant located on the riverside near The Rice Boat . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||coffee shop Browns Cambridge located in the city centre near the Crowne Plaza Hotel offers Indian food . Average customer rating , however not family friendly . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||Fast - food provided by The Eagle with a customer rating of 5 out of 5 \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Get something quick and delicious at Fitzbillies by the river . Price is high and not recommended for children . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||The Eagle is is a 3 out of 5 rated Fast food restaurant . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is near the Café Sicilia and is children friendly . It sells French food with a price range of £ 20 and £ 25 . It has a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||The Wildwood is a located in the city centre near Ranch , it is a moderately priced fast food restaurant \nname : Cocum | Type : restaurant | customer rating : average | family friendly : no||Cocum has an average customer rating and it is not family - friendly . It is a restaurant . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes||family - friendly , fast food coffee shop in city centre . Aromi has low customer ratings . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||If you 're looking for a reasonably priced restaurant for the family , then visit Loch Fyne . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a moderate price range , a customer rating of 1 out of 5 , and is near the Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Located in the riverside area , Giraffe serves English fare . This pub is child friendly . \nname : Cotto | food : Italian | near : Café Rouge||Cotto is a restaurant near Café Rouge that serves Italian food . \nname : Green Man | Type : pub | food : Fast food | area : city centre | near : Café Rouge||In the city centre , near Café Rouge , there is a pub named Green Man that provides fast food . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Aromi is a Fast food restaurant located along the riverside . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : cheap | near : Café Brazil||The Cambridge Blue is a low priced pub located near Café Brazil that features Chinese cuisine . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a very highly - rated coffee shop serving Indian food . It is family friendly , affordable and located by the riverside . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||The Golden Palace has a customer Rating of 1 out of 5 . It is located by the riverside . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The venue Blue Spice is located on the riverside , providing value services for £ 30 and over . It is not children friendly , and the customer rating is 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a high - priced , coffee shop , Fitzbillies , located at the city centre . It serves French food , is not child - friendly , and has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||Situated near the Express by Holiday Inn is a family friendly restaurant called The Plough . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop serving Italian food . It has a high price range , is children friendly with a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms , a children friendly English pub named The Dumpling Tree . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is a medium - priced family friendly restaurant with a three star rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is a Japanese coffee shop near Ranch . The cost is less than £ 20 with average satisfaction . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is The Rice Boat that has a low customer rating and a price range of more than 30 euros . \nname : Strada | Type : pub | food : Indian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||The Strada pub offers Indian food at 3 out of 5 . Located near Yippee Noodle Bar . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Near The Bakers you will find Giraffe . It is a child friendly , high price coffee shop with an average customer rating . \nname : Clowns | price : more than £ 30 | family friendly : no | near : Café Sicilia||There is a non child friendly restaurant near Café Sicilia that has a price range of more than 30 named Clowns . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry near The Bakers is a French food place not a family - friendly place with price ranging less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is along the riverside near The Crowne Plaza Hotel . Weather you want a coffee or Italian food its the place to go . Full of food for all the family . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies coffee shop is a restaurant that provides home delivery in the low price range . It is located in the city center . . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an expensive restaurant in City centre . They are highly rated and have a family - friendly atmosphere . They are located near Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Highly rated Indian coffee shop The Eagle is located on the riverside near Burger King . Not kid friendly but average price . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The high - priced coffee shop , The Punter , can be found near to the Café Sicilia . It provides average rated Indian cuisine and is family friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no||The Aromi is not a family - friendly fast food coffee shop located in riverside . It has average customer rating . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||The Eagle is a five - star restaurant . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Italian restaurant near The Sorrento in Riverside . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant in the medium price range . It is located near All Bar One . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a cheap , family friendly , and fast food coffee shop located near Café Sicilia . It has a low customer rating . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a child friendly restaurant with high prices and a 1 out 5 rating . It is located in Riverside . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||A highly rated , child friendly establishment is The Wrestlers . It is rated highly and the price range is more than £ 30 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is located near The Rice Boat , on the riverside . Rated highly by customers , The Twenty Two ranges from £ 20 - 25 and offers a kid - free atmosphere . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||Loch Fyne is a fish restaurant where adults can go and enjoy the lovely taste of fish . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a low - priced restaurant that is not family - friendly located in riverside near Café Sicilia . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the city centre near the Express by Holiday Inn is The Rice Boat restaurant . They serve pasta , they 're family friendly , and they 're cheap . They are rated 1 out 5 . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , an Italian restaurant has high prices and a low customer rating . It is not family - friendly , but is near Rainbow Vegetarian Café \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman provides Indian food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : cheap||Cheap Chinese food at The Dumpling Tree \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Get an English Meal for less than £ 20 at Bibimbap House , in the riverside area near Clare Hall . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a low priced 5 star restaurant located in the city centre . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant with a moderate price range . Alimentum has a customer rating of 1 out of 5 , located in the city centre near Yippee Noodle Bar . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in city center , it serves Italian food with a cheap price range . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||As a children friendly pub , The Cricketers has a friendly atmosphere and great service . It 's got good customer ratings and is located near Ranch . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two offers children friendly Fast food in riverside . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum coffee shop is family friendly , expensive prices , and serves fast food and coffee \nname : Loch Fyne | Type : restaurant | food : Italian | price : more than £ 30 | family friendly : yes||yes the Loch Fyne restaurant is children friendly , offering Italian food at prices more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop . They are low priced and family friendly . They have been rated one star and are opposite to Burger King . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside , near Crowne Plaza Hotel , is a coffee shop style place called Taste of Cambridge . They serve Japanese food , and are kid friendly . \nname : The Eagle | food : Chinese | customer rating : 3 out of 5||The Eagle serves Chinese food and has a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||The low rated Travellers Rest Beefeater is located on the riverside , near the Café Adriatic . It costs less than £ 20 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family restaurant that provides picnic lunches as well as wine and spirits near the Café Rouge but it has terrible reviews . \nname : The Eagle | food : Indian | customer rating : low||The Eagle , an Indian restaurant has a low customer rating . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||a 5 out of 5 customer rated cheap restaurant is Taste of Cambridge . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||Near The Bakers is a child friendly restaurant that serves English food called The Golden Curry . It has a high price range . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry welcomes families for high end fast food . It is located around the corner from The Bakers . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family oriented restaurant serving British style food . It is in the middle price range and ranked three star . \nname : The Plough | Type : pub | food : English | price : high | family friendly : no | near : Café Rouge||There is an expensive English pub near Café Rouge called The Plough that is not children friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : cheap | near : Café Brazil||The Cambridge Blue is a cheap Japanese pub near Café Brazil . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||Cheap family friendly Italian Venue called The Golden Curry near The Bakers . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat located in the city centre is a non family - friendly Italian restaurant that is rated 5 out of 5 \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree is a restaurant that serves Japanese food at a low price . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is kids friendly and moderate priced with a customer rating of 3 out of 5 in the Riverside area . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle situated alongside the riverside offers customers a high level of service with an average customer rating of five stars \nname : The Waterman | food : Chinese | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , The Waterman is a Chinese cuisine place and not family friendly . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is an expensive French restaurant located in the city centre . It is family - friendly and has a customer rating of three out of five . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||A family friendly pub Cocum , has a average customer rating . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a moderate price range with a customer Rating of 1 out of 5 . It is near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||With a low customer rating and an average price range , Blue Spice is a coffee shop near Avalon by the riverside in the City centre . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant with a high customer rating in the price range £ 20 - 25 with no kids friendly atmosphere . It is located in the city centre near Express by Holiday Inn . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a low customer rating and is located near Café Adriatic in the riverside area . But , it also has a price range of fewer than 20 euros . \nname : Midsummer House | food : Chinese | customer rating : average | near : Café Rouge||Midsummer House , near the Café Rouge , offers Chinese food . Its customer rating is average . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : no||The Twenty Two is a Chinese restaurant located riverside that is not family friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Italian coffee shop near Café Sicilia is child friendly and customer rated low . Price range is in lower range at items starting at less than £ 20 . Visit The Punter . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Expensive pub food can be found at Fitzbillies ' , a coffee shop north of the city centre . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , an Italian restaurant has high prices and a low customer rating . It is not family - friendly , but is near Rainbow Vegetarian Café \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace coffee shop is a highly rated and moderately priced Asian restaurant located outside the city centre . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||The Browns Cambridge serves fast food in a cheap price range and they have a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||People from Riverside , check out the Chinese restaurant The Golden Curry near to Café Rouge . We have the highest customer rating . Bring your friends , kids , and family . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is family Friendly serving Italian food in the riverside area with a low customer rating \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , a luxurious , not suitable for children , Japanese restaurant located in the centre of the city near the Express by Holiday Inn . It has an average customer rating of 3 out 5 \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Conveniently located along the riverside and near All Bar One , Green Man French restaurant is a higher priced at upwards of £ 30 , yet it is children friendly . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix is a Fast food place , it has a low customer rating , but it is riverside . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 3 out of 5||Wildwood is a pub providing Indian food in the moderate price range . Its customer rating is 3 out of 5 . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : no||Alimentum serves English food in the riverside area . It is not kid friendly and is in the moderate price range . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is an eatery serving English food at cheap rates , in a family - friendly setting . It has a customer - rating of average . \nname : Bibimbap House | food : Indian | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House , Indian food at price range more than £ 30 . Locate in the riverside area , near to the Clare Hall . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a highly rated Indian restaurant in city centre near Yippee Noodle Bar . It costs more than 30 pounds . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||Cotto is a restaurant near Ranch that serves average English food . Families are welcome . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum coffee shop also serves food in a low price range . It is a family friendly restaurant . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||In riverside close to Rainbow Vegetarian Café , is a pub restaurant called The Golden Palace and is priced highly . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||Café Rouge is a popular restaurant in Wildwood . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||In the riverside area near the Yippee Noodle Bar , Alimentum serves French food in the average price range with a 3 out of 5 customer rating . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||This restaurant in riverside with a rating of 3 out of 5 and a moderate price range , provides Fast food and yes is also kids friendly . it is called The Waterman . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||In the riverside area near Café Rouge , there is a fast - food place called The Golden Curry . It has an average customer rating and is not family - friendly . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a low price place for cheese and wine . Near Clare Hall . \nname : Cotto | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto provides Chinese food . It is near Ranch . Its customer rating is 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located inside City center . , next to the Burger King , is the high - priced coffee shop The Eagle . This well - reviewed coffee shop , 5 out of 5 stars , is a family - friendly establishment that serves British style food and alcohol . \nname : The Waterman | price : less than £ 20 | family friendly : yes||The Waterman is a cheap family friendly restaurant . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||There is a restaurant called The Waterman that serves Chinese . it is child friendly and is near Crowne Plaza Hotel \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||The Plough restaurant is a low cost eatery , near The Bakers . It is not a family friendly restaurant . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||There is a average - priced restaurant called The Dumpling Tree that serves Japanese food . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is an Italian coffee shop near Burger King , in City centre . It has a 3 out of 5 star rating , it 's family friendly , but the food is pricey . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a Japanese coffee shop in the Riverside area with a 5 out of 5 rating . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix serves sushi with a nice price by the river \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill is a moderately priced coffee shop with Japanese food . It is located near The Sorrento in the riverside area . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a kids friendly , Japanese restaurant in the 20 - 25 price range near Express by Holiday Inn in the city centre that has a customer rating of 3 out of 5 . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||A kid friendly , Japanese restaurant located near the Crowne Plaza Hotel is The Waterman . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is an Italian restaurant not good for family but with a high rating located in the city centre \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Chinese food restaurant in a moderate price range with a customer rating 1 out of 5 . It is near Rainbow Vegetarian Café and not kid friendly . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no||The Olive Grove is an Indian pub with a moderate price range in the city center . It is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop that has high customer ratings and is not kids friendly . \nname : The Vaults | food : French | price : moderate | family friendly : no||moderate priced French food can be found at The Vaults , children not welcome \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter coffee shop , well priced 5 star restaurant , located next to Café Sicilia \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is average . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is a cheap Fast food located in riverside . It is not family - friendly and has average customer rating . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located at Rainbow Vegetarian Café and it offers whole meal deals at good prices . \nname : The Punter | food : Italian | price : cheap||The Punter is a cheap place to eat . It specializes in Italian food . \nname : The Vaults | food : English | price : cheap | family friendly : yes||The Vaults is a cheap , child friendly restaurant that serves English food . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a highly - rated full - service restaurant for families next to the river . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice near riverside is a moderate price range Japanese food \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a moderate priced Chinese food restaurant with a customer rating of 3 out of 5 , in the Riverside area , near Yippee Noodle Bar . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a no family - friendly coffee shop The Wrestlers located near Raja Indian Cuisine in the riverside that provides French food in the cheap price range . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Serving fast food in the riverside area includes Alimentum . Alimentum is near the Yippee Noodle Bar and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is in the city centre near Burger King . It serves French food of high prices . Not being child friendly customers rate it 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Fitzbillies is a Japanese coffee shop in riverside which not only has a low customer rating , but has a price range more than £ 30 and is not children friendly . \nname : The Phoenix | food : English | price : high | customer rating : average | area : city centre||The Phoenix is an average rated English restaurant situated in the centre of the city with a high price range . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant with a customer rating of 3 out of 5 , has a price range of £ 20 - 25 , and is near Express by Holiday Inn in Riverside . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a restaurant for families that offer a low priced menu . \nname : The Twenty Two | food : French | family friendly : no||There is a non family - friendly French food restaurant called The Twenty Two \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an English breakfast bar that is suitable for families . It is rated one star and offers food at a medium price . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is located near Café Brazil in the riverside area . It is a coffee shop with a 5 out of 5 customer rating and is in the over £ 30 price range \nname : Cotto | food : English | near : Café Rouge||There is an English eatery called Cotto near Café Rouge . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||In riverside , there is a moderately priced English restaurant called The Waterman . It is not kid friendly , and has a 3 out of 5 customer rating . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is kid - friendly French restaurant by the riverside called The Rice Boat . It had a customer rating of 3 out of 5 , a price range of £ 20 - 25 and is near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is a moderate priced poorly rated kid friendly coffee shop Fitzbillies in the city centre . It offers Italian food . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : yes||There is a child - friendly pub in the city centre called The Olive Grove . It has a price range of more than 30 pounds . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers has a price range of more than £ 30 , it also has a low customer rating . But it is children friendly and serves Japanese Food . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Near Ranch , Cotto is a kid - friendly venue that serves French food . Customers give it a rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a more expensive , children - friendly , fast - food coffee shop located near Burger King in the city centre . Customers have rated the location 1 out of 5 . \nname : Blue Spice | food : French | price : moderate | area : riverside||French food at Blue Spice in riverside is moderately priced . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an expensive coffee shop The Wrestlers located near Raja Indian Cuisine . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop providing Indian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is an expensive , family friendly restaurant is located near the Rainbow Vegetarian Café . It is in the high price range and has fantastic customer reviews . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman provides Indian food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : The Waterman | price : moderate | family friendly : yes||The Waterman has moderate prices and is kid friendly . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : no||A Chinese restaurant , Loch Fyne is perfect for adults looking for a moderate but affordable price range . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a 5 star , family friendly , sushi and coffee shop restaurant combo located beside Crowne Plaza Hotel underneath the river . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix has a rating of 5 out of 5 and serves fast food near the river . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Though it has a low rating , Browns Cambridge is a family friendly coffee shop that also offers Japanese cuisine . It is located in the city centre near Crown Plaza Hotel . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Indian food in the moderate price range . It is located in the city centre . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge has a low customer rating . It is high priced . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||For a low cost lunch you could try Fitzbillies . It 's a relatively new coffee shop located on the riverside that offers Italian food in a family friendly environment . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Cotto is a child - friendly Italian restaurant that is highly rated and found near Ranch . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is Italian food near Ranch and kid friendly \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||For a children friendly restaurant visit the Travellers Rest Beefeater . The prices ranges are more than £ 30 . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers has an average customer rating , it is a family friendly pub near Ranch . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Five star coffee shop Cotto , next to The Portland Arms , is reasonably expensive \nname : Loch Fyne | Type : restaurant | food : Italian | price : more than £ 30 | family friendly : yes||there is an Italian restaurant named Loch Fyne that has the price range more than £ 30 and it is children - friendly \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||Join us at The Waterman , a family friendly Japanese style restaurant located near the Crown Plaza Hotel . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is located near the All Bar One . It has high Price range but an excellent customer rating \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a coffee shop in the city centre . It has average prices and customer rating , but kids are welcome . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a Japanese restaurant with a 5 out of 5 costumer rating its located in the riverside area . The Waterman offers amazing cheap Japanese food but is not a family environment \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Located in the riverside , near Clare Hall , is Bibimbap House . They serve fast food for less than average prices . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||By the riverside there is a restaurant called The Golden Palace which is rated 1 out of 5 by customers . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop in City Centre with an average rating that serves Japanese food and is not family - friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub providing excellent food in the low price range . It is located in the city centre . \nname : The Eagle | food : French | customer rating : low||The Eagle is a French Food restaurant , which has low customer ratings \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has an average customer rating it is near the Express by Holiday Inn for family 's with kids offers a cheap rate . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly English food restaurant located in the city centre . It has a low customer rating and a price range of less than £ 20 \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is along the riverside which serves food in the £ 20 - 25 price range . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two is a French restaurant . Located riverside . It is not family - friendly . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is an expensive restaurant that offers wine . It is located near All Bar One . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly place with a average customer rating that serves Japanese less than £ 20 near the Rainbow Vegetarian Café . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||yes kids friendly , moderate prices , and a customer rating of 1 out of 5 the French restaurant The Wrestlers is nice to eat in . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is a Chinese venue called The Golden Curry located near Café Rouge in riverside . It is child friendly and has an average customer rating . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an Italian restaurant located on the river near Yippee Noodle Bar . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat in riverside is The Twenty Two who is children friendly , has a low customer rating and is priced more than £ 30 . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Near The Bakers a restaurant called The Plough is kid friendly and is priced ranged between £ 20 to £ 25 . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Near Burger King , in the riverside area , is the coffee shop The Eagle . It is not family Friendly , has a low customer Rating and is in the price Range of less than £ 20 . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a cheap English restaurant with a rating of 5 out of 5 but is not family - friendly . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The highly rated pub The Cricketers , is a children friendly pub near Ranch . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||In riverside , there is a pub with moderate price range and Fast food called The Mill . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : no | near : The Bakers||Located near The Bakers is a coffee shop named Giraffe . It has a high customer rating , is priced in the L20 - 25 range , and is not kids friendly . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid friendly restaurant offering English food at affordable prices . The Waterman is located on the riverside and has a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne Indian restaurant is family Friendly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Kid friendly , with a price range of £ 20 - 25 , and customer rating of 3 out of 5 , the Blue Spice is located near riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a low - priced restaurant north of the city centre that serves sushi . It is located by The Portland Arms . \nname : Fitzbillies | food : Indian | price : high | near : The Six Bells||There is a high priced Indian restaurant called Fitzbillies near The Six Bells . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the high price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : Midsummer House | food : Indian | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House , located near Café Rouge is an average rated Indian establishment . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a moderately priced Italian restaurant which is kid friendly and receives a rating of 1 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese restaurant with a low customer rating . The Golden Curry is located in the city centre near Café Rouge and is not family friendly . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a moderately - rated kid - friendly pub offering fast food . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a low price five star coffee shop situated near Ranch \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||The city centre located Green Man serves English food for less than £ 20 . It is near the All Bar One . It is not family - friendly . \nname : Bibimbap House | food : Fast food | price : moderate | area : city centre | near : Clare Hall||Bibimbap House , near Clare Hall , is a moderately - priced Fast food join near Clare Hall in the city centre . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Boasting a customer rating of 5 out of 5 , the Cocum is a child friendly pub with price range of more than £ 30 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||Near the city centre there is a moderately priced pub called The Mill . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Rainbow Vegetarian Café called Strada had Italian food that was ranged 20 - 25 . The kids were not friendly and rated it high \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly location that is located near the Express by Holiday Inn . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a Chinese restaurant that is family friendly . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid friendly restaurant serving Japanese food . It is an average priced restaurant but has a low customer rating . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||With a 5 out of 5 customer rating , The Golden Curry , offers French food , and is child friendly . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap , family friendly , fast food restaurant near The Bakers . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||There is a coffee shop Clowns in riverside near Clare Hall . The restaurant has high customer rating and serves Fast food . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||You can find Alimentum , a high - priced Japanese restaurant , in the riverside area near Yippee Noodle Bar . They have a 3 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a cheap coffee shop which also provides food . Rated one star this restaurant is located near to Café Sicilia and unfortunately does not allow children . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||A family friendly pub , the Giraffe serves French food and is located in the riverside area . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : city centre||The Mill is a moderate priced pub in the city center . serving Chinese food . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 1 out of 5||The Cambridge Blue is a restaurant serving French food , however it has a low customer rating . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Blue Spice is a French restaurant providing food in the £ 20- £ 25 price range which can be fond in the riverside area . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast - food restaurant with a riverside - view located just past the City Centre . \nname : The Golden Palace | Type : restaurant | price : moderate||The Golden Palace is a moderate priced restaurant . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the city centre is the highly rated , mid priced English restaurant , Alimentum . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||There is a low - cost restaurant called The Dumpling Tree where you can eat Italian food . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a five star coffee shop that welcomes families . It is located near to the Café Sicilia . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||In City Centre , Alimentum is an inexpensive , family friendly wine and cheese restaurant . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a family friendly restaurant providing food under £ 20 . It is located near Café Sicilia . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a moderately priced coffee shop called Cotto serving Japanese food in the riverside area near The Portland Arms with a low customer rating . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a poorly rated kid friendly restaurant in the city centre . It provides moderately priced Italian food . \nname : The Punter | food : English | price : less than £ 20||The Punter serves low priced meals . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The restaurant is called The Golden Curry . It serves Italian food and yes , it is kid - friendly . It has a high customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||A low priced restaurant that serves sushi is Loch Fyne . Only thing is that it is not family friendly . \nname : Blue Spice | price : more than £ 30 | area : riverside||Along the riverside , there is a place called Blue Spice . It has a price range of over £ 30 . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum coffee shop is a Café for families . it is a highly rated and of high - priced range . it is located \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Cotto serves Chinese food . They have an average customer rating and are family friendly . They are located near Ranch . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop located near Raja Indian Cuisine , in riverside . They offer Japanese food for under £ 20 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns pub offers spirits for a high cost . Only one star . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia in Riverside is a coffee shop named The Dumpling Tree . Child friendly yet expensive . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||The Mill coffee shop is a great place to eat Italian at cheap prices its near The Sorrento in Riverside \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located in the riverside area , Aromi is a fast food coffee shop that is kid friendly with a customer rating of 1 out of 5 . \nname : The Vaults | food : English | price : high | family friendly : yes||The children friendly restaurant called The Vaults serves English food at a high price range . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The restaurant Blue Spice in riverside is children friendly , has a low customer rating and costs more than 30 euro . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||Located in riverside near Café Sicilia is The Dumpling Tree . It is a cheap , family friendly coffee shop . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||the Fitzbillies is a expensive place with a low customer rating of 1 out of 5 its near the Express by Holiday Inn and is child friendly \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||In the city centre , The Waterman provides a children friendly English restaurant with good food and high prices . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum a restaurant with a 3 out of 5 customer rating . It 's kid friendly . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Blue Spice in the city centre is low priced and not family friendly . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||Perhaps because it isn 't place for children or the average price more than £ 30 , The Eagle coffee shop that serves French food has a low customer rating . Located near Burger King in the city centre area . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||There is a cheap restaurant located near The Rice Boat in the riverside area that is family Friendly named The Twenty Two with an average rating . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is kids friendly , has a customer rating of 1 out of 5 and is near Express by Holiday Inn . They are moderately priced . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly restaurant with meals less than £ 20 . It serves French food . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a low price range of £ 20 - 25 , child friendly , French restaurant in the riverside area . It has a customer rating of 3 out of 5 . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant in the river side near Yippee Noodle Bar . Price range is £ 20 - 25 and high rating . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the riverside area near Café Brazil . Price range : Less than £ 20 . Customer rating : low . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter restaurant serves French food . It is located near Café Sicilia . It 's also a coffee shoo . Family friendly . Cheap price range . 5 out of 5 rating . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant which serves British cuisine . It is located close to the Rainbow Vegetarian Café , is suitable for families and has a moderate price range . The customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a fast food style coffee shop located in the city centre . It has a customer rating of 5 out of 5 and it family - friendly . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a curry restaurant with one star that does not allow children and is located near Café Rouge . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge is the name of an Italian restaurant with prices less than 20 pounds . However , it has a low customer rating . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||The pub Zizzi has French food for sale however the customer rating low but is it children friendly yes . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||City center is the location for The Waterman . It is serving Chinese food in the moderate price range . It is kid - friendly and has a low customer rating . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||For nice mid - range priced food try The Golden Curry , suitable for all the family and 3 star rated food . Situated near The Bakers . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||A French restaurant that is kid friendly is Loch Fyne . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a child - friendly pub , but has low customer satisfaction with a price range of more than £ 30 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||There is a child friendly Japanese pub , named The Dumpling Tree located near The Portland Arms . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a riverside located , family friendly pub , providing a cheap range of fast foods . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in City centre on the river next to Yippee Noodle Bar is Alimentum , a five star rated place that serves wine at a low price . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high priced family friendly restaurant near the river . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||Offering cheap English food , Wildwood is an average - rated pub . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies , near Express by Holiday Inn has a cheap price range , is family friendly and has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a low - priced coffee shop serving Fast food , located by the riverside near Burger King . It caters to adults and its customer rating is 5 out of 5 . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a child friendly establishment serving English cuisine . It is located on the riverside close to The Sorrento . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a restaurant that offers hamburgers and fries and is located next to The Bakers . However , it is not family friendly but is low priced . \nname : Blue Spice | food : Italian | price : £ 20 - 25 | area : riverside||Italian restaurant called Blue Spice near riverside . Meals cost about £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a low - priced coffee near Burger King that provides sushi and is not family friendly . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : city centre||The Phoenix is an average customer rating Fast food located in city Centre and has cheap price range . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||For fast food less than 20 by the riverside , Alimentum near the Yippee Noodle Bar has a low customer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a high rated child friendly coffee shop that offers expensive fast food . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop serving fast food . It has an average customer rating , is not family - friendly , and is located in the city centre . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a high priced family friendly restaurant near a building called All Bar One . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is an expensive pub near the city centre . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 3 out of 5 | area : riverside||There is a pub located at riverside The Waterman that serves Chinese food . It is rated 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high priced coffee shop serving French cuisine situated on the riverside near Raja Indian Cuisine which is child friendly . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The kids friendly pub known as The Plough is located near Café Rouge . They serve French food with a price range of £ 20- £ 25 . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Welcome to the Green Man . We are not family - friendly . Our food is Japanese , and we are located on the riverside near the All Bar One . Our price range is less than 20 pounds . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes||Aromi is a nice and well liked family - friendly coffee shop located in the city centre . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves fast food in the price range of more than £ 30 . It is children friendly and located in Riverside , near Express by Holiday Inn . \nname : The Punter | food : Fast food | price : high||You can visit The Punter for high prices fast food \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant that serves English food and is near Yippee Noodle Bar in the area of riverside . The customer rating is 3 out of 5 and is in the moderate price range . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||Available for your use is The Phoenix , a 5 star facility , which offers wine , cheese and fruit . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||There is a 3 star Japanese restaurant called Browns Cambridge that is high priced . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||coffee shop Cotto is at the riverside , near The Portland Arms , cost of around £ 30 minimum . Fast food , highly rated . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||The Dumpling Tree provides English food at a cheap price and is a restaurant . \nname : The Rice Boat | food : English | area : city centre||The Rice Boat has English food and is in the area of City Centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||n the city centre , there is The Fitzbillies , a highly rated expensive non - children friendly coffee shop that serves French food . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum , an Italian - style restaurant near the Yippee Noodle Bar in the city centre area , boasts a cheap price range and an average customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop located in the riverside area . It is kid - friendly and has a customer rating of 3 out of 5 . Aromi serves Italian food . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an adult focused Indian Café . It is rated low but conveniently located downtown near the the Crowne Plaza Hotel . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : city centre | near : Clare Hall||Japanese food can be bought at Bibimbap House in the city centre . It is located near Clare Hall and has high prices . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has a high price range while also being children friendly and having a customer rating of 3 out of 5 . It can be found near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : no||There 's a moderately priced Chinese restaurant that isn 't kid friendly called Loch Fyne . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||A restaurant with customer rating 3 out of 5 is Strada . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||There is cheap , Japanese pub near Café Brazil named The Cambridge Blue . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum coffee shop is a high rated children friendly location for Japanese food in the high price range \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is an Indian restaurant and coffee shop costing less than £ 20 . It 's in the city centre , near The Portland Arms . Has low ratings . \nname : The Phoenix | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Phoenix serves Chinese food and is located in the Riverside area . The customer rating is a one out of five . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The high priced coffee shop The Mill is located near The Sorrento . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle , located in the city centre near Burger King , is a coffee shop serving Japanese food in the £ 20- £ 25 price range , not child friendly . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a sushi restaurant north of the city that is highly rated and family friendly . \nname : Strada | Type : pub | food : Indian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is an Indian pub with average food , located near Yippee Noodle Bar . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant which serves British cuisine , located close to the Rainbow Vegetarian Café . It has a moderate price range and a customer rating of 1 out of 5 . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Next to the Rainbow Vegetarian Café you will find Strada , a low cost , family friendly British restaurant scoring 3 out of 5 stars . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A coffee shop serving Japanese food is in the riverside area . The children friendly Fitzbillies is in the high price range and has a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing pasta in the high price range . It is family friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop with an average Customer Rating that serves cheap Italian food and is located in the riverside area near The Portland Arms . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a very family friendly fast food venue . At less than £ 20 , this Riverside venue beats its close competitor , All Bar One . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is an adult coffee shop providing fast food near the Crowne Plaza Hotel . It is located in the city centre . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , which is near Café Sicilia , is a coffee shop that serves cheap fast food . It is family friendly and has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : no | near : The Portland Arms||There is a coffee shop by The Portland Arms called The Cricketers that serves Indian food . It 's rating is low and not family friendly . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada restaurant near the Rainbow Vegetarian Café is my favorite spot in town . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre||For French food that is less than £ 20 then visit The Golden Palace which has a low customer rating for a coffee shop \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a Japanese sushi shop exclusively for couples . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is an Italian restaurant that 's on the riverside in the moderate price range , and is kid friendly . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is family friendly serving English food rated 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||The Dumpling Tree is a Fast food restaurant price range £ 20 - 25 \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a Chinese restaurant with moderate pricing located near All Bar One . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A child friendly Italian coffee shop ' The Eagle ' with a good price range but low customer rating . In riverside by ' Burger King ' . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant providing high quality food and family services in average price range . It is located after Rainbow Vegetarian Café \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a child - friendly coffee shop . Customer ratings are low . It is located in the city center . Prices are more than £ 30. it is near Avalon \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Come to the Riverside for a less than 20 dollar meal at Blue Spice Japanese grill . \nname : The Punter | food : French | price : moderate||The Punter provides French food in the moderate price range . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced , kid friendly , Fast food restaurant in riverside near Express by Holiday Inn . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In Riverside , there is a coffee shop with a 5 out of 5 customer rating called Zizzi . It 's cheap and family friendly . \nname : Strada | price : high | customer rating : average | family friendly : yes||A restaurant named Strada is children friendly with a high customer rating and high price range . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : riverside||The Phoenix offers expensive Chinese food by the river . The Phoenix has an average rating . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is an Indian coffee shop by the river , not far from Clare Hall . It has an excellent customer rating . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Customers give Browns Cambridge a rating of 3 out of 5 , It is a place with entries costing in a price range of £ 20 - 25 . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||Alimentum providing fast food . It is located in city center . Alimentum have good price range , less than £ 20 . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a fast food restaurant which has a family - friendly atmosphere . The food price range is below £ 20 . Alimentum is located in the city centre . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two restaurant serves Italian cuisine in a friendly atmosphere for children . It is located on the riverside of Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the Riverside area near the Crowne Plaza Hotel the is a family friendly coffee shop that 's getting top ratings for it 's fast food called Browns Cambridge . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||The Chinese place called Loch Fyne is a 5 out of 5 rated place in city centre by The Rice Boat . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||There is a cheap restaurant in riverside called Zizzi . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is an English pub located in city centre . \nname : The Mill | Type : coffee shop | food : French | price : high | area : riverside | near : The Sorrento||The Mill coffee shop is in riverside near The Sorrento . They service French food and is a little expensive . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a highly rated , kids friendly , Italian coffee shop , near Café Sicilia . It is priced around £ 20 - 25 . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a three star Italian joint with medium pricing . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese coffee shop near Raja Indian Cuisine on the riverside . Its prices lie within the less than £ 20 range . No families . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a Fast food restaurant which is average priced and kids friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||If you are looking for something different check out Cotto , a coffee shop that is located near The Portland Arms . Cotto serves so much more than just coffee . Stop by this upscale shop and enjoy a wide range of exotic and local treats . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant that is located near Yippee Noodle Bar at City Centre . While the food is average the price is cheap . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : riverside||Blue Spice is a Chinese restaurant located on the riverside with prices less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves Indian food with a customer rating of 3 out of 5 . It is Kid Friendly and near The Portland Arms . \nname : The Eagle | price : high | customer rating : average | area : riverside||The Eagle is an upscale venue located in riverside . It has an average customer rating . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||For English food try the Green Man . This pub is near Café Rouge in the riverside area . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||A pricey French coffee shop rating 3 out of 5 near The Portland Arms and riverside area is named Cotto . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop near city centre priced at £ 20 - 25 at city centre . IT is kids friendly and is highly rated by customers . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a child Friendly restaurant serving Fast food . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located in the city centre near Burger King , The Eagle coffee shop serves cheap Indian food . It has a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||A family friendly pub called The Olive Grove has a price range of less than £ 20 . It is located in the riverside area . \nname : The Phoenix | food : Indian | customer rating : average | area : riverside||The Phoenix is near the riverside and the customer rating is average . It sells Indian food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a Japanese coffee shop with a price range of 20 - 25 GBP and a high customer rating . It is located in the city centre \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue restaurant got a bad rating but it got English food . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderately priced venue near Rainbow Vegetarian Café that serves Chinese food . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Cocum coffee shop is for the whole family . It is high priced and rated five stars . It serves fine food . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||There is a pub called The Waterman near the riverside . It servers Italian food and has a low customer rating . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is not family - friendly , but sells cheap Italian food in the riverside area near the All Bar One . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||In riverside you will find Aromi a low rated Fast food coffee shop that is not family - friendly . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a highly rated fast food place in the city centre near the Yippee Noodle Bar . The prices range from above £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A coffee shop offering Indian food , Fitzbillies is ideal for family and friends , with an affordable price range at less than £ 20 . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap , non family friendly British eatery located near The Bakers . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is a high price Chinese bar at river side near All Bar One and no children friendly . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada has prices ranging from £ 20 - 25 . It is kid friendly with high customer ratings . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a family friendly place with a customer rating of 5 out of 5 . Giraffe is located near The Bakers and they are also family friendly . It is a coffee shop that offers a cheap price range . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Located in the city centre , The Eagle has a starting price point of £ 30 and a 5 out of 5 customer rating . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man , near All Bar One in the riverside area , is high - priced , children - friendly , and offers Japanese food . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||A high customer rated English restaurant The Rice Boat is located in the city centre near Express by Holiday Inn which is not kid friendly and is priced £ 20 - 25 . \nname : The Vaults | Type : restaurant | food : Italian||A restaurant named The Vaults , serves Italian food . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The child friendly Cocum pub is in the high price range and boasts a 5 out of 5 customer rating . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a middle price range and three star rated wine and cheese restaurant . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is the place for high - priced child friendly Fast food near riverside . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||With a customer rating of 1 out of 5 , The Waterman serves French food . It is located by the riverside , and is in the moderate price range . It is not kid - friendly . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||There is an cheap Blue Spice , near Avalon in the riverside and they are for family . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 1 out of 5||Wildwood is a pub providing Chinese food in the moderate price range . Its customer rating is 1 out of 5 . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : yes||Giraffe , near the city centre , is a pub that serves Indian food in a family - friendly environment . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : city centre||Blue Spice is located in the city centre and offers Indian food . The price range is less than 20 . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : city centre||The Eagle in the city centre has a lower than average price . Customer rating is low , however . \nname : Cotto | food : French | near : Café Rouge||Cotto serves up French style dishes and is easy to find right near Café Rouge . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , The Cricketers is a kid - friendly pub that gets a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||Riverside has a family friendly Italian restaurant with excellent prices and good food . Its called The Rice Boat . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a whole foods coffee shop located near Crowne Plaza Hotel . It is not intended for the whole family . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : city centre||The Waterman is an average rated pub serving Italian food in the city centre . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 3 out of 5||The customer rating 3 out of 5 from the Browns Cambridge , Chinese restaurant , offers Chinese food at a moderate price range . \nname : Strada | Type : pub | food : Chinese | customer rating : low | near : Yippee Noodle Bar||Strada is a Chinese pub with low ratings near Yippee Noodle Bar . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man offers Japanese food with a moderate price range . There is no kids area . It is located in the city centre , near to All Bar One . \nname : Browns Cambridge | price : high | customer rating : average||Browns Cambridge is expensive with an average customer rating . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||3 out of 5 ratings and moderately priced Chinese restaurant in the city center . The Waterman does not allow children . \nname : Wildwood | Type : pub | food : Chinese | price : less than £ 20 | customer rating : low||Wildwood is a Chinese pub that is inexpensive . It also has a low customer rating . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||A kid friendly place , The Vaults serves Japanese food with a price range of £ 20 - 25 . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is a moderately priced riverside establishment . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House can be found by the riverside near Clare Hall , serving French food , price range £ 20 - 25 . \nname : The Waterman | price : less than £ 20 | family friendly : yes||With a price range of less than £ 20 , The Waterman is family friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||The Sorrento , in Browns Cambridge , is not a great place for the whole family . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Indian food at The Wrestlers is average and their prices are moderate but it 's not good for kids . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||There is a fast food restaurant called The Cambridge Blue with an average customer rating . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||Spend lots of money on French food and drink at Wildwood pub . 1 star rating \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||English food with moderate price range is Alimentum ; located in centre city near the Yippee Noodle Bar . customer ratings are 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a Japanese coffee shop located near Café Sicilia . It has a price range of less than 20 pounds , has an average customer rating , and is not family - friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Located in the riverside area , Giraffe is a kid friendly fast food pub . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : no||The Cocum is a pub restaurant with a low customer rating . It is not children - friendly and price range more than 30 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a kids friendly pub with Japanese food that has a good customer rating . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a mid ranged Japanese eatery which is not family friendly and has low customer ratings . It is located near the Rainbow Vegetarian Café . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no||Located in the city centre , Aromi offers fast food in a childless coffee shop atmosphere with low ratings . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Crowne Plaza Hotel is a non family - friendly coffee shop in riverside , Browns Cambridge . Its of average rating with Japanese food \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||A coffee shop , The Punter , is a family friendly mid range establishment near Café Sicilia . \nname : The Rice Boat | food : Indian | area : riverside||The Rice Boat is an Indian restaurant that is on the riverside . \nname : The Twenty Two | food : Italian | family friendly : yes||There is an Italian restaurant called The Twenty Two which is family friendly . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in city centre , Alimentum serve French food with a price range of more than £ 30 , and a 5 out of 5 customer rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is located near Raja Indian Cuisine . It is in the average price range . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is a riverside pub offering fast , high priced food . \nname : Alimentum | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is an Italian restaurant located Riverside . It has a £ 20 - 25 price range and is Kid friendly . \nname : Bibimbap House | food : French | area : city centre | near : The Rice Boat||Bibimbap House is a French restaurant located in city centre near The Rice Boat . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : no||Located in the city centre , you can enjoy Japanese food at The Rice Boat . They have an average customer rating and aren 't family - friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||Having high customer ratings , The Punter is a coffee shop located near Café Sicilia that serves Italian cuisine . The average price range is 20 to 25 pounds . Please be aware that The Punter is not child - friendly atmosphere . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman provides cheap fast food . It is located riverside . It is family - Friendly , but has a low customer rating . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||With an average customer rating , Blue Spice is a family friendly coffee shop , located in the riverside area , near Avalon . Price range is less than £ 20 . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Cocum pub is high priced , not for the family , and mid price range . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe , is pub yes children - friendly \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre near Raja Indian Cuisine is The Wrestlers . It is a kids friendly coffee shop serving moderately priced Japanese food . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is family friendly and serves Japanese food . It is near the Crowne Plaza Hotel . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||In the city centre is a coffee shop called Zizzi . It is moderately priced , has a 1 out of 5 rating and isn 't kids friendly . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a mid range coffee shop serving French food . Located near The Portland Arms , this riverside coffee shop has a low customer rating . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||An Indian restaurant located in the city centre , The Waterman offers food at less than £ 20 . It is not family friendly and has low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop located in the riverside area that provides Indian food which has a low customer rating and the price range is less than £ 20 . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||Near All Bar One is a Japanese restaurant named The Cricketers . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is a family friendly expensive pub offering Italian food . It is located in the City centre . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : no||There is a non family friendly pub that serves Chinese food called Zizzi . It has 5 out of 5 customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family oriented Coffee shop that serves Italian food . It is located Near Crowne Plaza Hotel in City Centre . \nname : Green Man | food : Japanese | price : high | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One is the Green Man children friendly with high price ranges \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||the Taste of Cambridge is a coffee shop which also sells Japanese food . it is located near Crown Plaza Hotel down by the riverside . yes it is family friendly \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||Japanese riverside coffee shop The Golden Palace customer rating high and price range £ 20 - 25 \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman provides Chinese food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a coffee shop called The Cricketers . With a rating of 1 out of 5 stars , it provides Fast food to its customers , as well as a child friendly atmosphere . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Mid priced , average customer rated Alimentum serving French food in city centre near Yippee Noodle Bar . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a high end venue near The Rice Boat in the riverside area of town . It is child friendly and has a customer rating of 1 out of 5 . There is a restaurant called The Cricketers serving English food near to All Bar One . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||This family Friendly restaurant named The Golden Curry in riverside near Café Rouge has a 5 out of 5 rating . \nname : The Punter | food : Indian | price : moderate||The Punter is an Indian restaurant in the moderate price range . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a kid friendly pub in the city centre . Its highly rated French food is mid priced . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||The Phoenix in riverside has Italian food and is rated 1 . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat has English food near Express by Holiday Inn in the city centre . It is moderately priced and has a customer rating of 3 out of 5 and is not kid friendly . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a family friendly inexpensive restaurant located beside All Bar One at the end of the city . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a kids - friendly Italian coffee shop located in riverside near Clare Hall . 3 out of 5 \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a low priced Chinese restaurant . Customer rating low . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop with no family - friendly staff with price range less than £ 20 provides Fast food located near the Burger King at the riverside with low customer rating . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is a high priced place in the riverside area , near the All Bar One . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||Located near Café Brazil , The Cambridge Blue Pub does fast food at moderate prices . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is a kids friendly restaurant offering high quality food from 20 to 25 Euro . It is located in Riverside . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a high price range Japanese restaurant in Riverside near Raja Indian Cuisine that is child friendly called The Wrestlers \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||Come with your children to The Golden Curry to eat the best burger at an average price \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : no||With a customer rating of 5 out of 5 , The Golden Curry serves Italian cuisine . Please note this establishment is not considered family - friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately - priced family friendly restaurant with three stars . It 's located near Express by Holiday Inn . \nname : Cotto | food : English | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Near Ranch there is a kid friendly restaurant that serves English food and has a customer rating of 3 out of 5 , its name is Cotto . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman at riverside provides English food in the price range £ 20 - 25 . Its customer rating is high , however it is not kids friendly . \nname : The Vaults | food : French | price : moderate | family friendly : yes||A kid friendly , moderately priced French cuisine restaurant , The Vaults is now open . \nname : Loch Fyne | food : Indian | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is an Indian restaurant near riverside and The Rice Boat . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry restaurant is a five star , family friendly restaurant located next to Café Rouge \nname : Zizzi | Type : restaurant | price : high | area : riverside||In the riverside area there is a high priced restaurant called Zizzi . \nname : Blue Spice | price : less than £ 20 | area : city centre||Blue Spice has a price range less than £ 20 . It is in the centre of the city . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A high priced Chinese restaurant called The Rice Boat is located close to the Express by Holiday Inn in the city centre is children friendly with a 1 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that is family friendly and that is in a medium price range . It is also located near Café Sicilia . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | near : Clare Hall||Clare Hall is known for Fast food and coffee shop style bakeries although , customers only rate them average the Clowns are quite amusing . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a child friendly establishment near Café Sicilia with items priced at more that £ 30 . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||Low rated , but a riverside location with eats for less than £ 20 , The Golden Palace is a unique French coffee shop . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a cheap pub . Located at riverside , it has an average customer rating . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Fast food joint , The Golden Curry , serves affordable and delicious food your entire family will love , and is next to the Café Rouge \nname : Blue Spice | food : English | price : moderate | area : city centre||While visiting city centre , try the new moderately priced English restaurant , Blue Spice . \nname : Midsummer House | food : French | customer rating : 1 out of 5 | near : Café Rouge||A French food venue with a 1 out of 5 rating is Midsummer House , near Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The 5 out of 5 star Browns Cambridge Japanese food and coffee shop . We are located in the riverside area , near Crowne Plaza Hotel . Yes we are children friendly . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||There is a pub called The Twenty Two with an average customer rating located near Café Sicilia in the riverside district . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||A low priced restaurant located next to All Bar One is Green Man . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly rated child friendly Italian restaurant with prices more than £ 30 . It is located in the city centre near Express by Holiday Inn . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||Located near The Bakers is The Golden Curry . It is family friendly serving French food in the less than £ 20 range . \nname : Strada | Type : pub | food : Japanese | customer rating : high | near : Yippee Noodle Bar||Strada sells Japanese food and is a pub with a high customer rating . It is near Yippee Noodle Bar \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : no||if you are looking for a night out without the children then try some Chinese at the pub Zizzi . Zizzi has an average rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies its a good restaurant of sushi located near the center of the city \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Japanese coffee shop , Fitzbillies , is moderately priced , kid friendly , and is rated 1 out of 5 . Located in city centre . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is an average high priced Café near the Café Adriatic in the riverside area . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||There is a Japanese restaurant called The Vaults . It is family friendly restaurant for under £ 20 . \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||With prices ranging more than L30 , Green Man is a children friendly Japanese restaurant that is located near All Bar One in the city centre . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House near All Bar One has Italian food with 1 out of 5 rating \nname : The Mill | Type : pub | food : English | price : £ 20 - 25 | area : riverside||The Mill is an English pub near the riverside and has a price range of £ 20- £ 25 . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a good price range of £ 20 - 25 , Blue Spice , is located in riverside . they are kid friendly and and has a rating of 3 out of 5 . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||There is a kid - friendly Italian restaurant near the riverside called The Twenty Two . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Come Here to our restaurant it is chill friendly Its only a short drive away in the town Loch Fyne and the food Is Japanese \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Near All Bar One there is a French restaurant , Midsummer House , that received a high customer rating and their price range is 20 - 25L . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Riverside near All Bar One . A family friendly French cuisine sits ready for less than 20 euros . The Green Man . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a moderately priced Fast food restaurant in Riverside near All Bar One an is kid friendly . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||The Eagle is a Fast food restaurant that has been rated 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an expensive , excellently rated family restaurant , located near the Express by Holiday Inn . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a 5 star rated Fast Food restaurant . The average spend for this restaurant is over £ 30 . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is an expensive five star coffee shop close to The Portland Arms and the city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop situated near Burger King in the city centre . With a poor customer rating of 1 out of 5 , a high price range , and a no for children , it 's not the best of options . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry is a family friendly restaurant that sells French food and has average ratings . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a higher class coffee venue offering a range of drinks and Indian fare , conveniently located near Café Sicilia . They boast a child friendly atmosphere and are highly rated by customers , a 1 out of 5 . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||The 5 star restaurant Browns Cambridge offers fast food at a high price point . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop is located in the city centre area near Raja Indian Cuisine . It has Italian food in the £ 20 or less price range and is not family - friendly . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||The Phoenix is an average Japanese restaurant located in city centre . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel in the city centre area , Browns Cambridge is a French food coffee shop with a rating of 5 out of 5 and is not family - friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap family friendly restaurant located in the Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a coffee shop providing Indian food in the £ 20 - 25 price range . Its customer rating is high . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Cheap fast food can be found at The Rice Boat which does not cater for children . It can be found by the riverside near Express by Holiday Inn and has excellent ratings of 5 out of 5 . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family restaurant by the river with low prices . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||The Plough is family friendly and has English type food it is near Café Rouge and is cheap . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kids friendly Japanese restaurant with a price range of £ 20 - 25 . It is located in the riverside area , near All Bar One . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant providing high quality sea food in the average price range . It is located in the north of city after Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is a coffee shop in riverside near Burger King called The Eagle that serves French food . It has low ratings because it is not children friendly and cost more than £ 30 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located in the city centre , near the Express by Holiday Inn . Prices range from £ 20 - 25 and it is very kid friendly . Customers have rated it 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||There is a pub called the Olive Grove which is sited within the City Centre . It serves Indian food and the price range is less than £ 20 . The Olive Grove is family friendly . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||There is a Fast food restaurant with an average rating near The Rice Boat in riverside , named Loch Fyne . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge French coffee shop is a family - friendly restaurant located near the Crowne Plaza Hotel in the city centre with low customer rating \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman offers mid - priced Indian cuisine in riverside . It rates 1 out of 5 and is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel on the riverside is a coffee shop with French food called Browns Cambridge . It is family friendly and has a customer rating of 5 out of 5 . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House near All Bar One provide many English food . The customer rating is relative high and the price range is £ 20 - 25 \nname : The Twenty Two | food : English | family friendly : no||A not family - friendly place with English food is called The Twenty Two . \nname : The Phoenix | food : English | customer rating : high | area : riverside||A highly rated venue The Phoenix , is located on the riverside and serves English food . \nname : The Vaults | food : Fast food | price : high | family friendly : yes||The Vaults is fast food and child friendly but the prices are high . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The child friendly pub , The Olive Grove is in riverside . It serves low priced Japanese food . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a restaurant with a customer rating of 1 out of 5 , has a low price range , and is located in the City Centre . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a cheap , family friendly restaurant located near Express by Holiday Inn , it has a 5 out of 5 customer rating . \nname : The Vaults | Type : restaurant | food : Indian||The Vaults is a restaurant that offers inexpensive Indian food . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue serves fast food near Café Brazil . \nname : The Punter | food : English | price : moderate||For English food with a moderate price Range , visit The Punter . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is for high rating customers with a price more than £ 30 , offers Italian food and yes has a children area . It is located near to coffee shop Café Sicilia . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Café rouge located next to the river . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Adult only Indian coffee shop Fitzbillies is highly rated in the city centre prices are 20 - 25 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located next to the river . It is a high priced family restaurant the burgers and fries it serves are not great . Close to the Express by Holiday Inn \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is in the riverside area , is cheap and serves French food . It is near Burger King and is 5 out of 5 . It is a non family - friendly coffee shop . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes||Aromi is in the city centre with an average customer rating . It serves French food and is family - friendly . It is a coffee shop . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no||A fast food coffee shop that is not kids friendly named Aromi is located in the city centre with a low customer rating . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The family - friendly coffee shop Cocum offers cheap French food and has a 5 out of 5 rating by customers . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : no||Alimentum is a medium Italian restaurant in the town city \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||Japanese food is served at The Eagle with a customer rating of 3 out of 5 . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is an English restaurant in riverside that is family friendly . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : 1 out of 5||Browns Cambridge serves Chinese food . It has a high price range and a customer rating of 1 out of 5 . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||English food in a family friendly environment . Alimentum is a reasonably priced restaurant in the Riverside area . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||Located near the river , Alimentum is a low - priced wine and cheese bar serving wine and cheese . It is not family friendly . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||There is average - priced coffee drinks shop Cotto near The Portland Arms that provides good quality drinks . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly Fast food eatery that is highly rated by its customers . It has a price range of £ 20 - 25 and is located in the city centre near Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||A local coffee shop located on the riverside is Fitzbillies that serves English food and is also children friendly . Their customer ratings are high and also the price range is quite high at more than £ 30.00 is a great environment . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man provides moderately priced Chinese food in the city centre . It is located near All Bar One . It is not kids friendly . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||For a child - friendly restaurant serving food at an above - average price range of £ 30 and more , you could try The Punter on the riverside near The Portland Arms \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family - friendly coffee shop in the City centre , that has a high price range . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is an expensive coffee shop located outside the city centre but has menu items for the whole family . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee Shop is Italian restaurant food that moderate price range . And the located is in the riverside and have 3 out of 5 customer rating \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||The Wildwood pub offers French cuisine at under £ 20 each . It has am average customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||At Riverside , near Burger King , eat at this coffee Shop . It isn 't kid - friendly , and has a moderate price range . Called : The Eagle . Customer rating : 3 out of 5 . Food : Italian . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop located within walking distance of The Portland Arms . The shop offers valuable service with inexpensive dining . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||There is a British pub called Wildwood that has a one star rating and a high price point . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the city centre , is a moderately priced fast food restaurant . It is not kid friendly and has been rated 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||Giraffe , located near The Bakers , is a coffee shop with a price range of below £ 20 . It is not family - friendly and has a low customer rating . \nname : Strada | Type : pub | food : Chinese | customer rating : high | near : Yippee Noodle Bar||Strada is a pub that serves Chinese food . It is located near Yippee Noodle Bar and has a high customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 , The Wrestlers is a family friendly riverside French coffee shop near Raja Indian Cuisine . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||Loch Fyne Cambridge restaurant is simply unmissable \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Indian food with a low customer rating with meals less than £ 20 and is family friendly in city centre area near Burger King . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||The highly rated coffee shop , Cocum , is child friendly and offers expensive fast food . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||A restaurant named Wildwood has a customer rating of 1 out of 5 and is near Café Rouge . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant near All Bar One , serving up high price range English Food in a Child friendly environment in Riverside . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a fast food place by The Sorrento and its not family friendly \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a highly rated , highly priced , adult only restaurant serving coffee and Indian food in the city centre . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||A coffee shop called , Cocum , offers expensive fast food but is not recommended for children and has an poor rating of 1 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum offers fast food at reasonable prices . It has an average rating of customers . near Yippee Noodle Bar \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||The Dumpling Tree is a restaurant that has French food and a price range of £ 20 - 25 . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice is by the riverside with a price range less than £ 20 . It serves Italian food . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : city centre||The Phoenix is an Italian restaurant located in the city centre . its ratings are above average and the price range is affordable good quality food for everyone . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle offers a Japanese coffee shop dining experience for less than 20 pounds . It is family - friendly , with an average customer rating . It is located in the city centre , near Burger King . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||A moderately - priced and kid - friendly restaurant , The Punter is located near The Portland Arms in the riverside area . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||For an excellently rated Japanese restaurant in the riverside area , try Alimentum . It menu is on the more expensive side and it can be found near Yippee Noodle Bar . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The French food at the riverside The Phoenix is a 5 out of 5 \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||The Fitzbillies is a French restaurant with more that £ 30 price range which is located near The Six Bells . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||There is a low - priced pub located in the city centre called Wildwood . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Enjoy with your family an excellent burger , go to The Wrestlers , excellent customer care . \nname : Cotto | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a venue which welcomes families . It is a highly - rated place , and serves fast food . It 's near to Ranch . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no||The Olive Grove is an adults - only pub located in the city centre . This pub features Chinese cuisine at high prices . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an Italian coffee shop that is located in the riverside area . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is an average restaurant providing family friendly services in the luxury price range . It is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies , a cheap French coffee shop located in riverside received a 5 out of 5 customer rating . However , it is not known to be family - friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Along the riverside there is coffee shop called Fitzbillies that provides French food costing between £ 20 - 25 . It is kids friendly with a high customer rating . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||The Alimentum is a low rated Indian restaurant located in the city center near the Yippee Noodle Bar . The average price is L20 . \nname : The Punter | food : Indian | price : less than £ 20||For under £ 20 , The Punter offers Indian food . \nname : The Phoenix | food : Chinese | customer rating : average | area : city centre||The Phoenix provides Chinese food It is located in the city centre . Its customer rating is average . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove pub features breakfast and is low priced , but not family friendly . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle is an average restaurant near riverside with a price range of less than £ 20 . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a children - friendly restaurant near Ranch . It is a Japanese restaurant and rated 5 out of 5 . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||Cotto is a family friendly , Japanese themed restaurant with an Average customer rating . It is located near a Ranch . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||With one star The Eagle is a family friendly coffee shop serving expensive Japanese food . It is situated in the riverside area near Burger King . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies is a moderately priced restaurant located near Rainbow Vegetarian Café . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi is a low priced family friendly coffee shop located near the river . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes||less than £ 20 price range . pub for friends and family it is The Olive Grove . It is located in the city centre . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix serves reasonable Italian food for a reasonable price at the city centre \nname : Loch Fyne | Type : restaurant | food : Japanese | price : high | family friendly : yes||Loch Fyne is a Japanese restaurant with a high price range and a child friendly atmosphere . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle with a customer rating of 5 out of 5 and the fact it 's situated in a prime location alongside the riverside and a price range of £ 30 the Eagle will give customers an outstanding dining experience . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a fast food restaurant near Yippee Noodle Bar with a high customer rating in the riverside \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix , offers Indian food , within a moderate price range , and has customer rating of 3 out of 5 , it is located in a riverside area . \nname : Fitzbillies | food : Indian | price : cheap | near : The Six Bells||Fitzbillies it 's a cheap Indian food restaurant near The Six Bells \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||A cheap Italian restaurant near the Rainbow Vegetarian Café which has a 5 out of 5 rating and isn 't family - friendly is called Strada . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Blue Spice is children - friendly , highly priced and has an average customer rating . It is located near riverside . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||French food is served at Green Man which is a pub located on a riverside that is near Café Rouge . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub Japanese . It is located in the riverside people rating 3 out of 5 \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||The Olive Grove in riverside is a pub that is children friendly and has a high price range . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is an Indian coffee shop , it has average ratings , but it can accommodate kids . It is near The Portland Arms . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn there is a low priced sushi restaurant called The Rice Boat . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is an adult only fast food restaurant in Luton . Prices fall in the moderate range -- low customer rating . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop , located near the Café Sicilia , offers good , but expensive , Italian food . Suitable for families with children . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a 5 star family restaurant serving Indian food in Riverside . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant in riverside . It is located near Express by Holiday Inn . They are highly rated with middle of the road prices . It 's not a good place to take children . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : no||Fast food serving pub called Zizzi has average customer rate . It is not family - friendly place . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms in the riverside area is Cotto , an Italian coffee shop with a moderate price range and a 3 out of 5 customer rating . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is a non - family friendly restaurant . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in riverside neat Express by Holiday Inn , The Rice Boat is a fast food restaurant that is not kid friendly but has a price range of £ 20 - 25 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub that is fairly priced at £ 30 per visit . This Italian venue is near the coveted Café Brazil . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : no||Alimentum provides Chinese food in the moderate price range . It is located in the riverside . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a low - priced restaurant located at Clare Hall where you can have a sit down meal . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : city centre | near : The Sorrento||The Mill coffee shop , in the city centre near The Sorrento , offers moderate - priced Indian food . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||There is a kid friendly fast food restaurant in Riverside near The Sorrento . It is called Browns Cambridge . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Taste of Cambridge is a pub near The Sorrento in the riverside area , it is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for a coffee shop , then you could try Browns Cambridge . It serves Japanese food , and is child friendly . It 's located in the riverside area near the Crown Plaza Hotel . However , the customer rating is low . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree located near The Portland Arms , is a pub serving traditional English food and is kid - friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a Italian coffee shop near Ranch the price ranges are moderate and the customer rating is a 1 out of 5 . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is an Italian restaurant near Ranch . It is child friendly but has a poor customer rating . \nname : Aromi | Type : restaurant | food : Italian | area : city centre||Aromi is an Italian restaurant located in the city centre . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||The Vaults located near Café Adriatic is an average pub style restaurant with a high price range . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a family friendly , expensive Italian eatery . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry offers English food rated average by customers . It is not family - friendly and can be found near Café Rouge in the city centre . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is medium priced Japanese food not suitable for families . It is cheap and located on the riverside . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||Welcome to The Waterman . We serve Italian food we are located in the city centre our price rang is high we are not kid friendly and our customer rating is average . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a low cost family friendly eating house , also serving alcohol . It has 1 star and is located near the Rainbow Vegetarian Café . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : no||Zizzi serves French food to adults . It is a highly rated pub . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop in the riverside area . It has a 5 out of 5 customer rating with a price range of more than £ 30 . It is not children friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||A Japanese coffee shop located in the city centre near Burger King , The Eagle is moderately priced , not child friendly , with a low customer rating . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Kid friendly Japanese restaurant called The Waterman . It is average priced with a 3 out of 5 rating and located in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||If you are on a budget , why not eat at the The Dumpling Tree restaurant in Cambridge . \nname : Midsummer House | food : Indian | customer rating : low | near : Café Rouge||Midsummer House has a low customer satisfaction and is located close to Café Rouge . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice is the place to go for Fast food in riverside . Although you will end up paying more then £ 30 \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Japanese restaurant in the City Centre area . This restaurant is kid - friendly , has a high customer rating and has average food prices . \nname : Wildwood | Type : pub | food : Indian | price : £ 20 - 25 | customer rating : high||Wildwood is an Indian food pub . It has high customer rating and is 20 - 25 pounds . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a low - priced , family friendly American pub near Café Rouge . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is an Indian pub - style venue . It is located at the riverside and provides a child friendly atmosphere for a moderate price . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||Near All Bar One , is a restaurant called The Cricketers that has Japanese food . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop providing Indian food It is near The Portland Arms . Its customer rating is average . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge in the riverside area near the Crowne Plaza Hotel is an Italian coffee shop which is child friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop near The Portland Arms in the city centre with a low customer rating and a price range of more than £ 30 . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||City centre has a pub called Clowns . The prices are mid - range and it has a 3 out of 5 rating . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop located by The Portland Arms . It is for families and is affordable . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap family friendly pub by the river . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant that serves French food . It is in the city centre near Café Rouge , but has a low customer rating \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies near the riverside is and Indian food coffee shop . It 's price range is moderate with a customer rating of 1 out of 5 . It is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city center , near Burger King there is a cheap high rated Japanese coffee shop named The Eagle . Not family - friendly . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is family - friendly costs less than 20 pounds featuring Fast food near the Express by Holiday Inn near the city center with a low customer rating . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a medium priced restaurant located in the City centre \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||The Cambridge Blue restaurant has a 5 star rating . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Strada is not child friendly but customers rate its mid priced food 3 out of 5 . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant that is located near Yippee Noodle Bar in the center of the city . It has an average customer rating of 3 out of 5 and a price range of £ 20 - 25 . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a riverside English venue near Yippee Noodle Bar providing high cost food . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a fine dining experience for the whole family located near the river \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a coffee shop and family restaurant called The Wrestlers that provides wine and spirits and picnic food items that is inexpensive and near Raja Indian Cuisine . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat has English food that has a 1 out of 5 star rating . It is children friendly and located in the Riverside . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre , near the Express by Holiday Inn , is The Rice Boat . It is a family - friendly French restaurant with a high priced menu and a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||If you are looking for a restaurant in the average price range then be sure to visit The Golden Palace . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||There is a restaurant called The Dumpling Tree that serves low priced Japanese food . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no||Giraffe is a pub which is not family - friendly and offers fast food in the city centre . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is an Italian coffee shop near Clare Hall in the riverside area with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||There is a Japanese restaurant near The Bakers called The Golden Curry that is Kids friendly for £ 20 - 25 . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly restaurant located near The Bakers that offers cheap food . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a pub style restaurant in riverside which is kid friendly and has an average customer rating . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||There is a kid friendly place called The Twenty Two at Riverside serving French food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high - priced and family friendly coffee shop that is located next to Raja Indian Cuisine . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||The Cambridge Blue is a high rated Italian restaurant . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly coffee shop serving high priced Japanese food in city centre near Burger King that has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : city centre||The Mill is a pub in the city centre that serves cheap fast food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving Italian food . Located in the riverside area , near Crowne Plaza Hotel , this coffee shop is family friendly with an average rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||There is a highly rated coffee shop and dine in restaurant near Ranch called Wildwood that is fairly expensive . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located near Café Rouge . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is a high - priced place to find Indian food in the city centre . It is rated as 1 out of 5 by its customers . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||Located in the city centre near Café Rouge , is The Golden Curry . It is an Indian restaurant with an average rating . It is not family friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee shop offers Italian food . The price is low . Customer rating is average . Near The Portland Arms \nname : Cotto | food : Fast food | customer rating : low | family friendly : yes | near : Ranch||Low rating Cotton family friendly fast food located near Ranch \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is a cheap restaurant near the Ranch that serves coffee . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family Friendly Indian near Rainbow Vegetarian Café with a average customer Rating that is cheap . \nname : Midsummer House | food : Chinese | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House offers Chinese in the high price range , with a 1 out of 5 customer rating , near All Bar One . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman serves French food and has an average customer rating . its prices rang less than £ 20 and is family friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is an Italian coffee shop that has an average customer rating , is child friendly and is in the riverside area . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||An Italian restaurant in the riverside area near Express by Holiday Inn has a high customer rating . It is not kids friendly but its prices range from £ 20 - 25 . It is called The Rice Boat . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is an average rated place that enjoys families and is near by the coffee shop called Café Sicilia . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly coffee shop that serves Italian food . It is located by the riverside , but only has a customer rating of 1 out of 5 \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no||The Olive Grove is an Italian pub in the city centre . It has moderate prices and is not kids friendly . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle is a fairly expensive restaurant on Riverside that has a three out of five star rating . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a restaurant near All Bar One in the city centre . It serves Chinese food at a high price range and it child friendly . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||With an average customer rating , The Eagle has a cheap price range in a riverside area . \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||A great kids friendly French themed place , The Vaults is a great place to go to . It has a price range of £ 20 - 25 . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a moderately priced , fast food pub which is also child friendly . It is near Café Rouge . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a moderately priced restaurant The Waterman in the city centre . It is not kids friendly but they have high customer ratings and they serve English food . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : yes||A family - friendly pub , in the city centre , is called The Olive Grove . Their prices are typically less than £ 20 . \nname : Aromi | Type : restaurant | food : French | area : riverside||There is a French restaurant on the riverside named Aromi . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family - friendly French restaurant near the Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia offering French food at average price range \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a Fast food establishment near Café Rouge . It has a rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in city centre near Express by Holiday Inn is serving Indian food at a high price . It is family friendly and received a customer rating of 1 out of 5 . \nname : Blue Spice | food : Fast food | price : cheap | area : riverside||If you are looking for an easy , quick , and affordable place to eat in the riverside area , come visit us at Blue Spice . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||A pub serving Italian food for less than £ 20 is The Olive Grove in riverside . They are not family - friendly . \nname : Loch Fyne | food : Chinese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a Chinese restaurant with low prices located in riverside near The Rice Boat . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Expensive fast food , high - rated Midsummer House is located near All Bar One . \nname : Blue Spice | food : French | price : moderate | area : city centre||If you are searching for a place that serves French food near the city centre and with moderate prices , the Blue Spice might be for you . \nname : Cotto | food : Japanese | customer rating : high | family friendly : yes | near : Ranch||The Cotto is near the Ranch . It has a high customer rating , serves Japanese food and caters to kids . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : no||The Cocum has a low customer rating and is not children - friendly . The price range is more than 30 at this pub restaurant . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||The Punter costs more than £ 30 , but is child friendly . It is located near The Portland Arms on the riverside . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is located in city centre with a 5 out of 5 rating and low prices . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||There is a child friendly , French pub , called The Dumpling Tree , near The Portland Arms . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman 's Chinese food is cheap , awesome customer rating 5 out of 5 , conveniently located in the city centre and family friendly . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix has high customer rating and a price range of £ 20 - 25 . It is located in the riverside . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||Loch Fyne family friendly French restaurant expensive . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is highly rated coffee shop by the riverside named Fitzbillies . They serve Italian food ranging from £ 20 - 25 in a non - kid friendly environment . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is a sushi bar low priced in town . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a moderately - priced fast food restaurant that is not suitable for children , and has received a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Zizzi is a no children - friendly coffee shop located in the city centre . Its price is more than £ 30 with high customer rating . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum offers Indian food near the Yippee Noodle Bar in the city centre area . It is of a moderate price range with a customer rating of 1 out of 5 . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Japanese food restaurant called The Twenty Two yes has a children area . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||For high prices and average customer ratings come to The Vaults pub near to Café Adriatic \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a reasonably priced coffee shop called The Punter , it is located near to Café Sicilia . Families are welcome . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||If your looking for a cheap , average rated , Italian restaurant , you should go to Midsummer House . It is located near All Bar One . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||coffee shop called The Eagle is located in city centre , near Burger King . It serves average French food with price range less than £ 20 . It is not family - friendly place . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Come and eat at the family friendly restaurant , The Punter down at riverside near The Portland Arms . Feed the family for less than £ 20 . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is rated 5 out of 5 . It is located near All Bar One . They serve Japanese food and prices are cheap . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat serves 5 star Indian Cuisine by the riverside . Unfortunately , it is unsuitable for families . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children friendly coffee shop in riverside near Avalon . It has a high customer rating and a price range greater than £ 30 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||There is a coffee shop called The Cricketers near The Portland Arms that is not family friendly . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a family - friendly Called The Golden Curry that provide Italian food and has 5 out of 5 customer rating . the place is in the riverside near Café Rouge \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Serving English food , Loch Fyne is a friendly family styled restaurant . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||A family - friendly choice would be Strada . It offers higher priced fast food . The restaurant is near Rainbow Vegetarian Café . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||There is a riverside place that sells Fast food , The Phoenix , but it has a low customer rating . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House in riverside near Clare Hall offer Japanese food with less than £ 20 \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kids friendly pub serving English food . It is low rated as 1 out of 5 . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix provides high rating Fast food at £ 20 - 25 in riverside \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Zizzi is a non - children friendly coffee shop in the city centre with a high customer rating and a price range of £ 20 - 25 . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is located in riverside and is near All Bar One , prices range from £ 20 and below and is family friendly . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||There is a nice 1 star fair priced restaurant called Browns Cambridge . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||For French food that is averagely priced you could try the coffee shop Cotto . Prices are average and customers give it a rating of 3 out of 5 . You will find it by the river near The Portland Arms . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||There is a pub Wildwood that provides high - priced food . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||A kid friendly restaurant is the Travellers Rest Beefeater . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||If you 're looking for English food priced at less than £ 20 , come to The Dumpling Tree restaurant . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Located near The Portland Arms in the city centre is Cotto . It is a coffee shop that serves French food with a price range of less than £ 20 . It has a low customer rating . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||You can visit cheap Customer rated 3 out of 5 Italian food restaurant called The Phoenix in the riverside area . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a moderately priced child friendly fast food restaurant near The Bakers . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Blue Spice is a riverside venue with a low customer rating that is not family - friendly with a price range of less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a children friendly , fast food , and coffee shop near The Portland Arms with a customer rating of 1 out of 5 . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is Italian . It is located near Café Rouge , however has a low rating of only 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee shop is family friendly . It has a 3 star rating and offers higher pricing . It serves Italian food and is located near Café Sicilia . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : no | near : All Bar One||In the Riverside area is the fast food restaurant named Green Man offering a moderate price range ; it is located near All Bar One and is not kids friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel in the city centre is a coffee shop named Browns Cambridge . This coffee shop has a low customer rating ; is not family - friendly and specializes in fast food . \nname : The Golden Curry | food : Fast food | price : more than £ 30 | family friendly : yes | near : The Bakers||If you are looking for a fast food restaurant near The Bakers , The Golden Curry is children friendly . The price range is more than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Families welcome at Browns Cambridge , a highly rated coffee shop located on the river by Crowne Plaza Hotel . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry , is an Indian restaurant that has high customer ratings , and is kid - friendly . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is low priced and family oriented . It is in the City center . , close to All Bar One , and serves Japanese style food . \nname : The Phoenix | food : French | customer rating : average | area : city centre||The Phoenix is a French restaurant located in the city centre and has an average customer rating . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : yes||Alimentum serves expensive French food in the city centre . It is not child - friendly . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is restaurant near Café Adriatic in the city centre . Price range is 20 - 50 , and customers rate it 3 out of 5 stars \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Green Man is an Italian pub in the riverside area near to Café Rouge . One kid friendly , moderately priced fast food venue is The Wrestlers . It has a customer rating of 3 out of 5 . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly Pub serving Chinese food for under £ 20 . It is near Café Rouge . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a cheap pub located by the river . It serves American food . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that provides French food . It is Located in the city centre near the Crowne Plaza Hotel . Taste of Cambridge is not family - friendly . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||The Wildwood , near Ranch , is a French food coffee shop with a price range of more than £ 30 . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||Italian food can be found at Browns Cambridge . Prices range from £ 20 - 25 . Browns Cambridge has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves fast food . It is located near Burger King in the center of the city . It is not kid friendly . The price range is moderate and the customer rating is 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a Japanese restaurant called The Rice Boat in the city centre near Express by Holiday Inn . It will cost more than £ 30 and is children friendly , however it has a low customer rating . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two at Riverside , is child friendly and has an Italian menu . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall by the riverside with specific Italian that received 1 out of 5 star customer rating . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : no||There is a moderate - priced Indian restaurant called Loch Fyne that is not kids friendly . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Strada is a children friendly and rating 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : no | near : The Portland Arms||The Dumpling Tree is a Chinese pub located near The Portland Arms . It is not family friendly . \nname : The Punter | food : Chinese | price : more than £ 30||The Punter sells Chinese food , more than 30 price range \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : riverside||The Phoenix is a riverside restaurant that offers high priced Chinese food with an average customer rating .. \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : yes||A restaurant with moderate prices that kids say yes to would be Alimentum . It is a Fast food restaurant located in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop Taste of Cambridge serves French food and is kids friendly . It is in Riverside near Crown Plaza Hotel \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar there is a cheap Italian restaurant called Alimentum . It is situated near to the riverside , and its rating is 5 out of 5 . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge has a cheap price range with average customer ratings . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | near : Clare Hall||There is a Japanese coffee shop with a low customer rating called Clowns near Clare Hall in the city centre \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving Italian food on the riverside near The Portland Arms . It comes highly rated and the price range is around £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||With a low price range and a high customer rating , Cotto is a coffee shop is near The Portland Arms by the riverside in the City centre . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : riverside||The Phoenix serves cheap Indian food in the riverside area . It has an average customer rating . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||By the riverside there is a kid friendly pub Giraffe that provides French . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a moderately priced fast food restaurant with a customer rating of 1 out of 5 . Located in the city centre area near Yippee Noodle Bar . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside you can find a Japanese coffee shop of moderate price called The Wrestlers . They offer a child friendly environment and can be found near Raja Indian Cuisine . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Strada is a family friendly restaurant with a low customer rating . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar , in riverside , serves great French food . With 3 out of 5 customer ratings and excellent service , the above high price range is worth it . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum , at less than £ 20 , with English food , near Yippee Noodle Bar , at City Centre with a low customer rating . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||A pub that is not children friendly with a price range of more than 30lb with a customer rating of 5 out of 5 is Cocum . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue is a restaurant that offers breakfast . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly wine bar located at the centre of the city . Rated 1 out of 5 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is found near The Six Bells . It has a family friendly setting . \nname : Bibimbap House | food : Indian | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is in the city centre area near Clare Hall . It serves Indian food within a moderate price range . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||There is a family pub at riverside called The Olive Grove for Italian food . It charges less than £ 20 . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||For French cuisine , try the Cotto . It is located on the riverside , near The Portland Arms . It offers typical French fare with average prices . \nname : Strada | Type : pub | food : English | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada , is an English pub , near Yippee Noodle Bar , has a customer rating of 3 out of 5 . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Clowns pub is a three star , mid - priced pub located in the northern part of the city . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves English food near Café Rouge in riverside . It is not family - friendly and has a low customer rating . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A high priced , children friendly restaurant named Blue Spice has a rating of 3 out of 5 and is located on the river side . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop specializing in high priced Indian food . This establishment is not kid friendly and is rated 1 out of 5 . It is located in Riverside \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Come visit our new English Pub , Wildwood . We have moderate prices and a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle , cheap and family - friendly , is a coffee shop that serves Fast food . Near Burger King it is in the city centre . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly restaurant that serves Japanese food with a price range of more than £ 30 . Customers gives Strada a 5 out of 5 rating . It is located near Rainbow Vegetarian Café . \nname : Blue Spice | food : Italian | price : £ 20 - 25 | area : riverside||Blue Spice is an Italian venue on the riverside within the £ 20- £ 25 price range \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter has French food . It is a coffee shop that is not child friendly , has a more than £ 30 price range , but has a 5 out of 5 customer rating . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is a place near Café Sicilia that offers a high price product . The location is children friendly \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is a low rated Café that offers Indian food at a high price . Located in city centre . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace serves fast food at mid - range prices . It 's a highly - recommended coffee shop by the riverside . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||There is a coffee shop named Giraffe near The Bakers with price rang of £ 20 - 25 . It has a customer rating of 3 out of 5 and is kids friendly . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : low||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is low . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a moderately priced Chinese food restaurant . Located near The Bakers , this dining choice is not kid friendly . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is an all you can eat restaurant by The Bakers rated at one star , family friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | near : The Sorrento||There is a nice coffee shop in riverside , located near The Sorrento . Its called The Mill and they serve Fast food with a price Range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a high rated coffee shop found in the city centre near Burger King , that sells Indian food , with a price range of over £ 30 , not child friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Japanese food is served at the coffee shop called Cotto . Located in the city centre area near The Portland Arms , Cotto receives a high customer rating . The average cost of a meal is £ 20 - 25 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly Italian restaurant that serves Italian Food . They are located at the city centre near the Express by Holiday Inn . Their price range is cheap and their customer rating is 5 out of 5 . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||The fast food restaurant Green Man located on the riverside near All Bar One is children friendly but also has highly expensive food . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a cheaper restaurant near The Six Bells . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar , near the city centre is a fast food restaurant with price ranges of 20 - 25 euros has high customer ratings . \nname : The Phoenix | food : French | customer rating : low | area : city centre||The Phoenix serves French food at the city centre . It has low customer ratings . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is a somewhat pricey pub located in City centre that is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The French restaurant The Dumpling Tree cost more than £ 30 \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly , high rated , coffee shop with Fast food . It 's on the riverside by Burger King with a price range of about 30 Euros . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||A pub named The Giraffe serves French food in the riverside area . it is kid friendly . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a children free , high priced venue with a customer rating of 3 out of 5 near The Rice Boat in riverside . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman serves Italian food for an adult night out near the riverside . Lower than average ratings , but cheaply priced \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Italian food , family friendly , place named The Wrestlers , a cheap , with a customer rating 5 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry Indian restaurant in riverside has an average customer rating . It is near Café Rouge and is not family friendly . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||The family - friendly restaurant The Twenty Two , serves food at a price range less than 20 . It is located near The Rice Boat in the city centre and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop near Burger King in the city centre . It is family - friendly and has a customer rating of three out of five . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cotto is a Kid friendly venue serving Japanese food , it is rated 3 out of 5 and can be found near the Ranch . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a Chinese near to Express by Holiday Inn in the city centre called The Rice Boat . Its got a low rating but its family friendly . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||Located on the riverside , The Eagle , a low rated restaurant offers food for less than 20 . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a child friendly pub located in riverside with a low customer rating . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Children friendly restaurant Cocum has a 3 out of 5 customer rating . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||An expensive , five star , family friendly restaurant that serves sushi is The Waterman . It is located on the river in City centre . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Fast and cheap food for family Friendly located in Express by Holiday Inn . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||There 's a restaurant called The Dumpling Tree that has cheap Italian food . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child Friendly coffee shop serving Fast Food near Crowne Plaza Hotel by a riverside . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||With a low customer rating The Rice Boat has English food in riverside area . It is also family - Friendly \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||There is an expensive family friendly pub serving Italian food on the riverside called The Olive Grove . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is a non - family - friendly fast food restaurant with a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue is an amazing Italian restaurant , even if it 's rated low . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : no||The Wrestlers is a high priced English restaurant that customers rated average . It is not children friendly . \nname : The Rice Boat | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Kid friendly Indian restaurant , The Rice Boat has an average customer rating in Riverside . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill is a British pub with cheap prices . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry Japanese restaurant offers family friendly dining and is rated 5 out of 5 by its customers \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is an Italian child friendly coffee shop called Aromi which is located by the riverside and has a customer rating of 1 out of 5 \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap French restaurant with a top customer rating . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Green Man is a cheap venue in the riverside area , not recommended for children . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : city centre||The Mill is a cheap pub that serves French food and is located in the city centre . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a expensive , family restaurant with 1 star . It is located near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is located near Burger King in the center of the city . It is a coffee shop that serves French food . It is not family - friendly . The customer rating is low and the price range is less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee Shop located in Riverside near Crowne Plaza Hotel . The food that is served is Japanese . The setting is kid friendly , The customer Rating is a 3 - out of 5 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||For Japanese food there is The Waterman . It is moderately priced , family friendly and their customers have rated it highly . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Midsummer House is a burger bar near All Bar One . It 's rated three stars and is in the high price range . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a kid friendly English food place with a moderate price range that 's customer rating is a 3 out of 5 \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||There is a French family - friendly restaurant named Loch Fyne \nname : The Punter | food : Italian | price : high||The Italian restaurant ' The Punter ' has a high price range . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub in Riverside , with moderate prices . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The Italian restaurant called Loch Fyne is kid friendly . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a lovely Italian restaurant with a low price , this is a family friendly 3 star restaurant near to Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : less than £ 20||The Dumpling Tree is a low to moderately priced Indian restaurant . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman , is a family - friendly place , to find English food in Cambridge city centre . With low prices but low customer ratings . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a Chinese restaurant located in the riverside area . Meals are in the 20 - 25 pound range and it is kid friendly . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Customers rated Fitzbillies 5 out of 5 . It is near Express by Holiday Inn , and its price range is higher than £ 30 . It is not child - friendly . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||There is an expensive pub The Mill . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||In riverside , near The Rice Boat , is a Japanese food restaurant called Bibimbap House . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop offers low - cost Italian in a family - friendly environment . Located near Burger King . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is an upscale Italian pub . Come enjoy delicious fancy fare in this riverfront venue . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a family friendly restaurant with a less than £ 20 price range . Customer rating is low . They are located by Express by Holiday Inn . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 1 out of 5||The Cambridge Blue is a restaurant serving French food . It has received a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant . It has a customer rating of 1 out of 5 . It is kid friendly . It is located near Café Rouge . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Near the city centre there is a family fast food restaurant called The Waterman . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : riverside | near : Clare Hall||There 's a coffee shop by the riverside that does French food . It 's called Clowns and is near Clare Hall . It has an average customer rating . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a fast food restaurant in the riverside area near The Rice Boat . It has a low customer rating . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||A 5 out of 5 restaurant is Strada . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no||The adult coffee shop Aromi is in the city centre serves French food and has a low customer rating . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man eatery provides Japanese food in the moderate price range . It is located in the riverside area near All Bar One adults only \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice hires employees by the riverside and offers a pay of more than 30 . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||For a child friendly coffee shop that also serves fast food is The Punter . It is located near Café Sicilia and has higher prices with good customer ratings . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||coffee shop and Indian food , The Golden Palace , in Riverside . High customer rating , with a price range of more than £ 30 . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||The best selling super- market economic is Fitzbillies , located one block from The Six Bells . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an inexpensive , yet 5 - star , location offering typical American fare in a family friendly atmosphere near the river . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : no||Zizzi is not family - friendly pub customer rate as average . It serves Fast food . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a restaurant providing full meals in the average price range . It is located in the city centre . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||There is an Italian food venue near The Rice Boat named Loch Fyne . It is in the Riverside area and has a high customer rating . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix has a moderate price range and serves Italian food . It is in riverside and the customer rating is 3 out of 5 . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a restaurant serving healthy food in the medium price range . It has not received good reviews , nor is it family friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||This non kid friendly coffee shop called The Wrestlers , can be found near Raja Indian Cuisine in the city centre which offers Indian food at a high price range . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop , by Crowne Plaza Hotel , 3 star rating and is family friendly . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||In city centre The Waterman has high ratings serving fast food for £ 20 - 25 and is not child friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Zizzi is a pub which offers Chinese food . Its customer rating is 1 out of 5 and it is kids friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a low priced family coffee shop with average customer rating . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Indian restaurant located near Express by Holiday Inn in Riverside . It is not family friendly but has a great customer rating . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a highly rated French restaurant near All Bar One . Prices are in the £ 20 - 25 range . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||There is a French pub in the moderate price range with a customer rating of 1 out of 5 . It is called Wildwood . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is an Italian coffee shop located in city centre . It is highly rated by customers . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||The Mill , a French , riverside coffee shop , has a moderate price and is located near The Sorrento . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||A coffee shop serving Italian food for adults can be found on the riverside near Burger King . The Eagle has average ratings , and cheap prices \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant in the medium price range near All Bar One . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is located near the Rainbow Vegetarian Café offering a range of high quality and price fast food . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a cheap family friendly Fast food restaurant . It is located in the riverside area near All Bar One . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi has a low customer rating but are family friendly and is a pub located in the riverside area . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||Near Café Rouge you can visit family friendly place called The Plough . It serves cheap French food . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a family friendly restaurant that provides Japanese food . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is a poorly rated and expensive restaurant in the city centre . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : city centre | near : The Sorrento||With a high price range The Mill coffee shop is located in the city centre near The Sorrento . It features Indian food . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderate priced , child friendly coffee shop called The Wrestlers , that serves Indian food in the city centre near Raja Indian Cuisine . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Blue Spice in riverside has an average customer rating for a non - family - friendly restaurant priced less than £ 20 . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub located in the city centre that offers Japanese food and is family - friendly with a price range of less than £ 20 \nname : The Waterman | Type : pub | food : Chinese | customer rating : high | area : riverside||The Waterman is a highly rated pub that serves Chinese food by the riverside . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a French coffee shop near Café Sicilia with average price range and is not kid friendly \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is an expensive , family friendly Italian eatery located near The Bakers . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly Fast food join near the Rainbow Vegetarian Café with a less than £ 20 price range but with a low customer rating . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop has good ratings and offers a mid - priced menu . Located near Café Sicilia . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a family - friendly Japanese restaurant with superior ratings , located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving cheap fast food in the city centre . It is not family - friendly but has a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 3 out of 5 | area : riverside||The Waterman pub located at the riverside has Chinese food and a customer rating 3 out of 5 . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is a French pub in the riverside offering meals for less than £ 20 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop in the city centre providing Italian food but has low customer rating . \nname : The Phoenix | food : Indian | customer rating : low | area : riverside||The Phoenix has Indian food in riverside \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man is a moderately priced area in the riverside that is kids friendly . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge is a moderately priced restaurant with an average 1 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop in the city centre with Japanese food . It is family - friendly with a low customer rating . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is a child friendly French restaurant . It has a price range of over £ 30 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||In the City Centre near Clare Hall , the Italian coffee Shop , Clowns , is a customer favourite with a 5 out of 5 rating . \nname : The Vaults | food : Japanese | price : high | family friendly : yes||The expensive Japanese restaurant called The Vaults is child friendly \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a one star restaurant near the Yippee Noodle Bar \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia with a low customer rating . At prices greater than £ 30 , it serves French cuisine in a children - friendly environment . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man for good value family friendly meals . Close by All Bar One and the city centre . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : no||Highly rated Zizzi is a pub serving Chinese food . It is not suitable for children . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge serves Indian food . It is family friendly . It is located in the city centre near The Sorrento . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a local coffee shop located on the outskirts of the city . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is kid friendly and has moderate pricing . Their customer rating is 1 out of 5 . They are located in the riverside area near The Rice Boat . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In riverside there is a child friendly place with a 5 out of 5 customer rating called The Rice Boat . It has French food . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||A restaurant located by Café Rouge called Wildwood was rated 3 out of 5 by customers . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi , a kid friendly pub located near Riverside , had high customer ratings . \nname : Loch Fyne | food : Japanese | customer rating : average | area : city centre | near : The Rice Boat||Located near The Rice Boat in the city centre , Loch Fyne has average Japanese food . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||Located along the riverside , The Waterman is a pub serving English food . Customer rating is average . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Midsummer House has a three - star rating and offers sushi . It is located near Café Rouge . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant , providing Italian food , near Rainbow Vegetarian Café , with a average customer rating , and it 's Family Friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is an expensive , exclusive French - style coffee shop in the riverside . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Family friendly Cocum is a restaurant with a low customer rating \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Green Man is an Italian pub near Café Rouge on the riverside . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serving Indian food with a moderate price range is a good standard located in the city centre near Express by Holiday Inn . But is not kid friendly . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is located near the Yippee Noodle Bar in riverside . Food is less than £ 20 and it has a low customer rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : city centre||The Waterman is a low - rated pub in the city center that serves Chinese food . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : no||The Golden Curry sells Japanese food . Its customer rating is average and it 's not family - friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||There is an expensive children friendly pub The Olive Grove located by the riverside that provides Japanese . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a high - priced , 3 - star restaurant beside Yippee Noodle Bar . It is located at the north of city centre at the river . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||There is a Chinese food place , Browns Cambridge , that is riverside near The Sorrento and it 's family friendly . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a no family - friendly pub providing French food in the cheap price range . It is located near Café Rouge . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Blue Spice is an inexpensive restaurant for adults . It 's located near the river . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The coffee shop , Taste of Cambridge in the city centre near Crowne Plaza Hotel serves some Indian dishes . It 's adults only but . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : city centre | near : Café Sicilia||The pub called The Twenty Two in the city centre near Café Sicilia that has a 5 out of 5 customer rating . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : yes | near : All Bar One||All Bar One is neighbor to a new , kid - friendly fast - food joint called Green Man . Green Man is an expensive dining choice in city centre . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly Italian restaurant in the riverside area . It is in the cheap price range and has a 5 out of 5 customer rating . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a adult fast food place with an average rating and a cheap price range . It is located in Riverside near Express by Holiday Inn \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||There is a cheap coffee shop named Cocum that has Italian food and offers a family friendly environment . It also has an average customer rating . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : no||Alimentum offers moderately priced fast food in the riverside area and is not considered kid friendly . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a high customer rating with the price range more than £ 30 and is located in the city centre near Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a high - end coffee shop located just off the river . It serves a variety of foods . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a good family friendly pub in the more expensive price range . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||There is a moderately priced coffee shop called The Golden Palace , located in the centre of the city that provides fast food . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||There is an Italian pub called the Giraffe that is located at Riverside and no need to worry , it is kid friendly . \nname : Loch Fyne | food : Italian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne located at the city centre near The Rice Boat is an average rated Italian restaurant . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a riverside pub that serves Italian food at moderate prices . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice is a mid - priced restaurant that serves breakfast . \nname : The Vaults | food : French | price : moderate | family friendly : no||The Vaults is a restaurant offering food and drink . It is mid - priced and is not family friendly . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House serves fast foods by the riverside at low prices . It is found near the Clare Hall . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada has a price range of more than £ 30 . It is kid friendly with a rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : city centre||Near the city centre is a lovely French pub , The Waterman . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a highly rated Indian restaurant in the city centre . They are not a child friendly venue and menu prices are over £ 30 . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||In city centre the English food restaurant named The Rice Boat offers a high customer rating service with price range of £ 20 - 25 ; it is not kids friendly and located near the Express by Holiday Inn . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a highly rated Indian restaurant by the river , near the Express by Holiday Inn . It 's called The Rice Boat and costs over £ 30 . Child friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||For moderately priced Italian food , The Punter is a quiet coffee shop near Café Sicilia . Three out of five diners give it good reviews . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is an Indian restaurant with 5 out of 5 rating located in the city centre . It is family friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes||Cocum is an inexpensive coffee shop serving Indian cuisine . It is family friendly and has an average customer rating . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||Wildwood pub is an Italian restaurant rated at 1 star . \nname : The Cambridge Blue | Type : pub | food : English | price : more than £ 30 | near : Café Brazil||The Cambridge blue serves English food and is near Café Brazil , prices range from more than £ 30 . The Cambridge Blue is a pub . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A family - friendly Japanese coffee shop called Browns Cambridge , average according to customers , can be found near the Crowne Plaza Hotel in the city centre . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop that is rated one star . It is very cheap , and is located close to the The Portland Arms . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre||in the city centre there is a pub which serves English food in the less than £ 20 price range called The Mill \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : high||High rated French food in restaurant The Cambridge Blue . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly fast food restaurant of poor quality with moderate prices , found in the park near the river . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a Fast food pub restaurant located in the city centre . They are not family - friendly with price ranging less than 20 . \nname : Loch Fyne | food : French | customer rating : low | area : city centre | near : The Rice Boat||In the city center , near The Rice Boat , there is a low rating French restaurant named Loch Fyne . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace serves as a coffee shop and Indian food restaurant in the Riverside area , it 's customer ratings are low and its price range is less than £ 20 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Waterman is a fast - food pub located in Riverside . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is rated low , child friendly and priced high . It is located in the city center near Express by Holiday Inn and serves fast food . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving French food , located riverside near Crowne Plaza Hotel and is child - friendly . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice is a low - cost family - friendly restaurant in the city centre , rated 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers is a fast - food restaurant near All Bar One . \nname : Midsummer House | food : Indian | price : cheap | customer rating : average | near : All Bar One||Midsummer House is near All Bar One and is a cheap Indian restaurant . The restaurant has average customer ratings . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese sushi bar ranked 3 stars , near Yippee Noodle Bar . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 5 star family place across from Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||In Riverside , near Café Sicilia , there is a coffee shop called The Dumpling Tree that is family friendly and in the cheap price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||You can order French food at a cheap coffee shop in the city centre . It is called Fitzbillies , is family - friendly and has a 5 out of 5 customer rating . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||For high price Chinese food in the city centre , go to The Phoenix . You will get your meal for more than thirty dollars . Luckily the customer rating is high . This means it must be worth the dine - in experience . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||Located in the riverside area near The Portland Arms , The Punter is kid friendly and moderately priced . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto , a moderately rated coffee shop , is located near The Portland Arms in riverside . It serves Indian food for a moderate price . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||The Chinese place called Browns Cambridge is a family friendly place located in riverside near The Sorrento . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two serves fast - food . It is also child - friendly . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two restaurant is located over on riverside . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is a children friendly restaurant that offers English style food on the higher price range . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||Giraffe is a pub not suitable for families , however sells a delicious sushi . \nname : Cotto | price : moderate | area : city centre | near : All Bar One||Cotto has a moderate price range and is located in city centre near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||In the city centre a coffee shop called Fitzbillies also serve Italian food price ranging cheap with an average customer rating is a none family - friendly place . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||Japanese food can be found at The Golden Curry . It is not family - friendly and has a low customer rating . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||Wildwood pub is expensive and serves reasonably good food . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||The coffee shop named Cotto also provides fast food at a price range less than £ 20 . It is near The Portland Arms in the city centre . It has a low customer rating . \nname : The Golden Curry | food : French | customer rating : average | family friendly : no||The Golden Curry is French food serving place that is not family - friendly and has an average customer rating . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Low - priced English food is served at Fitzbillies . It is located near The Six Bells . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||Don 't miss Wildwood , a moderately priced three - star pub , that is sure to please . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Italian Blue Spice is cheap and by riverside . \nname : Bibimbap House | food : Indian | price : moderate | area : city centre | near : Clare Hall||Bibimbap House has moderate prices for their Indian food . They are located int he middle of the city near Clare Hall . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||At the centre of the city there 's a really cheap coffee shop named The Punter coffee shop across from the Café Sicilia . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a Japanese coffee shop that is child friendly near The Portland Arms . It 's called The Cricketers and got a 5 out of 5 customer rating . \nname : Aromi | Type : restaurant | food : Japanese | area : city centre||If you are looking for a Japanese restaurant in the city centre you could try the Aromi \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap , three - star coffee shop for families . It serves pasta and is located near a river . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry close to Café Rouge also at riverside is kids - friendly Italian food restaurant rated 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , a coffee shop located near the Crowne Plaza Hotel in the city centre , serves Japanese food and has a customer rating of 5 out of 5 . However , it is not recommended for families . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is an Italian restaurant , located by the river , with a 5 out of 5 customer rating . Children are not permitted . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||Located near the riverside , is an Indian restaurant with an average customer rating called The Waterman . The restaurant is low - priced and not family - friendly . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove pub in the riverside area has a cheap price range . It serves English food and is family friendly . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||The high priced Fast food establishment called Midsummer House is located near All Bar One . It has an average customer rating . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||The Vaults pub has a price range of more than £ 30 . It is near Café Adriatic . . The customer rating is low . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a kid - friendly restaurant serving fast food . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge is an Italian restaurant with a price range of less than £ 20 . It has a low customer rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum , a Japanese restaurant which offers menu items that range less than £ 20 . It is located near Yippee Noodle Bar , in the riverside area . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Zizzi is a kid - friendly coffee shop in city centre with high customer ratings and a price range of £ 20 - 25 \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a restaurant providing French food near Crowne Plaza Hotel riverside area . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||A highly rated place , The Eagle , can be found in the riverside area . It has a higher than average price range . \nname : Midsummer House | food : English | customer rating : 3 out of 5 | near : Café Rouge||Located near the Café Rouge , Midsummer House has a customer rating of 3 out 5 and serves English food . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub with a high price range . It is a family restaurant that specializes in Italian food . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||There is a cheap restaurant Blue Spice located in the centre of the city that provides low price food . \nname : Cotto | food : Japanese | customer rating : high | family friendly : yes | near : Ranch||The Cotto is near the Ranch and has a high customer rating . It serves Japanese food and caters to kids . \nname : The Plough | Type : pub | food : Indian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Average priced Indian food that is also kid friendly can be found at The Plough by Café Rouge . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Quality French food is available from The Waterman in the riverside area , best suited for couples . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : no||The Twenty Two is a low - priced restaurant in the city centre that delivers take - away . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a 1 out of 5 rated , high priced , yet child friendly coffee shop within the riverside . \nname : Loch Fyne | Type : restaurant | food : English | price : £ 20 - 25 | family friendly : yes||Kid - friendly Loch Fyne offers English food from £ 20 - 25 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves Japanese food , and is situated near Raja Indian Cuisine , in the riverside area . It is a kid friendly coffee shop with a price range of £ 20 - £ 25 . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||There 's a family friendly pub serving Chinese food called The Olive Grove . The price range is under £ 20 and it 's in the city centre . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no||Giraffe is an adult only Fast food pub located city center . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||At the riverside there is a moderately priced restaurant called Zizzis . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap restaurant located next to Yippee Noodle Bar . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||A children friendly , French restaurant , located along the riverside , is Alimentum , with a price range over 30 euros . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||French food at The Cricketers coffee shop has a low customer rating . It is not family - friendly and is near The Portland Arms . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||The Eagle has low prices with a high customer rating located in riverside . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||The Wildwood is a Japanese pub that gets a 3 out of 5 customer rating . It charges between £ 20 and £ 25 . \nname : Blue Spice | food : English | price : high | area : riverside||Blue Spice is an expensive restaurant located in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Japanese coffee shop , The Wrestlers is located in the city centre near Raja Indian Cuisine . It has a price range of less than £ 20 and is not family - friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : city centre||The Waterman is a great popular pub in a city centre , with nice Japanese cousin . \nname : The Punter | food : French | price : less than £ 20||There is a low - priced restaurant called The Punter . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter has a less that £ 20 price rating and serves Japanese food \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is a Japanese eatery located in the city centre near Clare Hall . Their price range is less than £ 20 . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House serves English food by the riverside for under £ 20 . It is located near to Clare Hall . \nname : Alimentum | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is an Indian restaurant that provides food for more than £ 30 in a children friendly atmosphere . It is located in Riverside . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||Strada is an Italian pub and is rated high by customers . It is near Yippee Noodle Bar . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Phoenix in the city centre offers Japanese food for more than £ 30 and has a 5 out of 5 customer rating . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man has prices in the range of 20 - 25 English sterling . It is kid friendly in the riverside area . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located at the city centre near the Express by Holiday Inn . It is not a child friendly establishment . They serve Italian food with a 3 out of 5 star rating . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a five star restaurant in the mid price range . It is close to the Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop , serving Indian food , prices from £ 30 , riverside area , child friendly , high customer ratings \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a pub that provides Chinese food in the moderate price range . It is near Café Rouge . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a cheap Italian eatery called The Wrestlers which has a 5 out of 5 rating . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||With a family friendly service The Golden Curry near Café Rouge serves Japanese food in riverside \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is family friendly and located in the riverside area rated 5 out of 5 prices more than 30 euros . \nname : The Wrestlers | Type : coffee shop | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine in Riverside that serves expensive French food . It is children friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter , near Café Sicilia , provides low - cost fast food in a coffee shop setting . Its customer rating is 5 out of 5 . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a low - priced French food restaurant that offers a family friendly environment . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||In Riverside there is a restaurant named The Golden Palace with a 3 out of 5 customer rating . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Alimentum located by the river . It serves French food and is not family - friendly . The price range is less than £ 20 . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers has Japanese food , low customer ratings , moderate prices , and is kid friendly . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat serves fast food in the city centre . It is not family - friendly , and has a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves French food . it has a high price range and is located near The Sorrento in riverside . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Customers give The Cricketers a rating of 1 out of 5 . The Cricketers is a kid friendly pub by the Ranch . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a mid - priced venue on the riverside , near Café Adriatic . It has an average customer rating . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced establishment serving Italian food . It is located in the city centre and is not child - friendly . The Waterman has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge offers fast food . It is family friendly . It is located near the riverside and The Sorrento . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge serves inexpensive but high quality food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop provides low cost refreshments and light meal options . It is located on the outskirts of town , and is family friendly . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Wildwood is a pub in the city centre that serves fast food . Its prices are average and its customer rating is one star . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||A restaurant that is family friendly and serves French food named Loch Fyne with a price as low as L30 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||There is a low price coffee shop The Punter located close to the Café Sicilia that provides family - style dining . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is near The Rice Boat . It is by the riverside and is children friendly . It has average customer rating . The price range is high . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Cocum coffee shop serves Indian food at a moderate price range . It is kid friendly and has a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with a low customer rating . It is not family friendly and serves Indian food near the Crowne Plaza Hotel in the city Centre . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : no||The Rice Boat serves Italian food in the city centre . It is not family - friendly and has an average customer rating . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||In the riverside is located The Waterman that offers Italian food with a price range between £ 20 - 25 . It has high customer rating and there is no kids area . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||The pub Clowns in riverside with a price range of more than £ 30 , is rated high for customer ratings . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee Shop , average costumer rating , providing French . Located in riverside near Crowne Plaza Hotel . \nname : Blue Spice | food : Fast food | price : cheap | area : riverside||Blue Spice is a cheap Fast Food restaurant in the riverside area . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe is a pub located in Riverside , it serves Chinese food .children are welcome . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||For a moderate price , try 3 - star rated Wildwood pub which serves a variety of food and wine . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||There is a restaurant beside The Rice Boat , Loch Fyne , that provides high quality foods . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : no||The Indian restaurant The Golden Curry serves Indian food . The customers gives it an average rating and it is not family friendly . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge is a restaurant providing French food in the high price range . Customers have rated it average . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||You can find French food for £ 20 - 25 at Browns Cambridge . Customers rate it highly . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||There is a cheap family friendly Café with average ratings in the riverside area near The Rice Boat called The Twenty Two . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Eagle has a beginning price point of £ 30 and a 5 out of 5 customer rating . It is located in the city centre . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a French coffee shop with a kids friendly environment and a 3 out of 5 rating . It is located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop named Cotto that serves French food near The Portland Arms with a moderate price range and a 1 out of 5 rating located riverside . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||Café Sicilia , near The Dumpling Tree , is an low priced riverside coffee shop that is family friendly . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||Taste of Cambridge restaurant has above average prices and below average customer ratings . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House offers moderately priced cuisine in a riverside setting , in close proximity to Clare Hall . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a family friendly restaurant , specialising in Italian food . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is Italian food priced under £ 20 . It is located in the centre of the city and is not child friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum provides 1 - Star sushi at a premium . Along the riverfront , it rests on scenic locale beside Yippee Noodle Bar . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a poor rated restaurant that sells spaghetti \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Located near The Portland Arms in the city centre is a Japanese coffee shop called Cotto . Food ranges more than L30 and its rating is low . \nname : The Vaults | Type : restaurant | food : Italian||If you are looking for a restaurant that serves Italian cuisine , The Vaults is what you are looking for . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop in riverside near Crowne Plaza Hotel . It is not family - friendly and has a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub with average priced Chinese food near Café Brazil . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : city centre||The Phoenix is located in the city centre with an average customer rating . They have French food with price range less than 20 . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||Children are not allowed at the expensive but low rated Indian coffee shop called Cocum . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||The customer rating for The Cambridge Blue restaurant is 5 out of 5 \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||Located in the riverside area The Waterman is an average customer rating Italian restaurant which is not child friendly \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two near The Rice Boat in city center is rated high with a price range £ 20 - 25 but not kids friendly . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a poor rated cheap restaurant The Rice Boat that offers French food in the city centre by Express by Holiday Inn . It is not family - friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high - priced restaurant in the city centre near Express by Holiday Inn that serves Indian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop offering Italian food , located in the city centre . \nname : The Twenty Two | food : Chinese | family friendly : no||The Twenty Two is a Chinese restaurant . Not family friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree is a restaurant that provides French food . It has a price range of over £ 30 . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is a high price ranged restaurant serving English food and is also child friendly . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House has a price range of less than £ 20 that offers Fast food near Clare Hall in the riverside area . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Riversides The Waterman is rated 5 out of 5 rated Italian food , with cheap prices , and a family friendly atmosphere . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a Japanese coffee shop Taste of Cambridge located in riverside near Crowne Plaza Hotel . Not family - friendly . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada is a one - star venue in the mid price range that is not appropriate for families . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop located on the riverside is child friendly and offers Indian cuisine at a high price . Average customer rating . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a cheap Japanese restaurant . It is not family - friendly and has low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a low customer rated coffee shop offering Japanese food in the city centre . Yes , it is child friendly , but the price range is more than £ 30 . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a French restaurant in the riverside near All Bar One that is family friendly with a price range of less than £ 20 . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : no||In the center . of the city is a pub that serves Chinese Food . The Giraffe is not a family friendly dining choice . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||There is an establishment serving moderately priced English food Bibimbap House , on the riverside near Clare Hall . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||Wildwood is a low priced pub with a low rating . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House serves Japanese food and has a price range of more than £ 30 . It is near All Bar One and is highly rated by customers with a score of 5 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 1 out of 5||The Cambridge Blue is a Chinese restaurant with a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||If your looking for French pub type atmosphere near the riverside try The Mill . It has average prices . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Near The Rice Boat , there is a restaurant called Loch Fyne that sells Italian food and has a high customer rating . It is near the riverside . \nname : Loch Fyne | food : Japanese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is located in the city centre near to the Japanese restaurant , The Rice Boat . It has an average customer rating . \nname : Fitzbillies | food : Fast food | price : cheap | near : The Six Bells||Near The Six Bells is Fitzbillies : a cheap Fast food joint . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub located in the riverside area . It is not a kid friendly establishment . It is moderately priced . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop offering French food located in the city centre near The Portland Arms . It is highly priced with customers rating it a 3 . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||Riverside has a place for Indian food called The Phoenix . The price range is less than £ 20 , but the overall rating is low . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||To experience Italian food with children friendly dining , visit The Waterman restaurant , located near Crowne Plaza Hotel . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a family restaurant with a one out of five star rating \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies is a moderately prices Italian , located in the city centre , close to The Six Bells . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is a family friendly restaurant in the riverside area providing food for less than 20 pounds . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is located in the City Centre and serves English food costing less than £ 20 . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Cocum has a perfect customer rating of 5 out of 5 for its cheap Indian food . The Cocum is a coffee shop which is not family friendly . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap coffee shop with 5 out of 5 rating . It is near Avalon and the riverside area , and is family friendly . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two offers Japanese food and is kid friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee Shop providing Fast food . It is located in riverside area near The Portland Arms . High price range and 1 out of 5 costumer rating . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a high customer rated children friendly coffee shop near Café Sicilia , serving English Cuisine at a price range of more than £ 30 . \nname : Cotto | food : English | customer rating : low | family friendly : yes | near : Ranch||Cotto is near Ranch that has English food that is a low customer rating and family friendly \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||Seen as a 5 out of 5 stars restaurant is along the riverside , known as The Golden Palace . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry serves French food . The customer rating is low and it is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near Burger King . Its customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a Japanese restaurant with a rating of 3 out of 5 . They are child friendly and high in priced . The Punter is located near the coffee shop Café Sicilia . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge has family friendly Japanese food . It is located in riverside near The Sorrento \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is an average price restaurant that serves Italian food . They are in riverside and they have average customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop located near riverside . It is not family friendly . It has a moderate price range and a 3 out 0f 5 customer rating . They serve Indian food . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the riverside area near The Rice Boat with the price range of £ 20 - 25 , a 3 out of 5 customer rating and is kid friendly . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||Rated five out of five , Browns Cambridge is a cheap Italian restaurant . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||A slightly higher than average priced pub , that gets a good customer rating and serves Fast food is Wildwood . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant located in the city centre near Yippee Noodle Bar . It is high priced with a customer rating of 3 . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced child friendly restaurant serving English food . This restaurant is located near Express by Holiday Inn and receives a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter can be found near Café Sicilia . It is a high - priced , child - friendly coffee shop that serves Italian food . It was rated average by customers . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly restaurant with a 5 out of 5 rating . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||coffee shop in the city centre called Zizzi is a child friendly . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||The Waterman is a one star rated pub north of the City centre . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Wildwood pub is in the price range of more than £ 30 . It has a low customer rating and serves Japanese food . \nname : The Punter | food : French | price : less than £ 20||Visit The Punter for inexpensive French dining . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 3 - star sushi restaurant located near the city centre near Express by Holiday Inn . \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||Midsummer House is a 1 star , family friendly coffee shop providing Traditional British food , it its in the low priced market . It is located close to Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue serves pub food at a high - ranged price . It is located near of Café Brazil . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine , by the river , The Wrestlers offers a child friendly environment , prices over £ 30 , and French food and coffee . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||In the riverside area , the coffee shop Aromi , serves Italian food , has a customer rating of 1 out of 5 , and is kids friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||There is a family - friendly sushi restaurant called Alimentum located on the River . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a burger joint that is cheap as well as family friendly \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is not kid friendly . It has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||There is a family friendly restaurant called The Golden Curry . \nname : The Olive Grove | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a pub in riverside that serves Chinese food for about £ 20 - 25 and is children friendly . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre near Express by Holiday Inn , The Rice Boat , serving high priced Italian food , has an average customer rating and a non child friendly atmosphere . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall , there is a coffee shop called Clowns . It is located on the riverside and has a rating of 3 out of 5 . It serves Fast food . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||The Wildwood is a restaurant near Café Rouge . It has a high customer rating . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||A moderately priced 5 star French restaurant is Browns Cambridge . \nname : Browns Cambridge | food : English | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly English restaurant near The Sorrento in the city centre , \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||French restaurant , The Rice Boat , offers stunning French cuisine in a riverside setting . Can be found near Express by Holiday Inn \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is an expensive restaurant Strada located near Rainbow Vegetarian Café that provides Italian food . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is an expensive Japanese coffee shop in the city centre , close to The Portland Arms , with a customer rating 3 out of 5 \nname : The Vaults | food : Chinese | price : £ 20 - 25 | family friendly : yes||The Vaults is a Chinese restaurant with moderate prices . Kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge in riverside is a kids friendly , Fast food coffee shop . It is located near Crowne Plaza Hotel . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is a place in riverside near All Bar One that has prices ranging from £ 20 - 25 . \nname : Strada | Type : pub | food : English | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a bar serving English sustenance close by Yippee Noodle Bar and has a fantastic client rating . \nname : The Twenty Two | food : Fast food | family friendly : yes||Families are welcome at The Twenty Two , a fast food restaurant . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is a Chinese bar at a river side . It is a high price bar and near All Bar One . No children friendly . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||Near Café Sicilia by the riverside , is a pub with a high customer rating named The Twenty Two . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||The Phoenix is an expensive Italian restaurant that has fairly good reviews . \nname : Bibimbap House | food : Italian | price : more than £ 30 | area : riverside | near : Clare Hall||The restaurant is in the 30 pound price range . The Bibimbap House is an Italian restaurant near Clare Hall in the riverside area . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||Zizzi is a family - friendly restaurant . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||There is a restaurant The Dumpling Tree with a price range of between £ 20 - 25 serving Japanese food \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a cheap , high rated , family friendly fast food joint . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is 3 of 5 star and an expensive destination offering food and beverage . It is near All Bar One . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : average||Wildwood is a pub providing Indian food in the cheap price range . Its customer rating is average . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In Riverside , there is a French coffee shop called Aromi . It is children friendly and has a customer rating of 3 out of 5 . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||Although it has a high customer rating and serves reasonably priced English food , The Wrestlers does not welcome children . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a one star coffee shop Fitzbillies in city centre that is not family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Dumpling Tree is a reasonably - priced Italian restaurant . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is family oriented and serves fine drinks and food . It is located near the Rainbow Vegetarian Café . It is low priced and rated five stars . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : yes | near : The Sorrento||family - friendly pub called the Taste of Cambridge which is located in the city centre near The Sorrento \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||Wildwood is a moderately priced pub that serves French food . It has a 1 out of 5 rating . \nname : Alimentum | food : English | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum located in city centre near the Yippee Noodle Bar with average customer rating serves English food in the high price range . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix , restaurant of Italian food located in city centre \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : riverside||The Mill is a pub in the riverside area . It serves Indian food for less than £ 20 . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in riverside is family friendly , offers cheap fast food and has average customer rating . \nname : The Olive Grove | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a child friendly Pub in the riverside area . The Olive Grove serves English food and their average price is more than £ 30 . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : yes||Child friendly The Twenty Two is located in the city centre providing Fast food . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high priced fast food restaurant that is children friendly and located near The Bakers . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||A family friendly pub , which has a low customer rating in the riverside area , is Aromi . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located on the riverside , near Express by Holiday Inn . It provides English food , with high customer ratings at a high price range . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located near Café Sicilia that provides many fine foods in a family friendly setting . It is very expensive , and very classy . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||breakfast plates at the family friendly eatery The Wrestlers . \nname : The Punter | food : Chinese | price : moderate||The Punter offers moderately priced Chinese food . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The Cotto coffee shop is located in the city centre near The Portland Arms . It offers high priced fast food and has a 1 star rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||A fast food coffee shop with moderate prices and a customer rating of 1 out of 5 The Punter is near Café Sicilia but is not kid friendly . \nname : The Phoenix | food : English | customer rating : low | area : riverside||The Phoenix restaurant has a stunning view of the river . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a moderate priced Chinese restaurant located near All Bar One . Customer rating 3 out of 5 . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub at the riverside with a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||Come to The Wrestlers for a highly rated Italian meal . Children are welcome . Meals start at £ 30 . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||The Cotto is a French coffee shop located in the city centre near The Portland Arms that has a perfect customer rating and over average prices \nname : Strada | Type : restaurant | customer rating : low||A low - rated restaurant is Strada . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||A pub with Chinese food is Zizzi with an average rating \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | near : Clare Hall||Want some Japanese coffee ship food , come to Clowns . We have a high rating , we 're next to the riverside , what 's not to enjoy . Located near Clare Hall . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a non family friendly coffee shop that serves Indian food , located in the city center near the Crowne Plaza Hotel . It 's customer rating is low . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop with high prices and a five star rating . It is located near Avalon . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a coffee shop serving Japanese food at low cost . It is family friendly and has an average customer rating . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||Clowns coffee shop is in Cambridge . Clowns coffee shop is near Clare Hall . Clowns coffee shop has a one star rating . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood is a pub that provides Italian food with a cheap price range and a customer rating 5 out of 5 . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Green Man is a pub near Café Rouge in Riverside that serves fast food type entrees \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||A kid friendly Fast food restaurant is Loch Fyne . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : city centre||The Phoenix provides Indian food in the city centre . It has a customer rating of 5 out of 5 . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||The Vaults near Café Adriatic is a pub , with an average customer Rating and a high price Range . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace coffee shop great quality low price riverfront \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a cheap , family friendly place with average ratings and also near Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||The Golden Palace coffee shop is ready to server some of the best coffee in the city . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is a store The Phoenix that provide an average - priced assorted wines and snacks . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : high||There is a highly rated Japanese restaurant called The Cambridge Blue . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is an expensive family dine in restaurant with bad reviews . \nname : The Golden Curry | food : English | price : high | family friendly : no | near : The Bakers||The Golden Curry is a restaurant near The Bakers with a high price range that serves English food and isn 't children friendly . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe coffee shop has a moderate cost with a 3 out of 5 star rating . They are family friendly and located near The Bakers . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||The Midsummer House is located next to the All Bar One and the restaurant provides wine and cheese for a low cost . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||A cheap place , that takes kids , is the Giraffe coffee shop , near The Bakers . People really like it . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||For expensive Italian food there is Wildwood coffee shop . It is close to Ranch and has been rated 1 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||family - friendly coffee shop Aromi is located in city centre and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , close to The Sorrento has a family atmosphere and French cuisine . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Vaults is a family friendly and well priced restaurant serving Italian food . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||There is a fast food restaurant in the city centre called , The Golden Curry . While it has an average customer rating it is family - friendly and is located near Café Rouge . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||For family friendly eating , located near Rainbow Vegetarian Café is The Strada restaurant . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge is a high priced British restaurant in the city centre with a three of five star rating . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||near The Bakers is a kids friendly moderate price English restaurant called The Golden Curry . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is an Italian restaurant located near the coffee shop called The Portland Arms . They have a 3 out of 5 rating and are kid friendly . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a fine dining pasta restaurant providing a calm evening . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no||A moderate priced pub located in the city center not kid friendly , The Olive Grove serves Indian foods . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is an English food restaurant that is highly priced and with a poor rating of 1 out 5 by customers . It is located in the center of the city . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two , located in the City centre , offers variety to individuals . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop located in Avalon , riverside . Children - friendly . Customer rating is 1 out of 5 . High price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop in the centre of the city . It offers French food with price range less than £ 20 . Its customer rating is low . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||There is a coffee shop near Café Sicilia called The Punter . I has a high rating and it is kid friendly . They serve Indian food that ranges from £ 20 - 25 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Nearby the city centre and the restaurant The Rice Boat , The Twenty Two is moderately priced , rated three stars , and is family friendly . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Next to Ranch is Wildwood is an expensive coffee shop serving high quality food . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a 1 star restaurant located near the Yippee Noodle Bar . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice is located in the city centre . It is children friendly , has a 5 out of 5 customer rating , and a price range of more than 30 pounds . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee Shop It provides fast foods at a reduced price and is located near the river , there The Portland Arms \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a high customer service and good price range Indian restaurant in city center \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree an English high priced restaurant . \nname : Cotto | food : Chinese | customer rating : low | family friendly : yes | near : Ranch||A family friendly Chinese restaurant near Ranch with a low rating is Cotto . \nname : The Punter | food : French | price : more than £ 30||The Punter is a French restaurant . It has a high price range . \nname : The Mill | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is an Italian coffee shop near riverside and The Sorrento with a price range of more than 30 Euros . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a family friendly coffee shop , serves Japanese food . It is located near Crowne Plaza Hotel in the riverside area and has an average customer rating . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||For a French restaurant in the city centre with a customer rating of 3 out of 5 and a high price range then visit Alimentum near to Yippee Noodle Bar . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is located by riverside . A child - friendly with a price range of high and a customer rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kid - friendly Japanese pub rated 1 out of 5 \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||A restaurant which serves French food is The Golden Curry . It is located in the riverside area , not far from Café Rouge . It is not family - friendly unfortunately and the average customer rating is low . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill pub is located just outside of the city centre and offers low prices . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a Fast food place near The Sorrento in riverside . It 's children friendly . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a restaurant with a price range less than £ 20 and is near The Six Bells . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge has a low customer rating and its price range is less than £ 20 . \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||Browns Cambridge has a customer rating of 1 out of 5 and is within the high price range \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop with Italian food located in the city centre . It has a customer rating 3 out of 5 with moderate price range . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the riverside area , you 'll find The Waterman . It 's a Japanese , children friendly , restaurant . It has very good ratings and a higher price range . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar is a French restaurant named Alimentum . It is in the city centre area and has a high customer rating . The price range is 20 - 25 . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||A 5 star rated English pub Zizzi with a family friendly environment \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||Located near The Rice Boat in the riverside area , Loch Fyne offers fast food , and has a high customer rating . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a cheap Fast food restaurant at Riverside that is highly rated and child friendly . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||The Midsummer House near Café Rouge has a customer rating of five out of five for its fast food . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is located in city centre near Café Rouge which provides English food . Its customer rating is average and is not family - friendly . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||With a high price range Browns Cambridge offers food even with a low customer rating \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the city centre close to the Express by Holiday Inn . The restaurant is in the high price range and only considered to be of average quality by it 's customers . It is not considered a child friendly place to eat . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a very good fairly inexpensive coffee shop that offers wine and cheese located next to the Burger King called The Eagle . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a family friendly pub , rated one star . \nname : Fitzbillies | food : Chinese | price : cheap | near : The Six Bells||Fitzbillies provides Chinese food in the cheap price range . It is near The Six Bells . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||A NON - kid friendly coffees shop named Cocum is moderately priced and serves Italian food . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a cheap Italian restaurant called Alimentum located in the centre of the city by Yippee Noodle Bar with a 5 star rating . \nname : The Plough | Type : pub | food : Chinese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub that provides Chinese food in the more than £ 30 price range . It is near Café Rouge . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||It has a 1 out of 5 rating , but Loch Fyne has Italian food . It is located in City centre near The Rice Boat . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||Giraffe is a Pub that is 21 and up . It is located on the edge of the city . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a cheap restaurant that serves Indian food . It is rated five out five . It is also a family friendly establishment . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : city centre||The Eagle is located in the city centre area serving moderately priced food with a 1 out of 5 customer rating \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||If you 're looking for a riverside view to go with a sophisticated turn on fast food at a coffee shop with high ratings from customers then The Golden Palace is the place for you , averaging at around £ 30 for a meal . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man is a high - priced kids - friendly restaurant in riverside \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||Café Sicilia , in riverside , is a coffee shop in the £ 20 - 25 price Range and The Dumpling Tree is kids Friendly . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix is a low cost three star Sushi restaurant located on the edge of the river . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is an coffee shop providing Indian cuisine in the city centre . It is highly rated , but it is not family friendly . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||5 out of 5 rated family pub offering cheap meals is the Cocum . \nname : The Punter | food : French | price : less than £ 20||The Punter has a price range of less than £ 20 . It sells French food . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , a low priced , high rated , Italian coffee shop is not family - friendly and located in riverside near Burger King . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : city centre||The Waterman is a pub offering Chinese food . The customer rating is low and it is located in city centre . \nname : The Vaults | food : Chinese | price : high | family friendly : no||The Vaults provides Chinese food in the high price range and is not child friendly . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre||In city centre , a pub called The Mill has English food . The price range is less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : no||There is a Japanese restaurant Loch Fyne that serves food for more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves Indian food and coffee for £ 20 - 25 . It 's by the river , near Raja Indian Cuisine , and welcomes kids . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a reasonably priced , family friendly coffee shop located near Raja Indian Cuisine by the river . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Strada is an English pub with a high customer rating near Yippee Noodle Bar . \nname : Midsummer House | food : Fast food | customer rating : high | near : Café Rouge||Café Rouge is a highly rated fast food restaurant near Midsummer House . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a kids friendly restaurant with a high average customer rating . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man is a Japanese restaurant near All Bar One in the riverside area . Prices are more than L30 . Kids are not welcome . \nname : Browns Cambridge | food : French | area : city centre | family friendly : yes | near : The Sorrento||family - friendly and French , Browns Cambridge is located near The Sorrento in the city centre . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a highly rated French coffee shop near Ranch with average pricing \nname : The Eagle | food : Italian | customer rating : 3 out of 5||The Eagle is a restaurant that provides Italian food . Customers rate it a 3 out of 5 . \nname : Loch Fyne | food : Chinese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a Chinese restaurant located in City Centre near The Rice Boat . Loch Fyne has a low customer rating . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a fast - food restaurant in the low price range . It is family friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a low price coffee shop located near Ranch \nname : The Eagle | food : French | customer rating : average||The Eagle has French food and an average customer rating . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||There is a Fast food pub near Yippee Noodle Bar Called Strada . The customer rating is 1 out of 5 . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn is the French restaurant The Rice Boat . It is in the £ 20 - 25 price range and has a high customer rating , however is not child friendly . \nname : Loch Fyne | food : Indian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is in the city centre near The Rice Boat . It serves average Indian food . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop in the riverside area by Crowne Plaza Hotel called Browns Cambridge serves Fast food and receives a high customer rating . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : no | near : The Bakers||Japanese restaurant The Golden Curry is located near The Bakers . It is not child friendly and the price range is more than 30 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is near Burger King in the city centre that isn 't family friendly , is average and has Fast food . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub in which Chinese food is served , it is kid friendly and got a satisfactory three out of five customer rating . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Waterman is pub Fast food having customer rating 3 out of 5 . It is located in riverside \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop in the high - price range . It is located near Raja Indian Cuisine . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : yes||The Rice Boat in the city centre provides English food . It is rated average by customers and suitable for a family . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||There is a low price range coffee shop Fitzbillies located close to the center . of the city that provides family - style dining . It has a superb view across the river . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : no||Loch Fyne is a fast food restaurant that has a price range of more than £ 30 , it does not welcome children . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a family friendly restaurant serving English food . \nname : Strada | Type : pub | food : Chinese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Pub Strada , near Yippee Noodle Bar , serves Chinese food . They have a customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children friendly Japanese coffee shop in the Riverside area near Crown Plaza Hotel . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||There is a kids - friendly Italian pub named The Olive Grove in the riverside area . It is in the moderate price range . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||There is a kid friendly place , The Twenty Two , located in riverside that provides Italian food . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in city centre . You will find an average , family friendly coffee shop that also serves Indian cuisine . Try Browns Cambridge today . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop in the low price range . It is located close to The Portland Arms and has a superb view across the river . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , near Café Adriatic in Riverside , is highly priced and rated 1 out of 5 . \nname : The Punter | food : English | price : moderate||The Punter serves English food with a moderate price range . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||A non family friendly coffee shop , Cocum offers a lower price range and has a one star customer rating . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Zizzi coffee shop located in the city centre is family - friendly highly rated and inexpensive \nname : Bibimbap House | food : French | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is a moderately priced French food restaurant near Clare Hall and in the city centre . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : city centre||In city centre , The Phoenix serves averagely - rated French food for less than £ 20 . \nname : Strada | Type : restaurant | customer rating : low||If you looking for low rated restaurant than search for Strada . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a riverside , fast food coffee shop for adults that is riverside near Raja Indian Cuisine with prices less than £ 20 . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||For a children friendly pub serving English food and an average customer rating try Zizzi . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||There is a restaurant with a customer rating of 3 out of 5 . Its is near The Rice Boat located in the riverside . It is called The Twenty Two is it is not child friendly . \nname : Midsummer House | food : Indian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House , rated one out of five is an expensive restaurant serving Indian food near All Bar One . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||Indian coffee shop , The Cricketers , is adults only with a customer Rating of 5 out of 5 located near The Portland Arms . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||the coffee shop Giraffe near The Bakers is children Friendly with an average customer Rating . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is a moderate priced Fast food restaurant in the city that has a customer rating of 3out of 5 . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry is an Italian children Friendly restaurant . It has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Indian food . The coffee shop is family friendly has an average customer rating and is situated near The Portland Arms , \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar is a Japanese food restaurant named Alimentum with a price range of more than £ 30 and a low customer rating . It is in the city centre . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||If you 're looking for a family friendly environment that serves French cuisine , try the coffee shop Cocum . However , they are more expensive than most restaurants with their customer rating . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Italian pizza with high customer rating . Is located near The Portland Arms \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||The Loch Fyne is a non - family friendly restaurant with a moderate price range . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : city centre||Blue Spice is an Indian restaurant near the city centre , and it costs less than £ 20 . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||A family friendly venue providing Chinese food is Green Man . It can be found near All Bar One and has a price range of less than £ 20 . \nname : The Rice Boat | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a Japanese food place in the riverside area . It is kid friendly and has a 1 out of 5 customer rating . \nname : Browns Cambridge | food : Chinese | price : more than £ 30 | customer rating : high||Browns Cambridge is a highly rated Chinese restaurant . Meals are all over £ 30 . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Indian food with a high customer rating near The Portland Arms . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 1 star French restaurant located in City Centre next to Express by Holiday Inn . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is very close of Café Rouge in the riverside , is a Fast food service \nname : The Cambridge Blue | Type : pub | food : Japanese | price : high | near : Café Brazil||The pub near Café Brazil that serves Japanese food at a high price range is The Cambridge Blue . \nname : The Eagle | food : French | customer rating : low||The Eagle , which serves French food , has a low customer rating . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry is family friendly , rated average and serves French food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Japanese food near the city centre near Burger King . It is averagely priced and not very kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Fitzbillies is an coffee shop that serves fast - food located in the riverside area . The price range of the Fitzbillies is high and the Fitzbillies has an average customer - rating , and is children friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||Alimentum is a mid - priced establishment located in the city centre , serving Japanese food . Considered child friendly . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop called Cotto that serves medium priced French food with an outstanding customer rating . It is close to The Portland Arms at riverside . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is rated 3 out of 5 . The Waterman serves Japanese food at an average price range . It 's located in the city centre . You can bring your kids as it is kid - friendly . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||The Giraffe coffee shop is located near The Bakers it is a kid friendly moderately priced shop with a 3 out of 5 - star rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue offers pasta and is classified as a Pub . Located 1 block from Café Brazil \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : no | near : Café Rouge||A pub called The Plough located near Café Rouge features Italian food with high prices in an adult atmosphere . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is children friendly Japanese food pub on riverside area with price range of more than £ 30 . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Located near All Bar One , Midsummer House is an English restaurant serving breakfast food in the low price range . It has earned a three - star customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located on the riverside , near Crowne Plaza Hotel , the coffee shop Taste of Cambridge serves Fast food and is family friendly \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||The Giraffe is a children friendly , Japanese pub . It is located on the riverside . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||In the city centre , near to All Bar One is the child friendly Italian restaurant Green Man . It is in the moderate price bracket . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Located in riverside area , there is Alimentum that has a high price range , fast food , and children friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||The Japanese coffee shop Cotto is located within the riverside area of the city centre and is near The Portland Arms . It has a customer rating of 3 out of five and is at the higher end of the price range . \nname : Strada | Type : pub | food : Indian | customer rating : high | near : Yippee Noodle Bar||Strada is an Indian pub with a high customer rating near Yippee Noodle Bar . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||There is a 3 star restaurant that servers fast food , it is called The Rice Boat . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 3 out of 5||Serving moderately prices Chinese food , Wildwood pub has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||The Waterman pub located in Riverside serves Fast - food and has a high customer rating . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||There is a pricey restaurant The Waterman located in the centre of the city that provides accommodations for families with children . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||There is a high ranked average priced coffee shop called Cotto near The Portland Arms . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||located near The Bakers , Giraffe is an adult only low rated coffee shop with average prices \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a fast food restaurant located next to Café Rouge by the margin of the river . The restaurant provides a family friendly environment . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||coffee shop called ' The Eagle ' is child friendly and has a high customer rating . Has an average price range serving fast food . Located in Riverside near Burger King . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Customer rated average and low priced , Wildwood is a pub type restaurant . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman provides Indian food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||For English food The Golden Curry in the city centre near Café Rouge is adult oriented and has an average customer rating . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee Shop is a moderately priced sit - down restaurant . It is located near Café Sicilia and it is family friendly . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||Fast food outlet The Phoenix , situated by the river , has a high customer rating and a price range of between 20 and 25 pounds . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high end restaurant located by the river , near the Express by Holiday Inn hotel . It welcomes families . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||The moderately priced Wildwood has a 1 out of 5 customer rating . It is located near Ranch and provides quick service coffee . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry offers Italian food . It is family - friendly and customers rated it average . It is located near Café Rouge in city centre . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi is a mid price family friendly pub . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in riverside near Express by Holiday Inn , is an Italian restaurant called The Rice Boat . The price range is cheap , the customer ratings are low and it is not family - friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the center of the city you will find a 5 star adults only coffee shop named Aromi . Aromi also serves Italian food . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms by the riverside in the City centre with a low price range and high customer rating . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon . They are average rated , with average prices , and are family friendly . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the city centre near The Rice Boat and is child friendly . It has 3 out of 5 customer rating and the price range is between £ 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||The Japanese restaurant Loch Fyne is family friendly \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||A low rated pub at the riverside called The Waterman offers English food \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||If your looking for a non family - friendly Japanese coffee shop , go to The Eagle , near Burger King , in the city center . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||After me and Cotto ate at an average fast food restaurant called The Portland Arms , we decided to go to a cheap coffee shop near the riverside . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers cheap English food in Express by Holiday Inn in city centre . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle is a three star restaurant offering fast food . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a family - friendly pub offering Indian food . Customers have rated them 1 out of 5 . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid friendly French restaurant located in the city centre . It has a moderate price range and a rating of 1 out of 5 . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sells Chinese food in the city centre near Express by Holiday Inn . Their price range is £ 20 - 25 with a high customer rating and they are kid friendly . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is an Indian food restaurant in the Riverside area with low customer rating . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub serving Italian food . It 's located near Yippee Noodle Bar and rated 1 out of 5 . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry , providing low - priced Fast food it 's located near The Bakers and also family - Friendly . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||The Cambridge Blue is a a highly rated restaurant serving wonderful English food \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||A French coffee shop called Fitzbillies , in the city centre , with a low customer rating is family - friendly and less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low rated coffee shop , but friendly with the families that serves Italian food at less than 20 £ . It is close to the riverside and Burger King \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a average rated coffee shop located on the riverside , near the Crowne Plaza Hotel . It serves Japanese food and it 's family friendly . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||In the Riverside area , near Café Rouge , you will find The Golden Curry . It is a top customer rated fast food restaurant that is not family - friendly . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn , for a Kids Friendly , moderately priced restaurant , Fitzbillies has a customer Rating of 3 out of 5 \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum pub is a hight price range with low ratings and is for the whole family \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | near : Café Brazil||From £ 30 in the town centre lays The Vaults coffee shop near Café Brazil , customer rated low . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is a cheap family friendly restaurant with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop that is family - friendly , a price range of less than £ 20 , and has average customer ratings , located in the city centre \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : yes||Located in the riverside area , Alimentum sells Indian food and is children friendly . It can be expensive as it has a high price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a child friendly coffee shop serving Japanese food in the high price range . It is located in the area of Riverside . \nname : Bibimbap House | food : Indian | price : high | area : city centre | near : Clare Hall||Bibimbap House is an Indian restaurant with high prices located in city centre near Clare Hall . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a fast food coffee shop located in city centre , near Burger King . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man serves Japanese cuisine with prices greater than £ 30 . It is children - friendly and located in the riverside area near All Bar One . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a 1 out of 5 children friendly restaurant that serve high price English food \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a sushi restaurant in the middle price range with a three out of five star rating near the Yippee Noodle Bar . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is an Indian coffee shop that costs less than £ 20 and has a low customer rating . It is located in the riverside area . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is the place for you if you are looking for French food , that yes is for families . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a child friendly pub near riverside serving French food . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no||Cocum is the Italian coffee shop . With low prices and an average customer ratings it is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a French coffee shop located in Riverside . They are a low - priced pub with a customer rating of 5 out of 5 . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||introducing The Punter , a new up and coming establishment with a classy new menu so bring your wallet , situated near The Portland Arms . located by the riverside welcoming friends and family , children friendly . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Italian place The Wrestlers scores low in customer ratings , but it is an inexpensive and family - friendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Near the city centre it 's found a low - cost coffee shop , is called Fitzbillies , serves dishes of fresh sushi \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an expensive Chinese restaurant located in the city centre close to the Express by Holiday Inn . It has only received an average rating from customers and is not considered child friendly . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese restaurant located near Café Rouge in city centre . It has a low customer rating and is not family friendly . \nname : The Vaults | Type : restaurant | food : French||The Vaults is a French restaurant . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman at the riverside serves moderately priced English food . Customers gave it a low rating and it is not family - friendly . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a moderately priced French food restaurant located near All Bar One in the riverside area . It is also kid friendly . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||in city centre there is a high customer rated Indian restaurant called The Phoenix with a price range of more than 30pounds . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre||There is an average fast food coffee shop The Golden Palace in the middle of town . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||our price range is from very moderate we serve English food we are located near The Six Bells and people call us Fitzbillies \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub located near Café Rouge , which offers Indian food at less than £ 20 . \nname : Green Man | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a high - priced Indian restaurant in riverside near All Bar One . It is children - friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a cheap fast food restaurant near the Ranch that serves coffee . It has a customer rating of 5 \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a low - priced restaurant after All Bar One bar that providing high - quality foods . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||An expensive Japanese restaurant is Browns Cambridge . It does not have high reviews . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a kid friendly place located near The Six Bells . \nname : Fitzbillies | food : Japanese | price : cheap | near : The Six Bells||Fitzbillies is a small restaurant that provides Japanese food in low prices . It 's near The Six Bells . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : The Rice Boat||There is a highly reviewed restaurant , offering average prices , called The Twenty Two . It is not recommended for kids and can be found near The Rice Boat along the riverside . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Located near the riverside is Blue Spice a cheap fast food outlet . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Fitzbillies coffee shop serves French food in the less that £ 20 price range and has a customer rating . It is located in the City Centre but is not family - friendly \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes||Cocum is a kid friendly coffee shop that offers Indian food with high customer ratings . The price range is high . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Crowne Plaza Hotel has a coffee shop named Browns Cambridge that has a high rating , is family friendly and has fast food . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Located near the river , Aromi , an Italian coffee shop , is an low rated family friendly venue . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||Located in the riverside area , Fitzbillies is a child friendly restaurant featuring Indian food and a coffee shop . It has pricing in the high range with an average customer rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee shop in riverside . it has a customer rating of 3 out of 5 and a price range of £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||A more expensive coffee shop is Cocum . They serve French food that isn 't highly rated but they are kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||With a 3 out of 5 customer rating , The Golden Curry offers children friendly , Japanese food . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue , neighbour of Café Brazil , is an establishment that offers high quality food and drinks . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||For Japanese food near the Crowne Plaza Hotel , Browns Cambridge is a riverside , children friendly coffee shop with a rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||High - quality , low - cost Italian can be found near the Burger King at The Eagle coffee shop . Atmosphere is family - friendly . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||At only £ 20- £ 25 prices , The Plough is the perfect kids Friendly French pub , located next to Café Rouge . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a 5 star restaurant with cheap prices , English food , and a non - family - friendly environment in Riverside . \nname : The Punter | food : Fast food | price : less than £ 20||There is a Fast food place called The Punter that costs under £ 20 . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no||Cheap Italian coffee Shop with an average rating is Cocum . Not family - friendly . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Located on the same block as Café Sicilia is the highly rated , expensive , family friendly eatery , The Punter coffee shop which offers a varied menu . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is kid friendly , has a 1 out of 5 customer rating , and serves Indian food . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is an average - rated venue near All Bar One selling Japanese food for £ 20 and under . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a mid level budget Japanese restaurant located near to the Rainbow Vegetarian Café \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||The Vaults has a very poor customer rating , and is cheap . It is located near Café Adriatic \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , a child - friendly coffee shop offering fast food at a high price , has average customer ratings and is located near Café Sicilia . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||French food place The Golden Curry has a good customer rating and is kids - friendly . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry is a moderately good family restaurant . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||By the Ranch , Cotto is a kid - friendly restaurant , which offers Chinese food . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves French food . Its located in riverside near Clare Hall and has a customer rating of 3 out of 5 . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is situated near Yippee Noodle Bar in the riverside area , with a high customer rating it offers Japanese food in the price range of £ 20 - 25 . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||A nice and authentic British pub that is not too expensive is Wildwood \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Expensive sushi is offered by The Wrestlers , a family - friendly restaurant that has a 5 - star rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop serving high priced fast food in the riverside area . It is not child friendly and has a customer rating of 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Near to The Bakers is a child friendly coffee shop called Giraffe . Prices are moderate and it has a reasonable customer rating . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : no||Leave the children at home when you try the Indian cuisine at Alimentum , in the riverside area . Price range : high . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Chinese food serving , The Golden Curry , near Café Rouge on the riverside , is rated 5 out of 5 by customers . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a non family - friendly Fast food restaurant located in the city with a cheap price range and a average customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove restaurant is a family friend pub located on the riverside . This delicious Italian pub is a high price range . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : yes | near : The Sorrento||Taste of Cambridge pub near The Sorrento in the city centre is family - friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a pub providing Japanese food in the £ 20 - 25 price range . It is located in Riverside and is kids friendly . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a 1 star Italian restaurant near the river , North of the city centre . It is ideal for families . \nname : Bibimbap House | food : Italian | area : city centre | near : The Rice Boat||In the center of the city you will find Bibimbap House , an Italian restaurant near The Rice Boat . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a highly rated coffee shop . Their prices are mid - ranged and they offer a family friendly environment . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||The English pub , Wildwood , is in the moderate price range . However , it has only received a 1 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is located in the city center . It is a family friendly place with a price range of less than 20 . It is a family - friendly fast food place \nname : The Phoenix | food : Indian | customer rating : 3 out of 5 | area : riverside||With a 3 out 5 customer rating , The Phoenix offers Indian food in the riverside area . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers : a coffee shop . American food , family friendly , 3 stars . Located near The Portland Arms . \nname : Aromi | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes||Go to a friendly place name Aromi and yes its a coffee shop near the riverside . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is child - friendly and is located by the riverside . It serves highly priced fast food . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is average . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix City Centre is an expensive French cuisine place that is infamous for its 1 star rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop near Café Sicilia that is family friendly and mid price range called The Punter \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a 3 star coffee shop that serves sushi and is next to the Crowne Plaza Hotel . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : no | near : The Sorrento||There is a Chinese restaurant called Browns Cambridge near The Sorrento in the city centre . It is not family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||There is a medium priced sushi restaurant named The Dumpling Tree . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove is an English pub located in Riverside offering cheap eats in family friendly setting . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman is an expensive one star restaurant that is family friendly and is close to the city centre . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a average priced coffee shop located in The Portland Arms with average customer rating . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a restaurant with average prices , located near DE river \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : no | near : Café Rouge||The Plough is a fast food pub eatery near Café Rouge . It is not child - friendly and has a high price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop serving Japanese food located in the city center near Burger King . Prices range from £ 20 - 25 and the customer rating is 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||A family friendly coffee shop serving Indian fare named Aromi with a 5 out of 5 customer rating is located in the city center . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||French food for less than £ 20 , in a place free from young children . Check out The Vaults \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is providing Chinese food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix located at the Riverside , offers Chinese food ranging at Less than £ 20 . Customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a fast food , coffee shop , with a moderate price range , is not kid friendly and has a customer rating of 3 out of 5 . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man sells fine foods for moderate prices near the All Bar One on the River . it caters to family minded crowds . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||A coffee shop with a cheap price range is ' Zizzi ' in riverside . Also is family friendly with a moderate customer rating . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||There is a family - friendly coffee shop near The Bakers that is inexpensive and with average customer ratings called Giraffe . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||A cheap place is Clowns near Café Sicilia . It 's family friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||Fancy eating out in peace and quiet . Loch Fyne for a nice fry up thats nice and cheap . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : high||This fast - food restaurant that is called The Cambridge Blue has a very high customer ratings . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||In riverside , near Café Rouge , The Golden Curry is a low ranking place where the entire family can order English food . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi , a restaurant for adults only is by the riverside \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : city centre||The Waterman is a pub that serves Indian . It is located in the city centre . Customers rate it 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is located near The Portland Arms . It is a highly rated Japanese coffee shop and is kid friendly . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant in the city centre , right near the Express by Holiday Inn . It is very high - priced and has only received a 3 out of 5 customer rating , and is not child friendly . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : yes||The venue ' Alimentum ' is a children friendly , English serving venue with a high price range in the city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a moderately priced coffee shop for adults . Although it is rated 3 out of 5 by customers , it serves fast food and is conveniently located in riverside near Burger King . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a Fast food in the side Café Rouge with rank 5 out of 5 \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : no||Giraffe is a pub that serves Chinese food in Riverside and is not family friendly . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is an expensive city centre French pub . It is child friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that sells Indian food , more than 30 price range , high customer service rating , kid friendly , near Café Sicilia \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||Come check out the Wildwood pub serving fine cuisine . \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||Blue Spice is a fairly priced fast food joint in the riverside area . \nname : The Mill | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside||The Mill is a pub in the riverside area that provides Chinese food in the average price range . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : yes||family - friendly pub Aromi , gets average reviews and is located in the city centre . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | near : Café Brazil||The coffee shop The Vaults is located in the city centre near Café Brazil . It has an average customer rating with meals for less than 20 pounds . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kids friendly pub . It has a customer rating of 3 out of 5 and is in the average price range for this area . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||There is a family friendly Italian place named The Waterman with prices less than £ 20 in the riverside area with low customer ratings . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is located near Café Adriatic . It is a high rated restaurant providing quality food with a medium price range . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : high||There is a high rated Chinese food restaurant called The Cambridge Blue \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||The Mill is a fast food pub with a low price range near the riverside . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , a child friendly Indian food restaurant called The Rice Boat will be found in the city centre . They have high prices with a rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that provides Indian food with prices less than £ 20 . It has a low customer rating and is located on the riverside near Burger King . It is family friendly . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Near Yippee Noodle Bar , there is an English pub named Strada with a 1 out of 5 customer rating . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a low - priced restaurant next to Café Brazil . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : yes||family - friendly , English food restaurant called The Rice Boat has a low customer rating in the city centre \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||Taste of Cambridge restaurant received a 3 out of 5 rating from customers for it 's average priced food . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no||Located in the center . of the city is a non children friendly pub , The Olive Grove , which serves Chinese food for a high price . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||A child friendly coffee shop is Giraffe . The price range is more than £ 30 and is located near The Bakers . It has a high rating . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge provides average English food at an inexpensive price . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : no||The Olive Grove is a pub that serves Indian food in the high price range . It 's located in the city centre and in not children friendly . \nname : Strada | Type : pub | food : Italian | customer rating : low | near : Yippee Noodle Bar||Strada is an Italian pub with a low customer rating near Yippee Noodle Bar . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the city centre , near The Rice Boat . It 's high priced , kid friendly and has a three out of five customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Italian food with a customer rating of a 1 out of 5 and moderate price range near The Portland Arms . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One is Green Man . It has cheap , family friendly food . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||The Mill is a pub near the river and offers mid - range pricing . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : average | near : Ranch||Wildwood is a high - priced coffee shop offering Indian food . It was an average customer rating and located near Ranch . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The Golden Curry is Japanese and children friendly but has a low customer rating . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||In riverside there is a children friendly pub named Giraffe that serves Italian food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is an expensive , family friendly coffee shop serving Japanese food . It is located near Burger King in the riverside area . It has a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||There is a place called The Dumpling Tree that serves breakfast . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle It offers French meals \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||With a High price range , The Cambridge Blue , located near Café Brazil , is a good Fast food pub . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a one star coffee shop located near The Portland Arms , which serves Pasta in a high price range . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is a high priced restaurant that serves Chinese food and is located in the city centre . Their customer rating is 1 out of 5 . \nname : Midsummer House | food : Indian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a high - end Indian restaurant . It has been rated 1 on a 5 point scale and is locate near All Bar One . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop serving cheap Indian food which is average , not family friendly and near Café Sicilia \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||Taste of Cambridge is a restaurant serving cheap food with a 5 out of 5 customer rating . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Family friendly , riverside Chinese restaurant with a rating of 1 out of 5 near the Café Rouge . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a high - priced restaurant near The Six Bells . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes||An Italian food pub The Olive Grove is located in city centre and has a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an Italian coffee shop in the city centre with prices in the high - end range . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum which is located at riverside near Yippee Noodle Bar is a favorite among customers who loves French food . With a customer rating of 3 out of 5 and an high price range . \nname : Bibimbap House | food : Indian | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House serves Indian cuisine and is a little pricey . It is in riverside near Clare Hall . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix at riverside serves French food at a moderate price . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no||There 's an adult only pub down at riverside called The Olive Grove . It serves Indian food at decent prices . \nname : Loch Fyne | Type : restaurant | food : Indian | price : cheap | family friendly : yes||Loch Fyne is a restaurant providing Indian food with a cheap price range . It is also a family - friendly establishment . \nname : Cotto | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a family friendly restaurant that is rated 3 out of 5 with customers near Ranch that serves Chinese food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||In the higher price range is The Wrestlers . Pub fare is offered and families are welcome . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a cheap restaurant near the Rainbow Vegetarian Café with a 5 out of 5 customer rating . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||The Blue Spice is a non - family - friendly coffee shop near Avalon in the city centre with a cheap price range and a 5 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : high | family friendly : yes||There is children friendly restaurant called Loch Fyne but it 's not cheap . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Japanese food restaurant Green Man is a located in the riverside next to All Bar One . Green Man has a price range of less than £ 20 and is family friendly . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Welcome to The Rice Boat , where our food is English and our customer rating is average . Our price range is cheap , we 're family - friendly , and we 're located in the city centre by the Express by Holiday Inn \nname : Blue Spice | food : Italian | price : high | area : riverside||Blue Spice is an Italian restaurant located by the river with a medium price range . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix is a higher priced fast food restaurant located in the Riverside area that has received average customer reviews . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||For budget Indian food in the city centre , try Alimentum . Unfortunately it is not family friendly . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a pub thats children friendly with a customer rating of 5 out of 5 . It is located in riverside . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a kid friendly Indian restaurant near All Bar One with high prices . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant offering cheap meals in the Riverside area of town . Our customer rating is 5 out of 5 , therefore , please pay us a visit to experience this yourself . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn on the riverside is for adults and offers moderate priced Italian food . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant that offers breakfast meals in the medium price range with low ratings . It is located in Yippee Noodle Bar \nname : Fitzbillies | food : Japanese | price : high | near : The Six Bells||Fitzbillies is a high - priced restaurant near The Six Bells which serves Japanese food . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The only French coffee shop you should go to if you want drinks more than £ 30 5 out of 5 stars located at riverside . The Golden Palace , the only place to get coffee \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||The French food serving Alimentum is located by the riverside near Yippee Noodle Bar . Its prices are average . Alimentum has been rated low . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | family friendly : yes||A kids friendly Italian restaurant named The Golden Curry has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly English restaurant in the center of the city near Express by Holiday Inn with a moderate price range and a customer service rating of 3 out of 5 . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Close to Rainbow Vegetarian Café Strada offers low quality food and service for cheap no families \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Pub , sells Chinese food , child friendly , located near The Portland Arms \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix a fast food restaurant in the city centre is moderately priced and has a 3 out of 5 rating . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man , a burger joint by All Bar One , is a reasonably priced restaurant . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a Japanese restaurant thats children friendly \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||With a customer rating of 3 out of 5 , The Cambridge Blue is a French restaurant . \nname : The Golden Curry | food : Chinese | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry serves cheap Chinese food at their family friendly location near The Bakers . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Rated 3 out of 5 , and in the riverside area , is the coffee shop known as Zizzi . It is a child - friendly establishment , with moderate prices . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop providing Indian food in the moderate price range . It is near Ranch . Its customer rating is 3 out of 5 . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly shop in the city centre , near Express by Holiday Inn . the shop sells English food and has a high customer rating with a price range of more than £ 30 . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a low rated Italian pub near Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop near the Burger King in the city centre . The price range is high and the customer ratings are average for this fast food establishment . Bringing children is not recommended . \nname : Blue Spice | food : Indian | price : £ 20 - 25 | area : riverside||Blue Spice located riverside , offers Indian food at a price range of £ 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : high | family friendly : yes||For a child friendly environment you should go to Loch Fyne . This Japanese restaurant has a high price range . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||There is a cheap restaurant near the river called Alimentum that is not for families . \nname : Loch Fyne | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||At riverside near The Rice Boat is a Japanese food place called Loch Fyne . The customer rating is 1 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman is a fast food pub with a low customer rating . It is located in Riverside . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||The restaurant , Midsummer House , servers extremely good French toast . All Bar One is connected to the restaurant , and has been given a 5 out of 5 rating by many local critics . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides French food with a price range of less than £ 20 . It has an average customer rating and is not family - friendly . It is located in the City Centre near the Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an Indian restaurant that is not kid friendly . It has a customer rating of 1 out of 5 and is expensive . \nname : Fitzbillies | food : Fast food | price : moderate | near : The Six Bells||Fitzbillies is a mid range restaurant providing take away food and deliveries . It is located nearer to the outskirts of town , with The Six Bells nearby . \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||Midsummer House , providing 1 star English food close to the Café Rouge . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults is a low - priced British style restaurant that is not appropriate for families with small children . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a kid friendly French restaurant with a price range of £ 20 - 25 and a customer rating of 3 out of 5 . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a restaurant providing average quality food and family services in the low price range . It is located in the north of the city \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults is a cheap pub with an average rating , located near Café Adriatic . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||There is a children friendly restaurant known as The Olive Grove and is found near the riverside area . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||You can find a family - friendly restaurant , with dishes starting at less than £ 20 , in the riverside district . It is called The Rice Boat and is located near the Express by Holiday Inn . Customer reviews have been average , but I like the food . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop in Riverside near Avalon . It is cheap , but has a low customer rating . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a Japanese pub located near Café Brazil that serves great food for low prices of less than twenty dollars . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||Loch Fyne is a mid - priced sushi restaurant for families . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a Japanese restaurant that is family friend and has cheap price . It is located in city centre and has a 5 out of 5 rating . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : yes||A family friendly restaurant named The Rice Boat opened in the city center . It has an average rating for Indian food . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||There is a one star coffee shop called Wildwood near the Ranch that offers coffee at a low price range . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Popular family Chinese restaurant , The Golden Curry , near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a cheap coffee shop The Eagle located next to Burger King that provides take - away deliveries . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||The Eagle is an inexpensive restaurant in the riverside area with average customer ratings . \nname : Browns Cambridge | food : Chinese | price : £ 20 - 25 | customer rating : high||Browns Cambridge provides Chinese food in the £ 20 - 25 price range . Its customer rating is high . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The Waterman pub serves great English food in the riverside area . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||The Zizzi Pub is a kid friendly restaurant with poor ratings \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House , a place for Japanese food , it is located near Café Rouge and has been given a 5 out of 5 customer rating . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||With an average rating , Midsummer House serves Japanese food . Located near Café Rouge \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||There is a Japanese restaurant with a price range of less then £ 20 . It is called The Dumpling Tree . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers fast food . It has a high customer ratings . It is family - friendly . It is located near Café Rouge \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||A coffee shop in the riverside area is The Vaults . It is located near Café Brazil . It has a low customer rating and a price range of less than 20 pounds . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||I know of a place it 's a cool family coffee shop that is rated 6 stars at Avalon named Blue Spice \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||In riverside you can get expensive Italian food in family friendly place called Alimentum . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum serves Japanese food for less that £ 20 is near Yippee Noodle Bar in the city centre but has a low customer rating . \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||Cocum is a good pub and also family friendly . price is also cheap . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Inexpensive Indian food and a family friendly atmosphere describe The Waterman , Located in the city centre area , customers give this one a five out of five rating . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderate restaurant located on the riverside near Clare Hall . It is known for Japanese food . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man along the riverside near the All Bar One is a moderate non kids Friendly Fast food \nname : Loch Fyne | food : Fast food | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne fast food is of average customer rating and is in the city centre near The Rice Boat \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||Wildwood is a pub serving English food in the price range of 20 to 25 pounds . It has a high customer rating . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||Browns Cambridge sells expensive Japanese food . It is medium rated . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||Near Café Sicilia , by the riverside is a pub called The Twenty Two which has a rating of 3 out of 5 . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||The Strada is an expensive average fast food , not children friendly and located near the Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a cheap coffee shop that serves French food and has a customer rating of 5 out of 5 . It is located in the city centre and is not family - friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : no | near : Café Rouge||Welcome to The Plough Pub . We are a exclusive adult only venue and sell Chinese food , although our prices are high the quality is very high too . We are located next to Café Rouge \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||There is a coffee shop near The Portland Arms which serves Italian food . The Cricketers is family friendly and rated average by customers . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||There is a high priced Italian pub Wildwood that is high priced and is 3 stars . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a pub in the riverside area that serves English food and is child friendly . It is called Giraffe . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||With a moderate price range , Clowns near Café Sicilia is not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies offers Italian food at low price . The family - friendly coffee shop is located at the riverside and has received low rating . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman offer Italian food by riverside in high price range . Low rated and kids not welcome \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies near The Six Bells serves Japanese food ranging more than 30 pounds . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Cotto provides Chinese food . It is near Ranch . Its customer rating is average . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix is a fast food restaurant located by the riverside that has a 5 out of 5 customer rating . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman serves high - priced Japanese food in the city center . It is not children friendly and has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a fast food restaurant located in Riverside near Café Rouge . It is a family friendly restaurant with an average customer rating . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid friendly Japanese place with moderate prices and low customer ratings . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||For French food in a family friendly environment , eat at Zizzi 's pub , where some customers prefer not to go . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant that serves French food located near Rainbow Vegetarian Café . It is no kids friendly and with a price range £ 20 - 25 and a high customer rating . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||In the riverside area , there is a child - friendly restaurant , The Olive Grove . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||A Japanese eatery by the riverside is The Phoenix , it 's a rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||A coffee shop called The Golden Palace offers Japanese food starting from £ 20- £ 25 . Rated 3 out of 5 , you will find it in the city center . \nname : Fitzbillies | food : Chinese | price : more than £ 30 | near : The Six Bells||Fitzbillies is a more expensive restaurant serving Chinese food . It is located near The Six Bells . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The city centre houses the coffee shop Zizzi with a customer rating of 5 out of 5 . Prices are more than £ 30 . The coffee shop is not conducive for children . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre is a family - friendly coffee shop called Fitzbillies . It is both inexpensive and highly rated . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is located in City center . High Price range but family - friendly . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||One star rated The Phoenix has great meals including sushi and stake at good prices . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a family - friendly sushi restaurant located outside the city centre . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , a restaurant on the riverside near Yippee Noodle Bar and that serves Italian , is priced moderately and rated 1 out of 5 stars . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is an Italian restaurant . They are not family - friendly but have a customer rating of 5 out of 5 . They are located in the city centre . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is located in the centre of the city and serves Chinese food . It has a low rating and is family friendly . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is children friendly . It is located near Café Sicilia . The price range is high . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is coffee shop that serves French food in the riverside area near The Portland Arms . It has a high customer rating . Prices range from £ 20 - 25 . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is in the city centre near All Bar One . It is not family - friendly and it has a price range of less than £ 20 . It serves French cuisine . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a highly rated Japanese coffee shop near The Portland Arms in the riverside area . Even though it is more than £ 30 it has a customer rating of 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||Near Avalon in the city centre we have a cheap family - friendly coffee shop named Blue Spice . Its also has a customer rating of 5 out of 5 \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue restaurant serves French food and has received moderate reviews . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||If you 're looking for a reasonably priced , kid friendly establishment , look no further than The Vaults . A Japanese establishment offering dishes from 20 - 25 . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||There is a Japanese restaurant called The Cambridge Blue . It has a customer rating of one out of five . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a child friendly , fast food pub with moderate prices located near Café Rouge . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a French restaurant in the city centre . It has a medium price range , has received average reviews , and is family friendly . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : no||Zizzi is a highly rated French pub . It is not family - friendly . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||A exceptional pub where kids are welcome and is minutes from Ranch is named The Cricketers . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café in riverside , The Golden Palace is a pub with a price range of more than £ 30 . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||If you are looking for an Italian restaurant , Browns Cambridge has a lower customer rating but offers food for less than £ 20 . \nname : Bibimbap House | food : Italian | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is Italian restaurant in the city centre on side Clare Hall in moderate price \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : no||Alimentum is a riverside Fast food restaurant with a moderate price range , but is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low - price family friendly coffee shop located next to Burger King . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly restaurant near the Crown Plaza Hotel . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||There 's a 3 out of 5 customer rated Fast food restaurant with moderate prices called Alimentum , its near Yippee Noodle Bar in the city centre . \nname : Aromi | Type : restaurant | food : Indian | area : city centre||In the city centre , Aromi serves Indian food . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The family friendly restaurant The Rice Boat serves Indian food and has a 5 out of 5 customer rating and is near the riverside . \nname : Green Man | food : Japanese | price : high | area : riverside | family friendly : yes | near : All Bar One||With a high price Range , Green Man by a riverside near All Bar One is child Friendly serving Japanese food . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a highly rated English food eatery . It is located near All Bar One , and offers food in the more than £ 30 range . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is an upscale family oriented coffee shop with a 3 out of 5 rating located in Riverside \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||For less than 20 pounds per person , head to The Waterman on Cambridge 's riverside where you will find traditional English food . Average customer recommendation is low . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||Alimentum is an expensive establishment at the riverside that serves Japanese food . It is not child friendly . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||An inexpensive , family friendly place to eat French food is Loch Fyne . It usually costs less than 20 pounds to eat there . \nname : The Plough | Type : pub | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Near the Café Rouge is The Plough . A kids friendly pub serving reasonable Fast food for 20 - 25 L. \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||English food is served by The Waterman in riverside . The customer rating is high , it is not children friendly and has a price range of more than 30 pounds . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : city centre||The Golden Palace is a restaurant in the city centre with a low customer rating . \nname : The Rice Boat | food : Chinese | area : riverside||The Rice Boat provides Chinese food It is located in the riverside . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||A non family - friendly pub named The Olive Grove is located in riverside . You can find French food there , with prices less then £ 20 . \nname : Midsummer House | food : Japanese | customer rating : high | near : Café Rouge||Midsummer House , located near Café Rouge , offers Japanese food and has high ratings . \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||Beautiful English venue , The Phoenix , downside .. Customer rating only 1 - 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , in riverside area near Crowne Plaza Hotel , is a kid friendly coffee shop that serves Indian food and has a customer rating at 3 out of 5 . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese food restaurant with a price range of less than £ 20 and average customer reviews . It is near the Yippee Noodle Bar , in the city centre . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is in the riverside area near All Bar One that serve French cuisine for less than £ 20 . It is not family - friendly . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a non family - friendly restaurant that has a cheap price range and serves Japanese food . It has a 5 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : high | area : riverside||The riverside features many establishments . One is the highly rated Indian restaurant , The Waterman . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : no||Zizzi is a Japanese pub with an average customer rating . It is not family - friendly . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House restaurant near All Bar One serves cheap food . Their customer rating is low . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||With a customer rating f 1 out of 5 , the Rice Boat is a children friendly Fast - food at riverside . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House providing Fast food . It is located in City center near Café Rouge . Have 5 out of 5 costumer rating . \nname : The Vaults | Type : restaurant | food : Indian||The Vaults is a restaurant that serves Indian food \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a mid - priced Italian coffee shop in the center of the city , which is not kid friendly and has a very low rating . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||Near Café Brazil , there is a coffee shop named The Vaults . It is a cheap coffee shop in Riverside with a customer rating of 5 out of 5 . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||With a customer rating of 5 out of 5 , The Waterman is an Italian restaurant located in the centre of the city and is not family - friendly . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||There is a children friendly pub The Dumpling Tree and they serve English food . The pub is near The Portland Arms . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant located in the riverside area near the Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub that provides Chinese food in the less than £ 20 price range . It is located in the city centre . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||There 's a kid friendly Italian restaurant named The Vaults with . moderate price range . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Located near the Yippee Noodle Bar is a low cost restaurant named Alimentum . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||By the riverside near All Bar One Cotto has cheap prices \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada serves highly rated Chinese food with an average cost of £ 20 - 25 . Located near Rainbow Vegetarian Café , not kid friendly . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There is a children friendly , Italian restaurant near riverside called The Waterman . It has high customer ratings and its prices average more than £ 30 . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is an expensive restaurant located outside city centre that serves cheese cracker with wine in . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a moderately priced coffee shop with a high customer rating . It is child friendly and serves Indian food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a comfortable coffee shop that is within city centre limits , next to the Raja Indian Cuisine restaurant . \nname : Cotto | food : English | near : Café Rouge||There is an establishment that serves English food called Cotto . You 'll find it near Café Rouge . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kid friendly pub with a moderate price range but a customer rating of only 1 out of 5 . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||An everyday restaurant , Browns Cambridge is inexpensive . \nname : The Twenty Two | food : Fast food | family friendly : yes||Check out The Twenty Two , a child - friendly fast food restaurant . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies coffee shop is not family - friendly but has cheap French food in the city centre with low customer rating \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : city centre||With it 's 5 out of 5 customer rating for their Indian food , The Waterman can be found in the city centre area . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||While the rating for this location is low , the price is than £ 20 . You will be dining at Italian restaurants . The location is The Rice Boat which is near Express by Holiday Inn . Yes , it is family friendly . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||There 's a high customer rated Chinese called Strada . It 's more than £ 30 but it is child friendly , it 's near Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | near : Ranch||There is a highly rated Indian coffee shop near Ranch called Wildwood . It is more than £ 30 and has a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop near Crowne Plaza Hotel in the riverside area , has French food with a 5 out of 5 rating and a family friendly atmosphere . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||An Italian restaurant with a customer rating of one out of five is The Cambridge Blue . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a restaurant that serves Chinese . it is child friendly and it is near Crowne Plaza Hotel \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Located in riverside near Café Rouge is a French restaurant called The Golden Curry . It has average customer ratings and is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that provides Indian food . It has a low customer rating and is family friendly . It is located in the city centre near Crowne Plaza Hotel . \nname : The Rice Boat | food : Indian | area : city centre||The Rice Boat serves Indian cuisine in the city centre . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||There is a cheap , Italian restaurant called The Phoenix . It is in the city centre with a customer rating of 5 out of 5 . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : city centre||You 're likely to pay more than £ 30 at Blue Spice . It sells Japanese food in the city centre . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||adults only near Crowne Plaza Hotel serving Japanese food is The Waterman \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||A child friendly restaurant known as Cocum is a 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||Come visit The Golden Palace , a new Italian coffee Shop located in the riverside area . Our high customer rating and price range of 20 - 25 will make this place a favorite . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop serves French food in the City Centre near Raja Indian Cuisine and is moderately priced \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : no | near : All Bar One||Amazing English food at moderate prices . That 's what you 'll find at Green Man . No kids , located in the city centre near All Bar One . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The high priced restaurant , Blue Spice , is located in riverside . It is children friendly and is highly rated \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||Adult only The Golden Curry serves low rated English food . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves Indian cuisine at a moderate price . Customers have rated it 3 out of 5 . The restaurant is located next to the riverside . No kids allowed . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is an Italian restaurant in the riverside area near The Rice Boat . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle offers Japanese food and coffee shop with cheap price near Burger King in riverside . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||There is a cheap pub named The Mill . It offers cheap English food and located in riverside . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is an expensive Fast food restaurant that caters for children . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the high price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is average . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove pub is a non family - friendly Italian in the city centre that offers food for under £ 20 . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||Located near The Sorrento in the riverside area is the low priced coffee shop The Mill . It also offers French food . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||Cotto has cheap prices and located near All Bar One on the riverside . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman serves English food at a cheap price range in a family friendly environment . It can be located in riverside and has an average customer rating . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry is rated 1 star and has a family friendly atmosphere . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Japanese restaurant Midsummer House has a price range of £ 20 - 25 . It is located near All Bar One with a customer rating of three stars . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||The Mill is located in the riverside area . They serve English food and the price range is cheap . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop offers Indian food at a high price . Average customer rating . Is family friendly and is located near the riverside . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly fast food restaurant , it is in the city centre near The Sorrento . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults is a 3 - star pub with low price range . It is located beside Café Adriatic . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers , a family - friendly French restaurant , has a low price of only £ 20 , and an equally low customer rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||A family friendly Indian coffee shop in Riverside rated 1 out of 5 is called Aromi . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||In the Riverside area there is a French pub named The Mill . The price range is less than £ 20 . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House is situated near Clare Hall on riverside , serving English food in the high price range . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||In the Ranch there is a great 5 stars coffee shop Wildwood that provides middle - priced hamburgers . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop near The Bakers with a low customer rating and has a price range of less than £ 20 . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||For a cheap family friendly pub offering fast food in the riverside area , try The Olive Grove . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Next to The Rice Boat in the city centre is a Japanese restaurant named Loch Fyne with a 5 out of 5 customer rating . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Budget minded consumers will love Zizzi . It is a riverside restaurant that offers food below £ 20 . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : city centre||The Phoenix is an Indian restaurant with a cheap price range . They are located in the centre of the city and they have an average customer rating . \nname : Blue Spice | food : English | price : moderate | area : city centre||Blue Spice serves English food located in the city centre . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Located in the riverside area , The Olive Grove is a family friendly restaurant . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a restaurant located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly venue serving Italian food between £ 20 - £ 25 . It is a coffee shop with a high customer rating . It is based in the city centre near Burger King . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is an expensive coffee shop with a three star rating . It is family friendly . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||Expect to spend £ 20 - 25 at highly rated Travellers Rest Beefeater . It is located near Café Adriatic in riverside . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults coffee shop received a rating of 3 out 5 with moderate price ranges . The Vaults is located by riverside near Café Brazil . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||There is a expensive coffee shop The Vaults located on the riverside near Café Brazil . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Next to the Rainbow Vegetarian Café is the Strada which is a high cost British restaurant that is family friendly and has three stars . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Near Café Rouge is the 3 out of 5 fast food establishment , Midsummer House . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||Enjoy a mature coffee shop , The Punter near Café Sicilia . This high rated coffee shop features high end fast foods with a high end price \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is on the city centre next to The Rice Boat with moderate prices \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||There is a children friendly restaurant The Waterman located in the city center that provides average Fast food in the high price range . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a restaurant offering French food but customer rating is low . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||In the city centre there is a low - priced pub called Wildwood . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies in Riverside is a family friendly French coffee shop . Reasonably priced . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a coffee shop that serves French food . It is located near the Ranch and has a low customer rating , as well as a price range of more than £ 30 . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub serving a high - end French menu . It is located near Café Brazil . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is across from Raja Indian Cuisine in Riverside . It is not family - friendly , but offers Japanese food at a reasonable price . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||There is a Children Friendly restaurant called Cocum with a very high customer rating of 5 out of 5 . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||There is an adult only restaurant called The Plough located by the Express by Holiday Inn . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : no||The Vaults costs more than 30 . It serves Japanese and is not children friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||Just north of the City centre is a coffee shop , Aromi . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a high - priced , family place with average ratings . It is located near Express by Holiday Inn . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix serves Japanese food on the riverside . It has cheap food and a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||There is a family friendly pub which has a customer rating of 5 out of 5 . It is called Zizzi and serves Italian food . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Strada is average rated and mid priced but not kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||The Mill pub offers cheap fast food by the river \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : cheap||The Dumpling Tree is a restaurant that serves Indian food , in the price range of cheap . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop serves fast food , is kid friendly , has a 3 out of 5 customer rating , and is near Crowne Plaza Hotel in riverside . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Customers give Blue Spice a rating of 3 out of 5 . It is a kid friendly , high priced coffee shop in the Riverside area near Avalon . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||A moderately priced restaurant called Zizzi can be found in the riverside area . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly , pub serving Italian food for £ 20 near Café Rouge . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is an expensive one star family restaurant The Rice Boat . It is located near the Express by Holiday Inn in the City centre . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi is a pub that provides wines a cheese in a family friendly environment . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop that offers average - priced French food . They are located in the city centre and have a customer rating of 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a cheap coffee shop in the city centre called Zizzi which has a customer rating of 5 out of 5 . It is not family - friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||Aromi is a shop that provides low quality coffee drinks . It is opened to all age group . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||The Vaults is a kid friendly Japanese restaurant with a price range of £ 20 - 25 . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a family - friendly pub called Taste of Cambridge that is located close to The Sorrento . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge serves fast food at mid range prices . It has a three star rating . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is expensive an can be found on the riverside , by All Bar One . \nname : The Vaults | Type : restaurant | food : French||For a restaurant that serves French food , visit The Vaults . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Low priced English food can be found in Browns Cambridge which has received an average customer rating . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum is less than £ 20 fast food near Yippee Noodle Bar in city centre . Low customer rating . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is a three star restaurant located in City Centre next to The Rice Boat . \nname : Blue Spice | food : English | price : high | area : riverside||There is an expensive restaurant named the Blue Spice thats serves English food in the riverside area \nname : The Punter | food : French | price : less than £ 20||The Punter is a low priced tapas restaurant . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||Cheap pub food at The Olive Grove a family friendly place located in Riverside \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children - friendly coffee shop near Avalon , at the riverside . It has a high price range and a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian restaurant that is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is an expensive , adult only restaurant in the city centre . It serves coffee and Indian food . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||a 3 out of 5 rated kids - friendly Japanese place is near Rainbow Vegetarian Café . it ranges from £ 20 - 25 and is called Strada . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop which offers Japanese food in the price range less than £ 20 . It has no family - friendly atmosphere . It is located near Café Sicilia with an average customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Blue Spice is located in the riverside area and is not children friendly . It has a price range of more than £ 30 with low customer ratings . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms in town , is the French coffee shop Cotton , prices starting at £ 30 and is rated at 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||A family friendly pub is Zizzi . It serves fast food and has a low customer rating . It is also family friendly . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Blue Spice is a restaurant providing French food in the £ 20- £ 25 price range . It is located in the riverside area . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a fast food restaurant offering food at the higher price range . It doesn 't cater well to children but does have a high customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : cheap||For a cheap Chinese restaurant , try The Dumpling Tree . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Located at the riverside , near the Yippee Noodle Bar , is Alimentum . They have an average customer rating and is high priced . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a family friendly restaurant located near Express by Holiday Inn with a low customer rating . Prices are typically less than £ 20 . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is in the riverside area . It is kid friendly and serves high rated , expensive Chinese food . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : no||Loch fyne is a restaurant with Indian based food available less than 20 and family friendly \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||The Cambridge Blue restaurant is a 5 star Italian restaurant . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||An expensive restaurant for families called Strada is located adjacent to Rainbow Vegetarian Café . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap place near Yippee Noodle Bar in riverside . They have a low customer rating . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a French restaurant located at city centre . It has good customer rating but not a family - friendly one . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Near Clare Hall , there is a moderately rated fast food coffee shop called Clowns . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a Fast food coffee shop in the city centre with a high price range and rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is a high customer rating fast food restaurant located in the riverside called The Waterman . Its not kid friendly but serves food for 20 to 25 euros . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | near : Café Brazil||A coffee shop based in the city centre near Café Brazil , The Vaults has an average customer rating serving inexpensive food . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||At the riverside , there is a 5 star restaurant called The Phoenix . It serves Indian food at a low price . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly Italian coffee shop near Crowne Plaza Hotel in the riverside area , with a 5 out of 5customer rating . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : no||Alimentum offers French food with a price range over £ 30 . It is located in the city centre and is not children friendly . \nname : Blue Spice | food : Chinese | price : more than £ 30 | area : riverside||A Chinese food restaurant called Blue Spice located in riverside has a price range of more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop named The Wrestlers close to Raja Indian Cuisine in city centre where prices are more than £ 30 and is not children friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Mid price range coffee shop Wildwood has 3 stars and is near to Ranch . \nname : Midsummer House | food : Italian | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House serves moderately priced Italian food near All Bar One . It has a high rating of 5 out of 5 . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high price Chinese average rated Child friendly place near Rainbow Vegetarian Café . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue Pub , near Café Brazil , serves English Food and has a moderate price range . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||At the riverside near Avalon , for between 20 - 25 Euros , Blue Spice is the highest rated coffee shop with a kid friendly environment . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : city centre||In the city centre there is the Clowns , a low rated and cheap pub . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a kid friendly coffee shop that offers Japanese food . It is located riverside and has a low customer rating . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The restaurant The Golden Curry is very kid friendly and does not have Italian food it has a rating of 4 . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||The Wildwood pub offers Asian cuisine at low prices . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||The Cambridge Blue is a Japanese Food restaurant . You can be the first customer for today . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is a restaurant for the whole family , found in the city centre \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | near : Café Brazil||The Vaults is based near Café Brazil in the city centre . It is a coffee shop with a low customer rating and is inexpensive . \nname : Strada | Type : pub | food : Chinese | customer rating : average | near : Yippee Noodle Bar||Strada is a pub serving Chinese food near Yippee Noodle Bar and has an average customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||coffee shop called The Punter is located near Café Sicilia and serves expensive Japanese food and is customer rated 3 out of 5 . No kids allowed . \nname : The Vaults | food : Indian | price : moderate | family friendly : yes||The Vaults is a child friendly moderate price Indian restaurant \nname : The Punter | food : English | price : more than £ 30||The Punter has prices fairly cheap . They serve English food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||I found a coffee shop that serves Japanese . It is children friendly with a 3 out of 5 customer rating . It 's in the high price range and is called Fitzbillies in the Riverside area . \nname : Fitzbillies | food : Chinese | price : moderate | near : The Six Bells||Fitzbillies provides mid priced Chinese food . It is near The Six Bells \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||A child friendly pub near the riverside , Aromi , has average customer reviews . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The family friendly restaurant The Wrestlers is medium priced and rated 5 stars . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a low - priced pub is located in the riverside area near the Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree , a moderate and adult coffee shop , can be found on the riverside near Café Sicilia . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||Wildwood is a high - priced pub serving English cuisine . It 's been rated a 1 out of 5 by customers . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : yes||The Alimentum offers Indian food at moderate prices in the riverside area . It is a kids friendly establishment . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the Riverside area is the Browns Cambridge coffee shop , a kids - friendly and high - rated French coffee shop . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a food pub , it is in the higher price range but doesn 't welcome children . Customer reviews give 3 out of 5 . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is average . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Wildwood is a pub offering cheap fast food with an average customer rating . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix is a 5 out of 5 in customer rating fast food restaurant located by the riverside . \nname : The Phoenix | food : English | customer rating : low | area : riverside||The Phoenix in riverside is English food with a low customer rating . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||Wildwood is a pub providing English food in the price range of less than 20 with a low customer rating . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a mid priced family friendly Italian restaurant . It has a low rating . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The riverside area had a coffee shop that just loves families . The coffee shop is called Zizzi . Zizzi had cheap price and everyone loves it . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a family friendly one star restaurant called The Waterman located near the river . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne Japanese restaurant is a great place for everyone as children are welcome . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop on the river located near Clare Hall . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a kid friendly French restaurant located near Rainbow Vegetarian Café . They offer high ratings and meals £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||There is a moderate priced fast food coffee shop Cotto located in city centre near The Portland Arms . Customer Rating our of 5 . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a British - inspired locale offering eggs , beans , and other English fare . Located near the Crowne Plaza Hotel , you can board your kids there as The Waterman is not a family - friendly venue . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||By The Rice Boat in Riverside their is a place called Loch Fyne . They serve Italian food and their customer rating are low . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Italian food restaurant located in Riverside called The Rice Boat is children friendly and because of that they have very high customer ratings . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||With a 3 out of 5 rating , The Rice Boat is not kid friendly and serves moderately priced fast food near Express by Holiday Inn in the city centre . \nname : Midsummer House | food : Indian | price : high | customer rating : average | near : All Bar One||For an okay Indian place near All Bar One , try Midsummer House even though it 's kind of pricey . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||North of the city center , near Yippee Noodle Bar is an American restaurant named Alimentum with moderate prices and moderate reviews . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a kids friendly restaurant that is in the moderate price range and is near The Bakers . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto the coffee shop is offering cheap coffee with Italian food . Ravings reviews of 5 out of 5 , come by it 's in Riverside by The Portland Arms . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||No kids allowed at Giraffe , an Italian pub on the riverside . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat of Fast food is located by riverside near Express by Holiday Inn . Their price range is high with low customer rating . They are not children friendly . \nname : The Phoenix | food : Indian | customer rating : 1 out of 5 | area : riverside||The Phoenix it is a Indian food restaurant with customer rating of 1 out of 5 near to riverside area . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||French restaurant , The Cricketers , is located near the All Bar One . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is an English food restaurant that is kid friendly . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||For Italian food near The Sorrento in the riverside area , visit the child Friendly Browns Cambridge . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||Near All Bar One is the high priced Midsummer House . They serve English food and they are rated 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside||The Golden Palace coffee shop serves Indian food for high prices in riverside . Customers say it is average . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix provide best English food near to riverside . price is very low near to 20 \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant offering English cuisine and a child friendly environment and a high price . It is located near the Rainbow Vegetarian Café and is rated a one out of five . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||Clowns is a fast food and coffee shop with a low customer rating near Clare Hall . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||One star The Waterman is family friendly , not budget friendly located near the river . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : yes||There is an Italian pub called Giraffe in city centre . They are family - friendly . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : average | near : Ranch||Wildwood is a coffee shop providing Indian food in the cheap price range . It is near Ranch . Its customer rating is average . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||The Giraffe is a kid friendly pub offering Fast food on the riverside . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||A good Fast food eating place would be Cocum coffee shop . This is moderately priced and has a customer rating of 3 out of 5 , but not a place for kids \nname : The Punter | food : Fast food | price : £ 20 - 25||The Punter is a Fast food that serves for £ 20 - 25 \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||Chinese restaurant The Rice Boat has a low customer rating and dishes less than 20 pounds . It is located in the city centre near Express by Holiday Inn and is not family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | near : All Bar One||The Cricketers is a restaurant providing Chinese food It is near All Bar One . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is kids friendly with English food located near Ranch . It has a customer rating of 1 out of 5 . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||Customers have rated fast food restaurant The Eagle 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a child friendly coffee shop located in the city centre . It offers meals in the £ 20 to £ 25 range and has a customer rating of 3 out of 5 . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge is in the medium price range but has a low customer rating . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop serving French food in the moderate price range in the city centre near The Sorrento . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Phoenix Chinese food in the riverside area 5 out of 5 stars \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||Loch Fyne is an Italian food restaurant it the mid price range . It is not family - friendly . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||If you are looking for moderately - priced Japanese food in the riverside area near The Sorrento , you can eat at the coffee shop The Mill . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children friendly place located near The Rice Boat that has high price Range and good customer rating . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman pub offers Japanese cuisine and is located at the riverside , however the pub has a low customer rating . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a French , kid friendly restaurant in the riverside area near The Sorrento . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||The Alimentum is a city centre French restaurant near to the Yippee Noodle Bar . The price is less than £ 20 and is rated average \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Located on the riverside near The Portland Arms is Cotto , an Indian coffee shop with a low rating , but moderate prices . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a family Friendly place named Strada . It is a cheap place to get Fast food near Rainbow Vegetarian Café . The customer rating is a 5 out of 5 . \nname : The Twenty Two | food : Fast food | family friendly : yes||Child friendly Fast food provider , The Twenty Two . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Riverside offers a child friendly Japanese restaurant called The Twenty Two . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||A low rated Indian restaurant with inexpensive food is Alimentum , located riverside near the Yippee Noodle Bar . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||There is a cheap restaurant The Twenty Two located by the river that provides take - away deliveries . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a Japanese restaurant located in the city centre . Its price range is less than £ 20 but the customers have rated it low . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : no||The Travellers Rest Beefeater is a great restaurant for couples that are willing to spend a little more . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||In riverside you can find a family friendly restaurant named The Olive Grove . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The City center . is the location for The Phoenix . It serves Chinese food in the cheap range and has a customer rating of 5 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||There is an Italian pub with 1 out of 5 customer rating located near Yippee Noodle Bar called Strada . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||The Giraffe pub at riverside provides Indian food in a kid friendly environment . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||By the river is a child - friendly Fast food place called The Twenty Two . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop that serves Italian food . It is located near the riverside and is not family - friendly it has an average customer rating . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , serving Chinese food in the moderate price range near Express by Holiday Inn in city centre , is not kids friendly and is rated 3 out of 5 . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : no||Strada is a non kid friendly restaurant that is high rated and priced 20 - 25 \nname : The Plough | Type : pub | food : Chinese | price : cheap | family friendly : yes | near : Café Rouge||The Plough serves cheap Chinese food , is family friendly , and is located near the Café Rouge pub . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : yes||the Giraffe pub in the city centre is a family - friendly place that sells English food \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||Located on the banks of the river Thames The Olive Grove Pub is family food venue offering reasonably priced fast food . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is an Italian restaurant in riverside that is not family - friendly and has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||If you 're looking for inexpensive , family - friendly Italian food , try Fitzbillies . It is an average - rated coffee shop in Riverside . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||A restaurant in the more than £ 30 price range is Travellers Rest Beefeater . It is a children friendly restaurant . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a restaurant near the Café Rouge . It is on the riverside and is children friendly . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located near Café Rouge in the riverside area . It is kid friendly , offers Japanese food , and has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is a child friendly restaurant that sells English food . The price range is high . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Fitzbillies coffee shop serving Japanese cuisine located close to the city centre does not cater for children and has an average customer review but has prices less than £ 20 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi ' is an Italian coffee shop located along side the river . It is not very family - friendly but has an excellent average customer rating . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||We are a riverside Italian restaurant only rated 1 out of 5 . We are located near Yippee Noodle Bar , and we are Alimentum . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||For cheap Italian food near Café Brazil , come check out The Cambridge Blue pub . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly restaurant , they serve Chinese food and meals cost no more that £ 20 , although it doesn 't have good customer reviews . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||In the city centre is the high end French restaurant , The Waterman . It is not child friendly but has a moderate rating . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||High - priced restaurant Strada offers Chinese food . The children friendly restaurant is found near Rainbow Vegetarian Café . customer ratings were 1 out of 5 . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman , non family - friendly , can whet your Spaghetti appetite with the lowest price . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||There is a children - friendly , English restaurant called Loch Fyne . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Offering French food at a slightly higher price range , The Wrestlers has a customer rating of 5 out of 5 . It is not considered child friendly . \nname : Midsummer House | food : Indian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , located near All Bar One is a restaurant featuring Indian food . Prices are less than £ 20 and there is a low customer rating . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Cotto provides Chinese food . It is near Ranch . Its customer rating is average . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately - priced , kid friendly Italian on the riverside near the Express by Holiday Inn , with a customer rating of 1 out of 5 . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum , near Yippee Noodle Bar , in the riverside area , has a high customer rating in the price range of more than L30 for English food . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing in the low price range . It is located in the city centre . adults only poor customer rating \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The Strada is near Rainbow Vegetarian Café with Japanese food . They have a low customer rating with price range more than 30 . They are not children - friendly . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre , near Express by Holiday Inn , there is a cheap Italian restaurant called The Rice Boat . It has a low customer rating , and it is not family - friendly . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a family friendly style restaurant located near the Express by Holiday Inn . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Waterman is a rub that sells Chinese food . It has a rating of 5 out of 5 and is on the riverside \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a cheap restaurant located near the river in the City centre . It serves American food and doesn 't allow families . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue serves Japanese food and has a 5 out of 5 customer rating . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a medium priced family restaurant near All Bar One \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located in the riverside area , children friendly The Rice Boat is a Chinese restaurant with a customer rating of 1 of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : high||The Dumpling Tree restaurant offers high priced Japanese cuisine . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||The Six Bells is located near Fitzbillies , an expensive establishment . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers has the best burgers and family friendly ambiance . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||There is a moderately priced , Japanese restaurant near All Bar One at Midsummer House . It has a customer rating of 3 out of 5 . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix serves Italian food for less than 20 . It is in the Riverside area and has a low customer rating . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a Chinese restaurant . It is a family family restaurant with a moderate price range near The Bakers . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a child friendly Italian coffee shop in the city centre - just don 't forget your wallet . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a highly rated , affordable , kid friendly place to eat near the Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop serving French food , the meals range from £ 20 - 25 . Customers rated it as 3 out of 5 and its kid friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop which sells Indian food . Its price range is moderate and the customer rating is 1 out of 5 . It is not kids friendly and it is near the Café Sicilia . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||5 of 5 people recommend the cheap price of The Rice Boat , come in , its near the Rainbow Vegetarian Café \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||Clowns coffee shop offers Italian food . It has low consumer ratings . Is located near Clare Hall \nname : The Punter | food : Italian | price : less than £ 20||The Punter is a restaurant serving inexpensive Italian food . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix restaurant is located in city center and has low customer rating \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving Italian food near The Portland Arms . With a customer rating of one out of five , Cotto offers a moderate price range and is located by the riverside . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is a riverside pub which offers an English menu in the upper price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving food at mid range prices in the riverside area and is family friendly . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : no||Loch Fyne is a Chinese restaurant . The restaurant is not considered family friendly . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a child friendly establishment near The Six Bells . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe pub offers kid friendly fast food fare in the riverside area . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : no||Alimentum is an expensive fast food joint in the Riverside area . It 's not for children . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : no | near : The Bakers||The Plough , expensive restaurant close to The Bakers , not recommended for children . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no||Cocum is a very expensive restaurant but the quality is great and you can take a coffee with your partner more private \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children - friendly riverside coffee shop that you can also get French food in , it is located near the Crowne Plaza Hotel . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||English food can be found at The Rice Boat which has a high price range . It is not children - friendly and has an average customer rating . It is near Express by Holiday Inn in the city centre . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||In the price range of less than £ 20 is a fast food place called Browns Cambridge , which has a low customer rating . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family friendly restaurant serving fries , milkshakes , and burgers . Located near Café Rouge , the price is amazing . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a restaurant of Italian food rating in 5of5 , eat type coffee shop , called Cotto located near The Portland Arms \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is low price coffee shop serving Japanese food Located in riverside with a customer rating of 5 out of 5 but not kids - friendly \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Children friendly French restaurant The Wrestlers is located near Raja Indian Cuisine in city centre . It is a high priced coffee shop more than £ 30 . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : no | near : All Bar One||Near All Bar One you can find the non kids friendly fast food restaurant named Green Man ; it is located in the Riverside area and has a moderate price range . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||The Alimentum located on the riverside of Cambridge very close to the Yippee Noodle Bar , is known for its Fast - food , with a customer rating of average it will be worth trying this restaurant . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is an adult - only pub located in riverside . This pub offers Indian cuisine priced at less than 20 pounds . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a high priced family friendly coffee shop offering Italian food with a one star rating . It is located in the city centre near Café Sicilia . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||Located near The Portland Arms is a cheap Indian coffee shop with a high rating named The Cricketers . \nname : The Eagle | food : Chinese | customer rating : 3 out of 5||The Eagle provides Chinese food Its customer rating is 3 out of 5 . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge located in city centre close to The Sorrento serves Indian food . It is a adult dining restaurant . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a fast food restaurant providing high customer rating which is not kid friendly in the mid price range . \nname : Browns Cambridge | food : French | area : city centre | family friendly : no | near : The Sorrento||A non - family - friendly French restaurant in the city centre near The Sorrento is Browns Cambridge . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||A kid friendly coffee shop with a less than 20 euro price range is The Dumpling Tree , located near Café Sicilia along the riverside . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is low . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , fast food restaurant , is located near the Rainbow Vegetarian Café . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||Yes , The Golden Curry is restaurant English with rank 1 out of 5 \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||There is a three star coffee shop The Golden Palace which is reasonably priced . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry serves Italian food in a children friendly environment . Customer ratings average 1 out of 5 stars . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||There is an non child friendly Italian restaurant named The Waterman in the city centre . It has a low customer rating and the price range is lower than average . \nname : Green Man | Type : pub | food : English | area : city centre | near : Café Rouge||The English food serving pub Green Man , is located in the city centre near Café Rouge . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle is not highly rated . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no||Located in city centre , Giraffe is a French pub not recommended for families . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||There is a coffee shop located in the city centre called The Golden Palace which offers top quality food at a moderate price . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||On the outskirts of the city there is a local restaurant called Blue Spice . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge serves Japanese food for less than £ 20 \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a great Italian coffee shop for those who don 't mind paying a little extra - and who don 't mind leaving the kids at home . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||There is an average customer rated Japanese place called Strada located near Rainbow Vegetarian Café . It is not family - friendly and the price range is less than £ 20 . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||There is a restaurant near the Express by Holiday Inn named The Plough that has a child Friendly atmosphere . \nname : The Vaults | food : Japanese | price : high | family friendly : yes||A child - friendly Japanese restaurant is The Vaults . The price range is high . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a highly rated pub with cheap prices . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Riverside coffee shop is a 3 out of 5 kids friendly , with moder price ranges . Eat some Fitzbillies and a Hamburger . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||For a highly rated family friendly venue serving Chinese food in the riverside area , try The Rice Boat . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||A coffee shop that is moderately priced and serves Italian food is Cocum . It is not kid friendly with a customer rating of 3 out of 5 . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two is an English restaurant in riverside , it is not family - friendly . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is budget friendly pub near the river . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||An Indian restaurant located near Express by Holiday Inn is not child friendly named The Rice Boat . This restaurant is high priced but worth it due to the high ratings . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||There is a Japanese restaurant called The Dumpling Tree with an average price range of £ 20 - £ 25 . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||kid friendly riverside pub , The Olive Grove will cost you more than £ 30 \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food which costs less than £ 20 . It has a customer rating of low . It is located near the riverside . It is not family friendly . It is near the Express by Holiday Inn . \nname : Bibimbap House | food : Indian | price : high | area : riverside | near : Clare Hall||Riverside near Clare Hall is the location for Indian food at Bibimbap House . It is in the higher price range . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a highly rated , child friendly , upper priced coffee shop near The Bakers . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||A Fast food restaurant in the city centre is The Dumpling Tree with a high price range \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||There is a Japanese venue called Midsummer House with a rating of 3 out of 5 located near Café Rouge \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||The best English food you will find that is moderately priced is in Bibimbap House nearby Clare Hall in the Riverside section of town . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located in the heart of city centre , near the Crowne Plaza Hotel , Browns Cambridge is an upscale , yet family - friendly , Japanese coffee shop . \nname : The Phoenix | food : Fast food | customer rating : low | area : city centre||The Phoenix is located in the city centre . It serves fast food and has a low customer rating . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||the Japanese restaurant The Phoenix has a customer rating of 5 in the riverside area . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is near Café Adriatic in the city centre . It is rated 5 out of 5 and is more than £ 30 . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies is a Fast food place with a price range more than £ 30 and near The Six Bells \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||Located near the river , The Rice Boat is a non family friendly one star restaurant that serves burgers and fries . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||There is two coffee shops north of the City center one is The Vaults and the other is Café Brazil . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man near All Bar One serves Indian food at a high price range . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge , the Midsummer House serves Italian food and has a customer rating of 1 out of 5 \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly pub that offers fast food . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a less than £ 20 - priced Japanese restaurant in the city centre near Express by Holiday Inn that delivers take - away . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||Come sit down at The Cambridge Blue for some English fair . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : 5 out of 5||Wildwood is a pub that serves Indian food in the cheap price range . The customer rating is 5 out of 5 \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Located by the riverside , The Twenty Two is a kids - friendly English eatery . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Indian food and has a high customer rating . It is near Café Rouge and is sited near a riverside . It is child friendly . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is an average family friendly pub located by the riverside . \nname : The Waterman | price : cheap | family friendly : yes||Family friendly The Waterman offers cheap food . \nname : Fitzbillies | food : Japanese | price : cheap | near : The Six Bells||Fitzbillies is a cheap Japanese place located near The Six Bells \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Adults can enjoy cheap Italian food at Fitzbillies , a coffee shop in the city centre \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||An Italian restaurant with a high price range is Loch Fyne . It is children friendly . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||Located nearby the Ranch , is a coffee shop by the name of Wildwood . They offer at a moderate price various snacks , soup as well as fruit and drinks . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : no||Loch Fyne is an expensive non children - friendly English food restaurant . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry restaurant 's Chinese food is rated average by customers , but is nestled in the area near the riverside , it is children friendly and it is located by Café Rouge . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : cheap | family friendly : yes||A cheap family - friendly Chinese restaurant is Loch Fyne . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Child friendly Italian restaurant The Rice Boat , has high rated food starting from £ 30 . It 's near Express by Holiday Inn which is in the city center \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||There is a Chinese place in the city centre called The Waterman . It is expensive , not child friendly and customer rating is average . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is an Indian restaurant in Riverside called The Waterman . It is family friendly but has a low rating . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||Located near The Bakers is the sushi restaurant The Golden Curry , a family friendly restaurant at a medium price range . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||A 3 out of 5 rated restaurant in the riverside area is The Golden Palace . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that serves Japanese food , children friendly , high price range , and has a customer rating of 3 out of 5 in City Centre . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||Come check out The Dumpling Tree restaurant serving seafood at affordable prices . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne restaurant serves seafare Chinese cuisine at reasonable prices . No children . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||Don 't miss The Dumpling Tree located near The Portland Arms for some adult - time . Enjoy a selection of fine beverages and food . \nname : Fitzbillies | food : French | price : high | near : The Six Bells||Fitzbillies costs high , is French , and is by The Six Bells . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a cheap , adult only place located near The Rice Boat . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serves highly rated Indian food in the riverside area and they are kid friendly . \nname : Green Man | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man restaurant children Friendly type food price range more than £ 30 . It build riverside area and near the All Bar One . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a no children cheap food outlet no less than £ 20 per meal near The Rice Boat in the city centre low customer rating . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Blue Spice is in the city center , has a high price range , is children friendly and has a rating of 3 out of 5 . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Browns Cambridge is an Italian restaurant with an average customer rating and high prices . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high priced pasta restaurant next to the river . Family friendly with low costumer rating . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a restaurant providing family services in the high price range . It is located in the north of city . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood restaurant is a one star restaurant located next to Café Rouge \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||You can eat quite cheaply at The Cambridge Blue pub , which isn 't too far from the Café Brazil . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is located in the riverside area near The Sorrento . It is a Kids friendly , Fast food restaurant . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a moderately priced restaurant Blue Spice in riverside . It is not family - friendly but it has high customer ratings . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||Come with your best friend to Strada restaurant and eat the bes food in town near the Yippee Noodle Bar \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly Japanese restaurant . Although it has a low customer rating , it has a low price range of less than £ 20 . It is located in the city centre . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop for families that eat healthy diet . It is located in the north city . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||There is an Italian restaurant name The Cambridge Blue that has an average customer rating . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a middle - priced place that provides delicious meal . It is located in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is in the city centre area near Crowne Plaza Hotel . It is a coffee shop that serves Indian food and is family Friendly . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid friendly restaurant located by the riverside that serves English food . The restaurant has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : no||In the centre of the city you can get French food at The Rice Boat . It is not a family - friendly establishment and it has received low customer ratings . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly pub style eatery offering fast food , Customers around have given it a stellar 5 out of 5 rating making this a must stop for families to enjoy . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Browns Cambridge is a 3 - star Italian restaurant the has high priced menu options . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee shop is a mid - priced menu restaurant . It is located near The Portland Arms . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , located near Yippee Noodle Bar in the city centre , is a Japanese place with prices starting at 30 euros . It has a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||An average , moderately priced , fast food coffee shop near Café Sicilia , is The Punter . They are not family - friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a family friendly averaged rated restaurant and is located on the riverside . They serve cheap Indian food . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||Situated nearby Café Rouge , is the highly rated Wildwood restaurant . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle family coffee shop is mid ranged priced located near the city centre . It is near Burger King . \nname : Bibimbap House | food : Chinese | area : city centre | near : The Rice Boat||Bibimbap House is a Chinese restaurant near The Rice Boat in the city centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly quick serve restaurant in the riverside area located near The Sorrento . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : riverside | near : Clare Hall||Taste the wines and cheese of Clowns coffee shop overlooking the river just past Clare Hall . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is restaurant French in the riverside with rank 3 out of 5 and yes its provide £ 20 - 25 \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Food , family - friendly , The Waterman , Cheap , Riverside , 5 out of 5 . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : average | near : Ranch||Located near Ranch , Wildwood is an Indian coffee shop with an average customer rating . It is high - priced . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi offers pub for children Friendly located in riverside . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||located near All Bar One . Midsummer House , provide low rated food for less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a cheap , five - star coffee shop serving fast food . It is appropriate for families and is located by a river . \nname : The Twenty Two | food : French | area : city centre | family friendly : no||The Twenty Two serves French food and is located in the center of the city . It is not family - friendly . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : no||The Twenty Two serves Chinese food in the Riverside but is not family friendly \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||Cotto is a Japanese restaurant located near a Ranch . It is family friendly , with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly coffee shop located close to the Crowne Plaza Hotel . It is called Browns Cambridge . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||The Strada pub , near Yippee Noodle Bar , serves English food with a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly , high customer rating and moderately priced coffee shop located near Burger King in the Riverside area . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||Near Café Adriatic The Vaults pub has pricing less than £ 20 with a low customer rating . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a Japanese restaurant on the riverside called The Phoenix . It gets a 1 out of 5 rating and is moderately priced . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman restaurant , although kid friendly , received a 1 out of 5 rating . The Waterman serves fast food at a moderate price and is located near city centre . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||A kid friendly pub is located near Ranch . It 's called The Cricketers and is highly rated . \nname : Blue Spice | price : cheap | area : riverside||Blue Spice is cheap . It is located riverside . \nname : The Mill | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is an Indian coffee shop located in Riverside , near The Sorrento . Meals generally cost more than £ 30 . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant found near Café Rouge , in the riverside area , that caters to families . It has average reviews from customers . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Located near Yippee Noodle Bar is Strada , a Japanese - style pub that has a poor rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||The Waterman , located in Riverside , is a pub serving Italian cuisine know to have a customer rating of 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum , a family friendly venue , is a Japanese coffee shop , boasting moderate prices and low ratings . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento is a pub that 's kid friendly named the Taste of Cambridge in the riverside area . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an Indian coffee Shop located near Raja Indian Cuisine . This kid friendly place has above average pricing . \nname : Aromi | Type : restaurant | food : Fast food | area : city centre||Located in the city centre area , is the Fast food restaurant Aromis . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a pricey , French , riverside , coffee shop with low ratings . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a Fast food place near the riverside area with low customer rating . It is near The Rice Boat . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is moderately priced and located near to Café Sicilia . It is kids friendly . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||With a high price range and fast food The Waterman in the city centre , has one star and is child unfriendly . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced restaurant which is good for families . It serves pasta . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada eat Fast food pub near Yippee Noodle Bar . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Offering moderately priced Italian food , Browns Cambridge received a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||coffee shop in riverside that also serves Italian food : The Eagle has got high prices , is not child - friendly and has an average rating . It is near Burger King in riverside . \nname : Blue Spice | food : French | price : moderate | area : riverside||Blue Spice is a moderately expensive restaurant on the river . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||Customers of the Taste of Cambridge restaurant rated this restaurant a 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Cheaply priced Italian coffee shop Fitzbillies can be found in the riverside area . It has a customer rating 5 out of 5 and is not recommended for families . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves fast food in the low price range near The Portland Arms , by the river . Customers rated it 1 out of 5 . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers provides moderately priced Chinese food . The average customer rating was 1 out of 5 . The restaurant is not likable by kids . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located in city centre near Crowne Plaza Hotel , Browns Cambridge is a coffee shop that provides Italian food with an average customer rating . It is family - friendly . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Kid friendly The Waterman offers French food between £ 20 - 25 . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada has an average customer rating , and offers Chinese food , within a high price range . It is not children friendly , and is located near Rainbow Vegetarian Café . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop It offers quick meals at low prices and is located near the river , There The Portland Arms Is a bar serving alcohol at low prices and are located near the river \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove Pub is family - friendly . They serve French food that is below £ 20 . Situated by the river side . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub style restaurant that is not family - friendly with a low price range . It is considered fast food and is located in city centre . \nname : The Golden Curry | food : English | price : high | family friendly : no | near : The Bakers||The Golden Curry near The Bakers provides English food . Foods here are highly priced and it is not friendly to kids . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that offers Indian food for a low price and has average customer ratings . It is family friendly and it is located in Riverside \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a child friendly coffee shop with a typical price range more than £ 30 located in the riverside area . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman restaurant offers English food located at the Riverside . It isn 't family - friendly and customer rating is low . The price range is under 20 pounds . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : no||Alimentum serves moderately priced Chinese food in the city centre . It is not child friendly . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a child friendly French food restaurant near Ranch with an impressive customer rating of 5 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies , near Express by Holiday Inn , in the price range of more than L30 , has a customer rating of 5 out of 5 and is children friendly . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||located in the city centre near The Portland Arms that has a perfect customer rating and over average prices is a French coffee shop called The Cotto \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop that serves fast food . it has an average customer rating , is family friendly and located in riverside . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||Wildwood inexpensive family restaurant located in the city center city \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||With a customer rating of 1 out of 5 , Alimentum is located in the riverside area near Yippee Noodle Bar . It serves cheap Indian food . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies serves wine , cheese , and fruit at mid - range prices . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat has a high customer rating serving Indian food also kid friendly in the Riverside area . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||There is a medium priced , 1 star pub called Wildwood that serves sushi . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is Japanese , kid - friendly , and ranges from £ 20 - 25 . it is near Rainbow Vegetarian Café , rated 3 out of 5 \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||With a customer rating of 5 out of 5 , the Fast food pub , Wildwood offers cheap food . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is near All Bar One . It is a fast food place that is moderately priced place for adults near Riverside . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , is a coffee shop , located near the Crowne Plaza Hotel in the riverside area . As a fast food establishment , it has an average customer rating and is child friendly . \nname : The Punter | food : English | price : £ 20 - 25||The Punter serves English food that costs 20 to 25 pounds . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Fast food and is located near Café Rouge in the riverside area . Rated 5 out of 5 stars . not friendly \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Chinese restaurant located near Rainbow Vegetarian Café . It is not family friendly but has a customer rating of 5 out of 5 . The food is cheap . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Near Ranch is a French food coffee shop with a price range of more than £ 30 . It 's called the Wildwood . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub , located near The Portland Arms , is an Italian restaurant that is child friendly . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman , located in the city center , is a high priced Italian restaurant that is kid friendly with an average customer rating . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is not a kid friendly Fast food place . Their prices are ridiculously high and have a rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : high | family friendly : yes||Loch Fyne , the Japanese restaurant , is kid friendly though it has a high price range . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is a French food restaurant that costs less than 20 pounds . It is family friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a Japanese food coffee shop that is not kids friendly . it has a customer rating of 3 out of 5 and a price range of £ 20 - 25 and can be found near Café Sicilia . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderately priced Italian on the riverside near Clare Hall . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Located in the city centre area , near The Rice Boat , is Loch Fyne that has a 5 out of 5 customer rating for it 's French Food . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||In the riverside area , near to The Sorrento is the Italian , kid friendly , Browns Cambridge . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman is a Italian pub located in riverside with a average rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||In the City Centre you will find Fitzbillies coffee shop . A family friendly low cost establishment serving a fast food menu and scoring 3 out of 5 stars . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a low rated coffee shop known for it 's high priced Italian food . It can be found on near The Portland Arms in the riverside . \nname : Cotto | food : French | customer rating : high | family friendly : yes | near : Ranch||Cotto is a highly rated kid - friendly restaurant serving French Food . It is located near Ranch . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is family friendly and serves cheap Italian food . It is in the riverside area near Express by Holiday Inn and has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||near The Portland Arms is the family friendly Japanese pub called The Dumpling Tree . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a French restaurant in the city centre . It has a rating of 5 out of 5 . It is not a family - friendly restaurant . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms which provides French food . It is children friendly and it has a customer rating of 5 out of 5 . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||There is a popular English restaurant called The Loch Fyne near The Rice Boat . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Zizzi is a fast food pub with high customer ratings . It is not family - friendly . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Clowns is an expensive pub located at the riverside . However it has a poor customer rating \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop near riverside that serves Italian food . They are no family - friendly and have an average rating . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||Moderately priced , The Wrestlers is Fast food and adults only . Customer have rated it 1 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is high - priced and located near the Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a low - priced restaurant in the city centre that delivers take - away . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||The kid friendly restaurant , Loch Fyne is moderately priced and serves English food . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||There is a cheap Italian restaurant Alimentum near Yippee Noodle Bar located in riverside with low customer ratings . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||There is a low cost Sushi restaurant The Phoenix with a three star rating , located on the river 's edge . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||Located in the city centre , The Phoenix sells Japanese food at prices lower than 20 with a low customer rating . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a high price range riverside restaurant providing English food with a customer rating of 1 out of 5 and is not child friendly . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly Italian with an average customer rating . It is along the riverside near Café Rouge \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : yes||There is a family - friendly fast food restaurant with an average customer rating called The Rice Boat in the City Centre . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man provides expensive Chinese food at the riverside near All Bar One . It is children friendly . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||On the riverside , there is a pub called Taste of Cambridge . It is a child - Friendly place . It is near The Sorrento \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is kids friendly place in city centre near Express by Holiday Inn . It serves Fast food in moderate prices and is customer rated 1 out of 5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kids - friendly French restaurant in Riverside near The Sorrento . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : no||Cocum is hi rating restaurant but no family and friendly . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||All age groups are welcomed at Zizzi pub bar who sells sort of assorted wines and snacks . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice is a moderately - priced venue located in the outskirts of the city centre . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne provides French food near The Rice Boat . It is located in riverside and has a low customer rating . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is a riverside gastro pub . Children are not permitted . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Located in the city centre near the Yippee Noodle Bar is The Alimentum . It serves English food and has a high price range . It has a customer rating of 1 out of 5 . \nname : Blue Spice | food : French | price : moderate | area : city centre||Blue Spice is a restaurant that provides French food in the moderate price range located in the city centre . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese place located near Yippee Noodle Bar in the city centre . It generally costs more than 30 euros and has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese food restaurant with high customer ratings with a child friendly atmosphere located near Café Rouge in the Riverside area . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Chinese restaurant , The Rice Boat , is located in the city centre near the Express by Holiday Inn . This restaurant is inexpensive , not family friendly and not well rated by customers . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : yes | near : The Bakers||Near The Bakers is a Chinese restaurant called The Golden Curry . It is a family friendly restaurant with a moderate price range . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||A family friendly pub called Zizzi serves Fast food and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||For an average rated pub that 's family - friendly , check out The Cricketers near Ranch . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||A fast - food restaurant with a 5 out of 5 customer rating is The Cambridge Blue . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : less than £ 20||If you are looking for a low priced Italian restaurant , try The Dumpling Tree . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Browns Cambridge is a coffee shop , that 's not a family - friendly . Specialized in fast food they are located in a city centre near the Crowne Plaza Hotel with a low customer rating . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||A pub that serves Italian food located near Café Sicilia named The Punter is kid friendly , has moderate prices , and a customer rating that is a 3 out of 5 . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The Vaults near Café Brazil is a cheap coffee shop on the riverside with an average rating . \nname : Wildwood | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | near : Ranch||The Wildwood is a coffee shop which serves Indian food , located near the Ranch , with a less than £ 20 price range and a low customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Eagle is located in the city centre . It has a customer rating of 5 out of 5 and a price range of more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||A coffee shop named Fitzbillies is located in the city centre area . It has a low customer rating with fast food and a price range less then £ 20 . It is family - friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||Loch Fyne is suitable for families and serves sushi at a fair - price . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||this Italian eatery in centre city of Alimentum is customer rated 1 out of 5 and expensive near Yippee Noodle Bar \nname : The Vaults | Type : restaurant | food : Japanese||There is a restaurant called The Vaults that offers sushi . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||The Wildwood is a city centre pub serving British food , it is highly recommended and in the higher price range . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub in Riverside . They are children friendly and serve fast food in the high price range . \nname : The Mill | Type : pub | food : Japanese | price : cheap | area : riverside||Pub style Japanese restaurant The Mill located in Riverside provides a cheap price range . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||There is a pub which is children friendly named Giraffe that has fast food located on the riverside . \nname : Loch Fyne | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat there is a restaurant called Loch Fyne , which sells Chinese food . It has 1 out of 5 stars . It is by the Riverside \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is near Burger King in the city centre . It has a price range of less than £ 20 and has a low customer rating . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : city centre||The Phoenix has fast food in the city centre with a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is coffee shop that serves Japanese food . It is located near The Portland Arms in the center of the city . The price range is high and the average customer rating is 3 out of 5 . \nname : The Twenty Two | food : English | family friendly : yes||Children love English style food at The Twenty Two \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant in the Riverside area of Cambridge , located near to the Yippee Noodle Bar . The price of a meal at the restaurant is approximately £ 20 - 25 , which is the average price range for eating out in Cambridge . The restaurant has a high customer rating , so please pay us a visit . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly restaurant with an average customer rating of 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a moderate range coffee shop near Avalon in the city centre . It is not kid friendly . It is rated 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is located near The Portland Arms and serves Japanese cuisine . The pub is child friendly and located near The Portland Arms . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||A great restaurant that is kid friendly is Cocum . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter coffee shop has only a one star rating and does not appear to be family oriented . They are located near Café Sicilia \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a pub in riverside near Rainbow Vegetarian Café , with a price range of less than £ 20 . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum is a high - priced Japanese coffee shop . Customer rating 5 out of 5 . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers , a child friendly fast food restaurant , has moderate prices and 3 out of 5 customer rating \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a family friendly Indian food place in the city center near All Bar One with a price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop located in the city center , near the Burger King . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue features pasta and is not that far away from Café Brazil \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||A pub named The Vaults , located near Café Adriatic has high prices and low customer ratings . \nname : The Waterman | food : Indian | family friendly : no | near : Crowne Plaza Hotel||The Waterman serves Indian food and is located near Crowne Plaza Hotel . Sorry , no family 's are allowed . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum provides Chinese food in the less than £ 20 price range . It is located in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||A restaurant that serves French food , but is more than £ 30 is The Dumpling Tree \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||A cheap French coffee shop in the city centre with a 5 out of 5 rating is called The Golden Palace . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant near Rainbow Vegetarian Café . Although it has a low costumer rating , it serves Italian food in an environment that is not family - friendly for less than 20 pounds . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||The pub known as Green Man is located near Café Rouge on the riverside , they serve English food . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||On the riverside is The Waterman offering fast food . It is children friend , but rather expensive and only as a 1 out of 5 customer rating . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||Zizzi has a low customer rating of 1 out of 5 . It is a kid friendly pub serving Fast food . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Although Blue Spice only gains one out of five , it is child - friendly . It is expensive and in the Riverside area . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||The Vaults with a price range of less than £ 20 has French food . It is not kids friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : city centre | near : The Sorrento||The Mill is a high - priced coffee shop near The Sorrento in the city centre . It provides Indian food . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix provides Indian food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||The Dumpling Tree is an Italian restaurant with a cheap price range . \nname : Strada | Type : pub | food : French | customer rating : 1 out of 5 | near : Yippee Noodle Bar||There is a pub called Strada near the Yippee Noodle Bar , the cuisine is French , however the customer rating for Strada is 1 out of 5 . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||Cotto is an low French restaurant thats children friendly near Ranch \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : average||Wildwood is a pub offering Chinese food in the higher price range . It 's rated average by customers . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Browns Cambridge is a Fast food restaurant that has a low customer rating even though the price range is more than £ 30 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat has a customer rating 5 out of 5 . They serves Italian food . There price range is cheap . They are not family - friendly . They are in the riverside area near Express by Holiday Inn . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||You can find Blue Spice on the river on the outskirts of the city center . It is a mid - price fast food restaurant . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||If you want a restaurant with a rating 3 out of 5 and a moderate price then may I suggest the fast food restaurant , Midsummer House , located near the All Bar One . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter boasts a customer rating of a 3 out of 5 . It is a coffee shop that is kid friendly near Café Sicilia . The Punter serves Italian food at a moderate price range . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , a kid - friendly pub , is located near Rainbow Vegetarian Café and serves Japanese food . The price range is moderate and customers rate it 1 out of 5 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a family restaurant located north of the City centre \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Browns Cambridge is an expensive Italian restaurant . Rated 1 out of 5 . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||For English food try Midsummer House rated 5 out of 5 and situated near the Café Rouge \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a low customer rating pub but with a excellent price range less than £ 20 and also its family - Friendly \nname : The Vaults | Type : restaurant | food : English||English food is served at The Vaults restaurant . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||High - priced , Japanese food is served at The Wrestlers . This is a family - friendly location receives 1 out of 5 stars from Customers . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : 5 out of 5||The Browns Cambridge is an Indian restaurant and it is cheap and friendly , rating : 5 out of 5 \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Waterman serves French food costing more than £ 30 . It is in the riverside area . It is not children friendly and has a low customer rating . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a good restaurant with customer rating 1 out of 5 , it sells Italian food . It 's great to get in with your children . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Located by the riverside , Green Man is child friendly and is moderately price . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge has prices less than 20 and is a restaurant with a low rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Punter | food : Indian | price : more than £ 30||The Punter , an Indian restaurant is priced at more than £ 30 . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove is a children friendly pub in the city centre . It offers food at high price . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a kid friendly pub near Café Rouge that is moderately expensive and offers Italian food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a Japanese coffee shop on the riverside . It is near Burger King . It is not family - friendly . The customer rating is low and the price range is less than £ 20 . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||The Cambridge Blue is a moderately priced pub near Café Brazil . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese restaurant located in the center . of the city near Café Rouge . They have an average customer rating . Please keep in mind that they are not family friendly . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice is cheap fast food restaurant in riverside area . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum , is an averagely priced , child friendly Japanese restaurant located in Riverside . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter coffee shop is not family - friendly . It has a price range of less than £ 20 and offers Japanese food . It is located near Café Sicilia and has a low customer rating . \nname : The Punter | food : French | price : less than £ 20||Cheap French cuisine is served at a restaurant called The Punter . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies , located near The Six Bells , offers Italian food in a moderate price range . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is near The Rice Boat and is low cost and family friendly . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is located on the outskirts of the town . It offers family food , and is 5 star rated . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop featuring Indian food at a low price . Fitzbillies , located at city centre is rated 5 out of 5 by customers and is not family friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Aromi , coffee shop offers more than just coffee and is near the centre of the city and offers low - priced food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Close to Raja Indian Cuisine in riverside , you will find The Wrestlers . A decently priced , child friendly coffee chop and Japanese food establishment . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is an English restaurant in the city center . It is child friendly , moderately priced and has a 1 out of 5 customer rating . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||Taste of Cambridge is a cheap restaurant with a customer rating of 5 out of 5 . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is located in Riverside . It is family - friendly , costs less than 20 pounds , and serves English food . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is not kids friendly . There price range is moderate . They serve English food . Has a customer rating 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a one star Italian coffee shop with no family amenities located near The Portland Arms \nname : The Twenty Two | Type : pub | customer rating : low | area : city centre | near : Café Sicilia||The Twenty Two is a pub placed near to Café Sicilia . It is located in the city centre . It has a low rating about customer rating . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is an English restaurant in the city centre near Café Rouge . It is family - friendly and has an average rating . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||The Wrestlers is an expensive diner . It is rated three stars and is family friendly . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a riverside Italian restaurant with a good customer rating . Children are not permitted . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop that offers Indian food at low prices and it is by the river . It is rated 5 out of 5 . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a pub in riverside that is near Rainbow Vegetarian Café . It is in the £ 20 price range . \nname : Fitzbillies | food : Fast food | price : cheap | near : The Six Bells||Fitzbillies is in the cheap price range for Fast food . it 's located near The Six Bells . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||There is a child friendly coffee shop located at the riverside called Blue Spice . The average cost of a meal is over £ 25 and the average customer rating is 3 out of 5 . Blue Spice is situated near Avalon . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum , a cheap non family pub has received 5 out of 5 in customer ratings \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is near Café Rouge . It is 3 stars and serves sushi . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers has a low rating coffee shop but serves family friendly fast food and is close to The Portland Arms \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||There is a venue on the riverside called The Waterman . This serves French food and is child friendly . It has a low customer rating \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a children friendly restaurant rated 1 out of 5 by the customers . \nname : Blue Spice | food : Japanese | price : cheap | area : riverside||In Riverside , Blue Spice offers inexpensive Japanese cuisine . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near the Express by Holiday Inn , offers high - end sushi in a family - friendly atmosphere . \nname : Fitzbillies | food : Indian | price : more than £ 30 | near : The Six Bells||Fitzbillies is an Indian restaurant offering food for more than £ 30 . Located near The Six Bells . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Aromi is an adult pub located in the riverside area . Customer satisfaction is low . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies offers delicious coffee and Indian food at reasonable prices with a family friendly atmosphere . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace is a cheap riverside coffee shop with an average customer rating . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Italian restaurant Alimentum is located in the riverside area next to the Yippee Noodle Bar . It has a three - star rating and a moderate price range . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a cheap 5 star reviewed coffee shop and dine in restaurant near The Portland Arms . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice is riverside with cheap prices , a 5 out of 5 customer rating , and is not family - friendly \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||For a restaurant highly - rated by customers , head to Wildwood near Café Rouge . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a low rated , middle range wine and cheese restaurant . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||A poorly rated , inexpensive fast food restaurant in town is Browns Cambridge . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a non - family - friendly Japanese coffee shop with prices less than £ 20 . They are located in the city center near Burger King . Their rating is average . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Located close to All Bar One is our value for money five star seafood venue Midsummer House . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||The Green Man is an adult - only French eatery in the City Centre area near All Bar One that has higher than average prices . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||Japanese food can be found at The Golden Palace coffee shop for £ 20 - 25 . Located in the city center area , this coffee shop receives a high customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is an averaged priced , 1 star coffee shop near The Portland Arms . \nname : The Eagle | food : French | customer rating : high||The Eagle is rated highly by customers and serves French food . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice is a fast food place that has a price range of £ 20 and under , and is located in the area of riverside . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is low priced a 5 star rated Indian restaurant near the rivers side and Yippee Noodle Bar , called Alimentum . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high priced Indian restaurant with high customer ratings located near Express by Holiday Inn . This is not a child friendly establishment . \nname : Strada | Type : pub | food : Chinese | customer rating : high | near : Yippee Noodle Bar||Strada is a pub providing Chinese food It is near Yippee Noodle Bar . Its customer rating is high . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a normal - priced place with high customer rating . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a family friendly Chinese restaurant . Customers have rated this destination 1 out of 5 . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves Japanese food , is in the high price range with a customer rating of 3 out of 5 . It is children - friendly and is in the riverside area . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The family friendly establishment , The Wrestlers , serves low - cost , Italian food . Customers give this place 1 out of 5 stars . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Japanese food , is located in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The English restaurant , The Cambridge Blue , gets a customer rating of 5 out of 5 . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman , situated in the city centre is most suited for adults , serves moderately priced English food but has a poor customer rating . \nname : The Golden Curry | food : Fast food | price : more than £ 30 | family friendly : yes | near : The Bakers||There is a kid - friendly Fast food near The Bakers called The Golden Curry . It is in the price range of more than £ 30 . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Clowns , a pub located at riverside with high range of food price and has a Customer rating of 1 out of 5 . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is located near The Rice Boat , in the city centre . The moderately priced restaurant is not family friendly and is rated 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 you can get French food at a family friendly coffee shop . The Wrestlers is located near Raja Indian Cuisine in riverside . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : yes||Giraffe is a pub providing Indian cuisine located in the central city area with a family friendly environment \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving Japanese food . It is located in a riverside area near the Crown Plaza Hotel . It is children friendly with low customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne serves English food and is a kid friendly restaurant . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a £ 20 - 25 price range pub on the riverside area , near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : no||The Wrestlers is a fast food restaurant that don 't have children friendly environment and its customer rating is average at high price . \nname : Green Man | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||There is a kid - friendly fast - food place in Riverside named the Green Man . The price range is more than 30 euros , and it is near All Bar One . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||The Wildwood pub is an expensive English food restaurant . It has a three star rating . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : city centre||The Phoenix has fast food with high price range and and average customer rating . They are located in the city centre . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove in riverside is a French pub with a price range of more than £ 30 but yes it is also child friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is highly rated and family friendly . It is a coffee shop near The Portland Arms . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||A kids - friendly place in the riverside area that offers fast food is The Twenty Two . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a French restaurant near Café Rouge on the riverside called The Golden Curry . It is child friendly and gets a 3 out of 5 rating \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||The English restaurant , Cotto , is a great place you can go with your children . It has a high rating and is near the Ranch . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge is moderately priced English restaurant with a rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub serving Fast food . It costs 20 to 25 pounds and is located near Café Brazil . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue pub sells very well priced Italian food , near ' Café Brazil ' . \nname : Green Man | Type : pub | food : Indian | area : riverside | near : Café Rouge||Green Man is a pub that provides Indian food It is located in the riverside . It is near Café Rouge . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Family - friendly coffee shop , The Punter , is located near Café Sicilia and has good reviews with high prices . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||Wildwood Pub offers high quality food at a reasonable price . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : yes||The Rice Boat has a low rating but great food great place for family and its on the city centre \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The family friendly 5 star Aromi Italian coffee shop is located in the riverside area . \nname : Wildwood | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that provides Indian for only £ 20 - 25 . It is sports a high customer rating and is located near the Ranch . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle venue sells Italian food . The customer Rating is 1 out of 5 . \nname : Green Man | price : moderate | area : riverside | family friendly : yes||A kids Friendly , moderate price Range place in the riverside area is Green Man . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two serves Fast food and is child friendly . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the riverside area near the Express by Holiday Inn and has a price range of less than £ 20 . It serves Chinese food , has a low customer rating and no , it is not family friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is child - friendly restaurant near the riverside . The price range is more than £ 30 , but it is highly rated by customers . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults is an average coffee shop with a high price range . Located on the riverside near Café Brazil . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Green Man is a pub near the Café Rouge in the riverside area that severs French food . \nname : Wildwood | Type : pub | food : Chinese | price : more than £ 30 | customer rating : high||The Wildwood pub serves Chinese food and has a high customer rating . A typical meal is more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||A moderate priced coffee shop , The Eagle serves Italian cuisine in an adult only establishment . Rated 1 out of 5 , it is located in the riverside area near Burger King . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is an average customer rated English restaurant . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||The Loch Fyne is a family friendly restaurant serving English fare at less than £ 20 . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||A highly - rated pub is The Vaults , near Café Adriatic . Expect to spend £ 20 - 25 . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a mid - priced Italian restaurant with a five - star customer rating . They are located near the Rainbow Vegetarian Café and offer a family friendly environment . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||The Mill is an English pub located near the riverside , and it offers cheap English food . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||If you are looking for a low priced family friendly restaurant in the riverside area , Green Man serves Indian food and is located near All Bar One . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||The Cocum restaurant is child Friendly and has a low customer Rating . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||The French pub called The Waterman is located by the riverside and has a low customer rating . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||English food with a customer rating of high can be found at Wildwood pub , prices range from £ 20 - 25 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||There is a highly rated expensive Pub named Clowns in the Riverside area . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is just ahead . There you can sit and enjoy a nice cup of coffee . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a moderately - priced restaurant that has three out of five stars . \nname : The Waterman | price : more than £ 30 | family friendly : yes||A children - friendly restaurant , The Waterman , has an average price range of above £ 30 . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children friendly restaurant located on the riverside near The Rice Boat . It gets a high customer rating and costs more than £ 30 \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Italian The Golden Curry is near Café Rouge . It is kids friendly . Customer rating is high . \nname : The Golden Palace | Type : restaurant | price : high||A high price restaurant is The Golden Palace . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Blue Spice is located near Avalon in the city centre and is a child friendly , low rated coffee shop in the more than £ 30 price range . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||A Chinese restaurant , the Giraffe , is children friendly pub located near the riverside . \nname : Cotto | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto provides Chinese food . It is near Ranch . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap Indian coffee shop in the riverside are with a 5 of 5 customer rating . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a Chinese restaurant with low prices . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located by the river and Crowne Plaza Hotel , Browns Cambridge is a non - family friendly coffee shop . They also serve Italian food . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||A family friendly Chinese place called The Rice Boat is averagely rated and located in riverside . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is 1 out of 5 . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is an affordable American style restaurant near the city - centre of Cambridge \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||The Strada is near the Yippee Noodle Bar . It serves Italian food and has a high customer rating . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||A cheap coffee shop on the riverside near Café Brazil is The Vaults . They have good rating . \nname : The Vaults | food : English | price : cheap | family friendly : yes||A cheap child friendly restaurant that serves English food is The Vaults . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||3 out of 5 , The Cricketers is a Japanese coffee shop that is kid friendly near The Portland Arms . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : city centre||The Waterman , with an average rating , is located in the center of the city . The Waterman offers French cuisine in a Pub type environment . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is a highly priced and highly rated English food restaurant located in Riverside . It is not children friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub serving Indian food . It has a 5 out of 5 rating is non - family friendly . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers is a restaurant with American food near All Bar One . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||A restaurant with a good customer rating in a medium price range is ' Browns Cambridge ' . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree is a moderately priced coffee shop . It is located in the city centre near Café Sicilia . It is not kids friendly . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman , a fast food restaurant , is child friendly , has a high customer rating , and is in the city centre . \nname : The Eagle | food : English | customer rating : 5 out of 5||The English food restaurant called The Eagle has a high customer rating \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a three star rating serving fast food . It has a medium price range . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in riverside is a family friendly Fast food coffee shop called Browns Cambridge , Located near Crowne Plaza Hotel with high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , a coffee shop is located in the city centre near Crowne Plaza Hotel , offers fast food . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : Bibimbap House | food : Chinese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House , Chinese , price range more than £ 30 , riverside , near Clare Hall \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||Taste of Cambridge is a restaurant with a low customer rating and prices over £ 30 . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||the Strada is family friendly and serves Japanese food at cheap prices . It has been rated 5 out of 5 and is located near the Rainbow Vegetarian Café \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||A Japanese restaurant called Alimentum is located in the city centre near Yippee Noodle Bar . It 's in the £ 20 - 25 price range and has a three of five star rating . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a restaurant that is family friendly and has a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop is located near Café Sicilia and serves Japanese food in the medium price range . No public restroom . Rated one star . \nname : The Punter | food : Italian | price : cheap||The Punter is an inexpensive Italian restaurant . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||Italian food is available in The Golden Curry which is family friendly and is highly rated . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a moderately priced Fast food for Kids The Wrestlers with low customer rating . , \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no||The riverside has a pub , called The Olive Grove , which serves Indian food for a moderate price . It is not kid friendly . \nname : Midsummer House | food : Indian | price : cheap | customer rating : average | near : All Bar One||There is an Indian restaurant near All Bar One named Midsummer House with cheap prices and average customer ratings . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Enjoy The Punter is a high end adult only coffee shop located near Café Sicilia featuring high priced Japanese food \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is located in the city centre near Burger King with Italian food and a moderate price range . It is not kid - friendly with a customer rating 1 out of 5. it is a coffee shop restaurant . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop that sells Indian food , price range high , 1 out of 5 customer rating , located in Riverside \nname : Strada | Type : pub | food : English | customer rating : low | near : Yippee Noodle Bar||Strada is an English pub , near the Yippee Noodle Bar and has a low customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is an American coffee shop near Café Sicilia that offers high prices , welcomes families , and is moderately reviewed . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry , stop by for some English grub , child friendly and great customer rating . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||French meals are served at Alimentum , a mid priced city centre location near Yippee Noodle Bar has average customer ratings . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry for English food in riverside area , near Café Rouge , but its customer rating is average and also is not family - friendly . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||Near The Bakers there is a family friendly restaurant . The price range of The Plough is less that £ 20 . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||Café Sicilia is a reasonably priced coffee shop near The Dumpling Tree . It is by the river and family friendly . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a highly rated fast food restaurant suitable for adults serving meals in the £ 20 to £ 25 price range . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Children are welcome at The Golden Curry . It 's located near The Six Bells . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||restaurant Loch Fyne rating is 5 out of 5 , it serves French food and is near the riverside area in The Rice Boat customer \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||There is a shop , Aromi , that provides low quality coffee drinks and is opened to all age group . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a Japanese Food called The Wrestlers , and the kids are Friendly , that Customer ratings are high on it , the price range is Average between £ 20 - 25 . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves English food and is highly rated by customers . It is located in the riverside area , near Café Rouge , and is child friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||With a customer rating of 5 out of 5 is the child friendly coffee shop Blue Spice . Its located near Avalon which is in the riverside area and prices are more than £ 30 \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : no||The Twenty Two is in centre city and serves Chinese food but is not family friendly \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a low rated Indian coffee shop located in City Centre . Prices are average . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly fast food restaurant near The Portland Arms . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||There is Japanese food at The Wrestlers , it 's children friendly . However the price range can be more than £ 30 and has a low customer rating . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near to the Rainbow Vegetarian Café is a family friendly restaurant called Strada that offers Chinese meals that are average and also in the high pricing range . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop that serves Japanese food . It is located in riverside and has a customer rating of 5 out of 5 . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : no||Alimentum provides Indian food in the moderate price range . It is located in Riverside . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly venue near the Rainbow Vegetarian Café with a customer rating of 5 out of 5 and sells low priced English food . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Situated on the riverside near to the Crowne Plaza Hotel is the child friendly coffee shop called Browns Cambridge serving French food . It has a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : English | customer rating : 3 out of 5 | family friendly : yes||Zizzi is pub which serves English food . It is kid friendly and has a customer rating of 3 out of 5 . \nname : The Eagle | food : Indian | customer rating : 3 out of 5||The Eagle is a low priced Indian restaurant that provides pub food near the riverside , and has a 3 out of 5 customer rating . The pub is not kid - friendly . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is average . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a high ranked coffee shop located near The Portland Arms . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat of Fast food with low price is located by riverside near Express by Holiday Inn . Their customer rating is low and they are not children friendly . \nname : The Golden Curry | food : Indian | price : cheap | family friendly : yes | near : The Bakers||An Indian restaurant called The Golden Curry is located near The Bakers that offers cheap prices and a family friendly experience \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : riverside||Breakfast plates at The Phoenix a 5 star eatery by the river . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a French , family - friendly coffee shop near The Portland Arms with average customer ratings . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove restaurant is a pub that serves French food that is in City Centre that is family - friendly that costs less than £ 20 \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree have a range price mare than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : high||The Cambridge Blue is a highly recommended Indian restaurant . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is children friendly and serves English food . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Taste of Cambridge is a pub by the river that is just down the road from The Sorrento \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The Strada , is an Italian food restaurant near the Rainbow Vegetarian Café . The price range is less than £ 20 , customer ratings are low and it is not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree restaurant is a low cost eatery that serves an assortment of wines and cheeses . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn , is child friendly , has a high customer rating , and the price range is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a high priced coffee shop on the riverside . It serves Italian food and is not child friendly but has a 1 out of 5 rating . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a moderate price range Japanese pub located near the Café Brazil . \nname : The Twenty Two | food : Fast food | family friendly : yes||There is a child friendly fast food restaurant called The Twenty Two . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low - priced coffee shop that also offers food . It is located near the river . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman Indian restaurant , by the river is family friendly , average price but customers rate it low . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : no||For a high priced Chinese food , adult only Alimentum is located in riverside . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a family - friendly , French restaurant located in Riverside . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers near The Portland Arms has a average customer rating . They are an Italian coffee shop that is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||French coffee shop , Fitzbillies is in the city centre . It is not kid friendly and has a price range of £ 20 - 25 . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||In the city centre there 's a family - friendly restaurant less than £ 20 called Blue Spice that has a low customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||In the city centre , near The Portland Arms , there is a coffee shop called Cotton . It serves Japanese food , the prices average more than 30 pounds , and it has a customer rating of 5 out of 5 . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||In the less than £ 20 price range , The Rice Boat is located near Rainbow Vegetarian Café with a low customer rating . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is s one star , expensive fast food , family friendly restaurant . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Waterman provides French food . It is not family - friendly . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||A moderate price Italian food place named Midsummer House is near All Bar One . It 's rating is 3 out of 5 . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||There is a high price range restaurant called Wildwood which servers Italian food , and has a rating of average . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman provides Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a one - star restaurant that serves fast food and does not allow families . It is located near Café Rouge by the river . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop selling Indian food at a high price range . It 's customer rating is average and it is located near the city center , but is not family friendly . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||A restaurant named Browns Cambridge is located in the city centre . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||For a moderately priced French - style coffee shop on the riverside , come to The Eagle - a 1 star child - free experience just past the Burger King . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : no||The Twenty Two is a Japanese restaurant in the city centre which isn 't family - friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | near : The Sorrento||The coffee shop with Italian food , The Mill is located both near riverside and The Sorrento . It has a price range of more than 30 Euros . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A moderately priced kid friendly Japanese restaurant called The Wrestlers is rated 1 out of 5 stars . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is low . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||You can find a high priced restaurant for all ages at The Wrestlers \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Located near All Bar One in the city centre , is The Green Man serving Italian food . They are not family - friendly and are in the price range of less than £ 20 . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||with a low customer rating , Fitzbillies is a non family - friendly place with a price range of less than £ 20 . it is near the Express by Holiday Inn . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : average||Browns Cambridge provides Chinese food in the cheap price range . It has an average rating . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||Cotto has low prices located at the riverside near by All Bar One \nname : The Punter | food : Italian | price : cheap||The Punter is a cheap Italian food provider \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a Fast food coffee shop located near Ranch . It has a high price range and a customer rating of 1 out of 5 . \nname : The Eagle | food : Chinese | customer rating : high||The Eagle serves Chinese food and has a high customer rating . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix provides high priced Chinese food in the city centre . It has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving sushi at high prices . It has a five star rating and is based in the riverside area near The Portland Arms . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults is a pub with a high customer rating . The price range is more than £ 30 and it is near Café Adriatic . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||On the riverside , there is an expensive fast food called The Waterman , is not children friendly and is rated 1 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a family friendly French restaurant . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : cheap | near : Café Brazil||The Cambridge Blue is a pub that serves cheap Chinese food near Café Brazil . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||For Fast food in the city centre , The Phoenix has a price range of £ 20 - 25 and the customer ratings are high . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice is a low rate sushi bar located in City Centre . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry does not serve Italian food but it is kid friendly and has a rating of 4 . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice is a Sushi restaurant offering take - out and deliveries in the medium price range . It is located in city centre just south of the river . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a high priced French restaurant in the city centre that customers rated 3 out of 5 . It is children friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in the riverside area and serves Japanese food in the less than £ 20 price range , it has an average customer rating and is not child friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||coffee shop by day and family dining at night , The Eagle nests near the river and Burger King \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , The Rice Boat is in the less than £ 20 price range with a low customer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a high rated coffee shop , serving fast food for £ 20 - 25 . Just don 't bring the kids . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||Italian place The Phoenix can be found in the riverside area , with a customer rating 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a beautiful coffee shop near The Portland Arms with family atmosphere , French food and a pleasant clentele \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an average rated , cheap Japanese coffee Shop in the riverside area , not child friendly . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge , there is a restaurant called Wildwood with customer rating 1 out of 5 . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||Located by the riverside is The Phoenix . It has a high customer rating and serves high - priced Italian food . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Along the river in the City center . , there are two establishments , The Golden Curry and Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop located north of the city center . and offers expensive 5 star rated food . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree offers quality Japanese food . It is a nice kid friendly pub located near The Portland Arms . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||An Italian place called Browns Cambridge is moderate price and rated 3 out of 5 . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum , whose price range is less than £ 20 , is a fast food restaurant near Yippee Noodle Bar in the city centre area with a low customer rating . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The adults only The Olive Grove is a put which offers moderate prices in the riverside area . \nname : Cotto | food : English | near : Café Rouge||Cotto offers English food and is located near Café Rouge . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Even with it 's moderate price range and average customer rating of 3 out of 5 , The Waterman is not kid friendly . You can find this Italian restaurant in the city centre area . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is located in riverside . It is moderately priced with ad average customer rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no||Aromi is located in the city centre with a low customer rating . It is a fast food coffee shop and is not kids friendly . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant call Strada located near Rainbow Vegetarian Café that is kids friendly and in the price range £ 20 - 25 . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The Vaults has an average customer rating . It is located near Café Brazil in the riverside area . The Vaults is a coffee shop offering cheap food . \nname : The Eagle | food : Indian | customer rating : low||The Eagle is an Indian restaurant with low customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace is a coffee shop that serves French food in the city centre . The prices range more than £ 30 and they have a low customer rating . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry is family friendly restaurant . It serves English food . Customers rating for The Golden Curry is low . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in the Riverside area is a high customer rated , child friendly restaurant serving English food , in a price range of more than £ 30 , named The Rice Boat . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||Near Café Adriatic , in the riverside area , is the highly rated , but low cost Travellers Rest Beefeater . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||The Cotto serves English food near the Ranch . It is child friendly with a high customer rating . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is high rated coffee shop that serves English food for more than £ 30 and has a no children policy located near to the Café Sicilia \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Italian child friendly place , The Vaults , is high on pricing . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is a high - priced Italian coffee shop called The Eagle near Burger King in the riverside area that is child - friendly but has an average customer rating . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||In the city centre is the pub Wildwood which serves food . It has a 5 star rating and is in the average price range \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix has a low customer rating , but they serve Japanese food and cost more than £ 30 and they are located in Riverside \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Located near the Ranch , is the coffee shop Wildwood . It features an average - priced menu that serves light food and alcohol . Customers give this coffee shop 1 out of 5 stars . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two has an average rating . Its price range is high but it is children friendly . It is near The Rice Boat by the riverside . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive Italian restaurant with one star located on the river near Yippee Noodle Bar . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is near Café Adriatic in the riverside area and has a low customer rating \nname : The Olive Grove | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes||This business in the Riverside area , is children friendly and a pub type of eatery which offers Japanese food ; in the high price range . The name of this eatery is The Olive Grove . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a one - star family restaurant called The Wrestlers that serves fast - food and is in the mid - price range . \nname : Midsummer House | food : Chinese | price : high | customer rating : average | near : All Bar One||Chinese food is served at Midsummer House near All Bar One . It is in the high price range and is rated as average . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||At the The Golden Curry you can eat Italian food in a family friendly place with an average customer rating . \nname : The Vaults | food : French | price : high | family friendly : yes||The Vaults is children friendly . It provides French food at a high price range . \nname : Cotto | food : Italian | customer rating : low | family friendly : yes | near : Ranch||There is Cotto an Italian family friendly restaurant with a low customer rating near Ranch . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||Even children like eating Fast food better in The Portland Arms then drinking at The Dumpling Tree \nname : The Eagle | food : Italian | customer rating : high||The Eagle has Italian food and a high customer rating . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café is Strada , a 3 star restaurant offering a full English breakfast at a high price range . \nname : Wildwood | Type : restaurant | family friendly : yes||There is a restaurant called Wildwood , that is child friendly . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||In Riverside there is a restaurant with a low customer rating called The Eagle . It has a price range of less than £ 20 . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kids friendly Japanese food restaurant near Express by Holiday Inn \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Avalon||Blue Spice is a city centre coffee shop near Avalon . It 's within a price range of more than £ 30 with a low customer rating . Also , it 's no to children . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is an inexpensive family friendly pub located near Café Rouge . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is an Italian restaurant that offers food for less than £ 20 . It is family friendly and located along the riverside . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : riverside||The Waterman , a pub style type of eatery , serves Indian dishes , has an average customer rating , and is located in the Riverside area . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a three star English style restaurant in the low price range near Express by Holiday Inn . Public restrooms available . \nname : The Twenty Two | food : Italian | family friendly : no||Romantic evening for adults at The Twenty Two . Not family friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub that sells sushi and has a good rating \nname : The Golden Palace | Type : restaurant | price : cheap||If you want to save money and go to the restaurant which is cheap priced go to The Golden Palace . \nname : Blue Spice | food : English | price : high | area : riverside||Blue Spice is an expensive restaurant , located far from the city centre . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge has a customer rating of 1 out of 5 with moderate prices . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a restaurant providing French food near Crowne Plaza Hotel riverside area . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||5 star restaurant l Midsummer House is reasonably priced located near the All Bar One . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop located in riverside near Avalon . Its children friendly , it has a price range of more than £ 30 , as well as a low customer rating . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Midsummer House located near Café Rouge serves average rated fast food . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre||French food coffee shop , The Golden Palace is located in the city centre and has an average customer rating in high price range . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||At riverside there 's a family friendly restaurant called The Rice Boat . It serves pretty bad Indian food though . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is children friendly . And they serve Indian food , but they only have 1 out of 5 rating . \nname : Alimentum | food : English | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a kid 's friendly English place with a high price range int he riverside \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||There is an expensive , but low rated , coffee shop called Wildwood which serves sushi near Ranch . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fast food restaurant located next to Rainbow Vegetarian Café . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace a coffee serving French food excellent customer reviews . Above average prices . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The coffee shop Fitzbillies offers moderately priced fast - food in the city center area . This is not a family - friendly environment . Customers give this coffee shop 1 out of 5 stars . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||Near Café Rouge is the Midsummer House . This establishment serves English flare and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Family friendly and with a 5 of 5 rating , Browns Cambridge is an Indian coffee shop in the city centre area near Crowne Plaza Hotel . \nname : Green Man | Type : restaurant | area : riverside||A restaurant near the river is Green Man . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is children friendly fast food in the moderate price range with a high customer rating . \nname : Browns Cambridge | food : Chinese | price : more than £ 30 | customer rating : high||It 's spendy but Browns Cambridge has great Chinese food . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family - friendly pub serving Italian food with a mid price point . It is located near Café Rouge . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : no||Zizzi is a pub providing Chinese food Its customer rating is average . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is an expensive coffee shop providing sushi near Ranch . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a restaurant located near the Rainbow Vegetarian Café with a great customer rating . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Sushi Bar The Waterman , is a highly priced , family friendly eatery scoring 3 out of 5 stars . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace is a French coffee shop that is low rated and priced more than 30 . It is located at the city centre \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi pub serves Italian food . It is kid friendly and has a 1 out of 5 rating . \nname : Browns Cambridge | food : Indian | price : £ 20 - 25 | customer rating : high||Browns Cambridge serves Indian food for about £ 20 - 25 , and has a high customer rating . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Chinese restaurant The Waterman is located in the riverside area and has a low customer rating . It has dishes costing less than 20 pounds and is not family friendly . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge offers a high price range and the customer rating is 3 out of 5 . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House has high customer rating and the price range is £ 20 - 25 . You can find it near All Bar One . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Alimentum is a fast food restaurant , ideal for a cost effective family meal . It is located next to the river . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a coffee shop in the city centre with a low customer rating . The price range is less than 20 pounds , serves fast food and is family - friendly . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||The Plough restaurant , offering meals for over £ 30 , is a child - friendly option near The Bakers . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove cheap English food in family at the riverside \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant providing French food , the customer rating is 5 out of 5 , is a high - priced and they are Children Friendly , located in a riverside area . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers coffee shop would prefer no children , serves Fast food close to The Portland Arms , a low customer review . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry Chinese restaurant offers food for a moderate price . It is near The Bakers and considered kid friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee shop which is situated by the riverside . This child friendly coffee shop has an average rating of 3 out of 5 and is deemed as a high price range \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||The Loch Fyne is a cheap fine dining restaurant that is not family friendly . \nname : The Vaults | food : Fast food | price : moderate | family friendly : no||The Vaults serves fast food at moderate price . Children are not welcome . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near the Express by Holiday Inn has a low customer rating and a price range more than £ 30 . Yes , it is children friendly . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada is a highly rated , child friendly restaurant in the average price range . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a cheap coffee shop in Riverside go to The Wrestlers . It 's family - friendly near Raja Indian Cuisine and serves fast food . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||Wildwood is a pub that serves good food but at a high price . \nname : The Rice Boat | food : French | area : riverside||The Rice Boat has French food and is located by the riverside . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||The Cambridge Blue restaurant offers convenient food . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||There is a highly - rated child friendly establishment in city centre near Burger King . The Eagle is an Italian coffee shop with average prices . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : no||The Olive Grove is a pub restaurant that is not children - friendly . It has English food with high price range located in the city centre . \nname : Blue Spice | food : Italian | price : high | area : riverside||Blue Spice is a high priced Italian place in riverside . \nname : Cotto | food : Fast food | customer rating : low | family friendly : yes | near : Ranch||Cotto fast food . is family friendly located near Ranch . It has a low customer rating . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a low customer rated Chinese restaurant that offers food ranging from 20 euro or below . It is located riverside near Yippee Noodle Bar . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : yes||A family - friendly restaurant called The Rice Boat is located in the city centre area . It has French food and a low customer rating . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : average||Browns Cambridge serves cheap Indian food and has an average customer - rating \nname : Alimentum | food : Indian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum Indian restaurant is high in price with an average customer Rating on the riverside near Yippee Noodle Bar . \nname : Alimentum | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a restaurant with price range more than £ 30 and is offering Indian food . It is a child friendly restaurant located at riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||One star coffee shop Fitzbillies serves high priced Sushi in the riverside area . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly 3 out of 5 rating restaurant . The Rice Boat serves moderately priced Italian food . They are located on the riverside near Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no||Cocum , an Indian coffee shop , is cheap , family - friendly , and has an average rating . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge near the Sorrento offers English food near riverside . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||A Japanese Pub near the Yippee Noodle Bar called Strada 's rating is 3 out of 5 \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Located in the riverside area is The Waterman Chinese food restaurant . This restaurant is not kid friendly and has a low customer rating of 1 out of 5 . The price range is moderate . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||Located in the riverside area , The Golden Palace serves French food and is a coffee shop . Prices are less than £ 20 and they received an average customer rating . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice is located in the riverside area and serves fast food in the price range if £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Fitzbillies is a moderately priced Indian coffee shop in the city centre . It is kid friendly and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop in the high price range . It is located outside the city center . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop near Burger King in the riverside area . With a moderate price range , it serves French food and has a customer rating of 1 out of 5 . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||The French finery named Midsummer House has a low rating . It is near Café Rouge . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry has average rated family friendly English food \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a poorly reviewed restaurant . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : high||The Dumpling Tree is a higher priced Indian restaurant . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Costing over 30 euros is The Waterman , a children friendly French restaurant along the riverside with a low customer rating . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove in the riverside area serves French food in a pub type establishment . Prices are high and children are not welcome . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man can be found near All Bar One in the riverside area . Its English food is cheaply priced and it is family friendly . \nname : The Vaults | food : Chinese | price : more than £ 30 | family friendly : yes||The Vaults offers Chinese food in the price range of over 30 and is children friendly . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||If you are looking for a great coffee shop with low prices then The Dumpling Tree is your place . Located near Café Sicilia \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix serves English food and is located in the center of the city . However , it is highly priced and has a poor customer rating . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||There is a no family - friendly pub Giraffe located in the riverside that provides French food . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Located in riverside , Blue Spice is child friendly and in the high price range . They have an average customer rating . \nname : The Eagle | food : Fast food | customer rating : low||There is a restaurant called The Eagle that is located in the city centre . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||High customer rating and high price range £ 20 - 25 Café includes The Rice Boat near Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , the Italian coffee shop is located in the city centre near the Crowne Plaza Hotel . It has a low customer rating and is not child friendly . \nname : Strada | Type : pub | food : Chinese | customer rating : average | near : Yippee Noodle Bar||Strada , an average - rated pub serving Chinese food , is located near Yippee Noodle Bar . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If you go down to the centre of the city you will find an affordable restaurant called Blue Spice . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||the The Golden Curry is near The Bakers offer Italian food with low price and family - Friendly \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a children friendly pub in riverside with an average rating . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a restaurant located in the city centre area near Yippee Noodle Bar . It has Italian food with a customer rating of 1 out of 5 and a high price range . \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Clowns , located near Café Sicilia , is cheap and not for families . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that serves French food . They have a high price range and it is located at the riverside . It is a child friendly establishment with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry House is close to the Café Rouge situated in Cambridge \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub located in the city centre . It serves moderately priced Indian food and is kid friendly . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||Green Man is a cheap family friendly restaurant located by the riverside . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : city centre||Clowns is a pub that is rated low with a moderate price range that is located in the city center . \nname : Clowns | Type : coffee shop | food : French | customer rating : high | area : riverside | near : Clare Hall||Clowns French food coffee shop in riverside near Clare Hall has a high customer rating \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a Chinese food place that is cheap with average ratings in riverside . It 's also family friendly . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||The Phoenix is a low - rated Italian eatery on the riverside \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a fairly priced coffee shop near Raja Indian Cuisine that serves sushi and is called The Wrestlers . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Featuring Japanese cuisine and a coffee shop atmosphere , the Taste of Cambridge is situated on the riverside , near the Crowne Plaza Hotel . \nname : The Wrestlers | Type : coffee shop | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated near Raja Indian Cuisine on the riverside is a child friendly coffee shop serving French food with a high price range called The Wrestlers . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : 1 out of 5||For highly priced , but low rated Chinese food , head to Browns Cambridge . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||In the city centre there is a coffee shop called The Golden Palace . It is a Fast food restaurant in the £ 20 - 25 price range . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a coffee shop located in the city centre near Avalon . It is not kid - friendly , has a price range of 20 - 25 pounds , and is rated 3 out of 5 by customers . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi the coffee shop at Riverside is kids friendly the price is £ 20 to £ 25 and rating is good \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||high price range , average customer rating children friendly , in the Riverside area in Blue Spice \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : city centre||The Phoenix is a high priced fast food restaurant located in the city centre with an average customer rating . \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : no||With a low customer rating located in the centre of the city is The Rice Boat restaurant that is not family - friendly wit h a low customer rating . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice is a family - friendly restaurant with low prices and high ratings . Located in the city Centre . \nname : The Vaults | food : Italian | price : high | family friendly : no||The Vaults is a high priced Italian restaurant that is not children friendly . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||The Giraffe Pub is located by the riverside and serves a varied Japanese cuisine . We are children friendly and welcome all patrons . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||If you need a kid friendly venue in the riverside area then try Green Man . It serves English food and has a moderate price range . It sits near All Bar One . \nname : The Phoenix | food : Chinese | customer rating : low | area : riverside||The Phoenix has Chinese food and is located in riverside , with low customer ratings . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is a cheap restaurant rated 1 star , The Eagle coffee Shop , located in city centre east of Burger King . Not recommended for families . They offer eat - in , take - out or delivers . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar is The Alimentum . It is near the city centre near the Yippee Noodle Bar . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Bibimbap House located in riverside near The Rice Boat serves Japanese food \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||There is a kid friendly pub called Cocum which has a rating of 3 out of 5 and serves food for £ 20- £ 25 \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a fast food pub located near The Portland Arms . It is also children friendly . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry provides Italian food . It is not family - friendly and attracts low - ratings from customers . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is not child friendly , priced high and rated low . They serve English food . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a low customer rated French restaurant . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi , an English pub , is family - friendly and has an average rating . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children friendly Fast food restaurant in the riverside area , near the Express by Holiday Inn . its prices are high and its customer ratings are average . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||The Cambridge Blue is an Italian restaurant with a high customer rating . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a kids - friendly fast food restaurant in Riverside . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the heart of the city , Browns Cambridge serves Indian food in a coffee shop setting . Not family friendly , it is located near the Crowne Plaza Hotel and recently rated 5 out of 5 by customers . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel you will find The Waterman . It provides fast food and are children friendly . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry , near The Bakers , offers family friendly French food at reasonable prices , less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||coffee Shop Fitzbillies , offers moderately priced French food . With a customer rating of 1 out of 5 , this riverside establishment is not considered child friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child friendly , high end , French bistro and coffee shop that is located in riverside near Raja Indian Cuisine \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King there is a Japanese coffee shop The Eagle in Riverside . Their customer rating is 5 out of 5 with the price range more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The coffee shop called The Wrestlers serves Indian food and is near to Raja Indian Cuisine . The Wrestlers is child - friendly and is in riverside . It has a high price range however \nname : The Eagle | food : French | customer rating : low||The Eagle serves French food but has a low customer rating . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||A moderate priced fast food place that is not kid friendly is called Strada . It is near Rainbow Vegetarian Café . Customers rated it 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers coffee shop is child - friendly offering fast - food with a high customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city centre close to Burger King is The Eagle coffee shop . Serving French food and prices being on the high side . This isn 't child friendly and has a customer rating of 3 out of 5 . \nname : Bibimbap House | food : English | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is located by the riverside and near Clare Hall and it has English food that costs more than £ 30 . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food at the moderate price range . The location is city centre , near the Express by Holiday Inn . The establishment is children friendly , with a rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is coffee shop who offers light snacks food too , situated in the Ranch . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a fast food restaurant that received 1 out of 5 stars . It is near the riverside near Clare Hall and has a coffee shop atmosphere . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Avalon||Located in city centre near Avalon , Blue Spice is a kid friendly coffee shop with a moderate price range and customer ratings of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop that also serves Italian food . It 's located near Ranch and serves food in the high price range with an average customer rating . \nname : Bibimbap House | food : Chinese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House sells Chinese food by the riverside near Clare Hall . The price range is moderate . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop located near The Portland Arms in the city centre called Cotto which offers good quality food at a premium price . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kid - friendly with moderate range prices , but rated just 1 out of 5 by customers . It 's located near Express by Holiday Inn . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop with a customer rating 1 out of 5 and has a low price range and is just north of the Ranch . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||The Loch Fyne is a family friendly French food restaurant . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child friendly Japanese coffee shop that is near the Crowne Plaza Hotel . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||If you are looking for a low - priced pub in the city centre , then The Olive Grove is for you . It is a non family - friendly pub that offers Indian food . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||There 's a restaurant called Alimentum , which is a little more expensive . They serve Italian food and have good ratings . It 's located in the city centre , near Yippee Noodle Bar . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||Riverside area , The Golden Palace is pub in the high price range and is located near the Rainbow Vegetarian Café . \nname : The Golden Curry | food : Fast food | customer rating : high | family friendly : yes||The Golden Curry is a Fast food restaurant with a high rating and yes it is also kids friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue is a Fast food restaurant with a low rating . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||Zizzi has a selection of cheeses , fruit , and wine for adults only . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive Italian restaurant near Yippee Noodle Bar in Riverside . It has a customer rating of 1 out of 5 . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum a fast food restaurant near Yippee Noodle Bar in riverside , has high customer rating costing more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a fast food coffee shop close to the City centre . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located riverside , The Rice Boat is a family friendly restaurant that features Japanese cuisine and boasts a 5 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : riverside||The Waterman is an Indian food pub with a 5 out of 5 customer rating in the Riverside area . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||There is a coffee shop near The Bakers called Giraffe . It is children friendly and it is rated 5 out of 5 . The price range is more than £ 30 . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is sited in the city centre near The Bakers , it is a family friendly highly recommended high cost venue . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high cost fast food child friendly coffee shop near Burger King in the riverside area with low customer rating \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||Visit The Mill pub for a low price meal by the river \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a Japanese restaurant with a high rating and price range of £ 20 - 25 . It is not kid friendly . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Check out the Wildwood coffee shop 5 star rating and great reviews located conveniently next to the Ranch . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located at the city centre , The coffee shop serving French food named Browns Cambridge has a rating of 5 out of 5 , is not family - friendly and is near the Crowne Plaza Hotel . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||There 's a low rated coffee shop called Clowns near Clare Hall . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant in the price range of £ 20 - 25 with a high customer satisfaction rating . It is located in the city centre near the Yippee Noodle Bar . \nname : The Punter | food : French | price : high||The Punter servers French food in the high price range . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Near The Rice Boat with a customer Rating of low , the Loch Fyne serves Italian food \nname : Alimentum | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kids friendly restaurant that serves Indian food . It is located by riverside and the price ranges from £ 20 - 25 . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge , The Golden Curry is a family - friendly , one - star restaurant . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is an expensive coffee shop , located near The Sorrento . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly pub in the city centre called Aromi with a low customer rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||There is a three - star coffee shop called Aromi near the city centre . It is family friendly . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a cheap family restaurant called Strada near the Rainbow Vegetarian Café . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||In the riverside area near Café Brazil , The Vaults is an average priced averagely rated coffee shop . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the city centre , offers English food with a high price range . Not children friendly , the customer rating is average . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||Near Café Adriatic at riverside , Travellers Rest Beefeater has a price range of less than £ 20 and has a low customer rating . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||Wildwood is an Italian sensibly priced pub in the city . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies , an Italian coffee shop in the city centre , has highly priced items to enjoy . It has an average customer rating and isn 't child friendly . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a children friendly high rated English coffee shop located near Burger King in riverside with a price range of more than £ 30 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Waterman is a pub that serves Chinese food . It is located in the city centre and has a customer rating of 5 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Visit French coffee shop Cocum , price ranges £ 20- £ 25 , its kid friendly and rated 3 - 5 by customers . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a non - family friendly restaurant with a customer rating of 1 out of 5 ; it is located in the City Centre near Café Rouge . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a cheaper restaurant located just near All Bar One . It is family oriented . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle is a restaurant in the average price range located near the riverside area . it has been rated average by customers . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman in the city centre is a high priced restaurant with a customer rating of 1 out of 5 offering English food . It is not child friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop featuring Indian style foods at a reasonable price of £ 20 , located in the city centre near Burger King \nname : Bibimbap House | food : Japanese | area : city centre | near : The Rice Boat||Bibimbap House sells Japanese food near The Rice Boat in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a a family - friendly coffee shop Fitzbillies located in the city centre that provides cheap Fast food . I has 5 customer rating out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a no children - friendly coffee shop Zizzi located in the city centre . The price is more than £ 30 and its customer rating is 5 out of 5 . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||If you have been down to the riverside you might have seen a place called Café Sicilia . Opposite that there is a pub called The Twenty Two . It overlooks the river and is in a nice setting however the customer rating is quite low . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop and fast food restaurant located in the city centre . Their price range is high and their customer rating is 1 out of 5 . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a cheap but highly rated restaurant near the riverside , which serves English food . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Children are welcome at Green Man , a city centre restaurant serving French food at above average prices . All Bar One is nearby . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friend English restaurant providing cheap food in the riverside area . It has a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is in the city centre , near Burger King . It 's a French coffee shop that isn 't kids friendly . It has a moderate price range and a customer rating of 1 out of 5 . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is an Italian restaurant that is adults - only located in the city centre . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||There is a pub riverside named The Mill , serving English cuisine , with a high price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a French child friendly city centre coffee shop that has a 3 star rating . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop serving Indian food with a price range less than £ 20 in the city centre near The Sorrento . \nname : The Eagle | food : English | customer rating : low||A one - star venue called The Eagle is located near a school . The Eagle serves British cuisine . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that offers Italian food . It is located in the city center . Prices are between £ 20 - 25. it is near The Portland Arms . Customer ratings are high . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a fast food restaurant near Café Rouge that has a 5 out of 5 customer rating . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near the Crowne Plaza Hotel . It serves Japanese food and is family friendly . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House is a place with French food on the area of riverside near The Rice Boat \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a cheap coffee shop located near Ranch , with a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||An expensive adults - only riverside Indian coffee shop called The Eagle can be found near Burger King , but it only has average ratings . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop offering fast food for less than £ 20 . It is in the city centre near Burger King and has a low rating . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada has Indian food in the price Range of more than £ 30 , with a high customer Rating . It is not child Friendly and is located near Rainbow Vegetarian Café . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is an expensive restaurant near the All Bar One at riverside . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a pub that provides Japanese food with a price range of 20 - 25 Euros . It is kid friendly and located near Café Rouge . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||There is a mid price range coffee shop Cotto located near The Portland Arms that provides sushi \nname : The Punter | food : Fast food | price : more than £ 30||The Punter serves fast food with a price range of more £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||A coffee shop that serves Japanese food and located in the center of the city and not kid friendly is Fitzbillies . It has an average price range with an average customer rating . \nname : The Mill | Type : coffee shop | food : French | price : high | area : riverside | near : The Sorrento||The Mill is a high priced French coffee shop near The Sorrento in Riverside . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two is located on the river . It is not kid friendly . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Near the All Bar One , there is a kid - friendly restaurant serving Italian food . It 's moderately priced and is called Green Man . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop serves Indian food for less than £ 20 on the riverside near Raja Indian Cuisine . It is not family friendly . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a cheap coffee shop in riverside near Café Brazil , and it has a 5 out of 5 customer rating . \nname : The Waterman | price : more than £ 30 | family friendly : yes||Children friendly restaurant with high prices named The Waterman . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : no||The Twenty Two is a moderate pub in the city centre that delivers Japanese food . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a family friendly sushi restaurant near the river that has higher prices . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman offers Chinese food , it is located at the riverside , it is in the high price range and it has an average customer rating . This venue is no children friendly . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is an Indian restaurant with a low customer rating . They are priced less than £ 20 and are in the city centre . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is an Italian food serving establishment . It is located on the riverside . It is rated highly and has a price range between £ 20 - 25 . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a high priced Chinese restaurant in the riverside area with a 1 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is an Italian coffee shop , Browns Cambridge in the riverside area , near Crowne Plaza Hotel . It is kid friendly but has a low customer rating . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , near Café Adriatic , has a low customer rating , but you can hang out riverside for . Look to spend more than £ 30 , though . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Customers rate Blue Spice , located in Riverside near Avalon , as average . It is an inexpensive , family - friendly coffee shop . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Indian food It is near The Portland Arms . Its customer rating is average . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||The Waterman is a restaurant providing Italian Pub Food . It is located on the riverside . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||The family friendly coffee shop , Aromi , offers up French cuisine in the riverside area . Customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel in riverside , the Browns Cambridge restaurant is a coffee shop that serves Indian food . Customer ratings for this children friendly restaurant are high . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 3 out of 5 | area : riverside||The Waterman pub provides adequate Chinese food in the riverside area . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap Italian restaurant , situated near The Bakers \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||Although The Cricketers has a low customer rating , it 's a family - friendly pub near The Ranch . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is breakfast restaurant and has an excellent rating between the comensales . It is located in The Rice Boat . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter is a cheap fast food venue . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : no||Down by the riverside there is a pub called Aromi where you can eat . It has an average customer rating but is no good for children \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||At the riverside near the Café Rouge there is a pub serving French food called the Green Man . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge , located near The Sorrento , is not a family friendly restaurant . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||They do English food at The Wrestlers but are not child friendly . They do have a moderate price range with a customer rating of 1 out of 5 . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a kid friendly restaurant known as Strada . It has a customer rating of 1 out of 5 and has a moderate price range . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is a child friendly expensive restaurant , serving traditional English food . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a medium priced restaurant . Located near All Bar One . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers , near Ranch , is a children friendly pub with a high customer rating . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Located in the city centre , The Wrestlers serves cheap British food . It is not family friendly and has a customer rating of 1 out of 5 . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kid friendly Japanese place near All Bar One . Green Man is in the riverside area and have a price range of £ 20 - 25 . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||For a pub near Ranch that is children friendly and has a customer rating of 5 out of 5 , try The Cricketers . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 3 out of 5||There is a restaurant called The Cambridge Blue that serves Indian food . Their customer rating is 3 out of 5 . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Family friendly establishment The Olive Grove is a restaurant in the riverside area . \nname : The Rice Boat | food : French | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a a French restaurant located in Riverside . It is family friendly and receives high ratings from customers . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a customer rating of 3 out of 5 and serves French food in the £ 20 - £ 25 price range . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||A moderately priced coffee shop , Blue Spice , is located north of the city centre near Avalon . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a venue that offers kid friendly atmosphere at a moderate price . They are located near Express by Holiday Inn . \nname : Blue Spice | food : Chinese | price : high | area : riverside||Blue Spice is a riverside Chinese restaurant with a high price range . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum is a Japanese coffee shop for adults with a perfect 5 out 5 rating and costing more than £ 30 . \nname : The Mill | Type : pub | food : Italian | price : more than £ 30 | area : riverside||The Mill is above average in price for the area of Riverside , but sells quality Italian food . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers a children friendly , high priced Japanese restaurant with a rating of 3 out of 5 . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||There is a cheap Indian restaurant Alimentum located in city centre and family friendly . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a low - rating riverside French restaurant near The Rice Boat . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is 5 out of 5 and located in riverside . It is children friendly and high priced \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kids - friendly pub in the riverside area , and its price for food ranges from £ 20 to £ 25 . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located at the riverside , near the Express by Holiday Inn , is The Rice Boat serving French food . The Rice Boat is moderately priced with a customer rating of 1 out of 5 . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately - priced family friendly French restaurant located near Rainbow Vegetarian Café with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is rated 1 out of 5 . It is children - friendly and serves English cuisine . It is located in the riverside area near Café Rouge . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two has a customer rating 5 out of 5 and a price range more than £ 30 . There is no children area . It is located in the city centre near to The Rice Boat . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman serves French cuisine at a cheap price while being family - friendly located in the city centre , rated 5 out of 5 by customers \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The Phoenix offers French food and has a customer rating of 5 out of 5 . It is located in the riverside . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge prices range from £ 20 - 25 . It has a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove pub serves French food at above average prices . It is located in the city centre and is not family - friendly . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Phoenix is Fast food near river side , the customer rating is 3 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||inexpensive French food at Cotto coffee shop in the city centre near The Portland Arms has average customer rating \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum serves Italian food with a less than £ 20 price range , they have a low customer rating . They are near Yippee Noodle Bar located in city centre . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||Fast food at high rates at The Phoenix . price £ 20 - 25 in riverside \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French food . It is situated near the Express by Holiday Inn . The prices range is moderate . It is situated in the city centre and has a customer rating of 1 out of 5 . Kids are welcome . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is a pub providing Indian food Its customer rating is average . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||The restaurant Wildwood is near Café Rouge and has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree is located by The Portland Arms . It is not family family , and it is a pub that serves Japanese food . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop that serves Japanese food near Ranch with a low customer rating and a price range of less than £ 20 . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil with a price range more than 30 and a low customer rating . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||There is a moderately priced restaurant just outside the city centre called The Phoenix . It provides fast food . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a family - friendly restaurant located in the City Centre near the river . It offers moderately - priced wine , cheese , fruit , escargot , and fondue . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||The Eagle is a fast food restaurant with a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||There is a kids - friendly fast food restaurant near The Sorrento Named Browns Cambridge in Riverside . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||There is a restaurant The Mill along river side near The Rice Boat \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||The Cambridge Blue , a restaurant that serves English cuisine , has attained high customer ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Located riverside near Burger King , and offering outstanding , cheap Indian food , The Eagle is an adult friendly coffee shop . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough pub offers fast food for less than £ 20 . It is a child - friendly venue located near Café Rouge . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||In riverside is the Alimentum the price Range is less than £ 20 it is not family - friendly but it does serve Italian food \nname : The Punter | food : Fast food | price : moderate||The fast food The Punter has a moderate price range . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Next to The Six Bells is Fitzbillies restaurant . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies has traditional UK food , is expensive and is located near The Six Bells . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||I had a bad experience at Blue Spice . I went down to Avalon at the riverside with the family , it was a coffee shop with really high prices and bad food . Looking it up later , I found out it was rated a 1 out of 5 . \nname : The Twenty Two | food : Japanese | family friendly : no||A non - family - friendly , Japanese restaurant is The Twenty Two . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Fitzbillies at The Six Bells offers complete meals , deserts and drinks at low prices \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Not recommended for families , the cheaply priced The Wrestlers serves fast food . It can be found in the riverside area and has a customer rating 1 out of 5 . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is located in The Rice Boat with average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is located near the Crowne Plaza Hotel and is a coffee shop . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that offers wine and cheese , is rated 5 stars , is located in the centre of the city , and is family friend . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||Near the riverside area there is an Indian food restaurant called The Phoenix . The price range is more than £ 30 and it has a high customer rating . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a Chinese place with a moderate price range and a 1 out of 5 customer rating . It is kids friendly and located in the city centre . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant that serves French food . It is in the city centre near Café Rouge , but has a low customer rating \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is an average priced coffee shop style Japanese restaurant with high customer reviews and child friendly atmosphere , near Burger King in the riverside area . \nname : Cotto | food : Italian | customer rating : low | family friendly : yes | near : Ranch||Located close to Ranch , Cotto Italian Eatery is suitable for families . Cotto has received low ratings . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||The non - family - friendly Japanese restaurant named Strada , with an average rating is located near the Rainbow Vegetarian Café , costs less than 20 pounds . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a children friendly place and offers Japanese food . \nname : Green Man | Type : pub | food : Japanese | area : city centre | near : Café Rouge||in the city centre near Café Rouge there is a Japanese pub called the Green Man \nname : The Twenty Two | Type : pub | customer rating : low | area : city centre | near : Café Sicilia||The Twenty Two pub located in the city centre near Café Sicilia , has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagles is not kid friendly as it is a riverside coffee shop near Burger King . Its mid priced fast food is highly rated . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults is a cheap pub near Café Adriatic with an average customer rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Japanese kids friendly place near riverside named The Twenty Two \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a children friendly pub that serves food in the high price range and has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Near The Portland Arms in the riverside area , there is a coffee shop named Cotto which has an average rating from customers for its Japanese food which ranges less than 20 euros . \nname : Wildwood | Type : pub | food : Chinese | price : more than £ 30 | customer rating : high||For no more than £ 30 you can eat Chinese food a the Wildwood pub . It gets a high customer rating for satisfaction . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||In Cambridge city we offer many places to eat our amazing tasty English food . A very popular place to eat is Zizzi 's . Zizzi has very high customer rating and even includes child friendly options . We recommend to tale yourself to a local Zizzi in Cambridge and munch your way to happiness . \nname : The Vaults | food : Japanese | price : high | family friendly : yes||If you 're looking for a children friendly Japanese restaurant with a high price , check out The Vaults . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Near to Yippee Noodle Bar in Riverside , Alimentum offers Chinese food at a cheap price . It has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||The Browns Cambridge is an average dine in restaurant that offers food in the low price range . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||There is a cheap Chinese restaurant located North of the City Centre by the river . The Phoenix has been rated 3 out of 5 stars by its customers . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café and is rated 1 out of 5 is high priced for fast food and not children friendly . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Browns Cambridge is great for cheap burgers and other similar food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Fast food . It is in the city centre near Burger King . It is cheap and family - friendly . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||With a mid price range , The Golden Curry serves Japanese food and is family friendly . They are located near The Bakers . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||North of City centre , theres a placed called Cotto . It 's a coffee shop that is highly rated in the mid price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||A Japanese coffee shop with a 5 out of 5 rating is The Eagle near Burger King in the city centre . They are not family - friendly . \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub that provides Indian food in the less than £ 20 price range . It is near Café Rouge . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is Strada . It serves expensive Japanese food . It has a customer rating of 3 out of 5 and is family friendly . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Cheap fast food near Express by Holiday Inn in the city center , The Rice Boat is a family - friendly restaurant . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a family friendly restaurant that offers fast food . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Zizzi in Riverside is a family - friendly coffee shop with prices less than £ 20 and a low customer rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : city centre||The Waterman pub is Italian in city centre with a customer rating of 5 out of 5 . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Clowns is a pub in the middle price range north of City centre . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||The city centre has an English restaurant called The Waterman with a cheap price range . It is family - friendly and has an average customer rating . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Japanese food serving place in city center near Yippee Noodle Bar with a customer rating of 5 out of 5 . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||In the riverside area , near The Portland Arms , The Punter is located . It is children friendly , and the price range is more than £ 30 . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | near : The Portland Arms||In the city centre there is a fast food coffee shop near The Portland Arms . It is called Cotto , it has an average customer rating and is expensive . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||There is a poorly rated restaurant The Golden Curry that is family friendly and provides sushi and shrimp . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The fast food The Golden Curry is a family friendly with a cheap price range near The Bakers . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman has high priced Italian food , it is in the city center . They are children friendly and there customer rating is 1 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 1 out of 5 | area : riverside||A Pub named The Waterman is 1 out of 5 stars and is set next to the riverside while also serving Chinese cuisine . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop providing Italian food at a high price . They have average ratings and aren 't child - friendly . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : no||The Golden Curry serves Indian with low customer rating not family friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Located in The Portland Arms , Cotto is an expensive coffee shop that has a five star rating . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a moderate priced Chinese food restaurant called Alimentum with a customer rating of 3 out of 5 , in the Riverside area , near Yippee Noodle Bar . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry serves Chinese food with high customer ratings . It is great for the whole family . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||The Taste of Cambridge restaurant has an average customer rating with £ 20 less as the price range . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||You can take the family to The Plough pub located near Café Rouge for low - priced food and drink . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||A family friendly restaurant , the Green Man , is located near All Bar One in the riverside area . Japanese food priced right , less than £ 20 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop with a high price range and a 3 our of 5 customer rating . It is located near The Bakers . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree pub is located near The Portland Arms . They are not kid friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||coffee shop , Aromi , is family friendly and serves French food . Located in the riverside area with a low customer rating . \nname : Cotto | food : Japanese | customer rating : average | family friendly : no | near : Ranch||Cotto is a family - friendly Japanese restaurant with an average customer rating . It is located near Ranch and is not family - friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non - kid friendly Italian restaurant in the moderate price range near the Express by Holiday Inn by the center of the city with a customer rating of 1 out of 5 . \nname : The Vaults | Type : restaurant | food : Japanese||The Vaults is a restaurant that provides Japanese food . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry offers Indian food located in the centre of the city near Café Rouge . It is not family friendly and only has an average customer rating . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a low - priced restaurant in the north city that delivers family services \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman , with a 5 out of 5 rating , is a child friendly Japanese restaurant in the city centre costing more than £ 30 \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge offers high price items with a low approval rating from customers \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The coffee shop Cocum is a low cost family friendly place . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace pub has a price list of less than £ 20 and is near Rainbow Vegetarian Café by the riverside \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop near Burger King . This coffee ship is family - friendly , has average customer ratings , and average prices . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||The Fitzbillies is a moderate priced tapas house located near The Six Bells . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Cheaply priced , city centre coffee shop The Eagle is the fast food alternative to nearby Burger King , scoring a top customer rating despite not being family - friendly . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near the Café Rouge you will find the family friendly restaurant , The Golden Curry . Serving Japanese food in the riverside area with a customer rating 5 out o 5 . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Indian restaurant in the river side . Rating 5 out of 5 . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||The Vaults has Fast food that is moderately priced , and is kid friendly . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A restaurant called Strada is located near Rainbow Vegetarian Café . It is family friendly with low prices and a high rating . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||Giraffe is a pub that is not family - friendly that serves fast food by the riverside . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes||In the city centre there is a family - friendly coffee shop called Aromi . It serves Italian food and has an average customer rating . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant near Express by Holiday Inn in riverside . Even though the customer rating is low they are children friendly and the price range is more than £ 30 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Giraffe is a coffee shop that is not children - friendly ; price range is high , located near The Bakers , has a customer rating 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderately priced coffee shop serving French food . It is located at the city center and is kid friendly . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a place to bring the entire family . It is a lower priced burger place near the city centre . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||A cheap fast food restaurant in the centre of the city near the Yippee Noodle Bar with a customer rating of 5 out of 5 is Alimentum . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne is a restaurant North of the city centre which is located near the water . It 's a 5 star restaurant , but prices vary . It is located near The Rice Boat . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a family restaurant , cheap with average rating and in the city centre . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a low rated kid friendly English place near Café Rouge in riverside . It is called The Golden Curry , \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : moderate||There is a moderately priced Chinese restaurant called The Dumpling Tree . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a moderately priced coffee shop in the city centre that serves Japanese food . The restaurant has low customer ratings . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is family friendly . They have a 5 out of 5 star rating , and are located near The Portland Arms . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a low rated Chinese restaurant in the city centre , they are adult only and priced less than 20 . \nname : Midsummer House | food : Chinese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is near Café Rouge . It serves Chinese food and has a customer rating of 5 out of 5 . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : city centre||The Phoenix , serving Indian food , is cheap , has an average rating , and is located in the city centre . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Cocum is a coffee shop offering Indian food with a customer rating of 5 out 5 . Price wise , it is in the cheap range . It is not a family friendly establishment . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes||Aromi is a French family - friendly coffee shop in the city centre that has an average customer rating . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Located near The Six Bells is Fitzbillies . A fast food restaurant serving dishes that cost more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , is a family friendly , high priced , Italian coffee shop named The Wrestlers . The Wrestlers is near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||There is a child friendly restaurant in the high price range name Travellers Rest Beefeater . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a fast food restaurant of exceptional quality just north of All Bar One . It 's quality doesn 't come cheap , however , as they have very high prices . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe serves French food by the riverside . It is a kids friendly pub . \nname : Blue Spice | food : English | price : £ 20 - 25 | area : riverside||Blue Spice serves English food in the average price range of £ 20 - 25 . It is located in the riverside . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : average | near : Ranch||There is a cheap Indian coffee shop named Wildwood which has average customer ratings and is located near Ranch . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter is a fast food venue with a price range under £ 20 \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||Japanese cuisine served at The Eagle , has a rating of 3 out of 5 . This kid friendly coffee shop will range in price from 20 - 25 , and is located near Burger King in the center of the city . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : city centre||The Phoenix is a high price range Chinese restaurant in the city centre with an average customer rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a child friendly Japanese restaurant located in Riverside . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum , a French coffee shop has a low customer rating of 1 out of 5 but is kids friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | near : The Sorrento||In riverside near The Sorrento , you can find the coffee shop called The Mill . They sell Italian food with the average price being £ 20 - 25 . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves fast food . in a family friendly environment . It is on the riverside by Express by Holiday Inn with a low customer rating . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||The Waterman is a breakfast oriented pub north of the City centre . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||burgers fries and drinks family friendly Aromi is a 5 star coffee shop . \nname : The Eagle | food : Italian | customer rating : average||For Italian food you can go to The Eagle , it has an average rating . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a low quality and low price Wine , Cheese and Olive restaurant located by the Riverside . It is not family friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns is a one star restaurant located on the river near Clare Hall . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||Loch Fyne is a family friendly fast food restaurant which is moderately priced . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Family friendly venue The Wrestlers offers good value hearty British food at a great price , located in the city centre \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is a cheap coffee shop , Wildwood is located next to a Ranch . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a highly rated , kid friendly pub near the Ranch . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||There is an Indian restaurant near Crowne Plaza Hotel called The Waterman . It is family friendly . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : riverside||Home cooked meals at The Phoenix near Chesterton Road . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a family friendly fast food place . \nname : The Golden Palace | Type : restaurant | price : high||The Golden Palace is a restaurant in the high price range . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||There 's a restaurant in All Bar One called Midsummer House that has high - end Italian food . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||The cheap Italian restaurant Bibimbap House is located in the riverside area near Clare Hall . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a poorly rated mid priced coffee shop that offers fast food . It is located near The Portland Arms in the City centre . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Rated 3 out of 5 , Strada is a Japanese pub near Yippee Noodle Bar \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||A cheap Chinese place in City Centre is called Alimentum . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||A family friendly pub near Riverside that serves cheap Indian food is called The Olive Grove . \nname : Midsummer House | food : Indian | price : cheap | customer rating : average | near : All Bar One||Midsummer House is a cheap Indian restaurant near All Bar One with an average customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving average priced Italian food . Is child friendly but has a poor customer rating . Located in riverside near ' Burger King ' . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a family friendly restaurant located near the Burger King called The Eagle coffee Shop . It has a 3 star rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : £ 20 - 25 | family friendly : yes||There is a moderately priced , £ 20 - 25 , Italian restaurant that is also kid friendly called Loch Fyne . \nname : The Rice Boat | food : Japanese | area : riverside||The Rice Boat , situated on the riverside , serves a range of Japanese food . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a middle priced , 1 star restaurant located near the Express by Holiday Inn . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia The Punter offers kid friendly French food with prices ranging from £ 20 to £ 25 . The restaurant is a coffee shop with a high customer rating . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge is a cheap , average venue . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The family friendly The Waterman coffee shop located next to the river . It has low costumer rating and the prices are high . \nname : The Vaults | food : Chinese | price : more than £ 30 | family friendly : yes||More of a family choice , the ' The Vaults ' provides Chinese food in a children - Friendly environment . A typical visit will cost anything more than £ 30 . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||Browns Cambridge sell spaghetti and wine , has an excellent rating and is in the medium price range . Located in a busy part of town . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : no | near : All Bar One||You will find a moderately priced Chinese restaurant called Green Man near All Bar One in city centre . This establishment is not kid friendly . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : city centre||The restaurant ' The Golden Palace ' is located in the city center and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a 5 - star coffee shop that serves fast food , with a family - friendly menu . It can be found north of the city center , nearby the Crowne Plaza Hotel , beside the river . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a family friendly , three star British restaurant that is located next to the Rainbow Vegetarian Café with a medium price point . \nname : Green Man | food : English | price : high | area : riverside | family friendly : no | near : All Bar One||Welcome to the Green Man . We are not children friendly . Our food is English , and we are located on the riverside near the All Bar One . Our price range is high . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is a family friendly Italian food venue . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||At riverside operate children - friendly Fast food coffee shop named Fitzbillies high priced ad rated 1 out of 5 . \nname : Midsummer House | food : Indian | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a venue . It specializes in Indian food . It has a customer satisfactory rating of 3 out of 5 . Midsummer House is near Café Rouge . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||For family friendly and cheap fast food , The Golden Curry is near The Bakers . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||Zizzi is a cheap , family friendly coffee shop with an average customer rating located in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies coffee shop in riverside isn 't family - friendly , has a low customer rating that is less than £ 20 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a child - friendly coffee shop with a customer rating of 3 out of 5 . It is suitable for those with a high price range and it is located near Avalon at the riverside . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough pub serves food and drinks for the whole family . It is close to the Café Rouge . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix sells moderately rated and prices Indian food in Riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||there is a coffee shop that is not child friendly which has customer ratings of 3 out of 5 and which serves Italian food called The Punter which is near Café Sicilia \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a fast food restaurant providing high customer rating which is not kid friendly in the mid price range . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is located in riverside and is a providing Italian food , and customer rating is average . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||In riverside , there is a family friendly spot called The Twenty Two . This average rated establishment , located near The Rice Boat , has options that make it possible to dine out for less than 20 pounds . \nname : Midsummer House | food : Indian | customer rating : low | near : Café Rouge||Midsummer House is an Indian restaurant with a low customer rating near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is an inexpensive coffee shop for adults only . It is located near the river and serves burgers and fries . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough , a friendly family pub serving French food with meals less than £ 20 , is near Café Rouge . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||Near riverside , The Rice Boat is a family friendly establishment . They serve Indian food for moderate prices . \nname : Browns Cambridge | food : Indian | price : high | customer rating : average||Browns Cambridge serves expensive Indian food with average customer ratings . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||This Italian food restaurant called The Golden Curry is a kid friendly site and is rated 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies , a nice family - friendly coffee shop located in city centre , serves Indian food at reasonable prices . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||Cotto offers sushi near the Ranch in an adult - friendly atmosphere . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : no||based in the city centre the Aromi pub does not cater for children also holding a low customer review . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||On the riverside area are located Alimentum , has a very good French food for adults and kids , his price range are over 20 to 25 £ . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||Near The Sorrento in riverside is a coffee shop that serves Italian food called The Mill who 's price range is moderate . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice is a moderately priced adult gathering spot located near St. John 's College . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Avalon||I know of a highly rated coffee shop in the city centre near Avalon named Blue Spice . It 's £ 20 - 25 and it 's not kid - friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A restaurant in the average price range . It is kid friendly is called Travellers Rest Beefeater . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : The Rice Boat||Located near The Rice Boat , The Twenty Two has low prices , high customer ratings and is in the city centre . Please note The Twenty Two is not child friendly . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family - themed restaurant located next to the river . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located in the riverside area near Café Rouge . It 's a kid friendly atmosphere , and serves highly rated Chinese food . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : no||The Vaults is a fast food place that costs more than 30 pounds and is not children friendly . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry , near Café Rouge and located in city centre is family - friendly , French food restaurant . The customer ratings are 5 out of 5 \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Phoenix is a highly rated French eatery in the city centre , prices start from £ 30 \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is near The Six Bells and is child - friendly . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is an English , family friendly pub near The Portland Arms . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum is a child friendly , fast food establishment by the riverside . It is moderately priced . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kids friendly Japanese food restaurant near Crown Plaza Hotel . \nname : Bibimbap House | food : Japanese | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is a cheap Japanese restaurant in riverside near Clare Hall . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a low rated French restaurant located in the riverside area near The Rice Boat . \nname : The Punter | food : French | price : more than £ 30||The Punter has 3 stars and a variety of food \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||The Wildwood is an expensive Italian restaurant with average customer ratings and is located near the Ranch . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||Customer rated 1 out of 5 , The Eagle sits riverside for a high price . \nname : The Eagle | food : English | customer rating : average||The Eagle is a restaurant that serves English food . It has an average customer review . \nname : Clowns | price : more than £ 30 | family friendly : no | near : Café Sicilia||Clowns , a non child friendly restaurant near Café Sicilia has a price range of more than 30 . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , an Italian restaurant near All Bar One , offers food at less than £ 20 with a low customer rating . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||There is a high priced coffee shop called The Vaults in the riverside area near Café Brazil . Previous customers have rated it as 1 out of 5 . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||In the riverside area near Café Rouge is The Golden Curry which is the family friendly and serves French food and has a customer rating of 5 out of 5 \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a restaurant with a high price range which serves Indian food . With a customer rating of 1 out of 5 , it is located in the city centre near Yippee Noodle Bar . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop near The Bakers . It has a low price range and a low customer rating . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House near Café Rouge serves English food . It has a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||If you 're looking for a higher priced , kid friendly environment , visit Blue Spice . A cute little coffee shop in the city centre near Avalon . Customers give it a 5 out of 5 . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a moderately priced English restaurant situated in the city centre . It has a low customer rating . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice has a moderate price range and is in riverside . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a moderately priced Indian coffee shop . It is rated 3 out of 5 by its customers and is kid friendly . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is a children friendly restaurant that serves Indian food . This restaurant has an average customer rating . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a child friendly riverside pub with a 1 out of 5 customer rating . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||Indian food is served at The Golden Curry , a kid friendly restaurant with high customer rating . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Japanese restaurant located near Café Rouge in the riverside area . It is not family - friendly and has an average customer rating . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop offers snacks and spirits at mid - cost in a family - friendly environment . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A highly rated kid friendly coffee shop near the river is called Aromi . It is Japanese . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||The coffee shop Wildwood near Ranch has a customer rating of 3 out of 5 and sells high priced Japanese food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop with a service of fast food , in city centre near of Burger King \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Chinese food restaurant , The Wrestlers , has an average price range of £ 20 - 25 . Even though it is not kid friendly it does have a high customer rating . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is located in the riverside area and serves Indian food for less than £ 20 . It has a low customer rating and is not family friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Family friendly restaurant Loch Fyne serves Japanese food at less than £ 20 . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop and Indian food restaurant located in the riverside area near the Crowne Plaza Hotel . It is not family friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop called Cotto , that serves Italian food , is located near The Portland Arms in riverside and that is moderately priced . This gets a customer rating of 1 out of 5 . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a riverside pub that is kids - friendly and has a high customer rating . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : no||A Chinese food place with an average customer rating that is not family friendly is called The Golden Curry . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle has a 1 out of 5 rating and serves Italian food . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a kids friendly restaurant with a high customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||Around the corner from Café Sicilia you will find The Dumpling Tree , a child friendly coffee shop near to the river . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||There is a coffee shop named Cotto in the city centre , near The Portland Arms . It serves Italian food and has a high customer rating . Prices range from £ 20 - 25 . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Bibimbap House , near Clare Hall , is an English restaurant . They serve inexpensive food and are located in the riverside area . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||There is an English food family friendly restaurant Browns Cambridge located on the riverside near The Sorrento . \nname : Midsummer House | food : Chinese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a high rated restaurant that serves Chinese food near Café Rouge . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : no||The Rice Boat offers Indian cuisine in the riverside area . It is not family friendly and has overall low customer ratings . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub with Chinese food that costs less than £ 20 . It is not family friendly and is located in the city centre . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||There is a children friendly restaurant called The Plough located near Express by Holiday Inn . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Near The Six Bells with a price range of less than £ 20 serving Japanese food is Fitzbillies . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop which provides Indian food . It has an average customer rating and is located in the city centre . It is not family friendly . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Japanese food serving place in city center near Yippee Noodle Bar with a customer rating of 5 out of 5 . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Strada is expensive , but is highly rated by customers . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Near to The Sorrento is Browns Cambridge . It serves English food , is child friendly and is by the riverside . \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||There is a moderately priced restaurant called The Plough located near The Bakers . It is not child friendly . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||There is an Italian called The Phoenix in the Riverside area . its price range is cheap and has a customer rating of 5 out of 5 . \nname : Bibimbap House | food : Japanese | price : moderate | area : city centre | near : Clare Hall||Japanese food restaurant in city centre near Clare Hall , called Bibimbap House with moderate price range . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a kid friendly Chinese restaurant with a moderate price range and a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Indian food with average customer rating in the riverside area . Yes , it is children friendly and located close to the Crowne Plaza Hotel . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is located near Raja Indian Cuisine in the city centre area . It serves Japanese food in the moderate price range and is child friendly \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that serves Indian food near The Portland Arms . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||Families welcome at The Golden Curry . 5 star rating \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant located far North from the center . of Cambridge . Prices are fair , not cheap but not too expensive . Wine and other liquor is served as well . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Sorrento in riverside . The Mill serves Japanese food for less than £ 20 in a coffee shop \nname : Green Man | price : moderate | area : riverside | family friendly : no||Close to the city centre is a moderately priced restaurant called Green Man . it is not family friendly . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi , a family - Friendly coffee shop which is cheap has a customer rating of 5 out of 5 and is in the riverside area \nname : Bibimbap House | food : Japanese | area : city centre | near : The Rice Boat||Bibimbap House , located near The Rice Boat in the city centre sells Japanese food . \nname : Cotto | food : Japanese | near : Café Rouge||The Cotto serves Japanese food near Café Rouge \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough is an English Café near Café Rouge with a child friendly atmosphere and a high price range . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a kid friendly coffee shop serving Japanese food with a moderate price range near Café Sicilia with a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a cheap fast food restaurant near Café Brazil . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||For a kid friendly , highly rated Chinese restaurant , try The Golden Curry , located in the riverside area near Café Rouge . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a French pub located in riverside good for kids . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a family friendly , fast food restaurant in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies , family friendly , coffee shop offers a variety of Indian food in the Riverside area . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a French cuisine just by the riverside . Majority of meals cost less than £ 20 and the restaurant is family friendly . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a pub near Ranch . It is not family - friendly and has a low customer rating . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||A high customer rating restaurant named The Golden Palace that is near the riverside . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a child friendly Japanese restaurant . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is a Japanese place with a more than £ 30 price range that is children Friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a Japanese pub for more than 30 euros near Café Brazil . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , located in the riverside area near the Crowne Plaza Hotel , is a kids friendly coffee shop with a 3 out of 5 customer rating . \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : yes||Located in the city centre , The Rice Boat is a family - friendly Japanese restaurant with a low customer rating . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Adult - only Chinese restaurant , The Waterman , offers top - rated food in the city centre . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||if you go down the riverside area there is a nice child friendly fast food place called The Rice Boat which has high ratings from previous customers \nname : The Waterman | Type : pub | food : Japanese | customer rating : 1 out of 5 | area : riverside||The Waterman Pub in Riverside has a star rating of 1 out of 5 serves Japanese food . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||While receiving mid range customer ratings of 3 out 5 , you still might want to check out the moderately price pub eatery called Wildwood . They offer fast food to guests . \nname : Zizzi | Type : pub | food : Japanese | customer rating : high | family friendly : yes||I was looking online for ratings and found a kid friendly pub that has a high rating . It 's Japanese and its called Zizzi . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne Fast food restaurant has a price range of less than 20 ponds and yes it is family friendly . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a children friendly restaurant located in the riverside area , which serves French food . It is a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 3 out of 5 | area : riverside||Pub style Fast food served at The Waterman on the riverside with a 3 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||In riverside there is a moderate price range Indian coffee shop called Fitzbillies that is not kids friendly and has a 1 out of 5 customer rating . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves Japanese food and has a customer rating of 3 out of 5 . It is located near Clare Hall in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop which serves Indian food . It is based in the riverside area near the Crowne Plaza Hotel . It is child friendly . It has 1 out of 5 stars . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||A pub in the high price range of more than £ 30 , is Clowns . Its customer rating is low and it is in the riverside area . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice , is a coffee shop that is family Friendly , with price Ranges that are less than £ 20 , near Avalon and riverside , its customer Ratings are low . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Fast food restaurant Alimentum offers food less than 20 in the riverside area , but is not family - friendly . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults , a coffee shop in the riverside area near Café Brazil with an average customer rating and a high price range . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Located near The Portland Arms on the riverside is a coffee shop that serves Japanese food . Its called Cotto and has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Italian | price : high | area : city centre||The Mill public house in the city centre serves Italian food in the higher price range . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||Riverside fast food pub The Waterman has a high customer rating . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Japanese food is served at The Wrestlers which is in the price range £ 20- £ 25 . It is not kids friendly and has a customer rating of 3 out of 5 \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving Italian food . It is not family friendly . It is based in the riverside area near Crowne Plaza Hotel . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop in the price range over £ 30 and not children - friendly . Located in center of city near the Café Sicilia . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a Japanese pub has a great customer Rating of 5 out of 5 . It s a Japanese pub , near Yippee Noodle Bar . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||There is a moderately priced , highly rated Italian restaurant in city center called The Phoenix . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Near the Yippee Noodle Bar is a restaurant called the Alimentum . It is in the City Centre with a high customer rating and a price range between £ 30 and £ 25 . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove is a family friendly restaurant in the area of riverside . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a French coffee Shop near Crowne Plaza Hotel in riverside . it is family - Friendly . \nname : Blue Spice | food : Italian | price : high | area : city centre||Blue Spice is located in the city center and is an expensive Italian restaurant . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is an Indian restaurant with a moderate price range and near riverside . It has a customer rating of 3 out of 5 . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is an expensive family friendly restaurant near the river . It is rated 1 out of 5 . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a noodle restaurant located near The Sorrento . \nname : Fitzbillies | food : Indian | price : less than £ 20 | near : The Six Bells||Fitzbillies is an Indian restaurant located near The Six Bells , with dishes which cost less than 20 pounds . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||With a customer rating of 1 out of 5 , an environment which is not children - friendly and relatively high - priced menu items , The Waterman is not a top pick among Indian cuisine restaurants in the riverside area . \nname : The Golden Curry | food : Fast food | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers . This fast food venue is children friendly and most selections range more than £ 30 . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto is a fast food restaurant near Café Rouge \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop that also serves Italian food . It has a high customer rating , so if you are interested it is located near Burger King in city centre and the bill will be around £ 20 - 25 . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater in near Café Adriatic , in riverside has a high price range and an average customer rating . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Near The Rice Boat in the riverside area is the Loch Fyne with English food and an average customer rating . \nname : The Punter | food : Japanese | price : cheap||The Punter cooks Japanese food the price is cheap \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||At the Giraffe pub we serve great food including Japanese cuisine . We are in an attractive riverside location and we are children friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes||Aromi is a family friendly coffee shop that serves Indian food . It has a low customer rating and is located in the city centre . \nname : The Punter | food : Fast food | price : more than £ 30||If you are looking for a fast food restaurant , The Punter provides meals for more than £ 30 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Aromi is a highly rated and child - friendly Indian coffee shop located in Riverside . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a Chinese restaurant with dishes costing less than 20 pounds . It has a low customer rating and is located in the riverside area . It is not family friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves high priced English food in a child friendly environment and has an average customer rating . It is located near the Express by Holiday Inn in the centre of the city . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If looking for a family - friendly coffee shop , The Wrestlers is located in the city centre near Raja Indian Cuisine . The price range is less than £ 20 for Japanese food . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||There is a family friendly restaurant in the city The Golden Curry . They have high customer ratings and they serve French food . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia is a coffee shop with a customer rating of 1 out of 5 and a moderate price range serving Japanese food and is child friendly called The Punter . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||In the riverside area , near Burger King , there is a fast food coffee shop called The Eagle . It is rated 3 out of 5 and is moderately priced but not kid friendly . \nname : Cotto | food : English | customer rating : low | family friendly : yes | near : Ranch||Near Ranch there is a low rated English family friendly restaurant named Cotto \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix restaurant offers French food in the more than £ 30 price range . It has a low customer rating an is in the riverside area . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||Non - child friendly coffee shop Cocum is low customer rated and the price range is more than £ 30 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||At The Wrestlers , We are a family - Friendly cheap Fast food place . It is in the cheap price range with a customer rating of 5 out of 5 . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice is a mid - range fast food restaurant located on the river . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||The Giraffe , an Italian pub , is kid friendly in the riverside area . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||children Friendly Type restaurant Cocum customer rating is very high . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the riverside area , near to Café Brazil . It has an average customer rating and a price range of less than £ 20 . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||with an average customer rating and high price range the children friendly The Twenty Two in riverside is near The Rice Boat \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn . It 's a three star , family friendly restaurant that is family friendly . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House a 1 star restaurant that offers shrimp and sushi . Just North of Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Want some fast food and a family friendly attitude . Some to Browns Cambridge coffee shop located next to the riverside and Crowne Plaza Hotel . You won 't regret out average rating . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||The Giraffe pub is child friendly located in the riverside area it serves Italian food \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop that also offers full meals at affordable prices . It is located in the city centre . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a riverside coffee shop with average customer rating but cheap coffee , near Café Brazil \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : moderate||There is a moderately priced Chinese restaurant called The Dumpling Tree . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge serves French food that is kids friendly . It is in Riverside near Crown Plaza Hotel \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||English food with a high customer rating and a price Range more than £ 30 can be found at the Cotto coffee shop in riverside near The Portland Arms , \nname : Loch Fyne | Type : restaurant | food : Italian | price : more than £ 30 | family friendly : yes||Loch Fyne restaurant has a price range of more than £ 30 , it serves Italian food and yes its child friendly . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||In the Riverside area is Alimentum which is near The Yippee Noodle Bar , they offer great English food at a little higher price . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||a child friendly pub with a price range of over £ 30 named Cocum has low customer ratings . \nname : Green Man | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is an Italian restaurant in Riverside . It is a child friendly near All Bar One . The price range is more than 30 . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Clowns pub at the riverside ranges between £ 20 and £ 25 and has a customer rating of 3 out of 5 \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||There is a cheap pub Wildwood , with delicious English Breakfast \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove is a pub in the city centre that provides French food with a price range of more than £ 30 . It is not children friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||There is a cheap Italian restaurant called The Dumpling Tree . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : city centre||City centre is home to a restaurant that has a 5 out of 5 customer rating for the Chinese food it serves . The restaurant is called The Phoenix . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is in the riverside area near Café Rouge . It serves 3 out of 5 rated Indian food and is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Located in the centre of the city , Fitzbillies is a 3of5 coffee shop moderate , serves food for all , including kids friendly \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada near Rainbow Vegetarian Café serves Japanese food is children - friendly has a low customer rating and a price range of more than £ 30 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||A French restaurant with a low customer rating and a price range of over 30 euros is a children friendly restaurant named The Waterman and located along the riverside . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : average||The pub Wildwood is expensive . It serves Indian food and has an average customer rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi coffee shop has a 3 out of 5 rating , price range £ 20 - 25 , is kids friendly , and located in the city centre . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||The Midsummer House in an eat - in sushi restaurant . It has an over - all rating of one star . It is located just Northwest of Café Rouge . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a children friendly Indian restaurant called The Rice Boat locate din city centre , near the Express by Holiday Inn . The restaurant has a high customer rating , and a price range of upward of 30 euros . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop sells sushi close to Clare Hall in Cambridge . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : riverside||a 5 out 5 English pub in the riverside area would be The Waterman \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults , serves moderate priced English , and is kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a non family friendly Japanese coffee shop , just a short distance along the riverside from the Crowne Plaza Hotel . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located in the centre of the city , The Rice Boat is non - family - friendly . Their English food is rated 5 out of 5 by customers . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a French restaurant with a customer rating of 5 out of 5 . It is family friendly . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is an Italian pub near Café Rouge that is average priced and family friendly . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a restaurant food Italian providing in the 20 - 25 pound people rating high , kids friendly yes \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Blue Spice is near the city centre area . Not children friendly . High price range . 3 out of 5 customer rating . \nname : The Eagle | food : English | customer rating : average||The Eagle is an English food with an average rating \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a moderate - priced pub near Café Adriatic that has a customers score 3 out of 5 . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a cheap restaurant that serves Japanese food in the city centre . It has a customer rating 5 out of 5 . \nname : Midsummer House | food : Chinese | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is near All Bar One and service Chinese food within a high price range but it has a customer rating of 1 out of 5 . \nname : The Vaults | food : Fast food | price : high | family friendly : yes||There is a high price Range children Friendly restaurant called The Vaults . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||There is a Japanese restaurant called The Phoenix that has low customer ratings . \nname : The Phoenix | food : French | customer rating : 1 out of 5 | area : riverside||The Phoenix is a French food . It located near riverside . . Many people rated it 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a pub that serves Italian food at a less than average price range . They are family friendly and located in the Riverside area . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies , a non - children friendly Indian coffee shop , had a high - priced menu and customer rating . Fitzbillies is in the riverside area . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia by the riverside , there 's a coffee shop called The Dumpling Tree with cheap prices and a family - friendly ethos . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||Japanese dining at a 5 star level , The Golden Curry is the place to go for families as it is kid friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Avalon||A low priced coffee shop in the city center near Avalon is Blue Spice . It is not family - friendly , and low rated . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre is a 5 out of 5 rated Japanese cuisine coffee shop , Fitzbillies , that is not children friendly and costs more than £ 30 . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum has a customer rating of 5 out of 5 and serves inexpensive food . It is not family - friendly pub . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||There is a highly rated , family friendly coffee shop serving Indian food near Café Sicilia called The Punter . The menu is priced over £ 30 . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix , is an Italian restaurant with low prices and highly rated and located in City centre . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : city centre||Blue Spice is a restaurant in the city center that serves Japanese cuisine for more than 30 pounds . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Finding cheap Japanese food is difficult . There 's a coffee shop named Cocum rated 5 out of 5 that serves what you 're looking for , but it 's for adults only . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a highly rated , but not kid friendly eatery located in the city centre by The Rice Boat . It is in the price range of £ 20 - 25 . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge pub is children friendly . It is near The Sorrento located on the riverside . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||There is a child friendly restaurant next to the riverside called The Olive Grove . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children - friendly coffee shop called The Wrestlers is in the riverside area near Raja Indian Cuisine . The price range is more than E30 and it serves French food . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat has no children friendly services and food . This English restaurant , located at the riverside near Express by Holiday Inn , has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant located near Express by Holiday Inn in the city centre . It is not family - friendly , has a price range of less than 20GBP and a low customer rating . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn a 3 star medium priced family friendly restaurant called Fitzbillies . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop just outside of the city . Prices are middle - ranged . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant located near Express by Holiday Inn . The Rice Boat is family friendly and is rated three stars . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a sushi restaurant , rated five stars , that is moderately priced and located by All Bar One . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , The Rice Boat has a high price range and average customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop that serves Indian food in the city centre near Clare Hall . It 's rated 5 out of 5 by the customers . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low rated Italian food coffee shop . It is located near Café Sicilia and is children friendly . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a child friendly Fast food restaurant with a 5 out of 5 customer rating \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Located inside of Café Sicilia , The Punter is a family friendly coffee shop . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the moderate price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves Japanese food . It is located near Clare Hall in the area of riverside . Clowns has an average customer rating of 3 out of 5 . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is an English restaurant in City centre . The prices are low , but it is not family friendly . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Riverside has a low priced pub called The Twenty Two located near Café Sicilia . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | near : The Sorrento||There is a coffee shop that has fast food for less than £ 20 called The Mill . It is in the city centre near The Sorrento . \nname : The Phoenix | food : Chinese | customer rating : average | area : riverside||Here is The Phoenix a Chinese restaurant on the riverside with average customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||There is a Japanese coffee shop with a price range of more than £ 30 . It is called Fitzbillies and is located within the city centre . It has a low customer rating and is not child - friendly . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a cheap , family friendly pub located near Café Rouge . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop with high customer ratings providing a price range of more than 30 . It is located near The Bakers . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace on the riverside serves moderately priced French eating and is rated 1 out of 5 by customers . \nname : Cotto | food : Italian | customer rating : low | family friendly : yes | near : Ranch||Cotto is family friendly Italian food restaurant in the riverside area near Ranch Cotto has negative customer feedback . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Customer rating 3 out of 5 . Chinese food , The Golden Curry , near Café Rouge in Riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a 5 out of 5 customer rated Indian and coffee shop by the riverside that 's cheap and family friendly . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns by the riverside is a moderate priced pub with a customer rating of 1 out of 5 . \nname : The Rice Boat | food : French | area : city centre||The Rice Boat is in the city centre . It serves French food . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||The Wildwood pub has five stars and it is moderately expensive . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is Japanese and family - Friendly near Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop serving French food at low prices , it is sited in the city centre near Café Sicilia . \nname : The Twenty Two | food : French | family friendly : yes||For French cuisine try The Twenty Two . It is also kid friendly . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : city centre||The Eagle , with a customer rating of 3 out of 5 , is a high priced restaurant located in the city centre . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is an Italian food restaurant that is kids friendly . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||The Mill is a pub located near the river that serves food and drinks in the mid price range . \nname : Fitzbillies | food : Chinese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a medium priced Chinese restaurant near The Six Bells \nname : The Twenty Two | food : Chinese | family friendly : no||The Twenty Two provides Chinese food . It is not family friendly . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a restaurant providing fast food in the low price range . It is located near All Bar One . There is a cheap restaurant Midsummer House located near All Bar One that provides Fast Food . Midsummer House is a low - priced restaurant near the All Bar One that provides Fast Food . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a coffee Shop providing Italian food . It is located in city center and have 5 out of 5 costumer rating and family - friendly too \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop with a price range less than 20 and serves Japanese food . It is in the riverside area and is not family - friendly . The customer rating is low . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Located in the riverside area The Waterman serves cheap British food . It is not family friendly and has a low customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||There is a 5 out of 5 rated coffee shop called The Vaults near Café Brazil in riverside . Prices begin at £ 30 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is is a children friendly Japanese establishment . It is located by the riverside near The Express by Holiday Inn with a price range of more than £ 30 and customer rating of 5 out of 5 . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant providing English food in the price range between £ 20 - 25 . Located in the city centre , near Express by Holiday Inn , The Rice Boat is highly rated and kid friendly . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||For a cheap family friendly Italian meal visit Strada . It has an average customer rating and is located near Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : cheap||The Dumpling Tree is a Japanese style restaurant with cheap prices . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One is Midsummer House . They are rated 3 out of 5 stars and serve moderately priced English food . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House serves Japanese food in the less than £ 20 price range . It 's located near All Bar One and has a low customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||There is a children friendly pub in riverside called The Olive Grove . It 's a high priced venue serving Italian food . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Riverside houses Bibimbap House near Clare Hall and a Japanese restaurant with prices lower than £ 20 . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||The children friendly French restaurant Cotto near the Ranch has a low customer rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||In the riverside area there is a place called The Waterman which serves French food costing more than £ 30 . It is not children friendly and has a low customer rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Zizzi is highly rated but also quite pricey coffee shop on the riverside . It welcomes families and children . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||A fast food restaurant by the riverside is The Phoenix with a 3 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||Located near City Centre is a pub that serves fast food called The Waterman . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not children friendly and high - priced serving English food with a 1 out of 5 rating near Express by Holiday Inn in the city centre . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum , British food reasonably priced and child friendly . Find us by the river . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns is an average riverside Japanese coffee shop near Clare Hall . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly English pub located near The Portland Arms \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly restaurant with a 5 out of 5 customer rating . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||In riverside , near Café Rouge there is The Golden Curry . It serves Chinese food , and the customer Rating is 3 out of 5 , is a kids Friendly site . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults is a medium priced pub near to Café Adriatic with a high Customer Rating \nname : The Rice Boat | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is an English , kid friendly restaurant in the riverside area with a 3 out of 5 customer rating . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||A no Kids friendly restaurant located near the Rainbow Vegetarian Café has a moderate customer rating of 1 out of 5 called the Strada Fast food \nname : The Eagle | food : Chinese | customer rating : low||Looking for Chinese restaurant with a poor customer rating , then The Eagle is for you . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a five star coffee shop outside of city center . It serves sushi in a high price range , and has a family friendly environment . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near the Express by Holiday Inn within the city center server up cheap English food with 5 out of 5 stars and yes children are always welcome . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man serves Indian food for a moderate price . It is located in the city centre area near All Bar One and yes , it is kid friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Zizzi is a coffee shop in the city centre with a 5 out of 5 customer rating . They are child friendly and are in the price range of more than £ 30 . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly Indian restaurant , prices are less than 20 , in the riverside area . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is average . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly coffee shop The Wrestlers Situated riverside near the Raja Indian Cuisine . Offering great food at cheap prices . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A family friendly restaurant named The Golden Curry is located on the riverside . The customer rating is 5 out of 5 and it is located near the Café Rouge . \nname : The Mill | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside||The Mill is a pub that serves Italian food . It is located in the Riverside area and the prices range from £ 20 - 25 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is located beside the river and serves Japanese food . It has a customer rating of 3 out of 5 and a price range of £ 20 - 25 . It is not kid friendly . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry , near Café Rouge in riverside , is a French restaurant with average customer ratings . It is not family - friendly . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||British food restaurant Midsummer House is rated 3 out of 5 stars . Located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The coffee shop called The Eagle , near Burger King in the riverside area , is a children friendly restaurant that serves Indian food and has 1 out of 5 stars , it has a high price range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is located in the center of the city near Burger King . It is a coffee shop that serves fast food and is not kid friendly . The price range is moderate and the customer rating is 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||There is a pub named The Cambridge Blue that provide English food near Café Brazil and the price is moderate \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : yes | near : All Bar One||kids - friendly Green Man serves moderately priced French food in the city centre near the All Bar One . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : riverside||The Phoenix is a restaurant that sells Indian food , price range is high , average customer service , located in Riverside \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is a pub providing Italian food in the less than £ 20 price range and low customer range . \nname : Loch Fyne | food : Chinese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne offers Chinese food . Its customers rating is average . It is in the city centre and it is near The Rice Boat . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Near to the Café Rouge in the riverside area is The Golden Curry offering Indian food . It is children - friendly but has an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue is an Italian restaurant with an average customer rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood can be found near the Ranch . The low priced Italian coffee shop is rated 1 out of 5 . \nname : Zizzi | Type : pub | food : French | customer rating : high | family friendly : yes||Zizzi is a pub with very high customer Rating . The pub is Kids Friendly . The food offered they serve is French . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a Italian coffee shop Fitzbillies that provides food and beverages in less than £ 20 . It is family - friendly and located in the city centre with low ratings . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : city centre||The Golden Palace , customer Rating 5 out 5 is restaurant in the centre of the city . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is an English restaurant with low ratings and moderate prices . Strada is located near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||Located in the city centre , The Eagle is near Burger King . It is a coffee shop that is family - friendly with cheap prices and low ratings . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is near the riverside and has an average price range . It allows children . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice at the riverside has a price range of more than £ 30 . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Fitzbillies is near The Six Bells and it serves food at an average price . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||In the Café Rouge neighborhood you have Midsummer House serves French food and has positive customer feedback . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a striking coffee shop near Burger King in the area Riverside , service features Japanese food , family atmosphere , warm clentele and moderate prices \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 3 out of 5||The Wildwood pub serving Chinese food has a customer rating of 3 out of 5 and a moderate price range . \nname : The Eagle | food : Indian | customer rating : high||The Eagle serves expensive Indian food . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||The Loch Fyne is a British restaurant that is inexpensive , serves breakfast , and permits families . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : no||The Green Man restaurant is child - friendly , mid - range in riverside . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||A high priced sushi pub is located beside the Café Brazil called The Cambridge Blue . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly moderately priced restaurant located in Riverside near the Express by Holiday Inn . It has a 3 out of 5 rating . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge is in the high price range at more than £ 30 , but is rated low by customers . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop serving Italian food , called Browns Cambridge , near The Crowne Plaza Hotel , Riverside , which is child friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant that is located in the riverside area near to Express by Holiday Inn . It has a low customer rating , a price range of less than £ 20 and it is not family - friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a average- priced restaurant near the Ranch . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Japanese food for a cheap price . It is poorly rated and family friendly . It 's location is on the riverside near to Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The coffee shop , Fitzbillies , located at the riverside , serves high priced Indian food . They are child friendly and have a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre , there is a family - friendly Japanese restaurant named The Rice Boat with a price range less than L20 and low customer rating . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , The Cricketers is a child friendly pub with a customer rating 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||There is a pub located near Café Brazil named The Cambridge Blue and has Italian food with a moderate price range . \nname : Blue Spice | food : Italian | price : more than £ 30 | area : riverside||In the riverside area , the Blue Spice restaurant offers up Italian fare . Average per person cost is more than L30 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a Japanese coffee shop located in the city centre . It has a high customer rating and a medium price range of 20 - 25 GBP . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced , sushi bar , located outside the city centre , beside Express by Holiday Inn . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located in City centre near Yippee Noodle Bar . Is is pricey , and has a one - star rating . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a local well - priced venue located next door to All Bar One . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a low - priced , five - star , fast food restaurant . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||In Riverside there is a cheap family friendly restaurant near The Portland Arms called The Punter . \nname : Fitzbillies | food : English | price : £ 20 - 25 | near : The Six Bells||Fitzbillies near The Six Bells serves English food in the range of £ 20 - 25 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kids friendly coffee shop by Avalon . It 's near the riverside and has a high customer rating . its price range is between 20 and 25 Euros . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a children friendly English restaurant near the Crowne Plaza Hotel . \nname : The Eagle | food : Indian | customer rating : 1 out of 5||The Eagle Is an Indian restaurant with a 1 out of 5 customer rating \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||A riverside pub with high customer satisfaction , The Twenty Two pub is situated near Café Sicilia . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is an average priced Indian restaurant with a low rating located riverside near the Yippee Noodle Bar . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice is a sushi restaurant located north of the City center . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a restaurant that is located on the river in City centre and serves pasta . It is moderately priced , family friendly , and has a five star rating . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes||The Olive Grove is a pub that serves highly priced Italian food . It is situated in the city centre and is child friendly . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two serves Italian food in a family friendly environment . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||There is a fast food place with high ratings near All Bar One called Midsummer House . The price ranges from 20 to 25 pounds . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a kid friendly French restaurant located on the riverside . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||There is a cheap Italian food restaurant near All Bar One called Midsummer House with an average customer rating . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||In the city centre is The Waterman . It is kid friendly and offers mid priced French food . It is highly rated by customers . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two serves fast food in Riverside . It is family friendly . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue is a high - priced fast food pub near Café Brazil . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||A family friendly pub with average customer rating sells Japanese food and is called Zizzi \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no||Aromi is a non - family - friendly , average Italian coffee shop in the centre of the city . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a high - priced fast food restaurant locate in City Centre . 1 out of 5 customer rating . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||Highly rated , the average price Taste of Cambridge provides restaurant prices between £ 20- £ 25 . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a one star mid priced family friendly fast food restaurant . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a one star restaurant near Café Rouge . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly fast food restaurant located near the Express by Holiday Inn . Prices are high , but it is rated 5 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves Italian food in the riverside area . It is near The Rice Boat and has a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||For a cheap coffee shop offering French Food , try The Eagle . It is located in the city centre , near Burger King , and has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia in Riverside is a child friendly coffee shop called The Dumpling Tree for more than £ 30 . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant with a high price range that is rated average by customers . It is children friendly and near the Express by Holiday Inn . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a child friendly coffee shop serving Japanese food . It is located in the riverside area near Crown Plaza Hotel , but has a low customer rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove pub makes the best burger and fries . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee shop has Indian food at a cheap price with an average customer rating . Cotto is located by the riverside near The Portland Arms . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe near The Six Bells has a restaurant with more than £ 30 price range \nname : Loch Fyne | food : French | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||The Rice Boat in riverside near Loch Fyne serves French food , had a customer rating of 1 out of 5 . \nname : Green Man | Type : pub | food : Chinese | area : city centre | near : Café Rouge||Green Man is a pub that provides Chinese food It is located in the city centre . It is near Café Rouge . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a moderate price range English pub that is Kids friendly , located near the city centre area . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum provides fast food for less than £ 20 . It has a low customer rating . Alimentum is in the riverside area near Yippee Noodle Bar . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Children friendly Italian food in Riverside by Café Rouge is The Golden Curry which has high customer ratings . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre you can find a poorly rated French restaurant called The Rice Boat . It does not feel very family - friendly although its prices are quite reasonable . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||The Vaults , a family friendly Italian place for less than £ 20 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a Japanese , children friendly pub with a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a high priced pub in the city centre near Café Brazil . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : city centre||There is a French place with a price range of less than 20 . The Phoenix is in the city center . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near Crowne Plaza Hotel serves Italian food and is kids friendly . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||Aromi is a Japanese restaurant which is on the riverside \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside||The Golden Palace is a high - priced , average - rated Indian coffee shop in the riverside area . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix serves fast food at a high price . They are located near the river and have a high customer rating . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kids friendly pub in the riverside area . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In the city centre there is a kid friendly Japanese restaurant called The Rice Boat . It has a perfect customer rating score . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , there is a family friendly restaurant that serves Indian food called The Waterman . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is located in city centre . It is coffee shop providing Indian food in the price range £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop located in City Centre near Crowne Plaza Hotel . 5 out of 5 customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||In the riverside area there is a highly rated , expensive restaurant called The Eagle . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||Th fast food restaurant The Phoenix has three stars and is moderately priced . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : city centre||Located in city centre , The Phoenix serves English food . Although expensive they received a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre||The Golden Palace is a coffee shop that serves French food for less than £ 20 with an average customer rating . It is located at the city centre \nname : Strada | Type : pub | food : Chinese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub which serves Chinese food has a high customer rating of 5 out of 5 , and is located near Yippee Noodle Bar . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a high priced range coffee shop called The Wrestlers located in City Centre that is family friendly and offers Raja Indian Cuisine . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||By the riverside there is a pub that serves sushi called ' The Olive Grove ' . It is reasonably priced and has a family friendly environment . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||Near The Bakers you can find a restaurant which is child friendly called The Plough . It is however quite expensive . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 star restaurant in the riverside area . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a restaurant that is kid - friendly and has a high rating . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a cheap wine and cheese bar situated north of the city centre . Must be of legal drinking age . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub restaurant that serves fast food . It is located near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is an affordable pub located near Café Brazil . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is an Italian coffee shop near Café Sicilia . The price range is cheap and the customer rating is average . It is not family - friendly . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||Situated in the riverside area , Zizzi is a restaurant with moderate prices . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||A cheap , family - friendly pub is located in the riverside area . It is The Olive Grove . \nname : The Cambridge Blue | Type : pub | food : Indian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue serves Indian food is near Café Brazil . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The English style food establishment The Waterman is located near Crown Plaza Hotel and caters to children too . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant near The Six Bells . Price ranges are from £ 20 - 25 . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||The family friendly fast food place , Cotto has high ratings . It is situated near Ranch . \nname : Browns Cambridge | food : Indian | price : £ 20 - 25 | customer rating : high||Browns Cambridge offers Indian food at average prices and has a high customer rating . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge is rated 3 out of 5 by customers . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||The Strada has a 5 out of 5 customer rating and is a Japanese pub near Yippee Noodle Bar . \nname : The Punter | food : Italian | price : moderate||The Punter is a reasonably priced restaurant . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is an expensive coffee shop but with very good rating . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||Sip your French roast riverside at the The Mill coffee shop near The Sorrento . It offers coffee at a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||There is a low customer rated Japanese coffee shop in riverside called Fitzbillies . It is not children friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Right on the Riverside near the Express by Holiday Inn there is a French restaurant suited for couples named The Rice Boat , a meal will cost £ 20 - 25 . \nname : The Twenty Two | food : Italian | family friendly : yes||If you 're looking for family - friendly , Italian food , The Twenty Two is the place to go . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The kids friendly pub , The Dumpling Tree is located near The Portland Arms . It serves Japanese cuisine . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||Aromi , a fast - food coffee shop in the Riverside area , has received a low customer rating . It is not family - friendly . \nname : The Vaults | food : English | price : high | family friendly : no||if you are looking for a place that is not child friendly that serves English food and in the high price range then there is a place called The Vaults \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Wildwood is a low price coffee shop that serves pasta . It has a rating of three stars , and can be found near Ranch . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies is a sit down restaurant providing quality Sushi at a reasonable price . It is located close to The Six Bells . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : cheap | near : Café Brazil||The Cambridge Blue is a cheap pub near Café Brazil that serves Japanese food . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Customers give Fitzbillies a 3 out of 5 rating , and it is close to the Express by Holiday Inn . Its prices are average for Cambridge and it welcomes children . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : less than £ 20||The Dumpling Tree is a Chinese restaurant serving food for under twenty dollars . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Italian food in the low price range with a 1 out of 5 rating . It is located in the city centre near The Portland Arms . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderately priced coffee shop serving Indian food near Café Sicilia . It is not kid friendly . The Punter has a customer rating of 1 out of 5 . \nname : Fitzbillies | food : English | price : £ 20 - 25 | near : The Six Bells||Fitzbillies serves English cuisine and is in the £ 20- £ 25 price range . It is located near to The Six Bells . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||There is a child friendly coffee shop named Giraffe near The Bakers . The price range of this highly rated coffee shop is £ 30 and above . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||A 3 star restaurant near the All Bar One is the Midsummer House , which is a high - priced sushi bar . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||A family - friendly pub , Zizzi offers French cuisine . It has an outstanding customer rating of 5 out of 5 . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat and has a rating of one star . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 1 out of 5||The Cambridge Blue is a Chinese restaurant with a 1 out of 5 rating . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Near The Portland Arms is the child friendly The Dumpling Tree pub . It 's know for its Japanese food . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The riverside is home to an Italian pub called The Mill , with cheap prices . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi is a children friendly coffee shop with a price range more than £ 30 and a high customer rating . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||A child friendly and high price range restaurant is Travellers Rest Beefeater . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : riverside||The Phoenix provides Indian food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle serves French food and has a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies . 5 out of 5 Japanese food at a coffee shop in the city centre . Non child friendly and costs more than £ 30 . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough Pub is a high quality place full of family friendly atmosphere . It is located in Café Rouge . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Come check out Strada family friendly restaurant at an affordable price conveniently located next to the Rainbow Vegetarian Café . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a high price range coffee shop in riverside area near Café Brazil . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop and licensed Tapas eatery , 5 stars at an affordable price , by the riverside . Children welcome . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Plough has an average price range of £ 20 -25 . The Plough , near The Bakers is a kid friendly restaurant . \nname : Strada | Type : pub | food : Chinese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||There is a Chinese pub that is located near Yippee Noodle Bar it has average ratings a 3 out of 5 , the pub is called the Strada . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Family- Oriented five star restaurant . It is located near Express by Holiday Inn . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located near Riverside , The Waterman serves moderate priced Chinese food . It is children - friendly and has a low customer rating . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : average||Wildwood is an expensive pub that serves expensive Chinese food , and has high customer ratings . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop that provides a wide variety of French food around the average price range . It is located near Clare Hall by riverside . Clowns is a low - priced restaurant that can deliver take - outs for a low price . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Kid - friendly Aromi is a pub in the riverside area with a 5 - star rating . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is a friendly - friendly restaurant serving moderately - priced traditional British food . \nname : The Golden Palace | Type : restaurant | price : moderate||A restaurant that also has a moderate price range is The Golden Palace . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a one star rated coffee shop serving sushi at a moderate price range . It is located near Café Sicilia and is not family friendly . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||The Phoenix is an Italian restaurant . It is in the low price bracket . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Located by the riverside , Blue Spice has a low customer rating . It is children friendly and has a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||In the city centre located near The Portland Arms there is a cheap coffee shop called Cotto that offers fast food and has a low customer rating . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto the cheap French coffee shop in the city centre near The Portland Arms has a customer rating of 5 out of 5 \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||Blue Spice restaurant is located near the river and offers higher priced fare . This location is not family friendly . Located on the outskirts of the city centre . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : city centre||The Mill is a pub serving Fast food in the city centre . It has a price range of less than £ 20 . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap Japanese coffee shop and it 's rated 5 out of 5 . It 's also family friendly . \nname : Green Man | Type : pub | food : Japanese | area : city centre | near : Café Rouge||Green Man is located near Café Rouge in the city centre . It is a pub style environment which serves Japanese food . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family - friendly eatery with a low - price range . It is close to the river . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area , there is a coffee shop that serves fast food named Clowns , which has high customer ratings . \nname : The Olive Grove | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||One may enjoy Indian food at The Olive Grove pub , located in the riverside area . Prices are over 30 pounds and it is child friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Aromi is a 1 star rating place . It 's a family coffee shop . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a Fast food restaurant named The Golden Curry . It is located near Café Rouge on the riverside . Customers rate the food a 1 out of 5 . \nname : The Punter | food : French | price : high||There is a high priced French eatery named The Punter . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat in Riverside is The Twenty Two , a place with a rating of 3 out of 5 and an average price range of £ 20 - 25 . It is also kids friendly . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||There is a fast food pub called Wildwood . It is highly rated and the price range per meal is 20 - 25 . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is located on the riverside near All Bar One with a price range of £ 20 - 25 \nname : The Punter | food : Japanese | price : moderate||The Punter is a sushi bar located in the middle of nowhere \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||A French pub called Zizzi is family friendly and rated 5 out of 5 \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a Japanese restaurant in the moderate price range . It is located in the city centre and has a customer rating of 1 out of 5 . \nname : The Phoenix | food : Italian | customer rating : low | area : city centre||The Phoenix has low customer ratings . It is Italian and located in the city centre . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has five star meals near Café Rouge . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies , near Express by Holiday Inn , is a high priced , low rated restaurant that you can take your children to . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is an average - priced Italian coffee shop that serves adults in the riverside areas . They have average reviews . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre , The Rice Boat is located near the Express by Holiday Inn . Its child friendly with a high customer rating . They serve Indian food in the £ 20 - 25 price range . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced Chinese restaurant in riverside near Express by Holiday Inn . Rated 1 out of 5 and kid friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : no||Loch Fyne is an Indian restaurant that is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop in city centre with a customer rating of 3 out of 5 . This fast food place is moderate priced . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||The Waterman is a pub which serves Italian food . It 's located on the riverside and its customer rating is low . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre there is a non family - friendly coffee shop called the Taste of Cambridge , it serves Japanese food . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults is an average coffee shop in a great riverside area . It is located near Café Brazil . The price range is great as well , less than E20 \nname : The Twenty Two | food : Japanese | family friendly : no||The Twenty Two is not family - friendly restaurant . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is low priced and serves Japanese style food . It is located in the City center . near All Bar One and it is family oriented . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||In centre of city near the Express by Holiday Inn is a family - friendly venue ; The Rice Boat , price range is low being under £ 20 serves English food and has low customer ratings . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : no||The Golden Curry Indian isn 't family friendly but it does have a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is low . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi , a coffee shop in riverside , has a customer rating of 3 out of 5 , kid friendly service , with a price range of £ 20 - 25 . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no||A Fast food pub known as The Olive Grove is known to be more suited for adults in the City Centre . \nname : Aromi | Type : restaurant | food : English | area : riverside||Aromi offers a traditional English breakfast while being located on the side of the river . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop , which also provides Indian cuisine at moderate prices . Customers have rated the food 3 out of 5 . The Eagle is situated near the riverside and Burger King . Children are welcome . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||near The Rice Boat in riverside , there is Loch Fyne with Japanese food and high customer ratings of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a kid friendly Japanese coffee shop in riverside with high customer ratings and prices between £ 20 - 25 . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : city centre||Blue Spice , with prices less than L20 , is an Italian restaurant located near the city centre . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||Near the riverside is family friendly Chines restaurant named The Rice Boat which has high customer ratings . \nname : The Golden Palace | Type : restaurant | price : high||A restaurant with a high price range is The Golden Palace . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a great place near All Bar One in the Riverside area with a friendly atmosphere and moderate prices \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||For an Italian coffee shop in the riverside area that is child friendly and has a high customer rating , try Aromi . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman provides Indian food in the high price range . It is located in the city centre . Its customer rating is average . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||An Italian food restaurant with a customer rating of 5 out of 5 is The Cambridge Blue . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry offers English food . Other customers give it an average rating . Children are welcome . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||The Dumpling Tree is a high - end Sushi restaurant . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum is a family - friendly restaurant located outside the city centre . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix is our new riverside venue . A low customer rating won 't stop us from offering delicious French food for a price of more than 30 . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located near the city centre with a customer rating of 5 out of 5 is called Aromi . It serves French food . It is not family - friendly . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum is located in the City centre near Yippee Noodle Bar . It is high - priced , but 5 star quality . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman offers Japanese food with a customer rating 3 out of 5 and a price range of £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop located on the river side with cheap prices . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is an expensive coffee shop that is rated five stars . It is located in The Portland Arms . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||A highly rated Italian restaurant called The Phoenix , located in the center of the city has medium price range fare 20 - 25lb . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Come visit Giraffe , our new family friendly coffee shop located near The Bakers . Boasting an average customer rating and prices less than 20 , you will love this place . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is in the Riverside area near The Portland Arms , it is high priced and has a customer rating of 1 out of 5 . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||kids Friendly restaurant The Twenty Two located within Riverside serves Japanese food \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a fast food coffee shop located in the riverside that has low prices and is called Fitzbillies . It is not family - friendly but is rated 5 out of 5 . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||a moderate restaurant in the riverside area would be Zizzi \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 3 out of 5||The Cambridge Blue is a restaurant that provides Chinese food Its customer rating is 3 out of 5 . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix is an average restaurant at the riverside which serves English food . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||There is a cheap restaurant The Cambridge Blue located in the next to Café Brazil that provides food . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Dumpling Tree is a kids friendly is an Italian pub . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is an English pub located in riverside . It 's kid friendly . \nname : Midsummer House | food : Indian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House serves Indian cuisine . It has a customer rating of 5 out of 5 , and can be found near Café Rouge . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers are family friendly with a price range of less than £ 20 . The food is English and the customer rating is low . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||There is a mid price range restaurant called Taste of Cambridge . It has a low customer rating . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves sushi in the mid - price range . It is located near The Sorrento . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies is a restaurant British offers meals at low prices and is located in the city center . , there The Six Bells It provides fast foods at a reduced price \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||With a customer rating of 3 out of 5 , the child friendly Strada has high prices \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The Phoenix is a low - priced restaurant in the city centre that delivers take - away . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||There is a restaurant Alimentum providing Chinese food with price range less than £ 20 . It has low customer rating and is located in city centre near Yippee Noodle Bar . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||There is an average restaurant The Phoenix that is located in the City centre . It offers Chinese food . \nname : The Olive Grove | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||Although you will spend more than £ 30 , The Olive Grove pub is a child friendly place for Chinese food . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a French coffee shop near Ranch with a 3 out of 5 customer rating . It is mid priced . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : no||A restaurant named The Rice Boat is not family - friendly . It is located in the city centre area . It has English food and an average customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is a restaurant and provides Italian food and as high price range \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||For a children friendly pub that serves Japanese , visit The Plough . It is located near Café Rouge . The price range is more than £ 30 . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a moderately - priced restaurant in the riverside area near Café Adriatic . It was rated 3 out of 5 by customers . \nname : The Mill | Type : pub | food : French | price : moderate | area : city centre||The Mill is a moderately priced French pub located in the city centre . \nname : The Mill | Type : pub | food : Indian | price : cheap | area : riverside||The Mill is an Indian Pub with a cheap price range located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a highly rated coffee shop on riverside serving Italian food in the 20 to 25 pounds price range . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is an English , children friendly restaurant in the riverside area . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is located near The Portland Arms in the city centre . Their prices are less than £ 20 and they are family - friendly . \nname : Loch Fyne | Type : restaurant | food : French | price : high | family friendly : yes||Loch Fyne is high cost French restaurant but it 's children friendly . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A amazing French coffee shop is called the Taste of Cambridge . The coffee Shop is near the Crowne Plaza Hotel in riverside . They love kids . \nname : The Waterman | price : more than £ 30 | family friendly : yes||Children friendly with a price range of more than £ 30 , The Waterman . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||No , The Eagle is French restaurant with coffee shop on side Burger King in the city centre with low rank and price less £ 20 \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Customers have rated Japanese food serving Strada as average . The place can be found near Rainbow Vegetarian Café . It does not welcome children . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||A high priced , Japanese coffee shop near Café Sicilia is called The Punter . It is child friendly and has rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a highly rated , kid friendly coffee shop near Café Sicilia . It serves Japanese food priced between £ 20 - 25 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop with decent prices and a three star rating located near Avalon . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House offers French food for less than £ 20 . It is located near All Bar One and has an average customer rating . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||There is an expensive restaurant called Strada that is children - friendly . It has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a Fast food restaurant that is near The Bakers has a moderate price range and is not kid friendly \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||High rated French food in Midsummer House located near All Bar One , price range £ 20 - 25 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is located near to Café Brazil . It is a high cost pub serving Japanese food for around £ 30 . \nname : Fitzbillies | food : Fast food | price : moderate | near : The Six Bells||There is a value for money restaurant called Fitzbillies . It is a low cost take away restaurant near to The Six Bells , on the outskirts of the city centre . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : no | near : Café Sicilia||With a price range of more than L30 , The Dumpling Tree is a coffee shop in the city centre near Café Sicilia . It is not children friendly . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : no||Italian food is available at The Rice Boat in the city centre . It has an average customer rating and it is not family - friendly . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||English food in a price range of high is served in Fitzbillies , near The Six Bells . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a family friendly , cheap Italian restaurant with average customer ratings . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House Is a Japanese restaurant near Clare Hall by a riverside in the City centre with a average price rating . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||Browns Cambridge is a cheap restaurant for dinner of the best hamburgers in the city . We have three stars of experience . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kids friendly pub near Ranch . It has a very low customer rating . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||The Watermans , near the river , serves average food . \nname : The Mill | Type : coffee shop | food : French | price : cheap | area : riverside | near : The Sorrento||In the riverside area near The Sorrento , The Mill is a French coffee shop that has cheap prices . \nname : Alimentum | food : Japanese | price : cheap | area : riverside | family friendly : yes||Alimentum serves Japanese food . They are family friendly , cheap , and by the river side . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant near Yippee Noodle Bar in the river side . High rating and Price range is £ 20 - 25 . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Rated average , Zizzi is a family friendly pub that specializes in English cuisine . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||Italian coffee shop The Cricketers is an adult 5 out of 5 establishment near The Portland Arms . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue pub has Italian in the moderate price range and is located near Café Brazil . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Low ratings , but low prices , Blue Spice coffee shop is family - friendly and located near Avalon in the city centre . \nname : Midsummer House | food : Indian | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House provides Indian food in the £ 20 - 25 price range . It is near All Bar One . Its customer rating is high . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with a 3 out of 5 customer rating . Serving Japanese food , and child - friendly , it is located near Crowne Plaza Hotel in riverside . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||With a customer rating of 1 out of 5 , The Cricketers , located near The Portland Arms , is a kid friendly coffee shop serving French food . \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||Browns Cambridge is an expensive restaurant with a rating of 1 out of 5 \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is in the riverside area with an average price range . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Chinese food in the high price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Dumpling Tree is a kid friendly pub offering English food . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum provides cheap Indian food with a high customer rating . It is near Yippee Noodle Bar in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high priced , child friendly , Fast food coffee shop in Riverside , near Raja Indian Cuisine . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat , located near the Rainbow Vegetarian Café , has a high price range , and a customer rating of a 3 out of 5 . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a child friendly , 5 star restaurant near the riverside . It is in price range of £ 30 and up . \nname : Midsummer House | food : Indian | price : high | customer rating : average | near : All Bar One||Midsummer House near All Bar One is an average Indian place that 's on the expensive side . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||Rated 5 out of 5 , The Waterman is a French pub in Riverside . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : more than £ 30 | near : Café Brazil||The Cambridge Blue , a fast food pub near Café Brazil , has more than £ 30 as a price range . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Located close to the Yippee Noodle Bar , Alimentum is a low rated Japanese restaurant that costs more than £ 30 . You 'll find us in the city centre . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a Japanese establishment on the riverside with a high customer rating , unfortunately it does not welcome children . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||If you 're looking for a child friendly Fast food restaurant then try Loch Fyne . It has a price range of £ 20 - 25 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Aromi is an Italian coffee shop in the riverside area that is child friendly and has a high customer rating . \nname : The Mill | Type : pub | food : Indian | price : high | area : city centre||The Mill is a pub offering Indian food in the higher price range located in the city centre . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||The Plough is a cheap restaurant located next to The Bakers . It is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a coffee shop that serves French food for less than £ 20 in the riverside area . It receives and average customer rating . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies offers Fast food and is located near The Six Bells , it has a price range of £ 20 - 25 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||there is a Italian restaurant with a food rating of 1 out of 5 called The Cambridge Blue \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman is a pub beside the river with a one star quality rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Near Ranch is Wildwood . Wildwood is a Fast food restaurant with a high customer rating and a price range of £ 20 - 25 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a French restaurant near The Sorrento based in the riverside area that is child friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||From around £ 20 for Indian food , The Eagle coffee shop can provide great service and a child friendly environment right by the riverside . They are located near Burger King . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||By the riverside is the restaurant Zizzi , which offers food within the price range of £ 20- £ 25 . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar . They serve fast food and have a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that serves Japanese cuisine . It is located near The Portland Arms and is family friendly . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers serve cheap Indian food in a family friendly environment . The overall rating is average . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||Near The Rice Boat in the city centre is a kid friendly , 1 out of 5 rated and moderately priced restaurant called The Twenty Two . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Indian restaurant near the Rainbow Vegetarian Café . It has an average customer rating , is kid friendly , but is pretty expensive . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a Fast food coffee shop located near Raja Indian Cuisine in riverside called The Wrestlers . It has a moderate price range and is not kid friendly . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One , Midsummer House serves moderate priced Italian food . Customer Rating : 3 of 5 \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||The family friendly Loch Fyne restaurant serves fast food in low prices . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : no||The Olive Grove is a Italian pub in riverside with a high price range and it is not a child friendly zone . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||In riverside near The Rice Boat , you 'll find the average rated Italian restaurant Loch Fyne . \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : no | near : Café Rouge||There is a cheap pub located near Café Rouge called The Plough that offers Indian food at a low price range . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : yes||The Twenty Two is Indian food in the city centre that is family friendly . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||The Vaults is a coffee shop in the high price range . It is located in the city centre , near Café Brazil , and customers rate it 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a Japanese coffee shop situated near Café Sicilia . A little pricey averaging £ 20- £ 25 with high customer ratings but not child friendly . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||By the riverside close to the Rainbow Vegetarian Café there is a pub with a price rage of £ 20 - 25 called The Golden Palace . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a pub offering moderately priced choices . It is located in the riverside area . Customers give it a 1 out of 5 rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||An inexpensive fast food coffee shop ' The Mill ' in riverside near ' The Sorrento ' . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||The Blue Spice coffee shop caters to children and is in the riverside area near the Avalon . Its price range is high and the customer rating is average . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||On the river road passing The Rice Boat , Loch Fyne is a good , medium priced restaurant \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||5 out of 5 child friendly pub with a price range of more than £ 30 named Cocum . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||Located in the city centre area is The Golden Palace , a moderately priced French coffee shop . It has a customer rating of 1 out of 5 . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||Welcome to The Waterman , located by the riverside . We serve English food and our price range is cheap . We are not family - friendly and our customer rating is average . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat is restaurant with high customer ratings costing more than £ 30 . It is located near Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||A 3 star family friendly coffee shop located near the river and Burger King is The Eagle . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child family restaurant which sells fast food for those with a high price range . This establishment has an average customer rating and is located in the city centre near Express by Holiday Inn . \nname : The Mill | Type : pub | food : Indian | price : high | area : riverside||The Mill is a pub that sells Indian food for a high price in Riverside . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix has a price range of less than £ 20 and serves English food in the city centre area with a low customer rating . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a restaurant . Great for kids . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||A pub serving English food with an average customer rating is Yippee Noodle Bar . It is located near Strada . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||There is a cheap restaurant Browns Cambridge it serves Italian food . It has excellent customer reviews . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||For Fast food in the riverside area try children friendly The Twenty Two . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers , a one - star , low priced sushi restaurant serves adults only . It is located near The Bakers . \nname : The Waterman | Type : pub | food : French | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub located near the river and offers French food . It has a 1 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre that serves Indian food . It has low customer ratings considering it is not child friendly and is moderately priced . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly , French , restaurant in Riverside with an average customer rating near the Café Rouge \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||I think for have a good food , you can get Italian high food that name is Midsummer House near Café Rouge . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop providing French coffee near The Sorrento riverside area . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||In riverside there is a place that serves English food called Alimentum near Yippee Noodle Bar . It has a customer rating of 5 out of 5 and it has a cheap price range \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 1 out of 5||There 's a pub that serves Indian food for decent prices called Wildwood . Although , it 's poorly rated . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||For a French restaurant in the Riverside area , The Phoenix has a 3 out of 5 customer rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : The Olive Grove | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a pub that serves Indian food . The price range is £ 20 - 25 an it is located in the riverside . Yes it is family friendly \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap , one - star coffee shop . It is family friendly and is near Burger King . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , Strada is a non family - friendly Japanese restaurant . It has high prices and low ratings . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat providing French Food . It is located in riverside area near Express by Holiday Inn . Have 3 out of 5 costumer rating . Start from low price and family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||Customers rate 5 out of 5 for The Cambridge Blue fast food restaurant . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : city centre||There is a cheap restaurant The Phoenix it sells Chinese food and it is cheap . The consumer ratings is average it is in the middle of the city . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Dumpling Tree is a fast food restaurant with prices less than £ 20 . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||Bibimbap House serves English food and is near The Rice Boat in the area of riverside . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice is located north of the city centre . It is a low price option and it has a nice view . \nname : Bibimbap House | food : Indian | area : riverside | near : The Rice Boat||Located riverside near The Rice Boat is Bibimbap House offering Indian food . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||In the riverside area , close to The Sorrento , is a cheap coffee shop serving Italian food called The Mill . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : yes||The Golden Curry Indian restaurant is family friendly , but has low customer ratings . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a pub , located across from Ranch . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||Mid price ranged The Punter serves Japanese food in a highly rated coffee shop near Café Sicilia ; sorry not child friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the area of riverside and near Crown Plaza Hotel is Browns Cambridge . It is a coffee shop that has French food , has a customer rate of 1 - 5 , and is kid friendly . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||Located near All Bar One , The Cricketers serves English food . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is children friendly . The shop has 1 out of 5 rating due to it high - priced items . You could find the shop near riverside next to Burger King . \nname : The Vaults | food : Fast food | price : cheap | family friendly : yes||The Vaults is a family Friendly Fast food restaurant that is in the cheap price range \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : no||The Olive Grove is a moderately priced adult pub located in the city centre that serves English food . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub and has average prices in riverside . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||In the city centre , there is a cheap Italian coffee shop with a 5 out of 5 customer rating . It is called The Golden Palace . \nname : The Plough | Type : pub | food : French | price : high | family friendly : yes | near : Café Rouge||The Plough is a French food house . It located near Café Rouge . The price range is high . Public like to est there . It 's children friendly . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a moderately priced Italian restaurant located in the city centre called The Waterman . This restaurant has a customer rating of 1 out of 5 and is not child friendly . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a low rated not family - friendly pub . Typically spend less than £ 20 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly fast food restaurant and coffee shop . It is located in the city centre and customers rated it average . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a five star , high priced place to eat . Its location is right off of the river near Yippee Noodle Bar . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||The Twenty Two in Riverside , is a pub with a customer rating 1 out of 5 and is located near Café Sicilia . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a Japanese style place . Its customer rating is 5 out of 5 and price range is typically more than 30 pounds . The only thing is that it is not children friendly . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||There is a cheap place The Vaults where the family enjoys great and tasty hamburgers and sodas . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Low rated but boasting low prices and a family - friendly fast food experience , The Waterman can be found in the city centre . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant aimed at older people serving well priced quality English food . It is located near the Rainbow Vegetarian Café . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman pub near the river has good reviews . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat in the city centre which is a Express by Holiday Inn is not family - friendly , sell English food and has a 1 out of 5 rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : high | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is high . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre||There is an Italian coffee shop called The Golden Palace which also offers food . It can be found in the centre of the city , it is slightly expensive and customers rate it as average . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a fast - food restaurant near All Bar One with a moderate price range . It 's located near riverside and is kids friendly . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||Near The Bakers , there is a kid friendly fast food place called The Golden Curry that is in the moderate price range . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||A moderately priced restaurant , Blue Spice is kid - friendly and rated 1 out of 5 by its customers . It is located by the riverside . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||If you fancy a nice cheese board with wine , or a fondue to share with your family , then try The Rice Boat . With views of the river and a reasonably good rating , you can even bring small children and prams in . \nname : The Punter | food : French | price : less than £ 20||The Punter is a tapas restaurant and low priced . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : city centre||Serving English food , The Phoenix , is located in the center of the city . It has a high rating with the price range of more than L30 . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is an Italian restaurant . It is located at riverside . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||The Waterman is in the riverside area . It is a Fast food pub with a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||With a 1 out of 5 customer rating and high price range , The Golden Palace coffee shop in riverside serves Italian food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine by riverside , there 's a coffee shop selling Japanese food . It 's called The Wrestlers , it 's kid friendly and costs around £ 20 - 25 . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||Green Man , in Riverside , is child - friendly with a price range of more than £ 30 . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a high priced and high rated restaurant , which is also family friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop , serves Indian food , cheap price range , average customer service , located in City Centre , family friendly \nname : Alimentum | food : Indian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is located in riverside near Yippee Noodle Bar . It has Indian food , it is high priced . It has average customer ratings \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||And expensive and low rated venue is Browns Cambridge . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant , located in riverside , has a customer rating of 1 out of 5 with fast food and children Friendly . \nname : Strada | Type : pub | food : Italian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is an above average pub that serves Italian food near Yippee Noodle Bar . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a family - Friendly restaurant that is near The Bakers , it is good cheap English food . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix in the city centre serves lots of wines and cheeses at a five star rating and mid - range price . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto , a coffee shop near The Portland Arms in the riverside area , is rated high by customers . It serves fast food in the high price range . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||A coffee shop called The Punter , near Café Sicilia , is family friendly and has average Fast food . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||In city centre The Waterman serves cheap Italian food with average ratings and is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||Located next to the river is a low priced coffee shop , The Golden Palace has a 5 star rating which provides wine and snacks . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A kid friendly restaurant called The Travellers Rest Beefeater costs £ 20 - 25 . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||This children friendly Indian food restaurant , The Wrestlers , has a price range of more than £ 30 and has a high customer rating . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub near The Portland Arms . It serves French food and is child friendly , \nname : The Golden Curry | family friendly : yes | near : The Six Bells||A family friendly venue near The Six Bells is called The Golden Curry . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||With a 1 out of 5 rating Midsummer House serves Italian cuisine in the high price range , found not far from All Bar One . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix is an average Chinese food restaurant located in the City centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 20 , The Wrestlers coffee shop , located near Raja Indian Cuisine , delivers Japanese food in a riverside , family friendly environment . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||with a 3 out of 5 star rating the Cocum is a coffee shop with Italian food which is family friendly and is in the cheap price range \nname : Green Man | price : high | area : riverside | family friendly : yes||Although with a high price range , the Green Man is a children friendly place by the riverside . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop that has a price range of greater than £ 30 and is located in the riverside area near Avalon . The customer rating is low but it is a kid friendly shop . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a low rated coffee shop serving fast food . This venue is not family friendly , and can be found in the riverside area , close to Crowne Plaza Hotel . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a five star restaurant located outside the city centre . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||A cheap restaurant located near Rainbow Vegetarian Café is Fitzbillies . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||Visit Strada , children friendly and prices range more than £ 30 but it has a high rating from customers . \nname : Cotto | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Customers have rated Cotto , located near Ranch , as average . It is a children friendly place serving Italian food . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Rated 5 out of 5 , Strada is a Japanese pub located near Yippee Noodle Bar . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop is based in the riverside area near The Sorrento . It serves Italian food at mid range prices . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop , The Eagle , serving Indian food along the riverside near Burger King . It is kids friendly and is moderately priced with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in the riverside area . It serves Chinese food priced between £ 20 - 25 with high customer ratings despite not being child friendly . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||In the city centre , The Waterman is a low rated Chinese restaurant that is adult only and less than 20 . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no||The Olive Grove comes in the moderate price range . The Japanese pub is situated in the city centre but isn 't kids friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a restaurant that provides English food in the Riverside area with a Family Friendly environment . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | near : The Portland Arms||The high priced coffee shop Cotto in the city center near The Portland Arms has average Italian food \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The coffee shop Aromi serves Indian food near the riverside , and has a 5 star rating in addition to being family friendly . \nname : The Mill | Type : pub | food : French | price : high | area : riverside||The Mill is a French pub near Riverside in the high price range . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is an affordable American style restaurant that is family - friendly . It is located just North of City centre . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||A five star , moderate priced , family friendly restaurant that serves pasta is The Waterman . It is located on the river in City centre . \nname : Bibimbap House | food : Fast food | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House , in the riverside area has a fast food menu , in the higher price range of £ 30 plus . It is near Clare Hall . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Due to the poor customer rating of 1 out of 5 , The Rice Boat in city center near the Express by Holiday Inn plans to shut down . Although the kid friendly environment and moderate price ranges , sadly it cant help them to start business soon . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a child friendly pub in the high price range with a 5 out of 5 customer rating . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | near : The Sorrento||The Mill is a coffee shop serving French food with an average cost of more than £ 30 in the city centre area near The Sorrento \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a low rated , high priced coffee shop that also sells Italian food and is located on the riverside . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a family friendly French restaurant costing less than £ 20 , with a customer rating of average . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a kid friendly Italian pub near Café Rouge with moderate prices . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a low rated French restaurant in the riverside area called The Waterman that is kid friendly and moderately priced . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada the family friendly , restaurant with a full menu is located near Rainbow Vegetarian Café . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop that serves Japanese food . its prices range from £ 20 - 25 and it has a customer rating of 3 out of 5 . It is not kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree has a price range of more than £ 30 and is a fast food restaurant . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a cheap seafood restaurant located in City Centre . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is in the riverside area . It is not a family - friendly restaurant . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||There is a low price range coffee shop Cotto located close to The Portland Arms . It has a superb view across the river . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop with food in price range less than £ 20 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub located near Café Brazil serving Italian food and having a price range of over 30 pounds . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe has a low customer rating . It is a coffee shop near The Bakers . It has a price range of less than 20 pounds and is family friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||in the riverside area near The Sorrento is The Mill coffee shop with a moderate price Range serving Italian food \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Serving expensive fast food is Strada located near Rainbow Vegetarian Café . its customer rating is average and it is not child friendly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop offering fast food and is kid friendly . It is located near Raja Indian Cuisine in riverside . \nname : The Phoenix | food : Indian | customer rating : high | area : riverside||The Phoenix , an Indian restaurant by Riverside , is a highly rated place to eat by customers . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers , restaurant is a inexpensive place that families go to . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near the Café Rouge on the Riverside is a child friendly place called The Golden Curry which serves Japanese cuisine . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||Located in the riverside area , Alimentum is a child friendly , medium priced venue for French food . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly pub near the riverside with a customer rating of five out of five . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap family - Friendly riverside pub that serves cheap Italian food \nname : Green Man | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Near the All Bar One , in the riverside area , is a child friendly restaurant in the £ 30 range providing English food . The restaurant is called the Green Man . \nname : Strada | Type : pub | food : Japanese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Near Yippee Noodle Bar is a low - rated pub serving Japanese food . It is called Strada . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : riverside||There is a Chinese restaurant named Blue Spice providing food at less than £ 20 . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a family friendly , mid - priced pub . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a cheap coffee shop in the city centre . It is located near The Portland Arms . It also offers Italian food . Its customer rating is average . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a cheap fast food restaurant called Alimentum located near Yippee Noodle Bar in Riverside . The restaurants has received an average customer rating . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub in riverside that is in the £ 20 - 25 range . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is located at city centre . It is a French restaurant with good customer rating and normal price range . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers . The family place offers fast food and moderate prices . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a coffee shop in Riverside near Café Brazil . The price is more than £ 30 but has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a fast food coffee shop . It is rated 1 out of 5 and has a moderate price range in the city centre . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||Loch Fyne is a moderately priced restaurant where you can buy English food . It is kid friendly . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||The below average priced The Rice Boat near Rainbow Vegetarian Café has a low customer rating \nname : Green Man | price : moderate | area : riverside | family friendly : no||Green Man is located by the riverside . It is child friendly and in the moderate price range . \nname : Browns Cambridge | price : cheap | customer rating : average||There is a place named the Browns Cambridge with a cheap price range and an average customer rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes||Aromi is an Indian coffee shop in riverside . The ratings are low but it is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that , serves French food and is not family - friendly . It has an average customer rating and is located in the riverside area near the Crowne Plaza Hotel . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||High priced , five star meals served at The Golden Palace , near to the river . \nname : The Eagle | food : French | customer rating : 1 out of 5||The Eagle is a five star French restaurant . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a children friendly coffee shop near the riverside with a low customer rating and a price range of more than more than £ 30 . \nname : The Punter | price : moderate | area : city centre | family friendly : yes | near : The Portland Arms||In the city centre near The Portland Arms , there is a moderately priced kids friendly place called The Punter . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry provides Indian food Its customer rating is 5 out of 5 . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a fast food restaurant that is not family - friendly . It is found at the city centre with a price range of less than £ 20 . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a moderately priced coffee shop offering wine and appetizers near the Ranch . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House serves French food in the riverside area near The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||Priced in the £ 20 - 25 range , the Loch Fyne restaurant is kids - friendly , and serves a range of fast food . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a child friendly restaurant . Its near Express by Holiday Inn . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||Taste of Cambridge is a restaurant with a price range of £ 30 plus and a high customer rating . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves English food for £ 20 - 25 near Express by Holiday Inn in Riverside . Not kid friendly . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||There is a cheap , low - end , Indian restaurant called The Wrestlers which caters to adult parties . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is in city centre . They offer highly rated mid - priced Italian food . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a restaurant with an average customer rating , and average to high price range . It is child friendly and located by the riverside . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for Japanese food place which is also kid friendly , then try The Waterman . It is located near to the Crowne Plaza Hotel . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly Japanese restaurant with a price range of £ 20 - 25 , has a customer rating of 3 out of 5 , and is near Express by Holiday Inn in Riverside . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a low rated family friendly restaurant that provides Indian food for less than £ 20 . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry provides Indian food . With an average customer rating , it is also children friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Located near Burger King by the riverside is a fast food and coffee shop , The Eagle , with high customer ratings . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The child friendly French food restaurant The Golden Curry is situated near to The Bakers , with a price range of over £ 30 . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||Loch Fyne is a French restaurant , it is a family - friendly , with meals generally costing less than £ 20 a head . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||Near Café Rouge is a restaurant named Wildwood that proudly boasts a high customer rating of 5 out of 5 . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||At a more than £ 30 price range , The Waterman in city centre has Japanese food . It is not family - friendly and has a low customer rating . \nname : The Twenty Two | food : Italian | family friendly : no||The Twenty Two , a non family - friendly Italian restaurant . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge serves wine , cheese and is a five star restaurant . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a highly rated coffee shop serving Indian food at a low price , near to Ranch . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||Cotto is cheap and is in river side near All Bar One . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is a fast food restaurant catering for family 's within the town center . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a highly rated French coffee shop near Burger King in the city centre . They offer low prices , but are not family - friendly . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Higher priced , this restaurant is located near the very popular All Bar One . Green Man is in a wonderful location very close to Riverside , and welcomes customers of all ages to enjoy its Italian cuisine . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an Italian coffee shop with a high price range . It isn 't children friendly and is in the riverside with an average rating . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is in the top end price range and is given a high five star costumer rating . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Japanese restaurant on the riverside , located near The Sorrento . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : yes||The pub The Olive Grove area very great , the price are really moderate and the location is perfect for anyone , You can go with your kids . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Wildwood is a restaurant which serves Japanese cuisine . Wildwood is a pub and has an average price range along with a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies , a family - friendly coffee shop , serves Japanese food , and has an average customer rating . It has cheap food and is in the city center . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||it is a kid friendly yes . they serve Japanese food there . the average customer rating is a 3 out of 5 . The name of the restaurant is The Golden Curry . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a mid - priced restaurant that is family friendly , in City centre . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||Midsummer House serves English food . They are rated 3 out of 5 and are high priced . They are located near All Bar One . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||On the riverside there is a reasonably prices coffee shop called The Eagle located near Burger King that is kid friendly and rates a 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The 3 out of 5 Japanese coffee shop Fitzbillies , is non kid friendly and is in the center of the city . The price range is l20 - 25 . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , The Rice Boat offers a moderate price range and has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne offers high price English style food in a children friendly environment \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry at the riverside near Café Rouge is rated 3 out of 5 , serves French food and is children friendly . \nname : The Rice Boat | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a kid friendly Japanese food place called The Rice Boat in the riverside area . It has a customer rating of 1 out of 5 . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Located near All Bar One , Midsummer House offers Japanese food for less than £ 20 and has and average customer rating . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||With a customer rating of 3 out of 5 The Phoenix is a Japanese restaurant located near the riverside . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : low||A low - rated Indian restaurant is The Cambridge Blue . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||A kids friendly restaurant which is serving Japanese food called The Waterman is near the Crown Plaza Hotel . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||Green Man pub serves Japanese food and is by the riverside near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is just down the road from Burger King and is a 5 - star family friendly coffee shop by the river \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||Families can dine at The Vaults . It is a low priced restaurant with American food . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||An Indian restaurant , The Waterman provides food in less than £ 20 . Not suitable for families due to their low rating . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : no||The Wrestlers is a restaurant that provides cheap Indian food with an average customer rating . The wrestlers is not family friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman is a three - star pub . It is located near the river . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill , an Indian food restaurant coffee shop with low prices . They are in the riverside ares near The Sorrento . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||If you are looking for French food in riverside I would not suggest The Waterman . They have low customer ratings . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||Green Man is a pub that offers sushi near Café Rouge . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a high priced fast food establishment , they are kid friendly have a 1 out 5 5 customer rating and are located in the city centre . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge providing French food . It is located in riverside area near The Sorrento . No family - friendly \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a child - friendly Japanese restaurant . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House near Clare Hall is Indian food moderately priced \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : no||An adult only pub , Zizzi offers average Japanese food . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food near Ranch with a 1 out of 5 customer and they are child friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a mid priced Italian style pub located near Café Brazil . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle a family fast food coffee shop in the more than £ 30 range is located in Riverside next to Burger King . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is an Italian coffee shop . It is in the city centre near The Portland Arms . Customers give its cheap food full marks . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||near The Portland Arms is a expensive coffee shop with high ratings which serves British food called Cotto \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||In the riverside area there is a coffee shop called Zizzi that has a price range of less than £ 20 . It is not family - friendly and has a low customer rating . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a Chinese pub near Café Rouge that is family friendly and has a price range less than 20 euros . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||In city centre near All Bar One You can get Italian food for less than £ 20 . It is called Green Man , not family - friendly place . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly coffee shop . They serve Japanese food and are located near Crowne Plaza Hotel in the city centre . \nname : The Waterman | Type : pub | food : Indian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub that serves Indian food , located on the riverside , rated one out of five . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee Shop is a mid - priced , family friendly restaurant located in city centre , east of Raja Indian Cuisine . They offer eat - in , take - out or deliveries . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is an Indian restaurant , with a moderate price range , customer rating 1 out of 5 , riverside location , kid friendly . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix restaurant serves English - styled food along the riverside of Cambridge . The establishment has an average customer rating . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : city centre | near : The Sorrento||The Mill is an Italian coffee shop with a high price range . It is located in the city center near The Sorrento . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A family friendly restaurant near Rainbow Vegetarian Café is Strada . They are high priced and serve sushi . They are rated 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||A French coffee shop near Burger King and riverside is The Eagle . It has a customer rating of 3 out of 5 , an average price range and is kid friendly . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Avalon||Near Avalon in the city center is a moderate range coffee shop called Blue Spice . It is rated 1 out of 5 and not kid friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||Aromi is a one star coffee shop . It is not family friendly . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a children - friendly coffee shop , near The Bakers . It has a high price range and a customer rating of 1 out of 5 . \nname : Blue Spice | food : Chinese | price : cheap | area : riverside||Blue Spice is located in riverside . It is a Chinese restaurant with cheap prices . \nname : Blue Spice | food : French | price : cheap | area : riverside||There is a restaurant named Blue Spice in the riverside area that provides low cost French food . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||Wildwood offers French food in a pub setting with cheap prices , and it offers a 5 out of 5 rating . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is located by the riverside close to Yippee Noodle Bar and provides Italian . They have high customer rating and their price range is £ 20 - 25 . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||A restaurant near The Bakers called The Plough serves cheap food and is kid friendly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is in the riverside area . It has a high customer rating and is kids friendly . The price range is £ 20- £ 25 . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a pub that is not family - friendly . It has a cheap price range and a customer rating of 5 out of 5 . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man provides fast food in the city centre near All Bar One . It is in the moderate price range and is not child friendly . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults are family friendly and are in the higher price range . \nname : Strada | Type : pub | food : Italian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||The Italian pub , Strada , with a 5 out of 5 customer rating is located near Yippee Noodle Bar . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly French restaurant located near Express by Holiday Inn . It is in the £ 20 - £ 25 price range and has a customer rating of 3 out of 5 \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||Blue Spice is a Fast food restaurant in the Riverside area in the price range £ 20 - 25 . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||There is a Fast food restaurant with a low customer rating called The Cambridge Blue . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||The Loch Fyne is a children friendly French restaurant that has a price range of more than £ 30 . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||Located in the city centre near Café Brazil , The Cambridge Blue is a high priced pub . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : no||Moderately priced pub , Cocum , has high customer ratings , but is not kid friendly . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a family friendly Chinese restaurant for a cheap price . It has received an average customer rating . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||There is a cheap fast food restaurant called Browns Cambridge that has a customer rating of five out of five . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Located in the city centre Fitzbillies offers cheap average food in this French coffee shop . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells Chinese food has a rating of is 1 out of 5 , moderately priced , and it is not kids friendly . It is located in the center of the city near Express by Holiday Inn . \nname : The Waterman | Type : pub | food : Italian | customer rating : 3 out of 5 | area : riverside||For Italian style food , The Waterman pub is located by the river . It has been rated 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a Japanese coffee shop that is not family - friendly in Riverside with a customer rating of 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no||Cocum is a coffee shop that offers fast food . It is family - friendly . Customer Ratings are average . It is located in the city center . The food is cheap . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix , located in the city centre , offers Japanese food at prices lower that 20 with a low customer rating . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is an expensive restaurant serving Italian food located North of the city centre . It has a 3 out of 5 star rating . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant with good ratings offering food and drink . It is located near The Rice Boat . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : no||Zizzi is a Chinese pub with low ratings and is not family friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If you are near Raja Indian Cuisine in city centre , check out The Wrestlers . It is a high price coffee shop that sells Indian food . The Wrestlers is also children friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a 3 star coffee shop and burger joint near The Portland Arms . Families welcome . \nname : The Eagle | food : Chinese | customer rating : 5 out of 5||The Eagle provides Chinese food Its customer rating is 5 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub providing fast food . have 5 out of 5 costumer rating and no family - friendly . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||If you love the Yippee Noodle Bar , The Alimentum provides a Mediterranean alternative in the same riverfront location , for reasonable prices . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||The Olive Grove offers Japanese style food and is child friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop for under £ 20 . It is located near Avalon in Riverside , but has a poor customer rating . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||city centre high priced average customer rating near Café Adriatic is Travellers Rest Beefeater \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||A family friendly restaurant named The Golden Curry has received low reviews . The style of the food is serves is oriental . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a French coffee shop located near The Portland Arms on the riverside , offering moderately priced items . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is an inexpensive restaurant in City centre . It is located near Yippee Noodle Bar . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a family friendly French pub by riverside . \nname : Bibimbap House | food : English | price : more than £ 30 | area : riverside | near : Clare Hall||More than 30 dollars is English food at the Bibimbap House near Clare Hall in Riverside . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub near Ranch with a 5 out of 5 customer rating . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : riverside||Blue Spice provides Indian food in the less than £ 20 price range . It is located in the riverside . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||City centre Japanese eatery , Alimentum receives average reviews and is considered a low cost alternative to nearby Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes||There is an Italian pub located in the city centre called The Olive Grove . It kid friendly and has a moderate price range . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The not family - friendly Alimentum Fast food restaurant , located in the riverside area has prices less than £ 20 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : high||Highest , and fancy Indian food at The Dumpling Tree . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge sells Italian food and is also a coffee shop . It has an average customer rating . It is located in the riverside area near Crowne Plaza Hotel and yes it is child friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop located in the city centre near Burger King , that also serves Indian food . The Eagle has a moderate pricing , high customer ratings , and is kid - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||For a coffee shop that serves Japanese food near to the Crowne Plaza Hotel in the city centre and that isn 't family - friendly then go to the Taste of Cambridge \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||The Eagle has a 5 out of 5 rating and is cheap . It is located in riverside . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is The Rice Boat . Its average priced , 5 star and family friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : city centre||The Waterman is low rated Japanese food pub in city centre . \nname : Strada | Type : restaurant | customer rating : average||Strada is a restaurant with an average customer rating . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||next to The Bakers can be found a kids - friendly fast - food chain that has moderate prices whose name is The Golden Curry . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto has great Italian food located in the city centre close to The Portland Arms with a rating 1 out of 5 \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a low rated coffee shop . It is family - friendly , and has Japanese food . It is in the area of city centre near Crowne Plaza Hotel . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Near Avalon in riverside there is a coffee shop named Blue Spice . They have a price range over £ 30 but have great customer ratings at 5 out of 5 . Blue Spice is also child friendly . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Browns Cambridge is an expensive , one star fast food takeaway \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||With a 5 star rating , Wildwood offers fast food and has higher prices . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||in the riverside area is a family friendly French restaurant called The Green Man with a price range of less than £ 20 near All Bar One . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||Wildwood Pub has one star and sells spaghetti for a moderate price . \nname : The Eagle | food : English | customer rating : high||For the Best English style food The Eagle is recommended . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum is a family restaurant serving English food . It is moderately priced and is located in the riverside area . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves cheap Chinese food that is rated 5 out of 5 . The family friendly restaurant is located near the Express by Holiday Inn in city centre . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Next to The Portland Arms you will find an affordable coffee shop called Cotto . Both are located in City centre . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a coffee shop providing Indian food in the £ 20 - 25 price range . Its customer rating is high . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : cheap | family friendly : yes||Loch Fyne is a family friendly Japanese food restaurant \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Clowns is a city centre pub with a high price range of more than 30 GBP and a high customer rating of 5 out of 5 . \nname : The Rice Boat | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat from riverside has a customer rating 1 of 5 . It 's a kids Friendly Japanese dish . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a not family - friendly coffee shop its on riverside close to Crowne Plaza Hotel \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is low . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : city centre | near : Clare Hall||Located in the city center is Clowns coffee shop serving average Italian food . Clowns is close to Clare Hall \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||The Midsummer House is an Italian restaurant that features food under £ 20 . It is near All Bar One and has a low customer rating . \nname : Aromi | Type : restaurant | food : Indian | area : riverside||For a great Indian restaurant in the riverside area try Aromi . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies is a moderately priced Italian restaurant , located near The Six Bells . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers offers burgers and fries . It is a low - priced option for families . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre is cheap and family - friendly and provides Japanese food with a customer rating 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||If you are looking for moderately priced Indian food in the riverside area , try Fitzbillies . It 's an adult only coffee shop . Rated 1 out of 5 . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a very child friendly restaurant in the riverside area you will not be disappointed with the food and service . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two located on the riverside near The Rice Boat has an average customer rating , is family friendly and has a cheap price range . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop near Crowne Plaza Hotel , in City Centre with a 1 star rating . It 's not family friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The pub called The Cambridge Blue is a high priced sushi pub located beside Café Brazil . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||A Japanese coffee shop in the riverside area is Cotto . It is near The Portland Arms and cost less than £ 20 . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : no | near : All Bar One||There is a moderately priced restaurant Green Man in the city centre near All Bar One . It is not kids friendly and they serve Italian food . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||3 out of 5 stars Cocum is a coffee shop serving Indian food at a moderate price , children welcome . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is a pub themed place with great food with a great view of the river . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a highly - rated fast food and coffee shop located in riverside near the Burger King . Average pricing , but not child friendly . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a family - friendly restaurant that services English food located near Express by Holiday Inn in the riverside area . It is inexpensive and has received a customer rating of 5 out of 5 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The restaurant with a high customer rating near The Rice Boat in the riverside area , is kids friendly and called The Twenty Two with a price range of 20 - 25 pounds . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is an expensive coffee shop located near a Ranch . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is Strada . Offering Indian food with a high customer Rating in the price Range higher than £ 30 . It is not child Friendly . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Average customer rating restaurant include Wildwood near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop in the riverside area which serves Italian food . It has a high customer rating , is in the price range of £ 20 - £ 25 and is not children friendly . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Family friendly Chinese restaurant Strada has dishes costing under 20 pounds and a low customer rating . It is located near Rainbow Vegetarian Café . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop near The Bakers . It has a reasonable customer rating and its prices are moderate . \nname : The Mill | Type : coffee shop | food : Japanese | price : high | area : riverside | near : The Sorrento||A high range Japanese and coffee shop named The Mill is located near The Sorrento by the riverside . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults has an average rating , its located near near Café Adriatic and charges less than £ 20 for a pub meal . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a child - friendly restaurant near Express by Holiday Inn . It offers a higher - priced menu with a high customer rating . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Indian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a place where you can enjoy a three star meal at a reasonable cost . \nname : The Phoenix | food : English | customer rating : 3 out of 5 | area : riverside||A restaurant in the riverside area offers English food . It 's called The Phoenix and has a 3 out of 5 rating . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is an average - priced coffee shop , that is also family friendly , located close to an university . Unfortunately , it has been rated low by costumers . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice is a mid - priced restaurant on the outskirts of the City Centre \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||In riverside there is a pub called Giraffe which serves English food and is family friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Situated close to The Portland Arms is our five star coffee shop The Cricketers , family friendly with a good choice of food for all \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Customers have rated this children - friendly , Japanese restaurant near Ranch Cotto a 3 out of five . \nname : The Cambridge Blue | Type : pub | food : Italian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil that serves Italian food and has an average price range of around £ 20 - 25 . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Chinese restaurant with a customer rating of 5 out of 5 . It is in a riverside location , is not family friendly and is near Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Offering French food from £ 20 - 25 , Fitzbillies is a kid - friendly coffee shop in Riverside . Customers have rated it a 3 out of 5 . \nname : The Rice Boat | food : Italian | area : riverside||The Rice Boat , which is located on the riverside , serves Italian food . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Low rated The Waterman offer Italian food by the riverside . High price range and kids not welcome . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children Friendly coffee shop in the riverside area , near Raja Indian Cuisine . It serves French food and is in the more than £ 30 price range . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : yes | near : The Sorrento||In the city centre near to The Sorrento is a Chinese called Browns Cambridge . It is very family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop in the riverside area . It has a low customer rating , is family friendly , and the price range is less than 20 . It serves French Food . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a Fast food pub near Yippee Noodle Bar with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an Italian restaurant near Café Rouge in City center that is not family - friendly and has a low rating . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada , a Japanese pub near Yippee Noodle Bar , has a customer rating of three out of five . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre near the Crowne Plaza Hotel is Browns Cambridge coffee shop . It is a non family - friendly place that sells Japanese food and has an average rating . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : no | near : The Sorrento||A non - family friendly Chinese restaurant named Browns Cambridge is located neat The Sorrento in the riverside area . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe can be found in the city centre , close to The Bakers . It 's a family friendly coffee shop with a moderate price and an average customer rating . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Waterman Japanese restaurant on the riverside sells average food for lower than £ 20 . It is not family - friendly . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry provide Indian food that is rated 3 out of 5 , and kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Italian food is available in a children Friendly coffee shop Taste of Cambridge near Crowne Plaza Hotel in riverside \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly Japanese coffee shop in the city centre near Burger King with a moderate price range and has a customer rating of 1 out of 5 . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : city centre||The Phoenix is a high price French restaurant in the city centre . Customers rate it 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum for coffee shop offers Fast food for cheap price for kids Friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is expensive , poorly rated , and isn 't child friendly . As city centre French - style coffee shops go , you could do better . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat sells Chinese food , it is family friendly , the rating is average , and located in riverside . \nname : Strada | Type : pub | food : Indian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a highly rated pub - style restaurant near Yippee Noodle Bar that serves Indian food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a low priced restaurant that is family friendly and located just north of the city centre . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop placed near the river in City centre . We are a non - familiar ambient . we have one star and also we have a mid - price . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||Browns Cambridge isn 't rated very high for their moderate pricing of Japanese cuisine . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||It 's not well rated , but Cotto is an inexpensive Japanese coffee shop near The Portland Arms in the city centre . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House is located near The Rice Boat providing French food in the riverside area . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Located in the downtown region is Strada is a 5 star mid priced Japanese family restaurant located near the Rainbow Vegetarian Café . Chopsticks and take out orders are available . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop offers Indian food in the price range of £ 20 - 25 . The customer rating is high and it is based in the city centre . Not kids friendly . Near Burger King \nname : The Phoenix | food : Japanese | customer rating : 1 out of 5 | area : riverside||The Phoenix serves Japanese food in the riverside area and is rated 1 out of 5 . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : no||Cocum is a pub that costs more than £ 30 . It is not child friendly and has a low rating . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is an English restaurant and child - friendly , with a high customer rating and meals ranging in the more than £ 30 price range . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Blue Spice is located in the city centre , with a moderate price range and a customer rating of 1 out of 5 that is not kids friendly . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Food and Spirits at an affordable price . Strada near Rainbow Vegetarian Café offers family dining with 5 Star service . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is a providing Italian food , is located in riverside and customer rating is average . \nname : Loch Fyne | Type : restaurant | food : English | price : more than £ 30 | family friendly : yes||There is a medium price , children friendly restaurant called Loch Fyne \nname : Alimentum | food : Indian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||An Indian restaurant called Alimentum in riverside near Yippee Noodle Bar is high price range with an average customer rating . \nname : Green Man | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Riverside near All Bar One , the kid friendly establishment , Green Man , offers Chinese food with prices around £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop is child friendly , high end fast food , set by the riverside with a customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub located in City centre . It 's not family friendly , and is somewhat pricey . \nname : Browns Cambridge | food : Indian | price : less than £ 20 | customer rating : low||Browns Cambridge serves Indian food for less than 20 pounds . It does have a low customer rating . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a three - star restaurant in the high price range . It is located near Express by Holiday Inn . \nname : The Waterman | Type : pub | food : Indian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub located in riverside featuring Indian cuisine . This establishment received a customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the city center area there is a family - friendly coffee shop with French food named Browns Cambridge . They have an average customer rating . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Near Café Rouge there is a Fast Food Midsummer House with the low customer rating . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||An average Japanese restaurant in riverside , called The Waterman , is family friendly and the price range is under 20 dollars , \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||Try The Cambridge Blue restaurant for it 's traditional British Food on the 3 star menu . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a moderately priced , family friendly facility available for use , with pasta served . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||There is a cheap family friendly Japanese pub The Plough located near Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located near the riverside Crowne Plaza Hotel , Browns Cambridge is a non family - friendly French coffee shop with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee chop that serves moderately - priced fast food in the city centre . Is has a customer rating of 1 out of 5 and is not child - friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||With a low price range and a low customer rating , The Golden Palace is a coffee shop by the riverside in the City centre . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , near The Sorrento , in the riverside area , is a family friendly Japanese restaurant . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a child - friendly Italian restaurant located riverside . \nname : Alimentum | food : French | price : high | area : riverside | family friendly : yes||Alimentum serves French food at a very high price . It is located in riverside and is children friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is located in the center of the city near The Portland Arms . It is a coffee shop that serves Japanese food . The average customer rating is 3 out of 5 and the price range is high . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For Italian food in a kids friendly environment , try The Wrestlers coffee shop . Priced between £ 20 - 25 , it can be found in the riverside area near Raja Indian Cuisine . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub located in the riverside area . It serves French food and has received a 5 out of 5 rating . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : yes||Alimentum Japanese restaurant in city centre is kid friendly and has moderate price range . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap coffee shop where you can pick up a picnic lunch and wine and spirits that is great for families and has excellent reviews . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves Italian Food in a family Friendly environment located near the Crowne Plaza Hotel . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a high priced , children friendly Italian place . It is located near Rainbow Vegetarian Café and is rated 1 out of 5 . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is a Chinese restaurant in the city centre with high prices and average customer rating . It is not child friendly . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Near Burger King is a French coffee shop called The Eagle . Although is not kids friendly , the price ranges from £ 20 - 25 . Customers gave it a high rating . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix has Japanese food in riverside with a low customer rating . \nname : The Plough | Type : pub | food : Indian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub near Café Rouge that provides Indian food with cheap prices . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||A high price ranged English restaurant is The Dumpling Tree . \nname : Browns Cambridge | food : Indian | price : high | customer rating : 1 out of 5||Browns Cambridge sells Indian food at a high price range . Customers have rated it 1 out of 5 \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : no||For less than £ 20 , there is a spot named Alimentum serving English food in city centre . It is not family - friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a Japanese coffee shop in riverside , near The Portland Arms . Their customer rating is 5 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||There is a cheap restaurant The Golden Curry located in the centre of the city that provides Indian food . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||The Wildwood restaurant located near Café Rouge has been rated average by customers . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||In riverside , there is a French restaurant called The Golden Curry . It is located near Café Rouge . It has an average customer rating , and it is not family - friendly . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The coffee shop , The Eagle near the Burger King in riverside area . It is child friendly , serves French food , has a 3 out of 5 rating and can be a bit high in price . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : cheap||There is a cheap price range Japanese restaurant called The Dumpling Tree \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : city centre||The English restaurant known as The Phoenix is located in the city centre . It is priced under £ 20 , however , has low customer ratings . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||There is a Asian restaurant located near the river called The Twenty Two . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a fast food coffee shop located in the city centre near Burger King . Its prices are less than 20 euros , and it has a low customer rating . It is also family - friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Located near Burger King in city centre , The Eagle serves cheaply priced fast food in a family - friendly coffee shop . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is in the city centre near Yippee Noodle Bar . It serves Italian food at moderate prices and has a 1 out of 5 rating . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is an odious Italian coffee shop that sits on the riverside by Clare Hall . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop is near The Bakers . It is kid friendly and has a customer rating of 1 out of 5 . It is moderately priced . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Near Café Rouge , there is a well - recognized Japanese restaurant , named Midsummer House . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter has a cheap price range . Has a customer rating 5 out of 5 . It is a coffee shop . They are not family - friendly . They serve Italian food and there located near Café Sicilia . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||You can eat French food from Browns Cambridge for less than £ 20 . However , be careful it does have a low customer rating . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a pub located by the riverside . Price range for than £ 30 . Customer rating is low . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : city centre||Within the City centre is a pub which serves Indian food called The Waterman . The customer rating is average . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||The coffee shop named Clowns in riverside is near Clare Hall has a customer rating of average and sells Italian food . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||Wildwood pub is a one star restaurant with a moderate price range . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry is an English restaurant serving breakfast food in a family friendly atmosphere . It has a three - star customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia , The Punter coffee shop serves Japanese food , are not family - friendly , have a 3 out of 5 customer rating , and have a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is customer rated 5 out of 5 , Cheap and not family - friendly coffee shop serving French food in riverside area . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a low customer rating and a price range of more than £ 30 . it is in the riverside area near Café Adriatic . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is average priced family coffee shop with low customer rating . \nname : The Eagle | food : English | customer rating : 3 out of 5||The Eagle has English food and customer Rating are 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : £ 20 - 25 | near : Café Brazil||Near Café Brazil there is a pub called The Cambridge Blue that serves delicious Italian food and has an average price range of around £ 20 - 25 . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is a restaurant in Riverside offering Italian food . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a highly rated and child - friendly mid - priced Indian coffee shop . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||Alimentum Japanese restaurant located at city centre , is not family - friendly and average price is less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Indian | price : more than £ 30 | family friendly : yes||Loch Fyne is a restaurant providing Indian food in the more than £ 30 price range . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : no||The Golden Curry serves Fast food . It is not family - friendly and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||There is a poorly rated restaurant The Browns Cambridge that offers cheap fast food . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a pricey French restaurant with a 1 - star rating , located in City centre . It 's family friendly . \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is near Rainbow Vegetarian Café and is cheap with an average customer rating . \nname : Browns Cambridge | food : English | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is not family - friendly . They are located in city centre near The Sorrento and serve English food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Japanese coffee shop Fitzbillies is a less than £ 20 family friendly place with a low customer rating in Riverside \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside area is a one star rated coffee shop , Fitzbillies , which serves sushi . Not family friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||By the river near the Express by Holiday Inn , there is a family friendly restaurant The Rice Boat . This is a mid - price restaurant . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop having Indian food less than £ 20 , it is family friendly with low customer rating , and located in riverside near Burger King . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is located in the riverside area . It is a family friendly Japanese restaurant with an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||The Cambridge Blue is located in t he city center . It is an average fast food restaurant . \nname : The Mill | Type : pub | food : Fast food | price : more than £ 30 | area : riverside||The Mill is a Fast food pub that is more than £ 30 by the riverside . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is at the riverside and the price range is £ 20- £ 25 . It is a pub and the customer rating is high . \nname : The Phoenix | food : Fast food | customer rating : high | area : riverside||For a high rating Fast food in the riverside area check out The Phoenix \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is located in the city centre and has an average customer rating , They have English food and is family - friendly . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum produces pub food of moderate quality at a moderate price . They 're on the the River , near to the Yippee Noodle Bar . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is in the riverside area near to All Bar One . It serves expensive Chinese food and is not children friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a Fast food coffee shop located near the Ranch . It has moderate prices and a 3 out of 5 customer rating \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||Located in the riverside area is an eat type restaurant called the Zizzi with a price range of more than 30 euros . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low priced family restaurant located in the Express by Holiday Inn . It is a average rated restaurant . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a restaurant delicious sushi in the low price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a child - friendly coffee shop in the Riverside area with a low customer rating . They have Japanese food for more than £ 30 . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||There is a family friendly Chinese food place in Riverside that is cheap and average called The Waterman . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , near Café Adriatic in the riverside area , has low prices and average customer ratings . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two serves English food and is child friendly . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an expensive family friendly restaurant located on the riverside . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves French food . It is located near Raja Indian Cuisine in the center of the city . It is not family - friendly . It has a price range of less than £ 20 . \nname : Blue Spice | food : Chinese | price : moderate | area : riverside||Found at riverside , Blue Spice restaurant offers moderately priced Chinese food \nname : The Cambridge Blue | Type : pub | food : French | price : cheap | near : Café Brazil||The Cambridge Blue is a pub located near Café Brazil , and provides affordable French food . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The coffee shop The Punter is near Café Sicilia . It is near Café Sicilia and has cheap Italian food that has a customer rating 5 out of 5 that is family friendly . \nname : The Mill | Type : restaurant | area : city centre | near : The Rice Boat||Located in the city centre near The Rice Boat is a restaurant called The Mill . \nname : Bibimbap House | food : Italian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is an average priced Italian on the riverside near Clare Hall . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop serving French food . It is not family - friendly . Prices are less than £ 20 . The customer rating is low . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two rated high is located near The Rice Boat in the city center but not a good choice for kids . Their price range is £ 20 - 25 . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||In riverside there is a kids friendly coffee shop that is moderate price range called Blue Spice located near Avalon . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Zizzi is a children friendly coffee shop located near the city centre . Its customer rating is low and its prices range more than L30 . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café a Japanese food restaurant called Strada . A none children friendly place and price range of more than £ 30 . Above all this customer ratings are 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced coffee shop in the city center , The Wrestlers , that serves Indian food . The price is moderate and it is near the Raja Indian Cuisine . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Zizzi is a family - friendly coffee shop in the city centre . It has an average customer rating and costs less than £ 20 . \nname : The Eagle | food : English | customer rating : 5 out of 5||The Eagle is a five star establishment . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a fast food restaurant in riverside . It has a customer rating of 1 out of 5 and is near Café Rouge . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no||The Aromi is a coffee shop serving Indian food . It has an average customer rating in the area of city centre . It is not family friendly \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Midsummer House is a cheese and wine restaurant located in Cambridge near Café Rouge . It is rated as three stars \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub . It is located near Ranch and has a customer rating of 5 out of 5 . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman It is located in the city center . their prices are low \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a children Friendly restaurant with a very high customer Rating of 5 out of 5 . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly restaurant in the center of the city near The Sorrento . Browns Cambridge offers Italian food . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||Near to Café Adriatic is a pub named The Vaults . It has a customer rating of 5 out of 5 and a cheap price range . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||Strada is a low priced , kid friendly restaurant with a high customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a restaurant that serves Chinese cuisine to all ages . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||A cheap coffee shop is Wildwood . It has a 5 out of 5 rating and Japanese food is available . It is near Ranch . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||A nice cheap riverside family - Friendly pub that serves Italian food then go to The Olive Grove \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||the Midsummer House near the Café Rouge has a 5 out of 5 food rating for their fast food \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||If you are looking for a family friendly pub , let me suggest The Olive Grove in the riverside area with a price range less than 20 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a children friendly pub that serves English food . It is named The Dumpling Tree . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||With average customer ratings and being non family - friendly , Browns Cambridge is an Italian coffee shop near Crowne Plaza Hotel in the city centre . \nname : Aromi | Type : restaurant | food : French | area : riverside||In Riverside , there is a restaurant called Aromi that serves French food . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a moderately - priced French coffee shop . It is not child - friendly , and it is rated by consumers at 1 out of 5 . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , is Strada , a place that serves Chinese food for a moderate price . It is non children friendly and was rated one out of five stars by customers . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers coffee shop offers French food near The Portland Arms area . We have a low customer rating and are not family - friendly . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant located riverside near Express by Holiday Inn with a cheap price range , not family - friendly and a customer rating of 5 out of 5 \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Moderately prices Italian is served at The Wrestlers , It is kid friendly and a 3 out of 5 customer rating . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a French restaurant in city center with an average customer rating . It is in the higher price range and are not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A kid friendly coffee shop named Fitzbillies serves moderately priced Italian food , is customer rated 1 out of 5 and is near the city center . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant in the mid price range located near the Express by Holiday Inn . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi pub serves Chines food . It has a high customer rating and is kid friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||moderately rated in the city centre is The Waterman is an average priced Fast food family - friendly restaurant \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly sushi restaurant located beside Express by Holiday Inn . \nname : The Rice Boat | food : Italian | area : riverside||The Rice Boat offers Italian food by the riverside . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||On the riverside there is a well priced restaurant called Travellers Rest Beefeater . It is near Café Adriatic . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is a pub providing Indian food Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The children friendly coffee shop located in the city centre , called Fitzbillies , offers Japanese food in high price range . It has been rated low . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : city centre | near : Clare Hall||there is low price coffee shop named Bibimbap House serving Italian food Located in city center near Clare Hall \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||The high priced French restaurant , Alimentum , is located near the Yippee Noodle Bar in the centre of the city . It has a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop , near Café Sicilia , offers wine , cheese and fruits to a family oriented crowd . Five stars support the high prices . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Rated 5 out of 5 , Clowns is a pub in the riverside area . Prices start at more than £ 30 . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||Near the Café Sicilia . there is The Punter , a non - children friendly highly rated expensive coffee shop which serves English food . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||Family friendly pub , The Olive Grove serves costly fast food , located by the river \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a kids friendly and moderately price coffee shop . It has a customer rating of 3 out of , it serves Indian food and is located near Café Sicilia . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located near Yippee Noodle Bar , it has five stars and is expensive . It sells cheese , wine , and soup . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||For Italian food and a child friendly environment , try Loch Fyne . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||Giraffe is a burger pub for adults located a few blocks north of City centre . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop in the low price range . It is located in the riverside area near Avalon . \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man is a pleasant site for children and friends located in the riverside area with prices moderate and suitable to a large family . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop that serves Japanese food . They are located in the city centre and are not family - friendly . They have a 5 out of 5 rating . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an expensive riverside restaurant that is family friendly . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low priced coffee shop that is located next to Café Sicilia . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is located near Café Sicilia . It is a highly rated coffee shop with expensive prices . It it family friendly . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House , near All Bar One , serves cheap Italian food and has been given a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a reasonably priced coffee shop that also does Italian food . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is an adult friendly Japanese restaurant located in the city centre with a customer rating of 3 out of 5 . Price range : high . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||A moderately priced restaurant that is not kid friendly is Travellers Rest Beefeater . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||There is an all right children friendly Chinese in the riverside area , its called The Rice Boat . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Near to The Portland Arms is a five star coffee shop , serving Italian food , named The Cricketers . Family friendly . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two provides Indian food \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||For good Japanese food in the lower price range there is Fitzbillies near The Six Bells . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : no | near : The Portland Arms||The Punter is in the riverside area . It is near The Portland Arms . It has a price range of more than £ 30 . It is not children friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The coffee shop , Zizzi , has high prices and low ratings but it is child friendly . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns pub located in Riverside , serves nice food , at a reasonable price . Customer ratings are 2 out of 5 stars . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||The Waterman is an average French Pub near riverside . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is an inexpensive family free space . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a moderate priced French coffee shop located near Burger King in riverside . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : no | near : The Bakers||There is a Japanese food restaurant near The Bakers , The Golden Curry . Its price range is high and it not children friendly . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a friendly for family place which provides Italian food in the high price range . The customer rating is 5 out of 5 . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||Alimentum in city centre serves Japanese food . It is a child friendly establishment with prices more than £ 30 . \nname : Fitzbillies | food : Indian | price : less than £ 20 | near : The Six Bells||Fitzbillies is an Indian restaurant near The Six Bells that has a low price range . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||A French Pub located in Riverside with an average customer rating is The Waterman . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue is in the middle of town . So far it only has a one - star rating , but you can enjoy a full English breakfast in this restaurant . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Located near Café Rouge is a restaurant named Wildwood that has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop that serves Indian near Riverside and Burger King \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is a sushi restaurant by the riverside with a 3 out of 5 star rating . It has a high price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is in riverside a kid friendly coffee shop serving Japanese food at moderate prices . Our customers rate it a 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is a low priced coffee shop with an average customer rating . It is located near Ranch and serves French food \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is priced high and offers Fast food located near Rainbow Vegetarian Café rated 1 out of 5 family friendly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a Japanese restaurant near The Sorrento in the riverside area which isn 't family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge coffee shop is located in the City center . near the Crown Plaza Hotel . It is family oriented and serves Japanese food . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||An Indian restaurant in riverside , The Twenty Two , is child friendly . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge is above average in price range and rated poorly by customers . \nname : The Golden Palace | Type : restaurant | price : high||The Golden Palace is a more expensive restaurant . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Right next to the river and close to Yippee Noodle Bar , you can find the highly recommended Alimentum , which provides light meals and alcoholic beverages at a low price . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||While not kid friendly , The Waterman Italian restaurant is located in the city centre and does have an average rating of 3 out of 5 and is moderately priced . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap family friendly British Café near the Rainbow Vegetarian Café with 5 out of 5 stars \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||If you 're looking for Fast food , Burger King is the place to go . Ranging to about £ 20 - 25 near the city centre with a high customer rating , burger king is near The Eagle coffee ship , but is not kid friendly . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House its a fast food restaurant located near All Bar One \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub providing Japanese food less than £ 20 . It is located in the city centre . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||There is an expensive restaurant called The Golden Palace . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | near : Café Brazil||There is a coffee shop called The Vaults , which is near Café Brazil in city centre . The bill will be cheap , less than £ 20 , but the customer rating is low . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||With a customer rating of 5 out of 5 , The Eagle serves Fast food . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A family friendly pub located in the riverside area , Aromi has a customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Wildwood pub offers fast food . It has average prices and low consumer ratings \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||It has a customer rating of 3 out of 5 and is a coffee shop . It is kid friendly with a moderately priced menu . Cocum is it 's name that is a fast food restaurant . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue is a dine in restaurant in the medium price range . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Located in The Portland Arms , The Dumpling Tree is an English pub that is family friendly . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a low cost restaurant next to Yippee Noodle Bar . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Kid friendly restaurant The Waterman serves English food . Located by riverside is moderately priced with a 1 out of 5 rating . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||For a low - priced family - friendly Italian restaurant near Rainbow Vegetarian Café , you can visit the Strada . The customer rating is low . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee chop near The Portland Arms with a high customer rating in the city centre . A price range of £ 20 - 25 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||The kid friendly coffee shop , the high rated Italian food restaurant , The Cricketers is near The Portland Arms . \nname : Strada | Type : pub | food : Japanese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada serves Japanese food and is located near Yippee Noodle Bar . It is a pub and is rated one out of five by customers . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies coffee shop is a cheap restaurant by the river - the perfect family venue . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe , located near The Six Bells , is a low price restaurant \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a child - friendly coffee shop . Customer ratings are low . It is located in the city center . Prices are more than £ 30. it is near Avalon \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||In Fitzbillies sells French food with a price less than £ 20 located near of The Six Bells \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Inexpensive French food is served up at Browns Cambridge , which has a 5 out of 5 rating with customers . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : yes||Alimentum is an Indian restaurant with medium prices located in city centre . Kid friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Aromi coffee shop in the riverside area has a customer rating of 1 out of 5 . It is children friendly and serves Italian food . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||There is a cheap pub called Clowns located in the Riverside . Customers are rating this pub average . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : city centre||Clowns is a pub in the city centre area with a cheap price range and a customer rating of 5 out of 5 . \nname : The Golden Curry | food : French | customer rating : average | family friendly : no||The Golden Curry is a non family - friendly French food restaurant with an average customer rating . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : city centre||There is a pub serving fast food in the city centre named The Waterman . This pub has a customer rating of 5 out of 5 . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The non - family friendly Strada is a Chinese restaurant with a low customer rating . It is in the less than £ 20 price range and is near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Serving moderately - priced Japanese cuisine , the 3 - star ' The Wrestlers ' is a family - friendly restaurant . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap family friendly pub in riverside . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Italian coffee shop Cocum is kid - friendly , has high customer rating and in the price range of over £ 30 . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Situated near the Crowne Plaza Hotel , you will find The Waterman - A child friendly fast food eatery . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||An English pub named Giraffe is located near riverside and is children - friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter , located near Café Sicilia , is a moderately rated , adult , Japanese coffee shop that is high priced . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||The Eagle in riverside , prices £ 20 - 25 high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||Situated in city centre , and with a 3 out of 5 customer rating , The Golden Palace is a moderately priced coffee shop that serves Indian cuisine . \nname : The Golden Curry | food : French | customer rating : average | family friendly : no||The Golden Curry is French food serving place that is not family - friendly and has an average customer rating . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||The Giraffe is an adult pub located in the riverside area . It serves Japanese style food . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is pub grub providing Japanese food in the low price range . It is located near Café Rouge adults only \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||A 3 out of 5 rating in the high price range would be Browns Cambridge . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : riverside | near : The Sorrento||Located near The Sorrento at the riverside , you will find an Indian coffee shop called The Mill . But you have to know the prices are high . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||A child - friendly Fast food establishment , Browns Cambridge , is located near The Sorrento in riverside . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is located at the City centre and offers meals and drinks at good bargains . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : city centre||The Mill is a moderate pub in the city centre that delivers Japanese food . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter is an expensive Fast food restaurant . \nname : The Eagle | food : Chinese | customer rating : high||The Eagle is a very highly rated Chinese restaurant . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||Japanese eatery near Riverside in high price range ; The Phoenix is rated 3 out of 5 . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Located near the Yippee Noodle Bar and city centre the Alimentum is a Chinese restaurant with high customer rating providing food in the £ 20- £ 25 price range . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi rated 5 out of 5 is a non family - friendly Japanese coffee shop that is located at the city centre \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||Located close to The Sorrento , The Mill offers a coffee shop style experience to enjoy the Japanese food available , with prices starting at £ 30 \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an Indian coffee shop , it is pretty bad moderate prices and 3 out of 5 customer ratings , The eagle is on the riverside near the Burger King , yes mothers it can accommodate kids . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a low rated fast food , family - friendly restaurant near Café Rouge in the city centre . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||There is a child friendly restaurant Loch Fyne offering high class quality food \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop , near to Ranch , serves expensive Italian food and has 1 out of 5 stars . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : more than £ 30 | near : Café Brazil||Located near Café Brazil there is a pub serving Chinese food for more than £ 30 called The Cambridge Blue . \nname : Midsummer House | food : Chinese | customer rating : average | near : Café Rouge||The averagely rated Midsummer House , near the Café Rouge , offers Chinese food . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant and is located near Rainbow Vegetarian Café . It has low prices and a customer rating of 5 out of 5 . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a Chinese restaurant in riverside . It has a low customer rating and the price range is less than £ 20 . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||High price ranges The Olive Grove is children Friendly , Pub in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Families with small children can get low - priced , mediocre food at Cocum coffee shop . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a cheap family friendly coffee shop located in riverside , near Café Sicilia . \nname : Green Man | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One by the riverside is Green Man , an Italian restaurant which is kids friendly with a price range of £ 20 - 25 . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The Golden Curry is a family friendly , fast food restaurant with an average customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||hello and welcome we would like to tell you about Loch Fyne it is a restaurant we offer very nice English food . at the moment we are not family - friendly . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located beside the Express by Holiday Inn is a low priced dine in restaurant called The Rice Boat . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn , is The Rice Boat . It is children Friendly , has Italian food and an average customer Rating at a high price range . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a children friendly restaurant that has a rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman located in the city centre area is not children friendly , has a high customer rating , and a price range of more than 30 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||In riverside , near Café Adriatic , Travellers Rest Beefeater has a high customer rating with a price range of more than 30 pounds . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||A pub with low customer ratings near Café Adriatic , The Vaults , has a price range that is above 30 Euros . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada serves cheap Chinese food . It is located near the Rainbow Vegetarian Café , is family friendly and not well rated . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||The Golden Curry is a 1 - star rated British restaurant that 's not for families . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Family Friendly Indian restaurant is named Loch Fyne . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family - friendly pub serving Chinese food for under £ 20 . It is located near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A family friendly Japanese coffee shop , Fitzbillies is located on the riverside , with low prices and low ratings . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly pub offering burgers \nname : The Vaults | food : Italian | price : £ 20 - 25 | family friendly : yes||Yes , The price range for The Vaults is 20 - 25 \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop that serves delicious burgers and fries . It is located nearby the Café Sicilia . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||The Midsummer House near the Café Rouge , serves English food and is rated 5 out of 5 \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||The Cocum restaurant is a 3 out of 5 and is child friendly . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A low - rated Italian food restaurant called The Rice Boat can be found in the city centre area near Express by Holiday Inn . This family - friendly restaurant features an above average price range . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||For something cheap and family friendly in riverside , try Green Man . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : city centre||With a price range of more than £ 30 , The Mill pub serves French food and can be found in city centre . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a restaurant providing take - away deliveries in the low price range . It is located in near Express by Holiday Inn \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the city centre near the Express by Holiday Inn and is children - friendly . It serves high price - range Chinese food and has an average customer - rating \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||There is a Japanese pub with prices less than 20 pounds named Wildwood . It has a low customer rating . \nname : Strada | Type : pub | food : Chinese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||For good Chinese eats near Yippee Noodle Bar , Strada is a nice pub with a customer rating of 1 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||The price range of Alimentum restaurant is moderate and it has a customer rating of 3 out of 5 . It is located near Yippee Noodle Bar in the riverside area . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||If you want a low customer rated family friendly Fast food restaurant then head to The Golden Curry . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||The Mediterranean restaurant , Loch Fyne , is located near The Rice Boat and provides budget eating . \nname : Bibimbap House | food : Japanese | price : high | area : riverside | near : Clare Hall||Bibimbap House offers Japanese food in the high price range . It is near Clare Hall in the riverside area . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||The Wildwood Pub serves Japanese food at a cheap price . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is located near the Rainbow Vegetarian Café and is a high - priced venue . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The family - friendly Fitzbillies serves fast food at low prices . The coffee shop , located in the city centre , has received 5 out of 5 in customer rating . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Wildwood is our new English pub . Moderate pricing , and customer ratings of 1 out 5 are sure to draw you in . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi pub has Chinese food and is family friendly with a high customer rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a coffee shop providing family - style dining in the high price range . It is located close to the city center . and has a superb view across the river . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe coffee shop up the road from The Bakers is a 3 star family friendly eatery . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults is a family friendly wine and cheese restaurant in the medium price range . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||Located in the city centre , high priced family - friendly Italian restaurant , The Waterman , has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||For adults only there is Browns Cambridge serving fast food near the Crowne Plaza Hotel by the riverside in their coffee shop although customer ratings are low . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Moderately priced and with an average customer rating , The Eagle is a coffee shop close to Burger King in the city centre . Not recommended for children . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly , three - star restaurant along the riverside . They serve wine and hors d 'oeuvres in the high price range . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Midsummer House is located near All Bar One offering fast food at a higher price range with average customer ratings . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a cheap pub near Café Rouge that is not family friendly . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House as prices of about 20. they have Italian food with a low rating near All Bar One . \nname : The Mill | Type : pub | food : English | price : high | area : city centre||Located in the city centre area is an English pub named The Mill with a high price range . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms , at the riverside , there is The Punter , which is family friendly and cheap . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Indian restaurant located near Rainbow Vegetarian Café . Although it 's very pricey , it has great customer ratings and is known to be kid - friendly . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a five - star English restaurant near All Bar One and is cheap . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is not family friendly . It serves high rated , cheap Indian food . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is family friendly , and serves inexpensive food . It is near the city centre next to the river and Raja Indian Cuisine . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Clowns , a pub near the riverside , has high prices and a customer rating of 1 out of 5 . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||The Vaults is a family friendly restaurant . It is also near the city centre . \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix offers great food that is most loved by tourists , strategically located near Chesterton Road \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||For the sophisticated adult who loves good Italian coffee , come to Cocum . \nname : Fitzbillies | food : Chinese | price : moderate | near : The Six Bells||Fitzbillies , near The Six Bells serves Chinese at a moderate price . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a English food restaurant that is children friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Kids friendly pub called Giraffe serves English food in riverside area . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat near Rainbow Vegetarian Café has a customer rating of 5 out of 5 and a price range of more than £ 30 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Clowns pub in riverside has a high customer rating with price range of more than £ 30 . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||If you are looking for a pub in the riverside area , Clowns offers high priced food with a 1 out of 5 star rating . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a Chinese restaurant with high customer rating , The Rice Boat located in the city centre near Express by Holiday Inn where price range is more than £ 30 . It is not kid friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a riverside Japanese coffee shop . Customers give The Golden Palace a 3 out of 5 rating with a high price range . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults , a moderately priced coffee shop with a customer rating of 3 out of 5 , is located near the Café Brazil in the riverside area . \nname : The Eagle | food : Japanese | customer rating : average||The Eagle is an average - rated Japanese restaurant . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||A kid friendly coffee shop in riverside called Fitzbillies serves Japanese food in the price range of £ 20- £ 25 . It has high customer ratings . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : no||The Olive Grove is not child friendly , is a pub serving English food , is in the city centre and has a high price range . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Despite being cheap , Browns Cambridge has a low rating . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Located in city centre is the expensive Japanese food restaurant , The Phoenix , which has an average customer rating of 5 out of 5 . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Located near Café Adriatic , the moderately - priced 3 - star Travellers Rest Beefeater lies on the riverfront north of the city centre . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a highly rated coffee shop that serves Italian food in the city centre priced between £ 20- £ 25 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults , in riverside near Café Brazil , is a coffee shop with a high price range and rates 1 out of 5 . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Yippee Noodle Bar and Alimentum are fast food restaurant located north of the City center . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove in riverside has Italian food for less than £ 20 \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||family - Friendly Zizzi at the riverside is average coffee shop where you can enjoy for under 20 £ . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House , located near Café Rouge , has an average customer rating for their English cuisine . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop is located close to Clare Hall in Cambridge . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly French restaurant located by the river . It has a low price range but has received poor reviews . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves fast food . It is family friendly and located near The Sorrento in riverside . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||The low rated pub , The Twenty Two , is located in the riverside area near Café Sicilia . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is located near the Ranch . The coffee shop offers food at a low price . It has received one star . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue Pub serves Japanese food at £ 30 plus . You can find it near the Café Brazil . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||Japanese edible are available at restaurant The Cricketers near to All Bar One \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is an Indian pub near Café Rouge with moderate prices . They are kid friendly . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne has a customer rating of 3 out of 5 with French food . It is in riverside near The Rice Boat . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto , an Indian coffee shop . The price range is more than £ 30 . The customer rating is high . It is located to the riverside near The Portland Arms . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||English moderate out of 5 in Browns Cambridge \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||In the £ 20 - 25 price range is the Chinese food serving place , Alimentum . It has a high rating and is in the city centre near Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a family - friendly pub offering great French food in a city centre near you \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a low - priced restaurant in the city centre that delivers take - away . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle is a fast food place that received a 5 out of 5 customer rating . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||The Phoenix restaurant has English food . It is a high - priced option with a 3 out of 5 rating , located in City centre . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||Visit Wildwood coffee shop for good affordable food situated very close to The Ranch . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace , situated in the city centre , is a coffee shop that serves Italian food with a customer rating of 3 out of 5 . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix has an awesome early dinner special . Always really nice . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a restaurant with a price range less than £ 20 . It is near The Six Bells . \nname : Wildwood | Type : pub | food : Indian | price : less than £ 20 | customer rating : low||Low customer rating , pub and Indian food , Wildwood , has a price range of less than £ 20 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||In riverside is a coffee shop , The Vaults , near Café Brazil has a high price range and rates 1 out of 5 . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a restaurant that is kid friendly and rated 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A kid friendly coffee shop near Crown Plaza Hotel in the riverside area named Taste of Cambridge serves French food . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||On the riverside , near The Rice Boat , The Twenty Two restaurant offers food at higher than average prices . It is not family - friendly and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a top rated French coffee shop near the Crowne Plaza Hotel in city centre . It is kid friendly . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||A high priced restaurant that is children friendly in the riverside area , is called The Punter , and is close to The Portland Arms . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||For 3 out of five star dining , leave your children at home and enjoy this French themed coffee shop with expensive taste . Cocum is a experience you wont soon forget . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is located near The Bakers and is moderately priced fast food for adults \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Indian style coffee shop with 5 out of 5 customer ratings . It is not family friendly and located near Crowne Plaza Hotel at the riverside . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||A high priced , one star pub that is family friendly is called Cocum . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||The City centre is home to The Phoenix , a high priced , three star restaurant . \nname : The Golden Curry | food : Chinese | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high priced Chinese restaurant near The Bakers that is child friendly . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||In the riverside area , near Café Rouge , is The Golden Curry . It serves fast food that is highly rated in a children friendly venue . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is providing Chinese food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a family - friendly pub in the city centre with a perfect rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||With a high customer rating , The Punter is a kid friendly coffee shop serving Japanese food . The price range is L20 - 25 and is located near Café Sicilia . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Next to The Rice Boat , The Twenty Two is a higher end family restaurant . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is fast food with a low customer rating . It has a price range of less than 20 pounds and is family friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||Zizzi is as family friendly Italian pub with low customer ratings \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||with a high customer rating the Strada is kids friendly serving Italian food priced at £ 20- £ 25 near the Rainbow Vegetarian Café \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located in the riverside area near Express by Holiday Inn , The Rice Boat is a moderately priced Indian restaurant with a 3 of 5 customer rating . It is kid friendly . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||On the riverside , near Café Sicilia , you 'll find a coffee shop named The Dumpling Tree , it is both cheap and family friendly . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : yes||Located near the city centre , The Twenty Two is a Fast food restaurant that is family - friendly . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : no||There is a no kids - friendly pub The Olive Grove located in the city centre that provides English food in the moderate price range . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a three star family restaurant located near the Express by Holiday Inn that serves low - priced food and drinks . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||The Blue Spice is a coffee shop providing coffee that prices more than £ 30 , it is children - friendly with a low customer rating and is located in riverside near Avalon \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food restaurant that has a family friendly environment . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||The French restaurant located in the city centre near the Yippee Noodle Bar is the Alimentum . They have a high price range and a customer rating of 3 out 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||There is a Italian coffee shop low customer rating called Clowns located at the riverside near Clare Hall . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Located near to The Rice Boat on the riverside , The Twenty Two is a highly priced , child friendly establishment with a customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : no||Riverside pub , The Olive Grove , offers mid priced French food . It is not child friendly however . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The French restaurant The Cambridge Blue has a great customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||There is an expensive coffee shop called The Eagle located at the riverside , near Burger King that provides Indian food . The customer rating is 1 out of 5 and it is not children friendly . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : no | near : Café Rouge||There is an Indian pub , restaurant near to Café Rouge . Its called The Plough the meals are reasonably priced but they are not child friendly . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Located near The Bakers , Giraffe is a cheap , family - friendly coffee shop with an average customer rating . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Fast food . It is located near the riverside , near Express by Holiday Inn . It is not kid friendly . It is moderately priced with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves English food by the river , near Café Rouge . It is child friendly but has a 1 out of 5 rating . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is located near the All Bar One . It has high Price range but an excellent customer rating \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||Rated 3 out of 5 by customers , non - kid friendly The Twenty Two serves mid - range priced food . Twenty Two can be found near The Rice Boat in the city centre . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Family friendly , Strada , is located near the Rainbow Vegetarian Café . It offers British food in the low price range and has a 3 star rating . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a French - style pub that is children - friendly in the riverside area . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves Indian food at a high price for not very good reviews . It is located on the riverside by The Portland Arms \nname : Midsummer House | food : Chinese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is located near Café Rouge , serving Chinese food , and is rated five out of five . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is a medium - priced restaurant that is a coffee shop too . It has a excellent rating and is for the whole family . It 's located besides from Burger King \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Cheap Japanese food at The Waterman in the city centre is for adults only and highly rated \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Further along the river from the Yippee Noodle Bar is a Greek restaurant named Alimentum . It is within the higher price range and is rated 1 star . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||Alimentum , in the city centre , serves budget Indian food . Not suitable for families . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : no | near : The Bakers||There is an adult restaurant near The Bakers for a low price . It is called The Golden Curry and serves Chinese food . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes||The Olive Grove is a children - friendly , high - priced pub located in the city centre which serves Chinese food . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||At the end of the city located beside Yippee Noodle Bar is a high end restaurant called Alimentum . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||Wildwood is a pub which serves Italian cuisine . It has a low price range and a customer rating of 3 out of 5 . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Eagle gets a customer Rating 3 out of 5 for their Japanese food . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree kids friendly pub with Italian food near to The Portland Arms . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||For average Chinese food at inexpensive prices , The Waterman in city centre is ok without the kids . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||Browns Cambridge has a high customer rating with a price range of more than £ 30 . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has a low customer rating and a price range more than 30 . It is child friendly and located near Express by Holiday Inn . \nname : The Waterman | Type : pub | food : Indian | customer rating : high | area : riverside||In riverside there is The Waterman which is a pub with Indian food \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater , situated near Café Adriatic in the city centre is rated 5 out of 5 by customers with a price range over 30 . \nname : Loch Fyne | food : English | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is an English restaurant located by The Rice Boat in the city centre . The customer rating is very low . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a low - priced restaurant in the city centre that delivers take - away . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Avalon||Blue Spice , near Avalon in the city centre , is this amazing coffee shop that will set you back £ 20 - 25 , though it 's not kid - friendly . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is an unwelcoming low quality restaurant \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Serving moderately priced fast food , Fitzbillies , a coffee shop in the city centre , offers a non - kid friendly environment and a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||There is a French coffee shop with an average customer rating named Cotto in riverside near The Portland Arms that is priced less than £ 20 . \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is averagely rated and cheap . It is near Rainbow Vegetarian Café . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||A kid friendly Fast food place named Strada near Rainbow Vegetarian Café with high customer rating and a price range of £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||In the city centre , neat The Portland Arms is Cotto coffee shop . Its cheap Italian food is highly rated . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a riverside coffee shop that serves French style food , with a customer rating of 3 out of 5 this leaves a lot to be desired with a high price range and no children policy you can find it located near Burger King . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||A riverside restaurant , The Golden Palace , is a 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee shop and Indian food is high on price and average in customer Rating , children friendly near Café Sicilia . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , a highly rated Chinese restaurant is located in Riverside . It is near Café Rouge and is very kid friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||Highly rated Cocum is a coffee shop serving Indian food . Not kid friendly and priced £ 20 - 25 . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a cheap riverside restaurant , for adults , serving one starred British food . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kids friendly coffee shop with moderate price \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is kid friendly . It is in the high price range . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A family friendly , moderately - priced Italian restaurant with low reviews is The Wrestlers . \nname : Bibimbap House | food : Indian | price : high | area : city centre | near : Clare Hall||Bibimbap House is a high priced Indian restaurant located in city centre near Clare Hall . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is child friendly and is located near The Six Bells . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub located near Café Adriatic with a moderate price range . Scores 3 out of 5 by customers . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||A 3 star restaurant , The Golden Curry is a family friendly restaurant located in Cambridge . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter coffee shop , near Café Sicilia , has a low customer rating , is kid friendly and serves Japanese food . Their price range is more than £ 30 . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix has French food at a low price , but with low ratings . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a kid friendly Italian coffee shop near Crown Plaza Hotel by riverside called Browns Cambridge . It is rated 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms there is a five - star coffee shop called The Cricketers . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a 1 out 5 rated pub on the riverside , that has a moderate price range . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||The Plough , a children - friendly restaurant near The Bakers offers meals for more than £ 30 . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a restaurant in the city centre offering food for less than £ 20 . It 's near The Rice Boat . Beware that it is not family - friendly . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is near The Rice Boat in city centre . It is children friendly , the price range is more than £ 30 , and has a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a family - friendly coffee shop with high reviews and decent prices . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : riverside||A high price range restaurant , The Phoenix , serves Chinese food and has a customer rating of average . The restaurant is located in riverside . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||There is an expensive , five - star pub called The Vaults located near Café Adriatic . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An expensive and child friendly Japanese coffee shop in riverside is The Wrestlers . It is near Raja Indian Cuisine . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing fast food in the low price range . It is located near Café Sicilia . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : high | near : Café Brazil||The Cambridge Blue pub serves Chinese food in the high rice range and is near Café Brazil \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||You can get high - priced Fast food at The Waterman . They are child friendly and have an average customer rating . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is an average , family friendly Indian pub . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub which serves Japanese food for less than £ 20 . It is in the riverside area \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The coffee restaurant , The Golden Palace , serves decadent coffees and snacks . Located just outside of the city center . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant located in the city centre near Yippee Noodle Bar . It is high priced with a customer rating of 3 . \nname : Midsummer House | food : Italian | customer rating : 3 out of 5 | near : Café Rouge||Located near Café Rouge it is Midsummer House , serving Italian food , 3 out of 5 customers recommend it . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree is a mid - price restaurant . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : 5 out of 5||Wildwood is a pub providing Indian food in the cheap price range . Its customer rating is 5 out of 5 . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Bibimbap House near Clare Hall with English food and moderate price range \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is an Indian restaurant located on the riverside . It has an average customer rating but is in the high price range . Feel free to bring your children as the restaurant is child friendly . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||Located in riverside is a cheap , family friendly pub called The Olive Grove \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum , a low priced , family friendly restaurant is located on the river in City centre . \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||A restaurant near The Bakers is a The Plough . The Plough is not family friendly and they are average priced . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||The high customer rated Cocum is an Italian coffee shop in the more than £ 30 price range . It is not children friendly . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||Located in the city centre , Browns Cambridge is a low priced five star Italian restaurant . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Riverside pub Clowns offers moderately priced food . The customer rating is an average 3 out of 5 rating . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice by riverside is less than £ 20 . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a low rated restaurant that provides Italian food for kids . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a restaurant serving Indian dishes priced in the £ 20 - 25 range which has received a high customer rating and is very kids friendly . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||In the city centre near the Yippee Noodle Bar is a restaurant with a 5 out of 5 customer rating . They provide cheap Chinese meals and goes by the name Alimentum . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is a cheap fast food coffee shop named Wildwood located near the Ranch . Its rating is 5 . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada has a moderate price , is not kids friendly , and an average rating . They serve Indian food near Rainbow Vegetarian Café . \nname : Blue Spice | food : French | price : less than £ 20 | area : city centre||Blue Spice serves French food . It has a price range of less then 20 dollars and is located in the city centre . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat has a high customer rating with a price range of between 20 - 25 pounds . It is near Rainbow Vegetarian Café . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||For a coffee shop on the riverside visit The Vaults located near Café Brazil . It is averagely rated and costs less than 20 Euros . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers provides Indian food in the £ 20 - 25 price range . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a riverside coffee shop near Burger King . Its fast food is average priced and highly rated . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a kid friendly coffee shop near Café Sicilia , serves Japanese . Prices range L20 - 25 with a customer rating of 3 out of 5 . \nname : Bibimbap House | food : Indian | area : city centre | near : The Rice Boat||Bibimbap House is a restaurant that serves Indian food in the city centre , near The Rice Boat . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a highly reviewed Italian restaurant with prices in the £ 20 - 25 range . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat can be found by Express by Holiday Inn . It serves 5 star wine and cheese , at a high price , and is family friendly . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop situated at the riverside near Burger King . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Go by the waterfront and enjoy a nice sushi place with affordable prices called Bibimbap House near Clare Hall . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum proudly serves English food at a low price range with an average customer rating located in riverside near Yippee Noodle Bar . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a high - priced restaurant located near the Café Brazil . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||Highly rated The Wrestlers is an adult English venue , average priced . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | near : Clare Hall||Located at the riverside near Clare Hall , Clowns is a coffee shop that serves Japanese food . Customers rate their satisfaction with the coffee shop as high . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap English restaurant located near Rainbow Vegetarian Café . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman , is a Japanese restaurant that is not kid friendly , but it 's in the middle of the city , it 's highly rated by customers , and its priced at an average £ 20 - 25 . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderate priced English restaurant located at the city centre near Express by Holiday Inn with a customer rating 3 out of 5 . It has a kids friendly atmosphere . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge serves Indian food unsuitable for families and is located in riverside by the Crowne Plaza Hotel \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two offers high customer Rating area city centre for kids Friendly in The Rice Boat . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop with high prices , located near Ranch \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Italian restaurant that is kids friendly near Raja located in riverside . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||Located near All Bar One is a Japanese restaurant called The Cricketers . \nname : The Golden Curry | family friendly : no | near : The Six Bells||If you are searching for a place near The Six Bells and that is not family - friendly , The Golden Curry might be for you . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||If you are looking for a child friendly restaurant , check out The Plough near the Express by Holiday Inn \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||A coffee shop that is kids friendly is located near The Bakers named Giraffe . It also has a moderate price range with a customer rating of 1 out of 5 . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a French coffee shop with low prices . It is near The Sorrento along the riverside . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is a restaurant in the low price range located near Rainbow Vegetarian Café . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||There is a moderate price range pub The Cambridge Blue located near Café Brazil . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Not far from city center . , there is an expensive restaurant called Blue Spice . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Browns Cambridge has a customer rating of 5 out of 5 and serves cheap Fast food . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue is a costly pub serving fast food , located near Café Brazil \nname : Fitzbillies | food : Chinese | price : more than £ 30 | near : The Six Bells||Fitzbillies provides Chinese food in the more than £ 30 price range . It is near The Six Bells . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a child - friendly fast food coffee shop with average customer reviews and a high price range , located near Café Sicilia . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry is a fast food restaurant that is not family friendly . Their service only ranks in at 1 star according to reviews . \nname : Strada | Type : pub | food : Japanese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada , the Japanese pub near Yippee Noodle Bar , is rated 1 out of 5 . \nname : The Twenty Two | food : Japanese | family friendly : yes||For Japanese and kid friendly fair , you have The Twenty Two . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop near The Portland Arms , is a coffee shop for the whole family . Which also offers 3 star service and a variety of Food , Wine , and Spirits . \nname : The Rice Boat | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The kid friendly restaurant , The Rice Boat , is located in the riverside area . It serves Chinese food and has a customer rating of 3 out of 5 . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada is a high - priced restaurant with a 5 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto , Indian food serving coffee shop near The Portland Arms in the city centre has an average customer rating and is cheap . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is an average - priced restaurant in the riverside area . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : no | near : All Bar One||An English restaurant , Green Man , is moderately priced in Riverside near All Bar One . They are not kid friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||The Cotto is a high - priced coffee shop located in the City centre near by The Portland Arms which has 3 stars , is high - priced , and serves sushi . \nname : The Plough | Type : pub | food : Indian | price : more than £ 30 | family friendly : yes | near : Café Rouge||Near Café Rouge , a pub called The Plough offers children friendly Indian food with a price range over £ 30 . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap , family friendly coffee shop with an average customer rating near Avalon in the Riverside area . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The coffee shop Fitzbillies is located riverside with an average customer rating . They serve cheap Indian food and are family friendly . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre area is a Fast food family - friendly restaurant named The Rice Boat with a low customer Rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a five star family friendly Italian coffee shop which is located next to Burger King . \nname : Midsummer House | food : Chinese | customer rating : 3 out of 5 | near : Café Rouge||There is a Chinese place near Café Rouge , Midsummer House , with customer rating 3 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue is a 5 - star sushi restaurant . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||There is a pub known as Zizzi that serves Indian food , and has a kid - friendly atmosphere with high customer ratings . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||The Mill is a pub that serves English food and with a cheap price range . They are located in the riverside area . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a fast food , kids - friendly riverside pub with moderate priced food . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French food restaurant located in the city centre , near the Express by Holiday Inn . It is not children friendly , highly priced and poorly rated . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Located near Burger King , The Eagle is a low priced coffee shop north of the city center . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||There is a mid - price ranged Indian food restaurant located in the riverside area near Yippee Noodle Bar . it is called Alimentum and has low customer ratings . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge is The Golden Curry- a Japanese food restaurant located in the Riverside area- has a customer rating 5 out of 5 and is not family - friendly . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : no||Cocum is not family - friendly and is rated average . \nname : Zizzi | Type : restaurant | price : moderate | area : city centre||Zizzi is a moderately priced restaurant in the city centre . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||There is a cheap Blue Spice located in the riverside . \nname : Cotto | food : Japanese | near : Café Rouge||You can find Japanese food at Cotto , which is near Café Rouge . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Close to The Portland Arms at riverside there is an outstanding coffee shop called Cotto . They serve medium price range French food . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The restaurant The Cricketers is near All Bar One serving English food . \nname : The Punter | food : English | price : £ 20 - 25||The Punter is an English restaurant that costs 20 to 25 pounds . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a one - star coffee shop located just outside the city centre . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||For a kids - friendly Fast food restaurant pop alone to Loch Fyne \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Near the Ranch is a 3 out of 5 rated venue serving Japanese food called Cotto , the establishment is kid friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an Indian restaurant in the city centre , near Express by Holiday Inn , The Rice Boat . It has a moderate price range , is not child friendly and has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sells Japanese food at high prices . It has a customer rating of 3 out of 5 and is children friendly . It can be found on the riverside near Express by Holiday Inn . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry serves fast food and is family - friendly . They are located near Café Rouge in city centre . They have a low customer rating . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a child friendly pub with a low customer rating , located near Ranch . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a restaurant specialising in Indian food for a moderate price , with a customer rating 3 out of 5 , near All Bar One . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||For a slap up , child friendly meal visit Blue Spice situated by the river . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||A coffee shop serving Japanese cuisine is kid friendly with a customer rating of 1 out of 5 . It is located near The Portland Arms and named The Cricketers . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a place to eat cheap Italian food . It 's located at the riverside and is very highly rated . \nname : Blue Spice | price : more than £ 30 | area : city centre||For a high - end meal , Blue Spice is in the city centre . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : no||Giraffe is a pub located in the city centre . It serves Indian food , but is not family friendly . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is cheap , family - friendly Fast Food restaurant located in the city centre . Customers have rated it as average . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||A Japanese restaurant called Loch Fyne is children - friendly . \nname : Strada | Type : pub | food : Fast food | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a fast food pub near Yippee Noodle Bar . It has customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Child friendly , The Olive Grove pub serves Japanese food on the riverside with a price range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There is a highly rated coffee ship that is not kid friendly near Burger King . It is called The Eagle in Riverside and has a price range over 30 pounds for Italian food \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||There is a Japanese coffee shop in the riverside area called The Golden Palace . It has a low customer rating , and costs more than £ 30 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Aromi is a poorly rated riverside coffee shop that serves Italian food . It is family friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : more than £ 30 | near : Café Brazil||An Italian pub near Café Brazil is The Cambridge Blue whose meals are more than 30 pounds . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : cheap | family friendly : yes||there 's a kids friendly Japanese food restaurant called Loch Fyne \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub near Café Adriatic and the price range is moderate . It is rated 3 out of 5 . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Alimentum serves French food . It is located by the river and is not family - friendly . The price range is less than £ 20 . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is less than £ 20 in riverside , near All Bar One . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne It is a restaurant that serves the best food \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a cheap coffee shop which also serves Indian food near Café Sicilia . It is a family friendly place given a 5 star rating by it 's customers . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||A restaurant called Loch Fyne is a non family - friendly restaurant serving English food . It is low priced . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||There is place The Twenty Two with moderate price range located near The Rice Boat in the riverside area . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two is an Italian restaurant located in the city centre . It is not family - friendly . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a kid friendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Located in the city centre , Fitzbillies is a Japanese coffee shop in the £ 20 - 25 price range . It is kid friendly with a three out of five customer rating . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||there is a mid priced pub offering appetizers called Wildwood \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms which also serves Indian food . It has received low ratings from customers and is not family - friendly . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||there is a Fast food restaurant near the All Bar One called The Cricketers \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults is a pub near Café Adriatic , you will experience an average customer rating for under £ 20 . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi is a family place that has great food . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||People who have visited The Phoenix rave about it , it is a highly rated sushi place . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located at the city center near the Express by Holiday Inn is a Indian food restaurant with an affordable price range . Customers rate this establishment 5 out of 5 . This family friendly place is called The Rice Boat . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||The family friendly pub Cocum has an average customer rating and a price range of less than £ 20 . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge 's Japanese food costs £ 20 - 25 and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : English | customer rating : 3 out of 5 | area : riverside||With a customer rating of 3 out of 5 , The Phoenix is located in riverside and serves English food . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies is located near The Six Bells and they serve Italian food with a moderate price range . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||A children friendly coffee shop called The Cricketers is near The Portland Arms . It provides French food and it has has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the cheap price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman serves Japanese food near the city center and is kid friendly . The price range is moderate and the customer rating is 1 out of 5 . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||There is a cheap restaurant Wildwood located in the centre of the city that provides take - away deliveries . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is an average price coffee shop in riverside Zizzi . The coffee shop has average customer ratings and they are family friendly . \nname : Bibimbap House | food : French | price : more than £ 30 | area : city centre | near : Clare Hall||Bibimbap House offers French food with expensive price near Clare Hall . \nname : Loch Fyne | food : Japanese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is an average rated Japanese restaurant located near The Rice Boat in the city centre . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub located near Café Rouge , which serves sushi at a low price range , and is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a five star coffee shop that serves high price sushi . It has a family friendly environment , and can be found outside of city center . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Café Rouge is a fast food restaurant near Midsummer House with an average rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly and cheap restaurant serving Japanese food on the riverside . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Indian food and is not children friendly with a high price range and a customer rating of 1 out of 5 . It is located in the city center near the Express by Holiday Inn . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a 5 out of 5 rated restaurant that is family friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman offers fast food . It is not child - friendly . Customer Rating 1 out of 5 is located in the city center . Prices are moderate \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||Located near The Portland Arms in riverside , The Punter is child friendly and has a price range of more the £ 30 . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Near to the Ranch is a pub called The Cricketers which is child friendly and has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : no||The Chinese restaurant The Golden Curry is not family friendly and has a low customer rating . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a moderately priced Italian restaurant that is kid friendly . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||With an average customer rating in the riverside area coming in with a cheap price range and serving fast food includes The Phoenix . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge is a moderately priced restaurant with a 1 out of 5 customer rating . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap , family friendly coffee shop with a 5 out of 5 rating . It is located along the riverside near Avalon . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||There is a pub with a 3 out of 5 rating near Café Adriatic . It called The Vaults . The prices are high . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Although the Cotto located near to Ranch has a low customer rating of 1 out of 5 it is has a great kids friendly atmosphere serving English Food . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Zizzi is an inexpensive restaurant located along the river . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is Japanese food that is more than £ 30 near Yippee Noodle Bar in the city centre and is rated 5 out of 5 . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Phoenix is an above average Japanese eatery located in the city centre \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low - priced restaurant near Rainbow Vegetarian Café that serves Italian dishes and has a 5 out of 5 customer rating . Strada is also family friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an affordable , five star , coffee shop located in City Centre that is accommodating for families . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||In the riverside area , there is a children - friendly , expensive Italian coffee shop named Fitzbillies , which has an average customer rating . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is rated 3 out of 5 , with a moderate price range , near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a five star restaurant for all the family with reasonable prices \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no||There is a coffee shop Cocum that provides French foods in less than £ 20 but it is not family - friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||An Indian food place with a moderate price range and bad customer ratings in the riverside area is The Rice Boat it is near the Express by Holiday Inn and is not kid friendly \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough pub is a pub for adults that offers Italian cuisine at low prices . It is located near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a cheap place to get coffee and Indian food , they are located near center city and has an average customer service rating . Fitzbillies is not family friendly . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||For Italian food , The Eagle has a customer rating of 5 out of 5 . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Paying more then £ 30 you can get Japanese at Fitzbillies . Its located near The Six Bells . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a cheap fast food establishment in the city centre named The Waterman . It has a customer rating of 5 out of 5 and is not child friendly . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a moderate priced eating establishment providing English food and is rated 1 out of 5 . It is located along the riverside area . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : city centre||The Eagle is located in the city centre . It 's in the less than £ 20 price range and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle , located near Burger King on the riverside , is a coffee shop that also serves Indian food . It is kids friendly and food is priced between £ 20 - 25 . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : city centre||The Golden Palace restaurant in city centre is average rating . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum has French fare , near the Yippee Noodle Bar about the center of the city , it has less that 20lb prices with low ratings . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is an expensive Japanese restaurant with a 5 - Star rating , but is not children friendly . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||Found near Café Sicilia by the river is a coffee shop named The Dumpling Tree . Suitable for children and averagely priced . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a moderate priced restaurant near The Bakers that provides Indian food , and yes , it is kids friendly \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Japanese food in the £ 20- £ 25 price range , highly rated and family - friendly , it is located in the city centre near Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Wildwood is a pub that serves sushi for 3 and has a low rating . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||In the city centre there is a family - friendly Fast food restaurant with prices below £ 20 . It is called The Waterman and its customer ratings are low . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||This pub here also known as Zizzi serves Chinese food averaging a three out of five rating . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that serves moderate priced Indian food in the city centre area . It is kid friendly . \nname : The Waterman | price : high | family friendly : yes||The Waterman is a children Friendly in the high Price range . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix , a Japanese restaurant in riverside , has a high customer rating and price range from £ 20 - 25 . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies , located near The Six Bells , offers cheap Italian food . \nname : The Rice Boat | food : Chinese | area : riverside||The Rice Boat is located in the riverside area . They serve Chinese food . \nname : The Punter | food : Chinese | price : cheap||There is a cheap Chinese restaurant , called The Punter . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum , in Riverside , is a high end , yet kid friendly , French eatery . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A children friendly French venue near the Rainbow Vegetarian Café called Strada has a 3 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Fast food . It is located near Café Sicilia . \nname : Cotto | food : Italian | customer rating : low | family friendly : yes | near : Ranch||Cotto is an Italian family friendly restaurant with a low customer rating near Ranch . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman offers fast food at a moderate price range . It is also kid friendly with a customer rating of 1 out of 5 . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle is located in the Riverside area and has a customer rating of 5 out of 5 . Expect to pay more than £ 30 price range \nname : The Phoenix | food : Chinese | customer rating : average | area : city centre||The Phoenix is in the city centre and serves average Chinese food \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne , a Japanese restaurant , has a kids friendly atmosphere . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Near Burger King in riverside is a coffee shop that serves fast food called The Eagle . The price range is more than £ 30 , they have a high customer rating and are not kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||French food at The Eagle coffee shop by the riverside near Burger King , is children friendly and the price range is more than £ 30 , although it has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap coffee shop located near the river . It has five stars . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a family friendly pub that serves fast food near The Portland Arms called The Dumpling Tree . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a five star fast food outlet . They offer meals at a reasonable amount money . You can also take your children to enjoy a meal with you . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Next to Express by Holiday Inn you will find the 3 out of 5 star eatery The Rice Boat . Offering low prices in a family friendly atmosphere . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serves traditional English food in riverside . It boasts a child friendly environment and has a high customer rating . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : yes||Even though customer ratings are low at The Rice Boat I love taking my family to eat their Fast food in the city centre . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a 5 - star English restaurant near All Bar One with average prices . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that is kid friendly . It is located in the city center area . They offer Japanese food at a moderate price . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||A cheap coffee shop by the name Cocum , that 's not a place to bring the family is rated 5 out of 5 serves French . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||A family friendly pub serving Chinese food is Zizzi . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells English food that is less than £ 20 , not family - friendly and has a customer rating that is low located in the city centre near Express by Holiday Inn \nname : The Cambridge Blue | Type : pub | food : Japanese | price : cheap | near : Café Brazil||The Cambridge Blue , a cheap Japanese pub , is located near Café Brazil . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Families are welcome at the one star , Fitzbillies coffee shop near the river . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults , near Café Adriatic , is an average rated pub that costs less than £ 20 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is an Italian coffee shop with a 3 out of 5 customer rating . It is located in riverside near Clare Hall \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a cheap restaurant called The Plough near The Bakers that provides a family friendly atmosphere . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : yes||Loch Fyne is a children friendly restaurant providing Chinese food and is in the high price range . \nname : Midsummer House | food : Japanese | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge , there is a Japanese place called The Midsummer House with a rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a non - family - friendly pub in the city centre that serves fast food less than L20 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge serves Fast food in a coffee shop rated 5 out of 5 stars . family - friendly and in the city centre area near Crowne Plaza Hotel \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||There is a children friendly fast food restaurant named Cotto near Ranch with a high customer rating . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Rainbow Vegetarian Café is near The Rice Boat that has a customer rating 3 out of 5 and is expensive . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||The cheap city centre restaurant , Travellers Rest Beefeater , is not family friendly . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a cheap , fast food , and family - Friendly restaurant with an average rating . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a cheap Italian restaurant by the riverside . It has a customer rating of 5 out of 5 . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a kid - friendly Italian restaurant located near the riverside . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family pub with Italian food at riverside . It charges less than £ 20 . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||For five - star reviewed food , try The Eagle in Cambridge . It is a licensed restaurant , so you can enjoy a drink , too . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||Located near Burger King in the city centre , The Eagle is a non kid friendly Italian coffee shop with a high price range and a customer rating of 1 out of 5 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a French eatery located in the city centre . They have high customer ratings and cost between £ 20 - 25 but are not child friendly . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : no||The Giraffe which is a pub located in the city center is not a family - friendly place to eat Italian food . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Rainbow Vegetarian Café called Strada sells French food that costs more than £ 30 and has a low rating and is not child friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Leave the kids at home , while you quickly feed your needs at The Eagle . This 1 out of 5 establishment is near Burger King in riverside and is also very expensive coffee . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto , a fast food coffee shop near The Portland Arms in City Centre , has low ratings but moderate pricing . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | near : Clare Hall||The city centre near Clare Hall provides Fast food , a coffee shop , and Clowns on an average day . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is a high priced Italian restaurant . It is child friendly with average customer ratings . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Chinese food It is located in the riverside . It is near Café Rouge . Its customer rating is 1 out of 5 . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is The Waterman . a child friendly place that serves Italian . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a moderate priced pub near Café Adriatic . The customer rating is 3 out of 5 . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||There is a highly rated French pub called Wildwood that has a price range of £ 20 - 25 . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||A cheap , family friendly venue is Clowns which is near Café Sicilia . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop that serves Indian food , high price range , customer service rating 1 out of 5 , in Riverside \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a cheaper venue that offers Japanese food and is family friendly , located near to The Bakers \nname : Alimentum | food : Indian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum serves expensive but average - rated Indian cuisine . It is located in the center of town , close to Yippee Noodle Bar . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly pub in the moderate price range . It had a customer rating of 3 out of 5 . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : no||Strada offers is a restaurant with a customer rating 3 out of 5 . It has a high price range . It has a bad children friendly atmosphere . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a family - friendly restaurant providing English food in the cheap price range . It is located in the city centre \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : no | near : All Bar One||The Green Man is an Indian venue in a moderate price range in the city centre near All Bar One . It is not kid friendly . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is an expensive , highly rated restaurant in the riverside area near Café Adriatic . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||for a place with a price range of less than twenty pounds , check out Browns Cambridge ; they have an average customer rating \nname : The Waterman | price : cheap | family friendly : yes||The Waterman is a cheap family , friendly restaurant . \nname : The Vaults | food : Indian | price : high | family friendly : yes||The Vaults provides Indian food in the high price range . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat in the riverside area has English food , is child - friendly , and has a high customer rating . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is an inexpensive coffee shop for adults only . It serves wine and cheese . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||The Golden Curry is a low rated English restaurant that is not family - friendly . \nname : The Waterman | Type : pub | food : French | customer rating : high | area : riverside||The Waterman is a riverside pub with high ratings that serves French food . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a cheaply priced , highly rated 5 out of 5 coffee shop located in the centre of the city near Avalon . It is not kid friendly . \nname : Alimentum | food : Japanese | price : high | area : riverside | family friendly : yes||Alimentum , a Japanese restaurant , is child friendly , riverside , and has a high price range . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a family friendly coffee shop that is expensive and sells sushi . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family oriented sushi restaurant located just near All Bar One . It is a middle price range restaurant . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a nice pub which serves Chinese food at a low price range of £ 20 - £ 25 . The pub is kid friendly and sis located near Café Rouge \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low cost , family friendly establishment serving alcohol . It is close to the Rainbow Vegetarian Café . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there is the 1 out of 5 English food establishment Strada , serving at a moderate price . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||There is an expensive Italian restaurant on the riverside called The Phoenix . The customers rate it as average . \nname : The Twenty Two | food : Indian | family friendly : no||The Twenty Two serving Indian food . Is not family - friendly . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is family friendly and offers classic English dishes , near the Crowne Plaza Hotel . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge a French restaurant in the more than £ 30 range has poor customer rating . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is cheap coffee shop named Zizzi in the price range of 20 Pound located in a riverside and good customer rating , Shop is family friendly \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , located near All Bar One , serves French food . Price range is inexpensive , but customer rating is low . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough pub is a friendly place for all the family to enjoy . The fast food cost no more than 20 pounds and is located near Café Rouge . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a Italian coffee shop that has a low customer rating and has a price range less than £ 20 . It is near The Portland Arms in the city centre . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Near The Six Bells is a French restaurant named Fitzbillies in the price range of more than £ 30 . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is located near Yippee Noodle Bar in the city centre . It is a moderately priced Chinese restaurant with a customer rating of 1 out of 5 . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||Near Ranch is a child friendly pub named The Cricketers that has a high customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop called The Punter , with moderate prices that serves kids friendly fast food . It is situated near Café Sicilia and its rating is 1 out of 5 . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||For five star Japanese food , why not try Strada , located near the Rainbow Vegetarian Café . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||Strada is a highly rated pub and is near Yippee Noodle Bar . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a top rated family friendly eatery . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has 1 out of 5 stars and has a moderate price range . They are near Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||The Wildwood is a mid ranged coffee shop with low customer ratings and is located near the Ranch . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kid - friendly pub with a moderate price range . Customers rate Cocum 1 out of 5 . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada , a one - star burger and fry restaurant located near the Rainbow Vegetarian Café , caters to families on a budget . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||With a customer rating of 5 out of 5 , The Golden Curry has Italian and is family friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | near : The Sorrento||A coffee shop called The Mill is located near The Sorrento in the city centre . The Mill serves Indian food for less than £ 20 . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside||The Mill is a riverside pub . It serves fast food , and has a price range of £ 20 to £ 25 . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge . It serves Italian food in children friendly atmosphere . The Plough pub offers food in high price range . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||The Wrestlers restaurant has received low ratings for their Japanese food . It is not a child - friendly restaurant , and cost more than £ 30 . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid friendly Japanese restaurant in riverside with a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : no||In City Centre is a pub that is not kid friendly called The Olive Grove that has a moderate price range . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a high customer rating with a price range of more than 30 pounds . It is in the riverside area near Café Adriatic . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||The Dumpling Tree is not a family - friendly pump that is serves Fast food . You can find it near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is near Burger King in the city centre . It 's a Japanese coffee shop with a price range of more than £ 30 . It has a customer rating of 5 out of 5 . And , yes , it is child friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is low . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe , bar , Indian food , riverside area , family friendly \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||There is a moderate priced Japanese restaurant in riverside named Alimentum . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||The Vaults serves French food , is not family - friendly , and has prices less than £ 20 . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers serves Chinese food with a price of over £ 30 . The Wrestlers has a high customer rating and is child friendly . \nname : The Golden Curry | food : French | customer rating : average | family friendly : no||With an average customer rating , The Golden Curry is a non family - friendly French restaurant . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||A pub type eatery called The Vaults is located near Café Adriatic . It has a price range of less than £ 20 with a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||For a less child friendly and more adult fast food experience try The Eagle coffee shop near the Burger King in the riverside area . It charges a bit more than the average coffee shop but is highly rated . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House , near All Bar One serves moderately priced English food and is rated 3 out of 5 stars . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge sells Indian food , and is kids friendly , , it is in riverside area near The Sorrento \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||On the riverside near The Rice Boat is the Japanese restaurant Loch Fyne with excellent customer service . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix has Italian food in riverside with a moderate price range and a customer rating of 3 out of 5 . \nname : Wildwood | Type : restaurant | family friendly : yes||The Wildwood restaurant is family friendly . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill is a French Pub in riverside costing more than £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge in the city centre is a family - friendly fast food establishment with an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a mid priced coffee shop . It is family friendly and can be found near the river . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is a cheap restaurant in the city centre offering Indian food in a family friendly atmosphere . It has average customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||If you 're looking for somewhere that isn 't family - friendly , riverside has Taste of Cambridge , a French coffee shop near the Crowne Plaza Hotel . \nname : Alimentum | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is an Indian food restaurant in the riverside area . Their price range is more than £ 30 and they are kid friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes||Cocum , an inexpensive and family friendly coffee shop , serves Indian cuisine . It has an average customer rating . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a moderately priced , non family - friendly fast food restaurant located near The Bakers . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Cocum is a pub with a average customer rating . It has a high price range and it 's children - friendly . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice is an affordable restaurant in Riverside . Prices range of food is less than £ 20 . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a pub that serves Japanese food . It is rated poorly and is located by Yippee Noodle Bar . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||In The Portland Arms there is a nice 3 stars coffee shop Cotto that provides low - priced food . It is located in the city centre . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Although not family friendly , the Green Man is cheap and located on the river . \nname : The Plough | Type : pub | food : Indian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||In the range of £ 20 - 25 , near Café Rouge , is The Plough , a kid - friendly pub offering Indian food . \nname : Green Man | Type : restaurant | area : city centre||The Green Man is a restaurant located in the centre of the city . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a low - priced venue that is family friendly . You can also get on The Rice Boat here . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Fast and cheap food for family Friendly located in Express by Holiday Inn . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge in the riverside area , near The Sorrento , serves Indian food and is children - friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Waterman is a fast food pub that is by the riverside with a 5 out of 5 customer rating . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A Fast food restaurant called Strada is located near the moderate Rainbow Vegetarian Café , is kid friendly , and has a rating of 1 out of 5 . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located in the center of the city there is a French restaurant named The Rice Boat near Express by Holiday Inn with a low price range and a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is children friendly high priced restaurant of Italian cuisine . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Serving British food is the family friendly but expensive Green Man . It can be found in the riverside area near All Bar One . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a high end yet child - friendly option near The Rice Boat in riverside , and comes highly rated . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough pub near Café Rouge offers a family friendly environment at a low cost . \nname : Blue Spice | food : French | price : more than £ 30 | area : city centre||Blue Spice is an expensive French restaurant in the city centre . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Family friendly Sushi restaurant The Waterman is near to the river , and serves mid price range food . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter close to Café Sicilia , A 3 star coffee shop that offers classic American cuisine at an affordable price for the whole family . \nname : The Cambridge Blue | Type : pub | food : Indian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub that provides Indian food at a price range of more than £ 30 . It is located near Café Brazil . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Serving cheap French food , The Waterman is adult only and has high customer ratings . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Located near The Sorrento in Riverside , Browns Cambridge serves French food and is children - friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Indian food that won 't break your budget : The Waterman . Located in the riverside area , The Waterman , is an inexpensive , family friendly dining experience . Customer rating : 5 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||Located riverside near Café Sicilia , The Dumpling Tree is a family friendly coffee shop with prices less than £ 20 . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers children friendly Fast food . It has an average customer rating and is located in riverside near Café Rouge . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is an Indian coffee shop in the moderate price range located near Ranch and has a 1 out of 5 rating . \nname : Bibimbap House | food : Indian | price : moderate | area : city centre | near : Clare Hall||For moderate prices , Bibimbap House proves Indian food located near Clare Hall in the city center . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||A place with Italian food that is also family friendly is Aromi . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Green Man is a Italian styled pub that in the riverside area near Café Rouge . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Located near The Six Bells , Fitzbillies serves inexpensive English food . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||There is Italian food at The Phoenix with a high customer rating and a cheap price range , they are in the City Centre . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults , higher price range menu but has a customer rating of 1 out of 5 , is a pub close to the Café Adriatic . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Strada Italian food place is near Rainbow Vegetarian Café . It is not kids Friendly and the price range is between 20 to 25 . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry near The Bakers serves English food for less than £ 20 , but it is not family - friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no||The Olive Grove is a Chinese food pub that is not children friendly . It 's price range is high and is located in the city centre . \nname : The Waterman | Type : pub | food : Italian | customer rating : 3 out of 5 | area : riverside||The Waterman has a rating of 3 out of 5 stars . It is located near the riverside and serves Italian food . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is family friendly serving Indian food in riverside close to The Sorrento . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop with price range less than 20 with Fast food located in the city centre near The Sorrento . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||The Taste of Cambridge Pub , located near The Sorrento in Cambridge , is not suitable for families with small children . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne is an adult restaurant located in Cambridge . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a riverfront , family - friendly sushi restaurant that is medium - priced . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Clowns pub is located riverside with a price range of over £ 30 , with a 5 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||In riverside there is a pub that serves Italian food called The Olive Grove which is very cheap and is child - friendly \nname : The Vaults | food : Indian | price : moderate | family friendly : yes||Indian food at moderate prices can be found at the kids friendly The Vaults . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||When you 're thirsty for coffee , think of the Cocum coffee shop when in town . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies family friendly coffee shop serves high priced Sushi meals . One star rating . Located in the riverside area . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Browns Cambridge is not cheap but is conveniently located \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a coffee shop in riverside near Café Brazil , it has high customer rating and a price range of £ 20 - 25 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||For Children Friendly French food , Browns Cambridge lies in the riverside near The Sorrento \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Blue Spice is a three star , family friendly establishment on the riverfront . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a popular eatery and is situated next to the Rainbow Vegetarian Café . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||There is an Italian restaurant Fitzbillies in the cheap price range located near The Six Bells . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||The Golden Curry offers an English venue . It has a high customer rating and is child friendly . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a low priced restaurant , located near the Yippee Noodle Bar . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : high||There 's an expensive Chinese restaurant called The Dumpling Tree . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two does child friendly Japanese food . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||Here is a English restaurant with a high rating called The Cambridge Blue . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly restaurant located in riverside , near The Rice Boat . Though the customer rating is average , a meal can be enjoyed for less than 20 pounds . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue is expensive fast food pub near Café Brazil . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an Indian coffee shop with a customer rating of 1 out of 5 . It is located in the city centre , has a high price range , and is child friendly . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix , in the center of the city , serves English food with a price range of more than L30 . The customer rating is high . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||There is a child friendly Japanese restaurant called Cotto which is near the Ranch . It has an average customer rating of 3 out of 5 \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge offers family - friendly Italian food . It is in city centre near The Sorrento . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a Japanese restaurant near The Rice Boat in the riverside area , which has a very low customer rating . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre||The Mill is a pub which serves English food for less than £ 20 in the city centre \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a French restaurant with a 1 - star rating , near Rainbow Vegetarian Café . its pricey and family friendly . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a family friendly Japanese pub . Giraffe is located in the riverside area . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : city centre||Boasting a 5 out of 5 customer rating , The Phoenix is a French restaurant located in the city centre . \nname : The Olive Grove | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||in riverside The Olive Grove is a pub that serves fast food between £ 20- £ 25 that is also kids friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers , an adult Italian coffee shop near The Portland Arms , is rated 5 out of 5 by customers . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a fast food restaurant in the riverside area . It is family friendly . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a breakfast venue offering traditional British fares at a hefty cost . It is near the Rainbow Vegetarian Café . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge is an expensive dine - in restaurant that has poor reviews . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||With an average customer Rating and a high price Range , The Vaults near Café Adriatic is a pub . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry Japanese restaurant has been given a top customer rating . It is located in the city centre close to Café Rouge . It is not suitable for families with children . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||In the city centre area near the Yippee Noodle Bar , is Alimentum . A place where they serve Chinese food in the price range of £ 20 - 25 and has a high customer rating . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies close to Rainbow Vegetarian Café have less price range than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , sited near Raja Indian Cuisine , Luton , is a family - friendly coffee shop serving Italian food at mid - range prices . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man is high - priced and child friendly , located next to the riverside . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : no||Giraffe is English pub in riverside area . Not family friendly . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is an Indian food restaurant that is kid friendly . It has been rated a 1 out 5 \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is a place with a price range less than £ 20 , located near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne is is a family friendly Japanese restaurant with reasonable prices . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : 5 out of 5||There is a cheap pub restaurant Wildwood that serves Chinese food . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man , near All Bar One in city centre , offers moderate - priced Italian food in a non kid friendly atmosphere . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kids friendly fast food place in Riverside . The price is £ 20 - 25 . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that serves French food . It has received high reviews , is family friendly , and is located in the city centre . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Located in Riverside , Alimentum is a child friendly and averagely priced Japanese restaurant . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Near Café Rouge is a restaurant called Wildwood which has an average customer rating . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||Moderately priced and kid friendly is The Punter in Riverside , near The Portland Arms . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||There is a family friendly restaurant that is high priced called Green Man nearby is a place called All Bar One . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A cheap , family friendly place to eat . Blue Spice can be found in riverside . It has an excellent customer rating of 5 out of 5 . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Near All Bar One in the city centre , Green Man serves Indian food in the low price range in an family - friendly environment . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||There is a three star , family friendly , high cost restaurant called The Wrestlers . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Clowns is a pub located in the city centre with an excellent customer rating . The price range is more than 30 GBP . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers Indian food that is located near Burger King in the riverside area . The price range is more than 30 euro 's and is kid friendly . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly Italian restaurant near Crowne Plaza Hotel . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a restaurant called The Rice Boat providing Indian food located in the riverside near Express by Holiday Inn with high customer rating and it 's price range is more than £ 30 and also it is children friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop and family restaurant that provides wine and spirits and picnic food items is inexpensive and close to Raja Indian Cuisine . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There is a child friendly coffee shop located in Riverside called Zizzi . It is on the higher end of the price scale however customers rate it highly . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : city centre||The Mill is a pub located in the centre of the city that sells Indian food at an affordable price . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree is a restaurant in the city centre that serves expensive English food . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Fast food near the Express by Holiday Inn area of city centre would be The Rice Boat . Not family - friendly . 5 out of 5 customer rating . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman offers English food . It has high customer ratings and prices . It is family - friendly \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , a Japanese restaurant near Yippee Noodle Bar in the city centre is rated a 5 out of 5 for its cheap prices . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub with English food near Café Brazil that serves food for less than 20 pounds \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies in the city centre is a fast food coffee shop with cheap prices . The customer rating is average and they are family - friendly . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a low priced restaurant that is great for families . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||In riverside , The Olive Grove pub is kid friendly and in the high price range . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix is a moderately priced Italian restaurant with a high customer rating in city centre . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace , a coffee shop which serves Indian food , has a moderate price range , a three out of five customer rating , and a convenient location in the city centre . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : no||With a price range of more than £ 30 and a low customer rating , Strada is not kid friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||The Browns Cambridge in the riverside area offers family friendly French cuisine close to The Sorrento \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge has Chinese food . It 's near The Sorrento on the riverside and it 's family friendly . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||Near The Portland Arms , there is a pub called The Dumpling Tree , that serves fast food and is not family - friendly . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is a moderately priced , kid friendly Fast food restaurant name The Rice Boat . It rates 3 out of 5 with customers and is in the riverside area . \nname : Loch Fyne | food : English | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||There is an above average customer rating restaurant Loch Fyne and they serve English food . They are in riverside near The Rice Boat . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||There is a pub named The Olive Grove who servers Japanese food , on the riverside . its price range is moderated and it is kids - friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Dumpling Tree is a fast food restaurant , with low prices . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Located near The Sorrento in riverside there is a family friendly Indian restaurant named Browns Cambridge . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||Located in riverside The Olive Grove is a cheep family friendly pub . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : yes||The Twenty Two is a family friendly Chinese restaurant located in city centre . \nname : Alimentum | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is serving English food near riverside that is kid friendly . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||A no children policy pub Aromi with a 1 star rating sat next to the river . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an Italian non - family - friendly restaurant located in the riverside near Café Rouge . It has low customer rating . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||Yes , there is a family friendly place name Cotto near Ranch that serves Japanese food , but has a customer rating of average . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : no||If you are looking for a mid level budget pub at the riverside you should try The Olive Grove \nname : The Cambridge Blue | Type : pub | food : French | price : cheap | near : Café Brazil||There is cheap pub near Café Brazil . It serves French food and is called The Cambridge Blue . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi serves pub food and has a low customer rating . It is located riverside and is child - friendly . \nname : The Punter | food : French | price : moderate||The Punter is a winery . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers has a moderate price range and a customer rating of 3 out of 5 . They service Italian food and are not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Customers have rated the family - friendly Fitzbillies coffee shop as low . The place is situated at the riverside . It serves Italian food in low prices . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Japanese pub , The Dumpling Tree is situated near The Portland Arms . It is kids friendly . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The high priced English pub by the riverside is called The Olive Grove . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that offers Italian food in the high price range , is children - friendly and has an average customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||Cheap and family - friendly , Cocum is a Japanese coffee shop that has been rated average by customers . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a English restaurant , which is not kid friendly , that is located near city centre and the price range is around £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop , in riverside , offers high priced fast food with a rating of 1 out of 5 . It is not child friendly . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||On the river near The Rice Boat , there is a one star restaurant called Loch Fyne . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an average priced and rated restaurant . They are family friendly and located near Express by Holiday Inn . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||sausage eggs and beans at the family friendly Strada up the road from the Rainbow Vegetarian Café . \nname : The Eagle | food : Japanese | customer rating : low||There is a one star sushi store called The Eagle . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns has a moderate price range , kids friendly and near Café Sicilia . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||Near The Rice Boat in the centre of the city is The Twenty Two . family - friendly with prices less than £ 20 , it has low customer ratings . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a Japanese pub , which is located near Yippee Noodle Bar . However , it has low customer rating . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House in the city centre , near Clare Hall , is fast food with a less than £ 20 price range . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||There is a restaurant located at the riverside area called Zizzi , where you can eat at moderate prices . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is providing English breakfast and it is friendly for family . It is located in the city centre near to Café Rouge . The customer rating is 3 out of 5 . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Next to the river you can find a nice family friendly fast food restaurant which name is The Waterman . The prices are mid - level . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : no | near : All Bar One||The Green Man , located in the city centre near All Bar One , offers fast food in moderate prices . It is not a children friendly place . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Located in riverside , The Twenty Two is kid friendly and serves Japanese food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace 's coffee shop is located north of the city center with a view of the river . Although the coffee shop 's sushi is very expensive , it 's barely worth the price . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||There is a coffee shop called Fitzbillies providing Indian food located in the riverside area with low customer rating and it 's price range is less than £ 20 and also it is family friendly . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada a low price Located near Rainbow Vegetarian Café serving Italian Food no family - friendly with average customer rating \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly place that serves fast food . It has a low customer rating and prices less than 20 pounds . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers provides moderately priced and rated Chinese food in a kids friendly atmosphere . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Clowns is a pub on riverside with moderate prices . Customers rate it 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies coffee shop that is Fast food and has a price range that is less than £ 20 in the city centre its family - friendly and low customer rating \nname : The Waterman | Type : pub | food : Japanese | customer rating : high | area : riverside||With a high customer rating The Waterman pub serves Japanese food and is in the riverside area . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a wine and cheese shop located outside of the City center . next to The Sorrento and is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||If you 're looking for inexpensive coffee close to the river , check out The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||Customers rated The Golden Palace highly for its Japanese food . It is a coffee shop located in the riverside , average prices 20 - 25 pounds per person . \nname : Aromi | Type : restaurant | food : Italian | area : city centre||Italian restaurant Aromi is located in Luton . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a place which serves Italian food located near Rainbow Vegetarian Café is not children friendly , but has a price range of more than 30 and a high customer rating \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a highly rated pub . Price range is £ 20 - 25 and kids are welcome . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||A family friendly restaurant that serves Italian food is Loch Fyne . \nname : The Punter | food : English | price : less than £ 20||The Punter offers a traditional British menu at affordable prices . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||A restaurant is called Giraffe has a high price range and found near The Six Bells . \nname : The Twenty Two | food : Italian | family friendly : yes||The Italian restaurant The Twenty Two is incredibly family friendly . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves Chinese food near the Crowne Plaza Hotel and is very kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kid friendly coffee shop around Riverside offering Indian food with low rating and high prices . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a highly rated coffee shop that serves fast food near Café Sicilia . For a moderate price , you can enjoy a meal with your entire family . \nname : The Cambridge Blue | Type : pub | food : Indian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is an Indian pub nearby Café Brazil with a price range of £ 20 - 25 . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : city centre||The Golden Palace restaurant is located in the City Centre \nname : The Cambridge Blue | Type : pub | food : English | price : more than £ 30 | near : Café Brazil||There is a pub called The Cambridge Blue near the Café Brazil that serves English food for £ 32 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop , Taste of Cambridge is fast food and kid friendly near Crown Plaza Hotel in the area of riverside . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A child friendly French restaurant called The Golden Curry , has a 5 out of 5 rating , and is located near Café Rouge in the riverside area . \nname : Strada | Type : pub | food : Chinese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub serving Chinese food near Yippee Noodle Bar and is rated 5 out of 5 . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : no||The Twenty Two serves Chinese food in the city centre area . It is not family friendly \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is a 1 out of 5 high priced pub . But what pub has a high rating right , we 're located near the Café Adriatic . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a children friendly restaurant by the riverside with a high price range and a 1 out of 5 rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : riverside||Rated 5 out of 5 , The Waterman is a pub with Indian food . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a high priced French Café with a customer rating 3 out of 5 and is located near Café Sicilia . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||There is a 3 out of 5 star rated coffee shop in the 20 - 25 £ price range named The Vaults , near Café Brazil and in the city centre . \nname : The Twenty Two | food : Indian | family friendly : yes||Offering Indian food , The Twenty Two restaurant is Kids Friendly \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop and is expensive price ranged . It is located close to Burger King . \nname : The Mill | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | near : The Sorrento||For fast food in a price range of £ 20 - 25 , try The Mill . It is a coffee shop near The Sorrento in the riverside area . \nname : The Punter | food : Chinese | price : more than £ 30||The Punter provides Chinese food in the more than £ 30 price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a child friendly coffee shop named Fitzbillies with a 5 out of 5 rating from its customers . You can have a Japanese meal riverside with prices of more than 30 pounds . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is Fast food and kid friendly . There prices are moderate . It is a pub located near Café Rouge . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant that is kids - Friendly . They are located in the city centre near the Express by Holiday Inn . The price range is £ 20 - 25 . They have a customer rating of 3 out of 5 . \nname : The Eagle | food : Indian | customer rating : 5 out of 5||The Eagle provides a 5 out of five rating on Indian food , but the rest of their food is sub par . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||There is an expensive restaurant called Travellers Rest Beefeater located near the river and Café Adriatic . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue , a fast food restaurant , has low customer ratings . \nname : Browns Cambridge | food : Indian | price : less than £ 20 | customer rating : low||For less than 20 pounds we can go to Browns Cambridge . They serve Indian food but the customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Indian coffee shop that does not serve families . It is rated 5 out of 5 and is located near the Crowne Plaza Hotel in Riverside . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers an Italian menu in a family - friendly riverside setting near Café Rouge . It received an average rating from customers . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||A great and affordable all - American eatery would be Alimentum . It is located in City Centre next to Yippee Noodle Bar . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||At the riverside there is a Japanese pub where the price range is between £ 20 and £ 25 . It is called The Mill . \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||Cocum is a family friendly pub with an average customer rating and is a cheap place to dine . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is located along the riverside and serves high - priced wine and hors d 'oeuvres in a three - star , family friendly environment . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||With a high price Range , The Mill is a Fast food pub by the riverside . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : no | near : All Bar One||The moderately priced Italian restaurant The Green Man is not child friendly and is located in the city centre near All Bar One \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is located near City centre , they are family friendly and expensive . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||Near Ranch the coffee shop , is a normal priced Japanese restaurant called Wildwood with high customer ratings . \nname : The Vaults | food : Indian | price : more than £ 30 | family friendly : yes||There is a more than £ 30 price range Indian restaurant , called The Vaults which is children friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop in the city centre area near Burger King . They serve Indian food at a moderate price range with a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a children friendly Indian coffee shop called The Cricketers , ratings of 1 out of 5 . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : yes||Alimentum provides Chinese food in the high price range . It is located in the city centre . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a restaurant that serves Chinese food , its has moderate price and ratings a 3 out of 5. its located on the riverside . it is no t recommended to bring your children \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low - price , low quality coffee shop located near the river . Families are not welcome . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a cheap , family friendly pub near the river . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is family - friendly Chinese restaurant located near the Rainbow Vegetarian Café . The pricing is cheap and the customer rating is average . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub that serves Japanese food . It 's not family - friendly but has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is not family - friendly . They have customer rating of 5 out of 5 . It is a coffee shop that serves French food . They are located neat The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||Located by the Burger King , The Eagle coffee Shop offers low priced Indian Food . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is a Fast food coffee shop in the riverside area near Clare Hall with an average rating . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove features a low cost and family friendly environment . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside near the Crowne Plaza Hotel , there is a venue called Taste of Cambridge . It is a French coffee shop that is family friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||the Clowns coffee shop near Clare Hall is also a restaurant \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||Italian Adult only coffee shop The Eagle is located near Burger King in city centre . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||A restaurant named Taste of Cambridge has a high price range and an average customer rating . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre near Express by Holiday Inn , moderately rated and not kid friendly , The Rice Boat , serves moderately priced fast food . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix provides Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Japanese food in the centre of the city is hard to find . Alimentum is just what you 're looking for . The ratings are low and the price range is more than 30 . It located near Yippee Noodle Bar . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is the restaurant that sells Chinese food with a customer rating of 5 out of 5 . The area is city centre and it is not family friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Bring all the family for a coffee at Zizzis . Not too cheap , not too expensive . 3 star rating \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman provides Chinese food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Located near the Ranch , Wildwood coffee shop serves Italian food at higher prices than average , but lower ratings . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||If you 're looking for a kid friendly pub with an average customer rating , try The Cricketers , located near Ranch . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman , in the city centre , is not kid friendly , but it has a high customer rating . It offers Italian food at the £ 20 - 25 price range . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a good , pricey English restaurant located in the city centre . It is child friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly one star Japanese restaurant near the Café Rouge in the riverside area . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop near Burger King by Riverside area that provides French food . its price is more than £ 30 with a low customer rating and is children friendly \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||In Riverside , near The Sorrento is a cheap , Italian coffee shop called The Mill . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||At the riverside near Raja Indian Cuisine is The Wrestlers coffee shop that has Fast food less than £ 20 and is not family - friendly . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children friendly place located near The Rice Boat that has high price Range and good customer rating . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Near Browns Cambridge is The Sorrento a kids friendly English food restaurant . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a restaurant providing take - away deliveries in the low price range . It is located in near Burger King . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly fast food restaurant with a price range of less than £ 20 and has a low customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Cocum is an expensive family friendly coffee shop . It is a five star establishment . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is a restaurant set by the riverside offering French cuisine . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family - friendly restaurant located near Rainbow Vegetarian Café . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies has a £ 20 - 25 price range and is located near Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a very affordable family - friendly coffee shop near Café Sicilia that has a low rating . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop serving French cuisine for a budget price . It is located in the city centre near to The Burger King \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the city centre , the Browns Cambridge is an average , family - friendly Japanese coffee shop . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves Japanese food . it has a low customer rating and is located in riverside near Clare Hall . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is coffee shop serving Indian food . The customer rating of the establishment located in the city centre is 5 out of 5 however it is not family friendly . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||A one star , low priced restaurant , Strada , is located near the Rainbow Vegetarian Café . This restaurant is ideal for adults . Families with children are not permitted . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies has a price range £ 20 - 25 , near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The Loch Fyne restaurant is suitable for families with children . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : no | near : The Portland Arms||A Fast food coffee shop called The Cricketers is located near The Portland Arms that disallows minors and has a 3 star rating . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies has a less than £ 20 price range and is near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||£ 20 - 25 kid friendly fast food can be found at Loch Fyne restaurant \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly but low - rated coffee shop that serves Indian food near the riverside . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi children friendly Japanese pub low rating \nname : Zizzi | Type : pub | food : Japanese | customer rating : high | family friendly : yes||Zizzi is a highly rated Japanese pub . It is kids friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a children - friendly Fast food restaurant with a high customer rating . It is located in Riverside , near the Burger King . The price range is more than £ 30 . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada has an average customer rating and is offering highly priced English food in a family friendly environment close to the Rainbow Vegetarian Café \nname : The Phoenix | food : Chinese | customer rating : 3 out of 5 | area : riverside||On the riverside , The Phoenix is a Chinese restaurant with a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Cocum is a moderately priced Indian coffee shop that is family friendly and has a 3 of 5 customer rating . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is an Italian riverside restaurant that is friendly with kids . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the moderate price range . The customer rating is 3 out of 5 located in the city centre and is kid friendly . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne restaurant , British food , no kids . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||Cotto , near Ranch , high customer rating and kid friendly , serving English food . \nname : Blue Spice | food : Italian | price : moderate | area : city centre||Blue Spice located in city centre serves Italian food . It has moderate price ranges . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : yes||Serving English food in the centre of the city , The Rice Boat is family - friendly with and average consumer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||A kids friendly pub in the riverside area with a moderate price range is The Olive Grove which serves Italian food . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||There is a restaurant , price range averaging less than 20 pounds , located by the riverside . It is named Alimentum , and is family friendly . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly pub in Riverside with a low customer rating . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||The Cambridge Blue is a pub serving French food near Café Brazil . Price range is moderate . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located near The Crowne Plaza Hotel , Riverside , which serves Italian food , and is child friendly . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood is a moderately priced restaurant offering pub style fast food . Customers have given it a rating of 3 out of 5 . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||With a customer rating of 1 out of 5 , The Phoenix serves high price range Italian food in the riverside . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant in the riverside area near the Yippee Noodle Bar . price range is moderate with a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||There is a coffee shop that serves Italian food located near Burger King in the city centre area called The Eagle . While it is children friendly it ranges in price for more than £ 30 and high customer ratings . \nname : Wildwood | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a low - rated coffee shop near Ranch . You can find Indian food in a price range of less than £ 20 . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : city centre||Blue Spice serves Italian food that is priced low in the city center . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a five star coffee shop located near Clare Hall \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Cotto is a children - friendly Italian restaurant located near Ranch . The customer rating is average . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||The Vaults has Italian food at a price range of less than 20 Euros . It is also family friendly . \nname : Green Man | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is located by the riverside , near All Bar One , and serves Italian food for prices greater than £ 30 . It is children friendly . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Blue Spice in riverside has an average customer rating . its priced less than £ 20 , and is family friendly . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||Giraffe It is a pub , located in the city center . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : city centre||The Waterman is an Indian Pub in the city centre area with an average customer rating . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man serves Japanese food in the riverside area near to All Bar One . Prices are low and it is family friendly . \nname : The Punter | food : English | price : cheap||For low priced English food there is The Punter . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||In the city centre near The Portland Arms , there is a high rated coffee shop that serves Indian food called Cotto . Its price range is more than £ 30 . \nname : Midsummer House | food : Indian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a restaurant near All Bar One with high customer rating and provides Indian food in the high price range . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : no | near : Café Rouge||A really inexpensive pub near Café Rouge is The Plough . It isn 't family - friendly but it is cheap . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub which serves Indian food . It has a customer rating of 5 out of 5 and is located by the riverside . \nname : The Cambridge Blue | Type : pub | food : Indian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is an average priced Indian pub nearby Café Brazil . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , there is an establishment that serves Italian food . It is child friendly and is called The Waterman . \nname : Wildwood | Type : pub | food : Chinese | price : £ 20 - 25 | customer rating : high||Wildwood is a Chinese pub with a price range from twenty to twenty - five dollars . Customers rate it high . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is a fast food place that is rated at a 4.5 out of 5 as well as being children friendly , it 's named Cotto and it 's near the Ranch . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : no||The Rice Boat by the riverside is not family - friendly but has an average rating and serves Japanese food . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located by the riverside near the Express by Holiday Inn . Their price range is moderate but has a customer rating of 1 out of 5 and they are child friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto , a coffee shop in the Riverside area near The Portland Arms , is priced under £ 20 , and has a low customer rating . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub that serves Indian food for less than £ 20 in the Riverside area . It is not family friendly . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a moderately priced Café near Café Adriatic by riverside . Customer rating 3 out of 5 . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant providing average customer ratings , It is located on the riverside near The Rice Boat . \nname : The Vaults | food : Chinese | price : high | family friendly : no||There is a Chinese called The Vaults which is only suitable for adults and is in the higher prince range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children - friendly coffee shop , it is located near Burger King in the city centre that also serves Japanese food with a price range for more than £ 30 with a rating of 5 out of 5 . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : no||Alimentum serves Japanese food at an average price in the city centre . It is not child friendly . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a cheap family friendly sushi restaurant \nname : Blue Spice | food : French | price : moderate | area : city centre||There is a French restaurant Blue Spice in city centre with moderate prices . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||The Waterman public house is in the city centre and has been rated 5 out of 5 by its customers . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||Adjacent to Glisson Road is The Golden Curry , a cheap eatery that offers quickly prepared pasta and curry dishes . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : high | family friendly : yes | near : The Portland Arms||Drop by The Cricketers to enjoy some high quality Japanese cuisine . Located near The Portland Arms , it has a laid back coffee shop feel , and is family friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is family friendly place that serves low rated cheap Japanese food . It is located in riverside area near Express by Holiday Inn . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant close to the Rainbow Vegetarian Café that provides fast foods for a cheap price . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman provides fast food in the city centre area . It has a high price range and an average customer rating . It is not children friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||A poor coffee shop serving fast food in riverside is ' Clowns ' , near ' Clare Hall ' . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||Rated 1 out of 5 , The Phoenix is moderately priced and serves fast food in the city centre . \nname : Blue Spice | food : Italian | price : £ 20 - 25 | area : riverside||Blue Spice is located in the riverside area . It offers Italian food in the price range of 20 - 25 English sterling . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a sushi food pub for dinner , it 's close to Café Brazil and is a mid - price place . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||While being Affordable , The Rice Boat is a family friendly Indian restaurant with low customer ratings . It will be found near the Express by Holiday Inn on the riverside . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman Chinese food is priced in the moderate range , has a poor customer rating of 1 out of 5 , located in the riverside , and it is kid friendly . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a Fast food place The Wrestlers that is children friendly with a customer rating of 1 out of 5 \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a Japanese coffee shop that has excellent customer ratings . It is located in riverside and is not friendly to families . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry provides Indian food Its customer rating is 1 out of 5 . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies is a high priced English restaurant near The Six Bells . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||Near The Sorrento in the riverside area , you will find The Mill , a Japanese coffee shop with price ranges greater than £ 30 . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers , an establishment serving Indian food that is moderately priced , and received a 1 out of 5 customer rating , however , be advised that it is not kids friendly . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi is a family friendly pub that provides a variety of wines and cheese . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||You can find the restaurant Strada next to Rainbow Vegetarian Café . This restaurant serves Japanese food and has a price range of more than £ 30 . Strada gets a 5 out of 5 rating from its customers and is child friendly . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||1 star customer rated pub , The Cricketers , is located near Ranch and is family friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop . It offers Italian food and has moderate pricing . The customer rating is 1 out of 5 and it is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||In the city centre is a child friendly coffee shop named Fitzbillies . It serves mid priced Japanese food that is rated 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , a French , affordable coffee shop in the city centre near Burger King . It is family - friendly with excellent customer service . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced , family friendly British cuisine restaurant , located outside of the city centre , near Express by Holiday Inn . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto is a Italian coffee shop in the riverside area near The Portland Arms . It has a price range more than £ 30 and the customer rating is high . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian food at cheap prices . They are customer rated 5 out of 5 . This family friendly place is conveniently located at the city center near Express by Holiday Inn . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly , The Wrestlers coffee shop which is on the pricey side , located near the river and Raja Indian Cuisine . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : average||Browns Cambridge offers cheap Indian food with an average customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : more than £ 30||There is an Italian restaurant called The Dumpling Tree that costs more than 30 Euros . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 1 out of 5||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop providing Indian food in the less than £ 20 price range . Its customer rating is low . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Located near Clare Hall , Bibimbap House is expensive and serves English Breakfasts \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||If you are looking for a children friendly coffee shop or Japanese food place , then try The Cricketers . It is located near to The Portland Arms and has a low customer rating . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : city centre||In the city centre , there is a high priced Japanese food restaurant called Blue Spice . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop that is children friendly in riverside . The name is Browns Cambridge . Their customer rating is high and they serve Italian food . They are near the Crowne Plaza Hotel . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a cheap Indian restaurant located at the riverside . It 's family friendly and rated 5 out of 5 . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||If you are looking for a children Friendly , Fast food restaurant in the riverside area . Try The Waterman , it has a high customer Rating and is in the more than £ 30 price Range . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||For some 5 star eating try Strada , family friendly and located near Rainbow Vegetarian Café . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two serves Chinese foods and is kid friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Near Avalon at the riverside is a coffee shop called Blue Spice . It is children friendly and the price range is more than £ 30 . It is rated 5 out of 5 . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is our new family friendly coffee shop . Located near The Bakers with an average customer rating and prices less than 20 , this is sure to be a favorite . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||The Cambridge Blue is a restaurant providing Japanese food in the High price range . It is located in the city south . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman in the city centre serves French food with 5 out of 5 and is child friendly and is more than £ 30 \nname : The Vaults | Type : restaurant | food : French||The Vaults is a French food style restaurant . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kids friendly Chinese restaurant in the riverside area near The Sorrento . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||There is a moderately priced , kid friendly , English restaurant named Alimentum in riverside . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a French , affordable cuisine that is adult friendly , near All Bar One . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located near the riverside is The Golden Curry . A kid - friendly restaurant with a customer rating of 3 out of 5 . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||A Fast food pub near Yippee Noodle Bar is Strada . It has a customer rating of 1 out of 5 . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||The Eagle has a high customer rating with a price range of more than 30 , located near riverside . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a moderate price restaurant , near The Six Bells . \nname : The Plough | Type : pub | food : Indian | price : cheap | family friendly : yes | near : Café Rouge||The Plough , a pub , serves Indian food at cheap prices in a family friendly place near Café Rouge . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is a nice pub that serves Italian food \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is a Chinese restaurant located near Café Rouge . It is called The Golden Curry and is child friendly . It gets average ratings . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Located near The Bakers , The Giraffe coffee shop offers dining for more than £ 30 and is rated 5 out of 5 by customers . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop with Indian food . It is near Burger King in riverside . \nname : Browns Cambridge | food : Indian | price : £ 20 - 25 | customer rating : high||Indian restaurant , Browns Cambridge , serves meals from £ 20 - 25 . Their customer rating is high . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers has Chinese food in the price range of over 30 with a high customer rating and is not children friendly . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a cheap restaurant called Alimentum , near the riverside and the Yippee Noodle Bar . It 's average and serves English food . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||Located in the riverside area near Café Sicilia The Dumpling Tree is a family friendly coffee shop with moderate prices \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House sell good sushi at an affordable price , it is located near All Bar One . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults in located near Café Adriatic and is an average rated moderate priced pub fare restaurant . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix , a Chinese restaurant in riverside has a high customer rating . They have prices higher than 30 pounds . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat provides Chinese food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix got drinks and ordered . Good was prompt and delicious \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The family friendly Japanese riverside restaurant called The Waterman is average and less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Located in the outskirts of the city centre , Fitzbillies is a family - friendly coffee shop . Fitzbillies has a high - cost and is rated at five out of five stars . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two is a kid friendly Chinese restaurant in riverside . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||There is a restaurant , Taste of Cambridge that is high rice range with customer rating of 1 out of 5 . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||Strada is a pub serving English food and is near Yippee Noodle Bar and there customer rating is average \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||At the riverside location of The Waterman , the kids are not friendly , the price range is moderate , and the customer rating is 1 out of 5 . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House offers a night of wine and great food . 3 star rating . Located near the All Bar One . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a restaurant that is fast food and kids friendly . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is a restaurant that serves Italian food by the riverside . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults , near Café Brazil in riverside , is an expensive coffee shop with high customer ratings . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Cocum coffee shop is a great place for the family with excellent value for money . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a coffee shop serving Japanese food near Ranch with a high price range and a low customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge located in the riverside area near The Sorrento , serves Italian food and is not family - friendly . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||The Mill is an affordable coffee shop with fine eatery located in City Centre near The Sorrento . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge serves English food in the average price range . Customers highly rate it . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||There is a high end restaurant in riverside area called The Waterman . It is a kid friendly restaurant serving English food . Customer rating is average . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : no | near : All Bar One||A high price range restaurant Green Man serves Indian food in the riverside area . The restaurant is near All Bar One and is not child friendly . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||At the edge of the city close to the All Bar One restaurant is a cheap sushi restaurant called Green Man \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves wine and cheese , at a high price . It can be found near The Portland Arms , and has a rating of five stars . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a coffee shop style restaurant , which is kid friendly , and has a customer rating of 3 out of 5 . The price range is on the high side and located near city centre . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||Near the riverside area there is a children - friendly Italian restaurant named The Twenty Two . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near the Express by Holiday Inn in the riverside are , serves English food , is family friendly but has a high price range and a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a moderate - priced Japanese pub located near Café Brazil . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Located near Yippee Noodle Bar in the city centre , Alimentum is a moderately priced French restaurant with a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a non - kids friendly coffee shop with a customer rating of 1 out of 5 . It is located on the riverside near Avalon . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a one star , low - priced , family friendly sushi restaurant near Rainbow Vegetarian Café \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is a cheap riverside bar . It 's not family friendly . Near All Bar One . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a mid ranged Japanese eatery which is not family friendly and has low customer ratings . It is located near the Rainbow Vegetarian Café . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a five star moderately priced family friendly restaurant that serves wine and cheese . \nname : Midsummer House | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is near All Bar One . It has a customer rating of 1 out of 5 . It is a Japanese restaurant that has a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Japanese in the less than 20 pound price range . It is located riverside people rating average family friendly yes \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge is a Japanese , family friendly place called The Golden Curry . It is riverside and has high customer ratings . \nname : Loch Fyne | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne is a Fast food place with a customer rating of 3 out of 5 . It is located in the riverside area near to The Rice Boat . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||A French coffee shop by the river is called Clowns . It is well liked and close to Clare Hall . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||The Giraffe is a pub located in Riverside . They are kid - friendly and they serve fast food . \nname : The Phoenix | food : English | customer rating : average | area : riverside||English cuisine is served at The Phoenix in riverside . The have an average customer rating . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : no||The Golden Curry is an Italian eatery with an average customer and are not family - friendly . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : city centre||Japanese Pub The Mill serves great dishes for less than £ 20 \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||The Dumpling Tree is a Japanese restaurant with is priced at £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Located in the riverside area is a coffee shop serving French food . It is called The Golden Palace , it rates 3 out of 5 and is in the £ 20 - 25 price range . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is very close of Café Rouge , brings you English food and is located in the riverside \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman in the city centre serves Fast food and has a price range of more than £ 30 . It is children - friendly and has a high customer rating . \nname : Blue Spice | food : Indian | price : cheap | area : riverside||Blue Spice is a cheaply priced restaurant that serves Indian food . It is located by the riverside . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a 5 - star , low - cost , British restaurant near the river . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : city centre||An Indian food restaurant near the city centre is The Waterman . It is a pub with a low customer rating . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat provides family friendly Fast food at the riverside . This venue has been rated average by customers . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers provides Indian food in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a family - friendly English restaurant near the Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||Highly priced Italian coffee Shop , The Punter , sits near Café Sicilia . Not considered child friendly , it receives an average customer rating . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a restaurant near the Express by Holiday Inn , it is called The Rice Boat and is family - friendly . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant serving child friendly fast food in the high price range and is near The Bakers . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||A cheap restaurant , The Rice Boat , located near Rainbow Vegetarian Café , has a high customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Try Loch Fyne Italian restaurant and bring the kids . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a highly rated , adult friendly coffee shop near The Portland Arms that serves Indian food . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||The Phoenix in the riverside area offers cheap , average English food . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a cheap , family friendly , fast food and coffee shop with low customer ratings . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a moderately priced Italian restaurant in the city centre , near to All Bar One . It is kid friendly . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : no | near : The Portland Arms||The Dumpling Tree is an Indian pub near The Portland Arms that is nor family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||There is a cheap Italian restaurant . It is named The Dumpling Tree . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a Chinese food restaurant . It has a three out of five customer rating and is kid friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a high priced coffee shop located on the outskirts of the city . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Chinese with a customer rating of 1 out of 5 in riverside and is children friendly . \nname : Green Man | Type : pub | food : Indian | area : city centre | near : Café Rouge||A pub by the name of Green Man is located in the city centre near Café Rouge and provides Indian food to guests . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One is a highly priced fast food restaurant , named Midsummer House , that has a customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a riverside coffee shop serving Indian food . It is near the Crowne Plaza Hotel . It is family friendly but has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||If you are looking for a high quality , family - friendly dining experience in the heart of city centre , The Eagle is for you . This coffee shop i near Burger King and serves fast - food like it 's gourmet . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||There is a children friendly Italian restaurant , The Twenty Two , by the riverside . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||Near Café Sicilia , there is a pub named The Twenty Two . It has a rating of 3 out of 5 , and it 's located on the riverside . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||In the city centre , The Waterman serves Indian food in the high price range and has an average rating . Prices are high and it is not child - friendly . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In the city centre is a family - friendly restaurant The Rice Boat . They serve Italian food with a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a high - priced coffee shop serving Indian food in the riverside area near The Portland Arms . They received a customer rating of 1 out of 5 . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Riverside views and affordable Japanese dishes are served at Alimentum . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high - priced coffee shop that serves wines and cheeses . It is family friendly and is located in the City centre and is near by Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies , a Japanese coffee shop , is moderately priced in the city centre with a rating 1 out of 5 . It is not kid friendly . \nname : The Golden Palace | Type : pub | price : moderate | area : city centre | near : Rainbow Vegetarian Café||There is a moderate price ranged pub located near Rainbow Vegetarian Café in the city centre called The Golden Palace . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice prices range from 20 - 25 pounds and is located in Riverside . They have 3 of 5 stars and are not considered kid friendly . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly pub in the city centre with an average customer rating . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||There is a low rated , non family - friendly French food restaurant called The Golden Curry . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||There is a lowly rated place that serves English food for less than £ 20 . It is called Browns Cambridge . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto a Chinese restaurant near Ranch has a rating of 1 out of 5 and is child friendly \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||A kids friendly 3 out of 5 Chinese restaurant is The Golden Curry . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||A child - friendly pub called The Olive Grove can be found in the riverside area . This pub is slightly more expensive than average . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||Travellers Rest Beefeater is a restaurant that is not family - friendly but has a price of less than 20 pounds . \nname : Cotto | price : more than £ 30 | area : city centre | near : All Bar One||Cotto is located at the city centre , near All Bar One . The price range is more than £ 30 . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a pub in the average price range . It can be found in the riverside area near Rainbow Vegetarian Café . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers Indian food , with a Rating of 5 out of 5 located in the riverside area . It is family Friendly , located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||In the city centre close to Burger King is a French coffee shop called The Eagle , it is family - friendly with a low rating and prices at approximately under £ 20 per person \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : yes||Giraffe is a family - friendly Italian pub in city centre . \nname : Bibimbap House | food : English | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House offers English food in a price range of £ 20 - 25 on the riverside near Clare Hall \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is by the Burger King in the riverside area . It is a child friendly , coffee shop , that has food ; the price is a bit high but they have a 3 out of 5 rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a five star coffee shop Cocum that is reasonably priced and child friendly . \nname : Wildwood | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop serving Indian food with a price range less than £ 20 . Located near Ranch , the customer rating is low . \nname : Midsummer House | food : Indian | customer rating : low | near : Café Rouge||Midsummer House is a venue located near Café Rouge that serves Indian food . It has a low customer rating . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : yes||Alimentum in city centre , is a family - friendly Italian restaurant at a high price . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||For Italian food over £ 30 and a great customer experience , The Rice Boat is a family friendly place situated near the Express by Holiday Inn in riverside . \nname : The Vaults | food : English | price : more than £ 30 | family friendly : yes||IF you want English food but don 't mind £ 30 or more The Vaults is good for you . It 's children friendly and offer good food . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is an Italian pub with high priced food in riverside \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a 5 star restaurant located near Café Rouge . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop , located near The Portland Arms , offers Indian cuisine and a children friendly atmosphere . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||There is a nice casual low price establishment offering Japanese cuisine located near The Portland Arms . Look no further than Cotto a nice coffee shop with an average price range of £ 20 - 25 . Customers have given it a 3 out of 5 rating . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant with a 1 out of 5 customer rating , and a high price range . It is located riverside by Yippee Noodle Bar and is a fast food restaurant . \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Located near All Bar One in the city centre , Green Man is a child friendly Japanese restaurant with prices ranging more than £ 30 . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is kid friendly and moderately priced . Indian food is served near Riverside . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater near Café Adriatic in the riverside area is pretty good and not expensive . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough is a restaurant near Express by Holiday Inn . It is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a French coffee shop located in the riverside area near Crowne Plaza Hotel , has a customer rating of 3 out of 5 and is child friendly . \nname : The Plough | Type : pub | food : Fast food | price : more than £ 30 | family friendly : yes | near : Café Rouge||There is a high priced kid friendly fast food pub called The Plough . It is near Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves French food . It is located on the riverside near Crowne Plaza Hotel . It is family friendly and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a riverside coffee shop , near the Crowne Plaza Hotel . It serves Italian food , is highly rated and child friendly . \nname : The Punter | food : Indian | price : cheap||The Punter is an Indian restaurant with cheap prices . \nname : Bibimbap House | food : Indian | area : riverside | near : The Rice Boat||Bibimbap House , an Indian restaurant , can be found in Riverside near The Rice Boat . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : no||Alimentum serves Italian food and is in the centre of the city . It is not children friendly , and expensive . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is a pub along riverside that has a price range of more than £ 30 and is not kid - friendly . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Around the corner from All Bar One you will discover Cotto , a quaint riverside restaurant . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||The child friendly coffee shop named The Dumpling Tree is located near Café Sicilia and costs more than £ 30 . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves Indian food located near riverside . It is a family friendly establishment with a moderate price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a Japanese coffee shop near Burger King , The Eagle in Riverside . Their customer rating is 5 out of 5 with the price range more than £ 30 . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Blue Spice is located in the center of the city is children friendly with a price range of more than 30 euros with a low customer rating . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is near The Bakers and is a coffee shop . It is not children friendly . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : city centre||In the city centre is The Eagle , it 's cheap and is 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub , located at riverside , that serves Indian food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an Indian coffee shop in the high price range with a 1 out of 5 customer rating in Riverside and it is child friendly . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located by the Café Rouge that provides Japanese food . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that offers Indian food . It receives a 3 of 5 star rating . It is a kid friendly environment in the Riverside area near the Crowne Plaza Hotel . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Outside the city centre is the family friendly coffee shop Aromi . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||Serving Fast food is The Waterman pub . Located in the riverside area with a high customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the Riverside area , The Wrestlers is a high priced children friendly coffee shop serving Italian food . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap , family friendly Indian food restaurant in the riverside area . It has received a customer rating of average . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||Italian food pub Strada is located near Yippee Noodle Bar . It has a high customer rating . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Pricey yet lowly rated , the Travellers Rest Beefeater is located near Café Adriatic in the riverside district . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||If you seek a family friendly pub with beautiful Japanese food and a high customer rating then come to Zizzi . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman pub , found in the riverside area , has a low rating , despite serving French - style foods . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : no||The Olive Grove is a non - child friendly , high priced pub that serves Indian food in the riverside area . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Kid - friendly Indian places near Rainbow Vegetarian Café are hard to find so check out Strada which is reasonably priced and has decent customer reviews . \nname : Blue Spice | food : Indian | price : moderate | area : riverside||Blue Spice , in the riverside area , offers moderately priced Indian food . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers Indian food in the riverside area near Burger King . It has a very low customer rating , in the moderate price range and is family friendly . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Strada is kid friendly and has a moderate price range as well as a 3 out of 5 customer rating . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Try the Strada for a child friendly restaurant . It 's a little high but with a 3 out of 5 customer rating . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry serves French food . It has a 3 out of 5 customer rating and is family - friendly . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||Taste of Cambridge is an expensive , highly rated restaurant . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||Zizzi 's pub comes highly recommended and is a great place to take the entire family for Italian cuisine . \nname : The Twenty Two | food : Japanese | family friendly : yes||For Japanese food , head to The Twenty Two , a family friendly venue . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a low priced family friendly sit down restaurant at the top of the city near the river . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is a Chinese venue located in the city centre . It is near The Sorrento and is not family friendly . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge is a highly rated restaurant serving wine . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||Located near Café Sicilia in riverside The Dumpling Tree is a cheap , family friendly , coffee shop . \nname : Blue Spice | food : Chinese | price : more than £ 30 | area : riverside||Blue Spice is a riverside Chinese restaurant that costs more than 30 pounds . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada offers a child friendly environment with prices above 30 pounds . It has low customer ratings . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||For less than £ 20 , you can get fast food at The Dumpling Tree restaurant . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||If you are looking for quality Japanese food try Cocum . An adult coffee shop with a 5 out of 5 rating and meals costing more than £ 30 . \nname : Midsummer House | food : Chinese | price : high | customer rating : 1 out of 5 | near : All Bar One||Chinese food company Midsummer House is variety at high prices with a rating of clients is 5 and All Bar One . \nname : The Vaults | food : Indian | price : high | family friendly : yes||The Vaults serves Indian food in the high price range and is children friendly \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two fast food kids - friendly . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||Close to the city center is The Rice Boat and offers fast food . High rated as 5 out of 5 but not family - friendly . \nname : The Eagle | food : French | customer rating : low||You can find cheese , wine , soup , and other dishes at The Eagle , a one - star venue . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Fitzbillies is located near The Six Bells and offers sushi at mid - price \nname : The Rice Boat | food : Fast food | area : riverside||The Rice Boat serves fast food in the riverside area . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults serves British Food . It is low priced and not family friendly . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop located near to Café Sicilia . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||The Strada serves Indian food for £ 20- £ 25 . It has a high customer rating and is kid friendly . It is near The Rainbow Vegetarian Café . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat near Rainbow Vegetarian Café has a rating of 5 out of 5 prices more than £ 30 . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada servers fast food in the price range of more than £ 30 . It is located near the Rainbow Vegetarian Café and is not children friendly \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||Wildwood , a low customer rated pub serving Japanese food with prices less than £ 20 . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry , an Indian restaurant , can be found near The Bakers . It has an affordable price range under £ 20 . Please note it is not a family friendly restaurant . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man serves family friendly Indian food in the less than £ 20 price range . It 's in the riverside area near All Bar One . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat - a child friendly Italian restaurant situated by the riverside unfortunately has only been scored 1 out of 5 by its customers . \nname : Green Man | Type : restaurant | area : city centre||In city centre , there is a restaurant called Green Man . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is located on the riverside and serves Indian food . The price range is less than £ 20 and it is not family friendly . \nname : Loch Fyne | food : Italian | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne are situated in city centre , serve Italian food , have a low customer rating and are located near The Rice Boat . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a Sushi restaurant located by the river and has moderate prices . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice is a fast food restaurant in the riverside area with a moderate price range . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : yes||Zizzi is a pub providing Indian food Its customer rating is low . \nname : The Golden Palace | Type : restaurant | price : moderate||The Golden Palace is a moderate priced restaurant \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||if you want to have a food by £ 20 - 25 , you can eat Pub French that the name is The Cambridge Blue and near Café Brazil . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : no||The Twenty Two in the city centre offers Chinese food . Please be aware that it is not family friendly . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||In the city centre customers have rated an average for an cheap none family - friendly English place called The Waterman . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a highly rated , child friendly coffee shop serving Italian meals in the city centre . It is priced in the more than £ 30 range . \nname : Bibimbap House | food : Indian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House located near Clare Hall offers Indian cuisine at an affordable rate . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly restaurant that serve Italian food . This is located in the city centre , has a price range of less than £ 20 and a customer rating of low . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||The Waterman is an average pub located in the riverside area that serves Japanese food . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge near The Sorrento in the riverside area serves Italian food and is children friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a restaurant , which is a family friendly coffee shop with a price range of less than £ 20.Fitzbillies provide Italian food in the riverside . Customer rating is low . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub that offers Indian cuisine for adults , that has a high rating of 5 out of 5 from its customers . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre is The Rice Boat , which sells low - priced , highly rated French food . Rated 5 out of 5 by customers . Please be aware that it is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||For cheap Indian food with an average satisfaction rating try The Eagle , they are a family friendly coffee shop . They are near Burger King in the city center . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is located in riverside and offers Chinese cuisine within a moderate price range . This establishment earned a customer rating of 1 out of 5 . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||On the riverside near the Café Adriatic is the moderately - priced Travellers Rest Beefeater . It is rated 3 out 5 with customers . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||There is a cheap eating establishment called Fitzbillies near to Express by Holiday Inn . It has a 5 out of 5 customer rating , although it 's not known as family - friendly . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family friendly Italian pub with average prices near Café Rouge . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for a kid friendly restaurant near the Crown Plaza Hotel , The Waterman serves Japanese cuisine . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||There is a coffee shop called Wildwood near Ranch that serves Japanese food . It has a customer rating of 3 out of 5 . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a riverside restaurant near Yippee Noodle Bar . It offers English food in the high price range and is rated 1 out of 5 by customers . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : no||Giraffe is an Indian pub in the riverside area . It 's not family friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub in the riverside area with a 1 out of 5 customer rating which offers Italian food . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge serves French food . It is above average cost and has a low customer rating . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||There is a Chinese food place named The Phoenix in the city centre . It has a high customer rating and has a price range of 20 - 25 pounds . \nname : The Phoenix | food : English | customer rating : 3 out of 5 | area : riverside||The Phoenix , is restaurant riverside 3 out of 5 \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a child friendly restaurant with low customer ratings . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House sells moderately priced Italian Food , found near All Bar One it is customer rated 1 out of 5 \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a low priced restaurant , close to The Bakers . It is not suitable for families . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||If you have a price range of more than £ 30 and have a hankering for a little coffee shop that serves English food and has no children and a high customer rating The Punter is near Café Sicilia . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes||The Olive Grove makes Italian food for children Friendly with high price in city centre . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||The kid - friendly restaurant , Travellers Rest Beefeater , serves meals in the moderate price range . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||With a low customer rating but prices below £ 20 you cant beat English venue Alimentum , located riverside near Yippee Noodle Bar . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a up market child friendly coffee shop which also serves take away food \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a Chinese restaurant located in city centre and has a moderate price range . It 's kid friendly and it 's near All Bar One . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is an Indian coffee shop near The Portland Arms . This is a highly rated , non - family friendly establishment . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : yes||Giraffe is a pub in the city centre that serves Japanese food and is acceptable for all ages . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a cheap restaurant near All Bar One in Riverside . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice is a low - priced coffee shop located next to Avalon that offers family friendly services . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||For less than £ 20 , you can have Italian food at The Vaults , however it is not family - friendly . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||In Riverside near to Avalon is an average rated family friendly coffee shop called Blue Spice . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix serves cheese and wine on river . \nname : Green Man | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Along the riverside near All Bar One , there is a place called Green Man that offers Italian food . It has an average price range and is kid - friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||If you are looking for an Italian Pub in the riverside area , try The Waterman , the customers rate it 1 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The cheaply priced , average rated restaurant , The Rice Boat , serves Indian food , is not family friendly and is in city centre near Express by Holiday Inn . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a riverside fast food outlet near The Rice Boat . It is highly rated by customers . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : city centre | near : Café Adriatic||Located near Café Adriatic in the city centre , The Travellers Rest Beefeater has a low customer rating and a price range of less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies , a coffee shop that 's not family - friendly , whose menu items are in the less than £ 20 price range . It 's a fast food establishment located in the city centre area with a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||The Golden Palace is a cheap , Italian coffee shop in the riverside area , and it has average customer ratings . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a kid friendly fast food restaurant in riverside . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers , located near the city centre , is a moderately priced family restaurant . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : yes||Loch Fyne is a Chinese restaurant where families are welcome and the price range is lower than average . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||Near Café Adriatic , The Vaults is a cheap pub with a 5 out of 5 customer rating . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||In the city centre is located The Waterman that offers Italian food with a price range less than £ 20 . It has low customer rating and there is no family area . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a non - family - friendly pub in the city centre with a price range less than L20 . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice is a high priced restaurant located near city center . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||The Riverside area had a amazing cheap restaurant called Zizzi . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne near The Rice Boat serves Fast food has a customer rating 5 out of 5 in the area of City centre . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||If you 're in the riverside area with kids and are looking for a Chinese restaurant with high ratings to take them to , The Waterman is a great option . You can expect a price range of £ 20 - 25 . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Moderately priced fast food at Wildwood pub . Rated 1 out of 5 stars by customers . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Near Express by Holiday Inn on the riverside is a cheap family friendly Fast food . It has a 5 out of 5 customer rating . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||The Dumpling Tree serves British Food . It is a restaurant on the cheap side . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||one of the best place for Japanese food is Strada near Rainbow Vegetarian Café price range is very cheep its provide family friendly \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is child friendly , serves fast food , with a price range of more than £ 30 . \nname : Bibimbap House | food : Japanese | price : moderate | area : city centre | near : Clare Hall||A Japanese restaurant that is moderately priced and located in the city near Clare Hall is Bibimbap House . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area . Ia a coffee shop The Wrestlers . Child friendly Italian restaurant with a moderate price range . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a Chinese restaurant in the city centre . Rating 1 out of 5 , price range is moderate and kids friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | near : The Sorrento||There is a riverside coffee shop called The Mill , near The Sorrento serving Italian food for under £ 20 . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is located close to the river it offers a higher end price point but rates a 1 star for quality \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is an Indian restaurant on riverside with a high customer rating The Waterman . The price range is £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||There is a moderately - priced French coffee shop called The Mill located in riverside near The Sorrento . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||This establishment falls into the cheap price range , but , is 5 out of 5 in its ' customer rating . This coffee shop called Fitzbillies is family - friendly and serves French cuisine in the city centre area . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||In the riverside area near Rainbow Vegetarian Café there is a expensive pub called The Golden Palace . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an Indian located in the city centre near the Yippee Noodle Bar . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café you can get cheap fast food in family friendly atmosphere at Strada . It is Customer rated 3 out of 5 . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||for a cheap city centre Japanese restaurant visit The Waterman as it has been given 5 out of 5 for its services , this may have something to do with the no children policy it has at its not family friendly restaurant \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop with Indian food in the high price range . It is children friendly , has an average customer rating , and is located in riverside near Burger King \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter Italian coffee shop near Café Sicilia has a customer rating of just 1 out of 5 . The positive side is it is kids - friendly and moderately priced . \nname : Wildwood | Type : restaurant | family friendly : no||The restaurant Wildwood is not family - friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee shop that is priced at £ 30 for a meal . This price gives a child - friendly environment and a 5 out of 5 rated meal within the riverside area . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is an average family friendly pub near the riverside \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman is a Japanese style pub in riverside with a customer rating of 3 out of 5 \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The one star restaurant , The Rice Boat is known to be family friendly with low prices . You can find it in the city center . near Express by Holiday Inn . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood restaurant near Café Rouge received a low customer Rating . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Zizzi is a cheap riverside coffee shop . It has a low customer rating and is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Crown Plaza Hotel is near a children friendly French coffee shop in Riverside called Browns Cambridge and has a low customer rating \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a coffee shop with Japanese food located near Ranch . The customer rating is low and their price range is more than £ 30 . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cheap Fast food can be found in the riverside area at Cotto . This is a coffee shop near The Portland Arms . It has a low customer rating of 1 star . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman place located down the riverside has high prices and although it is children friendly the customer rating is low . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults serves Italian and is child friendly with a moderate price range . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub that serves Chinese food . It is located on the riverside . The prices are moderate and kids are not welcome . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Located by the riverside , Alimentum has a price range of less than £ 20 ans is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is the name of a family - friendly coffee shop on the riverside near Raja Indian Cuisine . It serves Japanese food for cheap prices . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||Browns Cambridge is a restaurant that offers a variety of food and drinks . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||A Japanese coffee shop near the city centre with an average customer rating is Fitzbillies . It 's a family - friendly environment where you can eat for less than £ 20 . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||A family friendly restaurant named Strada located near Rainbow Vegetarian Café . It has low prices and a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop also offering Japanese food in the city centre . It is child friendly , generally costing £ 20 - 25 and customers ratings are high . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly Chinese restaurant in city centre with a low customer rating and price range less than 20 euros . It 's near Express by Holiday Inn . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a highly rated , children - friendly pub ranging in price from £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||It is cheap , family friendly , a coffee shop , provides a fast - food service and has an average customer rating , it is Cocum \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a luxury restaurant Alimentum located near the Yippee Noodle Bar . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : city centre | near : Clare Hall||Located in the city centre near Clare Hall , The Bibimbap House serves Indian food . They have cheaper than average prices . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | near : Clare Hall||In city centre near Clare Hall is a Japanese coffee shop called Clowns . It has an average customer rating . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the more than £ 30 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||The Loch Fyne is a family - friendly Italian restaurant with a price range less than £ 20 \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in Riverside is a pub called The Golden Palace with a price range of 20 - 25 dollars . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||The Phoenix at riverside serves French food and has a customer rating of 3 . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||The is a restaurant located near The Sorrento called Browns Cambridge but it 's not family friendly . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||Located inside of Café Rouge , The Plough is a family friendly pub that servers sushi at a modest price . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||A child - friendly Café known as Cocum serves French cuisine . Its prices are greater than £ 30 , and it has a 5 out of 5 customer rating . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum provides English food in the average price range of £ 20 - 25 . It has a high customer rating and is located near Yippee Noodle Bar in riverside . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Low rated Browns Cambridge , offer expensive Italian food . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a family - friendly restaurant located in the city centre . It sells French food and has an average customer rating . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a children friend restaurant and most customer love it . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||The Cambridge Blue is a restaurant . On this restaurant we can eat a delicious Japanese Food , but in this restaurant still have low customer . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a fast food coffee shop near The Portland Arms moderately priced \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||A higher tier restaurant serving Japanese cuisine , Green Man offers a kid friendly atmosphere in the riverside area , near All Bar One . \nname : The Mill | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside||Indian food is served at the pub named The Mill , by the riverside . The price of this food is £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a low - priced restaurant that serves fast food and is Family - Oriented . \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a place for mature public . It 's by the Crowne Plaza Hotel . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant with a high price range . It has a 1 out of 5 customer rating , and is located near Express by Holiday Inn by a riverside , and is not children friendly . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The family - friendly Blue Spice , serving food in low price range , has been rated 5 out of 5 . It is located in the city centre . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The restaurant known as Blue Spice is near riverside , family friendly , and average customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||Find great quality food and service at a reasonable price at The Golden Palace coffee shop right across from the river \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||There is an English , family friendly pub called The Dumpling Tree near The Portland Arms . \nname : The Phoenix | food : English | customer rating : 3 out of 5 | area : riverside||The Phoenix , located in riverside , has English food and a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||With a 3 out of 5 customer rating , The Golden Curry serves Japanese food in a children friendly atmosphere . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree is a children family pub that serves Chinese food . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : no||The Olive Grove offers pub type fast food to adults only with a high price range . \nname : Bibimbap House | food : Japanese | area : city centre | near : The Rice Boat||the Bibimbap House is a place in the city centre near The Rice Boat that does Japanese food \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||In Riverside is a family friendly Italian restaurant named The Rice Boat . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||The Green Man serves Chinese food at low prices in City Centre . It is not family friendly and located near All Bar One . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : no||The Wrestlers provides Chinese food in the cheap price range . Its customer rating is average . \nname : The Golden Curry | food : French | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry comes highly recommended for its French cuisine and kid friendly environment . You will find it located near Café Rouge in riverside . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||A family friendly English pub , Giraffe , is in the riverside area . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||There is a cheap Japanese restaurant in the city centre called The Waterman that has food costing £ 20- £ 25 . It has a high customer rating but is not family - friendly \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||A short jaunt from St. John 's College is The Phoenix , an upscale Asian restaurant catering to the most discriminating tastes . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn is child friendly and is rated 3 out of 5 \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a French restaurant near Café Rouge with a low customer rating . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a French pub located near The Portland Arms . Child friendly . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Indian food in the less than £ 20 price range . It is near Rainbow Vegetarian Café . Its customer rating is low . \nname : The Punter | food : English | price : more than £ 30||With a price range of more than £ 30 , The Punter serves English food . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves Italian food , it is located in riverside near The Portland Arms . It gets a customer rating of 1 out of 5 , and is moderately priced . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||There 's a coffee shop that serves Japanese food in the £ 20 - 25 range called Wildwood . The customer rating is high and it 's located near Ranch . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||A pub with a 3 out of 5 rating in riverside is The Twenty Two , near Café Sicilia . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a riverside pub with a low customer rating and a price range of less than £ 20 \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a family friendly place in city centre that serves Indian food . They are rated 5 out of 5 by customers . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , near The Sorrento is a kids friendly establishment that serves Italian food and is near the riverside . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced and family friendly pub that offers fast food . The are located near Café Rouge . \nname : The Vaults | Type : restaurant | food : English||The Vaults is a restaurant serving classic English for its customers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly Japanese coffee shop . Located in the riverside area near Burger King . Price range : £ 20 - 25 . Rating 3 out of 5 \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a family friendly restaurant serving French food . It is low priced , and has a rating of 5 stars out of 5. it is located near the Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||By the riverside near the Crowne Plaza Hotel , is a children friendly coffee shop named Taste of Cambridge , which also serves Italian food . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Cheap prices can be found at Fitzbillies which is located near Rainbow Vegetarian Café \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 1 out of 5||There is a Japanese restaurant called The Cambridge Blue . It has a customer rating of 1 out of 5 . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Chinese restaurant rating 5 out of 5 . No family friendly and near Rainbow Vegetarian Café . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||There is a coffee shop near The Portland Arms called The Cricketers that serves Indian food with a high customer rating and is also kid friendly . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix provides Japanese food for less than under £ 20 it is located by the riverside and has an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : high||The Cambridge Blue is a Japanese restaurant . It has a high customer rating . \nname : The Golden Curry | food : French | price : cheap | family friendly : yes | near : The Bakers||Near The Bakers is a cheap , family friendly restaurant that serves French food , it is called The Golden Curry . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sells Indian food . It is located in the riverside area , near Express by Holiday Inn . The price range is high and customer rating is generally around 1 out of 5 . It is children friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a coffee shop in the city centre that is not kid friendly and has a 3 out of 5 rating ; the price range is £ 20 - 25 . It is called Zizzi . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||A French restaurant with a 5 out of 5 rating is Midsummer House , which is a cheap place to go in All Bar One . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The Waterman riverside good place to all family and eat the best English Food \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a high rated Japanese restaurant in the city centre with food available in the £ 20- £ 25 price range . It is not good for kids \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||There is a French restaurant that is 5 out of 5 rated restaurant called The Cambridge Blue \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn offers moderate priced English Food . In Riverside area 3 out of 5 restaurants are not kids - friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a customer rating of 1 out of 5 . It has English food and is kid friendly . It is riverside near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop near the riverside that specialises in Italian cuisine . A meal will cost you under £ 20 . It 's quite a new place so customer ratings are low but it is becoming increasingly popular . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies , near The Six Bells sells Fast food with a price range of more than 30 pounds . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub , located by the riverside , serving Italian food and with a one out of five customer rating . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man conveniently located by the All Bar One . Green Man has medium priced delivery service . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi the Indian coffee shop is located in Riverside . \nname : Blue Spice | food : Indian | price : moderate | area : city centre||The Indian Blue Spice restaurant is a moderately priced restaurant located right in the city centre . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||Cocum is a low rated restaurant in the city centre . Not recommended for families . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has a high price range with an average customer rating . It is children friendly and located near Express by Holiday Inn . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Located in the city centre near Yippee Noodle Bar , Alimentum is an Indian restaurant with a 5 out of 5 customer rating in the cheap price range . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : no | near : Café Rouge||The fast food pub , The Plough , is located near Café Rouge . It is high priced and is not kid friendly . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Midsummer House is an Italian restaurant with low customer ratings and is located near Café Rouge \nname : Alimentum | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is an Italian , kid friendly restaurant with a £ 20 - 25 price range . It is located Riverside . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||Green Man is a pub serving Japanese food in the riverside area near Café Rouge . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Close to The Six Bells is The Golden Curry , a family friendly establishment . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in city centre , Browns Cambridge coffee shop have a low customer rating and are not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : more than £ 30||The Dumpling Tree is a Chinese food restaurant with more than £ 30 price Range . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||The Strada is children friendly with a 3 out of 5 customer rating and a high price range . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry has English food and is located near The Bakers . They are cheap and friendly to families . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a French venue in the city centre which welcomes children and has an excellent customer rating . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood coffee shop is a five - star Cheese and Winery located next to the Ranch . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : no||Alimentum features higher priced Indian dining in an adult oriented atmosphere , \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||Wildwood is a cheap pub with one star average . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese food costing more than £ 30 , it is in the riverside area located near Express by Holiday Inn . The customer rating is high and it is not child friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a pricey Italian coffee shop near Ranch . It is not rated well , with only 1 out 5 from customers . \nname : Green Man | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||By the river is the child friendly Green Man , near All Bar One , offering an English menu . Food prices are over £ 30 . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a no kids - friendly restaurant providing Italian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is family - friendly French food shop in city centre near Raja Indian Cuisine with a price range less than £ 20 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a high priced coffee shop in the riverside area , with an average customer rating , and yes it 's kid friendly \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Low - priced food can be found near the river at 1 - star rated The Eagle coffee shop near Burger King . Kids are welcomed . \nname : Strada | Type : pub | food : Indian | customer rating : high | near : Yippee Noodle Bar||Strada is a pub located near Yippee Noodle Bar that provides Indian food which has a high customer rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Wildwood is an inexpensive coffee shop offering burgers and fries . It 's located near Ranch . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , The Cricketers is a Pub with a 5 out of 5 customer rating . They are children friendly . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : yes||The Wrestlers provides Indian food in the high price range . Its customer rating is average . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a Japanese coffee shop with a low customer rating . The price range is less than 20 . It is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : no||Loch Fyne is a moderately priced fast food restaurant that is not kid friendly . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||There is a family friendly pub called The Olive Grove in the riverside area . It serves cheaply priced English food . \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||The Japanese restaurant offers moderately priced food , but the kids were not being polite in The Vaults . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Serving cheap , 5 out of 5 rated Indian food in riverside is a restaurant called The Waterman . They are not family oriented . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||A restaurant with average ratings , in the price range of less than £ 20 , is the Taste of Cambridge . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a Japanese restaurant with a 5 out of 5 costumer rating its located in the riverside area . The Waterman offers amazing cheap Japanese food but is not a family environment \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||Wildwood is a pub that offers a variety of food and drinks . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low priced British cuisine restaurant that is not family friendly , located by Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a Japanese coffee shop near Ranch . It has a low customer rating and a £ 30 and up price range . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the cheap price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : city centre||The Waterman is an English pub that is located in the city centre . It has a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||For child free coffee on the riverside , why not try Fitzbillies - an Italian style coffee shop . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||By a riverside near Burger King , The Eagle is a coffee shop serving Indian food it is not a child Friendly , with a low customer Rating and a high price Range . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly venue , serving English food . It is in the riverside area , near Café Rouge , with a rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , in City Centre , is the Italian coffee shop called The Wrestlers . It has prices less than £ 20 . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn is The Rice Boat it is a family friendly Indian its a little expensive but the ratings are average . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace coffee shop serves moderately prices Indian food . It is rated high by customers and is located in the city centre . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat sells Chinese food , customer service rating 1 out of 5 , located in Riverside , child friendly \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The 5 star family friendly coffee and sushi shop called Fitzbillies is located north of the city centre . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : city centre||Clowns is a pub offering alcohol at prices higher than £ 30 . Customer ratings are low . It is located in the city center . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is a coffee shop in the low price range . It is located near Ranch . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove pub in the city centre serves French food at above average prices . It is not suitable for families with children . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||There is a kid friendly Italian place called Green Man near All Bar One in riverside . It is moderately priced . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat Chinese is by the riverside . It has an average customer rating and is child friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an expensive , family - friendly coffee shop located in the City Centre . It offers wine and cheese . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : no||Travellers Rest Beefeater is a slightly higher priced restaurant that caters to adults only . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||Children friendly Travellers Rest Beefeater restaurant has prices of more than £ 30 . \nname : The Golden Palace | Type : pub | price : moderate | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace pub , located in the city centre near the Rainbow Vegetarian Café . Which is a good place to go if your price range is moderate . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a cheap restaurant that is Family - Oriented and serves fast food service . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||The Browns Cambridge is expensive and it has a one star rating . \nname : The Punter | food : Japanese | price : cheap||The Punter offers cheap Japanese food . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a mid price range restaurant Strada located near Rainbow Vegetarian Café that provides all - you - can eat food . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : city centre||The Phoenix offers cheap Italian food . It is located in the city centre . It is rated average by the customers . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||Loch Fyne is a no family - friendly restaurant that provides Fast food in the cheap price range . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||croissants in the pub which is rated 3 out of 5 stars in Riverside named The Waterman \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area is a Japanese coffee shop called The Wrestlers . It is average - priced and kids friendly . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Waterman is Japanese restaurant in the riverside with price less than 20 , no average \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Average price range and customer rated pub , Cocum is best suited for adult meals . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Blue Spice in the city centre is non family - friendly and had a price range of less than £ 20 with a low customer rating . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Expect to pay less than £ 20 to eat at Fitzbillies , located near Rainbow Vegetarian Café . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Clowns pub situated riverside with an average customer rating of 3 \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving Italian food and across from Crowne Plaza Hotel with average ratings and is not family - friendly . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||The customer ratings for Browns Cambridge is average , they sell cheap Italian food . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||An Italian coffee shop near Café Sicilia would be The Punter . It has moderate prices and is rated 3 out of 5 stars by customers . It is not a kid friendly shop . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a cheap , family - friendly coffee shop . It is located near The Bakers . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two serves Italian food and is kids friendly . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is near Café Rouge . Customers rating Midsummer House 3 out of 5 . It serves Japanese food and it is rating by customers 3 out of 5 . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||Near The Rice Boat in the center of city its located a restaurant 5of5 called The Twenty Two , this serves dishes from £ 30 \nname : The Golden Curry | food : Italian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is an Italian near The Bakers . It is child friendly and the price range is from £ 20 - £ 25 . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the riverside . It is near Burger King . Its customer rating is high . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 3 out of 5||There is an English restaurant with a customer rating of 3 out of 5 named The Cambridge Blue . \nname : The Eagle | food : English | customer rating : low||The Eagle is a restaurant with 1 Star . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||the pub called Strada , near to Yippee Noodle Bar serve Italian food and customer rating is average \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high priced Chinese restaurant that is not family friendly with a 1 out of 5 customer rating . It is in the centre city near Express by Holiday Inn . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a non - family - friendly English restaurant in riverside with a low customer rating and price range less than L20 . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||A child friendly fast food joint named , The Vaults - with a moderate price range . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly pub with a 5 out of 5 customer rating located in Riverside . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||Conveniently located in the city centre , The Golden Palace is a coffee shop that serves Indian food at a moderate price and is rated a three out of five stars . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant called Strada providing Indian food located near Rainbow Vegetarian Café with 5 out of 5 customer rating and it 's price range is cheap and also it is family friendly . \nname : The Punter | food : Italian | price : moderate||The Punter is a restaurant providing Italian food in the mid price range . It is located in the city centre . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap Indian restaurant located in the riverside area . It has an average customer rating and is family friendly . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||A man named Cotto got Chinese food from a place with a average customer rating that is child friendly near the Ranch . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns , a hilariously named coffee shop , near Clare Hall , in city center , is a Fast food establishment with a perfect rating . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap restaurant The Rice Boat located Express by Holiday Inn that provides Asian food . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Close to Rainbow Vegetarian Café is Strada which provides expensive Italian food . Its customer rating is average and children are prohibited . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||In the riverside area , near All Bar One , is a high priced , child friendly , Fast food restaurant , Green Man . \nname : Fitzbillies | food : Italian | price : more than £ 30 | near : The Six Bells||Near The Six Bells there is Fitzbillies , which serves Italian food . The price range is above 30 pounds . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is Family friendly Fast food less than £ 20 and low customer Rating near to Express by Holiday Inn . it is located in riverside \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a 5 stars coffee shop Fitzbillies that provides nice hamburgers for your family at low - priced . It is located in the city centre . \nname : Blue Spice | food : Italian | price : £ 20 - 25 | area : riverside||Blue Spice is found near riverside . It is an Italian restaurant costing around £ 20 - 25 . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Near Café Rouge , there is a Japanese restaurant called the Midsummer House . It has a low customer service . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee chop in the city centre that serves high priced Indian food , and maintains an average rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a sushi and coffee shop located near Café Sicilia with a family friendly atmosphere . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||An Italian coffee shop called Wildwood can be found near the Ranch . Food ranges from from £ 20 - 25 and has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a high - priced , five star coffee shop located near the river . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a restaurant near The Six Bells and has a moderated price \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is a French pub in the Riverside area . The price range is less than £ 20 . \nname : Fitzbillies | food : Japanese | price : high | near : The Six Bells||Fitzbillies Japanese restaurant comes highly recommended and is situated adjacent to The Six Bells . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Enjoy a French meal with your kids at The Dumpling Tree pub , located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Located in the riverside area , near The Portland Arms , Cotto is a coffee shop that offers fast food . The restaurant received 3 out of 5 stars as rated by customers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly Fast food serving coffee ship with cheap price range and an average customer rating . It is located in Riverside near Burger King . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is fast food , kid friendly and has a 1 out of 5 customer rating . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||A riverside pub with cheap prices named Clowns with average rating . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum offer reasonable price English 1 star food by the river , just along from the Yippee Noodle Bar \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : yes||There is a family family restaurant called The Rice Boat in the city centre . It has an average customer rating and serves French food . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is restaurant that offers French food in the riverside area \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||For a fast food place in the Riverside area , visit Blue Spice . The prices ranges less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop . It that is family - friendly . t offers Japanese food and is located in the city centre near Burger King . Prices range less than £ 20 and the customer rating is low . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||There is a mid price range restaurant Alimentum located in the centre of the city that provides fast food . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is located in riverside area near The Rice Boat . Have 1 out of 5 costumer rating . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Midsummer House is a pasta venue close to Café Rouge . It has one star . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||There is a restaurant The Mill located in riverside , close to The Rice Boat . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a kids friendly Indian restaurant with a high customer rating in the £ 20 - 25 price range in the city centre . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Customers rated the restaurant , Strada , to be a 3 out of 5 . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in the city centre . It receives an average customer rating , serves fast food , is cheap , but it is not family - friendly . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||The cheaply - priced Blue Spice restaurant to the north of the City on the River serves a variety of cheeses and wines . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a budget friendly family venue close to Café Sicilia . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : city centre||The Waterman is a Italian pub in the city center with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The average priced Japanese coffee shop - Fitzbillies - is child friendly and priced modestly . It is in the city centre , and has been rated highly by customers . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a one star restaurant . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an expensive , child friendly restaurant with a 1 out of 5 rating . They serve English food . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a restaurant providing Chinese food in the moderate price range . It is located in the riverside are , near All Bar One . Green Man is not a kid friendly environment . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall . It is located in the riverside area . Clowns serves coffee and Japanese food . The customer satisfaction for this coffee shop is high . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low price coffee shop located near Burger King north of the city center . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : city centre||The Eagle is a high priced eatery located in the city centre . It has a customer rating of 3 out of 5 . \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix , located in Riverside , serves French cuisine and has an average customer rating . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi pub is a bar selling sort of assorted wines and snacks . It is opened to all age groups . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Located in riverside , The Waterman is a children friendly restaurant that serves Indian food . Prices range at over £ 30 , but it gets a high rating from its customers . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix offers English - styled food in the riverside of Cambridge and has an average customer rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||There is a family restaurant Browns Cambridge located on the riverside near The Sorrento . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The Alimentum is a 5 star restaurant . It is located near the Yippee Noodle Bar . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is a kid friendly Italian restaurant . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children friendly restaurant that is locates on the riverside near The Rice Boat . It has a more than 30 Euro price range and a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a restaurant located near the Café Brazil . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada has a high customer rating and serves French Food near the Rainbow Vegetarian Café . It is kids friendly and costs £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is an expensive coffee shop that serves Japanese food with a customer rating of 3 out of 5 . It is located in the city centre and kids are not allowed . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum will provide an excellent dining experience for all families . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop can be found near the Crowne Plaza Hotel . It is not family friendly , and serves sushi . It holds a one star rating . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located near the Café Rouge in the riverside area , The Golden Curry is a five star family friendly fast food restaurant . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne is a restaurant providing sea food and grills in the average price range . It is located in the city centre \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : no||Loch Fyne is a restaurant that serves Indian food in the moderate price range and is not child friendly . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||Located next to the Rainbow Vegetarian Café is a restaurant called The Rice Boat . It has high prices and a low rating . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||With a price range of £ 20 - 25 , a high customer rating , and a location in the riverside area , Blue Spice is a great choice . Blue Spice is not kids friendly . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Offering prices between £ 20 - 25 , The Plough is located near The Bakers and is kid friendly . \nname : Midsummer House | food : Chinese | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House Chinese offers high priced food rated at a 1 out of 5 , near All Bar One . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a French coffee shop with a moderate price range , but isn 't kid friendly , and it located near Raja Indian Cuisine on riverside . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada serves Chinese food for a low price near Rainbow Vegetarian Café . It has a low customer rating and is not family friendly . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly located in the city centre near Café Rouge . They serve English food . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an average rated , non family - friendly coffee shop that serves French food and is located in the city centre near the Crowne Plaza Hotel . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice is riverside with cheap prices , a 5 out of 5 customer rating , and is not family - friendly \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a English restaurant , which is not kid friendly , that is located near city centre and the price range is around £ 20 - 25 . \nname : Wildwood | Type : pub | food : Chinese | price : £ 20 - 25 | customer rating : high||Wildwood is a pub which serves Chinese food . The average price is 20 to 25 euros , with a very high customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||A cheap Japanese coffee shop near Ranch , with a high customer rating is Wildwood . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Family Friendly The Wrestlers , is a mid - range priced eatery scoring 3 out of 5 stars . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||Loch Fyne is a restaurant providing cheeses , wine , fruits and desserts in the high price range that is family - welcomed \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a three star location near the river that serves British food . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a family friendly place . It costs less than £ 20 and is near Café Sicilia . \nname : The Vaults | Type : restaurant | food : French||If you 're looking for a restaurant that offers French food then come to The Vaults . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||High rated Japanese food in the city centre for £ 20- £ 25 , Quaint little coffee shop . The Portland Arms is the place to go , its situated just by Cotto \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is located by a riverside near All Bar One and is considered children friendly . It serves Indian food and has a high price range . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice is located on the river side with good food at decent prices . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||The Loch Fyne restaurant is a cheap sushi restaurant not suited for the whole family . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : yes||Alimentum is located in the city centre . It has a high price range , serves Italian and is children friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The one star , high priced Fitzbillies coffee shop is available for use , the facility is family friendly and has wine , cheese and wine available for guest . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The high - priced coffee shop , The Golden Palace , has a one out of five star review . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : no||Alimentum is not children friendly . It is a Fast food restaurant with a high price range in the city centre . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||The Eagle Italian restaurant customer rating 5 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn and is child friendly . With prices above £ 30 and a customer rating of 5 out of 5 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is situated by the Express by Holiday Inn on the riverside . It serves French food in a family setting . The price range starts at £ 30 . It has a low customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is a one star , family friendly , high priced restaurant located in the City centre . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a child friendly restaurant that is poorly rated . \nname : Strada | Type : pub | food : Indian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub providing Indian food It is near Yippee Noodle Bar . Its customer rating is 5 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||The Waterman is a high rated pub that serve fast food on the riverside area \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French food . It has a average customer rating It is located in the city centre near the Express by Holiday Inn . The price range is less than £ 20 and is family - friendly . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||If you are looking for child friendly French cuisine along the riverside , Green Man restaurant , while a little more pricey at upwards of £ 30 , is conveniently located near All Bar One . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : no||An average rated Japanese restaurant by the riverside is The Rice Boat . It is not for families . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||Come check out The Waterman pub along the riverside for fast food and give us a rating 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto , near The Portland Arms in the riverside area is a fast food coffee shop with a high price range and low customer rating of 1 out of 5 . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located next to Yippee Noodle Bar , and is a mid priced restaurant . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||Loch Fyne is a non family friendly Italian restaurant . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a French restaurant located at the riverside near The Sorrento . It serves French food and is family friendly . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||Number one family friendly Italian restaurant that costs less than £ 20 goes by the name The Vaults . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove in the riverside area serves pub food at below average prices . It is not family - friendly . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : city centre||The Golden Palace is a restaurant located in the city center with a low customer rating . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is an Italian restaurant near The Rice Boat . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is a family friendly restaurant in the riverside area with prices less than £ 20 . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two serves English food and is family friendly . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies , a non - kids - friendly establishment rated 3 out of 5 , can be found near Express by Holiday Inn at £ 20 - 25 . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice , a hight price restaurant whit a not that bad rating located in the riverside . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||At a kid friendly customer rated 1 out of 5 you can get Chinese food at a pub called Zizzi . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a moderately priced Fast food restaurant in the city centre but it only has a 1 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : cheap | family friendly : yes||Loch Fyne is a cheap , family friendly , French restaurant . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : no||The Wrestlers is an average , non family - friendly , cheap Italian restaurant . \nname : The Rice Boat | food : Italian | area : riverside||The Rice Boat offers Italian food in a riverside location . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a place to come with the family and eat French food at the riverside \nname : Loch Fyne | Type : restaurant | food : English | price : more than £ 30 | family friendly : yes||Loch Fyne is a children friendly restaurant in a medium price range \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||Located near Café Rouge , The Plough is a pub offering high end quality and is child friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop in riverside that serves Indian food their place is not family friendly \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi is an English pub with low ratings and is non family - friendly . \nname : Zizzi | Type : restaurant | price : moderate | area : city centre||Located in the city centre is Zizzi restaurant offering food that is moderately priced . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Ethnic variety foods up the road from Crowne Plaza Hotel the Browns Cambridge coffee shop . \nname : The Punter | food : English | price : moderate||A moderately priced English restaurant is The Punter . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is children - friendly and serves English food . It is near Café Rouge in the riverside area . Customers give it a low rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is suitable for those spending more than £ 30 . It is a child - friendly pub that serves French food and it is located in the riverside area . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter the coffee shop , near Café Sicilia , welcomes families with high prices and good reviews . \nname : Strada | price : high | customer rating : average | family friendly : yes||There is a restaurant named Strada that is children friendly with a high price range . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||Close to The Portland Arms is a family friendly coffee shop called The Cricketers . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada pub serves Italian food and is located near Yippee Noodle Bar . It has a 1 out of 5 customer rating . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||Browns Cambridge is an average place for Fast food for less than £ 20 . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||The Waterman pub in the city centre offers Italian food and has a 5 out of 5 rating . \nname : Fitzbillies | food : Chinese | price : moderate | near : The Six Bells||The moderately priced , Fitzbillies is located near The Six Bells and serves Chinese . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||There is a cheap restaurant called The Wrestlers that offers British cuisine . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||An averagely priced coffee shop serving Japanese called The Eagle ; not kid friendly . A very high customer rating , located in the city centre near Burger King . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is an average - priced coffee shop near Avalon in Riverside where kids are not allowed . \nname : The Plough | Type : pub | food : French | price : cheap | family friendly : yes | near : Café Rouge||The Plough is an inexpensively priced , family friendly pub . It serves French food and is located near Café Rouge . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : city centre||There is a Japanese pub located in the centre of the city called The Waterman . It has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Dumpling Tree is an average - priced fast food restaurant . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The family friendly restaurant Cocum is high priced and also is a coffee shop . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace is a French style coffee shop in the city centre . It is however quite pricey and not very popular with customers . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a Chinese restaurant located in the city centre . It has low customer ratings and is less than 20 euro 's . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an English restaurant with a high customer rating located near Café Rouge in the city centre . It is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||there is a low price coffee shop named The Eagle near Burger King that serving Japanese food with a customer rating of 5 out of 5 but not family - friendly \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is family friendly , serves fast food , is near Café Rouge by the riverside and has a low customer rating . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||There is a moderate restaurant Fitzbillies located near Express by Holiday Inn customer rating 3 out of 5 and is kids - friendly \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Near The Bakers is a coffee shop called the Giraffe ; it has prices between £ 20 - 25 , is kid friendly , and is highly rated by customers \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn you will find The Rice Boat- offering fast food with high price range and average rating . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : no||Alimentum is a Chinese restaurant located in riverside , that is adult only and high price range . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice in Riverside is located near Avalon . It is a kid friendly coffee shop in the price range of 20 - 25 . It has a customer rating of 3 out of 5 . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||For Italian food near Crown Plaza Hotel , try The Waterman . They are also family friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Highly - rated , The Punter is a coffee Shop near Café Sicilia which you can take your children to . They serve fast food for a moderate price . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||The Cotto Indian coffee shop near The Portland Arms in the city centre is rated 3 out of 5 stars and is in the moderate price range . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers , Ever see a fast food , coffee shop . Kid friendly , Near The Portland Arms , With a rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves up average Indian food in a family - friendly environment in the riverside area . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||There is an expensive coffee shop located near The Sorrento , called The Mill . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | near : Clare Hall||in the City Centre near Clare Hall is Clowns a coffee shop selling Fast food with a low customer rating . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||The Cocum restaurant is children friendly and has average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Look near the Crowne Plaza Hotel for a family friendly city centre Indian coffee shop with an average rating . Its name is Browns Cambridge . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a children - friendly high end Italian restaurant . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a family friendly French restaurant on the riverside . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||There is an English restaurant with average customer ratings named The Cambridge Blue , \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The customer rating is average for the child friendly fast food place is average and its in Riverside near the Café Rouge and The Golden Curry . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a riverside pub , that although rated 1 out of 5 , is moderately priced . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a family friendly English Pub by the riverside . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Indian restaurant which is kids friendly located in the riverside area near Café Rouge and it has 3 out of 5 customer rating . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge has excellent 5 out of 5 ratings . The price range is high but it is worth it . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge has a variety of meals at very affordable prices . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a French place near Express by Holiday Inn in Riverside . Its price range is less than £ 20 , but has a low customer rating . It is also family friendly . \nname : The Eagle | food : Chinese | customer rating : low||The Eagle with a low customer rating serves Chinese food \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||There is a cheap coffee shop Wildwood located by the Ranch that offers food and drinks . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||There is a French restaurant with prices less than 20 called The Dumpling Tree . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman , is an affordable eatery that gives patrons great food at low prices . Located near the Crowne Plaza Hotel . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||There is a cheap coffee shop , Cotto , with a customer rating of 5 out of 5 that sells Indian food in the city centre near The Portland Arms . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater has a price range of less than £ 20 and an average customer rating . They are located in the riverside area near Café Adriatic . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman provides Spaghetti without braking the bank . It is located on the shores of the river and is not family - friendly . \nname : Wildwood | Type : pub | food : Indian | price : more than £ 30 | customer rating : high||Wildwood , an Indian pub with a more than 30 pound price range , has high customer ratings . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix which serves Japanese food for £ 20 - 25 , it is highly rated by customers . it is located in the city centre \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||In riverside by Café Brazil is a coffee shop with moderate prices , a customer rating of 3 out of 5 , it is called The Vaults . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||There is as high priced restaurant just north of the city centre near the river called The Golden Palace . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 3 out of 5||Wildwood is a pub providing Chinese in the moderate price Range with a 3 out of 5 customer Rating . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a cheap highly rated non - family - friendly coffee shop that serves French food , located near the Café Sicilia . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family orientated Pub . It 's mid range in prices and very close to the Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies offers fast food and is a coffee shop which is located in the city centre . The prices are cheap with a 5 star rating and is especially family - friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Located in the City Centre by Burger King , with a one star rating from customers , is a coffee shop by the name of The Eagle . It 's cheap , and for adults only . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||For pub style eating that is kid friendly , look for The Cricketers , located near Ranch . It has an average customer rating . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood it is a very affordable restaurant and pub with excellent services . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap Indian restaurant rating 5 out of 5 . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||Cotto is located near Ranch with average ratings . They serve English food and are kid friendly . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||There is a restaurant in the city centre that serves Japanese food called The Phoenix . It has a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : pub | food : Indian | price : moderate | near : Café Brazil||There is a pub that serves Indian food at a moderate price range near Café Brazil called The Cambridge Blue . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly eatery with high customer ratings and serves British cuisine . It is located by the riverside , near Café Rouge . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge has an average customer rating and price range under 20 pounds \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : no||The Rice Boat , located in the city centre area of Cambridge , serves Chinese food in an environment that is not family - friendly and leaves much to be desired . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||There is a cheap one - star restaurant called The Wrestlers that provides pasta dishes . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is rated 5 out of 5 and the prices are cheap . It is near Express by Holiday Inn and it is located at the riverside . English food is served and it is family friendly . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is an adult only highly rated Chinese restaurant and has a price range of 20 - 25 euro 's . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a 1 star , medium priced restaurant located near Burger King and north of city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a coffee shop which serves Japanese food . It has a high customer rating , with a price range of £ 20 - 25 . It isn 't a kids friendly restaurant . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : moderate | near : Café Brazil||Near to Café Brazil is The Cambridge Blue pub which serves moderately priced Chinese food . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a moderate - priced Indian food restaurant located in the riverside area near All Bar One . It is not kids friendly . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto is a high - rated and kid friendly Chinese restaurant near Ranch . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Close to Café Sicilia is a family Friendly coffee shop The Punter with a low customer Rating serving Italian food at less than £ 20 \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub near Ranch that is child friendly and has a 1 out of 5 customer rating . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||A kid - friendly Japanese restaurant rated 5 out of 5 is The Golden Curry . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||In city centre , there is a restaurant called The Eagle with a rating of 5 over 5 . It is within a price range over £ 30 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a French venue in riverside with an average rating . It is kid friendly with a price range less than £ 20 . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : no||As an Italian restaurant located in the city centre , The Rice Boat has an average customer rating but is not family - friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||A pub called The Olive Grove is located by the riverside . It offers Fast food , a kid - friendly environment , and moderate prices . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a no kids - friendly restaurant providing Japanese food in the average price range . It is located near Express by Holiday Inn in the riverside . Its customer rating is high . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly , Japanese coffee shop near The Portland Arms that earned a average customer rating . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Located in riverside , The Waterman serves French food with a high price range and gets average reviews . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a highly rated restaurant that welcomes children . \nname : The Twenty Two | food : English | area : city centre | family friendly : yes||The Twenty Two is a city centre restaurant providing English food in a family - friendly environment . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies near The Six Bells with high Range prices serves English food \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a family friendly pub in the riverside area , near The Sorrento . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Serving Italian food , Browns Cambridge is a kid friendly coffee shop that is located by the riverside near the Crown Plaza Hotel . It rated 1 out of 5 by customers . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : moderate||The Dumpling Tree is a restaurant serving Indian food in a moderate price range . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||If you are looking for a cheap French coffee shop with a 5 out of 5 rating that is not family - friendly , visit The Eagle in the city centre near Burger King . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : city centre||customer Rating 5 out of 5 , restaurant , The Golden Palace , in the centre of the city . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||The pub near Café Adriatic , with a low customer rating and price range less than £ 20 , is The Vaults . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is an expensive coffee shop near Café Sicilia that serves Indian food . The venue has an average rating from customers and is not child friendly . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue restaurant is rated one star . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||The Waterman is an English restaurant near the Crowne Plaza Hotel . It is not family - friendly . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||Browns Cambridge is a fast food restaurant , with a price of less than £ 20 . It has a low customer rating . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : city centre||The Waterman is a pub that serves French food . Located at the city centre , customers have rated it 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi , located in Riverside , is a moderately priced , kid friendly , coffee shop , with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is an average place near The Bakers for families . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||Chinese food in the city centre can be found at The Phoenix with moderate prices and low customer ratings . \nname : The Vaults | Type : restaurant | food : Japanese||The Vaults is a restaurant that carries sushi . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves Indian food and boasts and average customer service rating , located riverside it has an awesome family friendly environment . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : no | near : Café Sicilia||Located near Café Sicilia in the city centre , The Dumpling Tree is a non kid friendly coffee shop with prices ranging more than £ 30 . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee shop and can eat Italian food . It is located in area of Riverside , near The Sorrento . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop . it is kid friendly . has a 3 out of 5 customer ingratiating is in riverside . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||An Indian restaurant named The Waterman has an high price range yet average customer rating . It is at the riverside and yes , it is child friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop that deals in modern delicacies . They cater to those with checkbooks of moderate size , and can be found in the Park on the River , just east of Raja Indian Cuisine . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||In Riverside near the Burger King sits The Eagle , a moderately priced Italian coffee shop with average customer ratings . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||There is a great Italian in the riverside called The Phoenix . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat , located in the city centre , serves Chinese food . They are family friendly and have a customer rating of 5 out of 5 . \nname : Bibimbap House | food : Chinese | price : moderate | area : city centre | near : Clare Hall||The Bibimbap House serves Chinese food , with meals at a moderate price . in the city centre area near Clare Hall . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia it 's found a 5of5 class coffee shop , is called The Punter , serves serves fast food \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||Near Café Sicilia on the riverside , there is a moderately - priced and adult coffee shop name The Dumpling Tree . \nname : Midsummer House | food : Indian | customer rating : average | near : Café Rouge||Midsummer House serves Indian food for an average price range . It is located near Café Rouge . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is a cheap restaurant with a 5 out of 5 customer rating named The Rice Boat . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Near of The Portland Arms there is a pub called The Dumpling Tree . It serves French food and children are always welcome . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||The Waterman is located in the city centre . It has Japanese food and is not kids friendly . Prices range higher then £ 30 with customer ratings low . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a Chinese restaurant with a high price range and customer rating of 1 out of 5 . Not kid friendly . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a pub located riverside . It has an average customer rating and is family friendly . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle is a low price shop located at the riverside price range from less then £ 20 for there customers \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||By the riverside , enjoy a pub cuisine , at the Aromi , in a family friend scene , with a 5 out 5 star rating . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto is a five star coffee shop located in City centre near The Portland Arms . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum serves expensive Italian food in riverside area . It is family friendly . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : no||Fast food can be found at The Rice Boat in the city centre . Though not family - friendly , it has average ratings . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : high | area : riverside | near : Clare Hall||A coffee shop called Clowns , located by Clare Hall on the Riverside , serves Indian food . It has a high customer rating . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | near : The Sorrento||In city centre by The Sorrento , there is a French coffee shop named The Mill and products are upwards of 30 pounds . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a cheap restaurant Alimentum near Yippee Noodle Bar serving English food in riverside with average customer ratings . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix serves Japanese food in the £ 20 - £ 25 price range with a high customer rating located in the city centre \nname : Midsummer House | food : Italian | price : £ 20 - 25 | customer rating : high | near : All Bar One||The Midsummer House is an Italian 5 star restaurant with fair prices . It is located by the All Bar One , which is nice to go to after dinner . \nname : Aromi | Type : restaurant | food : French | area : city centre||Aromi is a French restaurant in the City Centre . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||By Yippee Noodle Bar , Alimentum is an Indian restaurant located in the city centre . Given its high price range , it has average customer rating . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is child friendly near the Crown Plaza Hotel that serves Japanese food . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is located in riverside near The Sorrento . This establishment is adults only and features Indian cuisine . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the city centre , is moderately priced fast food that is good for kids . It does not get good ratings . \nname : Loch Fyne | food : Italian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Close to the riverside and near The Rice Boat ; Loch Fyne is an average rated Italian . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle , serving Italian food , is a family friendly coffee shop near Burger King in the riverside area . The price range is less than £ 20 and the customer rating is low . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||The family friendly venue , The Wrestlers , offers Indian food for less than 20 Euros but has a low customer rating . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||In Riverside there 's a kids friendly fast food place called Green Man that has a moderate price range and it 's near All Bar One . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : no||Zizzi is an Italian pub . It is not family - friendly , but customers rave about it , rating it 5 out of 5 . \nname : The Vaults | Type : restaurant | food : English||The Vaults is a restaurant serving English food . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap pub . The restaurant is family friendly , and has a 5 out of 5 rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Along the riverside is a children friendly Japanese coffee shop with a low customer rating near Aromi . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Wildwood , a cheap coffee shop with an average customer rating . Also serving Italian food , it is located near a ranch . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||A child friendly coffee shop in the riverside called Fitzbillies has a high customer rating and a price range of more than £ 30 for Italian food . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman its located in riverside , a great restaurant with cheap prices \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a high priced restaurant that serves English food . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The Mill is a cheap pub by the riverside that serves Italian food . \nname : Strada | Type : pub | food : Fast food | customer rating : low | near : Yippee Noodle Bar||The Strada Is a fast food pub located near Yippee Noodle Bar with a low customer rating . \nname : The Golden Curry | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the £ 20 - 25 price range . It is near The Bakers . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||A coffee shop called The Punter providing Italian food is in the moderate price range with a customer rating of 1 out of 5 . It is located near Café Sicilia . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Fitzbillies French is more than £ 30 price range . for found that place , you have to go The Six Bells . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman offers cheap French food for family - friendly in city centre . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two offers Japanese food and is children friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers Indian coffee shop is located near The Portland Arms and is kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree is an English restaurant whose prices are in the high price range . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||For inexpensive fast food costing less than £ 20 , try The Mill coffee shop . It is located near The Sorrento in the riverside district . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Family friendly restaurant , The Olive Grove , is located around riverside . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that is family friendly , moderately priced Japanese food close to Raja Indian Cuisine in riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle near Burger King on the riverside is a coffee shop that does Japanese food . It has a low rating , is not child friendly and costs more than £ 30 . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a adult pub with a less than £ 20 price range that serves English food in the riverside area . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||A pub called The Plough near Café Rouge serves Japanese food . It is kids friendly and has a price range of £ 20- £ 25 . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a child friendly restaurant that serves French food . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a Japanese restaurant located in the city centre . It has a price range of £ 20 - 25 , a rating of 3 out of 5 and is not kid friendly . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||The Vaults is a kids - friendly restaurant serving Fast food with a £ 20- £ 25 price range . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a child - friendly pub located near Ranch with a low customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is a family - friendly restaurant providing wine and cheese at a low cost . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a mid - priced restaurant located adjacent to the Rainbow Vegetarian Café . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum pub is an average place to bring the kids but don 't forget you wallet as prices are on the high side . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a popular child friendly pub located near Ranch . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||If your looking for a nice place in the riverside area , in the price range of 20 - 25 , then you would like The Golden Palace with a pub near the Rainbow Vegetarian Café . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : no||Zizzi is an English pub with an average rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a high - priced coffee shop which serves Fast food . It is located near The Portland Arms . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults is a pub with a price range of more than £ 30 and high customer ratings . It is located near Café Adriatic . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : no||The Wrestlers serves high priced Indian cuisine in a non - child friendly atmosphere . It 's customer rating is only average . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||For a reasonable meal , Check out Alimentum a Japanese restaurant which is kid friendly , a riverside setting , a traditional Japanese meal which will cost between £ 20 - £ 25 \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family - friendly but low - rated coffee shop with price ranges of less than £ 20 . It is located by the riverside , near the fast food restaurant Burger King . \nname : The Vaults | food : Fast food | price : high | family friendly : yes||The Vaults fast food prices are high but is child - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is located by the riverside near the Crowne Plaza Hotel serving fast food in their coffee shop , although customers have rated this low . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 5 star wine and cheese restaurant , at a high price . It can be found near Express by Holiday Inn , and is family friendly . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||For a costly but worth it for the 5 star rating , try Wildwood pub located in the city \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a restaurant that serves Indian food , the price range is cheap in this restaurant , the customer rating is 5 out of 5 , the where it is located is in the city centre near Yippee Noodle Bar . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop by the riverside , near Café Brazil . It is in the high price range and is rated 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The family - friendly Browns Cambridge is a French coffee shop near the Crowne Plaza Hotel in the city centre . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||1 out of 5 customers would dine at The Waterman pub for Fast food when they are walking along the riverside . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : no||Zizzi Chinese pub isn 't family friendly but it is 5 out of 5 customer rated . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||Wildwood is a pub providing Italian food . It has a high customer rating with a price range of £ 20 - 25 \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese food restaurant that gets a rating of 5 out of 5 . It is not family friendly , and is inexpensive . It is located in the city centre near the Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : 1 out of 5||The Wildwood pub offers Indian food in the high price range . The customer rating for this establishment is 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre||Expensive , mid - rated French cuisine coffee shop The Golden Palace is located in the city centre . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children friendly fast food restaurant with a high price range and a customer rating 1 out of 5 . It is located in the riverside area near Express by Holiday Inn . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a high - priced place near the Rainbow Vegetarian Café . It has a 3 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a moderately priced English pub in riverside that is family friendly . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||Fast Food restaurant The Rice Boat , is a 1 out of 5 star eatery located on the riverside . Not considered family friendly . \nname : The Phoenix | food : English | customer rating : high | area : riverside||A high customer rating by the riverside called The Phoenix serves English food . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shops located in The Portland Arms . It has low customer rating . \nname : The Punter | food : Chinese | price : high||The Punter serves Chinese food at high prices . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Near Avalon there is a coffee shop named Blue Spice . It is family friendly and has an average customer rating . The price range is high . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Near the riverside there is a coffee shop offering Japanese food called Aromi . It is kid friendly and has a low customer rating . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Aromi is a restaurant situated in the area of Riverside . Aromi is a Fast food restaurant . \nname : Wildwood | Type : restaurant | family friendly : yes||A restaurant which is children friendly would be Wildwood . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the area of riverside near Express by Holiday Inn . It is a moderately priced restaurant that offers Indian food with a 3 out of 5 rating and kid friendly . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||In the city center sits a kid - friendly Chinese restaurant called The Waterman . There prices range moderately . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry servers French food for mid range prices . It is located near The Bakers and is child friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||Here at The Dumpling Tree , we have a beautiful restaurant with English food , that won 't drain your wallet of it 's money . \nname : Fitzbillies | food : Fast food | price : moderate | near : The Six Bells||Fitzbillies is a restaurant providing take - away deliveries in the medium price range . It is located near The Six Bells . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace that serves sushi that has a low rating of 1 star and average in price range \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : no | near : The Sorrento||Although Browns Cambridge is not family friendly , they offer Chinese food near The Sorrento in riverside . \nname : The Mill | Type : pub | food : French | price : high | area : riverside||The Mill is a French pub in the high price range near Riverside . \nname : The Twenty Two | food : Indian | family friendly : no||The Twenty Two serves Indian food . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : city centre | near : Clare Hall||There is a cheap coffee shop Clowns located in city center near Clare Hall that offers Indian food . \nname : The Rice Boat | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is an English food restaurant in the city centre , near Café Rouge . It has an average customer rating and is family - friendly . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a pub called Aromi in Riverside with a customer rating of 3 out of 5 - it is located in Riverside . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||If you 're looking for a family - friendly , well - priced , Japanese restaurant near The Bakers , The Golden Curry is the place to go . \nname : Midsummer House | food : Indian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||5 out of 5 rating Indian eatery with cheap prices near All Bar One is Midsummer House \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a family - friendly restaurant serving English food located near All Bar One in city centre area . The price range is less than 20 pounds . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||For a 3 star moderate priced Italian restaurant near to Rainbow Vegetarian Café then go to the Strada \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves English food . It is near Rainbow Vegetarian Café . It is child friendly . It has an average customer rating and a high price range . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||There is a fast - food coffee shop called The Punter located near Café Sicilia . It offers quality food at moderate prices as well as a kid friendly environment . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers five - star , family friendly service at a low price near the Rainbow Vegetarian Café . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , The Strada serves Chinese food at a moderate price range . It is child - friendly and has an average customer rating of a three out of five . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Riverside pub Clowns is a 3 out of 5 star , low cost venue . \nname : Cotto | price : moderate | area : city centre | near : All Bar One||Cotto , in city centre near All Bar One has moderate prices \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is priced below £ 20 and is family Friendly . It is located in the riverside area near The Rice Boat . With a low customer rating . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||A average high Fast food restaurant located near Rainbow Vegetarian Café called Strada \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family friendly Chinese restaurant located in the city centre that has a customer rating of 5 out of 5 . It has a cheap price range and is called The Waterman . \nname : The Plough | Type : pub | food : Fast food | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a kid friendly fast food pub near Café Rouge . It has high prices . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Chinese restaurant , The Rice Boat , is rated as average , high in price , and considered child - friendly . It is near Express by Holiday Inn and riverside . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||There is a restaurant in the moderate price range serving English food called The Dumpling Tree \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : city centre||With a good rating and cheap prices , Clowns is a Pub in the centre of the city . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||In the riverside area is The Waterman , a high rated Japanese venue . The price range is £ 20 - 25 and is not child friendly . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub serving Chinese food for a little more than £ 30 . They are located near Café Brazil . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||The pub Wildwood serves highly rated Fast food at prices ranging from £ 20 - 25 . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Blue Spice is a high end non children family restaurant located in the city centre . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||A coffee shop named The Punter has a moderate price range with Italian food . Not kids friendly and is near Café Sicilia with a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman is a one star rated pub which sells fast food . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater has an average customer rating . It is in the low price range and is located in the riverside area near Café Adriatic . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree is a highly priced British restaurant . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix - low priced fast food in the riverside area with great customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||In the city centre . the coffee shop The Eagle has an average customer rating for its Indian food and it is not children friendly . It is located near to Burger King . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : city centre||The Mill is a low priced Japanese Pub in city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Not far from Burger King is The Eagle coffee shop which offers a similar moderately priced menu . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced , kid - friendly , Chinese restaurant . It 's located in the city center near the Express by Holiday Inn . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||The Twenty Two near the river is not a family friendly restaurant . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||There is a cheap pub Wildwood providing Italian food with a less than £ 20 price range and low customer range . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two , an Indian food restaurant is children friendly . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap , family - friendly Italian restaurant near The Bakers . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||The Giraffe is an adults only pub serving Japanese food , located by the Thames . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman is a pub that serves Fast food . It is located in the riverside area and has an average customer rating . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is kids friendly Café Rouge near riverside serving French food as a rating of 1 out of 5 \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||There is an Indian food place called The Wrestlers that has a price range of less than £ 20 . It has a low customer rating and is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||There is a coffee shop The Golden Palace in the city centre . They serve Japanese , it is moderately priced and has low customer rating . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the city centre . It is near Clare Hall . Its customer rating is 5 out of 5 . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a place to eat in the high price range . It is located near the Rainbow Vegetarian Café and has been rated 3 out of 5 by customers . \nname : The Twenty Two | food : Italian | family friendly : yes||Family friendly , The Twenty Two serves Italian food . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||Browns Cambridge is a winery that is cheap . It has a three star rating . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry is a one star restaurant not suitable for families . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is located in riverside and offers Indian cuisine at less that 20 pounds . This pub is adults - only . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a one star coffee shop located north from the City Centre that is family friendly \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The Plough is a cheap family restaurant located near The Bakers . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||restaurant Strada has a customer Rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||Near the Ranch there is a cheap coffee shop called Wildwood . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is family - friendly coffee shop with Italian food . Located near The Portland Arms , it has a 3 out of 5 rating . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||There is a high - priced English food pub in Riverside called The Olive Grove that is children friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||I wouldn 't recommend Zizzi , the coffee shop on riverside . They 're family friendly , but you usually spend around 20 euros and they have a low rating . \nname : Blue Spice | price : less than £ 20 | area : riverside||An affordable price point is Blue Spice in the Riverside area . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||With a low customer rating the Children friendly French coffee shop in Riverside called Browns Cambridge is near Crown Plaza Hotel \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix is a 3 star restaurant located near the river . \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||The pub type eatery Zizzi is child friendly . It provides French food and has a customer rating of 3 out of 5 . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill is an Italian coffee shop in City centre , near The Sorrento , with average prices . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||You can find moderate price range fast food at The Cambridge Blue , a pub found near Café Brazil . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Phoenix is a Japanese eatery by the riverside , it has a rating of 3 out of 5 . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub which provides Chinese food . It has a customer rating of 1 out of 5 . It is kids friendly . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman Indian restaurant is rated 1 out of 5 , moderate in price as well as kid friendly is located in city centre . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : no||With a price range of more than £ 30 , Loch Fyne is a fast food restaurant that is not child - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Cheap Indian food is served at The Eagle , a coffee shop with a 5 out of 5 rating . It is not family friendly and located near Burger King at the city centre . \nname : Clowns | Type : coffee shop | food : French | customer rating : high | area : riverside | near : Clare Hall||A popular French coffee shop is Clowns in riverside near Clare Hall . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a high priced English restaurant near All Bar One . It is rated 1 out of 5 by customers . \nname : Alimentum | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is an Indian restaurant in riverside . It is kids friendly and the prices range from £ 20 - 25 . \nname : The Eagle | food : French | customer rating : high||The Eagle serves French food and has a high customer rating . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : no||A cheap pub for adults is Cocum which has excellent customer ratings . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located on the riverside , The Waterman offers excellent English food for low prices . Families with children are welcome . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Children friendly pup , The Dumpling Tree , near The Portland Arms \nname : The Twenty Two | food : Indian | area : city centre | family friendly : no||The Twenty Two serves Indian food , is near the city centre , and is not family friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is family friendly but only has an average customer rating . It serves Chinese food cheaply \nname : The Cambridge Blue | Type : pub | food : English | price : more than £ 30 | near : Café Brazil||A pub near Café Brazil called The Cambridge Blue sells English food that costs more than £ 30 . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Located near Clare Hall on the riverside , Bibimbap House serves fast food at mid level prices . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||The Fitzbillies near the Express by Holiday Inn is not kid friendly , has a price range of 20 - 25 , and a customer rating of 3 out of 5 \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly Japanese coffee shop named Taste of Cambridge that is located near the Crowne Plaza Hotel . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a family friendly Italian restaurant . \nname : The Phoenix | food : Japanese | customer rating : 1 out of 5 | area : riverside||There is a Japanese food The Phoenix with a customer rating 1 out of 5 located in the riverside . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop that serves Italian food in the riverside area . It has low prices and received a customer rating of 5 out of 5 . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix in the riverside area offers English food with an average rating . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : no||The Alimentum is located in the city centre with English food and moderate price range . It is not kids - friendly . \nname : The Vaults | food : English | price : moderate | family friendly : yes||If you 're looking for a kid friendly venue , with a moderate price range , come see us at The Vaults for some English food . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café its located a Italian food restaurant called Strada \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough near Express by Holiday Inn is not a family friendly restaurant . \nname : The Waterman | price : moderate | family friendly : yes||For a kid friendly restaurant with moderate prices is The Waterman restaurant . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Found near Burger King , The Eagle coffee shop provides mid - priced wine and cheese dining for the whole family . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a low - priced pub outside the city centre near Café Rouge that offers British meals for families . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is kid friendly serving English with a high customer rating located near Café Rouge in the riverside area . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : £ 20 - 25||Serving Chinese food , The Dumpling Tree is a restaurant with a price range between £ 20 - 25 . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||Alimentum is a family friendly English restaurant located near the riverside area with a cheap price range . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry serves Japanese food , It has a low customer rating and is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||The coffee shop The Cricketers is family friendly fast food place near The Portland Arms , that has a low customer rating \nname : The Punter | food : Chinese | price : more than £ 30||The Punter , a Chinese restaurant has a price range of more than 30 . \nname : Cotto | food : Indian | near : Café Rouge||There is a Cotto near Café Rouge . It is Indian . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||Loch Fyne is a fine dining restaurant and is child friendly \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Come to Strada near Rainbow Vegetarian Café for some cheap Japanese food . It 's not family - friendly , but has a 5 out of 5 customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the riverside area with a customer rating of 5 out of 5 where food will cost more than £ 30 near the Café Brazil \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap , Japanese food establishment near to the Rainbow Vegetarian Café with a customer rating of 5 out of 5 called Strada . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat is found near Rainbow Vegetarian Café with a price range of 20 - 25 Euros and a high customer rating . \nname : Loch Fyne | food : Italian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne located near The Rice Boat at the city centre is an average rated Italian restaurant . \nname : Loch Fyne | Type : restaurant | food : Indian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is an average priced family friendly Indian restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Five star Browns Cambridge is a family - friendly coffee shop that offers Indian cuisine near the riverside close to the Crowne Plaza Hotel . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Located in the riverside area , The Waterman is a kid friendly Chinese restaurant with a customer rating of 1 of 5 . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a fast food venue located in the riverside area of the city . It is child friendly and has a high customer rating \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : no||The Olive Grove pub located at riverside serves Italian food , is high in price range and is not children friendly \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , there is a kid - friendly Italian restaurant called Strada . It has a high customer rating , and is typically 20 - 25 . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : yes||There is a family - friendly pub called Aromi located near the city centre . It has an average customer rating . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||A family friendly pub , Giraffe serves fast food in the riverside area . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two Is a restaurant that serves Chinese food and it 's kids friendly \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee Shop , near the River Cam in Cambridge , has an expensive menu of seafood and sushi . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The family - friendly restaurant The Rice Boat is located near the Express by Holiday Inn within the city centre . It is rated low and serves French food with prices less than £ 20 . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||In the riverside area is The Twenty Two , a family friendly establishment serving Italian food . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : riverside | near : Clare Hall||Clowns , a decent riverside coffee shop near Clare Hall , serves Indian food . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||In the riverside area is a moderately priced restaurant called Zizzi . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no||The Olive Grove serves Japanese food in moderate price range . It is a kids friendly pub located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop which serve Italian food it is located in the city centre . It is not family - friendly even with an average customer rating plus a cheap price range . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a cheap pub that does not cater to families . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : city centre||In the city center The Waterman is located . They have Italian food and a low customer rating . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||in the city centre near The Portland Arms is a French serving coffee shop named Cotto , which has a customer rating of 3 out of 5 customer rating and a high price range . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The coffee shop in Riverside called Cotto has raving reviews for their cheap Italian food and coffee . We 're right next to The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop that offers French food with a price range less than £ 20 but it has a low customer rating . It is located in the city centre . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||On the riverside The Dumpling Tree is a more economic family friendly coffee shop near to Café Sicilia . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto Indian restaurant in Ranch is family friendly and average . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant in the riverside area , near to the Express by Holiday Inn . It is not family - friendly , has a customer rating of low and has prices in the less than £ 20 bracket . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a high price range coffee shop in riverside near Burger King . It has low customer ratings and it is not kids friendly but they serve Italian food . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum , a family friendly restaurant , boasts a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : English | price : £ 20 - 25 | area : riverside||The Mill is an English pub near the riverside and has a price range of £ 20- £ 25 . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat serves French food with great reviews located in city centre and is not family - friendly . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat , a family friendly Japanese restaurant with an average customer rating , is located in the riverside area . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||By the riverside is a pub named Clowns . The price range is above £ 30 and it has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry , serves English , has a customer rating of 1 out of 5 , and is children friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city centre is French coffee shop The Eagle serving dishes less than £ 20 \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is an average coffee shop near the riverside , great place for the children . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar , and the river , Alimentum serves English food . They have low prices and a low customer rating . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||There 's a Ranch out in Cotto that is children friendly and sells really good fast food . Their customer ratings is high \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a cheap - priced coffee shop The Eagle located in the city centre near Burger King providing 5 out of 5 Indian food and is family friendly . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Riverside area has a family friendly restaurant called The Twenty Two . You can 't miss the restaurant its right by The Rice Boat . The prices are perfect for a family . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough pub , located near Café Rouge , offers fast food at low prices in a child - friendly venue . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||For a quick bite to eat at an affordable price , the Wildwood is a decent establishment to try out . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Cheap Breakfast at the one star rated restaurant , The Wrestlers . No kids allowed . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Zizzi - a cheap restaurant by the riverside . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Close to Ranch is an average coffee shop , Wildwood , that serves cheap Italian food . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers , located next to The Bakers , is a one star sushi place that is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a reasonably priced coffee shop near to the river called The Golden Palace . They serve hot food and have a one star rating . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : no||In the riverside area , is the fast food restaurant called The Rice Boat . It is not family - friendly and has a customer rating of average . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : no||For a Japanese style eatery Alimentum seven moderately priced meals but does not welcome kids . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop located near Burger King in the city center . They serve Japanese food with prices ranging from £ 20 - 25 . They are kid friendly and have a rating of 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee show located along the riverside . It is high end with a customer rating 1 out of 5 , and is child friendly . \nname : The Phoenix | food : Indian | customer rating : 1 out of 5 | area : riverside||The Phoenix provides Indian food It is located in the riverside . Its customer rating is 1 out of 5 . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant in Riverside that serves high - priced Chinese food . It has a costumer rating of 1 our of 5 . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffeehouse and fast food eatery that is family loving and has modest value but however has low client rating . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : no||Green Man is a low price restaurant located in the city centre . It isn 't family - friendly . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a French pub by the riverside with an average customer rating . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an English food restaurant . It is located near the Express by Holiday Inn . The price range is high . Child friendly . Customer rating one out of five . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||There is an Italian restaurant called The Vaults , it costs above average and is kid friendly . \nname : The Eagle | food : Italian | customer rating : high||The Eagle is a highly rated Italian restaurant \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : no||Zizzi is a 5 out of 5 customer rated pub serving English food , it is not child friendly . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a highly rated , above average priced fast food establishment . It is child friendly and by the river . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||If you are looking for an English - style restaurant in the city centre , The Rice Boat , near Express by Holiday Inn , is a kid - friendly restaurant with a high customer rating and average prices of 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly Italian coffee shop located near Crowne Plaza Hotel in the city center and has good customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A family friendly venue , Cocum is a Japanese coffee shop that boasts low prices and high ratings . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat provides Italian food in a child friendly environment in the riverside area . The customer rating is high \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside area is a coffee shop named Zizzi . This children friendly place is in the high price range and has a 3 out of 5 customer rating . \nname : Strada | Type : pub | food : Indian | customer rating : high | near : Yippee Noodle Bar||Located near Yippee Noodle Bar , the highly - rated pub , Strada , serves Indian food . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a family friendly Chinese restaurant in the city centre . It has an average customer rating . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : city centre||In the city centre is The Waterman , a Japanese style pub \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves fast food . They are rated 1 out of 5 and are not family friendly . They are located near Crowne Plaza Hotel in the city centre . \nname : Cotto | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The children friendly Cotto has been rated 3 out of 5 . Cotto is located near Ranch , and serves Italian food . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat Serves Japanese food and is located near Express by Holiday Inn in the riverside area . Rated 3 out of 5 stars , High prices and not kid friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Near to Burger King in the city centre there is a highly rated coffee shop , The Eagle , which supplies Japanese refreshments for around £ 20 per meal . It is not child - friendly . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is an excellent family - friendly restaurant called The Rice Boat , it is mid - priced . \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Clowns is located near Café Sicilia . It is a low- priced restaurant . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||There is a highly rated coffee shop , The Cricketers , near The Portland Arms that provides Italian food and a child friendly experience . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers have a customer Rating of 1 out of 5 and with a moderate price Range it has Chinese food and is not kid Friendly \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill pub serves English food by the riverside for under £ 20 . \nname : The Eagle | food : English | customer rating : 1 out of 5||Offering English food , The Eagle has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge , offers food and beverage that tastes as good as it looks . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Yippee Noodle Bar is in the city centre near to Alimentum Fast food and has a customer rating of 1 out of 5 with a high price range . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||There is a coffee shop Aromi located in City Centre that is not family friendly . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is a family friendly Indian restaurant with an average customer rating . \nname : The Phoenix | food : Indian | customer rating : average | area : riverside||The Phoenix serves average rated Indian food in Riverside . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||Loch Fyne is a low priced sushi restaurant that isn 't family friendly . \nname : Green Man | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Chinese restaurant , Green Man , is located in the Riverside near All Bar One . It is child friendly and you can expect to pay between £ 20 - 25 . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | family friendly : yes||There 's a family friendly Indian restaurant with a rating of 3 out of 5 called The Golden Curry . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||In the riverside area near the Avalon , Blue Spice coffee shop offers a customer rating of 5 out of 5 with a price range of more than £ 30 . We are not children friendly . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Along riverside is the cheap Italian Blue Spice . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop is family friendly and located near Avalon . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man serves Indian food . It has a price range of less than 20 pounds and is located in the city centre area , near All Bar One . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly restaurant providing English food . It is located on the riverside near The Sorrento . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Customer rating is 1 out of 5 for The Waterman which offers kid - friendly , moderately priced French food in the riverside area . \nname : The Punter | food : Italian | price : cheap||The Punter is a cheap place for Italian food . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a French eatery near Café Rouge is kid friendly and affordable prices . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto is a moderately priced eatery , near All Bar One , in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Next to the river is located a 5 star rated and highly priced family coffee shop Fitzbillies , also selling noodles and wine . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near the Express by Holiday Inn . They have average prices , average ratings , and are family friendly . \nname : The Vaults | food : Italian | price : high | family friendly : no||The Vaults is an expensive restaurant that serves Italian food but is not children friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers English food near Express by Holiday Inn with non kids friendly services at a moderate price range . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Yes , there in the riverside exist restaurant with provide rank 3 out of 5 with moderate price is Blue Spice \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two is a children friendly restaurant that serves Indian food . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The lowest customer rated fast food joint down on the riverside is The Phoenix . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Japanese food in a family friendly environment . it has a high customer rating with a cheap price range . it is located in riverside near the Express by Holiday Inn \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a high - priced , well - reviewed family restaurant is a short distance from Express by Holiday Inn . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice is on the riverside . The average plate costs less than £ 20 . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is an Indian restaurant by the riverside with high reviews . It averages more than £ 30 and is not children friendly . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Chinese food in the £ 20 - 25 price range . It is near Rainbow Vegetarian Café . Its customer rating is high . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves French food and has a customer rating of 3 out of 5 . It is family - friendly and is located near Café Rouge , by the river . \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||Browns Cambridge is a expensive low rated venue . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||A children friendly coffee shop near Burger King called The Eagle , it is in the city centre and serves Italian with a price range of more than £ 30 with a high customer rating . \nname : The Olive Grove | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub that serves Indian food in the twenty to twenty five pound range near riverside . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is 1 out of 5 . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is great for fast food and you can bring your children along , located near The Bakers . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The family friendly Japanese restaurant The Golden Curry has very low customer ratings \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop with high customer rating in riverside near Clare Hall . The restaurant serves Fast food . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is low priced restaurant located in The Bakers . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a family - friendly Japanese restaurant . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : city centre||The Mill is a pub Indian less than £ 20 in the city centre . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||If you like to eat next to the river try Cotto which is an Indian - themed coffee shop near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies it is a cheap coffee shop providing Indian food . coffee shop is located in city centre . \nname : Blue Spice | food : English | price : moderate | area : city centre||Blue Spice is a new moderately priced restaurant serving English food located in the city centre . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no||The Olive Grove is a highly priced Fast food pub in riverside that is not child friendly . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a 5 star not so costly sushi restaurant for all the family \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada provides family friendly food for less than £ 20 . It is rated average by customers . \nname : The Eagle | food : English | customer rating : low||The Eagle is a one - star venue serving British cuisine that can be found near a school . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a pub named Giraffe that offers English food . They are family friendly and located near riverside . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a Japanese restaurant beside the river , located near Clare Hall . It has a low price range . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||A moderately priced restaurant that is located in the center of the city and serves Italian food is The Phoenix . However , it has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a exclusive coffee shop restaurant for the family , We have one start of experience and we are placed close to the river , around City Centre . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Near the riverside and Clare Hall , is Clowns which received 1 out of 5 stars . It is a fast food restaurant with a coffee shop vibe . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Japanese riverside area dining , The Rice Boat is not for families and is rated 5 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||The Italian pub named Strada has an average customer rating . It is near Yippee Noodle Bar . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a kid friendly place called The Waterman that has Italian food , it is high rated by its customers , and it is averagely priced . The Waterman is located in Riverside . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is pub by the riverside serves Italian food at moderate prices . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : no||The Rice Boat is a restaurant that specialises in Indian cuisine . It is located by the Riverside . Unfortunately it is not very family friendly and because of this is rated as an average Indian restaurant . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||There is a French coffee shop near The Portland Arms in the riverside area called Cotto . It has a high price range and a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Located in the riverside area is the family friendly coffee shop Fitzbillies which serves cheap food . It has a customer rating of 3 out of 5 . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : city centre||Clowns is a well rated pub located in the city area with affordable prices . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry is a family friendly restaurant that serves Fast food but has a low customer rating . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||There is an expensive coffee shop Cocum that provides French . It is children friendly but has a low customer rating . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Indian in the cheaper price range . It is located near Rainbow Vegetarian Café . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||The Waterman is a pub that serves Italian food . It is located near the riverside and has a high customer rating . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop with a moderate price range and a customer rating of 3 out of 5 stars . It also offers fast food and is moderately priced . It is near Ranch . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||There is a low customer rating family - friendly Japanese restaurant in Riverside near Café Rouge named The Golden Curry . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||The Fitzbillies is a moderate priced sushi bar located near The Six Bells . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is a pub that serves Japanese food for less than £ 20 . It is in the riverside area \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop with moderate pricing located in riverside near Burger King . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman providing English food . £ 20 - 25 price range , kids friendly and high costumer rating . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is a children friendly English pub by the riverside . It has high prices . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a low priced , low rated Japanese restaurant and coffee shop located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Fast food coffee shop , Browns Cambridge , boasts a 5 out of 5 customer rating and offers a family friendly environment on the riverside , near the Crowne Plaza Hotel \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle a family fast food coffee shop in the more than £ 30 range is located in Riverside near Burger King . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a place located in Cambridge providing French food . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : yes||In the city centre there is a kid friendly moderately priced Indian restaurant called Alimentum . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi , a highly - rated coffee shop in the riverside area , has a £ 30 price range and kid - friendly environment . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||There is a French restaurant in city centre near Yippee Noodle Bar . Alimentum is inexpensive and poorly rated . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is non - family friendly , Indian coffee shop in the city centre area . It is of a high price range with a low customer rating of 1 out of 5 . \nname : The Punter | food : Japanese | price : moderate||The Punter is a low to mid price sushi restaurant . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Family friendly , The Waterman near Crown Plaza Hotel serves fast food . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is near Café Rouge , it is a high priced family friendly pub . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers sells Indian food , price range more than 30 , high customer service rating , not child friendly \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat restaurant offers English food at cheap prices , located in the town by Express by Holiday Inn rated 5 . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada has a rating of 1 out of 5 with a moderate price . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House , in the riverside area , near Clare Hall , is a fast food restaurant with a price range less than L20 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is located in riverside and is open to customers of all ages who are looking to enjoy Indian cuisine . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is an Italian near Crowne Plaza Hotel and is a family friendly place \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee Shop located near Avalon in the Riverside area of the town . It has a low customer rating with the price range being less than £ 20 . \nname : Fitzbillies | food : Chinese | price : £ 20 - 25 | near : The Six Bells||For Chinese food that are in the price range of £ 20 - 25 is Fitzbillies . Located near The Six Bells . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a children friendly pub with a high customer rating and a price of more than £ 30 per head . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a kid - friendly , moderately priced French eatery near The Bakers . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a average family friendly restaurant . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you 're staying at the Express by Holiday Inn , The Rice Boat offers a kid - friendly fast food experience with high customer ratings and prices ranging from £ 20 - 25 . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree , located near The Portland Arms , offers Indian food and a child - friendly environment \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||In riverside area you can get cheap fast food in Blue Spice . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||A Japanese restaurant , The Dumpling Tree , starts at £ 30 for a meal . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Blue Spice has a customer rating 1 out of 5 and a moderate price range . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : no||The Olive Grove pub , serves expensive Indian food around the centre of the city . Unfortunately they do not cater for children . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||By the riverside area is The Eagle . The Eagle is in the moderate price range and has a customer rating of 1 out of 5 \nname : Loch Fyne | food : French | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||The Rice Boat in Riverside near Loch Fyne has a customer rating of 1 out of 5 serves French food . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||There is a child friendly eatery named Cotto that serves Chinese food and has average customer ratings . It is located near the Ranch . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop and Indian food place is near The Portland Arms , with a high customer rating . Kids welcome . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||A fast food restaurant that is a child friendly , is near Rainbow Vegetarian Café , and has a price range more than £ 30 is Strada . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||In the city centre there is a moderately priced coffee shop called The Golden Palace which serves Italian food . Customers have given it a rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||While the rating for this location is low , the price is than £ 20 . You will be dining at Italian restaurants . The location is The Rice Boat which is near Express by Holiday Inn . Yes , it is family friendly . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum can be found in the Japanese restaurant that is kid friendly . Prices range from £ 20 - 25 . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||With a price range of more than 30 there is a restaurant called The Golden Palace . \nname : The Eagle | food : French | customer rating : 5 out of 5||Highly rated The Eagle serves French food in the city centre . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a pub called Taste of Cambridge in Riverside near The Sorrento that is kid - friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Near the city center is a family friendly restaurant named Fitzbillies . It serves Indian food in the low price range . It has an average customer rating . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a high - priced coffee shop near Express by Holiday Inn , The Rice Boat , that provides low quality coffee drinks . It is opened to all age groups . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||There is a highly rated expensive restaurant Browns Cambridge . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that provides Chinese food It is near The Portland Arms . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a Chinese restaurant located near The Sorrento in the riverside area . It is adults only . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House is an Italian restaurant located near Café Rouge . It has received average reviews . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Blue Spice is child friendly in the area of city centre , with a low customer rating the price range is more than £ 30 . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||If you like highly rated Italian restaurants and are looking for something near Café Rouge , Midsummer House is an excellent choice . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge serves Italian food . It has a price range of more than thirty pounds and comes with a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly Italian coffee shop located near Crowne Plaza Hotel on the riverside . Customers find the shop to be average . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee ship which provides Japanese food . It is family friendly and has a price range of less than £ 20 ; it has low customer rating . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||In the riverside area , The Rice Boat is a family - friendly Indian place with average food . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A kid friendly restaurant that ranges in price from £ 20 - 25 is the Travellers Rest Beefeater . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a highly rated coffee shop near Crowne Plaza Hotel in the riverside area called Browns Cambridge . It serves Japanese food , and is child friendly . The customer rating is 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced coffee shop named The Wrestlers that serves fast food . The Wrestlers is Kid Friendly and is near Raja Indian Cuisine in the city centre . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is not family - friendly , but it is a cheap Italian restaurant on the riverside that was given a rating of 5 out of 5 . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Rated 3 out of 5 , The Clowns is a moderately priced pub in the Riverside area . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a fast food place in Riverside near The Rice Boat that has a 1 out of 5 customer rating . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue is a 5 out of 5 rated French restaurant \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Come to Clowns , for cheap pub food . On the riverside , 5 out of 5 \nname : The Eagle | food : Indian | customer rating : 3 out of 5||The Eagle is a low priced non kid - friendly Indian pub which has a 3 star rating , and is located near the riverside . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : average||Cheap but good . Browns Cambridge offers an affordable Chinese food option with average reviews . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers serves Indian food , 30 or more price range , high customer service , not kid friendly \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is an amazing Indian coffee shop near the riverside . You can expect to spend 20 pounds or so , and there really isn 't much for the kiddos . If you have trouble finding it , it 's near Burger King . \nname : Strada | Type : pub | food : Indian | customer rating : low | near : Yippee Noodle Bar||Strada is an Indian pub near the Yippee Noodle Bar . It has low customer ratings . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : yes | near : The Sorrento||The family friendly Browns Cambridge is an Indian restaurant in the city centre near The Sorrento . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||I know of a place called The Vaults , its great food for a great price , family friendly atmosphere . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a French restaurant near The Six Bells . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is a pub providing Indian food . It is based in riverside and is kid friendly . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a one star , family friendly restaurant near to Café Rouge in the City centre down by the river . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Welcome to The Eagle . We serve Japanese food and our price range is less than 20 pounds . We are a coffee shop and are family - friendly . We are located in the city centre near Burger King . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an inexpensive family friendly , Italian restaurant located on the river . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the centre of the city , close to Raja Indian Cuisine , The Wrestlers is a coffee shop offering Italian food . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children friendly coffee shop which serves Italian food , and is located near the Crowne Plaza Hotel by the riverside . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : no||A non - family friendly Indian restaurant that is moderately priced in Riverside is called Alimentum . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults , near Café Brazil in the riverside district , is considered a high priced coffee shop . Yet , it still gets good rating from its customers , a 3 out of 5 would highly recommended it to their friends and family . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a Japanese coffee shop near Burger King in the riverside area . It has a 5 out of 5 customer rating , cheap food and isn 't family - friendly . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a restaurant providing Indian deliveries over 30 . £ It is highly rated , great for children and is located in Riverside . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a less than £ 20 pub that delivers Italian food . It is located in the city centre near of The Sorrento . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is an English restaurant that is also kid friendly . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two offers family friendly Italian dining . \nname : The Eagle | food : Italian | customer rating : average||The Eagle is an Italian restaurant with an average customer rating . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is kid in the high price range with a customer rating of three out of five . It 's located near Express by Holiday Inn and is not children friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Japanese food found in the city centre close to Burger King . It is quite expensive but it does have good reviews . Families are not welcome . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||For cheap Italian options with a low customer rating , look no further than Midsummer House near All Bar One . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly fast food restaurant . It is near The Bakers and costs about less than 20 pounds . \nname : The Olive Grove | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Indian food in the more than £ 30 price range . It is located in the riverside . \nname : The Olive Grove | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes||In the Riverside area you can find a children friendly , pub type eatery that offers Japanese cuisine . This business has a high price range and is called The Olive Grove . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill is a moderately - priced English pub located next to the riverside . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman pub provides fast food with a low customer rating near the riverside area \nname : The Waterman | Type : pub | food : English | customer rating : 3 out of 5 | area : riverside||In the riverside area is a pub , The Waterman , with a customer Rating of 3 out of 5 that serves English food . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Despite the low customer rating , try Loch Fyne on the riverside near The Rice Boat for some English Food . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||North of the City centre , a sushi restaurant , the Alimentum offers a family friendly atmosphere . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Try The Golden Curry for a family - friendly French restaurant in the city centre . They 're near Café Rouge and have a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||If you 're looking for a family friendly coffee shop that serves fast food , you can go to Fitzbillies . The food is cheap , it 's rated 5 out of 5 by customers , and it 's located by the riverside . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||For Japanese food costing less than £ 20 , go to Blue Spice in riverside . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a child friendly Japanese restaurant that is located at the riverside near The Sorrento . \nname : Green Man | food : English | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is a high price range restaurant serving English food in the Riverside area . It is near the All Bar One and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre is located a coffee shop named Fitzbillies that offers Fast Food with a cheap price range . It has a customer rating 5 out of 5 , there is no family area . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a low - rating Indian restaurant in the Riverside area . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside are near Express by Holiday Inn , is the family friendly cheap Fast food outlet called The Rice Boat . It has a customer rating of 5 out of 5 . \nname : The Vaults | Type : restaurant | food : Japanese||If you like Japanese food , try The Vaults . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving cheap food in the riverside area . It is family friendly and has a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||coffee shop which is children Friendly with customer rating of 5 out of 5 is The Cricketers serving French food located near The Portland Arms \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Pasta at the Midsummer House located near the All Bar One . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a fast food outlet for families locates by the river . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a low priced Italian coffee shop place with a 1 out of 5 rating in the city centre near The Portland Arms . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat provides Indian food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing food in the low range price . It is family friendly and is located near Burger King . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a coffee shop that provides French food located in riverside . Its customer rating is 5 out of 5 and it is not family - friendly . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a fast food restaurant located in the city centre , near to Yippee Noodle Bar . It is cheap and has an average customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a 1 star , family friendly coffee shop providing Japanese food , it its in the low priced market . It is located close to Café Sicilia . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||Aromi , which is not family - friendly , is a low rated French coffee shop at the riverside . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||If you are looking for a kids friendly place then Cotto is the place to go near Ranch it serves English food although has a customer rating of 1 out of 5 . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix , in City centre , has moderately priced English food . It has a 3 out of 5 rating . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House is a Italian food . It located near riverside near Clare Hall . The price range is high . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the city centre . It is near Burger King . Its customer rating is high . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||There is a Japanese restaurant named Aromi in the Riverside area . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||Wildwood is a pub with high prices , but with delicious food . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||There is a highly rated Italian style coffee shop with prices above 30 pounds named The Eagle . It is near Burger King in the city centre . It is not child friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||The Cambridge Blue is a cheap , Italian pub near Café Brazil . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : yes||Alimentum , located in the city centre , has average prices , serves English food , and is child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree , a restaurant provides fast food at a moderate price . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto is a Chinese restaurant with a high customer rating , it is kid friendly , and is near Ranch . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||Alimentum is a moderately priced Japanese establishment in the Riverside area . It is child friendly . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : no||The Twenty Two offers Fast Food . It is located in the city centre and there is no family area . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||The customer rating of The Golden Palace riverside restaurant is average . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is and average family - friendly restaurant that offers cheap fast food . It is near Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree is a restaurant that offers inexpensive food and drink . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge customer rating is high . Their prices are £ 20 - 25 . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The kid friendly and highly rated The Wrestlers provides Chinese food that has an average price range . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne fast food in riverside has a high customer rating a great place to eat . Near The Rice Boat . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge provides take away as well as stay in dining . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is located by the river near Café Adriatic . It has a high price range and a three star rating . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a children friendly Chinese restaurant with a high customer rating . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||Good value , Italian food at Bibimbap House , near Clare Hall in the riverside area . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||There is a Japanese restaurant called The Cambridge Blue . It has a low customer rating . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||A family friendly pub is the Taste of Cambridge and it is near The Sorrento in riverside . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||A nice kid friendly coffee shop near Avalon , is Blue Spice . The coffee place has moderate prices and a lovely riverside location . Overall I give it 1 out of 5 stars , mostly due to personal issues . \nname : The Phoenix | food : English | customer rating : low | area : riverside||The Phoenix does not have very good reviews . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree is a restaurant that sells high priced English food \nname : Fitzbillies | food : Japanese | price : cheap | near : The Six Bells||Fitzbillies is located near The Six Bells serving Japanese food at cheap price \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub providing Chinese food for less than £ 20 . It is a family friendly environment located near Café Rouge . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly French food establishment with an average price range . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop that serves Indian food for a cheap price . Fitzbillies has an average customer rating and they are located in the center of the city , and they are not family friendly . \nname : Bibimbap House | food : French | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House has a price range of less then 20 dollars . They serve French food . Located near Clare Hall in the city centre area . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : city centre||In the city centre there 's a restaurant priced less than £ 20 called Zizzi . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low - priced coffee shop near Raja Indian Cuisine that provides pasta . \nname : The Eagle | food : Indian | customer rating : 1 out of 5||The Eagle has a 1 out of 5 customer rating and serves Indian food . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is average priced coffee shop with average customer rating . It is located in The Portland Arms . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||A family friendly place , Strada is on the riverside . It has an average customer rating . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant located near Rainbow Vegetarian Café , has a high price range , was rated 3 out of 5 by customers , and is child - friendly . \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||An average priced take - away on the riverside is Blue Spice . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada has a cheap price range located near Rainbow Vegetarian Café with a customer rating of 5 out of 5 . French food , not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Indian food at a price range of over £ 30 . It is on the riverside , is child - friendly and is near Raja Indian Cuisine . \nname : The Waterman | price : cheap | family friendly : yes||If you are looking for a cheap family , friendly restaurant , The Waterman is the place for you . \nname : Wildwood | Type : restaurant | family friendly : yes||There is a child friendly restaurant . It is named Wildwood . \nname : Midsummer House | food : Indian | customer rating : average | near : Café Rouge||Near Café Rouge is an Indian restaurant with average customer ratings , called Midsummer House . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||The Browns Cambridge is yes with French near The Sorrento at riverside \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||French food is not family - friendly . It is named Strada , with a cheap price range near Rainbow Vegetarian Café with a customer rating 5 out of 5 . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a higher priced French restaurant with a customer rating of 3 out of 5 . It is located in the riverside area near Yippee Noodle Bar . \nname : Alimentum | food : Chinese | price : cheap | area : riverside | family friendly : yes||Alimentum provides Chinese food in the cheap price range . It is located in the riverside . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 3 out of 5||The Cambridge Blue restaurant features Indian food and has a customer rating of 3 out of 5 . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : city centre||Clowns is a well rated pub with affordable prices , located in the city area . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man in riverside is located near All Bar One . Expensive place to take the family to enjoy highly recommended English cuisine . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Rainbow Vegetarian Café is an average priced restaurant near Strada that serves Italian food . It is rated highly by customers but it is not kids - friendly . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||There is a French coffee shop called The Mill that is average price range is £ 20 - 25 . The Mill is located near The Sorrento in Riverside . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||In the city centre there is moderate priced Indian restaurant called The Phoenix is has an average rating . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Japanese food and is located near Café Rouge in the city centre . It has a low customer rating and is not family - friendly . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a fast food pub . It has a customer rating of 3 out of 5 and is kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an average rated coffee shop providing Italian food . It is located in the city centre near Crowne Plaza Hotel but is is not family - friendly . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||Come try our new coffee shop The Vaults , located near Café Brazil . We have high customer ratings and prices ranging from 20 - 25 . This beautiful riverside eatery will surely be a favorite . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , Indian restaurant , riverside area , near Express by Holiday Inn , prices from £ 20 - 25 , high customer rating \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Serving French food in the riverside area is the Blue Spice which is in the £ 20 and lower price range . \nname : The Vaults | Type : restaurant | food : Italian||There is an Italian restaurant called The Vaults . \nname : Zizzi | Type : restaurant | price : moderate | area : city centre||Zizzi is a moderate price range restaurant located in city centre . \nname : The Phoenix | food : English | customer rating : average | area : riverside||English food is served by The Phoenix by the riverside . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Mediocre Browns Cambridge is a fast , family - friendly coffee shop new Crowne Plaza Hotel in the city centre . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly pub near the riverside which has a low consumer rating . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Located near All Bar One in the city centre , Green Man is a moderately priced , family - friendly Japanese restaurant . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a kids friendly Fast food restaurant . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is in the city centre , it serves English food , is adult only , has a customer rating of 5 out of 5 and is near the Café Rouge . \nname : The Golden Curry | food : Indian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Located near The Bakers you will find The Golden Curry offering Indian food . They are price ranged less than £ 20 - 25 and are kids friendly . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||A low - rated French restaurant , The Wrestlers has a price of only £ 20 a person . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with French food . It has a 1 - 5 customer rating , and is kid friendly . It is in the area of riverside and near Crown Plaza Hotel . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman sells Indian food and is located in the riverside area . It is not children friendly . Although the price range is usually more than £ 30 , customer rating for The Waterman is high . \nname : The Eagle | food : English | customer rating : 1 out of 5||English food is offered at The Eagle , with a 1 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : high | family friendly : yes | near : The Portland Arms||Check out The Cricketers , coffee shop near The Portland Arms . Drop by with the family to enjoy high quality Japanese food . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat in Riverside rating of 5 out of 5 , serves Italian food and is family friendly . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||A decent French restaurant near Café Rouge is Midsummer House . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant that is cheaply priced . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Kids - friendly , The Golden Curry , situated near Café Rouge with a riverside location serving French food with a customer rating of 1 out of 5 \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : city centre||The Mill is a pub that serves Italian food for less than £ 20 . It is located at the city centre . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop in the average price range . It is located near The Portland Arms . \nname : Bibimbap House | food : Chinese | price : moderate | area : city centre | near : Clare Hall||The Bibimbap House serves moderately priced Chinese food located near the city centre and the Clare Hall \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Cotto near Ranch is a highly - rated child - friendly Italian restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||A coffee shop in the city centre near Crowne Plaza Hotel is Browns Cambridge . They are rated 1 out of 5 . They serve fast food and are not family friendly . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||Riverside pub , The Mill offers high priced fast food . \nname : The Vaults | food : Indian | price : £ 20 - 25 | family friendly : yes||The Vaults serves Indian food with a price range of £ 20 - 25 and is kid friendly . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman is a French pub with a low customer rating located in riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children friendly Italian coffee shop along the riverside near Crowne Plaza Hotel . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||The Loch Fyne is a relatively cheap family friendly restaurant that serves Italian food . \nname : Blue Spice | food : Indian | price : moderate | area : city centre||Blue Spice provides Indian food in the moderate price range . It is located in the city centre . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||A Chinese restaurant with cheap food and an average customer rating called Alimentum is located near the Yippee Noodle Bar in the riverside area . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||In Riverside , there is an expensive Japanese restaurant named The Phoenix with a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace coffee shop offers burgers and fries . It has a low - priced menu . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop with a high customer rating near Avalon . The price range is more then £ 30 and it is a family friendly environment . they are located in the riverside area . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : no||Unfortunately , The Rice Boat , though family - friendly , is a low - rating , Italian restaurant in city center . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : no||In the center of the city there is a family - friendly restaurant named The Olive Grove . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an Italian restaurant near Express by Holiday Inn in the city centre with a high customer rating . It 's called The Rice Boat and is not kids friendly and will cost in the range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop located in the city centre . It is cheap , family - friendly , and has been rated by its customers as a 5 out of 5 . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||For a pub serving Italian food that is kid - friendly , visit Giraffe in riverside . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns friends ain 't cheap at Café Sicilia . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : no||Zizzi is not a family friendly pub that serves Indian food for a average price . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||At a 5 out of 5 customer rating in the city centre , Alimentum near Yippee Noodle Bar sells English food at cheap prices \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||Family friendly and inexpensive place to eat burgers and fires , The Golden Curry . It is near to The Bakers . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two near The Rice Boat along the riverside , has a price of more then 30 euros , and is not children friendly however has high ratings at 5 of 5 with customer ratings . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||on Loch Fyne there is a kid friendly Italian restaurant with moderate prices . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is The Waterman . It serves fast food and is family friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||In the riverside area , head to Cotto , a coffee shop serving Japanese food rated 5 out of 5 by customers . Prices are low , and it is near The Portland Arms . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two kid friendly restaurant serves English food its located by the riverside . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||There is an average customer rating cheap pub in the city Wildwood and they serve Japanese food . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood is a fast food pub with medium pricing and is also rated as a 3 star restaurant \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||In the city centre there is an expensive fast food pub called The Mill . \nname : Loch Fyne | food : English | customer rating : average | area : city centre | near : The Rice Boat||Located in the centre of the city near The Rice Boat is Loch Fyne . It provides English food and has an average customer rating . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||There is a family friendly Chinese restaurant in the moderate price range with 3 out of 5 rating , called The Wrestlers . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is an Indian restaurant in the city centre . It is inexpensive and is not family friendly . It is near All Bar One . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||out of 5 English moderate in Browns Cambridge \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is a pub with Indian food , has a high customer Rating and is kid Friendly . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : riverside||The Phoenix provides Indian food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers Indian food . Its prices are more than £ 30 but it has a high customer rating . It is located in the city centre near Burger King and it is children Friendly \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap , family friendly restaurant serving English food . It has a low customer rating and is near the Rainbow Vegetarian Café . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a restaurant that provide Japanese food . This site is for children , is very friendly , and the customer rating have a range 3 out of 5 . Cotto is located near Ranch city . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves mid - priced American food . It is located near Express by Holiday Inn . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||Browns Cambridge offers average fast food in an average price range . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low rated , family friendly , medium cost restaurant near Rainbow Vegetarian Café . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Aromi is a fast food restaurant by the riverside \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man serves fast food and is located near All Bar One in the city center . It is family - friendly and is low priced . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||The Dumpling Tree is an Italian restaurant with low prices . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House , providing 1 star value meals close to All Bar One . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a high pried restaurant called The Wrestlers with 1 out of 5 customer rating that provides English food . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes||The Olive Grove is a pub within the city centre that serves Indian food . The pub is children friendly and within the high price range . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Waterman is a non child friendly restaurant that sells French food for those with a price range of 30 euros or more . It is located in Riverside and has a low customer rating . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||High prices and average customer rating can be found at Clowns in Riverside . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : no | near : All Bar One||Come try the Green Man . It is located on the riverside near All Bar One . They sell moderately priced French food , and there are no kids allowed . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||Near the Ranch you will find the averagely rated Cotto . It serves English food and children are welcome . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge providing French food . It is located in riverside area near The Sorrento . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||A coffee shop near Café Sicilia in the riverside area is The Dumpling Tree . It is low priced and family friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Customers love the new coffee shop named Zizzi , it is kids friendly , has a nice price range of 20 - 25 £ and is located on the riverside . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop that serves Indian cuisine . It is not kid - friendly , has mediocre ratings and is pricey . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice is a moderately priced restaurant in riverside . It has high customer ratings and it is not kids friendly . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant near The Six Bells with a price range of £ 20 - 25 . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||There is a average -priced restaurant The Waterman located in the city centre that provides Fast food with high customer rating . It is no kids friendly . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop in the riverside area . It is not family - friendly and it is near Café Sicilia . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn , there is a family friendly place serving cheap Italian food called The Rice Boat which has a customer rating of 5 out of 5 . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||With a 3 out of 5 rating and a kid friendly atmosphere and moderate price range the Fast food restaurant Strada is located near Rainbow Vegetarian Café . \nname : Blue Spice | food : Chinese | price : £ 20 - 25 | area : riverside||Located in riverside The Blue Spice serves Chinese food in the price range of £ 20 - 25 . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop with Japanese food and is near Crowne Plaza Hotel . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near to Raja Indian Cuisine that is child - friendly . It has a high price range but is located in riverside \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne restaurant offers a great family atmosphere . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a fast - food place in the riverside area near Café Rouge . It has an average customer rating and is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge coffee shop is for the whole family and serves Japanese style food . It is in the City center . close to the Crown Plaza Hotel . \nname : The Olive Grove | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes||There is a cheap pub in the Riverside area that offers family friendly French food called The Olive Grove . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum located in City Centre is a family restaurant . \nname : Fitzbillies | food : Chinese | price : high | near : The Six Bells||Near The Six Bells is a high priced establishment called Fitzbillies that serves Chinese food . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a cheap English restaurant . Although it is not family - friendly , it receives high ratings from customers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a 1 - star cheap coffee shop The Eagle located beside Burger King that provides fast food . Families are welcomed there . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a cheap family friendly sushi restaurant . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||Located by the riverside , The Phoenix provides cheap fast food and has been rated average . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne serves Chinese cuisine at a well - respected restaurant near The Rice Boat in Cambridge 's city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a highly priced coffee shop in the city centre . It is not a child friendly place and has average customer ratings . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Zizzi is an affordable restaurant located in riverside . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman in the riverside area is kid friendly and serves moderately priced English food . Diners give it a 3 out of 5 rating . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle which serves Japanese food has a low customer rating \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||The Golden Palace coffee shop has a high price range and serves Italian food . It has a three star rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop that serves burgers , has 1 star , and is high - priced . It is located near Ranch . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||A restaurant with food over £ 30 is The Travellers Rest Beefeater . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Given a 5 out of 5 rating by customers The Punter is located near Café Sicilia . This cheap , family friendly coffee shop also serves Indian cuisine . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The Plough pub is kid friendly and serves moderately priced English food . It is near Café Rouge . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kids - friendly coffee shop providing moderately priced Italian food . Customers rate it 1 out of 5 .. \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle is rated at 5 out of 5 . It is situated in the area of Riverside , slightly expensive prices are £ 30.00 or more . \nname : Green Man | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is an averagely priced Indian located near All Bar One . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter , near Café Sicilia , is a kid friendly coffee shop . It serves Japanese food with a price range of L20 - 25 and has a high customer rating . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||The Zizzi is a restaurant in the riverside area and is moderately priced . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : less than £ 20||The Dumpling Tree is a restaurant providing Chinese food in the low price range . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum at Riverside near Yippee Noodle Bar serves fast food at moderate prices with a customer rating of 1 out of 5 \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop serving wine and hors d 'oeuvre . They are located along the riverside near the Crown Plaza Hotel and have a one - star rating . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||An English restaurant with a cheap menu is called The Dumpling Tree . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is a children friendly French food place with prices starting at £ 30 \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Express by Holiday Inn is a cheap restaurant located in Fitzbillies the centre of the city that provides take - away deliveries . Customer rating 5 out of 5 \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||There is a children friendly coffee shop near Avalon in Riverside called Blue Spice . Their customer rating is high with the price range more than £ 30 \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One in the riverside area is the Green Man serving cheap Italian food in a family friendly environment . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the riverside area , near Café Brazil . It has a customer rating of 3 out of 5 , and has a moderate price range . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves Japanese food , is kid friendly and located near The Sorrento at the riverside . \nname : Blue Spice | price : high | area : riverside||Blue Spice is a high cost venue located in riverside \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is located in riverside near The Sorrento , providing English food . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : no||In the city center you can find The Twenty Two serving Indian food . They are not family oriented . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a Italian coffee shop located near The Portland Arms . It 's kids - friendly . Customer rated it 3 out of 5 . \nname : Strada | Type : restaurant | customer rating : high||Strada a restaurant with a high customer rating \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant offering Japanese food near Yippee Noodle Bar in Riverside . They have a rating of 3 out of 5 and are in the higher price range . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : yes||The Twenty Two is Italian Food located in the city centre . It is a family - friendly place . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is a low priced restaurant near All Bar One at the riverside . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop serving Indian food near Café Sicilia . It is children - friendly , in the high price range and has a low customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a non family friendly coffee shop serving Indian food for less than £ 20 near Café Sicilia . It has received low customer ratings . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a non children friendly Japanese coffee shop located in the city near Burger King with a customer rating of 3 out of 5 and high price range . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : no||The Olive Grove is a restaurant located in the city centre area . It is not family - friendly . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is a low - priced coffee shop in the city centre near Café Brazil that delivers take - away excellent ratings \nname : Strada | Type : pub | food : Fast food | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Near Yippee Noodle Bar , there is a Pub , called Strada , that 's fast food , with a customer rating 5 out of 5 . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a moderately priced Italian restaurant near the Rainbow Vegetarian Café called the Strada . It is not suitable for children and has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood coffee shop serves cheap Indian food . It is located near Ranch and has a customer rating of 5 out of 5 . \nname : Blue Spice | food : English | price : moderate | area : riverside||The Blue Spice is by the riverside and serves English food at a moderate price range . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop type Italian restaurant in the moderate price range with kids friendly atmosphere . It is located in the city centre near Burger King with a customer rating 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a family - friendly Italian coffee shop located in the city centre . It has a 5 out of 5 customer rating . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a family friendly pub serving English food in the riverside area . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||Highly recommended Italian food can be found in the city centre at The Phoenix from £ 30 . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House offers Japanese cuisine for more than 30 euros . They have an outstanding customer rating of 5 out of 5 . Located near All Bar One . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : yes | near : All Bar One||There is a high - priced children friendly restaurant called Green Man located near All Bar One in the city centre area . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : no||The Twenty Two is not family - friendly even though it serves Italian food . It is located in the city centre area . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : yes||A fast food place named The Twenty Two is family - friendly and around the city center . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry , near Café Rouge in City centre , has fast food with a low rating . It is not family friendly . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The Golden Curry is high rated kids friendly and serves Italian food . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a family - Friendly pub fast food of average customer rating \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a five star cheese and wine restaurant in the medium price range . It is located near All Bar One . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a place offering Chinese food . They are located riverside with a customer rating of 1 out of 5 and are kids friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly coffee shop Browns Cambridge located in City Centre near Crowne Plaza Hotel . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat , located near Rainbow Vegetarian Café , is a high priced restaurant . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves Indian food near Rainbow Vegetarian Café . They have a above average price , are not kid friendly , and sit with a 3 out of 5 rating . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill serves Japanese food . It is a pub on the riverside and the price range is less than 20 . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter kids eating Italian food at coffee shop near Café Sicilia moderate . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada offers Chinese food with a price range of more than £ 30 . The customer rating is high ; however , Strada is not children friendly . Strada is near Rainbow Vegetarian Café . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : yes||Alimentum is a moderately priced kid friendly English restaurant , located in the city centre . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||the Chinese place that is child friendly near Ranch called Cotto has a rating 1 out of 5 \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||The Dumpling Tree is a fairly priced Japanese restaurant \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop that serves Italian food . It is located near The Portland Arms and has been rated 1 out of 5 by customers . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a Average rated coffee shop with medium prices . They are located near Café Brazil . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a restaurant near The Six Bells with a high price range . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||There is a child friendly pub , which an average customer rating which serves English food named Zizzi . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap family friendly coffee shop that offers Italian food and is located next to the Burger King . \nname : The Eagle | food : Chinese | customer rating : 1 out of 5||The Eagle serves Chinese food and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle Shop and Burger King is a fast food restaurant are located north of the City center . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||a good Fast food place is Fitzbillies is near The Six Bells with prices more than £ 30 \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . Priced less than £ 20 . Low ratings and not kid friendly . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 3 out of 5||Browns Cambridge provides Chinese food in the moderate price range . Its customer rating is 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a exclusive coffee shop restaurant for the family , We have one start of experience and we are placed close to the river , around City Centre . Visit us . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||The Bibimbap House is located near the Clare Hall and it is moderately expensive . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a pub with a price range of less than 20 Euros . It has a low customer rating and is family friendly . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||There is a cheap and average rated coffee shop close to Café Brazil on the riverside . It is called The Vaults . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies is not very expensive super market , located next to The Six Bells . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum . a 3 stars rated Italian restaurant offering good food at great price . Located in Riverside near Yippee Noodle Bar . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French restaurant near Express by Holiday Inn in the city centre . It has a high customer rating at prices range from £ 20 - 25 , but it is not kid friendly . \nname : Strada | Type : pub | food : Indian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Near Yippee Noodle Bar is the Strada pub . It serves Indian food and is given a 3 out of 5 rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee Shop . It is located in riverside area . High price range and have 3 out of 5 costumer rating . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||The Fast food pub , Wildwood offers cheap food , with a customer rating of 5 out of 5 . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Vaults is a cheap , family friendly restaurant serving Italian food . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||It is not recommended that you eat at The Golden Curry where they have Italian food for the entire family . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue is low - rated fast food restaurant . \nname : The Phoenix | food : English | customer rating : high | area : riverside||English food is served at The Phoenix . It has a high customer rating and is in the riverside area . \nname : Aromi | Type : restaurant | food : Chinese | area : city centre||Aromi is a Chinese restaurant in the city centre . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no||Cocum is a coffee shop which offers the theme of French food for less than £ 20 . Although the rating is average and it is not family - friendly it is a good place to go enjoy a coffee . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides top rated Italian at riverside , over by The Rice Boat . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto , near The Portland Arms in the city centre , is a French coffee shop with a customer rating of 3 out 5. its prices fall within the £ 20 - 25 mark . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap 5 out of 5 rating family - friendly restaurant in the city center near Express by Holiday Inn . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant providing food in the £ 20 - 25 price range . It is located in the city center , near Yippee Noodle Bar , and has a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes||A moderately priced fast food pub near the city centre with a kid friendly environment is The Olive Grove . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : no||Alimentum is a Chinese restaurant near the city centre . It is not kid friendly and has a moderate price range . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is moderate price range English food restaurant situated in city center with customer rating 3 out of 5 . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice in Riverside has a moderate price Range . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is child friendly . Their rating is low . The restaurant is a pub and prices are more than £ 30 . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Near to Café Sicilia is The Twenty Two pub which holds a low customer rating . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe near The Bakers is a children friendly coffee shop . It has a high price range and a customer rating of 3 out of 5 . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix provides Indian food with price ranges from £ 20 - 25 with a high customer rating in the centre of the city . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : city centre||If you are looking for a restaurant with a low costumer rating , go to the city center to The Eagle and pay more than £ 30 . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Near The Rainbow Vegetarian Café , with a high customer rating the Strada is kids friendly serving Italian food priced at £ 20- £ 25 \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The French restaurant , Strada , near the Rainbow Vegetarian Café , has high prices , a low customer rating , and is not family - friendly . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman by the riverside sells English food and is child friendly . It has a high customer rating and prices are typically between £ 20 - 25 . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||It is not a family - friendly place , but Alimentum , in City centre , has English food with low pricing . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace , is high customer rated coffee shop located within the City Centre that serves high customer rated Indian food . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a children friendly and has a customer rating of 1 out of 5 . They offer Chinese food at a high price range and located near Rainbow Vegetarian Café . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Chinese food at £ 20 - 25 prince range , high customer rating . Kids are friendly . Locate near to Rainbow Vegetarian Café . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||High price range and children friendly place called The Golden Curry , near The Bakers , serves Fast food . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge customer ratings are average although their price range is higher . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a restaurant with moderate prices . It 's food is kids friendly \nname : The Rice Boat | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid - friendly Italian restaurant in a Riverside area . It has a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for higher priced fast food in a child friendly environment , consider The Wrestlers coffee shop . Located in the riverside area , near Raja Indian Cuisine . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||Zizzi is a pub serving Italian food for adults and has a low rating . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is an Indian pub which is kids friendly and located in the riverside area . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||There is a cheap Indian restaurant Alimentum located near Yippee Noodle Bar in the City Centre . It has an average customer rating . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is 1 out of 5 . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge has a price range that is less than £ 20 . It has a low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : low||The Cambridge Blue is a Chinese restaurant . Currently with a low customer rating . \nname : The Punter | food : Chinese | price : more than £ 30||There is a Chinese restaurant that is called The Punter that has a price range of more than 30 . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||A non child friendly coffee shop with a 1 out of 5 customer rating is Cocum . They serve Italian , and have a high price range . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||Cocum is non - family - friendly restaurant with a low customer rating . \nname : Loch Fyne | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Fast food restaurant in Riverside near The Rice Boat . Customers give it 3 stars out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The city centre hosts a Japanese coffee shop called Fitzbillies . They are kid friendly , moderately priced and named Fitzbillies . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||In the riverside area , near Avalon , is a kid friendly coffee shop , with a 3 out of 5 customer rating and a price range of 20 - 25 pounds . It is called Blue Spice . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : yes||The Olive Grove serves English food in a pub style . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Below £ 20 you can have a meal in a family - friendly restaurant in riverside . Just come and visit Blue Spice and see for yourself . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is around riverside near The Rice Boat . It is child friendly , costly and has an average rating . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is a low price restaurant that serves Japanese food \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||There is a restaurant that offers Japanese foods in the Riverside area . Its name is Blue Spice and it offers food generally within the £ 20 - 25 range . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman serves cheap French food . It is situated in the city centre and is family - friendly . It has a 5 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||Loch Fyne is a Japanese restaurant and is not family - friendly . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a five star restaurant located near All Bar One . The prices are average . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Italian food is found at The Punter located near Café Sicilia . It is a coffee shop that is not family - friendly with a low customer rating and a price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is and Indian style coffee shop with highly rated food at a low price . It can be found in the city centre by the Burger King and is not family friendly . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is an expensive non - children friendly fast food , rated 1 out of 5 and located on the riverside . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||A kid friendly place to get French food in the city centre is the Waterman . Yes , it has I high customer rating and a price range of £ 20 - 25 . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant in Cambridge near the Crowne Plaza Hotel . The Waterman is not a family - style restaurant . The Waterman serves wine . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Near Burger King in riverside is low rated Japanese coffee shop The Eagle . It is child friendly with dishes more than £ 30 . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum , a family - friendly pub , is average in both customer ratings and price range . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Plough has a high price range is near The Plough . It is a children friendly restaurant . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is an average quaint little coffee shop located nearby The Portland Arms . The Cricketers is a family friendly atmosphere which serves an array of French pastries and savory delights to indulge in with a nice cup of coffee . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Take a trip to Riverside , and down the road from Burger King you 'll find The Eagle , an Italian coffee shop with good food , moderate prices , and good customer ratings . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||The Twenty Two is a restaurant providing take - away deliveries in the low price range . It is located off of Chesterton Road by the river . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : no||Zizzi is a fast food pub with an average customer rating . It is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high priced Italian restaurant and coffee shop in the city centre near Raja Indian Cuisine . It is children friendly . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a restaurant offering English food located in the city centre . It is a kids friendly restaurant with an average price range of £ 20 - 25 and customers rating it high . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop serving Japanese food in the riverside , which is family friendly but the customer rating is low . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : moderate||The Dumpling Tree is a Chinese restaurant in the moderate price range . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman offers high priced fast food in a children friendly atmosphere . They are located in the Riverside area and have an average customer rating . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||There is an English restaurant Midsummer House in the cheap price range located near All Bar One . It gas a 5 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : 3 out of 5 | area : riverside||A pub by the river , The Waterman , rated 3 out of 5 , serves Italian style food . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada has a customer rating of 1 out of 5 with a price range of moderate and is kids - friendly \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly French restaurant with a low customer rating located near Café Rouge in riverside . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||English food is served at Midsummer House but only rates 1 out of 5 . It can be found near Café Rouge . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The Waterman is an English pub located near the riverside with average customer Rating . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Bibimbap House has inexpensive English food . It is located in the riverside area , near Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop that provides cheaply priced Fast food . It is rated 5 out of 5 and is located near the city centre . \nname : The Rice Boat | food : Chinese | area : riverside||There is a Chinese food provider called The Rice Boat . It is by the riverside \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap restaurant serving English food near Rainbow Vegetarian Café with a rating of 5 out of 5 . It not family - friendly . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a one star , medium priced whole foods restaurant good for the whole family . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Near The Rice Boat is a Fast food place called Loch Fyne with average customer rating , located by the riverside . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is the place to take your family for a high quality dining experience . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle offers a calming yet classy environment with is five star rating and location on the river . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly , fast food , pub near The Portland Arms . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Cotto offers Italian cuisine in Ranch . The Cotto children friendly and highly rated among patrons . \nname : The Vaults | food : French | price : moderate | family friendly : no||The Vaults is a French eatery with a moderate price range . It is not kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is a three star low - price coffee show located in North City Centre called The Eagle . If you are looking for it you can use the Burger King nearby as a landmark . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||There is a family - friendly restaurant near Café Rouge in the city centre offering fast food . It is called The Golden Curry and it has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||The non family - friendly Loch Fyne restaurant which does French food has a price range of less than £ 20 . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||If you are seeking an average performing kid friendly pub near Ranch , then you must give The Cricketers a shot . \nname : The Twenty Two | food : French | family friendly : no||The Twenty Two is a non - family - friendly French restaurant . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||Come to Browns Cambridge at 23 Trumpington St , for a sit down meal from their menu made with local ingredients from local farmers . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop with a high customer rating and a price range of £ 20 to 25. it is near The Bakers and child friendly \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop close to Avalon in riverside . They charge under £ 20 but have a low customer rating \nname : Fitzbillies | food : Italian | price : more than £ 30 | near : The Six Bells||Fitzbillies , near The Six Bells , is a moderately priced Italian restaurant . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||There is an inexpensive Greek restaurant named Midsummer House close to All Bar One . It is rated 3 stars . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||By the riverside is a cheap coffee shop called Zizzi with a customer rating of 5 out of 5 . It is not family - friendly . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub that serves fast food , kid friendly but has poor ratings \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Italian food for high prices . It is on the riverside near Express by Holiday Inn . The Rice Boat is not children friendly and it has a 1 out of 5 rating . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||With a customer rating of 1 out of 5 , Alimentum is an Indian food joint in the city centre area near Yippee Noodle Bar . It is of a moderate price range . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no||Aromi adult coffee shop serves French food in the city centre area and has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a child friendly restaurant serving English food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a high - priced city centre coffee shop offering Indian food . It is not child friendly . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||The Twenty Two is a fast food restaurant located in the city centre . It is not family friendly . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 star restaurant for the whole family \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||You can expect to pay low prices for Asian cuisine at the Wildwood pub . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : no||The Rice Boat is a place selling Chinese food in the riverside area . It is not family friendly and has an average customer rating . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : cheap | near : Café Brazil||The Cambridge Blue is a Chinese pub with inexpensive food near Café Brazil . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a French restaurant with low customer rating . \nname : Green Man | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a child - friendly Indian restaurant in riverside , near All Bar One . It is in the high price range \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kid - friendly pub near Ranch , and has a customer rating of 1 out of 5 stars . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : no||The Rice Boat in river side server up average Japanese food with no children welcome . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||If you are looking for a family friendly restaurant located at the end of the city that is cheap check out The Waterman . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : city centre||The Waterman is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a pub located in Riverside that sells amazing French food and welcomes children as it is kid - friendly so you cold enjoy a nice meal with your family \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee Shop providing Fast food . It is located in City center . Medium price and family - friendly . Have 5 out of 5 costumer rating . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes||One kid - friendly pub in the city centre is The Olive Grove . It serves French food at a moderate price . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that serves Indian food . Its customer rating is 5 out of 5 and it is family friendly \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly , high priced , Fast food restaurant near Rainbow Vegetarian Café . It has a customer rating of 1 out of 5 . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a Chinese restaurant located in City center . near All Bar One , has a price range of less than 20 with an adult atmosphere . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a moderate price range pub that serves Italian food . It is kids friendly and is by the riverside . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat provides Chinese food in a family friendly venue in the riverside area . It has perfect customer ratings . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves Italian food in the moderate price range with customer ratings of 3 out of 5 near Café Sicilia and it is not child friendly \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a highly rated coffee shop by the riverside . It 's child unfriendly but serves fast food at a high price . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a French restaurant called The Rice Boat in the city centre near the Express by Holiday Inn . It is not child friendly . The price range is more than £ 30 . The customer rating is 5 out of 5 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is near Café Adriatic . It has high prices with a 5 out of 5 customer rating . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||£ 20 - 25 is the price range of Travellers Rest Beefeater , which is in riverside area closed to Café Adriatic and it has a high customer rating . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is an Italian coffee shop near The Portland Arms . It is not family - friendly and has a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside , near the Crowne Plaza Hotel , is a coffee shop called Taste of Cambridge . They offer French food and a child - friendly environment the whole family can enjoy . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The highly - rated Fitzbillies is an inexpensive fast food coffee shop located in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that offers Japanese food . It is near Crowne Plaza Hotel in the area of riverside and is children friendly . \nname : Strada | Type : pub | food : Indian | customer rating : high | near : Yippee Noodle Bar||Strada is a highly rated pub that serves Indian cuisine that is located near Yippee Noodle Bar . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a cheap restaurant located near Express by Holiday Inn . Customer rating 5 out of 5 . Not family - friendly . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre , The Rice Boat is more than £ 30 for English food and not family - friendly but does have high ratings . \nname : The Punter | food : Fast food | price : moderate||The fast food The Punter has a price range that is moderate . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a kid friendly restaurant that serves Japanese food . its customer rating is 1 out of 5 \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Italian food in riverside , near Café Rouge They are not family - friendly and have a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is a pasta and coffee shop close to The Sorrento . It has fairly high pricing . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : city centre | near : The Sorrento||The Mill coffee Shop offers normal priced Fast food in the City Centre close to The Sorrento . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family friendly coffee shop located near Crowne Plaza Hotel in the riverside area , Browns Cambridge serves Japanese food and has an average customer rating . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is serving Chinese food in the City center . It is family - friendly and moderately priced . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a kid friendly restaurant with a high customer rating . This restaurant is located in the riverside area and offers French food in the price range of £ 20 - 25 . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is an average priced , five star restaurant located near All Bar One . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is near The Sorrento , at the riverside . It is a kids - friendly pub . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is an adult only low rated coffee shop with average prices located near The Bakers \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves Chinese food , has a high price range and an average customer rating . It is child friendly and is located near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||Let 's go to that French coffee shop by Burger King , The Eagle , it 's right beside the river and it 's cheaper than £ 20 , however it 's not family - friendly and its customer rating is average . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||If you 're looking for a kid friendly Italian restaurant , check out The Rice Boat , located at the city centre , near Express by Holiday Inn . The establishment is moderately priced and customers have rated it 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||There is a kid - friendly , Fast food coffee shop in Riverside with a high customer rating called Aromi . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||There is a store Browns Cambridge that provides assorted wines and snacks with reasonable price . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a restaurant providing Asian food in the high price range . It is located near The Sorrento . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is located near The Sorrento in the Riverside area . It is a family friendly venue offering Indian Food . \nname : Blue Spice | food : French | price : moderate | area : riverside||Blue Spice in riverside has moderately priced French food . \nname : The Olive Grove | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a fast food pub on the riverside . Typically , £ 20- £ 25 . It 's kid friendly too . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a Japanese restaurant with a low customer rating , located near Express by Holiday Inn on the riverside . It is called The Rice Boat and it has a price range of less than £ 20 and is not family - friendly . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is a sushi restaurant called Strada . It is family friendly , low priced , and has low reviews . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a French restaurant with prices more than French 30 . It has a customer rating of 5 out of 5 and is located near All Bar One . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is Italian near The Rice Boat , in riverside . \nname : The Phoenix | food : Chinese | customer rating : low | area : city centre||Near city centre there is a Chinese restaurant with low ratings , called The Phoenix . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||There is a coffee shop called Cotto providing Indian food located in the city centre near The Portland Arms with low customer rating and it 's price range is less than £ 20 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi offers burgers and is family friendly \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near the Crowne Plaza Hotel , serving Japanese food , and is Family Friendly . \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Eat Japanese food in Blue Spice just for £ 20 - 25 in the riverside \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi coffee shop . Offers 5 star oriental family dining near the river . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge has a customer rating of 3 out of 5 and is in the moderate price range . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is a high - priced in French food . with a 3 out of 5 customer rating . It is located in the riverside area . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a cheap restaurant Alimentum located in the Yippee Noodle Bar . It has high customer rating . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House offers sushi for a low price , and is on the outskirts of City center . , near Clare Hall . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : no||Alimentum is a Chinese restaurant in the city centre . It does not welcome children and is highly priced . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man , near All Bar One in Riverside is not child friendly Italian food but is high price range . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : no||The Olive Grove at riverside is a pub which serves Italian food , but the price range is high and is not children friendly \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Near All Bar One , in the riverside area is Green Man . It serves French food with prices above £ 30 and is not friendly to children . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House offers English food with a high customer rating near All Bar One . Expect to pay more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a poorly rated mid priced Italian restaurant Fitzbillies in the City centre . It is family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a Japanese coffee shop called The Eagle its by the riverside near Burger King with high ratings and also kid friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento , is a family friendly food place called Browns Cambridge . it 's by the riverside \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||A little pricey but child Friendly is the Strada restaurant . They have a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an expensive Indian coffee shop with an average customer rating . It is located in the city centre , near Burger King , but is not children friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop in the city centre near the Crowne Plaza Hotel . It serves Italian food and has a low customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto coffee shop . Indian food is cheap . Customer rating average . In city centre near The Portland Arms . \nname : Alimentum | food : French | price : high | area : riverside | family friendly : yes||Alimentum a children friendly , high priced French restaurant located in riverside . \nname : Midsummer House | food : Chinese | customer rating : average | near : Café Rouge||Midsummer House serves Chinese food near Café Rouge . They have an average customer rating . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a restaurant that provides Chinese food at reasonable prices ranging from £ 20 - 25 . It has a customer rating . It is located by the riverside and is very kid friendly . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is an adult eatery with one star in the City centre . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms in Riverside is the Cotto ; with a customer rating of 3 out of 5 , this coffee shop offers fast food with moderate prices . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : no||Zizzi is an Indian pub with an average customer rating . The establishment is not family friendly . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two in Riverside serves Italian food in an adult setting \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat located near Express by Holiday Inn , offers Japanese cuisine to adults in the city center . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced , family friendly Japanese coffee shop in Riverside , near Raja Indian Cuisine . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : no||An average customer rated , high priced restaurant called The Wrestlers which serves English style food is not children friendly . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge in riverside , there is a restaurant called The Golden Curry . It serves French food , it has an average customer rating , and it is not family - friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Visit the riverside and find Cotto close to The Portland Arms , and partake in cheap Italian food in a 5 out of 5 rated coffee shop \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry , with customer ratings 5 out of 5 , is a French food place , also children friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||There is an 5 out of 5 customer - rated coffee shop named The Golden Palace . It serves Italian cuisine at a cheap price . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located in Riverside , near Burger King , The Eagle is a moderately priced , kid friendly coffee shop . It serves French food and has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is located in the riverside area . It is children friendly . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||in the city centre there is a not family - friendly coffee shop named Zizzi which is cheap and has a customer rating of 5 out of 5 \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman serves the best Japanese food . They recently scored a 5 out of 5 rating due to their cheap food . They are located at the riverside . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||Located near the river , The Olive Grove pub has a mid - priced menu that is suitable for families . \nname : Aromi | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi , is coffee shop yes kids - friendly riverside 1 out of 5 \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Japanese food at Fitzbillies coffee shop in the city centre is an expensive adult only place with a low customer rating \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn has a high customer rating , high price range and is family friendly . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||Eat at Zizzi . A restaurant with prices from £ 20 - 25 , located in the riverside area . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||The Waterman pub located by the riverside offers French food . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is an Indian with a high customer rating . They are within the city centre and are not children friendly . The price ranges is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||In the city centre , there is a moderately priced , kid friendly fast food coffee shop called Fitzbillies . It has a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Waterman is a pub with the rating of 5 out of 5 that serves Japanese food which is located in the city centre . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||There is an Italian place , Midsummer House , situated near All Bar One with average customer rating and high pricing . \nname : The Punter | food : Fast food | price : £ 20 - 25||If you 're looking for a Fast food venue then you could try The Punter . It 's in the £ 20 - 25 price range . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : no||The Golden Curry provides Chinese food Its customer rating is low . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||There is a cheap pub The Olive Grove located north of the City center . , right on the river . It is not a family restaurant . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove pub is located in riverside area serving child friendly Japanese food . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi is a cheap family - friendly coffee shop near the river with good ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near Burger King . Its customer rating is 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a Japanese coffee shop near Clare Hall in the city centre . It has a customer rating of 5 out of 5 . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix serves English food located in the riverside area . Its in the high price range and has a customer rating 1 out of 5 \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee shop in riverside that is children friendly . It has a 5 out of 5 customer rating and the price range is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||this fast food restaurant is moderate priced city centre coffee shop thats kids - friendly . Fitzbillies has a customer rating of 3 out of 5 \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Vaults , kid friendly Italian cheap kid friendly restaurant . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre near Express by Holiday Inn The Rice Boat is a family friendly Indian restaurant in the cheap price range with an average customer rating . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix , with its amazing view of the river , offers a five star meal to enjoy . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||Rated 1 out of 5 , Cocum is a high - priced , family coffee shop serving Italian food . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : yes | near : Café Rouge||The Plough pub is located near Café Rouge . They serve expensive Chinese food and are kid friendly . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : city centre||The Phoenix is a cheap restaurant with average customer ratings . One can purchase English food at this restaurant , which is located in the city centre . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap family friendly Italian coffee shop with a customer rating of 5 out of 5 . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is kid friendly , serves Fast food and is in the riverside area . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two organizations said no to lending money . They did not want to make less than £ 20 near The Rice Boat on the riverside . They wanted to change their low ratings \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child friendly coffee shop with prices less than £ 20 . It is located near Café Sicilia in the centre of the city . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Italian food in the low prices . It is located in the city centre near to The Portland Arms . It has 1 out of 5 customer rating . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a family - friendly Greek restaurant named The Rice Boat . It is located near the river to the North of the city centre and is rated 5 stars . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a price range of less than £ 20 and a low customer rating . It is near Café Adriatic at riverside . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||The restaurant called The Dumpling Tree is cheap and provides English food . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman , situated in the city centre , offers Japanese food in the high price range . It is a children friendly establishment , and has been rated high . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a fast food coffee shop that 's kid friendly where you can eat for under £ 25 and is located near Raja Indian Cuisine in riverside \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a moderately priced but poorly rated restaurant located near Rainbow Vegetarian Café . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a Italian coffee shop located near The Portland Arms . It 's kids - friendly . Customer rated it 3 out of 5 . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a cheap French restaurant with a 5 out of 5 customer rating . Unfortunately , they are not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is costly French food coffee shop located in the city center . It has average customer rating and not kids friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||For moderately priced Italian food , try The Cambridge Blue Pub , situated near Café Brazil . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese food place . They have a low customer rating . Located in Riverside area near Café Rouge . Family friendly . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||Located in riverside , The Phoenix serves Chinese food at an average cost of £ 20 - 25 . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Near the fast food Burger King close to the riverside , The Eagle is a coffee shop , with moderate pricing and not too kid friendly . Customers rate it a 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in Riverside there is an Indian coffee shop known as Browns Cambridge that has received a rating of 5 out of 5 while not being family friendly . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves high - priced Indian food with an average rating . It is child friendly and located near the Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the area of city centre near Crowne Plaza Hotel is Browns Cambridge . It is a family - friendly coffee shop , that has Japanese food , and has a low customer rating . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Japanese restaurant , The Waterman , located in the city centre has a customer rating of 1 out of 5 and is not child friendly . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is family friendly , located near Rainbow Vegetarian Café , offering French meals for less than £ 20 with an average rating . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Phoenix is a Japanese restaurant at the riverside , it has a customer rating of 3 out of 5 . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||If you want to go to a kids friendly moderately priced restaurant in the city centre rated 3 out of 5 stars go to The Waterman \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum serves English food in Riverside near Yippee Noodle Bar . They have a low customer rating but their prices are low too . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||if you want to eat English food go The Phoenix near to riverside . price range is near about 20 \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies is located near The Six Bells . It serves medium - priced French food . \nname : The Punter | food : Indian | price : £ 20 - 25||The Punter provides Indian food in the £ 20 - 25 price range . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : no||Alimentum provides Chinese food in the high price range . it is located in the city centre and is not children friendly . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | near : The Sorrento||There is a French coffee shop named The Mill near The Sorrento in city centre . Their price range is 30 pounds and up . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||Fairly low prices for equally low value at The Eagle over on riverside . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||The restaurant Alimentum is a highly rated Japanese restaurant in the higher price bracket . It can be found in the riverside area near Yippee Noodle Bar . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||There is a friendly for kids pub called The Plough near to the Café Rouge . It provides French food in the moderate prices . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Child friendly The Rice Boat , is a high priced average customer service rated Italian restaurant located near the Express by Holiday Inn in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies in riverside is a fast food coffee shop that cost less than 20 euros . It has a low customer rating and is not family - friendly . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a French coffee shop with a customer rating of 3 out of 5 . It is child friendly , and located near the Café Sicilia . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||In the riverside area there is a coffee shop called Cotto with a cheap price range that sells fast food . Cotto has a customer rating of 5 out of 5 and is near The Portland Arms . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is an adult only Japanese restaurant with a rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||There is an Expensive restaurant The Mill located near The Sorrento that provides Asian food . \nname : The Vaults | food : Chinese | price : cheap | family friendly : yes||The Vaults is a cheap , family friendly Chinese restaurant \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood is a French pub that offers dishes for less than 20L with a low customer rating . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : no | near : The Portland Arms||A pub near The Portland Arms , called The Dumpling Tree serves Indian , but does not cater for families . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||If looking for moderate priced Fast food in the city centre , The Golden Palace is a coffee shop with a customer rating of 3 out of 5 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a children - friendly English restaurant located near Crowne Plaza Hotel . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||Near The Bakers is The Golden Curry , a low priced restaurant that is not family friendly . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop with a low price range and has a low customer rating of 1 out of 5 just north of Ranch . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap restaurant . Customers rate it 5 out of 5 stars . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||If you 're looking for a French pub in the riverside area , Giraffe is a good choice . It is also family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a fast food coffee shop . It is located in riverside , near Burger King . It has low customer rating since it is not kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The Golden Curry serves Japanese food and is child friendly . It has a low customer rating . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : no||A Japanese restaurant in the city centre which isn 't family - friendly is called The Twenty Two . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies , located at riverside , is a coffee shop that has Japanese food . It is kid friendly , priced along £ 20 - 25 , and has a customer rating of 3 out of 5 stars . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : average||With an average customer rating , Wildwood is a high priced pub that serves Indian food . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||A coffee shop called The Eagle sells cheap Indian food that is rated 5 out of 5 and is even better with its family friendly location near a riverside and the local Burger King . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is in Riverside , near the Yippee Noodle Bar . It serves Italian food that is less than £ 20 and has a low customer rating . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||A Fast food restaurant called The Eagle has a 3 out of 5 customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Wrestlers , we are a coffee shop . We 're family - friendly we serve fast food we are located in the city centre near the Raja Indian Cuisine . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry offers a family friendly environment , serves English breakfast food , and has a three star customer rating . \nname : Green Man | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man , which is near All Bar One located in riverside , offers Chinese food with a price range of £ 20 - 25 and has kid friendly service . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a child - friendly restaurant serving Japanese food . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House is providing English food near Café Rouge with average customer rating . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Waterman is an English restaurant that is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a high rated Italian coffee shop in riverside with a price range of £ 20 - 25 . This restaurant is kid friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is an Italian coffee shop with an average customer rating , child friendly and a high price range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Near Burger King in city centre is the coffee shop The Eagle . This adult establishment serves fast food at average prices . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||High customer rating , this Japanese style coffee shop is along the riverside . The Golden Palace has a price range of £ 20 - 25 . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat in riverside offers child friendly French food with a 5 out of 5 customer rating \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderately - priced , kid - friendly Italian coffee shop in the city centre with a customer rating of 3 out of 5 . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||Located near The Rice Boat in riverside , The Twenty Two is child friendly restaurant with a price range of more than £ 30 and a high customer rating . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly restaurant that serves French food for a low price . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is child friendly Japanese restaurant . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Strada is a good restaurant for eating food my rating is 4 out of 5 \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid friendly fast food restaurant located in the city centre . Although the price is moderate , the customer rating is 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||In the city centre near The Portland Arms there is a cheap averagely priced coffee shop serving fast food called Cotto . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||For a family friendly coffee shop where you can get some Italian food , visit Browns Cambridge . It is in the Riverside area near the Crowne Plaza Hotel . It has an average customer rating . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||Check out The Golden Curry a family friendly restaurant near by . \nname : Green Man | food : French | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man , is an expensive French restaurant in Riverside , near All Bar One that is child - friendly . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House is located near Café Rouge and offers burgers \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Serving Indian food is a pub called Zizzi . A kid friendly place with a 1 out of 5 rating . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman serves Indian food in the cheap price range . It is located in Riverside . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is priced lower that £ 20 and has a customer rating of average . The Rice Boat is located near Rainbow Vegetarian Café . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a breakfast joint specializing in UK themed food . Bring your whole family , it 's just outside The Bakers \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a moderately - priced fast food establishment in the city centre near All Bar One . It is not child friendly . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is a 3 star high priced restaurant in City Centre . \nname : Bibimbap House | food : Japanese | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is a Japanese restaurant with a moderate price range and is located in the city centre near Clare Hall . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family restaurant in the city . They have high customer ratings and they serve French food . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||1 out of 5 customers rate The Eagle , which is riverside , as expensive . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is kids friendly and moderately priced . It is located near to Café Sicilia . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : city centre | near : Café Adriatic||Travellers Rest Beefeater ' is located in the city center near Café Adriatic . It is expensive but has very poor customer reviews . \nname : The Waterman | Type : pub | food : French | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub in riverside that serves French food . Their customer rating is 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap coffee shop in riverside where you can find Japanese food in a child - friendly environment . Look for it near Raja Indian Cuisine . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a French eatery with a high customer rating and is child friendly . The price range for this place is between £ 20 - 25 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly Japanese restaurant near Express by Holiday Inn in the city centre . It has a low customer rating and price range less than L20 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop . They have an average customer rating and are located in the riverside area . They are fast food and have cheap pricing . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop near the Café Sicilia offers moderately priced Italian food in a kids friendly environment , It has been rated 1 out of 5 by previous customers . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||The Japanese restaurant , Fitzbillies , serves plates that are generally more than £ 30 . It is located near The Six Bells . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||With a customer rating of 3 out of 5 , city centre coffee shop Fitzbillies , offers highly priced French cuisine in a child friendly atmosphere . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a kid - friendly coffee shop called Fitzbillies located in Riverside . It is in the medium price range and has a high customer rating . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||When in the riverside area and looking for Indian food , stop by the adults only The Rice Boat . Located near Express by Holiday Inn . Prices are moderate with a rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : 5 out of 5||Rated 5 out of 5 , Wildwood is a cheap pub serving Chinese food . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Come to our Indian restaurant Midsummer House near All Bar One . We have a moderate price range and a rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||The Aromis is a family - friendly coffee shop . Serves Italian food . Located riverside and is not family - friendly . Low customer rating . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly , moderately priced , average rated pub . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a Fast food restaurant that is near The Bakers has a moderate price range and is not kid friendly \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||The Cocum is an Indian coffee shop with prices under £ 20 . It has a low customer rating and is not family friendly . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a family - friendly restaurant in the city centre near The Rice Boat . They have average ratings and are high - priced . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is a kid friendly place , The Rice Boat . They serve Chinese food at moderate prices , in the riverside area . Customers rate 1 out of 5 . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||Near the riverside , The Phoenix offers fast food suitable for a cheap budget - it 's scores an average customer rating . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is an expensive purveyor of fine foods just east of Clare Hall on the River . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : yes||Loch Fyne is a kid friendly Indian restaurant with a moderate price range . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : no||Alimentum restaurant offers moderately priced Chinese food that is not kid friendly . It is located at riverside . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop with French food near to Raja Indian Cuisine \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Browns Cambridge is a one - star , low cost restaurant that serves specialty foods . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Indian food for 20 - 25 euros , it is in the riverside area near a Burger King and is kid friendly with high customer rating . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||With an average price rating and a high customer rating , Alimentum is a restaurant near Yippee Noodle Bar by the riverside in the City centre . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a one star coffee shop that serves wine and cheese , with a medium price range , located near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : no||Loch Fyne serves Japanese food for adults with a price range of more than £ 30 . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove pub serves English food in a price range of less than £ 20 . It is not family - friendly and is in the city centre . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : no||The Alimentum is a Indian high priced restaurant that is not children friendly located in the city centre . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||A kid friendly restaurant with high customer ratings is Cocum . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a low - priced restaurant in the city centre that delivers take - away . Near Express by Holiday Inn . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is situated in the riverside area next to the Café Rouge . It provides Japanese food and it is friendly for family . The customer rating is 5 out of 5 . \nname : The Twenty Two | food : French | family friendly : no||The Twenty Two restaurant is not a place to bring children . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The Italian children friendly restaurant is Loch Fyne . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Zizzi coffee shop offers affordable food , but does not welcome families . It is located at the riverside Customers have rated it average . \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||There is a Fast food restaurant called Blue Spice in Riverside and offers food in the price range of £ 20 - 25 . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||There is an Italian restaurant near All Bar One called The Cricketers . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an average restaurant in the riverside area offering Italian food . It is not family - friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : moderate | near : Café Brazil||The Cambridge Blue is a pub that serves Indian food , price range moderate , near Café Brazil \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop near the Café Brazil in the riverside area . with a moderate price range and 3 out of 5 customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is 5 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is located by the city centre and sells English food . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||Riverside The Mill coffee shop , in riverside near The Sorrento , serves Japanese food priced at less than £ 20 . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a low customer rated eatery offering French food in the riverside area . No , it is not family - friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop in the lower price range . It is located close to The Portland Arms . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is an expensive , five star whole foods restaurant fun for the whole family . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre , near Burger King , there is a cheap highly rated coffee shop called The Eagle , which serves French food and is family - friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||In the riverside area , The Twenty Two serves French food and is family friendly . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : city centre||The Clowns is a higher than average priced pub in the city centre area . It has a customer rating of 3 out of 5 stars . \nname : The Eagle | food : French | customer rating : high||Best French food at The Eagle \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , a place that serves low priced wine is five star rated and located next to Yippee Noodle Bar on the river in City centre . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe is a restaurant located near The Six Bells with a price range of more than £ 30 \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is an Italian restaurant that is kid friendly , with moderate prices and an average rating , located in the city centre . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman , located near the city center , is not kids friendly an d serves Chinese food to its customers . It is moderately priced and is rated 1 out of 5 . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||There is a Japanese family friendly pub called The Plough located near Café Rouge with prices less than £ 20 \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman located in the city centre has Japanese food , is not kid - friendly was was given a low customer rating . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Near the river , there is a low - priced restaurant named Alimentum . They are not kid friendly . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant that sells Indian food located near The Bakers and is kid friendly with a moderate price range . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no||There is an expensive fast food restaurant called The Olive Grove by the riverside that is not child friendly . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Riverside located Aromi , is a family friendly pub with low customer ratings . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop with Japanese food , it has an average customer rating . It is situated by the riverside near Clare Hall . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||In riverside near Clare Hall , is a Japanese coffee Shop called Clowns with a low customer rating . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a moderate - priced Fast food restaurant that is not children friendly in the riverside area with a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge is a fast food place , rated three stars with high prices . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||A cheap coffee shop called The Golden Palace is located in Riverside . It serves Italian food and has an average customer rating \nname : Blue Spice | food : Indian | price : high | area : riverside||Blue Spice provides Indian food in the high price range . It is located in the riverside . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant that serves Italian food located in city center near Express by Holiday Inn with a 5 out of 5 rating . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Near By Rainbow Vegetarian Café is a restaurant called Strada that is low - priced and not family friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is an expensive coffee shop called The Eagle located in riverside near Burger King that provides Indian food . It is children friendly and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a family - friendly cheap averaged rated coffee shop in the city centre \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||In the city centre near Café Rouge is a restaurant called The Golden Curry . It is family - friendly with an average customer rating , it serves English food . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||In City Centre , near Express by Holiday Inn is a family - friendly restaurant called The Rice Boat , that serves English Food in the cheap price range . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||A restaurant serving English food with a high customer rating is The Cambridge Blue \nname : The Phoenix | food : Chinese | customer rating : average | area : riverside||Located riverside is The Phoenix which serves Chinese food . It has an average customer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a 5 star , cheap coffee shop that serves fast food . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a full service restaurant close to the Crowne Plaza Hotel . Adults only . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum serves Italian food with a high customer rating . It is averagely priced , near Yippee Noodle Bar . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : average||Wildwood is a Chinese food pub with cheap food and average ratings . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Yes , you can take kids to the high priced Italian restaurant , Loch Fyne on the riverside . \nname : Green Man | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Offering English food at a slightly higher price , and near All Bar One , is the child friendly Green Man . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre is a Japanese coffee shop called The Wrestlers . It has a price range of more than £ 30 and is not kid - friendly . \nname : Blue Spice | food : English | price : cheap | area : riverside||There is a venue called Blue Spice . It is located in riverside that serves cheap English food . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is inexpensive delicious family friendly fast food near Café Sicilia \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||In the city centre there is a kids friendly moderately priced place called The Waterman . It serves fast food and has a customer rating of one out of five . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that is not family - friendly . It has a less than £ 20 and serves Italian food . It 's near Burger King in the city centre , with a low customer service rating . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||rated 1 out of 5 the Strada is a restaurant \nname : The Punter | food : Japanese | price : cheap||There is a place called The Punter which offers cheap Japanese food . \nname : Midsummer House | food : Italian | price : £ 20 - 25 | customer rating : high | near : All Bar One||The Midsummer House is a nice 5 star Italian restaurant with very fair prices . We are located right next to the All Bar One . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||French coffee shop , The Eagle , is located in the city centre near Burger King . They provide great service and products at a lower price . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a coffee shop in the high price range . It is located in the city centre . The customer ratings are 3 out of 5 and is children friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove serves Japanese food in the riverside area . It is a family friendly pub which serves food less than £ 20 \nname : The Punter | food : French | price : moderate||The Punter is a wine bar with average pricing . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : city centre||Blue Spice is a Japanese restaurant located in the city center . It serves dishes for more than 30 pounds . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||There is a less than favorable restaurant The Golden Curry located in the centre of the city that is family friendly . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue pub serves Chinese food with nothing over 20 dollars it sits by Café Brazil . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||A pub named the Olive grove located in the city center offers Japanese food . The Olive Grove is in the high price range and is not children friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||The French restaurant , The Dumpling Tree has a price range of 20 - 25 . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is a kid friendly pub that sells Indian food at the riverside . \nname : The Mill | Type : coffee shop | food : French | price : high | area : riverside | near : The Sorrento||If your looking for a higher end coffee shop in riverside near The Sorrento , try The Mill and maybe grab some of the French food they also serve . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Indian coffee shop in the high price range in the riverside area of Raja Indian Cuisine and is children friendly . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly , low rated French restaurant located in riverside near Café Rouge . \nname : Bibimbap House | food : Chinese | price : high | area : city centre | near : Clare Hall||Bibimbap House , located near Clare Hall in Cambridge 's city centre , serves gourmet Chinese cuisine at gourmet prices . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||Customer rating 1 out of 5 . The Waterman is a fast - food pub in the Riverside area . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a high priced French restaurant in riverside . The Waterman is not child friendly . They have an average rating . \nname : The Vaults | food : Indian | price : high | family friendly : no||The Vaults has Indian food and is not child friendly and also price ranged high . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is an expensive but highly rated Italian restaurant . They are child friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop near The Sorrento in the riverside area serves fast food for less that 20 pounds . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a high price Indian food restaurant that is rated 1 out of 5 by its customers near the city centre near the Yippee Noodle Bar . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||The Phoenix is a moderately priced restaurant that is close to the river . \nname : Green Man | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||If you 're looking for a riverside , £ 20 - 25 English meal , look no further than Green Man , a kid - friendly restaurant near All Bar One . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood pub that serves pub food that has a 3 star rating and average in price range \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly , Italian coffee shop near Crowne Plaza Hotel in the city centre that has a customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||Wildwood is a five - star pub in the mid price range that serves British cuisine . It is located across from a school . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||By Café Rouge is a fast - food restaurant named Midsummer House that has a three - star customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 5 out of 5||An amazing Chinese restaurant , with a perfect 5 out of 5 rating , is The Cambridge Blue . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is an Indian food with a price of £ 20 - 25 ; usually people like it , its in city centre near Yippee Noodle Bar . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : no||The Wrestlers Chinese restaurant is not suitable for young families . It has low prices and average ratings . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is a specialist kids - friendly that English food and is moderate rating . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Along the riverside there is an Italian foods place that serves cheap and low quality food . It is called ' The Waterman ' and is recommended for families . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a low priced Indian coffee shop with an adult atmosphere . \nname : The Phoenix | food : English | customer rating : low | area : city centre||Located in the city centre , The Phoenix has English food with a low customer rating . \nname : Browns Cambridge | price : high | customer rating : average||Browns Cambridge is a restaurant with a high price range . Customer rating is average . \nname : Midsummer House | food : English | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House serves English food and has a customer rating of 3 out of 5 . It is near the Café Rouge . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||There is a French food coffee shop near Café Sicilia called The Punter , it is kids friendly and has a good customer rating . The price range id £ 20 - 25 . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a pub restaurant which has a low customer rating . Their prices range are more than £ 30 and is child friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a coffee shop located in the city centre called Zizzi . It is child - friendly , has a price range of more than 30 pounds , and a customer rating of 5 out of 5 . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||English food is found in the riverside area near The Rice Boat at Loch Fyne . It has received an average customer rating . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Located in the riverside area near All Bar One is the family friendly Green Man which serves expensive British food . \nname : Bibimbap House | food : Japanese | price : cheap | area : riverside | near : Clare Hall||Bibimbap House serves Japanese food . Their menu prices are cheap . They are located in Riverside near Clare Hall . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Located near The Six Bells is Fitzbillies . An English high priced restaurant . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Near Café Rouge is Midsummer House which serves Japanese food and gets a 5 out of 5 rating by customers . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is a family friendly three star venue situated close to Burger King . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers is an average Japanese restaurant . It offers adult only dining at a price range of less than £ 20 . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||A child friendly Italian eatery is The Golden Curry . It has an average rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop is in the City center . near The Sorrento . It is low priced and also offers fast food . \nname : Loch Fyne | food : Chinese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a low rated Chinese food place in the center . of city near The Rice Boat . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms in the riverside area is The Punter . Is it a child friendly place and prices are in the more than £ 30 price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a highly rated Italian coffee shop in the riverside area . It is cheap and not recommended for families . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House is a moderately expensive restaurant that caters to wine tastings and is located adjacent to All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||A coffee shop called Fitzbillies that is not family - friendly is located in the city centre area . It has cheap Japanese food and a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is cheap Italian food restaurant called The Eagle near the Burger King riverside , it is a family friendly coffee shop . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia is the child friendly coffee shop , The Dumpling Tree . It is moderately priced and by the river . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree is a more expensive restaurant . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||For a moderate price The Eagle coffee shop offers Indian Cuisine in the city centre . While the restaurant is not kid friendly there is a Burger King nearby and it has a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a Japanese coffee shop located near Ranch . It is moderately priced but has a satisfaction rating of 1 out of 5 \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a family friendly restaurant near to Café Sicilia with a price range of less than £ 20 . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is an adult focused Japanese restaurant located on the riverside . Higher than average prices for high ratings . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies coffee shop is located in the city centre . It is child friendly and also serves Japanese food . Prices are high at more than £ 30 but customers rate it highly at 5 out of 5 . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : no||Don 't take your kids to The Olive Grove pub . The prices are moderate there in the city centre . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||There is Fast food at The Waterman which has a high customer rating and a price range of more than £ 30 . It is in the city centre and is children - friendly \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly venue serving English food with a low customer rating . It is based in the city centre near Café Rouge . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no||Cocum is a exclusive Fast food restaurant than you can go with your partner to take a coffee \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is low . \nname : The Rice Boat | food : Japanese | customer rating : high | area : riverside | family friendly : yes||For Japanese food in a kids friendly environment try The Rice Boat . Located in the riverside area this restaurant has a high customer rating , \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill by the river high prices for food and wine \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly French coffee Shop in the riverside area near the Crowne Plaza Hotel . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Located in the riverside area near The Rice Boat , fast food , Loch Fyne is rated 1 out of 5 by customers . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family friendly Fast food , coffee shop located riverside near the Crowne Plaza Hotel called Taste of Cambridge . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fantastic child friendly restaurant serving English food . The restaurant is in a medium price range and child friendly . You can look for it near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 - star rated , family - friendly sushi bar offering oriental cuisine in the moderate to high price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||in city centre there 's a coffee shop called Aromi it serves Indian food with a rating of 5 out of 5 and it 's family friendly \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||The Taste of Cambridge is a pub located near The Sorrento river which isn 't suitable for families with children . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is an Italian restaurant that resides near Café Rouge and is rated 5 out of 5 by food critics \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi pub French food is amazing and is family friendly . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Located close to Rainbow Vegetarian Café is Strada , a highly regarded Chinese eatery . It 's both child friendly and well priced . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge serves Chinese food in the city core . Located by The Sorrento , it is great for the whole family . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||Get French food at The Phoenix at riverside . It has a 3 star rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||A pub called The Cambridge Blue with Italian food has a high customer rating and is located near Café Brazil with a moderate price range . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is a low cost sushi restaurant called Strada that is family friendly . It is close to the Rainbow Vegetarian Café . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||a Japanese family - Friendly place is The Waterman near Crowne Plaza Hotel \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Highly rated and still cheap , Cocum is a coffee shop serving Japanese food in an adult environment . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The customer rating for The Waterman is average but it is children friendly and located near the riverside . It offers fast food but is in the high price range . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Italian child friendly place , The Vaults , is high on pricing . \nname : The Vaults | food : French | price : moderate | family friendly : no||The Vaults has a mid - priced menu . It is not family friendly . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||For Italian food on the riverside you can visit Giraffe , a family friendly pub . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : city centre||Located in city centre is an average Italian restaurant called The Phoenix . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a high price range high customer rating coffee shop Zizzi . It is in riverside and not kids friendly . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is an expensive family coffee shop that is located near Burger King . It serves British food . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||The Wildwood is a restaurant near Café Rouge that has a customer rating of 1 out of 5 . \nname : The Punter | food : Italian | price : high||The Punter offers Italian cuisine and is highly priced . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : no||Giraffe is a non - family friendly , pub - style restaurant that serves Chinese food near the city centre . \nname : The Vaults | food : Fast food | price : cheap | family friendly : yes||The Vaults is a fast food restaurant offering affordable meals for the whole family . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||The Phoenix is a Italian restaurant with a 1 out of 5 rating . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Situated near All Bar One is Midsummer House for some cheap food . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||The kid friendly restaurant in the riverside area , The Olive Grove is a pub with a moderate price range . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 1 out of 5||Browns Cambridge possesses a customer rating of 1 out of 5 and offers Indian food in a moderate price range . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum serves Indian cuisine and is average price for the high customer ratings . It is located in riverside near Yippee Noodle Bar . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||In riverside there is a pub called The Mill . It serves English food for moderate prices . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||If you are looking for a family - friendly French coffee shop at the riverside you should try The Eagle located near to the Burger King . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a children friendly Japanese venue . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||With a customer rating of 3 out of 5 , Wildwood is an Italian coffee shop that can be found near Ranch . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman heads to a family - friendly Italian restaurant in riverside , the customer rating is low , what do you expect it is less than 20 . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : city centre||Located near the city centre , The Eagle , is a moderately priced restaurant that gets 1 out of 5 rating . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub which serves Japanese food . It has a moderate price range and it is kids - friendly . Located on the riverside . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is not a very good pub . They serve Japanese food and are in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop near of the river in the south of the city . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood , a coffee shop , serving French food is located near the Ranch . Customers have given this establishment a low rating with a low cost price range below L20 . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum Chinese , near the riverside , by Yippee Noodle Bar is more than £ 30 and is also highly rated by customers . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a Kid Friendly coffee shop called The Cricketers that has a rating of 3 out of 5 and serves Indian food . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , Indian coffee shop , is high in price , with an average customer Rating that is children friendly near Café Sicilia . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly coffee shop near Raja Indian Cuisine in the city centre . It serves moderately priced Italian food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||There is an average coffee shop called The Golden Palace located in Riverside that serves fast - food . Consumers rate it as average and the prices are on the high end . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||There is a cheap family friendly Chinese food restaurant Loch Fyne . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||The restaurant Zizzi in the riverside has a price range of £ 20 - 25 . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||Wildwood is an adequately reviewed , inexpensive pub that is known for their pasta dishes . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Come to the family friendly coffee shop that serves Italian food for only £ 20 or less it has a low customer rating and is near Café Sicilia . It is The Punter \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Blue Spice is a high end , child friendly restaurant with riverside views . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Near the riverside , there is an Italian adult coffee shop called Aromi . It gets 5 out of 5 customer ratings . \nname : The Plough | Type : pub | food : Indian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a pub located near the Café Rouge . It is family friendly and has cheap prices . They also serve Indian food there . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||The new pub , Cocum , has average ratings , food , beer , a good price range , and it is family friendly \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two Italian restaurant is a family friendly place situated on the riverside . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||A Chinese restaurant called Alimentum is low cost in Riverside . However , it is not family Friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter coffee shop , providing 1 star , budget , family friendly food . Find us near Café Sicilia \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix , located next to the river , 5 star restaurant \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a 1 star burger place that is family friendly by the river and Café Rouge . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a child friendly place called The Wrestlers serving English food at £ 20- £ 25 . It has excellent customer feedback . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a burger and fries joint located a short distance away from Café Rouge and is family friendly . The cost is average . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap Italian with 5 out of 5 customer Rating . It is located in riverside near Yippee Noodle Bar . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||A Fast food venue with a customer rating of 3 out of 5 named The Phoenix is on the riverside . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||If you like pubs and Japanese food , check out The Mill . This pub offers moderate pricing . It is located in the riverside area . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||By the riverside near Café Brazil there is a coffee shop called The Vaults . Its customer rating is average and the price range is less than £ 20 . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : city centre||In the city centre is a pub that serves Italian food called The Waterman . It has a 5 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the £ 20 - 25 price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is high . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not a kids friendly Italian restaurant located near Express by Holiday Inn at riverside . It is moderately priced and has average customer rating . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a restaurant that welcomes children and serves French food \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers provides Chinese food in the cheap price range . Its customer rating is 5 out of 5 . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Next to the river you can find Aromi pub . Unsuitable for families with small children . So far it has earned a one - star rating . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a high - end family - friendly sushi restaurant with three stars . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||A restaurant with high customer ratings is Taste of Cambridge with a price range of only £ 20.00 - £ 25.00 . \nname : Strada | Type : pub | food : Japanese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||The Japanese pub , Strada , is rated 1 out of 5 and is near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop located near the river . Licensed and family friendly . Moderately priced . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a 5 - star rated restaurant providing your family with a taste of the USA . Located inside the City 's Centre , it is also gives its costumers a scenic view while enjoying their meal . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : city centre||Clowns is a pub in the city centre . It has a high rating with a price range of £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||A coffee shop named The Mill serves high priced fast food in the riverside near The Sorrento . \nname : The Twenty Two | food : Japanese | family friendly : yes||There is a children Friendly Japanese called The Twenty Two \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : city centre||The Waterman is an average fast food restaurant in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers near Raja Indian Cuisine in riverside serves a high price range Italian food . \nname : Blue Spice | food : English | price : high | area : riverside||In the riverside area there is an expensive restaurant that serves English food called the Blue Spice \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the city centre near the Express by Holiday Inn . It is low priced , family friendly and has a 3 out of 5 rating . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||In Riverside , there is a great , family friendly fast - food pub called Giraffe , where children are welcome . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a Chinese restaurant . Customers rate it one out of five . It is moderately priced . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop that offers Indian food . The price is more than 30 euro 's and is located near Burger King in the riverside area . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop located at the city centre that serves Italian food . It is found near Clare Hall and has a low customer rating . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : yes||The Alimentum is a Chinese food restaurant with a high price range . It is child friendly and in the riverside area . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an child friendly Italian eatery near The Sorrento . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a non family - friendly coffee shop that will cost you less than £ 20 for some Fast food . The customer rating is low . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||i love the Strada near Rainbow Vegetarian Café . it is kids friendly with good Chinese food and is a 3 out of 5 customer rating \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an establishment selling Italian food and also has a coffee shop on site . It is located by the riverside near Raja Indian Cuisine . It is a cheap place to eat and yes it is family friendly \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||Beside The Portland Arms is a restaurant in the middle of the city that is a dine in called The Cricketers . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||The family friendly food place , The Wrestlers , serves decent full English breakfasts at low prices . \nname : Wildwood | Type : pub | food : Chinese | price : more than £ 30 | customer rating : high||Wildwood is a pub providing Chinese food in the more than £ 30 price range . Its customer rating is high . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||In the riverside area there is a cheap pub called The Golden Palace . It is close to The Rainbow Vegetarian Café . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||an average English restaurant in the riverside area in the cheap price range is The Phoenix \nname : The Cambridge Blue | Type : pub | food : Japanese | price : high | near : Café Brazil||The Cambridge Blue is a pub located near Café Brazil . It serves Japanese food and is priced high . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a pub with a high price range and a customer rating of 3 out of 5 . Children are not allowed . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid - friendly pub in the riverside area with an average price range . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum offers Indian cuisine for less than £ 20 and is in the city centre . It has a low customer rating but it near the famous Yippee Noodle Bar . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a non family friendly place in the moderate price range , It is located near the Express by Holiday Inn and is rated 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a low rated , Japanese coffee shop , priced at £ 30 and more , in the riverside near The Portland Arms . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||There is a fast food restaurant named Browns Cambridge with a low customer rating priced over £ 30 . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||An English food restaurant with a 3 out of 5 rating near the Rainbow Vegetarian Café is called Strada . They are kid friendly with a moderate price range . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Avalon||With a customer rating of 1 out of 5 , the coffee shop named Blue Spice is moderately priced , near Avalon and the city center , and is not kid friendly . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a restaurant providing food Italian in the 20 - 25 pound price range . It is located in the riverside people rating high \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||There is a expensive Japanese coffee shop Cocum . Customer rating 5 out of 5 . Not family - friendly . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers . It offers Japanese food in a family friendly atmosphere . The price range is less than 20 English sterling . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||In the area of riverside , Blue Spice has an average customer rating . It also is child friendly with a high price range . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||1 out of 5 customer rates The Phoenix , which has Italian food and it 's riverside . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||A 5 star family friendly restaurant is Zizzi . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a restaurant that serves Indian . its customer rating is 5 out of 5 and it is family friendly . it is in the riverside area . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Phoenix , serving Japanese food , with a medium customer rating is located in the riverside area . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a French restaurant . It is located near Café Rouge and has a low customer rating . \nname : Bibimbap House | food : French | area : city centre | near : The Rice Boat||A French restaurant , Bibimbap House , I s located near The Rice Boat in city centre . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a mid - priced coffee shop near the city centre , by Raja Indian Cuisine . Not kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||There is a cheap restaurant English is The Dumpling Tree \nname : Strada | Type : pub | food : French | customer rating : 1 out of 5 | near : Yippee Noodle Bar||There is a pub serving French food called Strada . It s located near the Yippee Noodle Bar , it had a customer rating of out of 5 . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat located in the riverside area near Express by Holiday Inn has a high customer rating and offers Indian food . Price range is more than £ 30 , however it is not children friendly . \nname : Loch Fyne | food : Indian | customer rating : low | area : city centre | near : The Rice Boat||Right near The Rice Boat in city centre is an Indian place named Loch Fyne , the ratings are low though . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||The family friendly sushi restaurant ' Loch Fyne ' has quite low prices . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is coffee shop with fast food , cheap prices , and average customer ratings in riverside , near The Portland Arms . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop serving Italian food , and is located at the riverside , near Clare Hall . However , customers have given it a low rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace fast food coffee shop has a reasonable 3 out of 5 rating for a coffee shop moderately priced in the city centre . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes||Cocum is the place to take the family for good food . It 's a coffee shop serving Indian food at low prices . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||The Phoenix , found outside of city centre , is a three star fast food restaurant . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a less than £ 20 coffee shop in the city centre that delivers Fast food . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a 5 stars restaurant with delicious food . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||Near All Bar One there is a restaurant called Midsummer House . It is an expensive five - star restaurant . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in the riverside area near Express by Holiday Inn , The Rice Boat serves Indian food at a moderate price range . It is not family friendly and has a 3 out of 5 customer rating . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry serves Japanese food . Its near The Bakers and is kid friendly with a price range of 20 to 25 dollars . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||In riverside is The Punter which is child friendly serving food in the higher price range and is close to The Portland Arms \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop in Avalon in the riverside area . It has a customer rating of average and is not family - friendly . Prices are less that £ 20 . \nname : Alimentum | food : French | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap , family friendly , French restaurant in the riverside area . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop that serves Italian food in Clare Hall city centre area . Clowns has a customer rating of 5 out of 5 . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Stop by The Waterman in Riverside for conveniently priced Italian food . This dining experience is sure to be an intimate one , with low crowds and adults only , you can spend a romantic evening full of zesty Italian cuisine . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||Near Café Rouge there is a highly rated restaurant named Wildwood . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a Japanese pub that has a price range of more than £ 30 and is located near Café Brazil . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||There is an average priced French coffee Shop located near Café Sicilia . The Punter is not family - friendly with average reviews . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : no||There is a Chinese restaurant near the city centre called Alimentum . It has a moderate price range and is not kid friendly . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is offers Indian cuisine in the city centre area , near Café Rouge . It is not family friendly and has a 5 out of 5 customer rating . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced , family friendly pub . They are located near Café Rouge . \nname : The Waterman | price : moderate | family friendly : yes||At The Waterman , the range is kid friendly . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a French food serving place , near Express by Holiday Inn , on the riverside . It is children - friendly and it 's rated 5 out of 5 . The price range is more than £ 30 . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap family Friendly pub in the riverside area . It sells Fast food . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||The Vaults is a non family friendly low cost restaurant that has wines , bread and cheeses . \nname : The Punter | food : French | price : less than £ 20||The Punter has French food for less than £ 20 . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a British themed restaurant by the river , and down the road from Express by Holiday Inn . It has 5 - stars and is family friendly . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat offers Chinese food at a high customer rating . Locate near to riverside area . Children are friendly . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman , price range £ 20 - 25 , is a French restaurant in the city centre with high customer ratings . It is not kids friendly . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||A restaurant that is child friendly and has a customer rating of 3 out of 5 is Cocum . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an expensive family - friendly Chinese restaurant . The customer rating is only 1 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns is a French coffee shop near Clare Hall in the riverside area . It has a low customer rating \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers has breakfast for low prices , they aren 't family friendly and only have one star . \nname : The Golden Palace | Type : pub | price : moderate | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace pub is near Rainbow Vegetarian Café in the city centre and moderately priced . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||inexpensive Japanese food with low customer rating at Alimentum in the city centre near Yippee Noodle Bar \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man is a moderately priced , kid - friendly venue on the riverside . \nname : Alimentum | food : Indian | price : cheap | area : riverside | family friendly : yes||Alimentum is an Indian restaurant that is family friendly . It is cheap and near riverside . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a cheap pub near Café Adriatic rated 5 out of 5 . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers , has great food and is competitively priced . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is a family friendly place with an average customer rating and a price range of less than £ 20 . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||There is a less than £ 20 pub The Olive Grove located in the city centre that provides Chinese food but is no family friendly . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a restaurant providing wine tasting and cheese tasting at a medium price range . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop that offers French food . This is not a place to take your children . It has great customer rating and is located in the city centre . \nname : Cotto | food : French | near : Café Rouge||Cotto is a French restaurant located near Café Rouge . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a family friendly Japanese pub in the riverside area . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves high priced Italian food in the riverside area near Yippee Noodle Bar with average customer ratings . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located near Café Rouge . They have rated low and are family friendly . \nname : The Olive Grove | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a children friendly English pub near Riverside with a slightly high price range . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a French food restaurant located in the city centre , near Express by Holiday Inn . It is family - friendly , cheaply priced and averagely rated . \nname : The Eagle | food : Chinese | customer rating : high||The Eagle is a highly rated Chinese restaurant . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no||With an average customer rating , coffee shop Cocum serves fast food at a high price range . However Cocum is not suitable for children . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||restaurant is children friendly called Cocum with high customer rating . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge that is low priced and offers sushi . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a French Café with a low satisfaction rating in the city center the meals range from less than £ 20 . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||near Café Rouge is an average rated Italian restaurant called Midsummer House . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A cheap place to eat is Blue Spice , which is by the riverside . It 's a cheap and family - friendly restaurant , although is not rated highly . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub that offers fast - food in the high price range , located in riverside . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||Aromi in riverside is a coffee shop with a low customer rating . They serve French food and are not family - friendly . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle rates 5 out of 5 for Japanese cuisine . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a British coffee shop with high prices and a 5 out of 5 rating near The Portland Arms \nname : Green Man | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||There is an Italian restaurant near the Riverside All Bar One called Green Man . It is reasonably priced and suitable for all the family . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||A moderately - priced , family - friendly restaurant , the one - star ' The Waterman ' is located on the riverfront , north of the City centre , and serves Japanese cuisine . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||A newly - opened venue near Café Sicilia , Clowns offers cheap , family - friendly dining . \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Fitzbillies near the The Six Bells is an Italian costing less than £ 20 \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The family - friendly coffee shop and fast food place named The Eagle , is near Burger King in the city centre , has a cheap price range and an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies ' is a expensive coffee shop located north of the city centre that serves American food . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no||Aromi is a French food coffee shop with an average customer rating . It is located on Riverside , but has a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the area of riverside near Raja Indian Cuisine is The Wrestlers , it is a coffee shop . It is not kid friendly and the Fast food is highly expensive . \nname : The Rice Boat | food : Fast food | area : city centre||The Rice Boat in city centre has fast food . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a family friendly restaurant in the mid price range . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The Rice Boat in the riverside area is a highly rated , child - friendly fast food restaurant . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Fitzbillies serves Japanese food and has an average customer rating . It is a coffee shop in the riverside area in the price range of less than £ 20 . It is not family - friendly . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Down in the riverside area near The Sorrento there is a pub that is family friendly named Taste of Cambridge . \nname : Cotto | food : Japanese | customer rating : high | family friendly : yes | near : Ranch||Cotto is a Japanese food restaurant with a high customer rating , it is kid friendly and is located near Ranch . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Aromi is a restaurant near the river . It has been given one - star and is considered family friendly \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||A coffee shop that is not kid friendly is located in the riverside area near Burger King . It is named The Eagle , has French food and price range of £ 20- £ 30 and a high customer rating . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the high price range located near Café Brazil . It is at the riverside with a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , rated 3 out of 5 , is a moderately priced restaurant near Café Adriatic in the riverside . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rainbow Vegetarian Café is a low rated expensive Café located near The Rice Boat . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||A new restaurant opened near The Six Bells , it is called Giraffe and have a very affordable price range between 20 and 25 £ . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located in the city centre near Raja Indian Cuisine . It is not family - friendly and serves French food . It has a price range of less than £ 20 . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||The Wildwood pub provides fast food at a higher than usual price range . It is rated 1 out 5 with customers . \nname : Bibimbap House | food : English | price : moderate | area : city centre | near : Clare Hall||With a moderate price range , the Bibimbap House , near Clare Hall in the city centre , is an English food establishment . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix is a one star restaurant located near the river . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Fast food pub that is family friendly near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving Italian food within a price range of twenty pounds . It is located on the riverside , near The Portland Arms , and has a low customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||A coffee shop near The Portland Arms with a low customer Rating and a price Range of less than L20 , is Cotto . It serves Italian food . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee Shop providing French food . It is located in city center near The Portland Arms . 3 out of 5 costumer rating . But high price range . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is an expensive high rated restaurant located in city center . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly pub near Express by Holiday Inn . Its mid range Japanese food is highly rated . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a family - friendly pub with a high price range located in the city - centre . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers coffee shop , near The Portland Arms , is not family friendly and has an average customer rating for its Indian food . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||The Dumpling Tree is a Japanese restaurant . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Green Man is a average price range is less than £ 20 . It is Located in the riverside and not family - friendly \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is a kids friendly place near Café Sicilia with moderate prices . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly fast food restaurant situated near the river close to All Bar One \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a highly rated coffee shop and Japanese restaurant located in the city centre , near to Burger King . It is in the higher price range of £ 30 or more and is not children friendly . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 1 out of 5||The Cambridge Blue is an Indian restaurant with a customer rating of 1 out of 5 . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a restaurant that children friendly and 1 out of 5 customer rating . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a family - friendly , highly rated French restaurant located in riverside . £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop that offers a family friendly environment and 5 star quality . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub providing British food that is located near the river . The prices are high . \nname : The Punter | food : Japanese | price : moderate||The Punter provides Japanese food . It is moderately - priced . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum sells French food , customer rating 1 out of 5 price range is moderate and is near Yippee Noodle Bar in Riverside \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||With a low customer rating , Clowns coffee shop serves Italian food . It is located along the riverside near Clare Hall . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes||The Aromi is a family - friendly coffee shop that serves Japanese food . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a moderately priced Indian restaurant . It has a 1 out of 5 and is located in the city centre . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is family friendly French restaurant , situated by the riverside near to Café Rouge . The customer rating is low . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne is a French restaurant that is not family - friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is near The Sorrento . They are not family friendly . \nname : The Twenty Two | food : Japanese | family friendly : no||The Japanese restaurant , The Twenty Two is not family - friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||If you are looking for a high rated French coffee shop in the city center , go to Clowns near Clare Hall . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is aptly named to be kid friendly . It is located near Café Sicilia and offers selections with average prices between £ 20 - 25 . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese in the city center near Yippee Noodle Bar . It 's less than £ 20 but has a low customer rating . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a child friendly restaurant wit a high price range . It can be found near Café Sicilia . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat with cheap price is located near Express by Holiday Inn by riverside . The food is Japanese and customer rating is high . Its not family - friendly . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||Located in the Riverside area is a higher priced fast food restaurant The Phoenix which boasts average customers reviews . \nname : The Punter | food : Chinese | price : moderate||The Punter is a Chinese restaurant with a moderate price range . \nname : Wildwood | Type : restaurant | family friendly : no||Wildwood is a restaurant for a mature public \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Plough is a child friendly restaurant in the high price range situated near The Bakers \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||Wildwood is a low priced pub with a variety of food and drinks . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing French food in the average price range . It has a high customer rating and is child friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Italian food in the riverside area near Burger King , It has a high price range with an average customer rating and is not child friendly . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry restaurant provides average Indian food in a non family friendly environment . It is located in the riverside area near Café Rouge . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : no||The Rice Boat is found in the area of city centre and offers Fast food . It has a a low customer rating it is not family - friendly . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is by riverside provides Fast food and is family friendly price range is cheap and is near All Bar One \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||There is an English , kid friendly restaurant named The Golden Curry . It has a high customer rating . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||An English styled venue , Bibimbap House is located on the riverside , near The Rice Boat . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : yes||There is a child friendly venue located in riverside with a high price range . It is called Alimentum and provides Chinese food . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix moderate priced good value English food with 3 out of 5 stars in the city center . \nname : The Waterman | price : moderate | family friendly : yes||The Waterman is a child friendly and has a moderate price range . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : cheap||The is a cheap fast food restaurant named The Dumpling Tree . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is a riverside child friendly restaurant that serves expensive English food . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum provides Chinese food in the high price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is average . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a child friendly pub serving Italian food in riverside . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is now a mid - priced average Chinese . It 's near Express by Holiday Inn in the riverside area . Not very child friendly though . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in the riverside area , with a high customer rating . The price range is near Café Brazil in the riverside area . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is an average , cheap , pub in riverside . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||There is a place Travellers Rest Beefeater located near Café Adriatic in the riverside area . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||You should try the Japanese restaurant Midsummer House near the Café Rouge . It does have a low rating . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||A pub near Café Brazil , The Cambridge Blue , offers Japanese food at a moderate price range \nname : Cotto | food : English | near : Café Rouge||A few steps of the Café Rouge , there is a place called Cotto where you can eat English food . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two , a family - friendly restaurant , is located near The Rice Boat in the city centre . It offers food less than 20 and has a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that serves Indian food in the riverside area . It is family friendly and is located near the Crowne Plaza Hotel . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Located in the riverside area , The Twenty Two is family friendly and serves English food . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant with a customer rating of 5 out of 5 . It is located in the city center . near Café Rouge , and is family friendly . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a low - cost , 5 - star option for families . \nname : The Twenty Two | food : English | family friendly : no||The Twenty Two does not allow families . \nname : The Mill | Type : pub | food : French | price : cheap | area : riverside||The Mill French pub is located on the riverside . The price range is cheap . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a family friendly Chinese restaurant that is less than twenty pounds a meal near the city center . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a children Friendly Fast food restaurant in the riverside area near The Sorrento . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||English pub food is served in Wildwood with a high customer rating and a price range of £ 20 - 25 . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : no||Zizzi pub is an average place serving Italian food to adults only \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub style restaurant offering a selection of of English dishes . It is conveniently located near The Portland Arms area . Bring the whole family , The Dumpling Tree is kid friendly . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||The Golden Palace is a mid priced restaurant . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : city centre||A pub called The Waterman serving Indian food has a low customer rating in the city center . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman provides English food in less than £ 20 . It is located at riverside . its customer rating is low and it 's also not suitable for a family . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi pub serves Italian food , is children friendly , and has a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is an Italian food outlet with high customer ratings . They are not down as kid friendly . Their price range is between £ 20 - 25 . \nname : Blue Spice | food : English | price : moderate | area : riverside||Want English food with moderate prices then try Blue Spice in the riverside area \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that is located in the middle of the city , offers wine and cheese , is family friendly , and rated 5 stars . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House is a high - priced local venue located next to Clare Hall . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||There is a family friendly restaurant that serves Chinese food called The Wrestlers . The price range is under £ 20 but it has a low customer rating . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree is a high priced restaurant located in the city centre . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||There is a French restaurant Loch Fyne in Riverside near The Rice Boat . It has a low customer rating . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Serving cheap , poor Chinese , The Waterman is not family friendly and is located riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||Serving Japanese food , The Eagle is a coffee shop that offers prices less than £ 20 , a family - friendly environment , and is located near the Burger King in the city centre . It has a low customer rating . \nname : Blue Spice | food : Italian | price : more than £ 30 | area : riverside||Ah Mama Mia for some outstanding Italian stop by Blue Spice near Riverside and bring at least 30 Quid or more for quality costs . \nname : Blue Spice | food : Chinese | price : moderate | area : city centre||Blue Spice offers Chinese food of a moderate price range in the city centre area . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||Wildwood Pub , is a good place that offers burgers . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is family friendly , low cost with an average rating . It serves English food and is located near the Express by Holiday Inn in the riverside area . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle Offers fast - food prices fictional \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||There is a Japanese restaurant near Crowne Plaza Hotel . It is called The Waterman and it is not family - friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , is a family friendly coffee shop near Crowne Plaza Hotel that offers Japanese cuisine . \nname : Fitzbillies | food : Indian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies specializes in Indian cuisine in the price range of £ 20 - 25 and is located in the picturesque region near The Six Bells . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||There is an expensive , non - children friendly Indian restaurant called The Eagle located in the city centre , near Burger King . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman adult only with low prices serving fast food near city centre . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a high customer rating restaurant that serves Chinese food for more than £ 30 . It is located in Riverside , near Yippee Noodle Bar . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge coffee Shop is located north of the city center . and close to the Crown Plaza Hotel and welcomes families . Taste of Cambridge coffee Shop also offers meals and wine . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : no||The city centre pub Aromi has an average customer rating . It is not family - friendly . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||A cheap pub with fast food and your average customer rating would be the Wildwood . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The three out of five star restaurant , The Phoenix , is moderately - priced . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||In riverside , there is a coffee shop that serves French food called Fitzbillies . They have a high price range , 3 out of 5 customer rating , and are not kid friendly . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man is a child - friendly with a price range £ 20 - 25 in Riverside . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice is a sushi restaurant in the high - price range . It is located near the river . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter serves highly rated , mid price range Japanese meals best suited for adults in a coffee shop near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderately priced coffee shop near Café Sicilia that serves sushi \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that provides Indian food . It is located near The Portland Arms . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||There 's an expensive Indian restaurant in the city centre near to the Express by Holiday Inn . It 's called The Rice Boat and has an average customer rating . It 's not children friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The coffee Shop , The Eagle , is a moderately priced fast food establishment that is kid friendly and rates 1 out of 5 so far , next to it 's neighbour Burger King at City Centre . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||There is a pub in the high price range in the riverside area . It is called Clowns and has an average customer rating . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The non - family - friendly , fast food serving restaurant The Waterman is located in the riverside area . It serves food for less than £ 20 . It has a low customer rating . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||Good , but high priced coffee shop located in the city centre near Café Brazil . The Vaults has a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood , a coffee shop that serves Indian food at a high price , earned a customer rating of 1 out of 5 . It is located near Ranch . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||The Giraffe is a pub offering Chinese food in the riverside area . This restaurant is family friendly . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : no||In riverside its located a public moderate French food restaurant called The Olive Grove \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry does not offer a menu for all ages , and their fast food is not favorable at all . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||There is a non family - friendly coffee shop with a cheap price range and a customer rating of 5 out of 5 located near The Bakers is named Giraffe . \nname : Alimentum | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum offers Italian food in the riverside area , it is kid friendly and priced at 20 - 25 . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Midsummer House restaurant Located near All Bar One has low cost prices with a three out of five stars \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House offers wine and cheese . It is located near All Bar One . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Avalon||The coffee shop , Blue Spice is located near Avalon in the city centre . It has an average customer rating and it 's not family - friendly but the prince range is less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a cheap , family - friendly Italian coffee shop found near the city centre , rated 5 out of 5 by its customers . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||At riverside the good rated coffee shop Zizzi is kids friendly the price is £ 20 to £ 25 . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle offers five - star service . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a fast - food restaurant for families . It is in the mid - price range and has one star . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace now offers sushi and coffee conveniently near the river for a low price . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||A French restaurant in the city centre with high customer ratings , price range £ 20 - 25 , and not kids friendly is The Waterman . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||The Fitzbillies is an averagely priced French restaurant near The Six Bells . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman is a mid - range pub near the river in city centre . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : no||Giraffe is a Chinese pub on the riverside for adult clentele . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly restaurant with a rating of 3 out of 5 . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||There is a higher - priced one star restaurant near All Bar One called Midsummer House . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The new coffee shop Zizzi , situated by the riverside with a kids friendly environment and a price range between 20 - 25 £ , has a very high customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum , and Italian coffee shop , gets average ratings , is moderately price and doesn 't cater to children . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||There is a high priced English restaurant names Green Man near All Bar One in Riverside that is child friendly . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Bibimbap House serves Fast food near The Rice Boat in the riverside area . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 1 out of 5||Wildwood is a moderate priced pub that serves Indian food , with a low customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a low priced coffee shop located next to Ranch . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||In the medium price range , The Green Man serves fast food at the riverside . The venue is child friendly and located close to All Bar One . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge is French food . The price is high . The customer rating 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located along the riverside there is a kid - friendly coffee shop called Zizzi , with a customer rating of 1 out of 5 . \nname : Fitzbillies | food : Fast food | price : moderate | near : The Six Bells||There is a moderately priced , fast food establishment called Fitzbillies ; it is located near to the The Six Bells . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : yes||There is a family friendly Chinese restaurant located in the city centre called Alimentum . The price range is high . \nname : The Eagle | food : Japanese | customer rating : average||A 3 star sushi restaurant is The Eagle . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside , near Express by Holiday Inn , The Rice Boat serves Japanese food , have a high price range , 3 out of 5 customer rating , and are not kid friendly . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix has moderate price for English food , it got a customer rating of 3 out of 5 . It is located in Riverside \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child - friendly Italian coffee shop near Crowne Plaza Hotel in Riverside . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman is a French restaurant located in the city centre , offering it 's food for under £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop offers Indian food in the high price range and is not children friendly near Raja Indian Cuisine . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside||The Golden Palace coffee shop in riverside promises average Indian food for high prices . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no||Within the city centre there is a coffee shop called Aromi , which serves Indian food . They have low customer ratings and are not family friendly . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Fast food and is family friendly price range is cheap and is near All Bar One by riverside \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly restaurant which offers Chinese food priced less than 20 pounds . It is near The Bakers . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes||Moderately priced is The Olive Grove , a family - friendly , fast food public house in the city centre . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||Located close to Ranch , the Wildwood coffee shop offers high end wine and cheese . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre there is a children friendly average customer rated Indian restaurant called The Rice Boat in the high price range . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||With it 's high price range and a customer rating 3 out of 5 , Strada is a children friendly restaurant serving up Japanese food and can be found near Rainbow Vegetarian Café . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a child - friendly coffee shop with a 5 star rating . It is located near Avalon and food costs more than £ 30 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a child - friendly French pub near The Portland Arms . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||Moderately - priced , The Dumpling Tree restaurant serves Italian cuisine . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is an average priced Japanese coffee shop , with meals priced between £ 20 - 25 . The Mill is located in Riverside near The Sorrento . \nname : Midsummer House | food : Chinese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a Chinese food restaurant with an average 3 out of 5 rating located near Café Rouge . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a cheap pub with average ratings in riverside . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop named Cotto that serves French food near The Portland Arms with a moderate price range and a 1 out of 5 rating located riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in City centre , near Burger King . It is inexpensive and lowly rated . It is not a good place to take children . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : no | near : Café Rouge||The Plough is a pub style eatery featuring Italian food in the high price range . It is not children friendly and is located near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace provides an excellent food and variety of wines . They also have river view while enjoying your meal . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers moderately priced kid friendly Fast food . They have a customer rating of 1 out of 5 and are located in riverside near Burger King . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a coffee shop in the river side area that is Japanese child friendly and is rated 3 out of 5 . It is called Aromi . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||The coffee shop by the river , Aromi , has received poor reviews despite its family friendly status . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Aromi coffee shop has a customer rating of 5 out of 5 and is near the city center . It serves French food in a non - family - friendly atmosphere . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop near The Bakers with a high price range and a customer rating of 1 out of 5 . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Located on the riverside near The Rice Boat , The Twenty Two is a cheap family friendly restaurant with a 5 out of 5 customer rating . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : no||The Golden Curry serves English food . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Dumpling Tree is a restaurant that serves Italian food for less than £ 20 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||The Italian food at the restaurant , The Cambridge Blue , must not be too good for them to have a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop located on the edge of the city that offers median prices . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a restaurant with high prices , located near the river \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a family friendly , low - priced Japanese coffee shop with an average customer rating . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill , a Japanese riverside restaurant , has food between £ 20 and £ 25 . It is located near The Sorrento . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle , a cheaply - priced coffee shop , is located in centre city near Burger King . They serve fast food in a family - friendly environment . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is low . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree , located near The Portland Arms , serves Chinese food and is family friendly . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a highly - rated restaurant near Express by Holiday Inn . It offers a higher - priced menu in a child - friendly setting . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is an Italian pub located in the riverside area . It is kids - friendly and is moderately - priced . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Wildwood pub is a tasty local Italian restaurant . Only quality food is served at this high - end establishment . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub serving fast food near The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Located riverside is The Golden Palace . This high priced coffee shop has a customer rating of 5 out of 5 and offers Japanese cuisine . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a children friendly pub near The Portland Arms . The Dumpling Tree provides fast food . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Indian food with a customer rating of 1 out of 5 and is children friendly near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the riverside . It is near Burger King . Its customer rating is high . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a French coffee shop near The Portland Arms , in the city center . It is cheap and has a low rating . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is located on the riverside near All Bar One and offers dishes for upwards of £ 30 \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop . Wildwood is medium priced . Wildwood is located close to Ranch . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||Having a high customer rating , the English pub Wildwood has a price range of more than £ 30 . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||With a moderated price range , Fitzbillies is a Japanese restaurant located near The Six Bells . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||Near Ranch you will find a children - friendly pub with an average customer rating called The Cricketers . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||You will be going to The Rice Boat . It has a high customer rating , but it serves Fast food . It located by the Express by Holiday Inn next to the riverside . Yes , it is children friendly and has more than £ 30 \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : yes | near : Café Rouge||Near Café Rouge is a pub called The Plough . It is family friendly and you can get Indian food for less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a low rated , family friendly Italian coffee shop near The Portland Arms . \nname : The Rice Boat | food : Japanese | area : riverside||For Japanese food in the riverside area try The Rice Boat . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||In the high price range is the riverside pub , The Golden Palace , which is near Rainbow Vegetarian Café . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||The Cambridge Blue is a fast food restaurant with a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop providing Indian food for £ 20 or less . It is located in riverside near Raja Indian Cuisine . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||For average Fast food in riverside near Café Rouge , visit The Golden Curry . Yes , it is children friendly . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a child friendly , riverside restaurant which serves high priced Italian food with a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : more than £ 30 | family friendly : yes||Loch Fyne is a Chinese restaurant that serves kids . However , it is quite expensive . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre with a customer rating 5 out of 5 is cheap but not family - friendly providing Fast food . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is an English restaurant by the riverside that has a high customer rating but is not family - friendly . \nname : The Rice Boat | food : French | area : riverside||By the riverside , The Rice Boat serves up French cuisine \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat restaurant is located near the Rainbow Vegetarian Café . This offers average priced food and has an average customer satisfaction of 3 out of 5 stars . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is in the riverside area near The Rice Boat . It 's mid - priced , with a 3 out of five rating , and is not child friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||A family - friendly coffee shop that serves fast food with a high customer rating and a price range of £ 20 - 25 , The Eagle , is located in the city centre , near Burger King . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A moderate Fast food restaurant called Strada is located near the Rainbow Vegetarian Café , is kid friendly , and has a rating of 1 out of 5 . \nname : The Vaults | Type : restaurant | food : Chinese||The Vaults is a restaurant that serves Chinese food . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub that provides Indian food It is near The Portland Arms . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : less than £ 20||The Dumpling Tree is a restaurant with cheap Indian food . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a riverside area , French food place with a high customer rating and prices in the £ 20 - 25 range . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly restaurant , offering Indian food for less than £ 20 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Near Avalon in the riverside area , there is a coffee shop called Blue Spice . Is has a low customer rating , is not child - friendly , and has a price range of more than 30 pounds . \nname : The Plough | Type : pub | food : Italian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough , an an Italian pub , is located near Café Rouge . It is kid friendly and has a price range of £ 20 - 25 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a family friendly Indian restaurant located in the riverside area . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop yes less than £ 20 French Burger King riverside low . \nname : The Eagle | food : Indian | customer rating : low||There is an Indian restaurant called The Eagle but it has a low customer rating . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree pub , close to The Portland Arms , serves Chinese cuisine in a quiet environment . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Blue Spice is a non - family - friendly restaurant with a price range of less than £ 20 with a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace coffee shop in city centre offers reasonably priced French cuisine in the £ 20 - 25 range . It has a 3 out of 5 customer rating . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub which serves Chinese food for less than £ 20 . It is located near Café Rouge and is not family friendly . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix provides Chinese food in a 20 - 25 pound range . It is rated high by customers and is located in the city center . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately priced , poorly - reviewed , family friendly sushi restaurant near Rainbow Vegetarian Café . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant , located near the Express by Holiday Inn , serves a traditional English breakfast . \nname : The Eagle | food : Indian | customer rating : 5 out of 5||The Eagle is a place offering Indian food with good rating of 5 out of 5 . \nname : The Vaults | food : Indian | price : high | family friendly : no||The Vaults provides Indian food in the high price range . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is a wonderful restaurant . It 's very family friendly and the average prices for dishes are less then 20.00 dollars . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar in the riverside area , Alimentum has English food , a price range of £ 20 - 25 , and a high customer rating . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop with medium prices and is family friendly . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||Japanese food from The Phoenix in riverside has a low customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||The Portland Arms center city Cotto has a poorly rated Italian coffee Shop highly priced . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers , a highly - rated Chinese restaurant , is a family friendly option . Their price range is over 30 pounds . \nname : The Punter | food : Italian | price : less than £ 20||The Punter is a low priced Italian restaurant . \nname : The Waterman | Type : pub | food : Indian | customer rating : high | area : riverside||The Waterman is a pub providing Indian food It is located in the riverside . Its customer rating is high . \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a 3 out of 5 pub that is family friendly and serves French food . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a highly rated , children friendly coffee shop near Burger King in riverside . It has English food and the price range is more than £ 30 . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||There is a pub called The Mill by the riverside which is cheap to eat at . \nname : The Mill | Type : pub | food : Fast food | price : high | area : city centre||The Mill is a highly rated , fast food pub in the centre of the city . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||There is a coffee shop located near the river called The Golden Palace . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is a pub in the average price range . It is not kid - friendly , and has a 3 out of 5 customer rating . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a moderately - priced 3 - star establishment located on the river to the north of the city centre , next to Café Adriatic . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant of Italian food . We are near The Bakers . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is placed near Crowne Plaza Hotel . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop rated 5 of 5 . It is cheap and located near The Bakers . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Near The Bakers is a kid friendly restaurant in the £ 20 - 25 range called The Plough . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman serves expensive Chinese food in the riverside area . It has customer ratings at 1 out of 5 and is child friendly . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the £ 20 - 25 price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is high . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : high||Browns Cambridge is average priced restaurant with high customer rating . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||There is a child friendly restaurant in Riverside called The Twenty Two that serves Chinese food \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||There is a riverside restaurant named The Mill right next to The Rice Boat . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The Strada is not a family - friendly restaurant which has low customer rating . It is a cheap restaurant and located near Rainbow Vegetarian Café . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Japanese venue on the riverside . It has a customer rating of 5 out of 5 and is near Café Rouge . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Fast Food restaurant , The Waterman , is not friendly for children . It has a rating of 3 out of 5 and is moderately priced . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a five - star family coffee shop in the low - price range called Fitzbillies located near a river . Fitzbillies serves fast food . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Cocum is a coffee shop serving fast food . It is low cost and family friendly . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||On the riverside near Yippee Noodle Bar is an English restaurant called Alimentum . It has a moderate price range and customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a cheap pub with a customer rating of 5 out of 5 . It is near Café Adriatic . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||Near Café Rouge is a cheap , family friendly pub called The Plough that serves English food . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Waterman is located in city centre and has a price range of more than 30 . The Waterman serves French food , is child friendly and has a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly Japanese coffee shop located by the riverside Crowne Plaza Hotel . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||With a high customer rating , Alimentum serves fast food near Yippee Noodle Bar at a price range of £ 20 - 25 . Alimentum is in a riverside area . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Indian food in the less than £ 20 price range . It is near Rainbow Vegetarian Café . Its customer rating is low . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman , which is located in riverside , serves English food , is not kid friendly , has moderate prices , and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the riverside . Its customer rating is low . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers is a French restaurant . The price range is less than £ 20 . It isn 't family - friendly . the customer rating is average . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||A riverside restaurant , The Eagle , has low customer ratings and a high price range . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman is a place to get French food for less than £ 20 in the city centre . They have an average customer rating and aren 't family - friendly . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : city centre | near : Clare Hall||An Italian restaurant in the city centre near Clare Hall with prices less than £ 20 is called Bibimbap House . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns near Café Sicilia is not kids friendly . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||You will find Loch Fyne on the riverside near The Rice Boat . This venue has an average customer rating and the food they serve is French . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||French Strada is near Rainbow Vegetarian Café . It is kids friendly . It has a moderate price range . Customer rating is 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge serves Italian food in a family - friendly , coffee shop environment . Near the river , it is conveniently located close to the Crowne Plaza Hotel . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap family friendly coffee shop near Avalon in the area of riverside which I gave 5 out of 5 stars . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||Taste of Cambridge is moderately priced restaurant , and has a 3 out if 5 star customer rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||A cheap English restaurant near Express by Holiday Inn in city centre is The Rice Boat . \nname : Midsummer House | food : English | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a fairly cheap restaurant located near Café Rouge , they are currently offering English food . The customer rating is 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is a Japanese pub in the riverside area for adults only . The average meal costs a minimum of £ 30 . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||Strada is a pub serving English food and is near Yippee Noodle Bar and there customer rating is average \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub near Café Adriatic . It is at a moderate price range and has a customer rating of 3 out of 5 . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Located in the city centre and having a high price range The Waterman has a surprisingly low customer rating and a family friendly environment for Indian food \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman , at Riverside , rates average on the English Food Spectrum . It 's cheap , and not family - friendly . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : no||For an adult oriented , moderately priced Indian restaurant , try Alimentum , located in the riverside area . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop that served low - rated Indian dishes in a family friendly environment near the riverside . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Near Ranch , is a French kid friendly restaurant with a 3 out of 5 rating called Cotto . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Zizzi is a coffee shop that is not family - friendly , has a low customer rating in the city center area with a price range of less than 20 pounds . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop moderate priced near the Avalon area of Riverside . It is no kids with a 1 out of 5 customer rating . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||English food at The Golden Curry in riverside area , near Café Rouge . No family - friendly with average customer rating . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum serves Japanese food and is located in the city centre near Yippee Noodle Bar . It has a high customer rating and a price range of 20 -25 pounds . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop called The Wrestlers near Raja Indian Cuisine that serves moderate priced food is in the riverside area and is for adults . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers serves Italian food . It is a coffee shop near Raja Indian Cuisine in the riverside area . It is kids friendly and has a moderate price range . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Blue Spice is in city centre , has a high rating and is kid friendly . Price £ 20 - 25 . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||near The Bakers is a family friendly Japanese food place called The Golden Curry with high prices \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms , offering decent prices and a one star rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a moderate price range coffee shop that offer fast food . It has a customer rating of 1 out of 5 and is not kid friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||A low priced coffee shop called Cocum serves sushi but is not family friendly and is rated a low 1 star . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop with French food offered less than 20 pounds . It is family friendly , and located near Café Sicilia . It has low customer ratings . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving French food in the more expensive price range . It is located at the riverside near The Portland Arms . It has a low customer rating . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Find the English food family friendly pub style eatery The Dumpling Tree near The Portland Arms . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat located on riverside is a non family - friendly establishment where you can find English food with a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop located in the area of riverside , near of Burger King . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a fast food restaurant that is moderately priced with a customer rating of 3 out of 5 . It is not kid friendly and is located within the city centre . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man in an English restaurant in Riverside near All Bar One that is child friendly and in the high price range . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||restaurant The Plough is located near The Bakers . It is cheap and family friendly . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||In the riverside area , The Olive Grove is a child friend pub that offers English food at a remarkable price rate . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a shop called The Waterman that serves Chinese . The price range is moderate and the customer rating is 3 out of 5 . it is not child friendly and is near in the riverside area \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||for a expensive high rated bistro near the All Bar One there is Midsummer House \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : no | near : The Bakers||For pricier food , you can try The Plough . It 's a restaurant near The Bakers , but not child - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 1 out of 5||There is a Chinese restaurant with a 1 out of 5 customer rating named The Cambridge Blue . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||There is a pub that offers drinks and snacks that is called Zizzi . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant near The Rice Boat in the vicinity of the riverside area . It provides Italian food . This place has a low customer rating . \nname : The Punter | food : Japanese | price : more than £ 30||There is a high end Sushi restaurant called The Punter . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : city centre||The Waterman is an English pub located in the city centre with a low customer rating . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a mid - priced coffee shop that is located by Café Sicilia . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||A high price child friendly restaurant is The Olive Grove . The Olive Grove is located in the riverside area . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine at riverside for French food good for family . The food cost less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is a restaurant food English in the high price range children friendly yes \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Near Burger King , in the riverside area , there is a coffee shop called The Eagle . It is rated 3 out of 5 and serves fast food . It is moderately priced an not kid friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||In riverside area , there is a Fast food restaurant coffee shop named The Mill , which has a high price range and it 's near The Sorrento . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving Japanese food , it 's not family - friendly and is located in the riverside area near Crowne Plaza Hotel . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||The Golden Palace at Riverside is a restaurant with high customer rating . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||A child friendly restaurant near The Bakers is The Plough . It is in the high price range . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue , located near Café Brazil in the city center . , is a moderately priced pub . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop with French food in a moderate price range . It is situated near The Portland Arms in the city centre . \nname : Fitzbillies | food : English | price : more than £ 30 | near : The Six Bells||English food is served at Fitzbillies , near The Six Bells , and is in the price range of more than E30 . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||With an average price range and a high customer rating , The Punter is a family friendly coffee shop by Café Sicilia . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers offers food and drink at a low price to families . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub located at the riverside . The price range is moderate , and it is not child friendly . \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is cheap with an average customer rating . It is located near Rainbow Vegetarian Café . \nname : Fitzbillies | food : Indian | price : cheap | near : The Six Bells||There is a cheap Indian restaurant near The Six Bells called The Fitzbillies . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||In the city centre near Yippee Noodle Bar , there is a French restaurant called Alimentum . It is expensive and gas a customer rating of three out of five . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a moderately priced coffee shop The Wrestlers in the city centre near Raja Indian Cuisine . It is not family - friendly but they serve fast food . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||There is a one star coffee shop named Wildwood near Ranch that serves French food and is moderately priced . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Japanese food . child - friendly . It is located in the city center . Prices are between £ 20 - 25 . Near the Express by Holiday Inn . Customer Rating 3 out of 5 \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||mid range price food available at Zizzi restaurant riverside setting \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A place at riverside called The Rice Boat is a child friendly and has a customer rating of 3 out of 5 . Additionally to that they serve French cuisine . \nname : Strada | Type : pub | food : French | customer rating : average | near : Yippee Noodle Bar||Strada is a French pub that has a average customer rating , it is near the Yippee Noodle Bar . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Close to the city center . , enjoy cheese and wine at Strada . Not for family 's . Near Rainbow Vegetarian Café . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is situated by a riverside near The Rice Boat . This has a child friendly environment with 5 out of 5 customer reviews and a fantastic price of more than £ 30 . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge . It is in the riverside area and has an average customer rating . It provides French food , but it not family - friendly . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults , a pub , is located near Café Adriatic and is average priced . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Burger King . Its customer rating is high . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||Located in riverside is a 3 out of 5 customer rated restaurant called The Golden Palace . \nname : Loch Fyne | food : Chinese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a high rated Chinese restaurant in riverside near The Rice Boat . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children friendly pub serving fine Japanese cuisine near The Portland Arms . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Italian restaurant located in riverside near The Sorrento . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : riverside||The Phoenix serves high priced Chinese food with a customer rating of average in riverside . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Customer gives Clowns rating of 1 out of 5 , a pub located at riverside with a high price range of food . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman sells Japanese food on the riverside . It is medium price range , poorly rated and not family friendly . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue offers a sit down English menu . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : yes||The Rice Boat fast food restaurant is family - friendly in the city centre but with low ratings . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi has Indian food . It is kid friendly . it is in riverside \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||Located near Café Brazil The Vaults coffee shop is high priced and has a low customer rating . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||The Golden Curry is not family - friendly and the customer rating is low and it serves English food . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Family friendly Browns Cambridge near The Sorrento serving Fast food . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||The city centre had a place called The Rice Boat . The families were not friendly because the food was English and they rated it 5 out of 5 \nname : Wildwood | Type : restaurant | family friendly : no||A restaurant not for family is The Wildwood . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry provides Indian food Its customer rating is high . \nname : Fitzbillies | food : French | price : cheap | near : The Six Bells||Eat cheap at Fitzbillies French restaurant near The Six Bells . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , a Chinese food restaurant located near Café Rouge in the city centre , has a 5 out of 5 customer rating and is not family friendly . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a family friend pub located in the riverside area . It serves Italian food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a fast food coffee shop with a moderate price range . It is located in the city centre near Raja Indian Cuisine . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||When dining at The Rice Boat restaurant , you can expect quality Asian cuisine at affordable prices . The restaurant is located near Express by Holiday Inn and is family friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : yes||Loch Fyne is a restaurant providing Indian food in the less than £ 20 price range . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||A Fast food restaurant called The Rice Boat , is located in city centre near Express by Holiday Inn . It has moderate price range , customer ratings of 3 out of 5 and is not kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||By the riverside is a children friendly Japanese restaurant called The Golden Curry . It has a customer rating of 3 out of 5 and is near Café Rouge . \nname : Loch Fyne | food : French | customer rating : low | area : city centre | near : The Rice Boat||The ' Loch Fyne ' is a French food restaurant near The Rice Boat in the city center with a low customer rating . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : city centre||The Phoenix opened a new fast food restaurant in the city centre . Recently they received an average customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop located in the city centre , near Burger King . this coffee shop is not a child friendly zone and it has a high price range . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is located near All Bar One and offers good meals at very affordable prices . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||If you are looking for a low cost coffee shop in the city centre , try Fitzbillies . It 's kid friendly , has a high customer rating , and offers fast food in a price range of £ 20 - 25 . \nname : The Phoenix | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Phoenix is a fast food restaurant by the riverside that has a customer rating of 1 out of 5 . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||Alimentum provides Indian food in the less than £ 20 price range . It is located in the city centre . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a fast food coffee shop that has a rating of 5 out of 5 that is family friendly near The Portland Arms . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre , the family - friendly The Waterman serves cheap Italian food and has a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is a coffee shop on the riverside called Fitzbillies , they serve Fast food and charge £ 20 - 25 . They have a high customer rating but are not child friendly . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||The Golden Palace is a highly rated restaurant located in the riverside area . \nname : The Eagle | food : Fast food | customer rating : average||There is a fast food restaurant named The Eagle with an average customer rating . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi pub can be found at riverside , is child friendly and has a customer rating of 1 out of 5 . \nname : Strada | Type : pub | food : Chinese | customer rating : low | near : Yippee Noodle Bar||The pub named Strada near Yippee Noodle Bar offers Chinese food has a low customer rating . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a restaurant with a price range which is near The Six Bells . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man provides Chinese food with a moderate price range in the Riverside area near All Bar One . \nname : The Golden Curry | food : Indian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry serves Indian food with a price range above average . It is located near The Bakers . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two offers Italian food in a kids friendly environment . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : city centre||Blue Spice serves Indian food for less than £ 20 . It 's near the city centre . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is not family - friendly . They serve cheap French food and is rated 5 out of 5 . It is in riverside . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman offers 5 star pasta for the family , located near river . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop offers 3 star burgers and fries for the family , located near The Portland Arms . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located in Riverside area near the Express by Holiday Inn is Italian restaurant The Rice Boat . restaurant is moderately priced and child friendly , rated 1 out of 5 . \nname : The Waterman | Type : pub | food : English | customer rating : 3 out of 5 | area : riverside||The Waterman pub serves English food in the riverside area . It has a 3 out of 5 customer rating . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves English food . It is near the Café Rouge in the city centre . Even though it is not family - friendly , the customer rating is 5 out of 5 . \nname : The Golden Curry | food : Indian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is providing Indian food in the cheap price range . It is near The Bakers . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||The Italian restaurant , The Phoenix , that is located in the city centre , has a high price range , and a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||There is a family - friendly venue which serves fast food called The Wrestlers , it is cheap however it has an excellent customer rating of 5 out of 5 . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||Aromi is a Japanese restaurant located in the riverside area . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||There is a kid friendly , fast food establishment called The Wrestlers with moderate prices . It is rated by customers at 3 out of 5 \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap , family - friendly French coffee shop located near Raja Indian Cuisine in the city centre . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A child friendly place named The Rice Boat serves fast food in the city center near Express by Holiday Inn is priced high and rated low . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is 1 out of 5 . \nname : The Punter | food : Italian | price : high||The Punter is a sit - down restaurant in Cambridge . The Punter is an Italian restaurant in the high price range . The Punter is a sit - down Italian restaurant in the high price range . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kid - friendly coffee shop with cheap eats and a 5 out of 5 customer rating . Blue Spice is located along the river near Avalon . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is for the whole family with low ratings and hight price range \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a fast food restaurant with high customer rating and is located in the riverside . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a restaurant that has a customer rating of 5 out of 5 . It is a child - friendly venue . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an excellent restaurant serving English food at riverside . It is family friendly and cheap . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne is an above average Japanese child friendly restaurant \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is an expensive five star restaurant The Rice Boat located near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||There is an Indian restaurant called Loch Fyne that is family friendly . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns is a cheap restaurant near Café Sicilia . It is family friendly . \nname : Loch Fyne | food : Japanese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is located near The Rice Boat . It is in the riverside area , and customer satisfaction is high . Loch Fyne serves Japanese food . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is a 5 star Japanese restaurant that is exclusive to adult guests . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||If you 're looking for cheap food that doesn 't sacrifice taste , come by The Eagle by the riverside ; known for their 5 out of 5 customer rating . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults is an English restaurant that is not family - friendly and has prices lower than 20 pounds . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||Japanese food in a pub style restaurant near Café Rouge is served at The Plough , in the over £ 30 price range \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum offers English food with cheap price near Yippee Noodle Bar in city centre . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne serves Indian food customer rating 5 out of 5 in city centre near The Rice Boat . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub restaurant in the high price range . It is located across from Café Adriatic . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 1 out of 5||Wildwood pub serves moderately priced Chinese food . It has a customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a family - free Japanese restaurant , located at the centre of the city . Prices are cheap , and customers rate it a 5 out of 5 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant with a moderate price range . It has a rating of 1 out of 5 and it is kid friendly . It is located in riverside near the Express by Holiday Inn \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kid friendly restaurant that serves French food . It has an average rating by its customers . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The kid friendly , Italian food restaurant named The Waterman is located in the city centre and has a price range of £ 20 - 25 and has a high customer rating . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood is a pub providing Fast food with normal customer rating . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is high priced Indian food in Riverside . It has high ratings and is child friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman fast food near Riverside is kid - friendly . has a moderate price range , star rating 1 out of 5 . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||A restaurant catering for those willing to spend over £ 30 is called the Giraffe , situated near The Six Bells . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is an average , family friendly , and inexpensive fast food option in riverside . You can find this coffee shop near Burger King . \nname : Midsummer House | food : Indian | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House , near the Café Rouge , earns a 3 out of five rating for it 's Indian food . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a luxury restaurant Alimentum located near the Yippee Noodle Bar . \nname : Loch Fyne | food : Indian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne provides Indian food It is located in the riverside . It is near The Rice Boat . Its customer rating is low . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a children - friendly coffee shop near Café Sicilia , serves French food . Customers rate it 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||Aromi is a low rated Fast food coffee shop located in riverside and is not family - friendly . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a kid friendly Chinese pub . They have a moderate price range and are near Café Rouge \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a Japanese coffee shop that is non child friendly with a high price range and a customer rating of 3 out of 5 . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||A family friendly Japanese restaurant called The Vaults is more than £ 30 . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The restaurant The Golden Palace is expensive . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is an English restaurant that serves kid - friendly food . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||French pub The Dumpling Tree is kids friendly . It is near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Japanese coffee shop called The Cricketers is located near The Portland Arms is family friendly with a 5 out of 5 customer rating \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a children friendly pub in riverside area that serves Italian food . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum sells fast food ranging from £ 20 to £ 25 . It is near the Yippee Noodle Bar by the riverside . It has high customer rating . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : city centre||Blue Spice serves Fast food in the city centre area . The price range is less than £ 20 . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing Italian food . It is located near of the Crowne Plaza Hotel . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||If you 're staying at the Express by Holiday Inn , check out Fitzbillies . The establishment is cheap , but not family - friendly . Rated 5 out of 5 . \nname : Cotto | food : Italian | customer rating : low | family friendly : yes | near : Ranch||Customer ratings for Cotto an Italian food restaurant near Ranch in the riverside area are low . \nname : The Punter | food : French | price : more than £ 30||The Punter is a little high budget . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a well rated family coffee shop near the Crowne Plaza Hotel . It serves sushi . \nname : Strada | price : high | customer rating : average | family friendly : yes||Strada has a high price range , and is Children friendly . The customer ratings are average . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : city centre | near : Café Adriatic||Located near Café Adriatic , the Travellers Rest Beefeater is of sub - par quality . its price range is very high , but that may be due to it 's location near the city center . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree is a restaurant of cheap Sushi food . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Located in the centre of the city is child friendly Blue Spice with a moderate price range and a customer rating of 1 out of 5 . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : no | near : The Bakers||The Golden Curry is located near The Bakers . They serve French food for more than £ 30 . It is not a family - friendly establishment . \nname : The Vaults | food : Fast food | price : moderate | family friendly : no||The moderately priced The Vaults serves fast food and is not child friendly . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||Having a price range of E20 - 25 , The Vaults is near Café Brazil in riverside and has a high customer satisfaction \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Zizzi is a poor quality coffee shop that is not family friendly and has above average pricing . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum , a highly rated but not child friendly , coffee shop also offers Indian food in the more than £ 30 price range . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers offers a combination between a coffee shop and fast food restaurant , a kid friendly environment and 1 - star rating , and is located near The Portland Arms . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The Plough is a cheap , family - friendly restaurant near The Bakers . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a family friendly restaurant that provides fast - food \nname : Bibimbap House | food : Japanese | price : cheap | area : riverside | near : Clare Hall||for cheap Japanese food in the riverside , Bibimbap House lies near the Clare Hall \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge has a customer rating of 3 out of 5 and is in the high price range . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||Wildwood is a pub that serves fast food in the low price range and has a five - star rating . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||French food can be found at The Waterman which is in the riverside area . It has a high customer rating and is in the price range of £ 20 - 25 . It is not kids friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace an Italian coffee shop is located in the center of the city . With high ratings the price range is more than l30 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a Japanese coffee shop in the riverside area . It is kid friendly and is currently rated 1 out of 5 by customers . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a family friendly French restaurant with a customer rating of 3 out of 5 . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Blue Spice is situated near the riverside . It is not kid friendly . Prices range from £ 20- £ 25 . The customer rating is high . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Costing over £ 30 Giraffe is a restaurant near The Six Bells \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman serves Indian food at a cheap price average customer ratings in the city centre , but it is not family friendly . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum offers cheap fast - food in a riverside setting . Located near Yippee Noodle Bar , this restaurant has received a 5 out of 5 customer rating . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood , a restaurant located near Café Rouge , has low customer ratings . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||For an English meal in a family friendly restaurant , the Loch Fyne offers meals for less than 20 . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : yes||Zizzi is a family friendly pub serving Chinese food with a low customer rating . \nname : The Golden Curry | food : English | price : more than £ 30 | family friendly : yes | near : The Bakers||Near The Bakers in a child friendly restaurant that serves English food at a higher price point called The Golden Curry . \nname : Blue Spice | food : French | price : high | area : riverside||Blue Spice is a place that serves French food that is a bit pricey . It is located on the riverside . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a cheap Italian coffee Shop in the city centre . This establishment has a customer rating of average and is not family - friendly . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is The Rice Boat with an average customer rating and price range of less than £ 20 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||There is a one star coffee shop called Clowns next to Clare Hall that sells sushi . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers do English food with a moderate price range , their rating is 1 out of 5 but are not child friendly . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The French restaurant named The Eagle is a coffee shop in the city centre , near Burger King is a place for kids with price range from 20 - 25 with a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop named Browns Cambridge that serves Italian food near Crown Plaza Hotel by riverside . It is rated 1 out of 5 and is kid friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle a coffee shop which offers Indian food is cheap . It ha a customer rating of 3 out of 5 . I t is located in riverside near Burger King . It is family friendly \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle located by the Burger King , is a coffee shop that offers Indian Food at a cheap price range . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||By the riverside there is a kids friendly coffee shop called Browns Cambridge that has a customer rating of 1 out of 5 and provides Fast Food . It is near to the Crown Plaza Hotel . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||There is a coffee shop near The Bakers called Giraffe which has an average customer rating , is in the high price range and is children friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is child friendly , sells English food and is along the riverside \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Near Avalon , in Riverside , there is an expensive and children - friendly coffee shop named Blue Spice that has an average rating . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle sitting riverside offers a high price range and 3 out of 5 rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace s located in he centre of the city . It also delivers take away . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne has a customer rating of 1 out of 5 . They serve English food in the riverside area near The Rice Boat . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||coffee shop in the riverside area called Zizzi , it has a high price tag , is child friendly and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||In the riverside area , Fitzbillies is a coffee shop that serves fast food . It is expensive but average . \nname : The Olive Grove | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub in riverside serving English food for between £ 20 - 25 \nname : Wildwood | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | near : Ranch||A business located near Ranch is Wildwood coffee shop , with a 1 star rating and low prices . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub that serves an Italian cuisine with a moderate price range . It is not children friendly , and is located in the City Centre . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : no||For higher priced English food , there is The Waterman . Located in the city centre , it has an average customer rating and is not child friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi has a customer rating of 3 out 5 and serve French food and a coffee shop . They are family friendly and located in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a family friendly Japanese coffee shop in riverside that has a price rage under 20 dollars and an average customer rating . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a moderately priced Japanese , kid friendly pub located near Café Rouge . \nname : Aromi | Type : restaurant | food : Fast food | area : city centre||For a fast food restaurant based in the city centre then go to Aromi \nname : Green Man | Type : pub | food : Fast food | area : city centre | near : Café Rouge||Green Man serves pub fast food near Café Rouge in city centre . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : no | near : All Bar One||Children are not allowed in the Green Man , an expensive fast food place , near All Bar One in the city centre . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||Taste of Cambridge is a restaurant with an average customer rating , it is also cheap . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies is a cheap eat near Rainbow Vegetarian Café \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Japanese cuisine for a reasonable rate close the riverside can be found at Blue Spice . \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||Midsummer House serves English food and is located near Café Rouge , but has a ow customer rating . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an average cheap Fast food establishment with a family friendly atmosphere , located near Rainbow Vegetarian Café . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix has French food that is in riverside . Its price range is really cheap and has a 5 out of 5 customer rating . \nname : The Punter | food : Italian | price : high||The Punter is a restaurant in the high price range . The Punter is a sit - down restaurant . The Punter is an Italian restaurant . \nname : The Cambridge Blue | Type : pub | food : Indian | price : cheap | near : Café Brazil||A cheap Indian pub named The Cambridge Blue is located near Café Brazil . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is a fast - food establishment . It is expensive and child - friendly . It is located in the riverside area . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||With a disappointing 1 out of 5 for the city centre The Phoenix serves moderate Fast Food \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Chinese food for less than £ 20 and is located in the riverside area near Express by Holiday Inn . The Rice Boat has a low customer rating and is not family friendly . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a child friendly coffee shop located in Riverside . Prices are moderate and customers rate it 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop serving Indian food at a price range of over £ 30 . Its customer rating is high . It is located near the city center and is children friendly . \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||The Italian Fitzbillies is located near The Six Bells and has a price range for food less than 20 pounds . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum coffee shop is a coffee shop that is very family friendly . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : no||Indian restaurant The Wrestlers is in the high price range and is not children friendly . It has an average customer rating . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family - friendly , 5 - star restaurant that serves local fare at reasonable prices . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a British cuisine restaurant that offers moderately priced food , with a 5 star rating . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an English food restaurant with a high customer rating . Located near Café Rouge , this child friendly place is near the riverside . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||Loch Fyne is a non - family friendly Italian restaurant . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers pub is located near the Ranch \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : no||Alimentum is a high price , non - family - friendly Italian restaurant in the city centre . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||There is a restaurant near All Bar One called The Cricketers offering English food . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||The Cricketers is a restaurant near All Bar One offering Italian food \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||The Vaults pub is near Café Adriatic . The price range is more than £ 30 . The customer rating is low . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Located in Riverside , close to Café Rouge , The Golden Curry is a highly rated family Indian restaurant . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A kid friendly Japanese coffee shop that has a 5 out of 5 customer rating is Aromi , which is located in riverside . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a High customer rated Italian restaurant that is children friendly , prices are more than £ 30 and located on the Riverside . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : no | near : The Bakers||The non - kid friendly restaurant , The Golden Curry , serves Chinese food in the moderate price range and is near The Bakers . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||In the Riverside area , you can find Fitzbillies coffee shop . The Fitzbillies is family friendly with a high customer rating with prices ranging from 20 - 25 . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is located near Café Sicilia and offers low priced French food in a family friendly environment with low customer ratings . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no||The Aromi is a coffee shop that serves Italian food in the riverside area . Its customer rating is average and it is not family - friendly . \nname : The Golden Curry | food : Chinese | price : high | family friendly : no | near : The Bakers||The Golden Curry is a restaurant providing Chinese food at a high price range . It is not child friendly and is located near The Bakers . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a fast food place near Express by Holiday Inn . This moderately priced , Kid friendly place is in the city centre area with a rating of 3 out of 5 \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves Indian food with a price range of more than 30 . It has a high customer rating , is kid friendly , and is near the Rainbow Vegetarian Café . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||In riverside , Bibimbap House is cheap Fast food located near Clare Hall . \nname : Blue Spice | food : Chinese | price : more than £ 30 | area : riverside||Blue Spice is a restaurant that serves Chinese food with a price range of more than £ 30 and is located in riverside . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly restaurant rated 1 out of 5 with high ricing . Located in riverside near Express by Holiday Inn . \nname : The Waterman | price : high | family friendly : yes||The Waterman in high price range is children Friendly \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||pub more than £ 30 The Vaults Café Adriatic customer rating \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum , a coffee shop that offers fast food is moderately priced and received a 3 out of 5 customer rating . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is low priced , five star rated , and family friendly . It serves foods such as pasta and is located close to Rainbow Vegetarian Café . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat has a customer rating of 5 out of 5 and is a family friendly fast food restaurant in the riverside . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is located by The Sorrento and serves families American food . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : no||The not so family - friendly pub , Zizzi is serving delicious French food . \nname : The Waterman | food : Chinese | family friendly : no | near : Crowne Plaza Hotel||There is a non - friendly restaurant located near Crowne Plaza Hotel is The Waterman . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Japanese food in the area of riverside near Express by Holiday Inn . It is family friendly and price range is less than £ 20 . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a kid friendly Japanese . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is by the riverside and is an average price . \nname : The Olive Grove | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub that serves Chinese food at a higher than average price range . They are located in the Riverside area and is a child - friendly place . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||In the riverside area near Café Sicilia is The Twenty Two , a pub with a 5 out of 5 customer rating . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House , an Italian restaurant near Clare Hall in the riverside area , serves food for less than £ 20 . \nname : Alimentum | food : Japanese | price : high | area : riverside | family friendly : yes||Alimentum is a children friendly restaurant providing Japanese food in the high price range . It is located on the riverside . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||For French cuisine that children - friendly , hop over to Browns Cambridge in Riverside near The Sorrento . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi is a 1 starred pub , serving British food . Not family friendly \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||For child - friendly Japanese fare , try Loch Fyne restaurant . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||On the river near The Sorrento is a not family friendly place called Browns Cambridge . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a moderate price range English restaurant that is not kid friendly . It has a customer rating 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a child - friendly coffee shop in the city centre that serves Japanese food in the high price range . It has a rating of 5 out of 5 . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Having a moderate price range in the Riverside area with a 1 out of 5 rating is a family friendly Italian restaurant . called The Waterman . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||If you find yourself at the Midsummer House near Café Rouge try some English food though have an iron stomach as it is rated only 1 out of 5 . \nname : Green Man | Type : pub | food : Indian | area : riverside | near : Café Rouge||Green Man is a pub that provides Indian food It is located in the riverside . It is near Café Rouge . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults offers fast food to adults for less than 20 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : no||A not so family restaurant is Loch Fyne . With a price range that is usually less than £ 20 serves Chinese food . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a family - friendly Fast food in riverside . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter is an interesting low - priced place that provides drinks hamburgers and chips . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry is a fast food restaurant with a low customer rating plus it 's not a family - friendly place . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove , a family friendly , mid price range pub , offering French cuisine set by the riverside . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada Indian food had average quality with a high price and no children allowed near Rainbow Vegetarian Café . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||There is a moderately priced kid friendly French restaurant The Golden Curry near The Bakers . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a 1 star kid friendly moderate priced French restaurant in the riverside area . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a fast food restaurant in Riverside that is child friendly and received a customer rating of average . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix Chinese restaurant is a cheap restaurant located in the riverside area with a great rating of 5 of 5 . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a family friendly restaurant located near Café Sicilia . Its price range is over £ 30 . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||Not far from the Yippee Noodle Bar the always busy Strada pub is a great place to eat fast food . \nname : The Punter | food : French | price : more than £ 30||The Punter is a great place to enjoy a bottle of wine , some fine cheese , and bread . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||There is a kids friendly Japanese restaurant with the customer rating of 3 out of 5 called The Golden Curry . \nname : The Punter | price : moderate | area : city centre | family friendly : no | near : The Portland Arms||The Punter is a child friendly establishment near The Portland Arms in the city centre . Its prices are reasonable . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop that serves fast food . It has a great customer rating and is located near Crowne Plaza Hotel . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is an excellent restaurant located in the city center . \nname : The Olive Grove | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes||There is a pub in riverside , called The Olive Grove , that is children friendly . They serve English cuisine with a price Range of more than £ 30 . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||There is a high price range fast food place called Wildwood . It has a 1 out of 5 customer rating . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||There is a French restaurant that is family - friendly known as The Waterman and located in the city centre . It has a price range of less than £ 20 and had average customer reviews . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Blue Spice is located in city centre with a price range of more than £ 30 . It has a customer rating 5 out of 5 and is not children friendly . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a high rated and kid friendly coffee shop , located near Café Sicilia . It serves food of the French variety , and it is averagely priced . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Avalon||In the city centre near Avalon , there is a coffee shop called the Blue Spice that is not family - friendly , has an average customer rating , but has a less than £ 20 price range . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is kids friendly and serves Fast food . It is at the riverside and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||City Centre has a great , five star coffee shop called , The Eagle . It is family friendly and located next to Burger King . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||The Cricketers is a Japanese restaurant and All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||The fast food place Fitzbillies in the city centre is a family - friendly coffee shop . They have an average customer rating and cheap prices . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is located outside of the City Centre , near to the Crown Plaza Hotel . It caters for families and offers French cuisine and coffee . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a low rated restaurant with a customer rating of 1 out of 5 , that serves Indian food in the Riverside area , it is not child friendly . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||A riverside pub is the place to be and Clowns is that place \nname : Midsummer House | food : Chinese | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House serves Chinese food is located near All Bar One . It has a high customer rating with its price range above £ 30 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Zizzi is a coffee shop with high customer rating and with average price . It is located in city centre . It is kids friendly . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||There is a children friendly restaurant near Crowne Plaza Hotel that serves Italian food . It is named The Waterman . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a high priced coffee shop that serves fast food but is a non - children friendly atmosphere . It is located near Raja Indian Cuisine both in the city centre . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The riverside restaurant , The Waterman , is an expensive restaurant serving English food . It is not child friendly and has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||A low priced hamburger restaurant is Browns Cambridge and has a decent rating of 3 out of 5 stars . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Wildwood is a nice authentic British pub that is not too expensive . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Adriatic||The Travellers Rest Beefeater has a high customer rating and the price range is £ 20- £ 25 , they are in the City Centre near the Café Adriatic . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : no||The Rice Boat serves English food with an average customer rating . Not recommended for families , it is located in Riverside . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : no | near : The Portland Arms||In the city centre , near The Portland Arms , The Punter has a price range of less than £ 20 . It is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||A coffee shop named The Cricketers which specializes in Italian food is located near The Portland Arms . It 's family friendly and rated average by customers . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : city centre||The Eagle is affordable , highly regarded and convenient to the City Centre area . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A kid - friendly Japanese restaurant called The Rice Boat is located in Riverside with a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is pub with food prices less than £ 20 . The food menu is English . It is near Café Brazil . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : no | near : The Bakers||A high customer rating coffee shop near The Bakers is called Giraffe . There prices range from £ 20 to 25 and they are non kids friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | near : The Sorrento||There is a coffee shop serving Indian food in the river side area near The Sorrento . It is called The Mill and the average price is under £ 20 . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill is located near The Sorrento in the riverside area . It offers moderately priced food and coffee . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a cheap French coffee shop . It can be found in the city centre , close to Raja Indian Cuisine , not recommended for families . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||The Punter is a medium priced restaurant located in City Centre near The Portland Arms . Not family friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||With a fairly high price range , The Rice Boat is located in the riverside area near Express by Holiday Inn . It sells Indian food and is children friendly . Overall , the customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop called The Eagle with a moderate price range that serves French food and is also kid friendly . It has a customer rating of 1 out of 5 , located near Burger King by the riverside \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A family friendly option is The Rice Boat . This Indian cuisine is priced on the higher end and has a rating of 1 out of 5 . They are located near Express by Holiday Inn in the city centre . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||There is a pub located near the river that is family friendly . It 's called Giraffe and serves Italian . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : high||Browns Cambridge provides Japanese food high price range of £ 25 - 25 and as a high customer rating \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a low priced fast food place outside of City Centre . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||If you are looking for a high - rated place to have Indian food in a kid - friendly environment by the Ranch , try Cotto . \nname : Cotto | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is 3 out of 5 . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is a 5 out of 5 rated restaurant called The Rice Boat . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is in the City center close to the Express by Holiday Inn . It is medium priced and rated three stars . It is for the whole family and serves fine drinks and food . \nname : Strada | Type : pub | food : French | customer rating : high | near : Yippee Noodle Bar||Strada provides fantastic French Cuisine . It is a pub type setting and you will find it near the Yippee Noodle Bar . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||Family - friendly options are served at Zizzi . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly Japanese restaurant with low rating along the riverside . \nname : The Phoenix | food : English | price : high | customer rating : average | area : city centre||The Phoenix is an English restaurant with a high price range . Located in the city centre , it has an average customer rating . \nname : The Punter | food : Italian | price : cheap||A cheap place that serves Italian food is The Punter . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two has a customer rating of 3 out of 5 and high price range . It is kid friendly located in the riverside area near The Rice Boat \nname : The Phoenix | food : Japanese | customer rating : high | area : riverside||The Phoenix is a Japanese restaurant near the riverside that has high ratings . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , you can get Japanese food at the Strada for around £ 20 - 25 . With a customer rating of 3 out of 5 . It 's a no for kids . \nname : The Golden Palace | Type : restaurant | price : moderate||A restaurant named The Golden Palace has a moderate price range . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Customers rate Browns Cambridge low . It offers French food for less than £ 20 . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||A kids - friendly pub with a high customer rating and average price range of £ 20 - 25 is named Cocum . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee Shop . It is located in City center near Café Sicilia . Start from low price and family - friendly . Have 5 out of 5 costumer rating . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a fast food restaurant near Rainbow Vegetarian Café with a customer rating of 1 out of 5 that is high priced and not children friendly . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub in the riverside area with French food and a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||You can get low priced coffee at Wildwood near the Ranch . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kid friendly Italian restaurant near the Crowne Plaza Hotel . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto offers French food and a family friendly environment with a 5 out of 5 customer rating . It is near Ranch . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||The Phoenix is a cheap fast food restaurant located in City Centre . 3 out of 5 customer rating . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||In riverside there is a Chinese restaurant called The Twenty Two that is kid friendly . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House near the Café Rouge has average customer rating serves English food . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is serving Chinese food with a customer rating of 1 out of 5 . It is located in the city center and is moderately priced and not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop . It offers fast food and has a customer rating of 1 out of 5 . It is kid friendly and it offers moderate pricing . It is located in the city centre . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House serves English food and is near Café Rouge . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a Chinese restaurant in city center that has a rating of 5 out of 5 it is not family friendly . \nname : Bibimbap House | food : Chinese | price : moderate | area : riverside | near : Clare Hall||The Bibimbap House is a Chinese restaurant located in riverside near Clare Hall . The Bibimbap has a moderate price range . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers serves Indian cuisine and the price range is average . It has good reviews and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop offering Indian Food at a high price range . Customer rating is 1 out of 5 and it is located in Riverside , it is also child friendly \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||A great Japanese food destination is The Phoenix it is located in Riverside and has a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a pub that sells Italian food for a moderate price in Riverside \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 3 star restaurant next to Express by Holiday Inn in city centre . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||Cheap restaurant named The Phoenix down by the river in City centre . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||To have some light snacks and coffee , Wildwood of Ranch offers the best . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a highly rated , cheap family venue in the riverside area \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Japanese coffee shop , Fitzbillies , is located in the city center . It is family - friendly , inexpensive but not highly rated . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a French pub with moderated prices located at the riverside family friendly . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||With a 5 out of 5 customer rating , Clowns is a Japanese coffee shop located near Clare Hall in the center of the city . \nname : The Eagle | food : Fast food | customer rating : 1 out of 5||The Eagle fast food eatery . Rated 1 out of 5 by customers . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre is The Rice Boat . They have a customer rating of 5 out of 5 , serve Chinese food and are family friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is located on the riverside and has a price range of around £ 20 - 25 \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : no | near : All Bar One||In Riverside there is a moderately priced place called Green Man , it 's got Chinese food and is near All Bar One and isn 't kid friendly . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Child friendly Fitzbillies , located near Express by Holiday Inn , is rated 3 out of 5 \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel in city centre is a coffee shop named Taste of Cambridge . This coffee shop provides Indian food and is not family friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly Italian coffee shop , located in the city centre with low customer ratings . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum serves Chinese food with a high price range . Customer ratings for this joint is 1 out of 5 , and is located near the city centre near the Yippee Noodle Bar \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||The new awesome coffee shop named Clowns is a fast food restaurant on the riverside near Clare Hall . It has a low customer rating . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is restaurant providing The Bakers in the high price range \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a family - friendly Japanese food establishment in the city centre with a price range of less than £ 20 . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a moderately priced coffee shop near Avalon in the city centre . They are not kid friendly and have a 1 out of 5 customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||With a low customer rating and a price range of more than £ 30 , you 'll find Blue Spice on the riverside is not children friendly . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||This low rated place called The Golden Curry serves English food and is not family - friendly . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is a low - priced restaurant in the city centre Rainbow Vegetarian Café \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||For a family friendly restaurant in the riverside area , try The Olive Grove . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||The Rice Boat is an Italian restaurant with an average customer rating , located in riverside , close to Loch Fyne . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||A non kid friendly coffee shop near Café Sicilia has a 4 out of 5 customer rating . It 's called The Punter and has a moderate price range and is has fast - food . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop which offers Indian food . Its customer rating is average and it is located in city centre near Clare Hall \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||The Golden Curry is an authentic British restaurant with 1 - star reviews and it is not family friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is an Italian coffee shop located near Ranch , serving items priced at £ 20- £ 25 and and boasting a decent customer rating . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a low - quality restaurant called The Phoenix close to the city river . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Chinese food in the £ 20 - 25 price range . It is near Rainbow Vegetarian Café . Its customer rating is high . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Come enjoy delicious Fast food at Cotto . Yes , this is a child friendly environment near Ranch . Customer Rating : Average \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high priced fast food restaurant located on the river . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||An Italian food is The Strada . It is near Rainbow Vegetarian Café and is not kids Friendly . Price range is between 20 and 25 . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum located in the riverside near Yippee Noodle Bar . Alimentum providing fast food start from £ 30 and have high customer rating . \nname : The Eagle | food : English | customer rating : high||With a high customer rating The Eagle offers English food . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The highly rated ' The Rice Boat ' offers cheap meals . Located near the Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The Loch Fyne restaurant is kid - friendly and offers English cuisine . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||In the city centre area is an Italian coffee shop named The Golden Palace . It has a 1 out of 5 customer rating and a high price range . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||It has a price range of more than £ 30 with a low customer rating . Named Fitzbillies is kid friendly near Express by Holiday Inn . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Clare Hall is near the Italian Bibimbap House in riverside . The price are little bit high . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||Near the riverside , The Olive Grove is a below average priced pub that is family friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||The Loch Fyne restaurant sells French food and is children friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly coffee shop offering Japanese cuisine . It has a five star rating and is in the higher price range . \nname : Green Man | Type : pub | food : French | area : city centre | near : Café Rouge||Near the Café Rouge , in the city centre , The Green Man pub serves French food \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a kid friendly coffee shop located near The Bakers . And is rated 1 star \nname : The Mill | Type : pub | food : Indian | price : high | area : city centre||The Mill is a pub , located city centre , which serves high priced Indian food . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Located near the city centre The Waterman is a high priced low customer rated child friendly Indian . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately priced , kids friendly fast food restaurant , near Rainbow Vegetarian Café . It is rated 3 out of 5 . \nname : Midsummer House | food : Indian | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House provides Indian food in the £ 20 - 25 price range . It is near All Bar One . Its customer rating is high . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Come visit our new , kid friendly Italian coffee shop Browns Cambridge . Located in the riverside area near Crowne Plaza Hotel . High customer ratings will make this a favorite . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese food restaurant with a customer rating of 5 out of 5 . It is located in the city centre near Café Rouge . It is family friendly . \nname : Strada | Type : pub | food : Indian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Poorly - rated Indian pub food can be found at Strada , located near Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a five star coffee shop that is family friendly and serves American food . It is located in City Centre next to Burger King . \nname : Green Man | Type : pub | food : Japanese | area : city centre | near : Café Rouge||Green Man is a pub that serves Japanese food . You can find it near Café Rouge in the city centre . \nname : The Mill | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside||The Mill is a pub providing Italian food . It is located in Riverside . The Mill have range price between £ 20 - 25 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Near Ranch there is a coffee shop called Wildwood , that serves Japanese food . Their price range is more than £ 30 and has a low rating . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum , in riverside , is family friendly , in the less than £ 20 price range , and serves French food . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||The centre city Cotto of Portland Arms has an expensive low customer rated Italian coffee shop . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||Near the city centre is a three star restaurant called The Phoenix . \nname : Bibimbap House | food : Chinese | price : high | area : riverside | near : Clare Hall||Bibimbap House offers Chinese food , offers Chinese food in a high price range . It is located in a riverside area , near Clare Hall . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a restaurant providing Indian food \nname : Midsummer House | food : Indian | customer rating : low | near : Café Rouge||Midsummer House is a venue providing Indian food . It has a low customer rating and is located near Café Rouge . \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||The Plough restaurant is near The Bakers with an average price range but not kid friendly . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : city centre||The Phoenix is a French restaurant in the city centre . It has a 5 out of 5 rating . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a moderately priced Pub is the riverside area . Its customer rating is 1 out of 5 \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||Welcome to The Dumpling Tree Pub where you can bring your children to try our Indian cuisine . We are near The Portland Arms . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||It is a cheap pub The Plough offering eating fast food . Nearby Café Rouge . family - friendly \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn and is in the price range of less than £ 20 . It is not family - friendly and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The adult Japanese coffee shop , Browns Cambridge , is poorly rated and located in the city centre near Crowne Plaza Hotel . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman serves Indian Food , but at a high price and its ratings are only average , it is on the riverside and yes its children friendly \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : city centre||The Waterman is an awful Japanese food pub in the city centre . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a pub selling Indian food cheaply in a family friendly setting next to the water 's edge . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Phoenix is a restaurant which offers fine Japanese cuisine and has an overall customer rating of 5 out of 5 . It is located in the Riverside area . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a Chinese restaurant in the less than £ 20 price range with a low customer rating . It is not family friendly . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : no||The Alimentum , located in the riverside area is a moderately priced fast food restaurant . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in the riverside area , Alimentum is a place selling Indian food in a moderate price range . Overall , this place has a customer rating of 1 out of 5 . For Indian food at moderate prices , you can visit Alimentum in the riverside area near Yippee Noodle Bar . \nname : Strada | Type : pub | food : Chinese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Chinese food Pub , Strada , has a customer rating of 1 out of 5 . It is located near Yippee Noodle Bar . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||For a high - priced , child friendly experience , come to The Punter - on the riverside , near The Portland Arms \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two restaurant does not cater for families . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is an establishment that is located in the city centre , near to The Rice Boat . It serves Italian cuisine and has a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Italian food . It is family friendly and the price range is less than £ 20 . It is situated in Riverside , near Burger King ; it has a low customer rating \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is an average priced French restaurant with a high customer rating . It is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle located in the city centre near Burger King is a child friendly coffee shop offering moderately priced , average Indian foods . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is close to the Express by Holiday Inn affordable , Italian and 1 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Highly rated The Golden Curry serves Fast food . It is not family - friendly . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : no||Green Man is a more than £ 30 pub in the city centre . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : city centre||Clowns is a cheap pub in the city centre area . Customers rate it a 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||there is an average priced coffee shop which is kids friendly in the riverside area called Blue Spice near Avalon \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop in the city centre . The price range is more than £ 30 but it has a customer rating of 5 out of 5 and is children friendly . \nname : Wildwood | Type : pub | food : Chinese | price : less than £ 20 | customer rating : low||Wildwood Is a pub where they serve Chinese food with the price of range of less than 20 euros and they have a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is an Italian coffee shop situated in the city centre , near the Crowne Plaza Hotel . It is not family - friendly . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Near The Portland Arms , at the riverside area , you have Cotto : it 's a French food coffee shop with prices starting from £ 30 and with a low customer rating \nname : Midsummer House | food : Chinese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Located near All Bar One is a highly rated , economically priced Chinese restaurant named Midsummer House . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a cheap restaurant \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||On the riverside you can find a popular coffee shop called Zizzi , it is quite expensive however it is child friendly . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The reasonably priced Italian place , ' The Wrestlers ' , has average reviews of 3 out of 5 but is not a child - friendly place . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kid friendly venue in the moderate price range . They are located near Express by Holiday Inn . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two is a child friendly restaurant in Riverside that serves Chinese food \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : no||Zizzi is a Chinese pub that is low - rated and not family - friendly . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a high - priced , non children friendly , restaurant serving French food with a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Indian food from The Wrestlers has a moderate price range , which is given a 1 out of 5 rating from customers . Children are also welcome . \nname : Loch Fyne | food : English | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne have a customer rating 3 out of 5 , is located in the riverside near The Rice Boat . It Serves Amazing English food \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is in the riverside area . It is a not a family - friendly coffee shop . It has a 5 out of 5 customer rating and serves Japanese food . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle is a fast food restaurant with moderate reviews . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a family oriented restaurant located just near All Bar One . They are on the cheaper side . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Chinese food restaurant of moderate price range . The restaurant is located near Rainbow Vegetarian Café , and is rated 1 out of 5 by customers , it is kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is a high priced Italian restaurant . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto coffee shop is a low budget fast food restaurant near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving fast food in the city centre . High price range , average customer rating and not child friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||The Loch Fyne is a family friendly English restaurant falling in the less than £ 20 price range . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||The Cambridge Blue is a Italian restaurant . customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is coffee shop with French food . Its customer rating is 5 out of 5 and has a price range of over £ 30 . It is not child friendly . It is located near Burger King in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop located near he riverside . It sells Japanese food with a moderate price range . It has a 1 out of 5 rating and is not child friendly . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||If you are looking for a family friendly restaurant when touring riverside go to The Olive Grove . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||In the city centre is The Waterman they are high priced , kid friendly , have a 1 out of 5 rating and serve fast food . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a non child friendly coffee shop serving French food . They have a customer rating of 3 out of 5 and are high in price . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The high customer rated restaurant serving Indian food where children are permitted is called The Golden Curry . \nname : Zizzi | Type : pub | food : French | customer rating : high | family friendly : yes||Zizzi is a French food child friendly pub with a high customer rating \nname : Loch Fyne | food : French | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a French restaurant located in the city centre near The Rice Boat . It doesn 't get good ratings . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||With a customer rating of 3 out of 5 in the centre of the city is a kids friendly restaurant that serves English food in the moderate price range named The Rice Boat located near Express by Holiday Inn . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies serves Italian food in the higher price range and is located near to The Six Bells . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||Wildwood is an pub - style eatery serving Italian food . The restaurants ' prices are high and ratings average . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||Japanese edibles at Bibimbap House close to Clare Hall at riverside start from more than £ 30 . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||There 's an Italian place near the riverside called Loch Fyne . It 's near The Rice Boat . I 've heard great things about it . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the high price range there is The Rice Boat , a child friendly , Italian restaurant which has received average ratings located near to Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Indian | price : £ 20 - 25 | customer rating : high||Wildwood is a high customer rating pub that provides Indian food with prices around £ 20 - 25 . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is located in the riverside area . It is a pub that serves English food with high ranging prices . \nname : The Golden Curry | food : Fast food | customer rating : high | family friendly : yes||If your into Fast food with a high customer rating , kids friendly yes then The Golden Curry Fast food restaurant is for you . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||There is a moderately priced restaurant Zizzi located in riverside . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada sells Indian food and is located near Rainbow Vegetarian Café . It has a high price range and has a customer rating of 1 out of 5 . It is children friendly . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Yes , The Waterman near Crown Plaza Hotel serves Italian food \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a mid range coffee shop for fast food , it is family friendly and it is nearby the river . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman restaurant serves Chinese food that is inexpensive , provide fabulous customer rating of 5 out of 5 , located in the city centre and of course family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is located near Burger King on the riverside . They have fast food , kid friendly , and moderate prices . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a medium priced coffee shop located near Ranch . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : no | near : The Sorrento||Near The Sorrento , in the city centre , is an Indian restaurant that is not quite family friendly , named Browns Cambridge . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , The Strada is offering Chinese food at a moderate price . It is rated a one on the scale out of five . This restaurant is also kid friendly . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers serves Fast food in moderate price range ; Not kids friendly , customer rating is 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is by the riverside near Café Rouge it is kid friendly fast food with a high rating . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||With prices more than £ 30 , The Waterman is a children friendly , high rated Italian restaurant located on the riverside . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||You 'll find The Mill restaurant by the riverside near The Rice Boat . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is a pub that serves English food with prices that range high in the riverside area . \nname : The Olive Grove | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove in the riverside area is a fast food pub that is also kid friendly . They have meals in the £ 20 - 25 price range . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a child friendly Japanese food restaurant with high prices and positive 3 out of 5 ratings . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : no||Alimentum is a medium - priced restaurant in the city centre that serves Italian food , and is not child friendly . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||Midsummer House is a highly recommended Italian dining experience located near Café Rouge . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||Located riverside with a high customer rating , The Phoenix offers fast food for £ 30 and up . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle has a customer rating of 3 out of 5 . The price is cheap and located near riverside . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Adriatic||In the City Centre near the Café Adriatic there is the Travellers Rest Beefeater , their price range is £ 20- £ 25 and they have a high customer rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||If you need a quick bite to eat , bring the family to Browns Cambridge , located near The Sorrento on the riverside . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : no||An Indian restaurant , Loch Fyne , is not family - friendly . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is a restaurant that serves English food for a moderate price and is very kid friendly . \nname : The Punter | food : English | price : high||The Punter has expensive English Food . \nname : The Waterman | Type : pub | food : English | customer rating : 3 out of 5 | area : riverside||Situated at the riverside and serving up English food , The Waterman is a pub with a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is high - priced family - friendly Fast food restaurant . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne serves French food . They are located in city centre , near The Rice Boat . They have a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no||There is a non family - friendly , Italian coffee shop in the city centre area that has an average customer rating named Aromi . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is an adult only coffee shop offering spirits and appetizers and is located near the river and the Crowne Plaza Hotel . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in Riverside that has a 5 out of 5 customer rating . The price range is more than £ 30 . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : city centre | near : The Sorrento||The Mill coffee shop 's fast food is priced higher than average and can be found neat The Sorrento in the city centre . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Located next to the river is the Green Man restaurant . It has moderate prices and is not considered a family friendly place . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is not a kid friendly French coffee shop in the city centre . It has a high customer rating and the price range is £ 20- £ 25 . \nname : Bibimbap House | food : Chinese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Within a riverside area , near Clare Hall , there is Bibimbap House , which offers Chinese food from £ 20 - 25 . \nname : The Phoenix | food : English | customer rating : average | area : city centre||Located in city centre , The Phoenix serves English food and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies coffee shop is located in the city centre . They feature a Japanese food theme , are kid friendly , and have a high customer satisfaction rating . Price range £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||In riverside you will find a cheap Italian coffee shop called Fitzbillies . However not family - friendly it boasts a high customer rating of 5 out of 5 . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||An English , average rated , high costing , but yes , kid friendly place is The Wrestlers . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||The Loch Fyne is a highly rated restaurant near The Rice Boat and in the city centre . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne sells Japanese Food and is located in the riverside area near The Rice Boat . It has average customer ratings \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||In the riverside area , you can find The Olive Grove . This pub is moderately expensive , at £ 20 - 25 per head , and serves a range of French foods . Children are welcome . \nname : The Olive Grove | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes||A cheap place to take your family in the riverside area is The Olive Grove , a French pub \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub near Ranch . It has an average customer rating . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a riverside view , high - priced restaurant near The Rice Boat with a child - friendly environment and 3 out of 5 customer rating . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a family friendly establishment with a 3 star rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a cheap English food restaurant , The Rice Boat near Express by Holiday Inn located in city centre . The customer rating is average and it is not family - friendly . \nname : Midsummer House | food : Indian | price : more than £ 30 | customer rating : high | near : All Bar One||Located near All Bar One , Midsummer House is an Indian restaurant in the more than £ 30 price range with a high customer rating . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum , in the riverside area , serves traditional English food . It is moderately priced and is a casual , family oriented restaurant . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located in Riverside you will find Zizzi , a moderately priced , child friendly coffee shop with a customer rating of 3 out of 5 . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a highly rated Fast food shop near All Bar One . Meals cost between £ 20 - 25 \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a 3 out of 5 star Japanese yes kid friendly environment . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Plough is a child friendly , mid - priced restaurant near The Bakers \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a cheap coffee shop located next to Café Sicilia . It is not family friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||For French food served in a restaurant that is children - friendly , come to Loch Fyne . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a restaurant that serves Japanese food , is kids friendly , and is in the price range of £ 20 - 25 . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||In the riverside area near Café Adriatic is Travellers Rest Beefeater which has a moderate price range and a customer rating of 1 out of 5 . \nname : The Twenty Two | food : Indian | family friendly : yes||There is an Indian restaurant named The Twenty Two , and it is family friendly . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||There is a cheap pub with average ratings on the riverside , called Clowns \nname : Blue Spice | food : French | price : high | area : riverside||Set in a stunning riverside location , Blue Spice is a French restaurant with high prices but even higher quality . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||There is a restaurant located near The Six Bells that is highly priced and serves English food . The restaurant is called Fitzbillies . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a family friendly restaurant providing take - away deliveries and has mostly good reviews . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace got a low customer rating in Riverside . They serve Indian food at high prices . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle is a fast food restaurant with high customer ratings . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a Indian coffee shop . its price range is less than £ 20 and located in the city centre near The Sorrento . \nname : Strada | Type : pub | food : Fast food | customer rating : low | near : Yippee Noodle Bar||Strada is a Fast food pub located near the Yippee Noodle Bar . It has a low customer rating . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough located near Café Rouge is a medium priced pub serving Japanese food but is also child friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the riverside area near Express by Holiday Inn . It has a moderate price range and is kid friendly with a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop , located near a Ranch . Although the price range is a little high and with an average customer rating , it is possible to pick up a range of Italian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||A coffee shop which also do Italian food in the city centre called Fitzbillies . Is a children friendly environment with a high price range . Customers have rated this place an average . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop that serves Japanese food between £ 20 and £ 25 . It is not kid friendly and has an average customer rating . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | near : Clare Hall||Clowns near Clare Hall in the city centre is a fast food serving coffee shop with an average customer rating . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Moderately - priced English food can be found at 1 out of 5 Strada , which can be found near the Rainbow Vegetarian Café ; it is not kid - friendly . \nname : The Phoenix | food : Indian | customer rating : 1 out of 5 | area : riverside||The Phoenix serving Indian food has a low customer rating and is in riverside . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has a high rate charging between 20 - 25 pounds . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi 's pub serves English food , is kid friendly and received a 1 out of 5 rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The golden palace is a coffee shop . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||In Riverside , there is a kid - friendly pub named The Twenty Two near The Rice Boat . The pub 's prices are moderate , but they only received a customer rating of 1 out of 5 . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is an Italian restaurant is the city centre area . This highly - rated restaurant feature meals for more than £ 30 . This is not a child - friendly restaurant . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 star restaurant for the whole family \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix by the river , 5 Star Italian cuisine and Spirits at an affordable price . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||Italian food can be found in the city centre at The Golden Curry . It has a 1 star customer rating and is not family friendly . \nname : The Punter | food : Japanese | price : moderate||The Punter is a Japanese restaurant with a moderate price range \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||If you want French food near the riverside , try The Golden Curry . It has a low customer rating and it is children - friendly . It 's located near Café Rouge . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||Loch Fyne is a family restaurant located in the city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a non - children friendly fast food coffee shop in the city centre near Burger King with a customer rating of 1 out of 5 and has a high price range . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix offers English food with a cheap price and it has a customer rating 5 out of 5 . It is located in the city centre . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||If you want fairly - priced English pub grub , I would recommend The Waterman in the riverside area . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , The Rice Boat has a price range of between 20 - 25 pounds and a high customer rating . \nname : The Plough | Type : pub | food : English | price : more than £ 30 | family friendly : yes | near : Café Rouge||There is a cheap pub The Plough located near Café Rouge . This pub is children Friendly and serves English food in the £ 30 and over range . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||A perfect rating riverside cheap place is called The Eagle . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||No , The Eagle is Fast food with coffee shop on side Burger King in the city centre with price less than £ 20 average \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||One cheap and family friendly coffee shop is Zizzi . It 's in the Riverside area and customers rated it 5 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a family - Friendly pub fast food of average customer rating \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||A family friendly Indian coffee shop that is high priced is located near Burger King in City Centre . The Eagle has an average customer rating . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers is located by All Bar One . It is a fast food restaurant . \nname : Bibimbap House | food : Chinese | price : high | area : city centre | near : Clare Hall||Bibimbap House serves expensive Chinese cuisine near Clare Hall , in city centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kid friendly Fast food joint that is on a riverside near The Sorrento . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop serving high priced Japanese food . It is located near The Portland Arms in the city center and is rated 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove , a pub serving Japanese food , is in the moderate price range and is not suitable for children . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non family friendly restaurant that is located in riverside near Express by Holiday Inn that serves cheap Indian food . The customer rating for this restaurant is average . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||The Giraffe pub , located next to the river , is known for it 's fine wine and cheeses but is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Yes , There is a coffee shop named Fitzbillies with a low rating and French food for less than £ 20 by the riverside . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a high priced but average rated coffee shop near The Portland Arms in the city center that serves Italian food \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : riverside||5 star rating riverside area Chinese food at The Phoenix \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||A family friendly pub named The Dumpling Tree serves fast food and is located near The Portland Arms . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub with moderate price English food in the city centre for adults . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Midsummer House is a fast food venue rated 3 out of 5 stars . It is located near Café Rouge . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn . It has low ratings and it not children friendly . It costs more than £ 30 . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : no||The Strada does not cater for children has an average customer review and a price list of less than £ 20 . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||There is a child - friendly Chinese restaurant by the riverside . It 's called The Rice Boat and is rated average . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café with a price range of less the £ 20 is The Rice Boat . Customers have rated the location as low . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice is located in the riverside area and offers French cuisine and cheap prices . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a highly rated kid friendly English restaurant located near Rainbow Vegetarian Café . It is mid - priced but not child friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no||There is an average rated coffee shop Aromi by the riverside that provides Fast food . It is not family - friendly . \nname : Wildwood | Type : restaurant | family friendly : yes||There is a kid friendly restaurant called Wildwood . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto has a kid - friendly environment and serves French food . It is located near Ranch . Customers give it a 3 out of 5 rating . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||The price range of the French restaurant Browns Cambridge is less than £ 20 . It has an average customer rating . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Wildwood is a pub serving Italian food . It has a high customer rating and the price range is more than £ 30 . \nname : The Vaults | food : Italian | price : £ 20 - 25 | family friendly : yes||The Vaults is a kid friendly Italian restaurant that is in the 20 - 25 price range . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge coffee shop which is a French restaurant is a family - friendly restaurant located near the Crowne Plaza Hotel in the city centre with low customer rating \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||There is a low - priced shop that provides high quality coffee drinks and is opened to all age groups located near The Bakers , Giraffe . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a French restaurant near Yippee Noodle Bar that has a low customer rating but costs more than 30 pounds . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a moderately priced Japanese restaurant located on the riverside . It is not kid friendly and has a low customer rating . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Family friendly Cotto , near Ranch , serves Italian cuisine with an average customer rating . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice in Riverside is kid friendly , prices for meals are moderate and is has a customer rating of 1 out of 5 . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House is an English restaurant with an average customer Rating located near Café Rouge . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a fast - food restaurant with a high price range . It is located in the city centre near Yippee Noodle Bar . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a family - friendly coffee shop . It is located in the city center near Avalon . It has a price range of cheap with a rating of 5 out of 5 . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is an Indian restaurant in the riverside area located near The Rice Boat , it has a high customer rating of 5 out of 5 \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||The Wrestlers has an average customer rating ; it 's family friendly , cheap , English food . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant that is cheap and rated average by customers . It is in riverside . It is family friendly and near the Express by Holiday Inn . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Located near The Portland Arms is a coffee shop called Cotto that had moderately price menu items . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an inexpensive Indian food restaurant in the city centre . It is not family friendly and receives low customer ratings . It is located near the Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne is moderately priced Japanese restaurant but is not children friendly . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada is a child friendly restaurant with an exquisite menu for reasonable prices . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : no||The Golden Curry is a fine dining restaurant that serves adults . Not for all ages families . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is near Rainbow Vegetarian Café and has a moderate price range . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is family - friendly and is near Café Rouge in the city centre . They serve Italian and have a 5 out of 5 customer rating . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Near The Six Bells , there is a child friendly place called The Golden Curry \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop offers 5 star service and seafood for the family . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop serving Indian food . It has a price range of £ 20 - £ 25 and a high customer rating . It is located in the riverside area . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue is an average rating Italian restaurant \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The Plough is a low - priced family friendly restaurant located near The Bakers . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House has a high price range for English food . Its located near Clare Hall in riverside . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : yes||Alimentum provides Chinese food in the moderate price range . It is located in the riverside . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat in the riverside area is an Indian restaurant called Loch Fyne that is rated highly by customers with a 5 out of 5 rating \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||English food served to adults only , The Wrestlers , have a high customer rating and range in price from 20 - 25 . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||With a high customer rating , The Waterman sells Indian food in the riverside area . It is not children friendly and has a price range of more than £ 30 . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : average | near : All Bar One||A cheap place to buy Chinese food is Midsummer House . Overall , it has an average customer rating and is located near All Bar One . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a 3 - star coffee and sushi bar near The Portland Arms . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||A new Italian place called Midsummer House , that has been rated by the customers 1 out of 5 is situated near Café Rouge . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The best Japanese cuisine and coffee shop is at The Mill for just 20 - 25 euros . Sitting riverside near The Sorrento . \nname : Blue Spice | food : Indian | price : more than £ 30 | area : riverside||Blue Spice is providing Indian food in the more than £ 30 price range . It is located in the riverside . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||The Eagle serves Italian food and has a customer rating of 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a low - priced coffee shop in the city centre that have family compatibility . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House offers Indian food at moderate prices , located near All Bar One . But its customer rating is 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced Italian coffee shop . It is near Raja Indian Cuisine , is not kids friendly , and is in the city center . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : city centre||At The Phoenix You can get English food in city Centre with the customer rating of 5 out of 5 . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is an establishment servicing moderately priced Italian food . It is situated near All Bar One . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a quality family friendly sushi restaurant that offers food at affordable prices . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||for a children friendly coffee shop or for some delicious Italian food check out The Cricketers by The Portland Arms . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant providing low quality food in the low price range . It is located in the north of city after Express by Holiday Inn . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Chinese in riverside near Café Rouge . While not family friendly it has a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a Japanese coffee shop in the riverside area , near The Sorrento . It is priced more than 30GBP . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman offers Chinese cuisine in the low price range . It is located in the city centre , in a non - family friendly environment . It scores low amongst customer satisfaction . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults is a restaurant that caters mainly to singles and couples , it is low cost fast food . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : riverside||rated average , in the riverside area , The Waterman pub serves Indian foods . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a coffee shop with high ratings and prices starting at 30 pounds . They feature fast foods but are not child - friendly . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a French restaurant located at city centre . It is a not family - friendly but has very good customer rating . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a child friendly French coffee shop near Café Sicilia but the price is more than £ 30 and the customer rating is low . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree a high priced English restaurant . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||There is an Indian family friendly restaurant located near the Rainbow Vegetarian Café called Strada . The customer rating is low and the price range is less than 20 . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop near Burger King in riverside . It has low - prices and is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||The Cambridge Blue is a fast food restaurant . It has a customer rating of 3 out of 5 stars . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes||Aromi is a average family - friendly coffee shop . It is located in the city centre . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||A kid friendly place serving French food with a moderate price range is named Alimentum and is located in riverside . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Found near Café Sicilia is The Punter . This low budge , low rated coffee shop is not family friendly . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub that serves pasta and is in the high price range . It is located near Café Rouge and has public restrooms available . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Get some Japanese grub at the Fitzbillies with prices less than £ 20 , located near The Six Bells . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne is a family - oriented restaurant featuring American cuisine . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop providing take a service the high price range . It is located near The Bakers . This coffee shop is a high customer rating \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Boasting a customer rating of 5 out of 5 , The Punter coffee shop serves French food costing more than £ 30 . They are located near Café Sicilia and are not a child friendly restaurant . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a low rated , kid friendly restaurant offering food for less than £ 20 . It can be found in the Riverside area near The Rice Boat . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice is near Avalon in Riverside . They are not child friendly . They are low rated coffee shop with a price range of more than £ 30 \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is an average priced Japanese coffee shop by the riverside named The Golden Palace . \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||There is a coffee shop near Ranch , called Wildwood , which provides fast food . It has a price range of up to £ 20 , and has low customer rating . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an adult restaurant offering English food at a low price . It is located in the city centre near the Express by Holiday Inn . It has low customer ratings . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is located in the riverside near Café Sicilia with price range more than 30 . It is a coffee shop restaurant it is not children - friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a highly rated Italian coffee shop located near The Portland Arms in the City Centre . Its dishes are more than £ 30 . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||Near Café Adriatic there is a pub with a price range more than 30 pounds named The Vaults . It has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an Indian food coffee shop located in the City center . Price range is £ 20 - 25 . Unfortunately not kid friendly . Near Burger King \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is an expensive Pub located near Café Rouge . It is good for families and it offers American food . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is located near Café Rouge . They are a high - priced , family - friendly pub . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately - priced restaurant in the city centre , near Express by Holiday Inn , that serves English food . It has a customer rating of 1 out of 5 , and is child friendly . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is not family - friendly fast food place with a price range of less than £ 20 and is near The Bakers . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is nearby Clare Hall , in the riverside area . It serves Italian food at prices less than £ 20 . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||In Riverside , there is a kids - friendly fast food restaurant called Browns Cambridge near The Sorrento \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a non - family - friendly English restaurant in riverside . It has a low customer rating and price range less than L20 . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||With a price range of £ 20 - 25 the Blue Spice serves French food in the riverside area . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||Midsummer House , located next to All Bar One is three star rated , serves pasta , and is low priced . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is not child friendly and has a 1 out of 5 customer rating . They are a coffee shop serving Italian with a high price range . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||For a family friendly restaurant in the riverside area , Alimentum is a great Indian place for under 20 . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||The Mill pub serves fast food and has moderate prices . It is located close to the river . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Japanese food . child - friendly . It is located in the city center . Prices are between £ 20 - 25 . Near the Express by Holiday Inn . Customer Rating 3 out of 5 \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Its less than 20 for family 's at The Punter near The Portland Arms in the riverside area . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a highly rated restaurant which serves Chinese food , it is sited in the city centre near Café Rouge . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||The Loch Fyne family friendly restaurant features fast food . and is priced less than 20.00 . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kids friendly pub that has a customer rating of 1 out of 5 . It is in the area of riverside . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is an Indian food restaurant , scoring 1 out of 5 , being child friendly and located near Ranch . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no||If you are looking for a highly - priced pub in the riverside area that serves Chinese food , The Olive Grove is an option . It is not child - friendly . \nname : The Vaults | food : French | price : high | family friendly : yes||The Vaults for French food for children Friendly with high price . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||The Dumpling Tree is a restaurant that offers English food and it is priced moderately . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes||Aromi is a four star family - friendly fast food joint located in the city centre , it also serves the best coffee . \nname : Green Man | food : English | price : high | area : city centre | family friendly : yes | near : All Bar One||There is an English restaurant called the Green Man , which is located near to All Bar One in the city centre . It has a high price range but is child - friendly . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a coffee shop providing low quality coffee drinks in the high price range and it is opened to all age groups . It is located near Express by Holiday Inn . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Bring your family to child friendly Strada , rated 5 out of 5 with a higher end price range . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is located by the riverside near the Café Adriatic with a high price range and an average customer rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a moderate priced Italian coffee shop near Ranch . It has a customer rating of 3 out of 5 . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant providing medium priced meals . Located near the River . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a fast food coffee shop near Crowne Plaza Hotel in riverside . They are not family - friendly . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||There is a high priced restaurant that is children friendly near The Bakers , called The Golden Curry . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : yes||Alimentum is an expensive , child friendly Chinese restaurant in the city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop which offers Japanese food without a children friendly atmosphere with a high price range . It has a customer rating of 3 out of 5 . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Child friendly ' The Twenty Two ' offers English food by the river . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||A great coffee shop located next to The Bakers is Giraffe , it is high priced . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a high - rated , fast food place near All Bar One . Prices are more than £ 30 . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is a pub that serves French food . It is by the riverside near The Mill and costs less than 20 Euros . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : no||The lowly rated pub Zizzi is not family friendly . The Indian grub isn 't so friendly either . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located in the city center , The Eagle is a coffee shop offering moderate Japanese food . Children are welcome . Close by is Burger King . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop located in City centre and is moderately priced with 1 out of 5 stars and is not kid friendly \nname : The Twenty Two | food : Indian | family friendly : no||The Twenty Two provides Indian food \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop next to Raja Indian Cuisine that offers sushi . It is family friendly and is low priced . \nname : Cotto | food : French | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto , located near Ranch , is kid friendly and serves French food but has a customer rating of 1 out of 5 . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Moderately priced Alimentum , is an Italian restaurant located at the city centre near Yippee Noodle Bar with a 3 out of 5 customer rating . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : city centre||The Mill is a pub in the city centre . It serves Fast food and is in the moderate price range . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||A medium priced place to eat is the Alimentum . It is also family friendly . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly pub in Riverside with 1 out of 5 for customer rating . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||There is a family friendly Fast food pub on the riverside called Giraffe . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man has three toilets and is cheap . It serves fast food and is next to All Bar One . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||If you are searching for a not family - friendly pub that serves Fast food , The Olive Grove is quite cheap and is near the riverside . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is an Indian restaurant that is a bit pricey but child friendly . It is located on the riverside and has a rating of average based on its past customers . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House offers English food and can be found near Café Rouge . It has received a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is an expensive 5 star fast food restaurant with a coffee shop as well . It is above the Ranch . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : no||Strada is a high priced restaurant with a rating of 3 out of 5 . It is not child friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no||Aromi is a fast food coffee shop that is located in the city centre rated as average by adults over the age of 19 . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Located near All Bar One is The Green Man . It is family friendly and offers Italian food at a medium price point . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada has a price range of £ 20 - 25 . It has a high rating and is kid friendly . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is an expensive , one - star coffee shop by Café Brazil at the riverside . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is nestled in a busy part of town . You can enjoy , for instance , a cheese board with some wine . Medium prices and low ratings . Located near All Bar One . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is an expensive 5 star , family friendly coffee shop . It is located near Café Sicilia , and also serves American cuisine . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||The Punter , near Café Sicilia , is an average French coffee shop , not family - friendly , and priced at less than £ 20 . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry is a restaurant providing breakfast food . It is located in the city centre . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults pub rating is Average . They are cheap and located near Café Adriatic . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Try Fitzbillies ; near The Six Bells . This is a fast food restaurant with prices less than £ 20 . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man at All Bar One in the City centre has good affordable meals for everyone . It is however not child friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The coffee shop The Punter is located near to Café Sicilia . This family - friendly shop serves average - priced Japanese food . Customers give this coffee shop 1 star out of 5 . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Near Café Adriatic , along the river is Travellers Rest Beefeater with cheap prices but a rating of 5 out of 5 . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||There is a good restaurant near The Rice Boat . Loch Fyne is riverside and serves Japanese cuisine . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the center of the city near Express by Holiday Inn . It is family - friendly and serves fast food . The price range is cheap and the customer rating is average . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||There is a moderately priced , three out of five star rated restaurant named Taste of Cambridge . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||Zizzi is a high - rated , kid - friendly , fast food pub . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fine dining restaurant near Rainbow Vegetarian Café . It is moderately priced and family friendly . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||With an average customer rating , The Twenty Two pub is located in riverside near Café Sicilia . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a Five - Star English food restaurant near Café Rouge . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the riverside area is a children friendly place with a price range of more than £ 30 . The Waterman has Japanese food and a customer rating of 5 out of 5 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Located in the city centre , The Waterman is a non family - friendly Japanese restaurant with an average customer rating and price range of less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a highly rated , highly priced coffee and Indian food restaurant in the city centre . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman has a rating of 1 out of 5 , and is located in the city centre . It is not children friendly , and is a high priced fast food restaurant . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells Italian food and is near Express by Holiday Inn . It has high price range , average customer ratings but is not children friendly . It is located in riverside . \nname : Loch Fyne | food : Chinese | customer rating : high | area : riverside | near : The Rice Boat||There 's a highly rated restaurant called Loch Fyne that serves Chinese food in the riverside area , nearby The Rice Boat . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a place to eat near The Portland Arms that is family friendly and serves Fast food in the pub style . It is named The Dumpling Tree . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre||The Golden Palace is a cheap Italian coffee shop with an average customer rating located in city centre . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub in the riverside area with a rating of 5 out of 5 \nname : The Eagle | food : Italian | customer rating : low||The Eagle is an Italian restaurant with a low customer rating . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||The Phoenix is a restaurant serving cheap Fast food in the area of riverside . It has an average customer rating . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a 5 star rated , child friendly pub in the Riverside area \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In Riverside , near Express by Holiday Inn is an Indian restaurant called The Rice Boat . It is cheap and has an excellent customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Customers rate Cotto highly . It is by the rive near The Portland Arms and is a coffee shop selling Italian food . The average price per head is over £ 30 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family - friendly restaurant with English food near Crown Plaza Hotel . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : no||Alimentum provides highly priced Chinese food . It is located in the city centre . It is not children friendly . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||Near Café Rouge on the riverside , the pub Green Man serves English food . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||in the riverside near Yippee Noodle Bar there 's a cheap Fast food restaurant called Alimentum has a high customer rating \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Indian restaurant near Express by Holiday Inn in the city centre . Family friendly , price range less than £ 20 but rating is low . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : yes||The Vaults provides Chinese food in the less than £ 20 price range . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly , low price , restaurant that serves French food by the riverside . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a high price range . It is located in the riverside area near Café Adriatic . It has a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in Riverside there is a moderately priced Fast food coffee shop named The Wrestlers . It is not kids friendly . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Zizzi is a cheap restaurant in the Riverside area . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree is an Italian restaurant that serves moderately priced food . \nname : Green Man | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Located by the riverside near All Bar One is a family friendly Japanese venue called Green Man which is cheap \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly establishment with a customer rating of 5 out of 5 and a cheap price range . It is located by the riverside near The Rice Boat . \nname : The Rice Boat | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Rated 1 out of 5 by customers , the kid - friendly Japanese restaurant called The Rice Boat is in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||With average ratings , Browns Cambridge is a family friendly coffee shop in the city centre . There is a Crowne Plaza Hotel close by . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : city centre||Zizzi is a restaurant in the city centre priced less than £ 20 . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : average | near : Ranch||Located near Ranch , Wildwood is a coffee shop selling Indian food at average high prices . Customer rating is average . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman serves three star Italian food in its city centre pub \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a breakfast restaurant located a short distance away from All Bar One . The prices reasonable . \nname : Blue Spice | food : English | price : £ 20 - 25 | area : riverside||In the riverside area you will find the Blue Spice providing English food in the £ 20 - 25 range . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is located near Café Brazil . This pub offers Chinese cuisine priced between 20 - 25 pounds . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||There is a low - price restaurant Midsummer House in Café Rouge that serves food with chopping sticks . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||A 3 out of 5 rated children friendly French restaurant , Cotto , is located near Ranch . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||Near The Portland Arms , is a Japanese , family friendly coffee shop , named The Cricketers . The Cricketers also received an average customer rating . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a child - friendly restaurant . \nname : The Golden Curry | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||A place with Japanese food is The Golden Curry and has a high rating . It is next to Café Rouge . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||Wildwood , is restaurant pub yes French £ 20 - 25 \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a mid - priced , 3 - star coffee shop that welcomes families and children . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada , a high - priced Chinese restaurant near Rainbow Vegetarian Café , has an average customer rating and is children friendly . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||A kid friendly Fast food place named Strada near Rainbow Vegetarian Café with high customer rating and a price range of £ 20 - 25 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub serving Japanese food . It is located near Café Brazil with a price range less than £ 20 . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a French house . You can find it near All Bar One . The Price range of food there is high . Many people rated it 4 out of 5 . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is an high quality kids friendly restaurant that serves English food located in Riverside . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman has a customer rating of 3 out of 5 stars and is a kids friendly moderately priced restaurant located in the city centre . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman serves English food located in the city centre area . High customer rating , kid friendly with prices ranging from £ 20- £ 25 \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , Is near Yippee Noodle Bar , in the riverside area , With a price Range more than £ 30 , Japanese food has a customer Rating of 5 out of 5 . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||There is a French food establishment within the city centre near to Café Rouge , with an average customer service rating and is not family - friendly called The Golden Curry . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : no||Riverside has an Italian restaurant call Alimentum . They are high priced and discourage patrons from bringing small children . \nname : Wildwood | Type : restaurant | family friendly : yes||The Wildwood restaurant is child friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a child friendly pub called Giraffe in riverside . Giraffe serves English food . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : city centre||The Phoenix provides Indian food . It is located in the city centre . Customers rate it a 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Near the Burger King in the City Centre is a low priced , low rated coffee shop named The Eagle that isn 't family friendly \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Try The Rice Boat a family - friendly Fast food place in the city centre customer rating 5 out of 5 \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Japanese food is served at Midsummer House . They have a low customer rating , but have a price range less than £ 20 and are near All Bar One . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving Italian food at cheap prices on the riverside , located near The Portland Arms with a 5 out of 5 customer rating . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man has inexpensive sushi that is located near All Bar One . \nname : The Vaults | food : Indian | price : more than £ 30 | family friendly : yes||The Vaults is a child friendly Indian restaurant whose range is more than £ 30 . \nname : The Vaults | food : Chinese | price : high | family friendly : no||The Vaults offers a classy dining experience for adults looking to enjoy Chinese food . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is an expensive coffee shop with only one star . It is near Café Brazil in the riverside are . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre near the Express by Holiday Inn is The Rice Boat which serves Japanese cuisine . It has a cheap price range and has a customer rating of 5 out of 5 . It is not family - friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family Friendly pub that serves Italian food . It is near The Portland Arms . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a 1 star rated cheap restaurant next to the river \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : no||Located in the city center , The Olive Grove does not welcome children and is a high priced English pub . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop at the riverside , near Burger King , and serves French food for less than £ 20 and is family Friendly \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn there is a high customer kid friendly Italian in the city centre called The Rice Boat priced £ 20 - 25 . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry serves Japanese food in a children friendly environment with a 3 out of 5 customer rating . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | near : Café Brazil||The Vaults is an inexpensive coffee shop in the city centre near Café Brazil with a low customer rating . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a cheap fast - food restaurant Alimentum near Yippee Noodle Bar , in the riverside area that has a 5 out of 5 rating . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi , in riverside , is a high rating children friendly pub \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||In the riverside area near Clare Hall is the cheap Italian restaurant Bibimbap House \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub which is not family - friendly . They are in riverside , and serve Italian food in the price range of less than £ 20 \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a Fast food eatery with a high customer rating and a price range of £ 20 - £ 25 . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||Wildwood , an English pub , has a price range of more than £ 30 , but has a high customer rating . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , located near the Rainbow Vegetarian Café , is a family friendly five - star restaurant with low prices . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant that serves Indian food , the price range is moderate and the customer rating is 3 out of 5 . The people of the restaurant are friendly with kids and it is located near Rainbow Vegetarian Café . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is an inexpensive family restaurant located near The Rice Boat . \nname : The Rice Boat | food : Chinese | area : city centre||Chinese restaurant , The Rice Boat , in the City Centre . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||The Eagle is expensive with a low rating and near the riverside . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a French coffee shop by Ranch ranging from 20 - 25 pounds with high customer ratings . \nname : The Phoenix | food : French | customer rating : low | area : city centre||The Phoenix is a restaurant that provides French food . It has a low customer rating and is located in the city centre . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap Chinese restaurant with an average rating . It is family friendly and can be found in riverside , near Express by Holiday Inn . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a Chinese restaurant that is kid friendly . The customer rating is 1 out of 5 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a moderately - priced family - friendly restaurant called The Waterman located near the river in the City Centre . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix , an English restaurant near the river , has a high price range but a low rating of only 1 out of 5 stars . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||There is a cheap wine tasting restaurant near the Yippee Noodle Bar that has poor reviews called Alimentum . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a moderately priced restaurant near Rainbow Vegetarian Café . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||A family - friendly pub known as The Cricketers is located near Ranch and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a riverside coffee shop serving cheap French food , near Burger King . It may be a no families environment , but with a customer rating of 5 out of 5 , you can 't complain . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||With a customer rating of 5 out of 5 , Zizzi is a coffee shop located on the riverside with a cheap price range . They are also family friendly . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a Chinese restaurant with a moderate price range and a customer rating of 3 out of 5 . It is also kids friendly . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a restaurant available to serve the kids . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , near Café Rouge , serves Japanese food , is kid friendly , customer rated 1 out of 5 , and is located riverside . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a low priced restaurant located next to All Bar One . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two is a non - family - friendly establishment that serves English food by the riverside . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns restaurant is located near the Café Sicilia in Cambridge . It has a medium - priced menu and is unsuitable for families with small children . \nname : Aromi | Type : restaurant | food : English | area : riverside||in the riverside area Aromi restaurant serves English food \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne is a Japanese restaurant with an average priced menu . It is not child friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no||There is pub grub at The Olive Grove pub at moderate prices located in the riverside adults only \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry serves Fast food near The Bakers and has a cheap price range and is family friendly . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family - friendly restaurant that serves English food located Near All Bar One in riverside . The price range is below £ 20 . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Located near The Rice Boat , Loch Fyne is an average - quality fast food restaurant in the riverside area . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||The pub Wildwood offers fast food at a high price point . The pub is rated 1 star . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||If you 're with the family and want cheap fast food , there is a placed called Loch Fyne . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||Ratings for restaurant Strada is 5 out of 5 . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two , providing French food is kids friendly found in riverside . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid friendly place where you can order French food . You 'll find it in the city centre . It is in the moderate price range , with a customer rating of 1 out of 5 . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is moderately expensive French food venue which does not welcome children and can be found near Express by Holiday Inn in the city centre . Customers do not rate it very highly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge sells Japanese food near The Sorrento by the riverside . It is children friendly . \nname : Cotto | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||There is a Ranch that is family friend , it is named Cotto and it has Italian food . The customer rating is 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop providing Indian food in the high price range . It is located in the riverside . It is near The Sorrento . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly coffee shop The Wrestlers near Raja Indian Cuisine located in the riverside . It serves French food for more than £ 30 . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||For average Chinese food in a family friendly restaurant , you should try The Rice Boat , located in the riverside area . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||At riverside near Burger King , there is a coffee shop called The Eagle which provides fast food . It is not family - friendly and is in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||With an average rating , The Rice Boat is close to the Rainbow Vegetarian Café , but has a high price range . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is an Italian food restaurant in the Riverside area near The Rice Boat . It has a high customer rating . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man has a high price range but a children friendly atmosphere , located in riverside . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||Alimentum is a French restaurant that offers kid friendly meals . It is located in the riverside area and has a moderately priced menu . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Near Burger King is a highly acclaimed , kid friendly coffee shop , The Eagle \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Japanese restaurant , The Phoenix , has a high customer rating . It is inexpensive and in riverside . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : no | near : Café Rouge||The Plough is a Japanese pub near Café Rouge that is not family - friendly and has a price range of more than 30 pounds . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||looking for moderate priced food on the riverside for your kids , come to The Twenty Two . Near The Rice Boat and rated 1 out of 5 \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , a child friendly restaurant serving English food , is in the riverside area near The Sorrento \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a fast food restaurant that is child friendly and has a high customer rating . It has expensive food and is in the city centre . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The Golden Curry is a French restaurant which is family friendly . However , it has a low customer rating . \nname : The Eagle | food : English | customer rating : low||The Eagle serves English food and has low customer rating . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly place located near The Bakers . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , in the city centre near Burger King , is a coffee shop serving Italian food It is kid friendly with moderate prices and customer rating of 3 out of 5 . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The moderately priced Indian food restaurant , The Wrestlers , is not a kids friendly place . Which explains its 3 out of 5 rating from customers . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||In the city center near Burger King , there is a French coffee shop called ' The Eagle ' . It has a child - friendly environment with reasonable prices and excellent customer reviews . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kid friendly Japanese pub but it does have a low customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a five star family - friendly Italian restaurant in city centre . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : city centre||The Waterman , a Chinese food serving pub in the city centre has an average customer rating . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a Chinese restaurant that has an average rating . It allows children , has a moderate price range and is in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies , located in the riverside area , offers Indian food and a coffee shop . The establishment is child friendly , has an average customer rating and the pricing is in the high range . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid friendly , English style restaurant located by the river with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a £ 10 family friendly French food near The Bakers \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap Indian food restaurant with a 5 out of 5 rating by the riverside near Yippee Noodle Bar . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||For family friendly Fast food near Ranch , Cotto is a good choice with an average customer rating . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near Crowne Plaza Hotel is Japanese and kid friendly . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove , is located near Lion Yard and offers great take - in food at low prices , every day . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : no||Loch Fyne is a restaurant providing Chinese food \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Midsummer House is a cheap dine - in restaurant that has fairly good reviews and is located next to the All Bar One . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||There is a French pub called the Giraffe that is kid - friendly and located along the riverside . \nname : The Punter | food : Japanese | price : moderate||The Punter provides Japanese food . It has moderate price range . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a cheap restaurant with low ratings in Riverside near Express by Holiday Inn called The Rice Boat . \nname : Bibimbap House | food : English | price : moderate | area : city centre | near : Clare Hall||There is a moderately priced English food restaurant Bibimbap House near Clare Hall in the city center . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||With a high customer rating Zizzi is a kid friendly Italian food serving pub \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman a high priced , average , not kid friendly serves Indian foods in the city center . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi , a family friendly English style pub with a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Zizzi is a coffee shop located in the riverside area in which customers should expect to pay more than £ 30 . It has a low customer rating , and children are not accommodated . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||There is a location moderate priced , average - rated and kid friendly called Fitzbillies located near Express by Holiday Inn \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves costly sushi , although it is definitely worth the price . Cotto is located north of the city center , nearby The Portland Arms and the river . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||A kid friendly moderate restaurant called the Strada is 3 out of 5 . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is expensive and located by All Bar One . It serves low rated English food . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill which is riverside pub is offering a £ 35 deal on Japanese food \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop in the high price range , located close to Burger King . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : no||The restaurant Loch Fyne provides French food . It has a price range of more than £ 30 and is not children friendly . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||There is a cheap restaurant Alimentum located in the riverside that provides Fast food in the price range less than £ 20 . It is not family - friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Located near Café Sicilia is The Punter coffee Shop where families can purchase fast foods at low cost \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : The Rice Boat||For a cheap restaurant in the city centre , try The Twenty Two . It is near The Rice Boat and food costs less than £ 20 . However , it is not family - friendly . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is an Italian restaurant with cheap prices near the All Bar One with high customer ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||An Indian coffee shop in riverside , located near Burger King , is children friendly and has a high price range . It is called The Eagle and has an average customer rating . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||For average priced , highly rated Italian food there is The Rice Boat . It is located in the city centre near Express by Holiday Inn and is child friendly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento , there is a children friendly Japanese restaurant called Browns Cambridge . It is located by the riverside . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||The French Pub , Wildwood is low priced with a low rating . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix , located riverside , has a price range less than £ 20 , but has a low customer rating . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a 3 out of 5 rated , kid friendly Japanese restaurant . \nname : The Punter | food : Japanese | price : more than £ 30||A Japanese restaurant with a price range of more than £ 30 is called The Punter . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a French coffee shop located in the city centre and is not child friendly and is in the more than £ 30 price range . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||A bit above average in price , The Twenty Two near The Rice Boat in the riverside area is low rated and not child friendly . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||The average price range for The Rice Boat is between £ 20- £ 25 , its near Rainbow Vegetarian Café and boasts a high customer rating . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is Alimentum located in the riverside area near of Yippee Noodle Bar . Offers moderate - priced in Fast food and has 3 out of 5 customer rating . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat on the riverside with Italian food and a customer rating of 1 out of 5 is Loch Fyne . \nname : The Phoenix | food : Chinese | customer rating : low | area : riverside||The Phoenix in riverside serves Chinese food with a low customer rating . \nname : The Rice Boat | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a Italian Food , very kids friendly location in the Riverside area with a 3 out of 5 customer rating \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||a low rating Japanese restaurant costing less than £ 20 and family Friendly is The Waterman \nname : Loch Fyne | food : English | customer rating : low | area : city centre | near : The Rice Boat||In city centre near The Rice Boat is Loch Fyne . A venue serving English food with a low customer rating . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||A few steps of the All Bar One , there is an expensive place called Midsummer House where it is served English food . It has a poor rating between its customers . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Within the City centre is a family friendly sushi restaurant called The Twenty Two . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||a pub The Golden Palace is located by the riverside near Rainbow Vegetarian Café with a high price range \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||In the Riverside area , there is a place you may want to visit called the Bibimbap House . It 's near Clare Hall and offers fast food at great , cheap prices . \nname : The Golden Curry | food : Japanese | price : cheap | family friendly : yes | near : The Bakers||Near The Bakers , is The Golden Curry . Serving Japanese food cheap for the whole family . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle , is a Japanese restaurant , is also a coffee shop , this is a good place for kids , and is near Burger King , the price is not that bad and is located in the city center . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||The Dumpling Tree is a fast food pub located near The Portland Arms . It is not family - friendly . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is near the city center and is rated 5 out of 5 by customers . It serves French food and is family - friendly . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||Near Café Rouge , The Plough offers fast food style food in an expensive pub type setting . They also welcome children . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||In the riverside is a coffee shop with an average rating called Fitzbillies . It has a high price range and serves Italian food . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : city centre||The Mill is located in the city centre and is a pub serving Japanese food in the more than £ 30 price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop which serves Italian food . It is in the city centre area with a customer rating of 1 out of 5 . It is not kids - friendly \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix serves French food with an average price over £ 30 , has a 5 out of 5 customer rating and is situated in the riverside area \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : no||In the high price range is a pub serving English food names The Olive Grove , which is in the city center and is not child friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is in the riverside area and serves cheap Chinese food and is family friendly but it has a customer rating of average . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies coffee shop is located in the city centre . They serve cheap Indian food and are family friendly , but have a low customer rating . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||Zizzi is a child friendly pub serving English food . It has a high customer rating . \nname : The Eagle | price : high | customer rating : average | area : riverside||The Eagle in riverside , customer rating is average , and the price range is high . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||I would give Cocum a 3 out of 5 rating . This is because although it is Child friendly , it has a high price range for a coffee shop \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub that sells Japanese food and is located in riverside and has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a three star pub located just north of the City Centre that serves fine wines and cheeses . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||An option for Japanese food in the city centre area is The Wrestlers coffee shop located next to Raja Indian Cuisine . This is not a family - friendly coffee shop . This coffee shop has an average - priced menu . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | near : Clare Hall||A coffee shop called Clowns is near Clare Hall in city centre . It serves Japanese and has an average customer rating . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||Wildwood is on a campus and its low prices are affordable for students . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Try the Alimentum in the city centre for some mid - range priced food . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar located in riverside is the Alimentum . Cheap Japanese food . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman , what a place . The quality is fantastic and the prices are mid - range . A great place for the whole family where a selection of fruits , cheese and wine can be enjoyed . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||A family restaurant , The Blue Spice , is located near Avalon in the city centre and provides a coffee shop with a price range of £ 20 - 25 and an average customer rating \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough Japanese pub £ 20 - 25 yes Café Rouge \nname : Blue Spice | food : Japanese | price : high | area : riverside||An expensive Japanese restaurant is Blue Spice located at riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop which serves Indian food at a high price range . It has an average customer and it is located near the city center , but is not family friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves French food and is situated near Burger King at Riverside . Low customer ratings and not suitable for families yet low price range of around £ 20 . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a child friendly restaurant serving English food \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||Highly recommended Italian food can be found on the riverside at The Phoenix . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a children - friendly coffee shop in riverside it has a high price range but a average customer rating . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a family restaurant reasonably price near The Bakers . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop offering French food in the £ 20 - 25 price range . It 's located in the city centre with a customer rating of three out of five . It is kid friendly . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Although it has low customer ratings , French pub Zizzi offers a child friendly environment . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is highly rated , kid - friendly , and moderately priced at £ 20 - 25 . It 's on the riverside . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a non - kid friendly Japanese restaurant with a price range of 20 - 25 pounds . It has a customer rating of 3 out 5 and is in the riverside area . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House provides Chinese food in the moderate price range . It is near All Bar One . Its customer rating is 1 out of 5 . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Cheap , 5 out of 5 restaurant located in the city centre . Blue Spice is not family - friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high - end sushi restaurant north of the city centre nearby Yippee Noodle Bar . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves cheap , affordable , Indian food . Customers have rated the food average . Alimentum is located near the riverside and Yippee Noodle Bar . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : no||Located in the city centre , The Rice Boat is a non family - friendly English restaurant with an average customer rating . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is an Italian food establishment near The Rice Boat , which is in a riverside area \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant serving burgers and fries in the low price range . It is located north of the city centre , on the river , conveniently next to the Express by Holiday Inn . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Located in city centre is a cheap restaurant Blue Spice with a high customer rating . Not family - friendly . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Phoenix with a customer rating score of 3 out of 5 serves Fast food on the riverside . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The waterman is a family friendly sushi restaurant near the river . It is expensive and rated 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop located in riverside area that provides Indian foods with a price range less than £ 20 . It has a low customer rating and not family friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a non family - friendly French coffee shop near The Portland Arms with an average customer rating . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is near The Rice Boat in the riverside area and serves Italian food . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||At the riverside near The Rice Boat is Loch Fyne . It has an average customer rating and serves English food . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : no | near : Café Rouge||The Plough pub serves moderately priced Chinese food . It 's located near Café Rouge . Unfortunately children are not welcome here . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a Fast food joint . Yes it is children friendly . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is rated low but it is a restaurant for the whole family . It is located in the heart of the city and offers Indian food for under £ 20 . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||There is a highly rated place that provides French food in the city centre . Its name is The Phoenix and it is also expensive . \nname : Loch Fyne | Type : restaurant | food : French | price : cheap | family friendly : yes||With a cheap price range , Loch Fyne is a family friendly restaurant with French food . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : no||Japanese food is available in the city centre at the pub called the Giraffe . It is not family - friendly . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||A kid - friendly restaurant located near Express by Holiday Inn , called Fitzbillies has a moderate price range and is rated 1 out of 5 by customers . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : no||The Olive Grove is a family - friendly restaurant in the center of the city . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : no | near : Ranch||The Cricketers pub near the Ranch is not suitable for children . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||Loch Fyne is a restaurant providing moderately - priced , English style food and a child friendly experience . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the centre of the city near Raja Indian Cuisine , moderately priced The Wrestlers offers an adult , non kid friendly fast food experience . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||There is a pub called Wildwood that serves Fast food at a cheap price and a low customer rating . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||An inexpensive noodle restaurant is Bibimbap House . It is near the river and Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a three star coffee shop located in the northern part of the city . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||Cocum is not a family - friendly place . It is a coffee shop with a price range of less than £ 20 . It has an average customer rating serving Japanese food . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House serves expensive noodles by Clare Hall . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||The highly rated Travellers Rest Beefeater is situated by the river near the Café Adriatic , and offers higher price range . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant that has moderate prices and their customer rating is 3 out of 5 . No , it is not kids friendly , its located by the riverside , near Express by Holiday Inn . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly Japanese restaurant near Express by Holiday Inn in the riverside area . The price range is less than £ 20 . \nname : Strada | Type : pub | food : Italian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is an Italian pub located near Yippee Noodle Bar and has a customer rating of 3 out of 5 . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly pub on riverside with low customer ratings . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||There is a mid priced coffee shop called Cotto in the city centre near The Portland Arms that also serves moderately rated Japanese food . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant providing low quality food in the low price range . It is located in the north of city after Express by Holiday Inn . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is family friendly with high price and 3 out of 5 customer Rating is located by Express by Holiday Inn \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the price range of £ 20 - 25 . It has a high customer rating . It is located in riverside near Express by Holiday Inn . It is family friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||there 's a fast food coffee shop near Clare Hall called The Clowns \nname : The Cambridge Blue | Type : pub | food : Indian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue pub serves Indian food for more than £ 30 . It is located near Café Brazil . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sells cheap Fast food . It is rated 5 out of 5 and is known to be family - friendly . It is located in the city center near Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove serves English food and moderately - priced pub that is also kid friendly and located in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies located in the city centre area is an average rated Italian coffee shop with a high price range that is not child friendly \nname : Bibimbap House | food : English | price : moderate | area : city centre | near : Clare Hall||An English restaurant which can be found in the city centre near Clare Hall is called Bibimbap House . It offers food at a moderate price . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||Priced middle of the road at 20 - 25 euros , Travellers Rest Beefeater , is a kid friendly restaurant . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Strada is a 3 out of 5 rated restaurant . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a child friendly place located near The Rice Boat on the riverside . It has a 3 out of 5 rating , and is expensive . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||French food at moderate prices can be found at The Waterman . It 's kid friendly at The Waterman , which is located in the city centre . It has a rating of 1 out of 5 by customers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is Japanese Fast food with coffee shop on side Burger King with low rank and no more than £ 30 \nname : The Eagle | food : Japanese | customer rating : 1 out of 5||The Eagle is a low customer rated Japanese restaurant . \nname : Loch Fyne | food : Indian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Indian food with a customer rating of 1 out of 5 . It is located on the river near The Rice Boat . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : no | near : The Portland Arms||The Dumpling Tree pub is a Chinese food restaurant near The Portland Arms . Bring your friends to enjoy . Kids are not allowed in this place . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family - friendly coffee shop serving Italian food located near the river . It has a low point and five - star rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop along the river near the Crown Plaza Hotel . They serve wine and hors d 'oeuvre in a family friendly atmosphere and have a one - star rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum coffee shop . High cost family friendly fast food . 3 star rating \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a convenient stop for those with children in Riverside , serving both coffee and Fast food . However the customer ratings are only average . \nname : The Twenty Two | food : Japanese | family friendly : yes||Yes the The Twenty Two is Japanese . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family - friendly restaurant located near Rainbow Vegetarian Café . It has a one out of five star rating and is high - cost . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a fast food coffee shop locate in the city centre with a customer rating of 5 out of 5 . It is not family - friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Take the kids to a fine dining experience at the French Alimentum , in Riverside . \nname : Cotto | food : Chinese | near : Café Rouge||Cotto is a restaurant providing Chinese food . It is located near Café Rouge . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a child friendly Italian restaurant near the Crowne Plaza Hotel . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The child friendly coffee shop Zizzi has a high customer rating with expensive food along the riverside \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||There is a restaurant on the riverside , serving English food , called The Rice Boat . It is not considered family - friendly and it has a low customer rating . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Avalon||Kid friendly coffee shop with an average price range and high customer rating . Blue Spice is locater in the city centre near Avalon . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a one star restaurant that caters to families with British style food . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap Indian coffee shop with an average customer rating . It is in riverside location near Burger King , and is family friendly . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||There is a fantastic restaurant called The Golden Palace . Prices range from £ 30 . \nname : Strada | Type : pub | food : Chinese | customer rating : average | near : Yippee Noodle Bar||Strada is a popular pub , serving Chinese food and has been described by customers as average . It is very close to the Yippee Noodle Bar . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre||The Golden Palace offers French food in its coffee shop based in the city centre . \nname : Browns Cambridge | food : Indian | price : £ 20 - 25 | customer rating : high||Browns Cambridge has a high customer rating . They serve Indian food for around £ 20 - 25 . \nname : Blue Spice | food : English | price : cheap | area : riverside||You can grab a bite in Blue Spice located at riverside . It serves English cuisine and it 's fairly cheap . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The French riverside restaurant , The Waterman is a highly rated restaurant with prices ranging more than £ 30 . It is not child friendly and has been rated 5 out of 5 by customers . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is an averagely rated coffee shop , that serves Italian food . This family friendly shop is located near The Portland Arms \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : no | near : All Bar One||Leave the kids at home when you visit Green Man , a high - end Indian restaurant near All Bar One in the Riverside Area . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill is a pub that is less then 20 , English food by the riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is Japanese food at Fitzbillies in the city centre . It is a coffee shop with a price range of less than £ 20 and is family - friendly . It has a low customer rating . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice restaurant in the riverside area has English food with moderate prices \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers is a British restaurant next to All Bar One . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||There is a family friendly Fast food pub in the riverside area that sells food for less than £ 20 called The Olive Grove \nname : The Olive Grove | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes||There is a cheap pub The Olive Grove , located near the riverside . It is family friendly and serves Japanese food . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Avalon||Blue Spice , a coffee shop , is located in the city centre area near Avalon . its price range is less than £ 20 and its customer rating is average but is not family - friendly . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a family - friendly Fast food restaurant with an average customer rating located in the City Centre . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Meals start at £ 30 , and match the 5 out of 5 rating at the Clowns pub in the riverside area . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||There is a Chinese restaurant called Alimentum located in the city centre near Yippee Noodle Bar with low customer rating and it 's price range is less than £ 20 . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Located near Café Rouge is an Italian restaurant named Midsummer House . This restaurant has earned average customer ratings . \nname : The Punter | food : Fast food | price : more than £ 30||A fast food restaurant called The Punter has a price range of more than 30 Pounds . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||There is a dine in family restaurant called The Golden Curry but it has terrible reviews . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Located on the riverside , near the Express by Holiday Inn , The Rice Boat is an adult oriented , highly rated high price English restaurant . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix offers Japanese food for under £ 20 by the riverside \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a 3 star , family friendly Café located close to Café Rouge providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||Bring the family to The Dumpling Tree for Italian pub fair , located near The Portland Arms . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||The French food restaurant The Cambridge Blue has gained a rating of 3 out of 5 \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant with an average customer rating near Express by Holiday Inn . It has a cheap price range . It has a bad family - friendly atmosphere . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine , The Wrestlers coffee shop is not children friendly . Our price range is more than £ 30 and we offer Japanese food . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers , which is near All Bar One , is a restaurant providing fast food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||The Vaults is a fast food restaurant that costs 20 - 25 . It is kid friendly . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne offers 5 star French cuisine , located in the riverside area near The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne is a Japanese restaurant that is more than £ 30 and is children friendly \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly , Japanese eatery . It is located near the Crowne Plaza Hotel . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Italian food pub called Giraffe in riverside is kid friendly \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman offers English food with with a customer rating 1 out of 5 . It is located in the city center . It has a high price range . It has a bad children friendly atmosphere . \nname : Midsummer House | food : Chinese | customer rating : 5 out of 5 | near : Café Rouge||Located near Café Rouge , Midsummer House sells Chinese and has a rating of 5 out of 5 \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : yes||Alimentum is a moderately priced child friendly French restaurant near the city 's centre . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Right near Rainbow Vegetarian Café , is a 5 star family restaurant , with expensive Chinese food its name is Strada . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is providing Chinese food in the price range . It is located in the riverside . It is near The Rice Boat . Its customer rating is 5 out of 5 . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a cheap sushi restaurant . It is family friendly and has a three star rating . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||There is a pub called Wildwood which serves English food . It has a low customer rating and price range - typically less than £ 20 . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies is French located near The Six Bells . This restaurant has a moderate price Range . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : yes||Loch Fyne is a restaurant providing Chinese food for less than £ 20 and a family friendly atmosphere . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Waterman is pub Fast food having customer rating 3 out of 5 . It is located in riverside \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : 1 out of 5||The Wildwood is a pub type Chinese place with a customer rating out of 1 out of 5 and the price range is high . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||An average customer Japanese restaurant is The Phoenix . its price range is less than 20 and it it located in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop with a price range between 20 - 25 pounds . It is fast food and kid friendly with a high customer rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no||An adult coffee shop called Aromi serves Indian food in the riverside area \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue pub , located near Café Brazil serves English food for under 20 pounds \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The highly rated The Cricketers coffee shop is located by The Portland Arms . This French food coffee shop is a family friendly atmosphere . \nname : Green Man | food : English | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man is a child friendly food venue in the city centre near All Bar One . It serves English food and has a high price range . \nname : Wildwood | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | near : Ranch||Near Ranch is a coffee shop offering Indian food called Wildwood . It has expensive food with a high customer rating . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||North of City centre , there is a family restaurant called The Waterman that offers mid priced food . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The coffee shop Fitzbillies offers French food for less than £ 20 . It is located in the city centre area . It is not a family - friendly coffee shop . The average customer rating is low . \nname : The Plough | Type : pub | food : Chinese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub providing Chinese food in the high price rage that is child friendly . It is located in near the Café Rouge . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||The Browns Cambridge , serves French food and is kid friendly . It is near The Sorrento along the riverside . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a family - friendly coffee shop located in the city centre near Avalon with a price range less than 20 pounds and an average customer rating . \nname : Blue Spice | price : cheap | area : riverside||Blue Spice in the riverside area - value for money . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly shop in the city centre , near Express by Holiday Inn . the shop sells English food and has a high customer rating with a price range of more than £ 30 . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 out of 5 restaurant along the riverside \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : no | near : Café Rouge||The Plough has Italian but no children allowed .The prices are high and is a pub near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop where you can buy high priced Indian food . It has a 1 out of 5 customer rating and is located in the city centre . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly Indian restaurant in the city centre area near Express by Holiday Inn . They have an average price range and a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family - friendly sushi bar , situated along the riverside . High - end prices . Rated 3 out of 5 stars . \nname : Loch Fyne | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is 3 out of 5 . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||There is a cheap dine in restaurant The Vaults that is family friendly . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a children friendly restaurant . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Check out Blue Spice is you are ever in the riverside area . It is near Avalon . It is a kid friendly coffee shop with a 3 out of 5 customer rating and a price range between 20 and 25 pounds . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge is a All - Day brasserie and bar with lobster nights and afternoon tea in grand Café setting \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman provides Indian food in the high price range . It is located in the riverside . Its customer rating is average . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an Indian coffee shop located at the riverside near The Portland Arms . Its highly priced and has an average customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree is a pricey fast food restaurant located in the center . of town . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves Japanese food , located in riverside that is family friend ; y with an average customer rating . \nname : The Mill | Type : pub | food : Fast food | price : more than £ 30 | area : riverside||A Fast food pub that ranges more than £ 30 located by the riverside is The Mill . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly English restaurant on the riverside near the Café Rouge . The customer rating is 5 out of 5 . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice is children friendly has a price range of more than 30 pounds and a 5 out of 5 customer rating . It is located in the city centre . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a cheap restaurant North of the City center . that is family friendly . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||For less than 20GBP you can eat at Browns Cambridge , a French restaurant with an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Italian food in the moderate price range . It is located in the city centre . kid friendly and good customer rating \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||There is a pub called The Vaults near Café Adriatic that has a low customer rating and a price range of more than £ 30 \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||The restaurant , Midsummer House is just next to the Café Rouge \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a family - friendly restaurant which is located near the Express by Holiday Inn in Riverside . It serves English food with a low price range of under £ 20 . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||A child Friendly restaurant with a low customer rating called Cocum . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Brazil||Near Café Brazil in the city centre , there is a coffee shop called The Vaults . It has an average price range and a high customer rating . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||Café Brazil is near The Cambridge Blue in the City center . The Cambridge Blue is a pub . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The coffee shop Cotto is a moderate price range and a 1 out of 5 customer rating Japanese food place near The Portland Arms , at the riverside \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||The pub called Zizzi had friendly families come in to eat French food , but the customers rated the place low \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located on the Riverside , near Café Rouge , The Golden Curry is a family friendly Indian restaurant . Customers rate it 5 out of 5 . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||English food is served at The Rice Boat with a customer rating of 1 out of 5 . It is children friendly and located in Riverside . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | near : Café Brazil||Near Café Brazil in the city centre , there is a low rated coffee shop named The Vaults with prices more than £ 30 \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a fast food and coffee shop that is near The Portland Arms with 5 out of 5 ratings . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum , while not family friendly , is a mid - priced coffee shop \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a mid - priced family friendly coffee shop that also offers Italian fare and is located near the river . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves Indian food . It has a customer rating of 1 out of 5 , is children friendly , and is near The Portland Arms . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : no||With a high price range and a average customer rating The Wrestlers is adult only and serves Italian food . \nname : The Mill | Type : pub | food : French | price : cheap | area : riverside||The Mill offers cheap French pub style food and drinks riverside . \nname : Aromi | Type : restaurant | food : English | area : riverside||There is a restaurant in the riverside area called Aromi , that serves English food . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||There is a Japanese restaurant called The Vaults that is children Friendly . The cost is greater than £ 30 . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a high - priced restaurant in riverside that is child friendly and boasts a 3 out of 5 customer rating . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill located near The Sorrento in the city centre is a coffee shop providing Japanese food . Their price range is less than £ 20 . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop offering Italian food . It offers moderate pricing and has a customer rating of 1 out of 5 . It is not kid friendly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Blue Spice is popular and highly rated because it costs £ 20 - 25 and located in the city centre . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is an Indian coffee shop in the price range of more than 30 pounds . It has a high customer rating and is child friendly . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||Located in the riverside area , near Café Sicilia , is a highly rated pub called The Twenty Two . \nname : The Waterman | price : more than £ 30 | family friendly : yes||children favorite food price Rang more than £ 30 The Waterman restaurant . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : yes | near : The Bakers||There is a cheap restaurant called The Golden Curry located near The Bakers that is kid friendly . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : no||The Rice Boat was given average ratings for serving English food that is not family - friendly on the riverside . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a mid price range restaurant , suitable for families with young children . It is near to Rainbow Vegetarian Café . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced , child - friendly Indian restaurant with a customer rating of 3 out of 5 , which offers a riverside location near the Express by Holiday Inn . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The Alimentum Locates near Yippee Noodle Bar with a rating of five out of five stars near the river \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : no | near : Café Rouge||The Plough is a pub near the Café Rouge where one may order gourmet Chinese cuisine and enjoy a meal in a quiet atmosphere . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near to Express by Holiday Inn by the river . It serves moderately priced Italian food , is family friendly and has a customer rating of 3 out of 5 . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a family - friendly pub . It 's located in the riverside area , near The Sorrento . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||There is a cheap pub near the river with average ratings . It 's called Clowns . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop which serves French food at the riverside . It is kids friendly , has a low customer rating and has a price range of more than £ 30 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Indian coffee shop called Aromi with high customer rating can be found by the riverside , and yes , it is children friendly \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum near the Yippee Noodle Bar in the city center with prices for the moderate budget we have great English food with a 3 out of 5 rating . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||If you and your children are staying at the Crowne Plaza Hotel try eating fine Italian at The Waterman \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man , a moderately priced Indian restaurant in the riverside area near All Bar One is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a 3 star coffee shop Fitzbillies that is located in city centre . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is a pub providing Indian food in the price range . Its customer rating is average . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||There is an Italian restaurant named Zizzi which is rated one star and is not suitable for families . \nname : The Phoenix | food : Chinese | customer rating : low | area : city centre||The Phoenix provided poorly rated Chinese food in the city centre . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a hight ratings restaurant is for the whole family and provides French foods located in The Portland Arms \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a fast food shop that is not family - friendly in the city centre near All Bar One . All prices are less than £ 20 . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat , located in the riverside area , serves Chinese food . It is family friendly and has a 5 out of 5 customer rating . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough is an adult only restaurant located by the Express by Holiday Inn . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge is usually less than £ 20 , and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop in the city centre near the Crowne Plaza Hotel \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kids friendly pub in the riverside area that has a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop can be found near Café Sicilia . It serves sushi and is family friendly . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||We go to this place by All Bar One , Its an Italian spot call Midsummer House . It has high prices but the service is average . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A family friendly Indian restaurant in the riverside area , The Waterman , has a low customer rating and costs less than £ 20 . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : yes||The Twenty Two is a family - friendly Fast food restaurant located near the city centre . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The French coffee shop Browns Cambridge is in the riverside area near Crowne Plaza Hotel . With a low rating the coffee shop is not family - friendly . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House if a restaurant for hamburgers , it 's a cheap place with only one start . We are near All Bar One . Join Us . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : no | near : Café Rouge||A new pub is emerging near the Café Rouge named The Plough . Not only is it a pub , but it is also a Indian restaurant who welcomes families with a price range that is rather moderate . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : city centre||The Waterman is a pub providing an authentic French experience . Located in the city centre , The Waterman is highly rated by its customers , average a 4 star rating out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop that serves Italian food with an average customer rating . It is not kid friendly and moderately priced . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||The Waterman is located near Crowne Plaza Hotel and offers English eats for adults only \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||French food can be found in the riverside area at Alimentum . Expect to pay less than £ 20 for your meal . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : no||For French food at less than £ 20 , The Wrestlers is an average adult restaurant . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a Chinese restaurant in the city centre . It is located near All Bar One and is moderately priced . Children are not welcome . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop near Ranch . Moderated priced Italian food with a customer rating of 3 out of 5 . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : no||French Food at the Alimentum is not a kids friendly venue . Moderate price range located in city center . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a Japanese pub near the riverside with a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area , child friendly The Wrestlers coffee shop serves Italian food with a high price range . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a health food restaurant with expensive prices , a five star rating , and a family friendly environment . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman which is located in the city centre serves Japanese food has a customer rating of 3 out of 5 and a price range of 20 - 25 , but is not kid friendly . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is an Indian restaurant that is child friendly located near Crowne Plaza Hotel . \nname : Green Man | price : moderate | area : city centre | family friendly : no||Green Man is a moderate priced restaurant in City Centre that is not kid friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a Giraffe providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Located on the riverside , the Japanese restaurant The Rice Boat has a low customer rating . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café lies Strada , which serves Japanese food in the range of £ 20 - 25 . This is not a kid friendly establishment and the customer rating is 3 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The child friendly English pub The Waterman has 1 out of 5 customer satisfaction and has a high price range of food . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||The Mill is a pub which serves Fast - food , the price range is moderate and is located in Riverside . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||The Chinese near Yippee Noodle Bar in the city center is called Alimentum . It 's less than £ 20 but has a low customer rating . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||There is a family friendly restaurant called The Rice Boat . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : high||The Cambridge Blue is a Fast food restaurant with a high customer rating \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : 1 out of 5||Wildwood is a pub providing Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a Japanese coffee shop that offers moderate prices and a kid friendly environment its overall customer rating is only a 1 out of 5 . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : yes||Alimentum is a high priced venue that provides Chinese food . It is located in riverside and is child friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Located on the riverside near Burger King , The Eagle , a Japanese coffee shop , boasts moderate prices , high ratings , and a family friendly atmosphere . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||Along the riverside is an average customer Rating English pub called The Waterman . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : city centre||The Eagle is a restaurant located in the city centre . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||On the outskirts of the city next to Clare Hall there is a coffee shop called Clowns . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice , located near the Avalon riverside , is a cheap , family friendly coffee shop with a high customer rating . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Bibimbap House is near The Rice Boat in the Riverside area of town . It offers Japanese food . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns have a price range between £ 20 - 25 . It is near Café Sicilia with a kids - friendly environment . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman provides Indian food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The family friendly French restaurant with the low customer rating in the riverside area is called , The Rice Boat \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge . It doesn 't allow children and has a low customer rating . It is near the city centre and Café Rouge . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||There is a Japanese restaurant called The Golden Curry near The Bakers that is kid friendly and is moderately priced . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||With an average rating , The Golden Curry is a family friendly venue . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||With high customer ratings , Zizzi 's pub offers up Italian fare for the entire family . \nname : The Mill | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | near : The Sorrento||Looking for Italian food , check out the coffee shop The Mill , located near The Sorrento in the riverside area . Prices range from 20 - 25 pounds . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||Superb Italian food at The Eagle with 5 out of 5 ratings . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||There is a good place to get something to eat next to All Bar One called Midsummer House . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||For less than £ 20 , you can go to the family friendly restaurant , The Wrestlers , where you can have average rated French food . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a five star coffee shop with a low price point that is family friendly . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Close to the All Bar One , Midsummer House offers 1 star oriental cuisine cheap . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum , a highly rated pub , has a price range of more than £ 30 and is not child friendly . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : no | near : Café Rouge||The Plough is and English pub near Café Rouge . They price range is moderate and they are not kid friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Waterman is located at the riverside . It is a pub that serves fast food , but it has a customer rating of 1 out 5 . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults pub is near Café Adriatic that is more than £ 30 with a high customer rating \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is rated 3 out of 5 by customers and kid friendly that services Indian food . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : city centre | near : The Sorrento||The Mill is a Japanese coffee shop with a moderate price range in the city centre near The Sorrento . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||There is an expensive coffee shop called Wildwood , which serves Italian food and it highly rated . It is situated close to Ranch . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located just outside the city centre and next to Express by Holiday Inn hotel , this well - rated restaurant , named The Rice Boat is great for families . However , the prices for this restaurant are high . \nname : The Mill | Type : restaurant | area : city centre | near : The Rice Boat||In city centre , next to The Rice Boat is The Mill . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum has a price range of less than £ 20 . It is a low rated family friendly Japanese coffee shop . \nname : The Golden Curry | food : Indian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly Indian restaurant of moderate price and located near The Bakers . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Customer high rated and children friendly Blue Spice with price range of more than £ 30 is located in riverside area . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : high||The Dumpling Tree is a restaurant with a high price range providing Japanese food . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a fast food restaurant located near the Crowne Plaza Hotel . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Dishes costing less than £ 20 are served in the riverside restaurant Green Man \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a low - priced , Italian restaurant called Strada . It has a high customer rating and is child friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||A children friendly , Italian pub near The Portland Arms is The Dumpling Tree . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a child friendly Fast food chain called The Rice Boat that is near the City Centre Express by Holiday Inn with a high customer rating and is in the ideal price range of £ 30 plus . \nname : The Eagle | food : Indian | customer rating : average||The Eagle serves Indian food with an average customer service rating \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Near Ranch is a kids friendly Indian restaurant named Cotto with a customer rating of 1 out of 5 . \nname : The Waterman | price : moderate | family friendly : no||The Waterman has a moderate price range and is not kid friendly . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is an expensive restaurant serving Italian food , located on the River . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is good for kids and a meal goes for £ 20 - 25 . It is a coffee shop with French food and has a high rating . It is next to Burger King in the riverside area . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a low rated , expensive restaurant located near the river next to the Yippee Noodle Bar . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree coffee shop is located north of the city near the river and Café Sicilia . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||A cheap place with 5 out of 5 customer rating is The Rice Boat , near Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderately priced coffee shop . It may have a customer satisfaction rate of one out of five and it may not be kid friendly however , it does sell Indian food near the Café Sicilia . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Indian food in the city centre near Café Rouge . This place is not family friendly and has poor customer rating . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||There is a moderately priced pub selling English food riverside , The Mill . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Near the city river placed a great coffee shop for parents and kids called Aromi . \nname : Strada | Type : restaurant | customer rating : low||Strada is a low customer rating restaurant . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | near : The Sorrento||Japanese food serving The Mill can be found in the city centre near The Sorrento . It has low prices . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a French coffee shop located in riverside near Clare Hall . it has a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum coffee shop is a High - priced restaurant in the city centre that provides eat - in space for families . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi pub , located in the riverside area , is child - friendly and has a 3 out of 5 customer rating . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is near the Rainbow Vegetarian Café , is moderate price , is rated 3 out of 5 , is not kid friendly and serves Indian food . \nname : The Punter | food : Italian | price : high||The Punter is a high - priced Italian restaurant . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||Aromi is a low rated French coffee shop near the riverside . It is not family - friendly . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an Indian restaurant located in the city centre near Café Rouge . It has an average rating and is not family friendly . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : no||The Rice Boat is located on the riverside and has low customer rating \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Located in the riverside area and near Café Rouge , there is an Italian style restaurant named The Golden Curry . It is children friendly with a high customer rating . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The pub called The Vaults is cheap . The pub rating is average . They are near Café Adriatic . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon . It is kid friendly and moderately priced . It is in the riverside area and has a customer rating of 1 out of 5 . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is kids friendly and serves Italian food . It is near Crowne Plaza Hotel . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : riverside||5 Star food prepared at The Phoenix overlooking the river . \nname : The Phoenix | food : Indian | customer rating : 3 out of 5 | area : riverside||There is a venue that serves Indian cuisine and it is called The Phoenix . It is located by the riverside and given a rating of 3 out of 5 by customers . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : 1 out of 5||The high priced Chinese pub Wildwood has a customer rating of 1 out of 5 . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||The Punter is a cheap , family friendly eatery , located in the riverside area near The Portland Arms . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop is a three star , family friendly eatery providing hamburgers , French fries and soft drinks . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Located in riverside , The Waterman is a Japanese restaurant with a high rating and price range of £ 20 - 25 . It is not kid friendly . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||A restaurant is located near The Six Bells named Giraffe and has a moderate price range . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a child friendly coffee shop serving English food in the more than £ 30 price range with a high customer rating \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a restaurant that caters to wine pairings and is located next to The Bakers . \nname : Green Man | price : moderate | area : city centre | family friendly : no||The Green Man in the city centre is a no for kids , but its prices are moderate . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : no||There is a restaurant called The Rice Boat in the city centre serving Italian food . It has average customer ratings and is not family - friendly . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||There is a restaurant named Wildwood located near Café Rouge . This restaurant has a high customer rating . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum , situated close to the Yippee Noodle Bar , is an expensive restaurant celebrating the best of British food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop is 5 star rated seafood and family friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms , with French food , a pleasant family atmosphere and a decent clentele \nname : The Twenty Two | food : Japanese | family friendly : yes||A good Japanese restaurant if you have children would be The Twenty Two . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly restaurant offering British cuisine , at an inexpensive price point . \nname : Blue Spice | food : Italian | price : moderate | area : city centre||Blue Spice serves Indian food at a moderate price in the city centre . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is an expensive restaurant serving Italian classics . It is family friendly and located near The Bakers . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns , near Clare Hall , is a coffee shop which serves Japanese food . It 's by the riverside and has a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi is a family - oriented coffee shop with low customer ratings . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a Fast food coffee shop in riverside that is family friendly and has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub serves Chinese food near The Portland Arms and is kid Friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | near : The Sorrento||Located riverside near The Sorrento , The Mill is a coffee shop that serves Indian food in the £ 20 - 25 price range . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is near Café Adriatic and a riverside , the customer rating is high and the price range is £ 20 - 25 \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the high price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||There a Italian Bibimbap House near Clare Hall in riverside . The prices are high . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a restaurant in the city centre that provides English cuisine served in a non - family - friendly environment . Although it has a low customer rating , its price range is extremely affordable serving dishes that cost less than 20 pounds . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is located near Burger King in the city center is a kid friendly restaurant . The Eagle serves Indian food in the mid - price range and has a high customer rating . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : yes||This French restaurant . Alimentum , in the city center is both cheap and family - friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||There is a restaurant called Loch Fyne , who serve Japanese and are also kid friendly . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Waterman is a kid - friendly place to have Indian food . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is children Friendly and has Fast food \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||The Midsummer House has a low customer rating that serves Fast - food and is located near Café Rouge . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||The pub called Strada near Yippee Noodle Bar serves Japanese food and is rated 3 out of 5 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel is The Waterman which has English food and is child friendly . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : riverside||The Phoenix sells Indian food , price range is high with average customer service located in Riverside \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is children friendly in the riverside area near The Sorrento , serving Indian foods . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two , near The Rice Boat in the city centre is child friendly and the prices are less than £ 20 with customer rating it low . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is by the Burger King at the city centre . With 3 out of 4 rating and an adult - only environment , you can get Japanese food at this coffee shop if you can afford it . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : no||The Wrestlers provides Indian food in the high price range . It has an average customer rating and is not children friendly . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a fast food restaurant located in the city centre with a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly coffee shop that also serves burgers and fries . It is located near The Portland Arms and has a one - star rating . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||The Blue Spice is a coffee shop that is not kid friendly . They are located at riverside near Avalon . The recently earned a 5 out of 5 in response to the cheap prices . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly fast food takeaway which has a price range of less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a friendly Fast food coffee shop located in the city center near Crowne Plaza Hotel with an average rating . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge has an average customer rating and a cheap price range . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman is a high price range Italian restaurant . They are located near riverside . They are not child friendly and have an average rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a high priced , average rated , adult only Italian coffee shop located near Burger King in the city centre \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the cheap price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Yes , The Rice Boat is a restaurant Italian in the riverside with rank 1 out of 5 \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||restaurant located near Café Rouge called Wildwood with a high customer rating \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a cheap restaurant with a customer rating of 5 out of 5 but , it is not family friendly . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||On the riverside , there is a kid - friendly restaurant named The Rice Boat . There , English food is served and overall has a rating of 1 out of 5 . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||With a low customer rating , The Wrestlers is an Italian restaurant that isn 't family - friendly , where you can expect to dine for less than £ 20 . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is a one star restaurant . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre||In the city centre there is a coffee shop that serves Fast food . The Golden Palace is average rated with a high price range . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : yes||In the city centre is a kid - friendly restaurant with a price range of more than £ 30 , it is called the Green Man . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is family friendly and located close to The Bakers . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Indian restaurant near Rainbow Vegetarian Café with a high rating . It costs more than 30 and is not child friendly . \nname : Midsummer House | food : Indian | price : high | customer rating : average | near : All Bar One||There is a restaurant Midsummer House located in All Bar One that serves Indian food . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||A child could cook French food cheaper even if they ate at The Rice Boat on the riverside at the Express by Holiday Inn \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a sushi pub for families with three stars . \nname : The Rice Boat | food : Indian | area : city centre||The Rice Boat is an Indian restaurant in the city centre . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter near Café Sicilia is a coffee shop that serves Japanese food in the moderate price range . It has a customer rating of 1 out of 5 and is not child - friendly . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto , near Café Rouge , sells fast food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace , a coffee shop based beautifully by the riverside , has had high customer ratings for their fast food which averages around £ 30 or more . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Chinese food . It is located near Café Rouge . It is child - friendly and gets average customer ratings . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Bring the family to The Waterman , fairly close to Cambridge 's City centre , for excellent sushi food . It 's not cheap , but has had many great reviews . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a average priced Japanese coffee shop located near to Café Sicilia . Although not child friendly it is highly rated . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Fitzbillies , located near The Six Bells , serves English food at inexpensive prices . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : no | near : Café Rouge||The Plough is a high priced fast food pub near Café Rouge . It is not kid friendly . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Located near Ranch , Cotto serves Fast food and is child friendly . its customer rating is : average . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is an affordable French cuisine pub in the city center . \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant located near the Crowne Plaza Hotel \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||In Riverside , there is a high rated pub near Café Sicilia named The Twenty Two . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a kids friendly coffee shop near The Bakers . Prices are moderate , and it has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located in the city centre near Express by Holiday Inn , is a kid friendly . It offers fast food and has a high customer rating . The price range is £ 20 - 25 . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a low priced restaurant located on the riverside that serves Indian food . There ratings are low . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a poor rated cheap French food restaurant that is not family - friendly . It is located in the city centre by Express by Holiday Inn . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Highly rated Japanese food is served in the riverside area at The Rice Boat . It is not family - friendly . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||Cotto has a cheap price range and is located near All Bar One in riverside . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||Loch Fyne is a low - price restaurant serving breakfast . It 's bathroom facilities are not open to the public . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||A very reasonable family - friendly public house , The Olive Grove , serves Japanese food for approximately £ 20 per head . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in the riverside area near Yippee Noodle Bar , Alimentum serves French food in the price range of £ 20 - 25 . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle , rated one star offers complete meal deals that is friendly to all . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||Fast food coffee shop , The Cricketers , near The Portland Arms has a low customer rating and is not family - friendly . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a Café Rouge for family . It 's located south city . \nname : The Punter | food : French | price : £ 20 - 25||The Punter serves reasonably priced French food \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre||A low cost coffee shop called The Golden Palace also serves Indian food at a low cost in the city center . This shop has an average rating . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||The Giraffe coffee shop located near The Bakers is a kids Friendly place with moderate price range . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the riverside area serving moderately priced Italian food with a customer rating of 1 out of 5 is Alimentum . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a Japanese style restaurant that has high customer rates from the kids - friendly areas . The price is brilliant too at dishes ranging from £ 20- £ 25 . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||The Golden Curry , which offers English food , is a child - friendly restaurant with a high customer rating . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Near Café Adriatic , the prices are high , the customer rating is about average , its near the riverside , its name is Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||restaurant named Travellers Rest Beefeater is yes kids friendly with moderate price range \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto is a highly - rated , kid - friendly Chinese food restaurant located near Ranch . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House that is near Café Rouge has a 5 out of 5 Japanese food . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||The Dumpling Tree its a Japanese restaurant low cost \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||Near The Sorrento in the riverside area a coffee shop called The Mill offers cheap Italian food . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : city centre||The Waterman , a well - respected pub in the city centre , serves Chinese food at reasonable prices . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a high customer rating restaurant that serves Japanese food . They are in the city near Café Rouge . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||For more than £ 30 The Wrestlers is a children friendly French restaurant near Raja Indian Cuisine at city centre is a coffee shop . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||At Bibimbap House you will find English food at value pricing . It near Clare Hall in the riverside area . \nname : Green Man | Type : restaurant | area : riverside||Green Man is a restaurant located in riverside \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is dinner and drinks on a budget . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Green Man is a fast food place by the riverside . It 's a pub by Café Rouge . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Indian cuisine at prices under £ 20 . Customer rating is low . The Rice Boat is located near the riverside and Express by Holiday Inn . Sorry , no family 's are allowed . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a restaurant suitable for families looking for a medium priced venue . It has five stars and can be found next to Burger King . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : city centre||The Mill is a moderate pub that delivers Japanese food . It is located in the city centre . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman offers English food with with a customer rating 1 out of 5 . It is located in the city center . It has a high price range . It has a bad children friendly atmosphere . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar , Alimentum is serving cheap , fast food near the city centre . It has average customer ratings . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near the river and Crowne Plaza Hotel . It serves Indian food , doesn 't allow children . It is near the river and scores highly with customers . \nname : The Vaults | food : Indian | price : moderate | family friendly : no||The Vaults is an Indian restaurant that serves food for adults at moderate price . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is located on the riverside next to Clare Hall and offers Chinese cuisine for less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||Serving Italian food , The Golden Palace , a coffee shop located in the city centre has opened . Customers have given it a low rating and price range is less than L20 . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Riverside area there 's a average customer rating . Alimentum is near Yippee Noodle Bar that serves Italian food and has a cheap price range . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a cheap eatery with one star located by the River and is not suitable for families . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn , is a cheap Indian restaurant you could take your family to in the city centre . It has an average review score . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a nice pub located near Café Brazil , it has French food and very low prices \nname : The Vaults | Type : restaurant | food : English||The Vaults is a restaurant that offers English style cuisine . \nname : The Golden Curry | food : Indian | price : high | family friendly : no | near : The Bakers||The Golden Curry is an Indian restaurant near The Bakers with high price range and friendly with kid \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Zizzi is a riverside coffee shop that is decent in price and service , but is unfriendly for having children around . \nname : Midsummer House | food : Indian | customer rating : 5 out of 5 | near : Café Rouge||For good Indian eats near Café Rouge , Midsummer House is a great place to visit . It was rated 5 out of 5 in costumer surveillance . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is near The Portland Arms . It serves fast food , is child friendly and has a high customer Rating . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Beside the Café Rouge Japanese restaurant is an average rated 3 out of 5 Midsummer House . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , near Crowne Plaza Hotel in the riverside area , is a coffee shop with Japanese food . It is child - friendly and has a 3 out of 5 customer rating . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kids friendly Chinese restaurant near the Crowne Plaza Hotel . \nname : Midsummer House | food : Chinese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low price Chinese restaurant with a low customer rating and near All Bar One . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Quaint coffee shop called the Cocum with a moderate price range great fast food and kid friendly . Is customer rated 1 out of 5 . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese in the less than £ 20 price range . It is situated in the city centre near to Express by Holiday Inn . It is family friendly but has a low customer rating . \nname : The Eagle | food : French | customer rating : low||There is a low customer rated restaurant called The Eagle , which serve French Food \nname : The Golden Palace | Type : pub | price : moderate | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace pub , located in the city centre near the Rainbow Vegetarian Café . Which is a good place to go if your price range is moderate . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||Wildwood Japanese restaurant is a low rated place to eat in the city . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly restaurant with a 5 star review . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||A coffee shop named Cotto serves fast food down at the city centre as a moderate price . You can find it next to The Portland Arms , but its rating is 1 out of 5 \nname : The Vaults | food : English | price : high | family friendly : no||The Vaults is an English food place with a high price range that is not child friendly \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace coffee shop serves five star , high priced meals . Located near to the river . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is children friendly but in the high price range , It does offer the best Indian food around . This place has a customer rating of 1 out of 5 . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheaply priced Indian located near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : no||The Rice Boat is not family - friendly that sells Japanese food . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||with a high price range of 30 dollars or more The Golden Palace is a fine restaurant \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||For Italian food , Browns Cambridge is an average rated and cheap place \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||A family friendly French food restaurant is the Loch Fyne . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an English restaurant situated near Café Rouge , along the riverside . It has a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is an excellent coffee shop in the riverside area near The Sorrento . They have fast food options , and the price range is £ 20 - 25 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||Fast food pub The Waterman has a high rating and is in the riverside area \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman Indian restaurant offers a kid friendly atmosphere , located on the riverside , moderate price range with a customer rating 1 out of 5 \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café with a customer rating of 1 out of 5 is The Rice Boat which has a moderate price range . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is located near Café Adriatic in a riverside setting and offers high priced items . Customers have given average ratings for this venue . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||There is a non children - friendly coffee shop in the city centre near Avalon named Blue Spice with a 5 out or 5 rating that is more than £ 30 . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near All Bar One . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a restaurant providing take - away . It is located outside the city centre next to Café Rouge . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||Yes The Plough is a cheap family friendly pub that serves Italian food near Café Rouge . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a restaurant on the riverside that serves French food . It is not kid friendly . The customer rating is 3 out of 5 and the price range is £ 20 - 25 . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||The Olive Grove pub is a family friendly venue on the banks of the river Thames , it serves reasonably priced fast food . \nname : Midsummer House | food : Japanese | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is a Japanese place with a low rating near Café Rouge \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||The Vaults , is a kids friendly French themed place . With a price range of £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Welcome to The Eagle . We a non family - friendly coffee shop our food is Italian we are near the Burger King we are at the riverside and our customer rating is low . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||A high end family friendly restaurant The Twenty Two , is located by the river , close to The Rice Boat . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Child friendly coffee shop , The Punter , is moderately priced . It is near Café Sicilia and serves Japanese food which is highly rated . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi , an Italian coffee shop , is located in the city centre has a customer rating of 5 out of 5 . It is not family - friendly . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a 1 out of 5 rated restaurant that 's located on the riverside \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Indian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is family friendly with French food . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice , a French restaurant in the riverside area , is in the low price range . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||A non - family - friendly , English restaurant , The Rice Boat , is located near the riverside . It has a high customer rating . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||The Phoenix serves Italian food and is in the riverside area . It has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Expensive coffee shop called Cotto can be found in the city centre , close to The Portland Arms , it has a customer rating 3 out of 5 and serves Japanese food . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : no | near : All Bar One||A moderate priced French restaurant that is not children friendly is called Green Man . It is located in the city centre near the All Bar One . \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||The Waterman is an Italian venue , close to Crowne Plaza Hotel . Not recommended for children . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Blue Spice is located in the city centre and has a price range of £ 20 - 25 . It is not kid friendly and has a customer rating of 3 out of 5 . \nname : Cotto | food : English | customer rating : low | family friendly : yes | near : Ranch||Cotto , family friendly and low rated , is located near Ranch and serves English food . \nname : Cotto | food : French | near : Café Rouge||The Cotto serves French food . It is near Café Rouge . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||There is a restaurant on the riverside called The Waterman serving French cuisine . It is quite pricey I would say its over the £ 30 mark and it has quite a low customer rating however it is children friendly . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge has moderate prices with a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||You get what you pay for at Fitzbillies when it comes to service and terrific cuisine . Tailoring to all ages , they provide the tastes of The United States . \nname : The Mill | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside||The Mill is a pub that serves Indian food with prices ranging 20 - 25 in the riverside area \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry offers pasta for the whole family . It is rated one star . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is a family friendly , expensive fast food restaurant located next to the river . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle can be found north of the city center . , beside the River and a Burger King . This non - family friendly restaurant offers inexpensive fast food in favor for their terrible service . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a Fast food pub with a cheap price range . It is located near to the Café Brazil . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||In Riverside near Rainbow Vegetarian Café there is a moderately priced pub name The Golden Palace . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : city centre||Moderately priced and located in the city centre , Clowns is a pub that rates 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a sushi and coffee place near the Crowne Plaza Hotel and does not permit families . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two is a child - friendly Indian restaurant . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||For less than £ 20 you can eat French food at The Plough . It is a pub located near Café Rouge that is not family - friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two serves English food . It is located on the riverside and is family friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Situated on the riverside is a coffee shop serving fast food near Clare Hall with a customer rating of 5 out of 5 called Clowns . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Riverside Italian coffee shop called Clowns with 3 out of 5 star rating . Perfect spot near Clare Hall . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Near The Rice Boat you can find the Indian restaurant , Loch Fyne , it has a consumer rating of 5 stars and is close to the center of the city . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop serving French food at a 20 to 25 pound price range . It is located near The Sorrento in the riverside area . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 3 out of 5 | area : riverside||At the riverside area there is a pub called The Waterman , it sells Chinese food and has an average customer rating . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a fast food place place with great ratings priced around 20 pounds . It is located near All Bar One . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||Strada is a French pub located near the Yippee Noodle Bar . It has a low customer rating . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Even with its price range of £ 30 or more a person , the Taste of Cambridge restaurant has still averaged a 5 out of 5 customer rating . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||With a customer rating of average , The Twenty Two offers up pub fare in the riverside area near Café Sicilia . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a French coffee shop in the city center . It has a rating of 5 out of 5 and a price range of more than 30 \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a kids friendly place The Waterman which is located in the area riverside with low customer rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : riverside||There is a pub called The Waterman that sells Chinese . It has a customer rating of 5 out of 5 and is in the area of the riverside \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||There is a restaurant called The Golden Curry providing Indian food located in the city centre near Café Rouge with low customer rating and it is family friendly . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar in riverside is Alimentum serving Japanese food with a high customer rating and prices between £ 20 - 25 . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : average||There is a cheap pub , Wildwood , which has an average customer rating . \nname : The Vaults | food : Indian | price : moderate | family friendly : yes||Indian food can be purchase for a moderate price in a kid - friendly restaurant called The Vaults . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Close to The Sorrento in riverside is Browns Cambridge serving Italian food and is child friendly \nname : Cotto | food : Chinese | near : Café Rouge||Cotto is a Chinese restaurant near Café Rouge . \nname : Loch Fyne | food : English | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne located in the city centre near The Rice Boat serves English food and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a fast food coffee shop located in riverside . It is low rated by customers . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||Wildwood is a low rated Italian pub in the city . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a one star restaurant that serves low priced meals . It is located near the Rainbow Vegetarian Café . This restaurant is ideal for adults only not for families with children . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a non kid friendly Chinese restaurant which has a high customer rating as well as a high price range expected to be over £ 30 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : more than £ 30 | family friendly : yes||There is a high priced Chinese food restaurant called Loch Fyne that is child friendly . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House provides Japanese food at an average price range . Located on the riverside near Clare Hall . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies , rated 1 out of 5 , is a Japanese coffee shop . It is not kid friendly and is rated 1 out of 5 . It is moderately priced in the city centre . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House serves high priced fast food in the riverside area . It is near Clare Hall . \nname : Browns Cambridge | food : French | area : city centre | family friendly : yes | near : The Sorrento||Near The Sorrento in the city centre , Browns Cambridge is a family - friendly French restaurant . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The price range is more than £ 30 , but Blue Spice is child - friendly and has a high customer rating . It is located by the riverside . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||An English pub located near Café Brazil that is moderately priced is The Cambridge Blue . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers , coffee shop . Not available to families , 1 star restaurant located next to The Portland Arms \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a cheap , family friendly pub . It is located by the river on the outskirts of the City centre . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a fast food and coffee shop located near Café Sicilia . The price range is high but reviews from customers give 1 out of 5 . It is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is not child - friendly but boasts an average rating , high prices in riverside . It is near Burger King . Though considered a coffee shop , it also offers Italian food . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum has Chinese food in the less than £ 20 price Range and a low customer Rating . It is in the riverside area near Yippee Noodle Bar . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a family friendly fast food restaurant in Riverside . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||A children friendly restaurant called The Plough can be found close to Express by Holiday Inn . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||A place that is cheap priced , family friendly with average customer ratings and is located near the Express by Holiday Inn is The Rice Boat . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||Wildwood is a pub serving Japanese food with moderate prices . However , their customer rating is only 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that has Fast food and a high rating . It is in the riverside area . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a French food place located near Express by Holiday Inn in the city centre has a low customer rating and a price range of more than £ 30 , but is children friendly . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada offers Italian food for kids Friendly with cheap price in Rainbow Vegetarian Café . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||Although The Golden Curry is not for the whole family , this low - priced British restaurant is north of The Bakers . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a kid - friendly Japanese restaurant rated 5 out of 5 . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers who are kid - friendly and boasts a customer rating of 3 out of 5 . They are priced between £ 20- £ 25 \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms you will find The Cricketers a children - friendly eatery that serves Japanese food as well as having a coffee shop . Has a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a non kid - friendly Indian coffee shop . They are near the riverside area , have a customer rating of three out of five , and are moderately priced . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada , near Rainbow Vegetarian Café , sells cheap Indian food but it only has an average customer rating and is not family friendly . \nname : The Rice Boat | food : English | area : riverside||by the riverside English food is served at The Rice Boat \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||For a family friendly coffee shop try Giraffe , situated near The Bakers . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a low - priced pasta restaurant . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a Chinese restaurant in the riverside area . It has a customer rating of 5 out of 5 but is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is not a family coffee shop , however sells a delicious sushi . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter coffee shop serves Indian food in the more than £ 30 price range and holds a high customer rating . It is not children friendly and is located near Café Sicilia \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman provides Chinese food It is near Crowne Plaza Hotel . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||There 's a coffee shop near The Bakers called Giraffe . It is children friendly and has a price range of more than £ 30 . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Fitzbillies , near The Six Bells , offers Japanese food at a moderate price range . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood pub is not a very expensive French food restaurant but doesn 't have very good customer ratings either . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms in the city centre which offers good quality food at a premium price . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||For French food , try The Cricketers restaurant near All Bar One . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside||There is a French coffee shop called The Golden Palace . It is located in the Riverside area , has a high price range and a customer rating of 3 out of 5 . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a higher end establishment serving Chinese food which has excellent reviews . It is suitable for the whole family and located near Rainbow Vegetarian Café . The average meal is £ 30 . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a cheap restaurant located in the city centre . It is not family restaurant with low rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||There is a 5 - star Asian restaurant that is moderately priced located outside the centre of the city , called The Golden Palace coffee shop . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||If you 're looking for a children friendly fast - food restaurant near The Sorrento in the Riverside area look no further than Browns Cambridge . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||Highly rated , The Phoenix is an establishment located near riverside where you can enjoy Indian food with price higher than £ 30 per person . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||The Golden Palace coffee shop serves Japanese food in the less than £ 20 price range in the city centre and has an average customer rating \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : city centre||Clowns is a pub in the moderate price range near centre of city , customer rating is 1 out of 5 . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||There is a Japanese restaurant near Ranch called Cotto . It is not considered family - friendly and has received a low customer rating . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||The moderately priced Italian Alimentum , in riverside , is child friendly . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||restaurant The Golden Palace is in the area of riverside with a 1 out of 5 customer rating . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Indian food is served at The Wrestlers . The customer rating is 5 out of 5 , it is family - friendly and priced in the cheap range . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop found near The Portland Arms . It is not family friendly and has low customer reviews . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant near Rainbow Vegetarian Café that serves inexpensive Indian food . This restaurant is not family - friendly , and has received low ratings . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is very affordable . A 3 star coffee shop . Very close to the Ranch . \nname : The Golden Curry | food : English | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant close to The Bakers what is kids friendly and offers dishes within 20 - 25L price range \nname : Bibimbap House | food : French | area : city centre | near : The Rice Boat||Near The Rice Boat in the city centre is a French restaurant called Bibimbap House . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The French coffee shop , The Wrestlers , is a moderately priced , kid friendly restaurant in riverside near Raja Indian Cuisine . \nname : The Cambridge Blue | Type : pub | food : French | price : high | near : Café Brazil||There is an expensive , French pub near Café Brazil called The Cambridge Blue . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Near Café Rouge Midsummer House has a average customer rating serves English food . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is an expensive adult coffee shop located in the city centre named Zizzi . They have received average customer ratings . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Rainbow Vegetarian Café for all families with a 1 star rating serves lots of sushi food with reasonable price and is situated in Cambridge \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||For Italian food in the city centre , one option is Browns Cambridge . It is a coffee shop located near Crowne Plaza Hotel . It has a low customer rating though , and is not family - friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no||Cocum coffee shop has Indian food and has a high price range . It is not kids friendly . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||There is a 5 - star restaurant called Midsummer House located near Café Rouge . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a licensed restaurant located close to the Yippee Noodle Bar . It has a five star rating and is in the mid price range . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||There is Travellers Rest Beefeater near Riverside . Is has a price range above 30 euros . It is near Café Adriatic with a high customer rating . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is located near the river near Yippee Noodle Bar . It is in the low price range . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat serves Japanese food in the riverside area . It is highly rated but not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a three star dining experience for the entire family . Located on the banks of the river , Fitzbillies offers expensive American food . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The restaurant Cocum has a five star rating and is family friendly . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood offers Indian cuisine in a moderate price range near the Ranch . This coffee shop sports a 3 out of 5 customer rating . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : yes||There is a family - friendly restaurant The Twenty Two in the city centre that provides Italian food . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||In the riverside area , with prices less than £ 20 , Alimentum serves Japanese food . It can be found near the Yippee Noodle Bar and has a low customer rating . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum serves Italian and is located along the river . Alimentum is family friendly and prices start at less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop near Burger King in the city centre . It is not family - friendly and has a low customer rating and a price range of less than £ 20 . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a French pub restaurant that is family friendly in Riverside . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace that serves sushi that has a low rating of 1 star and average in price range \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a pub located near the Café Rouge . Here they serve mid ranged meals . Families with children are permitted . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , located riverside near Burger King is an adult friendly coffee shop . It serves great , cheap Indian food . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman provides Indian food in the cheap price range . It is located in the city centre . Its customer rating is average . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Cocum is a children friendly pub with an average customer rating . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||An Italian restaurant in riverside with a high rating is The Phoenix . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||Loch Fyne French restaurant allows children pricier than average . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||For high priced Italian food , try Midsummer House . With a customer rating of 1 out of 5 , they are located near All Bar One . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||The Loch Fyne is a cheap Italian restaurant , great for families . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : yes | near : The Sorrento||Near The Sorrento is a family friendly Chinese restaurant in the city centre , Browns Cambridge . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : city centre||The Mill is a cheap Chinese pub near the City Centre . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue pub serves English food at high prices . It is located near the Café Brazil . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French restaurant near Express by Holiday Inn in the center of the city . It is not children friendly , and has low customer ratings . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a pub in Riverside with a low customer rating and a price range of more than £ 30 . \nname : Loch Fyne | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne sells Japanese food by the riverside , near The Rice Boat . It 's rate 1 of 5 \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||Taste of Cambridge has a customer rating of three out of five . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is a high priced restaurant , near the Café Adriatic , which is by the riverside . its price range is around £ 20 - 25 . \nname : Alimentum | food : Japanese | price : cheap | area : riverside | family friendly : yes||Alimentum is near riverside , cheap , and family friendly . They serve Japanese food there . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||Located in riverside is an Italian pub with high price food called The Mill \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults serves English food in a family friend environment and is in the low price range of less than L20 . \nname : The Phoenix | food : Chinese | customer rating : low | area : riverside||The Phoenix serves Chinese food and has a low customer rating . It is in the riverside area . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||In the riverside area , near Burger King , is a coffee shop named The Eagle . The Eagle has Indian food , low ratings , not family friendly , and a price range of less than £ 20 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Clowns is a pub that is located in the city centre . It has a price range of more than £ 30 and a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||The restaurant Loch Fyne serves French food in the more than 30 pound range . It is a child friendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||By the riverside is Fitzbillies , a coffee shop serving French food for prices ranging from £ 20 to £ 25 . Children are welcome . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is an expensive and not children friendly French restaurant . \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||If you 're looking for fast food in the riverside area , Blue Spice is fairly priced . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House , near to All Bar One in Cambridge , has a low - priced menu of wines , cheeses , soups and breads . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The moderately priced restaurant The Olive Grove is family friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Riverside pub Giraffe offers kid friendly food . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||On the riverside , there is a coffee shop called Aromi . It serves French food . It has a great customer rating of 5 out of 5 . It is a Child - Friendly place . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is a high end Italian restaurant \nname : Loch Fyne | food : Japanese | customer rating : high | area : riverside | near : The Rice Boat||Japanese food is served at Loch Fyne that has a high customer rating and is locate near a riverside near The Rice Boat . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge . The have high prices and are family Friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly restaurant with a low rating . It is in the average price range and located near Express by Holiday Inn . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||There is a cheap family friendly restaurant Travellers Rest Beefeater . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||Wildwood is a 3 - star pub that has competitive prices for their sushi dishes . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a restaurant that serves pasta . It has five out of five stars . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter coffee shop offers a kid friendly fast food experience at prices of more than £ 30 . It gets high ratings from customers . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a non family - friendly coffee shop in the riverside area near the Crowne Plaza Hotel called Browns Cambridge which serves Japanese food with a low customer rating \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a French style coffee shop for big spenders located by The Sorrento at riverside . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||A fast food venue named The Vaults has a moderate price range and is kid friendly . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly Japanese restaurant on the Riverside , near the Express by Holiday Inn . This restaurant has a moderate price range and a 1 out of 5 customer rating . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||In Riverside the Zizzi restaurant serves meals of moderate price . \nname : The Cambridge Blue | Type : pub | food : Indian | price : more than £ 30 | near : Café Brazil||Located near Café Brazil , The Cambridge Blue is a pub that serves Indian food for more than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||Come eat at The Cambridge Blue and enjoy our 3 stars Japanese food . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a one - star dine - in restaurant that is fit for the whole family . It is located near the river . \nname : The Mill | Type : pub | food : Italian | price : more than £ 30 | area : riverside||There is an above average pub serving Italian food in the riverside area called The Mill \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is an averaged rated coffee shop that has highly expensive Italian food . It is in the area of city centre near The Portland Arms \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough located by the Express by Holiday Inn is a kids friendly restaurant . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||A moderately priced sushi place that goes by the name Browns Cambridge is in town but is rated one star \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a moderately priced venue near the Rainbow Vegetarian Café . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Fast food restaurant Strada has a moderate price range and a customer rating of 3 out of 5 . Not recommended for families , it is located near Rainbow Vegetarian Café . \nname : The Phoenix | food : English | customer rating : high | area : riverside||The Phoenix , which serves English food , has a high customer rating . It is in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is located in the city centre , with a price range of £ 20 - 50 for Indian food . It is a kids friendly coffee shop . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : cheap | family friendly : yes||Loch Fyne is a family friendly restaurant cheap serving Chinese food \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Situated near the Express by Holiday Inn , The Rice Boat , is a high - end , family friendly sushi restaurant . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is not a family - friendly restaurant with English food . The customer rating is low and it is located at the Riverside . The price range is less than 20 pounds . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||There is a kid - friendly restaurant with a price range of £ 20 to 25 named Loch Fyne . It serves Japanese food . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||A high priced , five star restaurant Travellers Rest Beefeater is located right off of the river next to Café Adriatic . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Located in the riverside area is The Twenty Two . This moderately priced , family friendly restaurant can be found near The Rice Boat . It had a 3 out of 5 rating . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The kid friendly , fast food restaurant , The Wrestlers , is highly rated by customers and prices range from 20 to 25 pounds . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre near the Express by Holiday Inn , The Rice Boat serves English food and is children friendly . it has a high price range and a 1 out of 5 customer rating . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a 5 - star family friendly pub that offers various Chinese dishes \nname : The Eagle | food : English | customer rating : 1 out of 5||The Eagle serving English food has a customer rating of 1 out of 5 . \nname : The Phoenix | food : French | customer rating : 1 out of 5 | area : riverside||The Phoenix received a customer rating of 1 out of 5 . It offers French food and can be found in the riverside area . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is an Italian Pub that is family friendly located near The Portland Arms \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the city centre near The Rice Boat . It is child friendly , offers meals in the £ 20 to £ 25 range and has a customer rating of 3 out of 5 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Near The Six Bells there is a family friendly establishment . It is called The Golden Curry . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a 5 out of 5 rating . It is near Rainbow Vegetarian Café and costs more than £ 30 . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Cocum is a cheaply priced coffee shop , offering fast food and drinks . It is rated 3 stars and is ideal for families . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||For moderately priced English cuisine there is The Mill pub located in riverside . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : no | near : All Bar One||The Green Man is located on the riverside near All Bar One . It serves Chinese food in the high price range and is not child friendly . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||Near All Bar One , there is a fast food restaurant called The Cricketers . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Bring the kids along to Fitzbillies , in the City Centre , to sample the French food served in this highly rated coffee shop . Meal prices are from £ 20 to £ 25 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with a customer rating of 5 out of 5 serving French food . It is near the Crowne Plaza Hotel on the riverside . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice has a customer rating 5 out of 5 . They have a cheap price range . They are not family - friendly . Located in the riverside area . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||In the area Riverside there is a gorgeous 5 out of 5 customer rating Italian restaurant called The Rice Boat . Unfortunately it is not family - friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : city centre | near : The Sorrento||The Mill is a moderate price ranged fast food coffee shop that is located in the city centre near The Sorrento . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||In the riverside area there is a cheap Fast food restaurant called Green Man near All Bar One . It is very family friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a place for Chinese food , not suited for Families and with average customer rating . It is located in the city centre , near Café Rouge . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the city centre near The Rice Boat and is child friendly . It has 3 out of 5 customer rating and the price range is between £ 20 - 25 . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||There is a cheap coffee shop named The Vaults with average customer rating . It is riverside , near Café Brazil \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a Japanese which is kid friendly . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is located in the riverside area near All Bar One . It has a price range of £ 20 - 25 . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Blue Spice is in the riverside area with an average customer rating . It is children friendly with a high price range . \nname : Bibimbap House | food : Fast food | price : £ 20 - 25 | area : riverside | near : Clare Hall||In the riverside district , near Clare Hall , Bibimbap House serves fast food costing between £ 20 and £ 25 . \nname : The Waterman | price : less than £ 20 | family friendly : yes||The Waterman is low priced and family friendly . \nname : Blue Spice | food : English | price : high | area : riverside||Blue Spice serves English food on the riverside , their price is high . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||Loch Fyne is a restaurant that serves Italian food but it is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Japanese kid - friendly coffee shop located by the riverside . It is near Burger King , has moderate price ranges and a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop that serves fast food . The price range is between 20 - 25 pounds and it is kid friendly . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kids - friendly pub near Ranch with a rating of 3 out 5 stars . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||You can go to the city centre and order Japanese food from The Phoenix . They are priced at more than £ 30 with a 5 out of 5 customer rating . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : riverside | near : Clare Hall||Clowns is a decent riverside coffee shop near Clare Hall that serves Indian food . \nname : Fitzbillies | food : English | price : more than £ 30 | near : The Six Bells||Fitzbillies is a restaurant near The Six Bells that serves English food for £ 30 and up . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||Located in the Riverside area , The Olive Grove is a pub that serves Italian food at a less than average price range . They are family friendly . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub serving French cuisine . It is close to The Portland Arms . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant which serves Italian food . It is located in the city centre near Café Rouge . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is cheap and family friendly , serving Italian food and is rated 5 out of 5 . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue pub near Café Brazil offers French food in the more than £ 30 price range . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is Fast food in the city centre that has high customer ratings and a price range of £ 20 - 25 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub which serves Japanese food , it is located near to The Portland Arms . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub that serves French food near Café Brazil and has a price range of less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : no||Loch Fyne restaurant serves Italian food for moderate prices . Not kids friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers serves English food for less than £ 20 in an adult setting , but it has low customer ratings . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a restaurant with meals less than £ 20 \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Blue Spice is a cheap restaurant in the city centre . It 's been rated 5 out of 5 but is not family - friendly . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||A children friendly restaurant called The Plough is near Express by Holiday Inn . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is moderately priced and is located near All Bar One in the riverside area . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman is a fast food restaurant with average ratings . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Avalon||Located near Avalon in the city centre is a low rated coffee shop called Blue Spice . It is not family - friendly and its prices range less than L20 . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two , a Japanese restaurant , is family friendly . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that offers Chinese food in a family friendly environment . They are located near The Portland Arms . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an excellent family friendly fast food restaurant . It is quite expensive . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Located in the city centre , Fitzbillies is a coffee shop which serves fast food . It costs more than £ 30 but is highly rated . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near the Express by Holiday Inn is French . It was given a low customer rating and has a price range of less than £ 20 . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near the Express by Holiday Inn , in the city centre . The family friendly wine bar is moderately price is rated 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||For a family friendly restaurant head to Loch Fyne . With dishes costing less than £ 20 , this fast food restaurant is suitable for children . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes||There is a child friendly pub that provides Chinese food in the high price range in riverside named The Olive Grove . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||In the city center area near Café Rouge is a family - friendly French food restaurant named The Golden Curry with a customer Rating of 5 out of 5 \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||There is Moderate price coffee shop named The Eagle serving French food Located in city center near Burger King with a customer rating of 5 out of 5 but not children - friendly \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a fast food restaurant with a 1 out of 5 rating . They sell their food a middling prices and are welcoming to families . They are located near to the bend in the river . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe , the family friendly , fast food pub is in the riverside area . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||A Chinese pub named Giraffe is located on a riverside and is children friendly . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice has a moderate price range with a customer rating of 1 out of 5. it is located by the riverside and yes it is kids friendly \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Visit Clowns , a coffee shop that offers Japanese food , located near Clare Hall in Riverside . Unfortunately , they have a low customer rating . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||Family friendly Zizzi pub has fast food and a low customer rating \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House offers French dishes that costs more than 30 euros and is located near Clare Hall in the riverside area . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : city centre||The Golden Palace has an average customer rating for a restaurant located in The city centre . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Come to The Olive Grove , one of the best pub to encounter the family entire , eat the best French for less than £ 20 , this is in the Riverside of the town ... \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the city centre there is an expensive French restaurant called The Waterman . It is family - friendly and has a customer rating of three out of five . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is low customer rated French coffee shop with a price range of more than £ 30 located near The Portland Arms in riverside . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum , is the restaurant next door to ' Yippee Noodle Bar ' . \nname : The Punter | food : Japanese | price : moderate||The Punter features sushi at a reasonable price . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill which is riverside pub is offering a £ 35 deal on Japanese food \nname : The Cambridge Blue | Type : pub | food : Japanese | price : high | near : Café Brazil||Café Brazil has Japanese pub nearby called The Cambridge Blue . The prices are a little high . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||There is a family - friendly coffee shop located near Café Sicilia called The Punter . It serves Fast food and costs less than £ 20 . It has a low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue is a restaurant that is rated one star . \nname : Loch Fyne | food : Japanese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a Japanese restaurant near The Rice Boat in the city centre has a customer rating of low \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Indian food It is near The Portland Arms . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a family - friendly coffee shop serving mid - range Italian food , sited near the Thames , it is not highly rated . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is not family friend , serves low cost French food in the riverside area . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced restaurant in the city centre . They have high customer ratings and they serve English food . It is not kids friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A kid - friendly coffee shop located in the riverside area near the Crowne Plaza Hotel , Browns Cambridge serves fast food and is highly - rated by customers . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the city centre near Express by Holiday Inn . Indian food is serves here at a high price range . It is children friendly and has an average customer rating . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop , located near Avalon by the riverside and have a price range of less than £ 20 , with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||There is a family friendly coffee shop named Fitzbillies which also serves Indian food located at the city centre which has average ratings and cheap prices . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix , located in city centre , is a moderately priced fast food restaurant that received a high customer rating . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman serves cheap Japanese food in the city centre . It 's family - friendly , cheap , and has a 5 out of 5 rating . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle can be found north of the city center , near a Burger King , with a view of the river . For their cheap prices , you and your family can receive 5 - star cheeses , fruits and wines . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice coffee shop is located near Avalon in riverside . It is not family - friendly . It has a low customer rating and offers a price range less than £ 20 . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a child - friendly fast food restaurant with a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : English | customer rating : 3 out of 5 | family friendly : yes||Serving English food the kids - friendly pub Zizzi is rated 3 out of 5 \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low priced Bar with a All Bar One serving Wine , Cheese and Fruits . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is an adults only highly recommended venue sited near the Thames , serving mid - range priced Italian food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with Italian food in the riverside neighbourhood , near the Crowne Plaza Hotel . Enjoy a kid - friendly atmosphere and a 3 - out - of - 5 rating from our customers . \nname : Zizzi | Type : pub | food : French | customer rating : 1 out of 5 | family friendly : yes||There is a kid friendly French pub called Zizzi that has a 1 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop with a price range more than £ 30 . It can be found in the cit centre , although it has a low customer rating . Yes , this coffee shop is child friendly . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||With an average customer rating , the inexpensive Travellers Rest Beefeater is situated near Café Adriatic in the riverside area of the city . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||In the riverside area , The Mill pub serves French food in the high price range . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly French coffee shop in the city centre with a low customer rating . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , Japanese restaurant with a customer rating of 3 out of 5 in the riverside area ear Express by Holiday Inn , kid friendly and prices range between £ 20- £ 25 . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre||The Mill is a moderately - priced English pub in the City Centre . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||The Mill is a Japaneses pub in the riverside area with prices between 20 and 25 euro \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is family - friendly and in the £ 20 - 25 price range . It is located near The Bakers . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||for a cheap French food place in the riverside area The Waterman has a 5 out of 5 customer rating and is not child friendly \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Theres a pub called Cocum , It 's child - friendly , and the price is high , Customers give it a 1 out of 5 . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter is a cheap , sushi serving restaurant . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||The children friendly pub is Giraffe . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Located near Café Rouge , Midsummer House serves Japanese food and has an average customer rating . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults is a rich , Italian themed restaurant that accepts children \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Found near the Café Sicilian is The Punter . With moderate prices , fast food , and a kid friendly environment , The Punter had scored a 3 out of 5 customer rating . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater on the riverside , near Café Adriatic has a moderate price with average customer ratings . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers offers Fast food with a price range of between £ 20 - 25 . It has a high customer rating and is kids friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||Go to Zizzi , a low rated Italian Pub due to it 's anti - family service for true Mavericks who love low ratings as this Pub has . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies is a restaurant near The Six Bells offering Japanese cuisine in for up to but not more than £ 20 . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||Taste of Cambridge is a restaurant that provide high quality food for cheap . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a restaurant with a price range of £ 30 . It is located in riverside near All Bar One . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove is a very family friendly restaurant located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 stars coffee shop with delicious food , located near the river \nname : Blue Spice | food : Italian | price : high | area : riverside||in riverside Blue Spice offers Italian food . It is highly priced . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a fast food restaurant that is family friendly . It can be found to the north of the city center . \nname : The Golden Curry | food : English | price : £ 20 - 25 | family friendly : yes | near : The Bakers||There is a place called The Golden Curry located near The Bakers that is kids friendly and have English cuisine for 20 - 25L price . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum offers a family - friendly coffee shop atmosphere for a mid - price range . They also offer cheeses , fruit , and wine . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family - friendly fast food pub that is rated 5 out of 5 . \nname : The Golden Palace | Type : restaurant | price : moderate||restaurant The Golden Palace is moderate \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||Located near The Rice Boat and in the city centre , The Twenty Two is a restaurant hat has a low customer rating and a price range of more than £ 30 . This is not child friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two in riverside serves French food and is child - friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kids friendly French venue on the riverside near The Sorrento . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is family friendly . It is near Café Sicilia and has a price range of less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Enjoy coffee and treat the kids to authentic Indian food at The Wrestlers . A high priced establishment near Raja Indian Cuisine , in Riverside . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family restaurant providing excellent customer service . It is located on the riverside near Café Rouge . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside is an Indian coffee shop near Raja Indian Cuisine called The Wrestlers . It has a cheap price range and is family friendly . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub located near Ranch . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : no||In the center of the city is an Indian restaurant called The Twenty Two that is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A coffee shop called Fitzbillies is cheap and rated one star and is family friendly \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||For Japanese food , there is Alimentum . It does cost more than £ 30 but has a 5 out of 5 rating . It 's near Yippee Noodle Bar in the Riverside area . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||There is an expensive wine tasting place located next to The Six Bells called Fitzbillies . \nname : Browns Cambridge | food : Chinese | price : less than £ 20 | customer rating : low||Browns Cambridge is a Chinese restaurant offering meals at less than 20 pounds . It has a low customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is an average rated and family friendly Italian coffee shop in the riverside area . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||The Eagle is a restaurant with cheap food in the riverside area , with an average customer rating . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree is an upscale restaurant that serves fine cheeses , wine , and fruit . \nname : Wildwood | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | near : Ranch||The Italian coffee shop Wildwood is located near the Ranch . Prices are cheap and it 's rated 1 out of 5 . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar , has a moderate price range . Selling English food near the city centre this has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the city center near Express by Holiday Inn . It sells Italian food for less than £ 20 . It is not family - friendly and it has low customer ratings . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a Japanese restaurant with a low customer rating . It has an average price and is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Poorly recommended Fitzbillies is a family friendly coffee shop serving moderately priced fast food , it is located on the outskirts of the city centre . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a French restaurant close to All Bar One . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||With a 1 out of 5 rating , near Clare Hall in Riverside , Clowns coffee shop serve Italian food \nname : The Vaults | Type : restaurant | food : Chinese||The Vaults is a Chinese restaurant . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a kid friendly river side Italian coffee shop near Burger King named The Eagle with a 3 out of 5 rating and a moderate price rating . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a English restaurant that is kid friendly and located near Crowne Plaza Hotel . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is 1 out of 5 . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a lovely Japanese restaurant called The Waterman . It is family friendly , has a cheap price range , is located near the riverside , and has a star rating . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||In Riverside , near the Rainbow Vegetarian Café , there is a well - priced pub called The Golden Palace . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is based in the riverside area and serves fast food . It is family friendly . It prices are low and it has a low star rating . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is high . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi pub serves Chinese food , but has a poor rating . Though is child friendly . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a riverside Chinese restaurant near the Yippee Noodle Bar . It costs less than 20 pounds but has a low customer rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||There is a family restaurant The Twenty Two located on the riverside near The Rice Boat . It has poor ratings however . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies it is a moderate price range coffee shop . It is located in the city centre . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub serving Indian food . The Olive Grove is family friendly situated within the City Centre and it 's price range is less than £ 20 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop is rated five stars and is located near to Clare Hall . \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||The Wildwood pub is a great cheap place to take your family out to dinner . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||On the north end by the river , visit The Waterman for cheese , fruit , and wine at a reasonable price . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Located near the Café Rouge , The Golden Curry is a highly rated , 5 out of 5 , English restaurant along the riverside . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix restaurant has a low customer rating in the more than £ 30 price range . It offers French food an is located in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : more than £ 30 | family friendly : yes||Loch Fyne a child friendly restaurant serving Chinese food priced over 30 . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||In riverside near the Express by Holiday Inn is an Italian restaurant called The Rice Boat . Not only is it kid friendly , it has also received a high customer rating . Price range is £ 20 - 25 . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a pub located at the riverside that serves English food and a kid friendly place . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : cheap | near : Café Brazil||Near Café Brazil , is a cheap Japanese pub named The Cambridge Blue . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||Browns Cambridge is cheaply priced and are rated 1 out of 5 . They serve English food . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||The Fast food pub , Zizzi is child friendly with a groundbreaking customer rating of 1 out of 5 \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||An Italian coffee shop located in the city centre near Burger King , The Eagle is adult only with a high price range and an average rating \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : riverside||The Waterman pub serves Chinese food in the riverside area with an average customer rating . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop near The Bakers . It is children friendly with a 1 out of 5 rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is an expensive , family friendly coffee shop near Café Sicilia . It is rated five stars \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||If your in The Bakers try the French children 's specials starting at 30 at The Golden Curry \nname : Cotto | food : English | customer rating : low | family friendly : yes | near : Ranch||Near Ranch , family friendly Cotto serves English food , and is low rated . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||If you are looking for a place to eat , go to The Wrestlers . It serves Japanese food and its customer rating is 5 out of 5 . The price range is 30 pounds , but it is not children friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||1 out of 5 customers recommend a moderate - priced coffee shop named The Golden Palace providing Italian food , it is located by the riverside . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is a Chinese restaurant That has a customer rating of 5 out of 5 And it 's not family friendly \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Indian restaurant with a high customer rating sited near a river side which is child friendly . The Golden Curry is near Café Rouge . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter a family Friendly coffee shop serving Italian food at less than £ 20 near Café Sicilia has a low customer Rating \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat has a high customer rating . It is located near the Rainbow Vegetarian Café , and has a slightly above average price range above the £ 30 mark . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately - priced Indian restaurant near Express by Holiday Inn in the riverside area . They have a customer rating of 3 out of 5 and are not kid - friendly . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is the Strada it has a customer Rating of 5 out of 5 the price Range is cheap and it serves Japanese food \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly Japanese restaurant offering food for less than £ 20 . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Situated in riverside The Olive Grove restaurant is kid friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is average . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an English restaurant in the riverside are near the Yippee Noodle Bar with a moderate price range and low customer rating . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is an inexpensive adult French restaurant that has received poor customer ratings . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is an average rated pub that serves Italian food and is children Friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||For some cheap food in riverside , head to Fitzbillies . Fitzbillies provides you fast food in a coffee shop setting . It 's not family - friendly , but don 't let that stop you . It has a 5 out of 5 rating by customers . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||One cheap restaurant that serves English food is The Dumpling Tree . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a moderately priced , moderately rated , adult Italian restaurant . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a restaurant with average customer rating . It is family friendly . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a city centre Chinese which is family friendly . It does have a low rating though . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||In the riverside area is a restaurant called The Olive Grove . It 's a family friendly pub with a price range less than £ 20 . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is an expensive coffee shop with high customer satisfaction . It is located in riverside , near Café Brazil . \nname : The Twenty Two | food : English | family friendly : no||There is place that serves English food called The Twenty Two , but it is not family - friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||There is a non family - friendly Italian restaurant named The Olive Grove located in the center of the city with a price range of less than 20 euros . \nname : The Mill | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside||The Mill is a local pub that has Indian food on the menu ranging from 20 - 25 per dish located in the riverside area \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||Wildwood is a pub in a good location with good food . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub by the riverside . It serves French food at below average prices . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||In the riverside area there is a French restaurant called The Twenty Two which is a kid friendly restaurant . \nname : Cotto | food : Indian | near : Café Rouge||Cotto is Indian and is near Café Rouge . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : riverside | near : Clare Hall||Clowns near Clare Hall is a coffee shop which does French food . It 's by the riverside and has an average customer rating . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : no||Alimentum serves English food in the city centre . The price range is less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Chinese Food is served at Loch Fyne , a family friendly restaurant . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves low priced sausage and eggs located near Rainbow Vegetarian Café . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is a family - friendly server of cheap Italian food located in the city centre . It has an average customer rating \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : no | near : The Portland Arms||If you are looking for Italian food , then you can try the The Cricketers coffee shop , located near The Portland Arms . It is not family - friendly and has a customer rating of average . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly fast food restaurant rated 5 out of 5 and located near Café Rouge in the city centre . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a nice coffee shop where there are 5 star hamburgers at middle - priced . It is located in the Ranch \nname : Loch Fyne | food : Chinese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is an average rated Chinese restaurant . It is located in the riverside area , near The Rice Boat . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto serves Indian food near the Ranch with a high customer rating and children friendly \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||The Midsummer House serves English food . This establishment is located near Café Rouge with a high customer rating of 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a moderately priced Italian coffee shop , it is NOT A kid friendly place that earned a 1 star out of 5 . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no||French food is served at The Olive Grove . This is a pub found in the riverside area . You can expect to pay more that £ 30 for a meal and children are not welcome . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||A coffee shop in Riverside called The Golden Palace serves Indian food and provides moderate pricing but has only a 1 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : no | near : The Portland Arms||There is a coffee shop near The Portland Arms that serves Indian food , The Cricketers . It is not family friendly and has an average customer rating . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||There is an inexpensive pub located outside the city centre called The Mill . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||In the riverside area there is an average Japanese food serving pub called The Waterman . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns is a mid - price ranged place near Café Sicilia not suitable families . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : yes||Alimentum is a kid friendly French restaurant . Their prices are moderate and they are located in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||For a low priced breakfast try The Dumpling Tree . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Low - cost , Italian food can be found at The Wrestlers . This family - friendly restaurant receives a 1 out of 5 stars from customers . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides cheap Chinese food which is located in the riverside , by the Express by Holiday Inn . It isn 't family friendly but has a customer rating of 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop with a moderate price range in riverside . It 's not kid friendly with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||There is Japanese restaurant called The Golden Curry that is family friendly and has average ratings .. \nname : Loch Fyne | Type : restaurant | food : Fast food | price : high | family friendly : yes||An expensive fast food restaurant that is family friendly is Loch Fyne . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an expensive , one star Italian restaurant . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Eat at The Eagle , with moderately priced fast food that isn 't kind friendly . Customer rating 1 out of 5 near Burger King at Riverside area . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a pub in riverside near the Rainbow Vegetarian Café . It 's average price range is more than £ 30 . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||Travellers Rest Beefeater is not a family restaurant but the prices are less than £ 20 \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is where you can eat the best English Food with all you family , a really good choice in the riverside \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is an adult establishment serving Italian food . Prices are on the high side and customer ratings are a low 1 out of 5 . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a mid range priced family friendly full service restaurant that is just south of city center . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a French restaurant . It is near All Bar One . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||The Giraffe is a children friendly pub . The Giraffe serves French food and is located in the Riverside area . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum serves highly recommended mid - range English food , sited in Luton near Yippee Noodle Bar . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is located within walking distance to Café Rouge . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant near Rainbow Vegetarian Café . It has a high customer rating and a family friendly environment . The average price ranged is 20 - 25 European dollars . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers is a fast food restaurant which is near All Bar One . \nname : Bibimbap House | food : Fast food | price : high | area : city centre | near : Clare Hall||A high price Fast food restaurant in the city centre near Clare Hall is Bibimbap House . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||For the price of between £ 20 to £ 25 you can enjoy French cuisine at Bibimbap House located in the riverside area and close to Clare Hall . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||If you are looking for a family - friendly French coffee shop in the city centre you should try The Eagle . located near to Burger King . Prices are reasonable but ratings are low . \nname : Loch Fyne | food : Italian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is located in the city center near The Rice Boat . They serve Italian and have an average rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi , a Japanese coffee shop , is a highly rated family - friendly venue near the city centre . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is an average priced restaurant near Café Adriatic in the city centre . It has good reviews overall . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : no | near : The Portland Arms||A restaurant that is located in the center of the city near The Portland Arms is The Punter . It is not kid friendly and is highly priced . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no||Located in the city centre , The Olive Grove is a pub specializing in fast food and moderate prices . It is not kid friendly . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly Chinese restaurant called The Waterman located near Crowne Plaza Hotel . \nname : The Punter | food : Indian | price : less than £ 20||The Punter is an Indian restaurant in the below - average price range . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub serving French Food near Café Brazil . Prices are typically under £ 20.00 . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle is an Italian joint with a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is an average Japanese restaurant in the city centre that is family - friendly . \nname : The Punter | food : Fast food | price : moderate||The Punter is a moderately priced fast food restaurant . \nname : Bibimbap House | food : French | price : cheap | area : riverside | near : Clare Hall||Bibimbap House serves cheap French food and is located in Clare Hall in Riverside . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||If you 're looking for an expensive Italian restaurant , check out Browns Cambridge . Rated low . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A children friendly coffee shop near Raja Indian Cuisine named The Wrestlers is located in riverside and is Italian food for more than £ 30 . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers offers Japanese food , at a low price with a high rating . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is riverside pub with a family friendly atmosphere and and fast food . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is near The Portland Arms . This Italian coffee shop is not family - friendly and is highly rated . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is an Indian restaurant with a customer rating of 1 out of 5 . It is located riverside and is kid friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||Bring your family to the Japanese coffee shop Cocum . Prices are expensive and it is rated 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a high priced coffee shop serving Indian food in the city centre near Raja Indian Cuisine , not family friendly . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry is family friendly and rated 3 out of 5 . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat has a price range of more than £ 30 . With a low customer rating , it is near the Rainbow Vegetarian Café . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : average||With an average customer rating and a cheap price range , Browns Cambridge serves Indian food . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||Near the Ranch is an average rated pub , family friendly and called The Cricketers \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a family friendly pub offering Japanese food . It has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||In the city centre , near to Burger King , is the highly rated coffee shop called The Eagle . It is not child friendly and is in the price bracket of £ 30 or more . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : city centre||A low priced Japanese pub , The Mill is located in the city center \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||With a 1 out of 5 rating , The Golden Curry on Riverside near Café Rouge serves Indian cuisine . It is also a kid friendly restaurant . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||Loch Fyne is an inexpensive , adult only spaghetti restaurant . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub offering sushi , and is suitable for families . It also has a five star rating . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The 5 star rated restaurant The Phoenix offers sushi . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop that serves Italian food . It is located near the Crowne Plaza Hotel in the Riverside area . The customer rating is average . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||If you are looking for a family friendly environment but seeking good food then The Golden Curry must be visited . With a family friendly atmosphere near Café Rouge and a customer rating of 5 out of 5 , the restaurant is along the riverside and serves Italian food . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||A coffee shop called Cocum has a high customer rating . It serves Japanese food with a price range of £ 20 - 25 , it isn 't kids friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||At Riverside near Crowne Plaza Hotel , Taste of Cambridge is a kid friendly Indian coffee shop . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree coffee shop offers a family friendly atmosphere on the riverside near Café Sicilia . It has high prices . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Near The Six Bells there is a family friendly place The Golden Curry . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a Japanese pub with a customer rating of 5 out of 5 . It is in the riverside area . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Zizzi coffee shop is located in the city centre . It is not child friendly and has a low customer rating . Prices range more than £ 30 . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Browns Cambridge is near the city centre and is a mid - priced 1 star restaurant . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||the Loch Fyne serves Japanese food near The Rice Boat with a rating of 3 out of 5 \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a highly rated Indian restaurant , serving a menu that is mid priced . This venue is situated near Express by Holiday Inn and is family friendly . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||This Fast food pub called Wildwood 5 out of 5 rating with cheap prices \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge is a moderately priced restaurant with a rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||On the riverside you can find an expensive pub called The Olive Grove . However it is child friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||There is an expensive , average rating , non children - friendly English food serving restaurant located near the Express by Holiday Inn , in Riverside , called The Rice Boat . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is an average English restaurant that is by the river . It is cheap and not family - friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||If you and your family are looking for French food , Loch Fyne is a kid friendly restaurant . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no||Aromi is Indian coffee shop . No family friendly and rating is average . It is located in the city centre . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Midsummer House offers expensive English food located in Café Rouge . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The cheap restaurant in the riverside area near the coffee shop , Café Brazil , is called , The Vaults . It has an average customer rating \nname : The Vaults | food : English | price : moderate | family friendly : no||It is a no kid restaurant , however , The Vaults , and English food restaurant is a moderate price . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a cheap Japanese coffee shop in the riverside area which is not family - friendly called Fitzbillies . It has a 5 out of 5 rating . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||There is a cheap Italian place near All Bar One that has an average rating and is named Midsummer House . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers , a takeaway is cheap and not family - friendly . Customers have rated it low . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : no||In city centre the restaurant Alimentum is located , they offer French food at a moderate price . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : city centre||Clowns is a pub offering alcohol at prices higher than £ 30 . Customer ratings are low . It is located in the city center . \nname : Strada | Type : pub | food : French | customer rating : high | near : Yippee Noodle Bar||Strada is a pub located near Yippee Noodle Bar serving fantastic French Food . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : average | near : All Bar One||The Midsummer House is an average Chinese restaurant near All Bar One with cheap food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers fast food Café is located in city centre near Raja Indian Cuisine with a moderate price range and is kids friendly . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells English food and is located in the riverside are near Express by Holiday Inn . Highly rated by customers , with no kids allowed and an average meal cost of £ 20 - 25 . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a pub located in the riverside area . It has a low customer rating , but is children - friendly . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a low priced establishment serving British food . It is located near The Bakers and is not family friendly . \nname : Bibimbap House | food : Chinese | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is a restaurant providing Chinese food at a moderate rate . It is located in city center near Clare Hall \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is located near the Rainbow Vegetarian Café . It is an expensive family friendly restaurant in the high price range with excellent customer reviews . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||Aromi is a kid - friendly , fast food coffee shop in Riverside with a high customer rating . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a fast - food restaurant near The Rice Boat , north of the City centre and near the river . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults pub , near Café Adriatic is an expensive , three star pub . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre , near to Express by Holiday Inn is located The Rice Boat that offers Japanese food with a high price range , there is no children area and it has a customer rating 3 out of 5 . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||Found in the riverside area , The Waterman pub serves low - rated French foods . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant providing French food near All Bar One riverside area and the price range £ 20 - 25 . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||Near Café Rouge is an English restaurant called The Golden Curry . It is family - friendly . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a children friendly Japanese place with a customer rating of 3 out of 5 . It is near Café Rouge by the riverside . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||A low rated fast food . restaurant on the riverside is The Waterman pub \nname : The Twenty Two | food : Indian | area : riverside | family friendly : no||The Twenty Two is a restaurant serving Indian food . It is located by the riverside , and is not family friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is near The Sorrento , north of the city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Moderately priced Cocum is a Japanese coffee shop , not recommended for kids . It has a customer rating 3 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside||By the riverside , Indian food at the cost of £ 20 - 25 is served in the pub named The Mill . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly coffee shop , that sells fast food , near Crown Plaza Hotel by the riverside called Browns Cambridge and it has low customer rating . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A mid - priced , kid friendly restaurant is Travellers Rest Beefeater . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum has an average rating from customers . Located on the riverside near the Yippee Noodle Bar it serves French food within the under £ 20 price range . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a children friendly coffee shop with excellent customer rating , serves Japanese food at high price . It is located near Café Sicilia . \nname : Bibimbap House | food : Italian | price : moderate | area : city centre | near : Clare Hall||In the city centre near Clare Hall is an Italian restaurant called Bibimbap House . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||The Dumpling Tree is a restaurant that serves British food and is cheap . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is an Italian restaurant in Riverside located near The Rice Boat . \nname : The Mill | Type : pub | food : Indian | price : high | area : city centre||The Mill is a pub that provides Indian food in the high price range . It is located in the city centre . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two , located on the riverside , is a kids friendly Fast food restaurant . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Riverside restaurant Blue Spice offers cheap Italian food . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||There is a Japanese restaurant called Alimentum that is children friendly and located in Riverside . The general price range is more than £ 30 . \nname : Zizzi | Type : restaurant | price : moderate | area : city centre||Zizzi is a restaurant in the city centre featuring moderate pricing . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : riverside||The Waterman is a pub providing Indian food It is located in the riverside . Its customer rating is low . \nname : Bibimbap House | food : Japanese | price : high | area : riverside | near : Clare Hall||Bibimbap House is near Clare Hall in the riverside area . It offers Japanese food in the high price range . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms . Cotto is low - cost and has five out of five stars . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||A child friendly restaurant is Travellers Rest Beefeater . It is in the high price range . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant . Located near Café Rouge . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The up market French coffee shop , The Wrestlers , is located at the riverside near to the Raja Indian Cuisine restaurant \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub located near Ranch with a family friendly atmosphere . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly coffee shop serving French food . It has an average customer rating and is near The Portland Arms . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop located in City Centre . Not Family friendly and has a 1 out of 5 customer rating . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood has a low customer rating , high prices and is located near Ranch . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||For gourmet food , head to Browns Cambridge . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||For highly rated Indian food at a higher price point in a child friendly central venue , try The Waterman . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a child friendly Fast food restaurant with a price range of £ 20 - 25 . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre serves English good at a price range of £ 20 - 25 . It has a high customer rating and is not kid friendly . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a mid - price restaurant by the river . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an inexpensive fast food restaurant located in the city centre near the Yippee Noodle Bar . It has a customer rating of 5 out of 5 . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum offers Italian food ranging more than £ 30 , highly rated by customers . Located in riverside near Yippee Noodle Bar . \nname : The Cambridge Blue | Type : pub | food : Indian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub that provides Indian food in the less than £ 20 price range . It is near Café Brazil . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a coffee shop on Riverside . It has low customer ratings , but it is affordable and family - friendly . \nname : Clowns | Type : restaurant | near : The Portland Arms||Clowns is a restaurant by The Portland Arms . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kids friendly coffee shop with moderate price \nname : The Punter | food : French | price : more than £ 30||There is French food priced above £ 30 at The Punter \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the price range of more than £ 30 . Located in Riverside near Express by Holiday Inn , it has a children friendly atmosphere and high customer rating . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a superior restaurant for the family located by the river \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||Serving Japanese food , The Phoenix restaurant , with a medium customer rating , is located in the riverside area . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : no | near : Café Rouge||In the City Centre , near the Café Rouge , is a French food selling pub called The Plough . It is not children friendly and has a price range of more than £ 30 . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||The pub , Clowns , is in the riverside area and has a customer rating of 3 out of 5 with prices in the moderate range . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a cheap Italian coffee shop near Café Sicilia that has a customer rating of 5 out of 5 but is not family - friendly . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Indian cuisine by The Rice Boat is rated highly but the price is more than average . It is child friendly and it near Express by Holiday Inn in the city centre . \nname : The Mill | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is an coffee shop that serves Indian food , with a price range of more than £ 30 . It is located on the riverside near The Sorrento . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge serves reasonably priced English food . It has been given an average rating by its customers . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The Loch Fyne restaurant serves English food and is family friendly . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||On the riverside The Phoenix serves cheap Japanese food , but has a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a high priced coffee shop . It is located in The Portland Arms . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a Japanese coffee shop with a customer rating of 3 out of 5 . It is kids friendly and the price range is around £ 20 - 25 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||The Dumpling Tree is a low price restaurant that serves English food . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||In the city centre Blue Spice is the lowest customer Rated restaurant in the price range of less than £ 20 \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Next to Burger King , The Eagle a family friendly three star French restaurant \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is low . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||A family friendly coffee shop near Café Sicilia in the riverside area is The Dumpling Tree , with a cheap price range . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is cheap with a 5 out of 5 customer rating . \nname : Green Man | Type : pub | food : Japanese | area : city centre | near : Café Rouge||The city centre is home to a Japanese pub called Green Man , it 's near Café Rouge . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee Shop . It is located in City center near The Portland Arms . Have 3 out of 5 costumer rating and family - friendly . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub that serves Indian food at a high price . The Plough is child friendly and it is near Café Rouge \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a child friendly restaurant which provides high quality food at a high price . Fitzbilies is located near the Express by Holiday Inn and is rated 1 out of 5 by customers . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge is a cheap venue with an average customer rating . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that offers Chinese food . It has a customer rating of 5 out of 5 and is considered family Friendly . \nname : The Rice Boat | food : Italian | area : riverside||Italian food is offered at The Rice Boat by the riverside . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high - priced , family friendly restaurant located near the Rainbow Vegetarian Café . They received five stars . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Wildwood , a coffee shop near Ranch , serves Italian food in the cheap price Range and has an average customer Rating . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||There is a pub The Waterman that serves breakfast . The quality is questionable . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||A mid priced restaurant located next to All Bar One is Midsummer House . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a child friendly establishment that provides Italian food . The price range is more than £ 30 and the customer rating is high . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Yes , there is a children - friendly Fast food place near Ranch , it 's called Cotto and has an average customer rating . \nname : Cotto | food : Japanese | near : Café Rouge||Japanese venue named Cotto is near Café Rouge . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge serving family friendly Italian food at approximately £ 20 per person \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Highly rated French coffee shop near Burger King is The Eagle . It is not kids friendly . The price ranges from £ 20 - 25 . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry is located near to The Six Bells . They do not presently cater for families with small children . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that serves Indian food . They have a moderate price range , are kid friendly , and are located in the city centre . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||Located in the city centre near Café Rouge is The Golden Curry which serves Japanese food . It is not family - friendly and has an average customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A kid friendly coffee shop near the Crowne Plaza Hotel and the riverside that also serves Italian food and is called Taste of Cambridge . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is an Italian coffee shop that is kid friendly and has a high customer rating and a price range of £ 20 - 25 located in the city centre \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the city centre are a Chinese restaurant called Alimentum with a average rating for the high price of the food \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is near Rainbow Vegetarian Café , with a low customer rating and a high price range . It is Japanese and not family - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle ; a coffee Shop with an Indian style , is situated by the riverside , next to Burger King . It is ideal for couples and has a high price range . It has a customer rating of 1 out of 5 . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a cheap riverside family friendly restaurant that has 1 star . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : no||Although not kid friendly , Loch Fyne is a moderately priced fast food restaurant . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is high priced , kid friendly restaurant . It is located near The Rice Boat in the Riverside area . Customers give it a 3 out of 5 . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House , a Japanese restaurant near Clare Hall in the riverside area , has a price range of more than £ 30 \nname : Aromi | Type : restaurant | food : Japanese | area : city centre||A Japanese restaurant in the city centre is called Aromi . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | near : The Sorrento||In the centre near The Sorrento is The Mill , a coffee shop serving Italian food , generally costing less than twenty pounds . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Down on the riverside for between 20 and 25 Euros , a great Italian coffee shop with an excellent kid friendly atmosphere which lends to its high customer rating is Fitzbillies . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a family friendly establishment , located near The Six Bells . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop , with a low prices , they serve fast food , it is located by the riverside near a Burger King . It has a low customer rating . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : average||Wildwood is a pub that sells expensive Chinese food . It has an average rating . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||At a price range of £ 20 - 25 The Punter is kids friendly and is in the riverside area near The Portland Arms . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a low priced restaurant with high customer rating . It is located in the Yippee Noodle Bar . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||For less than £ 20 , you can go to The Golden Curry near The Bakers , where its family friendly and they sell English food . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Midsummer House is next to Café Rouge and is a one star rated restaurant . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city centre , near Burger King , is an affordable Italian coffee shop named The Eagle . It has a moderate customer rating , and is not kid friendly . \nname : The Eagle | food : English | customer rating : 3 out of 5||The Eagle serves English food and has an average customer Rating . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : yes||Located in city centre , The Olive Grove is a kid friendly , moderately priced pub . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix serves high - priced Italian food . It is by the riverside and has a high customer rating . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a fast food restaurant with reasonable prices . It is family - friendly and located in the city centre , with a customer rating of low . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub in the city centre that does Fast food , it is in the moderate price range and is not child friendly \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a regular priced restaurant by the river side near the Express by Holiday Inn \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop rated 1 out of 5 , kid friendly , moderate prices near Avalon in riverside . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : no | near : Crowne Plaza Hotel||For French food and coffee , you can go to Taste of Cambridge . In the city centre , near Crowne Plaza Hotel . Please note it is not family - friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||high priced average rating family - friendly The Rice Boat serves English food in the city centre near Express by Holiday Inn \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry offers Italian food . It has a customer rating of 5 out of 5 and is family friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||Pub The Cambridge Blue near Café Brazil with Italian food and very cheap prices \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||Passing the Crowne Plaza Hotel is The Waterman , a nice place to go out with friends . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly coffee shop that provides Indian food with prices that range around £ 20 - 25 . Located in the riverside near Raja Indian Cuisine . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : yes||Alimentum is a French restaurant that is kid friendly and moderately priced . It is located in the city centre . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Overpriced and unsatisfactory is Clowns . You can find it at the riverside ....... Or not ........ \nname : Bibimbap House | food : Japanese | price : cheap | area : riverside | near : Clare Hall||near Clare Hall is a cheap Japanese restaurant called Bibimbap House in the riverside area . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||There is an expensive family - friendly restaurant with a low customer rating named The Wrestlers . \nname : Green Man | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is an Italian restaurant near All Bar One by the riverside which is kids friendly with a price range of £ 20 - 25 . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||There is a place near The Rice Boat in city centre called The Twenty Two . It is child friendly but has low customer reviews and is more than 30 pounds . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : yes||One family friendly fast food venue in the riverside area is The Rice Boat . It has a low customer rating . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant with a high customer rating . Meals can cost over 30 pounds . It is located in the city centre near the Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop serves cheap and average - rated Indian dishes in a family - friendly environment . It is located in the center of town near Burger King . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is an Indian restaurant with prices less than £ 20 , located in the riverside area near All Bar One , that is not family friendly . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The moderate pried English food in The Phoenix got a customer rating of 3 out of 5 . It is located in Riverside \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace French coffee shop near the city centre which have a customer rating of 5 out 5 has a price range of more than £ 30 \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree coffee shop near Café Sicilia is in the riverside area , kid friendly , and prices are moderate . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||There is a restaurant Italian with moderate price range in the city centre on the side Yippee Noodle Bar , yes its Alimentum with rank 3 out of 5 \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat It provides fast foods at a reduced price and is located near the river , there Express by Holiday Inn \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Yes , there is a Fast food called Strada in front of Rainbow Vegetarian Café , it 's cheap and has a qualification of 5 out of 5 . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a highly rated , kid friendly restaurant . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||Low priced Italian restaurant The Vaults is not family - friendly . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly restaurant with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an English restaurant , located by the riverside near to Café Rouge . It is not family - friendly and has an average customer rating . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||located in the city centre but does not cater for children The Blue Spice is cheap in price with customer reviews of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop - family - friendly serving French food in the city centre , near the Crowne Plaza Hotel \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : no||Though not family - friendly , cheap Italian restaurant The Wrestlers has gained an average customer rating . \nname : The Punter | food : Fast food | price : high||The Punter is a high price range Fast food \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is French , family friendly , highly rated , and has cheap prices near Rainbow Vegetarian Café . \nname : The Waterman | price : more than £ 30 | family friendly : yes||Child friendly and 30 pounds or more , The Waterman is a place to visit . \nname : The Punter | food : Fast food | price : more than £ 30||A fast food place with a price range of more than £ 30 is The Punter . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||There is an English restaurant in riverside called Bibimbap House . It is near The Rice Boat . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||In the riverside area there is a pub , The Twenty Two near Café Sicilia with 5 out of 5 customer ratings . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is family friendly and serve sushi . They are rated 1 out of 5 . They are located near Café Rouge in the city centre . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||There is a Chinese restaurant called Alimentum located in the city centre near Yippee Noodle Bar with 3 out of 5 customer rating and it 's price range is moderate . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . It is near Burger King . Its customer rating is average . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||French food at Strada , near Rainbow Vegetarian Café with 3 out of 5 as costumer rating . No kids friendly and price range between £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms in the riverside area that serves moderately priced Indian food . It has received customer ratings of 3 out of 5 . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum , located in the city centre near Yippee Noodle Bar , offers moderate pricing and Japanese cuisine . It has a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||The Cambridge Blue is a restaurant serving English food . It has a high customer rating . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Riverside restaurant offering Chinese food located near Café Rouge . The name is The Golden Curry \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne offers food and drink . It has good ratings and is located near The Rice Boat . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||In the riverside area serving Fast food is The Mill which is a moderately priced pub \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : city centre||An average customer rating Fast food located in city Centre named The Phoenix which has cheap price range . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||For fast food there is The Phoenix located in the riverside area . The restaurant has low customer ratings . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||A cheap , family friendly restaurant called The Plough is located close to The Bakers . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the city centre near the Express by Holiday Inn is a family friendly restaurant named The Rice Boat . It is low priced with a 3 out of 5 rating . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||In the city centre area near Café Rouge is a fast food premises called The Golden Curry . It is family - friendly and has a customer rating of average . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Try Browns Cambridge , it is a family friendly coffee shop with Italian food . It is located near the Crown Plaza Hotel and has a low customer rating . \nname : The Twenty Two | food : Japanese | family friendly : no||There is a sushi restaurant called The Twenty Two that does not allow families with small children . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes||Aromi has three popular child friendly Sicilian coffee shops in the city centre . Go to Peas Hill for Aromi 's ice cream . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a coffee shop on the riverside called Fitzbillies that you can bring your kids to and still only spend a moderate amount of money on the Japanese food . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada , located near Rainbow Vegetarian Café , is an Indian restaurant with a high customer rating . It has a price range of 20 - 25 pounds , and is not kid friendly . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||In Riverside , The Golden Curry , near Café Rouge , is family friendly and serves English food and has an average customer rating . \nname : Loch Fyne | food : French | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||French food Loch Fyne with a customer Rating of 1 out of 5 is available at riverside near The Rice Boat . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a high rated children friendly coffee shop serving Italian food at prices starting with 30 £ , near Café Sicilia . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix Indian restaurant is priced higher than £ 30 , with a high customer Rating located in the city centre . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto a coffee shop serving Japanese cuisine in the price range of L20 - 25 and is located near The Portland Arms . Customers have rated the establishment 3 out of 5 . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||There 's a family friendly Italian food restaurant in the riverside called Green Man in the cheap price range near All Bar One \nname : The Punter | food : French | price : £ 20 - 25||The Punter is a French food venue . The food prices are in the range of £ 20 - 25 . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : city centre||Located in the city centre , The Phoenix is an average rated Italian restaurant . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter is a Japanese coffee shop . They received a 5 out of 5 customer rating but are fairly expensive . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree is a mid priced restaurant off the main road serving different food items and drink . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : yes||With the average cost about 30 pounds , you wont have to spend much to enjoy a whole , family - friendly environment at Green Man . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||A family friendly place serving Chinese food is called The Waterman . It is located in the city center \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||There is a family - friendly English restaurant near the Crowne Plaza Hotel called The Waterman . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||Wildwood is a cheap pub in the heart of the city . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King in Riverside is a coffee shop that offers Indian food called The Eagle . It has a very low customer rating and has average prices . It is family friendly . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe is a pub serving Chinese food . you can enjoy your meal with your kids on the riverside . Yes , yes it is kids friendly . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne , rated 1 out of 5 is an Italian food serving venue , located near The Rice Boat in riverside . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low - priced coffee shop in Café Sicilia that delivers take - away . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is high . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a high priced Chinese food restaurant near the city center with a high rating . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is family - Friendly , cheap and provides fast food . It has a low customer rating . It is located riverside . \nname : The Twenty Two | food : English | family friendly : no||A British food restaurant that is not family friendly is called The Twenty Two . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a moderate price range Italian coffee shop near Burger King in riverside . It is not kid friendly and has a customer rating 3 out of 5 . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a child friendly , Japanese , riverside restaurant situated near The Sorrento . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a kid - friendly coffee shop offering Italian food located near Raja Indian Cuisine in the riverside area . It is called The Wrestlers , and is moderately priced . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Blue Spice is a highly rated establishment located in the city centre . The price range is average at £ 20 - 25 . Blue Spice is not kids friendly . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Chinese restaurant , located near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn there is an Italian restaurant with a high customer rating that is not kids friendly . It 's called The Rice Boat and is in the price range of £ 20 - 25 . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive sushi restaurant near the Yippee Noodle Bar . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a Japanese place in riverside that is not kid friendly . They are priced high and have great customer ratings . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a high priced low customer rating restaurant i the city centre . It is family - friendly and they serve Japanese food . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is near Café Sicilia with Italian food ranging from £ 20 - 25 and has a high customer rating but is not kid friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||Offering Japanese food is coffee shop Wildwood . It has a customer rating of 3 out of 5 . It is located near Ranch and has a high price range . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Italian food in the moderate price range , is kids friendly , located near Express by Holiday Inn in the city centre and has a customer rating of 1 out of 5 . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults has a high customer rating and prices higher than £ 30 . It 's a pub near Café Adriatic . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a restaurant with moderate prices situated near The Six Bells . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace , a 3 star coffee shop that offers affordable French cuisine with beautiful riverside scenery . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an Italian coffee shop near Burger King in riverside with a customer rating of 1 out of 5 \nname : Blue Spice | price : high | area : riverside||Blue Spice has a high price range and is by the riverside \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is high . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||Kid friendly restaurant The Golden Curry has a customer rating 1 out of 5 and is fast food \nname : Cotto | food : Italian | near : Café Rouge||The Italian place near Café Rouge is called Cotto . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a restaurant located nearby that provides a low priced fast food option , suitable for families as well . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family - friendly fast food restaurant in the medium price range . It is located near Rainbow Vegetarian Café has a customer rating of five out of five . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter coffee shop is a low priced family restaurant near Café Sicilia . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a kid - friendly pub serving English food called The Dumpling Tree . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||If its fast food you want , near The Six Bells pub is a fast food place , Called Fitzbillies where you can eat for less than £ 20 . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||There is a cheap UK breakfast restaurant Bibimbap House located in City Centre that is also next to Clare Hall . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a highly rated French coffee shop that offers a family friendly atmosphere . They are located near the Crowne Plaza Hotel in Riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a low - cost , one - star coffee shop located near The Portland Arms . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Fitzbillies is an upscale restaurant that does mostly wine pairings and is located next to The Six Bells . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a child friendly coffee shop serving Italian food in the £ 20 to £ 25 price range with a high customer rating \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||For cheap fast food , The Wrestlers coffee shop is in the city centre near Raja Indian Cuisine . It is not family friendly . \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is an average and cheap restaurant near the Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a cheap pub near Café Adriatic with a 5 out of 5 rating . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||There is a children friendly 5 star restaurant along the riverside called The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||If you have children , bring them over to Loch Fyne 's English restaurant . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : no||with an average customer review The Rice Boat close to the city centre serves Fast food but does not cater for children . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||The Wildwood coffee shop near Ranch sells high priced Japanese food and has a customer rating of 3 out of 5 . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults , located in the riverside area near Café Brazil , is a moderately priced coffee shop with a three out of five customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||Serving Italian food , The Olive Grove , a pub type eatery is located in the riverside area . They are family - friendly and have a price range of less than L20 . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||If you are looking for a restaurant in the riverside area , try Zizzi . Prices start at £ 30 . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a pricey Indian restaurant near the Rainbow Vegetarian Café . It has great customer ratings and is a very child friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a Japanese coffee shop with a low customer rating . Not recommended for families , and close to The Portland Arms . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Near the Yippee Noodle Bar , you 'll find Strada ; a Japanese pub with a customer rating of 5 out of 5 . \nname : The Punter | food : Italian | price : high||The Punter has Italian style cuisine . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Blue Spice is a kids friendly restaurant in the city centre , with an average customer rating of three out of five . It offers food at an affordable rate of £ 20 - £ 25 . \nname : The Vaults | Type : restaurant | food : Japanese||There is Japanese food at The Vaults restaurant . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||With a customer rating of 3 out of 5 , Strada , located near Yippee Noodle Bar , is a Japanese pub . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||Taste of Cambridge is a restaurant with an average customer rating and a high price range . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Family friendly English restaurant , Loch Fyne with cheap menu prices . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a French , kids Friendly pub located near Café Rouge with prices from £ 20- £ 25 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an Indian coffee shop with a high customer rating in Riverside near Crowne Plaza Hotel . It is also family friendly \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 3 out of 5||Browns Cambridge offers Chinese food at a moderate price range . It is customer rating are 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a high rated , children friendly coffee shop serving Fast food near Café Sicilia in the price range of more than £ 30 . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : riverside||The Mill is a pub in the riverside area . It serves Chinese in a moderate price range . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||An Italian coffee shop , Aromi , is located by the riverside . It received average ratings and is kid friendly . \nname : The Rice Boat | food : English | area : riverside||An English restaurant called The Rice Boat can be found near the river . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace , a coffee shop located in the city centre is high priced , but have Indian food and hold a 1 out of 5 customer rating . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge is a new restaurant with prices ranging up to £ 20 . Although not highly rated at the moment , it is becoming increasingly popular . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree is a Japanese restaurant with a price range of less then £ 20 . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix serves English food and is in the city centre . It moderate priced and has a rating of 1 out of 5 \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : £ 20 - 25||With average Cambridge prices , comes the Chinese restaurant called The Dumpling Tree . \nname : The Waterman | price : less than £ 20 | family friendly : no||Although non - family - friendly , The Waterman has a price range of less than £ 20 . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House is the place for great food and great atmosphere , located in Clare Hall . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Italian restaurant , The Dumpling Tree , has a price range of less than £ 20 . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||The Cambridge Blue , rated 3 out of 5 , is a fast food restaurant . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop serves French food for less than £ 20 . It is located riverside near The Sorrento . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||High priced family - friendly coffee shop , The Eagle has a 3 out of 5 customer rating and offers a Japanese menu . It is located at the city centre near the Burger King . \nname : Fitzbillies | food : Italian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is an Italian restaurant located near The Six Bells , with a price range of £ 20 - 25 . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||There is a kid friendly pub located near the Café Rouge . The Plough provides £ 20- £ 25 Chinese cuisine . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix serves high priced fast food with a customer rating of 1 out of 5 . It is centrally located . \nname : Strada | Type : pub | food : Indian | customer rating : average | near : Yippee Noodle Bar||Strada is a pub serving Italian food near Yippee Noodle Bar , it has an average rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : riverside||The Waterman pub features Indian style food on the riverside . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||There is an expensive French coffee shop near Ranch which has a customer rating of 3 out of 5 . It is called Wildwood . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a family friendly coffee shop , however it is expensive and only rated one star \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||Looking for a family friendly and low price range restaurant , go to The Plough that 's down by The Bakers . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter near Café Sicilia is a children friendly , fast food coffee shop in the high price range with a 1 out of 5 customer rating . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is an Indian restaurant that usually costs more than £ 30 . It has a high customer rating , is by the riverside , and is not children friendly . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults provides fast food . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||For 3 out of five star dining , leave your children at home and enjoy this French themed coffee shop with expensive taste . Cocum is a experience you wont soon forget . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that sells Indian food for cheap . It is located near Café Sicilia , is rated 5 out of 5 , but is not family friendly . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||In riverside a cheap pub with an average rating is Clowns . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a family oriented Italian restaurant that is moderately priced in the riverside area with a customer rating 1 out of 5 . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is a pub in the Riverside area that serves Japanese food for less than £ 20 . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a child - friendly coffee shop near The Bakers . It has a high customer rating , but the price range is more than £ 30 . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a children friendly Japanese pub on the riverside . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a Japanese restaurant , which is child friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The coffee shop The Eagle is located near Burger King in riverside , it has a moderate price range and a kid friendly atmosphere with Italian food and a rating of 3 out of 5 . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a cheap priced Japanese restaurant in the City Centre with a customer rating of 5 out of 5 . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||A cheap restaurant would be Strada , it is near the Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop and fast food restaurant . It is near Café Sicilia . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is a restaurant providing take - away deliveries in the medium price range . It 's located besides Burger King has goddess rating and is for the whole family \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an affordable Italian restaurant and coffee shop , near The Portland Arms . It has a three - star rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a fast food coffee shop with customer rating of 1 out of 5 and are child friendly . It is located at the riverside near Crowne Plaza Hotel . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a 3 star , family friendly Café located close to Café Rouge providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||There is a 5 star rated fast food restaurant in the city centre called The Eagle \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a Japanese coffee shop located in the city centre . It has an average price rating with a customer rating 3 out of 5 . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant in the high price range . It 's rated 5 stars , eat in only . It is located east of Yippee Noodle Bar . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a French style coffee shop , rated 5 stars with a expensive kid friendly atmosphere . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Kid - friendly , Chinese food place , The Rice Boat , is located near the Express by Holiday Inn at the City Centre , with a reasonable price range of £ 20 - 25 , with a high customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a moderately priced , kid friendly coffee shop in the city centre area near Burger King that has a customer rating of 1 out of 5 named The Eagle . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers high - priced French food that has received a 5 out of 5 rating . It is located in riverside near the Express by Holiday Inn . This is not a children friendly establishment . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum is a fast food restaurant in the city centre near Yippee Noodle Bar with a high price range and a customer rating of 1 out of 5 . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Chinese restaurant located in the riverside area which is near The Rice Boat and it has 5 out of 5 customer rating . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||You can enjoy your time at Fitzbillies with other adults as children are not allowed . The prices are in the mid range , and Fitzbillies is located next to Express by Holiday Inn . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : city centre||Blue Spice is a Japanese restaurant in the center of the city that has a price range of less than 20 pounds . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada serves Indian food . It is moderately priced , not kid friendly and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||For a child free riverside coffee shop that serves French style food at a high price and a customer rating of 3 out of 5 then visit The Eagle which is located near to Burger King \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub near Café Rouge that provides Fast food with a price range of less than £ 20 . It is not family - friendly . \nname : The Olive Grove | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes||If you 're looking for a cheap and family friendly pub near riverside , there 's The Olive Grove . It serves French food . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Fast food can be found in the city centre at low rated Wildwood pub . Its prices are reasonable . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a nice family atmosphere and service fast food , has a nice clentele and moderate prices \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||Taste of Cambridge is a 3 out of 5 customer rated restaurant with a moderate price range . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough has cheap food in a family friendly environment . It is located near Café Rouge . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn and serving the riverside area with a 5 out of 5 customer rating is a fast food establishment called The Rice Boat . It has cheap prices and is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a coffee shop called Fitzbillies located in the city centre , they serve Italian food and have a 3 out of 5 rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly coffee shop , Aromi , that serves French food , which is located in the center of the city . It has low customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside area you will find Fitzbillies , a moderately priced kids friendly Italian coffee shop with a customer rating of 3 out of 5 . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||There 's a fast food place by the riverside called The Phoenix . People really like it . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||The Japanese restaurant , The Cambridge Blue has an average rating . \nname : Midsummer House | food : Chinese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a Chinese venue near Café Rouge with average customer rating . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a family friendly business in riverside featuring Indian cuisine . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Near Avalon , Blue Spice coffee shop in riverside . Yes , kid friendly . Price range : Moderate . Customer Rating : 3 of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves moderately priced Indian food and is kid friendly . They are located in the riverside area near Raja Indian Cuisine . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : £ 20 - 25||The Dumpling Tree is an Indian restaurant with a price range between £ 20 - 25 . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice is a cheap coffee shop located near Avalon . It is not a family friendly coffee shop . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub located in The Portland Arms that is not for family 's but great for people looking for a good time . It is sit in and serves great food \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||With an average customer rating , and less than £ 20 , Wildwood offers French pub entries . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||Alimentum is a family - friendly venue located by the river , serving cheap English food . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||kids - friendly pub The Plough serves English food at a moderate price located near Café Rouge . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne , near The Rice Boat in riverside , is average with English food . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge is a average rated , high priced English food . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||There is a coffee shop called The Eagle near the Burger King in city centre . They serve French food in a non - child friendly environment at prices more than £ 30 and have earned a low customer rating . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||Traditional British food is available at the Browns Cambridge restaurant . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults is a pub near Café Adriatic with high customer ratings and food in the £ 20 - 25 price range . \nname : The Mill | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is located near The Sorrento , in Riverside . Its a coffee shop that serves fast food . Their average cost is more than £ 30 . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers , a new bar with the aim to entertain , this focuses on Chinese food , has a price range of £ 20 - 25 consumers tend to rate quite high , it does not have childhood environment . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is Italian restaurant . It is located in riverside area near The Sorrento . Browns Cambridge is Kids Friendly \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||Browns Cambridge is a cheap fast food restaurant with a low customer rating . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is placed near Crowne Plaza Hotel . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||A pub named Giraffe that is not family - friendly is located in the riverside area . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman in the Crown Plaza Hotel serves fast and kid friendly food . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside you will find The Rice Boat which is a low rated Japanese restaurant located near Express by Holiday Inn with prices more than £ 30 . It is not kid friendly . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : city centre||Come to city centre for English food at The Phoenix with a customer rating of 5 out of 5 . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||With an average customer rating , Blue Spice has a high price range and is child friendly . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers serves Japanese food for less than £ 20 in a family friendly environment with an average customer rating . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a 1 out of 5 rated child friendly English restaurant in the city center . It is in the moderate price range . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Offering Japanese food , The Rice Boat is adult only with cheap prices located near the Express by Holiday Inn in the city centre with average ratings . \nname : The Plough | Type : pub | food : Indian | price : more than £ 30 | family friendly : yes | near : Café Rouge||If you are near Café Rouge and you want a pub with Indian food , then The Plough is a match . It is a place suitable for children and its price range is around £ 30 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop that provides Indian food with low customer rating . It is located in the riverside . It is family friendly . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||There is an average Italian restaurant near the riverside called The Rice Boat . It is family friendly . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Cotto is an average Italian near Ranch that is child friendly . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Average rated French dining in riverside near Café Rouge is The Golden Curry , offering French food and is family friendly . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||There is a children friendly place called The Waterman that has French food near Crowne Plaza Hotel . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a restaurant that is kids friendly and price range is £ 20- £ 25 near Express by Holiday Inn and customer rating 3 out of 5 \nname : Bibimbap House | food : Japanese | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is Japanese food restaurant with moderate price range . It is located in city centre near Clare Hall . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Clowns is an expensive pub with a 1 out of 5 customer rating in the riverside area . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House sells French cuisine between £ 20- £ 25 and is found by the riverside by Clare Hall . \nname : The Eagle | food : English | customer rating : low||The Eagle restaurant serves English food and has a low customer rating . \nname : The Vaults | food : Indian | price : moderate | family friendly : yes||The Vaults is an Indian restaurant . They are kid friendly and are moderately priced . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry is a dine in restaurant that accommodates families but has terrible reviews . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : no||Children not allowed . Chinese food and pub , Zizzi . Average customer rating . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter , a cheap but highly rated coffee shop is not family - friendly , It offers Italian food and is located near Café Sicilia . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly establishment offering Italian food with a price range above £ 30 and a high customer rating . It is situated in riverside near the Express by Holiday Inn . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||Near Café Brazil is a French pub named The Cambridge Blue with prices more than £ 30 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a kids - friendly pub that serves French food called The Dumpling Tree . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a company that makes French food . It is family friendly and located in the riverside area . \nname : The Golden Curry | food : English | price : moderate | family friendly : no | near : The Bakers||The Golden Curry has English food with moderate price range . It is located near The Bakers and is not kids - friendly . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a restaurant providing sushi in the mid price range near All Bar One . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||Giraffe is an adult only burger pub located right off the river and north of City centre . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||Located near The Bakers , Kid - friendly restaurant , The Golden Curry , offers Japanese cuisine with a moderate price range . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Strada is a top rated pub serving English food near Yippee Noodle Bar . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||Near Café Adriatic is a pub named The Vaults which has a moderate price range but only rates 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop . It is located in riverside area near Raja Indian Cuisine . Start from low price and friend - family too . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is family friendly with a 5 out of 5 customer rating . It is in the low price range and located near Express by Holiday Inn . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located next to the Rainbow Vegetarian Café is the Strada restaurant which serves hamburgers . It is low priced , low quality , and family friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no||Cocum is an Italian coffee shop . The ratings are average and the price is high . They are not child - friendly . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a five star coffee shop that is suitable for big families . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is an expensive restaurant that serves American food . It is located by the Café Rouge . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||For some mid - range priced food try Strada , situated near Rainbow Vegetarian Café . Some family friendly eating . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||The Alimentum can be found to the north of the city center . It is mid price range and family friendly . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||There is a Japanese place called Green Man near All Bar One riverside that is child friendly and costs more than 30 pounds . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough , an Italian pub , is child friendly , in the high price range and located near Café Rouge . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||With a one out of five customer rating , Clowns is an Italian coffee shop located near Clare Hall in the riverside area . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : more than £ 30||The Dumpling Tree is an upscale Italian restaurant . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies offers low cost drinks and light meal options for families . It is located on the outskirts of town . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : city centre||Chinese restaurant The Phoenix is located in the city centre area and is in the high price range . It has an average customer rating . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||There is a restaurant called The Waterman providing Indian food located in the city centre with low customer rating and it 's price range is less than £ 20 and also it is family friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum serves Italian food and is located in Riverside , near the Yippee Noodle Bar . The customer rating is low and food is priced less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers in the riverside area , located near Raja Indian Cuisine , offers Italian food in a coffee shop atmosphere . This establishment is child friendly but has a high price range . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in the riverside area near Burger King . Also serving French food at low prices , customers rate it 5 out of 5 but it isn 't family - friendly . \nname : The Phoenix | food : Fast food | customer rating : high | area : riverside||The Phoenix is an excellently rated fast food spot , near the riverside . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly , fast - food restaurant located in the City centre area near the Express by Holiday Inn . Customers give this restaurant a 1 out of 5 star review . \nname : Zizzi | Type : pub | food : Japanese | customer rating : high | family friendly : yes||I went to a local pub called Zizzi . The customer ratings are high so I decided to try it out , it 's kid friendly which is a big plus for me and its Japanese . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter serves coffee and Indian food . The Punter is family friendly and serves food for a cheap price , they have average customer service , and they are located near Café Sicilia . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||A customer rating of 3 out of 5 stars can be considers pretty high for a coffee shop . There can be shops located in riverside near Café Brazil with the name , The Vaults . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is highly rated and family friendly . They are located near Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||At riverside near Crowne Plaza Hotel , there is a coffee shop that provides Italian food with a customer rating 5 out of 5 called Browns Cambridge . It is not family - friendly . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Phoenix provides Japanese food . It is located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge a family - friendly coffee shop located in city centre , near the Crowne Plaza Hotel . Food served is French with average customer ratings . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a restaurant providing moderately priced Chinese food . It is located in the city centre and has a 3 out of 5 star rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||The sushi restaurant Loch Fyne offers cheap sushi at a low price point suitable for families . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||There is a family - friendly French restaurant with a price range for less than £ 20 and is located in the city centre near the All Bar One , it is called Green Man . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop that provides high - priced coffee drinks and is opened to all age groups . It is located near Avalon \nname : The Eagle | food : Italian | customer rating : 1 out of 5||Italian place The Eagle has a rating of 1 out of 5 \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults is a Japanese restaurant that is family friendly . The price range is less than £ 20 . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||For 5 out of 5 rated French cuisine , visit Browns Cambridge . Price range is more than £ 30 . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Children are welcomed at Blue Spice located along the river . Meals start at £ 30 . Other customers rate Blue Spice low . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||English pub Green Man is found near Café Rouge in riverside . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a cheap coffee shop serving fast food in the city centre . It is located near The Portland Arms and has an average customer rating . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Customers rate the Midsummer House French restaurant , near All Bar One , a 1 out of 5 . It is moderately priced . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is a fast food venue in the city centre near Clare Hall which has an average price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop , located in the area of riverside , near The Burger King . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||With a nice location , close to the city centre , the River and also the Yippee Noodle Bar , Alimentum is a great option for English breakfast . This pub is poorly - rated yet inexpensive . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a sushi food restaurant . We don 't accept your family . We have an start of experience and we are placed close to Café Rouge . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||The Mill is an eat type pub in Riverside area that has French food and a moderate price range . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : city centre||The Mill is a Japanese pub located in the city centre with a price range that is more than £ 30 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : high | area : riverside||The Waterman is a pub by the riverside that serves Japanese food . The customer rating is very high . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Fitzbillies offers cheap French - style coffee in the city centre - but don 't bring the family . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman is an Italian restaurant in the high price range that is not child friendly . They have an average rating and are located near riverside . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Kid friendly Chinese dining at The Golden Curry . It only sports a 1 out of 5 star rating . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a family friendly Japanese restaurant . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre near Burger King there 's a cheap fast food coffee shop named The Eagle . It is family - friendly with a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : no||The fast food pub Zizzi is not family - friendly and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The coffee shop Fitzbillies has a high customer rating selling English food with a price range of more than 30 pounds and yes it is child friendly . It is located near the riverside . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||The Loch Fyne restaurants serves up hearty Italian classics and plenty of family friendly kid - approved dishes . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry serves Chinese food , is kid friendly , and was given a three out of five rating . \nname : Green Man | food : English | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man is located in the city centre , near to All Bar One . It serves English food and is child - friendly but it has a high price range . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||Although not family - friendly , The Golden Curry is a low priced English restaurant located near The Bakers . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||There is a coffee shop on the river near Clare Hall called Clowns . \nname : Bibimbap House | food : Chinese | price : high | area : riverside | near : Clare Hall||Bibimbap House serves Chinese food in riverside near the Clare Hall for high prices . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman which serves French food has a high customer rating . It has a price range of £ 20 - 25 . is in the riverside area and is not kids friendly . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||The Twenty Two is a non family friendly sushi restaurant in City centre . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter near Café Sicilia is a coffee shop providing Japanese food with a price range less than £ 20 . They are not family - friendly and rated low . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Fast food coffee shop located near Raja Indian Cuisine in riverside . It is not kid friendly and has a moderate price range . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge It is a coffee shop , rated 3 stars , It is for the whole family , It is near Crowne Plaza Hotel \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge provides Chinese food It is located in the riverside . It is near The Sorrento . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a high priced family friendly restaurant located in City centre . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the moderate price range . It is near The Bakers . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a highly rated coffee shop featuring fast eats . The price ranges from about 30 pounds and it 's atmosphere is not child friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||The Clowns French coffee shop in the riverside area , near Clare Hall , has a low customer rating . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a pub with a one star rating and expensive pricing . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||yes it loves to have children . serving Japanese food , called The Eagle , although has a low customer review , situated close to Burger King near the city centre is a coffee shop but quite expensive at more than £ 30, \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : yes||There is an moderate family Italian restaurant Alimentum in the center of the city . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian food restaurant in the city centre near Express by Holiday Inn . Although food is less than £ 20 , it is both not family friendly and gets a low rating from its customers . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : no | near : Café Rouge||There is an English pub near Café Rouge called The Plough . They are not kid friendly and their price range is moderate . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , The Rice Boat has average customer ratings and higher than average prices . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : no||In riverside , Alimentum serves fast food at a high price range , and are not kid friendly . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a fast food restaurant near The Six Bells with a price range of £ 20 - 25 . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Near the Café Adriatic in the riverside area is the Travellers Rest Beefeater . The customer rating is 1 out of and the price range is moderate . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers provides Chinese food for less than £ 20 , is low rated and is not family friendly . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The restaurant Strada has a customer rating of 3 out of 5 that is expensive and is not children friendly . It is near Rainbow Vegetarian Café that serves French food . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is located near Burger King in the city centre and serves French food in the £ 20 - £ 25 price range but is not child friendly \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub where meals are less than £ 20 , They serve French food . It is near Café Rouge . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe coffee shop is a family friendly eatery , near The Bakers with a low customer rating , and a price range of below £ 20 . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry is a not family - friendly near The Six Bells . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : no | near : All Bar One||There is a moderately priced Chinese food restaurant near All Bar One , it is called Green Man . It is not a kid friendly environment . The restaurant is situated near All Bar One in the riverside area . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||Located in the city centre near Avalon , is moderately priced Blue Spice . family - friendly with a 3 out of 5 customer rating . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a kid friendly fast food place . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Wildwood is a 3 stars pub with low - priced that provides delicious meat . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese food at a moderate price . It is not kids friendly that 's why it has only a rating of 3 out of 5 . It is located in the centre of the city near Express by Holiday Inn . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly rated Indian restaurant along the riverside , near Express by Holiday Inn . It costs more than £ 30 and is child friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : city centre||The Waterman is a pub serving Japanese food which has been given an average customer rating . It is located in the city centre . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an English food restaurant located near the Express by Holiday Inn . It is family friendly . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Riverside pub The Waterman provides English food in a child - friendly venue . Its prices are high , but its customer ratings are average . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||There is an Indian food restaurant with average service called The Waterman in riverside . Pricing is high and children are not permitted . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a high priced restaurant located near Rainbow Vegetarian Café . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Indian food in the high price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in riverside near Crowne Plaza Hotel is Taste of Cambridge . It is a family friendly coffee shop offering Italian food . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree , an Italian pub , is not family friendly and is located near The Portland Arms . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant that serves Indian . It is kid friendly . It is near All Bar One , in the riverside area . Its price range is moderate . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a 1 star restaurant near the river . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : city centre||Blue Spice is a cheap Japanese restaurant located in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is located near Crowne Plaza Hotel . It is a kids friendly , Fast food coffee shop in riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies in the riverside area is recommended by 3 out of 5 customers to be the best coffee shop serving Indian food . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms . It is kids friendly but only has 1 out of 5 customer rating for the Italian food . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||High price range , The Twenty Two in the riverside area near The Rice Boat with a customer rating of 1 out of 5 very children friendly \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderate priced restaurant that serves French food . It is located near Clare Hall in riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle Italian coffee shop near Burger King in the Riverside area is kid friendly and has a high customer rating . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Yes the Green Man in the riverside area near All Bar One is kids friendly , has a moderate price range and is kids friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||There is a Japanese coffee shop named Cocum . Its price range is high but its rating is low . Its not children friendly . \nname : Strada | Type : pub | food : Chinese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub that offers Chinese food , near Yippee Noodle Bar . Its customer rating 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||The Mill is a fast food coffee shop and has a cheap price range , located in riverside by ' The Sorrento ' . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a kid friendly pub that provides fast food which is in the area of riverside . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a great Italian restaurant that is also on the cheaper side . The bill will be less than £ 20 for the bill , and yes it is family - friendly . If you are interested , it is located near All Bar One in city centre . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||With a customer rating of average , Strada is family friendly and has a cheap price range . \nname : The Plough | Type : pub | food : Indian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub near Café Rouge that serves Indian food for low prices . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no||If you want a Japanese style coffee shop in the city centre , try Aromi . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||The Eagle can be found in the riverside area , has a 1 out of 5 customer rating and is moderately priced . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Next to Yippee Noodle Bar is a five star , low price fast food restaurant called Alimentum . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a pasta and coffee shop fit for the whole family . It has a five star rating . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||A kid friendly pub is The Cricketers which is near the Ranch . It is kid friendly and has a 1 out of 5 rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves moderately priced Italian food . It is kid friendly , located on the riverside near Burger King . It received a 1 out of 5 customer rating . \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||Alimentum is a Fast food place near the river where anyone can eat for cheap . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a child appropriate pub located by the water that serves English meals . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||For more than £ 30 you can try Japanese pub food at The Cambridge Blue , near Café Brazil . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||In riverside near The Rice Boat is a family friendly place called The Twenty Two is costs less than £ 20 and has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop which serves Indian food at a price range of over £ 30 . It has a high customer rating . It is located near the city center and is children friendly . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop with an expensive menu . It is near The Sorrento . \nname : The Twenty Two | food : Italian | family friendly : no||The Twenty Two sells Italian food and is not family friendly . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||Clowns is a pub in the riverside area with a high price range and a 3 out of 5 customer rating . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry has a price Range of Less than £ 20 of Italian , but its not a family - friendly restaurant which is located near The Bakers \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace has a price range of more than 30 and is a French coffee shop . It is located in the city center with a rating of 5 out of 5 \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a mid priced Japanese restaurant in the riverside area near Yippee Noodle Bar with a low customer rating . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a high rated fast food average priced restaurant The Rice Boat that is not child friendly . It is located in the city centre near Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub serving Italian food located on the riverside . Expensive \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||You can get cheap English food at The Rice Boat in riverside . It 's near Express by Holiday Inn and is not family - friendly , but had a 5 out of 5 rating . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||There is a fast food style coffee shop called The Cricketers located near The Portland Arms . While it isn 't the family - friendly type of coffee shop it has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||The children friendly , Browns Cambridge , near The Sorrento in Riverside , serves Italian food . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , The Rice Boat is moderately priced , but received 1 out of 5 stars . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : yes||Pub style English food is served at The Olive Grove . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : average||Browns Cambridge is a restaurant that sells cheap Chinese food , and has an average customer rating . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is a high - price restaurant in Riverside , serving English food in a kid - friendly environment . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a Japanese restaurant in Riverside with a moderate price range and a customer rating of 1 out of 5 named The Phoenix . \nname : The Eagle | food : Indian | customer rating : average||The Eagle is a restaurant that serves Indian food with average service \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a inexpensive Indian coffee shop called The Wrestlers , near Raja Indian Cuisine in the city centre its not for all the family . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Japanese food in the moderate price range . It is located in the city centre . It is kids friendly and has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||The latest low customer ratings come from a family - friendly Italian restaurant near the river called The Rice Boat . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The venue Blue Spice at the riverside , is not kids friendly and has a moderate price range . Customers rate it 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in the riverside area . It has a high customer rating and the price range is £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a child friendly , French coffee shop . It is near Crowne Plaza Hotel and has a 5 out of 5 customer rating . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies has Fast food that is fairly cheap . It is located near The Six Bells . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||Loch Fyne is a moderately priced and kid friendly English restaurant . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : no||The Golden Curry serves Indian food ; they have an average customer rating but are not family friendly . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove in riverside has kids Friendly area and moderate price range . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly French coffee shop . It is rated 3 out of 5 and is by the Crowne Plaza Hotel in the riverside area . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||There is a cheap fast food joint Green Man located by All Bar One at riverside that welcomes the family . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a highly rated restaurant that is kid friendly . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Kid friendly , The Wrestlers , serves Chinese food for a moderate price and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies , located north of the city centre , is a family friendly coffee and sushi shop that is mid - priced and has 5 stars . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French restaurant located in riverside near Express by Holiday Inn . It has a rating of 3 out of 5 . Prices ranges from 20 - 25 and no kids allowed . \nname : Blue Spice | food : Indian | price : cheap | area : riverside||Blue Spice is a restaurant in the riverside area that sells cheaply priced Indian food . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is an adult only restaurant serving moderately priced Indian food near the Rainbow Vegetarian Café . It has received a 3 out of 5 customer rating . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||The Phoenix is an affordable hamburger restaurant outside of the city . It has a three star rating . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is located near the All Bar One . It is an inexpensive restaurant specializing in fast food options . This establishment is not open to children . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in the riverside area that sells French cuisine in the £ 20 or less range , it doesn 't have good customer ratings . You 'll find it near the Burger King but it isn 't family - friendly . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Near The Rice boat is Japanese restaurant called Loch Fyne . Riverside area is beautifully place where we can find Loch Fyne just near The Rice Boat . Rating by customers Loch Fyne is 5 out of 5 . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||For a kid friendly and affordable fastfood restaurant in the Riverside area , head to Alimentum . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian cuisine but the price range is a bit steep . Though the customer rating is high and is kid friendly . It is in the city centre near Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||The Wildwood Pub is a low - priced restaurant that serves Japanese food . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||There 's a restaurant by the riverside called The Mill . It 's near The Rice Boat . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a French food . It 's children friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Chinese food and is by Café Rouge . It has an average customer rating and is also not family friendly . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum is located on the riverside , providing a kid friendly English food with moderate prices . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a child friendly restaurant with a 5 out of 5 rating . They have French food and their prices are higher than 30 . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is located near Café Sicilia is a French restaurant and coffee shop with a customer rating of 5 out of 5 , a cheap price range and is family - friendly . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers in the city centre . It has a high price range and is family friendly but has only received bad reviews . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers is a family friendly restaurant specializing in burgers , fries and sodas . It is family friendly and is higher priced than average . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto provides fast food with a customer rating of 1 out of 5 but is children friendly and found near Ranch . \nname : The Eagle | food : Chinese | customer rating : 5 out of 5||The Eagle has a customer rating of 5 out of 5 for their Chinese food . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman isn 't a family - friendly place with a price range less than £ 20 serving Italian Food at Riverside . Low Customer Rating . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman is an Indian restaurant that serves high priced food , has an average customer rating . It is in riverside and is not child friendly . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge has reasonable prices and high ratings . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub near The Portland Arms . It serves Italian food . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Indian food this close to The Portland Arms in a kid friendly environment The Cricketers coffee shop has a 3 out of 5 rating \nname : The Mill | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | near : The Sorrento||Check out The Mill , on the riverside , near The Sorrento , to enjoy some Italian cuisine in a coffee shop atmosphere , for only 20 - 25 dollars . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a kids - friendly restaurant . It is located near The Bakers and is moderately priced . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||In the city centre there is The Waterman . Its customers have rated it 5 out of 5 stars . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A restaurant called Aromi is located near a riverside , it 's kids friendly and the rating is 3 out of 5 \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||There is a Chinese called The Golden Curry which is kid friendly and has an ok rating . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman , a non child friendly English restaurant in the riverside area , has a price range of 20 - 25 and a high customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is in the city centre near The Sorrento . It is a coffee shop that serves fast food for under £ 20 . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||Wildwood is a pub that serves sushi . They are high priced and are rated 3 out of 5 . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||With low ratings , The Wrestlers is a quiet , French restaurant offering meals less than twenty pounds . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is family friendly , the price range is less than £ 20 and the customers have rated it low , it is in Riverside . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The Waterman , located miles above the city centre , serves British breakfast and is rated three stars , \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : no||The Olive Grove is a high price range establishment located in the riverside area . Not a kid friendly place . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||Bibimbap House if located near Clare Hall and is Italian . It has a cheap price range and is near riverside . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : cheap | family friendly : yes||Loch Fyne is a family friendly restaurant with a cheap rice range and Fast food . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||Browns Cambridge serves high quality sushi for a cheap meal \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : city centre||With an average customer rating , The Phoenix serves cheap fast - food in the city centre area . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is cheap and family friendly . Located in the riverside area , it has an average customer rating . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||The Portland Arms is near the Cotto shop , offering a great breakfast . Has great ratings , \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Italian riverside named Bibimbap House price range is high near Clare Hall \nname : Bibimbap House | food : Indian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House provides Indian food in the moderate price range . It is located in the riverside . It is near Clare Hall . \nname : Clowns | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall in riverside is a coffee shop called Clowns that has a customer rating of 1 out of 5 and serves French food . \nname : Zizzi | Type : pub | food : Indian | customer rating : 3 out of 5 | family friendly : yes||Zizzi is an Indian pub . The customer rating is 3 out of 5 . It is kid friendly . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||Child - friendly Indian , The Rice Boat , has average ratings and can be found by the river . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a three star , inexpensive pub near Café Adriatic . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly pub in the Riverside area . Customers rate it as average . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a cheap Fast food restaurant in the city centre . They have an average customer rating but aren 't family - friendly . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies its a family restaurant with high prices , located near Express by Holiday Inn . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Japanese restaurant located near The Rice Boat in riverside . It has received a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||For an adult oriented Italian coffee shop , The Eagle has a low customer rating , but the price range is less than £ 20 , and is conveniently located in the city centre , near Burger King . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : more than £ 30||The Dumpling Tree is a restaurant providing Chinese food in the more than £ 30 price range . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||The Wildwood is a mid ranged pub with average customer reviews . \nname : Strada | Type : restaurant | customer rating : average||A restaurant with an average rating is the Strada . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||If you are looking to take your children to an average - priced Indian restaurant then The Golden Curry is a great option . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge a coffee shop offering Japanese food , with a customer rating of 3 out of 5 and a kid friendly environment is located near Crowne Plaza Hotel on the Riverside area of the city . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a children - friendly French pub that has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||The Dumpling Tree is an English restaurant with moderate prices . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry , located next to The Bakers , is a moderately priced family friendly fast food restaurant . \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||Alimentum serves Fast food is family Friendly and has a cheap price Range . Located in the riverside area \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum is a family friendly restaurant that sells high priced Italian food and drink next to the river . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a French house . You can find it near All Bar One . The Price range of food there is high . Many people rated it 4 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||Taste of Cambridge is a restaurant with a high price range and an average customer rating . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a five star , family friendly , Italian restaurant . The prices tend to be higher . It is very close to the Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||A moderately priced pub , named The Vaults , is located near Café Adriatic . It has a customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||There is a family friendly pub called The Olive Grove in the riverside area that offers French food . It generally costs less than £ 20 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||I heard of this place called Zizzi , it is a family friendly coffee shop , It has a rating of three stars although it is quite expensive . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue pub a low - priced pub inside of Café Brazil . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Japanese food from Browns Cambridge Costs £ 20 - 25 . I give it a rating of 3 out of 5 . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low placed restaurant located near All Bar One . \nname : The Phoenix | food : French | customer rating : low | area : city centre||The Phoenix in the city center with a low customer rating provides French food . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a Fast food coffee shop rated by 5 out of 5 customers as family friendly . It is near The Portland Arms . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced Japanese restaurant . It is a family - friendly establishment located at the city centre . More precisely , it is located near the Express by Holiday Inn . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Fitzbillies is an English food serving place with a price range of less than £ 20 . It is located near The Six Bells . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||There is a low rated Italian restaurant called Browns Cambridge with prices less than 20 pounds . \nname : Midsummer House | food : Chinese | customer rating : 1 out of 5 | near : Café Rouge||The Midsummer House provides it 's customers with Chinese dishes and has been given a 1 out of 5 customer rating , located near Café Rouge . \nname : Blue Spice | food : Chinese | price : high | area : city centre||Blue Spice is a high price Chinese restaurant located in the centre of the city . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a family - friendly higher price point coffee shop located in City centre . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : city centre||The Phoenix , in the city centre area , serves cheap fast - food . It receives an average customer rating . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fancy Japanese food with riverside views then head down to the high rated restaurant The Waterman for a kids - friendly meal for £ 20- £ 25 . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Indian food for less than £ 20 . It is located in the city centre near the Express by Holiday Inn but has a low customer rating . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a low cost restaurant with medium ratings by the Yippee Noodle Bar \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a poorly rated coffee shop near Burger King . It is moderately expensive , family - friendly , and serves sushi . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a cheap coffee shop near of The Portland Arms . Its name is Cotto . \nname : Aromi | Type : restaurant | food : Indian | area : riverside||Aromi is a riverside restaurant with an Indian menu . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop in the higher price range with a customer rating of 1 out of 5 located near The Bakers , and it is also child friendly . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||There is a moderately priced restaurant that serves fast food in the city centre called Browns Cambridge . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||For a family - Friendly pub with price less than £ 20 , come to the riverside area and check out The Olive Grove \nname : The Olive Grove | Type : pub | food : French | price : high | area : riverside | family friendly : yes||The Olive Grove is a high price range French pub in riverside that is child friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||Not family - friendly , The Eagle is located riverside near Burger King , and has an average customer rating . Fast food with a low price range . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers Japanese coffee shop is rated 3 out of 5 by customers . Child friendly - yes . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||Customers give 5 out of 5 stars to The Twenty Two pub near Café Sicilia in Riverside . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sells Chinese food in the city centre near Express by Holiday Inn . Their price range is £ 20 - 25 , and they 're kid friendly with a high customer rating . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : no | near : The Bakers||The Golden Curry serves moderately priced Italian food near The Bakers and it is not kids - friendly . \nname : The Vaults | food : Italian | price : more than £ 30 | family friendly : yes||For Italian food costing more than £ 30 come to the child friendly The Vaults \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : yes||A place with a low customer rating in the city centre is The Rice Boat . They serve Indian food and is family friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Kid friendly French restaurant named Loch Fyne . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry is a one star restaurant that is not a good family environment . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||there is a cheap restaurant The Dumpling Tree , they serve English food . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn , there is a moderately priced Indian restaurant called The Rice Boat . They 're not kid - friendly and have a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||If you are looking for a moderate price range pub The Vaults may be for you . It can be found near to the Café Adriatic and has a customer Rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is in the city centre , it serves Italian food for less than £ 20 . It is a family - friendly pub . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||Offering a price range of more than £ 30 and found in the city centre area is a restaurant called Alimentum . it is not kid friendly and serves Japanese cuisine . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||The Ranch has a family friend , French food place nearby called The Cotto , but it has low ratings . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There 's a family friendly restaurant called Strada that serves fast food . It 's rated 5 out of 5 by customers , has a cheap price range , and it 's located near the Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kid - friendly coffee shop , moderately price serving Italian fare by the riverside with a 3 out of 5 rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue near Café Brazil is a pub that serves Italian food and is priced moderately . \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||If you 're looking for low - rated Fast food for less than £ 20 , come to the Wildwood , near The Ranch . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||With a 5 out of 5 rating , The Golden Palace in riverside is a cheap French coffee shop . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||The Eagle is a good place to come and eat the best food looking the riverside more than £ 30 but a good choice \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Indian food in the riverside area . It is child friendly and located near Café Rouge . It has a customer rating of 1 our of 5 . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a customer rating of 3 out of 5 , why not try Aromis in Riverside . The whole family can enjoy the great pub menu as children are more than welcome . \nname : The Mill | Type : pub | food : Japanese | price : high | area : riverside||There is The Mill a high price Japanese pub in riverside . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||On the riverside there is a cheap family friendly coffee shop called Zizzi \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||In the city centre there is a food venue serving Italian food called The Waterman . It is more than £ 30 on average but has a high customer rating . It is not child friendly . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A high - priced 5 star family friendly restaurant located to the north of the city centre is The Waterman . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The children friendly Aromi coffee shop in the riverside area offers Fast food which has been given a rating of high by previous customers . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||There is a good quality coffee shop The Punter that offers affordable food for the family . It is located near Café Sicilia . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is Strada Sushi . It 's moderately priced and family friendly . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||The Italian pub , the Giraffe , is kid friendly . It 's located in riverside . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is an English food restaurant , which is child - friendly . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge a low coast restaurant , you find foot at less than £ 20 \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||The Midsummer House serves Italian food near All Bar One . It has high prices and an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that provides pasta in the low price range . It is near Raja Indian Cuisine . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat in the city center offers Italian food . It is family - friendly however rated low by the customers . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a Chinese food restaurant with a cheap price range , average customer ratings , not family friendly , and is located near the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Kid friendly coffee shop named Browns Cambridge is rated 3 of 5 . Browns Cambridge serves Indian food and is located near Crowne Plaza Hotel in the Riverside area . \nname : Blue Spice | food : French | price : more than £ 30 | area : city centre||Blue Spice is a French restaurant in the city centre . Their food costs over £ 30 . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Situated in the city centre is The Waterman which serves Italian food . Customer ratings are average for this cheap family - friendly establishment . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop that is family friendly with a price range of less than £ 20 , and is located near Avalon in the riverside area and has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop which serves Japanese food , it is located near The Portland Arms . It is children friendly and has a customer rating of low \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is restaurant providing French food in the family friendly environment less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop located near Burger King that serves fast food . It has a 5 out of 5 customer rating and is located in city centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Fast food near The Sorrento . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop in the city centre near The Portland Arms . It is rated 3 out of 5 and prices range £ 20 - 25 . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||You can eat Italian Pub Food by the riverside at The Waterman . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is French restaurant with no coffee shop in the city centre with 5 out of 5 rank \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers sells French food , has a 1 out of 5 customer rating and moderate price ranges . It is not kids friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a child friendly coffee shop that offers Fast food as well . However , their rating is somewhat low and their prices are somewhat high . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is an average rated restaurant located in the riverside area near Café Adriatic . Their price range is less than £ 20 . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||This eatery is not kid friendly and is called The Waterman . Here , you can have English cuisine in a restaurant located in the Riverside area , offering menu items in the moderate price range , and a customer rating of only 1 out of 5 . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix has a five star rating with a five star view of the river . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House serves Japanese food near Café Rouge with a low customer rating . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the riverside area is a family - Friendly coffee shop Zizzi which has a customer rating of 5 out of 5 and is cheap \nname : The Mill | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside||The Mill is a pub that provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , a family - friendly Italian coffee shop in the city centre near Burger King , is high priced and but has a lower customer service rating of 1 out of 5 . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies , located near The Six Bells , is a Japanese restaurant with a price range of £ 20 - 25 . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||Looking for a family friendly pub style restaurant near the riverside , check out The Olive Grove . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||The coffee shop , The Cricketers located near The Portland Arms serves Italian food and is kid friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is located near Burger King , in City Centre , It 's a family - friendly coffee shop with an average rating that serves fast food . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Located in riverside , near Clare Hall . Clowns is a coffee shop offering Fast food \nname : Midsummer House | food : Italian | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House serves Italian food , it is located near Café Rouge and 3 out of 5 customers recommend it . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is an English restaurant moderately priced near All Bar One in Riverside . They are no kid friendly . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub with fast food options . It is located near The Portland Arms . It is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly coffee shop with high customer ratings Browns Cambridge and they serve French food . It is in riverside near the Crowne Plaza Hotel . \nname : The Punter | price : moderate | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is a kids friendly place in the city centre near The Portland Arms . It has a moderate price range . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice in the area of riverside offers a low price range of less that £ 20 . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a cheap and family friendly coffee shop at riverside near Café Sicilia \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||For moderate priced Indian in the city centre , The Waterman is an adult only restaurant rated 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a low priced family coffee shop with average customer rating . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a one - star , fast food restaurant that is located near Café Rouge by the river . It does not allow families . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a non children friendly English food restaurant found in the city center in the price range of more than 30 and a high customer rating . \nname : Green Man | price : high | area : riverside | family friendly : yes||Although Green Man has higher prices , it is nearby in riverside and is child friendly . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers is a child - friendly fast food restaurant in the high price range . It has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a French food coffee shop Fitzbillies located in the city centre . It is not kids friendly and has a average customer rating . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in the river side , near Express by Holiday Inn . Price range is moderate and rating 1 out of 5 , kids Friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the high price bracket . It 's in the city centre near the Express by Holiday Inn and has an average customer rating . It 's not suitable for children . \nname : The Punter | food : Fast food | price : moderate||The Punter is a Fast food place that has a moderate price range . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||This restaurant , Travellers Rest Beefeater is moderately priced , conveniently located near the riverside and has been rated 1 out of 5 stars . Also located in the area is Café Adriatic . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||Near Café Adriatic is a pub named The Vaults . The Vault 's price range is more than £ 30 and it has a high customer rating . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Located near The Six Bells , The Golden Curry is a child friendly venue . \nname : Bibimbap House | food : Italian | price : more than £ 30 | area : riverside | near : Clare Hall||The Bibimbap House is in the 30 pound price range . It 's an Italian restaurant in the riverside area near Clare Hall . \nname : The Waterman | Type : pub | food : Indian | customer rating : high | area : riverside||The Waterman is a highly rated , Indian pub in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop is high cost and family friendly . It is located outside City centre . \nname : Midsummer House | food : Chinese | customer rating : 1 out of 5 | near : Café Rouge||There is a Chinese restaurant named Midsummer House That has a customer rating of 1 out of 5 . It is located near Café Rouge \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a high priced , French restaurant that is not family - friendly . It has an average customer rating and is located in the city center . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop . Its specialty is the Italian food . It is very prestigious and can go with the whole family . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers fast food . It has a high customer ratings . It is family - friendly . It is located near Café Rouge \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||Browns Cambridge offers great food and service at a high price point \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto coffee shop is located near The Portland Arms and is mid - priced and has 5 stars . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly , low - priced restaurant . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||There is a restaurant in the city center called The Phoenix which serves moderately priced Italian food and has a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a child friendly French coffee shop with a customer rating of 3 out of 5 . It is located near the Café Sicilia . \nname : Alimentum | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kid friendly Italian restaurant in Riverside with a price range of £ 20 - 25 . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Wildwood is inexpensive pub and offers Chinese food \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon in the riverside area . It has an average customer rating , is family friendly , and has a price range of less than £ 20 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers French food at a higher price range , located in city centre near Express by Holiday Inn \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a beautiful coffee that offers breakfast and a wide range of foods of choice is located in riverside France also have a park for children \nname : The Twenty Two | food : English | family friendly : no||The Twenty Two is not family - friendly and serves English food . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||For a moderate priced Italian food there is Fitzbillies located near The Six Bells . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : no||A place in the riverside area named Alimentum is not kids friendly but its Italian food has a moderate price range . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||By the riverside and next to The Portland Arms , The Punter is a high price range restaurant and children friendly . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is an expensive , 3 star restaurant located near the Rainbow Vegetarian Café . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a low priced , family friendly restaurant which serves fast food . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||The Twenty Two pub has a rating of 1 out of 5 and is near Café Sicilia in the riverside area . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||Wildwood is an Italian Pub with a 3 out of 5 rating in a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||A coffee shop in the riverside area is Fitzbillies . It is kid friendly and a high rating . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a highly rated Indian restaurant located near the Rainbow Vegetarian Café . It is family friendly and is more than 30 euro 's . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||The Alimentum is a poorly rated fast food restaurant near the Yippee Noodle Bar in the centre of the city . Meals cost less than 20 pounds . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop and fast food place that is not family - friendly near the Crowne Plaza Hotel in the city centre . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||Rated 5 out of 5 , Wildwood pub offers cheap Japanese food . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||Aromi is a restaurant serving Sushi and is near the river . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe can be found in riverside , and is a children friendly pub offering Italian food . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a fast food establishment on the banks of the river , which is not suitable for families with small children . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderate priced coffee shop near Café Sicilia that serves Indian food , it is not child friendly and has a customer rating of 3 out of 5 . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman serves Indian food in the high price range and is located in the city centre . Customers rate it as average and report that prices are high and it is not a child - friendly environment . \nname : The Punter | food : English | price : cheap||Go to The Punter for cheap English food . \nname : Fitzbillies | food : Fast food | price : high | near : The Six Bells||Fitzbillies is near The Six Bells and is a high price ranged fast food restaurant \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove fast food pub , located in Riverside , is inexpensive and family friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly , coffee and Indian food restaurant in Riverside . It has a rating of 3 out of 5 . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderately priced Italian located at the riverside near Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||In the city center is The Golden Palace . It is a coffee shop with Italian food . It has a moderate price range and an average customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||There is a Italian restaurant Browns Cambridge located in riverside near The Sorrento . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Italian food in the cheap price range . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a low - rated , highly priced place to eat near Rainbow Vegetarian Café . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : no | near : Café Rouge||The Plough pub serves French food , has a moderate price range , is not kid friendly and is near Café Rouge . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||For a family friends pub serving Italian food near Café Rouge , try The Plough for £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Highly rated Fitzbillies offer £ 20- £ 25 Japanese food by riverside . Also coffee shop and kids not welcome \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Go to The Golden Curry near Café Rouge in the riverside . It 's a family friendly Chinese restaurant . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Ranked high by the customers , Italian coffee shop The Punter is a kid - friendly zone located near Café Sicilia with prices ranging from £ 20 - 25 \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a 3 star English restaurant in Riverside near Café Rouge . It is kids friendly . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : no||Alimentum is a riverside Indian restaurant . It is not children friendly and is expensive . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Phoenix is rated 5 stars and offers sushi . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough , a pub style eatery near Café Rouge , serves Italian food in a kid friendly environment for moderate price ranges . \nname : The Rice Boat | food : Chinese | area : city centre||The Rice Boat provides Chinese food It is located in the city centre . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an Italian restaurant that is children friendly near The Sorrento riverside . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat in riverside has a high customer rating for it 's child friendly environment and delicious traditional English food . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is near Rainbow Vegetarian Café . We offer English food at a moderate price range . We have a customer rating of 3 out of 5 and are not kid friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||The Wildwood is a coffee shop with fast food . It is cheap and near the Ranch with a customer rating of 5 out of 5 . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man , serving Indian food , is in the low price range , is family - friendly , and is located in the city centre near All Bar One . \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||Located on the riverside , Blue Spice has a price range of £ 20 - 25 and serves fast food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine in medium price range , it is family friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||For a moderately priced fast food pub situated on the riverside that is kids - friendly then visit The Olive Grove \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately priced Fast food coffee shop that is kid friendly and received a 3 out of 5 customer rating . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||Near Café Rouge is The Plough pub . It is high priced French food , and yes kid friendly . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry is not family - friendly but is located near The Six Bells . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||At the riverside is The Waterman that serves fast food . It is kids friendly and has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced , child - friendly coffee shop that serves fast food . It received a customer rating of 1 out of 5 \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||The Wildwood is a pub serving English food in a moderate price range with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||For date night go to The Rice Boat , cheap , average rated Chinese not family friendly food near Express by Holiday Inn \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||With a price range of £ 30 upwards , the Taste of Cambridge is a restaurant with a high customer rating . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : no | near : The Bakers||The Golden Curry is a highly priced Japanese restaurant near The Bakers . It is not children friendly . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House if a restaurant for hamburgers , it 's a cheap place with only one start . We are near All Bar One . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kids friendly fast food coffee shop with a customer rating 1 out of 5 . Located near the Crown Plaza Hotel in the riverside area . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||For more than £ 30 The Golden Palace near Rainbow Vegetarian Café , at a riverside area \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||A highly rated Italian eatery is Loch Fyne . It is located in riverside near The Rice Boat . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : yes||There 's a low rating family - friendly pub in the city centre called Aromi . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a low priced pub that is family friendly located beside Café Rouge in the middle of the city . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a pub with a low customer rating located in riverside , but it is child friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||There is a pub called The Waterman serving Fast food in the riverside area with an average customer rating . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||For French food in the riverside area , Clowns is a low - rated coffee shop near Clare Hall . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Go to City Centre , for cheap food at Travellers Rest Beefeater , near Café Adriatic , rated 5 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne serves Italian food in the riverside , near The Rice Boat . Customer Rating is low \nname : The Vaults | food : French | price : high | family friendly : yes||The Vaults is a high price range , child friendly French food restaurant . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House , which serves expensive French food , received a customer rating of 3 out of 5 and is located near All Bar One . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter coffee shop offers Japanese food and has a price range of less than £ 20 . It is located near Café Sicilia and has a low customer rating . It is not family - friendly . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||There is a sushi place next to The Bakers called The Wrestlers . It is family friendly , but doesn 't have very good reviews . \nname : The Phoenix | food : English | customer rating : 3 out of 5 | area : riverside||The Phoenix , is restaurant riverside 3 out of 5 \nname : Bibimbap House | food : Fast food | price : more than £ 30 | area : riverside | near : Clare Hall||With a price of £ 30 plus serving fast food . Bibimbap House is near Clare Hall by the riverside . \nname : The Waterman | price : less than £ 20 | family friendly : yes||A family friendly venue named The Waterman has a price range of less than £ 20 per person . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a pub highly rated by customers in the riverside area . Prices range from about 20 to 25 pounds . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is not child friendly , serves Italian food and has a customer rating of 3 out of 5 . They have a moderate price range . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||Located in City Centre is The Golden Palace , an average priced Indian coffee shop . It does have a low customer rating . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves cheap British food that has an average rating of 5 stars . Located in the City centre near Yippee Noodle Bar . \nname : The Eagle | food : Japanese | customer rating : 1 out of 5||The Eagle receives a 1 out of 5 for his Japanese food . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : city centre||High priced French restaurant called The Phoenix in the city centre received a 3 out of 5 customer rating . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Fast food restaurant . It has a high price range . It is in the city center near Express by Holiday Inn . It has a 1 out of 5 rating . It is children friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||Near The Portland Arms is the Japanese coffee shop , The Cricketers . It has a low customer rating and is not family - friendly . \nname : Wildwood | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | near : Ranch||The Indian coffee shop Wildwood is near Ranch and has a low customer rating , it serves food for less than £ 20 . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers offers moderately priced Italian food . With a customer rating of 1 out of 5 , there are kid friendly . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is family friendly with Indian food and a high customer rating , price range is L30 . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter has Fast food for less than £ 20 . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : average | near : Ranch||Wildwood is a cheap coffee shop serving Indian food near Ranch with an average customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||There is a French coffee shop named Aromi in the riverside area . It is children friendly and has a low customer rating . \nname : The Mill | Type : pub | food : Chinese | price : more than £ 30 | area : riverside||The Mill is a Chinese pub in the riverside area ranging more than £ 30 . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a low rated family friendly Japanese coffee shop with a price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap , non family - friendly , coffee shop located in the city centre near Burger King . They serve Italian and have an average customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a cheap Italian coffee shop near The Portland Arms in the city centre with an average customer rating . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub serves French food . This family friendly venue can be found near The Portland Arms . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a sushi pub that is near the city centre . It is near Café Brazil . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a Japanese restaurant with a price range of £ 20 - 25 . It has a customer rating of three stars and is located near All Bar One . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Located riverside , Chinese food venue , Alimentum is near Yippee Noodle Bar . The restaurant has a moderate price range and customers have rated the restaurant 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||With a 1 out of 5 customer rating , The Golden Curry is a venue that is kid - friendly and provides Fast food . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter serves fast food for less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||Near The Portland Arms is a French coffee shop called The Cricketers . They have a low customer rating and are not family - friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Along the riverside near The Portland Arms is an Italian coffee shop named Cotto . It has a high price range and an average customer rating . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||For those seeking a kid friendly Japanese restaurant near the riverside , check out The Rice Boat . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||Located near St. John 's College is The Phoenix , an inexpensive restaurant featuring Asian cuisine . The Phoenix is located on the river and offers sushi and more . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is great bar fast food , family atmosphere , warm clentele located near The Portland Arms \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant near the Express by Holiday Inn . It has average prices , a high customer rating and is unsuitable for children . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap and family friendly coffee shop in the riverside area near Avalon , with a customer rating of 5 out of 5 . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||If you and your children are hungry for French food and your near The Bakers try a meal special starting at 30 at The Golden Curry \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||By the riverside near Crown Plaza Hotel there is a family friendly coffee shop that has fast food called Taste of Cambridge . \nname : The Rice Boat | food : Japanese | area : city centre||Japanese cuisine is offered at The Rice Boat located in the city centre . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is an Italian coffee shop with a 5 out of 5 rating . They are located near The Portland Arms . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two , near The Rice Boat , is a low cost , average restaurant in riverside . It is not family - friendly . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Browns Cambridge is a child friendly eatery serving Italian good . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||A kids friendly French food outlet called The Wrestlers has a customer rating of 3 out of five is priced at £ 20 - 25 \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a riverside pub with average rating with cheap prices . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Midsummer House serves Japanese food . Situated near Café Rouge , has an average customer rating . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Near the Ranch there is a place with Chinese food rated average run by a man named Cotto \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : no||Alimentum serves Indian food at a moderate price range . It is in the city center and is not kid - friendly . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : city centre||You can expect to pay more than £ 30 to eat at Zizzi , a restaurant in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||Eat at The Cambridge Blue , a French restaurant with an average rating . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a family friendly restaurant with a 1 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||In the riverside area , Fitzbillies is a coffee shop with a low rating , but it is family friendly and prices range £ 20 and under . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a high - priced restaurant that serves Chinese food . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , family - friendly , fast - food restaurant in riverside , near Express by Holiday Inn . It has a customer rating of 5 out of 5 . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||A very cool restaurant called Alimentum its located near Yippee Noodle Bar \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Down the riverside you can find the French Aromi coffee shop . It is a family friendly shop with a great customer rating . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||excellent bar and restaurant that offering every Wildwood . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly coffee shop located in riverside area , near Crowne Plaza Hotel . It serves Italian food and has a low customer rating . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a cheap but highly rated family friendly venue near Express by Holiday Inn . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||A pub named The Dumpling Tree near The Portland Arms serves English food . It is kid friendly . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||There is a child friendly restaurant called Cocum . It has a rating of 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Zizzi is a kid - friendly coffee shop in city centre with high customer ratings and a price range of £ 20 - 25 \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly restaurant located near The Rice Boat on the riverside . It has a low customer rating and a low price range . \nname : Aromi | Type : restaurant | food : French | area : city centre||In the City Centre is a French restaurant called Aromi . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||Those looking for an Italian - style coffee shop that has a 5 out of 5 customer rating near The Portland Arms should try The Cricketers . It is not family - friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree is an Italian pub located near The Portland Arms . It is not family - friendly . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a child - friendly pub in the riverside area with an average customer rating . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||A restaurant called Loch Fyne serves good French food and is found in the riverside area by The Rice Boat \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||The kid friendly restaurant Cotto , has average ratings and serves English food . They are located near Ranch . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||The Loch Fyne restaurant is a family friendly eatery that offers an assortment of wines and cheeses at low cost . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||Japanese food with price range less than £ 20 in family friendly The Golden Curry , near The Bakers . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||The Golden Curry is an authentic British restaurant \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Clowns is a high priced pub ranked 1 out of 5 . It is located Riverside . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a children friendly restaurant located near Express by Holiday Inn with a high rating offering meal for 20 to 25 Euro . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop near Ranch that is moderately expensive but well liked . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a kids friendly Indian pub near Café Rouge . It is within the moderate price range . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi in riverside is a coffee shop that has a customer rating of 3 out of 5 . It is in riverside and has a price range of £ 20 - 25 . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||Located near The Bakers , The Golden Curry is a Japanese restaurant that is not kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop offering Indian food . Browns has an average customer rating and is located in the city centre . It 's not family friendly and is located near the Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter coffee shop around he corner from Café Sicilia offers mid - price family friendly meals . \nname : The Punter | food : English | price : less than £ 20||Located in the city centre , The Punter offers great cheap breakfasts with fresh British sausages and offering budget breakfasts to suit an individual 's need . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : average||The Cambridge Blue is an Indian restaurant that has an average customer rating \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Located in the city center , Fitzbillies offers average Japanese food less than £ 20 . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix , serving Chinese dishes which are in the moderate price range was given a 1 out of 5 customer rating and located in the Riverside area . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is an inexpensive place for wine and appetizers next to the river . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is a pub that offers cheap Japanese eats in the riverside area . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Family restaurant The Waterman is moderately priced with good reviews and views of the river \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located by the riverside near the Express by Holiday Inn . Their price range is moderate but has a customer rating of 1 out of 5 and they are child friendly . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||In the riverside area you can find low priced Italian food at the Alimentum . It is near the Yippee Noodle Bar and has an average customer rating . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is an Italian restaurant in the city centre near Clare Hall with prices less than £ 20 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||On the Riverside near Café Adriatic is a 5 star expensive place called Travellers Rest Beefeater . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : city centre||For French food in the centre of the city , you 'll pay more than £ 30 at The Phoenix , which has low customer ratings . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi coffee Shop , There is an excellent Café restaurant in City Centre \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||The Blue Spice restaurant in Riverside , is moderate price range , kids friendly coffee shop near Avalon . \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||Wildwood is a moderately priced , highly rated pub . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is located in the city centre near The Sorrento offering Indian food and a child friendly atmosphere . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman provides French food it has a customer rating of 3 out of 5 , they are not child friendly and the price range is quite high they are located in the city centre . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Portland Arms has an English pub nearby called The Dumpling Tree , which is kids friendly . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : no | near : Café Rouge||Located near Café Rouge , the pub The Plough , serves Italian food at moderate prices in an adult environment . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice located in the riverside area , is a child friendly , high price range establishment , with a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Indian | price : cheap | near : Café Brazil||The Cambridge Blue is a pub that offers Indian food . The price range is low and is located near Café Brazil . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||For low to moderately priced Chinese food , The Rice Boat is a low rated , non family friendly restaurant located near the Express by Holiday Inn in the city centre area . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is family friendly and serves French food . It is near The Sorrento in the riverside area . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub near the Ranch . It has an amazing rating of 1 out of 5. yes , it is Children friendly . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : yes | near : The Sorrento||family - friendly pub called the Taste of Cambridge which is located in the city centre near The Sorrento \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly 3 out of 5 rated coffee shop offering Indian food at a moderate price . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove pub has Oriental dining for families , located near the river . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||The coffee shop Cotto in riverside near The Portland Arms serves English food with a high customer rating and has a price Range more than £ 30, \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , Strada have Chinese food with moderate prices . It is not kids friendly . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Rated 3 out of 5 by customers , The Waterman is an Italian restaurant in the city centre that is moderately priced and family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving Japanese food costing more than £ 30 in the city centre . It is not children friendly and has a rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle , located near Burger King , is a fast food restaurant in the £ 20 - 25 price range - it is a kid friendly coffee shop with a high customer rating in the Riverside region of the city . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a fast food establishment . Not family - friendly but is highly rated . Found in the city center . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||restaurant The Golden Palace has an average customer rating . It is located on the riverside . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Family friendly pub Taste of Cambridge is located in the riverside area near The Sorrento . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||There is a averaged priced restaurant called Bibimbap House located near Clare Hall . \nname : The Punter | food : Italian | price : less than £ 20||The Punter serves Italian food is low priced . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a city centre coffee shop near Burger King . It doesn 't have that much going for it with a score of 1 out of 5 from customers , a high price range , and no , it 's not friendly to children . \nname : The Twenty Two | food : English | area : city centre | family friendly : yes||The Twenty Two is a family - friendly venue . It serves English food and is located in the city centre \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop serving Indian food with a cheap price range with a customer rating of 5 out 5 starts . It is located on the riverside near Burger King . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a three star , low cost coffee shop located outside of the City centre . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||moderately priced , Alimentum , near Yippee Noodle Bar , riverside , serves Japanese food and has a low customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Aromi is a coffee shop in the riverside area that also serves Italian food . Yes it is a kid friendly place . Not only that but it has a high customer rating . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||Children friendly The Golden Curry with a high price range serves Fast food near The Bakers . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||5 out of 5 rating and cheap prices at Browns Cambridge \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that specializes in Italian food in the City centre area near The Portland Arms . This average - priced menu received a 1 out of 5 star rating from customers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a riverside coffee shop , situated near Burger King . It has a price range of less than £ 20 and serves Japanese food . Yes , it is also family friendly . The customer rating is average . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||In the area of riverside there 's a restaurant called The Golden Palace ; it has a 1 out of 5 customer rating . \nname : Loch Fyne | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||There is a restaurant called Loch Fyne that provides Chinese food . It has a customer rating of 1 out of 5 stars and is located near The Rice Boat , by the Riverside \nname : The Twenty Two | Type : pub | customer rating : low | area : city centre | near : Café Sicilia||Near Café Sicilia , city centre pub The Twenty Two has a poor customer rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||a coffee shop called Aromi serves Indian food has a rating of 5 out of 5 in city centre and its family friendly \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : yes||There is a family friendly pub called Zizzi selling Indian food . It has a 5 out of 5 customer rating . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman is a pub located right off of the river . Here they serve alcohol as well as other foods . This is a one star restaurant . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family - friendly Chinese food restaurant in the Riverside area where you can eat for low prices . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a Japanese restaurant with a price range of 20 - 25 and a customer rating of 3 out of 5 . It is not child - friendly . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum is a highly priced French coffee shop . It has a rating of 5 out of 5 and is not child friendly . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is moderately expensive for poor standard . It is on the riverside by The Rice Boat and is not family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Japanese food restaurant with a low customer rating . It is near Burger King and its price range is more than £ 30 . It is a coffee shop in riverside . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Strada is a pub neat Yippee Noodle Bar , they have medium ratings . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop serving low priced fast food near Café Sicilia . It is family friendly and has a rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee shop near The Portland Arms good quality at a low price \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a fast food restaurant . It is located right near Crowne Plaza Hotel . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap , family friendly , Italian pub near Café Rouge . \nname : Midsummer House | food : Chinese | price : £ 20 - 25 | customer rating : high | near : All Bar One||There is a high rated Chinese restaurant near All Bar One with food in the £ 20 - 25 price range named Midsummer House . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap family friendly English pub in the riverside area . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a family - friendly place that serves Japanese food in the city near All Bar One and has a price range of less than £ 20 . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||Rated 3 out of 5 , The Wrestlers is a moderately priced Fast food restaurant that is not kids friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||For less than 20 euros , Loch Fyne Italian restaurant is family friendly and delicious . \nname : The Eagle | food : English | customer rating : 3 out of 5||The Eagle has an average customer Rating and serves English food . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||The Cotto is an Italian coffee shop rated 3 out of 5 . It 's located on the riverside , near The Portland Arms . The price range there is moderate . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a low rated child friendly English place with high prices near Rainbow Vegetarian Café . It is called Strada . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes||The coffee shop , Aromi , is a family friendly coffee shop found in the riverside area . This family friendly shop provides Indian cuisine of a low customer rating . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a kids friendly Italian restaurant situated by the riverside with a high customer rating . Their price range is 20 - 25L . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a sushi food restaurant . We have three starts of experience , and we 're a mid - cost restaurant . Join Us . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||Yes , the friends and family ate at a average cost at the city centre , it was called The Golden Curry near Café Rouge and it was full English . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is located near The Portland Arms ; It is a children friendly pub that serves Italian food . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kid friendly coffee shop in the riverside area near Avalon selling moderately priced food with a rating of one out of five . \nname : Loch Fyne | food : Indian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a 3 star Indian restaurant by the river , near The Rice Boat . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : no||Alimentum is located along the riverside and serves mid - priced wine and hors d 'oeuvres in a non - family friendly environment . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a fast food , coffee shop located near Raja Indian Cuisine in Riverside . The coffee shop is children friendly and is in the higher price range . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies , is children friendly . It is in the price range of more than L30 and has a customer rating of 5 out of 5 . It is located near Express by Holiday Inn . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||The fast - food restaurant Fitzbillies located near The Six Bells with a low price - range of 20 Euros . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine is children - friendly in the riverside area . It is a coffee shop with Japanese food with a high price range named The Wrestlers . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe restaurant , near The Six Bells and has cheap price range \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue is near Café Brazil offering moderately priced pub style Italian food . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The high - priced coffee shop in riverside , The Vaults , has a 3 out of 5 rating and is near Café Brazil \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento , Browns Cambridge is child friendly and serves Japanese food in a riverside area . \nname : Zizzi | Type : pub | food : French | customer rating : high | family friendly : yes||Child friendly pub Zizzi has a high customer rating . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an expensive French food restaurant in the city centre , near the Express by Holiday Inn . Its name is The Rice Boat . It is not children friendly and its rating range is low . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop in the riverside area near Avalon . They have a high priced selection with a customer rating for 3 out of 5 stars . They are not a kid friendly establishment . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix offers cheap English food located in riverside . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||With a 3 out of 5 star rating this coffee shop is kid friendly and moderately priced . The Giraffe coffee shop is located near The Bakers . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||With high - costs , The Wrestlers is a family - friendly , five - star restaurant . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe is a cheap restaurant near The Six Bells . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop in Riverside near Café Brazil . The customer rating is low and the price range is more than £ 30 . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop located near Café Brazil in the riverside area . It has a customer rating of low and a price range of less than £ 20 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop located in City centre and is moderately priced with 1 out of 5 stars and is not kid friendly \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a French restaurant and coffee shop that caters for families . It is conveniently located near the Crown Plaza Hotel . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||A moderately priced , kid friendly , French restaurant is Loch Fyne . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||if you are looking for a coffee shop which sells Italian food and is in the £ 30 plus price range that is not child friendly then there is a place near the Café Sicilia called The Punter which has high customer ratings \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Brazil||The Vaults is located in the city centre near Café Brazil , this coffee shop has a high rating in the £ 20- £ 25 price range . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a cheap coffee shop on the riverside near Café Brazil . It gets a 5 out of 5 rating . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Beside the Café Rouge Japanese restaurant is an average rated 3 out of 5 Midsummer House . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a local pub with a 5 star rating and prices starting at £ 30 . You can find it near Café Adriatic . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a cheap Japanese restaurant with a low customer rating by the riverside . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a fast food restaurant with a moderate price range . Not recommended for families , it has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat , which is not family friendly , is located in the city centre and is rated by customers as 5 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves cheaply priced Indian food and has an average customer rating . It 's not family friendly and is in city centre near Express by Holiday Inn . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Pricey Italian food is served at the Cotto coffee shop , located on the riverside near The Portland Arms . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||The Cambridge Blue is an Italian restaurant . It has a customer satisfaction rating of 1 out of 5 \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Browns Cambridge coffee shop serves Japanese food . it is not family - friendly so it has an average customer rating . it is in the city centre near the Crowne Plaza Hotel . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The pub Cocum is kid friendly and moderately priced with average ratings . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : 1 out of 5||Indian food is served at a pub called Wildwood . It has a customer rating of 1 out of 5 and is in the high price range . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto has a moderate price range . It is by the riverside and near All Bar One . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located near the Café Rouge on the riverside . It serves Italian food in a family - friendly environment , and is rated as average by its customers . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a non family - friendly , low rated Japanese food restaurant with a price range less than £ 20 and is located in Riverside , it is called The Waterman \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Receiving one - star , Fitzbillies coffee shop serves food and spirits at reasonable prices in a family friendly environment . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : city centre||In the city centre is located a pub named The Mill , it offers Japanese food with a price more than £ 30 . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : average||Wildwood is a pub that offers Chinese food at low prices and has average customer ratings . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is children friendly and serves English food . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a family friendly Indian restaurant in the city centre with a low rating , The Waterman , for less than 20 euros . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||An Italian pub called The Mill is in riverside and costs a moderate amount . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle is located in riverside . They have a high price range and a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||High customer rating and excellent service and quality food is exactly what you will pay for in the slightly more than average prices . Located near Café Adriatic in riverside , the Travellers Rest Beefeater serves some of the best food in town . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Indian restaurant located near the Rainbow Vegetarian Café and is rated 5 out of 5 . \nname : The Rice Boat | food : French | area : riverside||French cuisine is served at The Rice Boat , located by the riverside . \nname : Green Man | Type : pub | food : Indian | area : riverside | near : Café Rouge||Green Man is a pub that provides Indian food It is located in the riverside . It is near Café Rouge . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||Near All Bar One you can find the Italian restaurant The Cricketers . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||With a high price range near The Portland Arms with a place named Cotto in the city center . Customer rating 1 out of 5 with a coffee shop and fast food . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is a child - friendly pub in the city centre . It has a price range of more than 30 pounds . \nname : Bibimbap House | food : Italian | price : moderate | area : city centre | near : Clare Hall||There is Italian restaurant on side Clare Hall in the city centre with moderate price , its Bibimbap House \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is only one star rated yet expensive , it also lacks family amenities \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||There is a great quite expensive pub called the Cocum which is family friendly . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman in city centre has a high customer rating but is not for children .The price is high for fast food . \nname : The Phoenix | food : Indian | customer rating : average | area : riverside||You can get average rated Indian food at The Phoenix in Riverside . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a traditional Japanese pub grub type place . We 've only been rated average but that 's only because of out yes attitude to families . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||The Cambridge Blue serves Japanese food rated 3 out of 5 by customers . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter family friendly fast food coffee shop has cheap prices . It has a customer rating of 5 out of 5 and is located near Café Sicilia . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is near the Express by Holiday Inn in riverside . They have cheap English food and a 5 out of 5 rating , but are not family - friendly . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : no||The Rice Boat is a fast food restaurant in city centre that isn 't family - friendly . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is located near The Rice Boat which provide Japanese food . At the riverside is Loch Fyne which customers rating 5 out of 5 . At the riverside , near The Rice Boat you can find the Loch Fyne Japanese restaurant . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||For a low priced , family friend , French restaurant in Riverside , check out The Alimentum . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House , near Café Rouge , sells fast food and has a 3 out of 5 customer rating . \nname : The Twenty Two | food : Fast food | family friendly : yes||Come and get delicious fast food from the family friendly venue - The Twenty Two \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||There is a coffee shop which offers cheap Indian food , with a 5 out of 5 customer rating , called The Punter . However , it is not family friendly . It is located near Café Sicilia . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | near : The Sorrento||The Mill restaurant is a coffee shop that services Japanese food that costs more than £ 30 that is in the City Centre near The Sorrento \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced restaurant located in City centre , near Express by Holiday Inn . It is family friendly and rated one star . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Chinese food restaurant located in riverside having a rating of 5 out of 5 \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman offers fast food . It is not child - friendly . Customer Rating 1 out of 5 is located in the city center . Prices are moderate \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a non family - friendly French coffee shop with prices ranging less than £ 20 . It can be found near Café Sicilia and has a low customer rating . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kids friendly fast food place in Riverside . The price is £ 20 - 25 . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House has Indian food for less than £ 20 . Located near Clare Hall on the riverside . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||Strada is an Italian food pub near to the Yippee Noodle Bar and has an average customer rating . \nname : The Eagle | food : Fast food | customer rating : high||The Eagle serves Fast food with a high customer rating . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||In the riverside area there is a kid friendly place near The Portland Arms called The Punter that sells food for £ 20 - 25 \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||There is a three star rated restaurant called The Cambridge Blue that sells sushi . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub on the riverside that offers Chinese food , 1 out of 5 recommend . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a no family friendly pub offering Chinese cuisine in the city centre . A typical meal will cost less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : more than £ 30 | family friendly : yes||There 's a Chinese restaurant called Loch Fyne that 's family friendly . It 's pricey though . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge has cheap English food with a customer rating 5 out of 5 . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies has a high price range . It is near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a high price ranting , is family friendly and is a high priced restaurant . They serve Italian food and are located near Express by Holiday Inn . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a coffee shop Aromi located by the riverside serving Italian food with a customer rating of 5 out of 5. they are family friendly \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : riverside||The Phoenix provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House restaurant is a high priced restaurant near All Bar One \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near the Rainbow Vegetarian Café . It is not too expensive . They offer American cuisine . It has excellent reviews . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : more than £ 30||The Dumpling Tree is an Indian restaurant with a price range of more than £ 30 . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : yes||There is a French selling restaurant in the City Centre called The Rice Boat . It is family - friendly with an average customer rating . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : no||Alimentum with dishes from £ 30 located in riverside is a restaurant . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Near Burger King , in the Riverside area is a coffee shop called The Eagle , that is not kid friendly and serves French food in the price range of £ 20 - 25 with a high customer rating . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is a child friendly restaurant with a high customer rating called Fitzbillies . The cost is more than £ 30 . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a moderately priced adult oriented Italian restaurant , located near The Bakers . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel by the riverside is a coffee shop called Browns Cambridge that serves French food . It is rated highly , but not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , you and your family can enjoy Italian cuisine and alcohol while dining at the coffee shop called The Wrestlers . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Bad customer rating at the Strada restaurant \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located next to Yippee Noodle Bar on the outskirts of the city . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Midsummer House near Café Rouge , serves Italian food but has a low customer rating . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly place with a low customer rating a price range of less than £ 20 and is located in riverside near The Rice Boat . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a high priced Chinese restaurant with a customer rating of 1 out of 5 . Not kid friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly Indian restaurant where you can eat for £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||There is a moderately priced Italian coffee shop called Cotto in the city centre . Customers have rated it 5 out of 5 . It is close to The Portland Arms . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Kid - Friendly , Aromi is an Indian coffee shop with a customer rating of 3 out of 5 in the riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn is an English restaurant named The Rice Boat . It has a customer rating of 3 out of 5 and is not kid friendly . It is in the city centre area . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly with an average rating is in riverside near Café Rouge have English foods . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||There is a fast - food , coffee shop that is located in the city centre area . It is called Fitzbillies and it is not child - friendly but has a high customer rating and a price range of more than £ 30 . \nname : Fitzbillies | food : Fast food | price : cheap | near : The Six Bells||Fitzbillies is the Fast food in low price range near to the Six Bells \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : yes||The Vaults serves Chinese food for less than £ 20 . Yes , it is family friendly . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a restaurant providing Chinese food . It is located in city centre near The Rice Boat and has a customer rating of 5 out of 5 . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Blue Spice scored an average rating . This place is located near the riverside . Their products are less than £ 20 . They are not family - friendly . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : no||The Green Man is located in the riverside area . It is not child friendly and has a price range of more than £ 30 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||In the city centre near Avalon , the coffee shop Blue Spice is more than £ 30 but has a 5 out of 5 rating and is not children - friendly . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : no||The Olive Grove is a pub restaurant located in the city centre with English food with high price range . It is not children - friendly . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a low rated family friendly coffee shop . For less than 20 pounds , you can have French food near Café Sicilia . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Waterman pub offers fast food and drinks . \nname : Cotto | food : French | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a kid friendly restaurant near the Ranch . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||There is a Fast food is Midsummer House in the near of Café Rouge with rank 5 out of 5 \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry offers Japanese food and is children friendly . It has a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop is located near The Ranch . It also has low prices and a rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a fast food coffee shop Aromi in city centre that is for the family and it has a customer rating of 5 out of 5 . \nname : Blue Spice | food : Fast food | price : moderate | area : city centre||Moderately priced fast found can be found at Blue Spice in city centre . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Located near Burger King in Riverside , The Eagle is an adult only coffee shop with a 3 out of 5 rating serving French food for under £ 25 \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House offers French cuisine located near All Bar One . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is in the high price range . This is a family restaurant . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms on the riverside is The Punter . It is a family friendly place with a cheap price range . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||The Phoenix is a low rated Italian place , found in the riverside area . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a restaurant located close to the river . It is in the low price range . It is not family friendly . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe , is pub yes children - friendly \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : city centre||Blue Spice is a fast food restaurant in the city centre with a price range less than L20 . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||There is a cheap breakfast restaurant called Loch Fyne with no restrooms available . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter is a fast food out let that offer food for a high price . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a high priced coffee shop Cotto that is next to The Portland Arms . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||An expensive , family - friendly coffee shop by Café Sicilia is called The Punter . It is rated three out of five stars . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree , which costs more than £ 30 , is a French restaurant . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant located in the city centre near Yippee Noodle Bar . Alimentum has a moderate price range with a customer rating of 1 out of 5 . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat , a five star family friendly English restaurant , is located near the city centre . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||The Cambridge Blue is a French restaurant with a 3 out of 5 customer rating \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||A child friendly place with English food on the riverside is The Rice Boat , however , the customer rating is 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||Next to Café Sicilia there is a low - prices Japanese coffee shop called The Punter . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a pub offering cheap fast food located near Café Brazil \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a pub serving French food in the area of riverside . It is child friendly . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Customer rating 1 out of 5 . The Waterman is a kid - friendly restaurant that serves English food at a moderate price . It is located in Riverside . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix in the city center area may have a low customer rating , but they also have French food less than £ 20 . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Near The Portland Arms is a high customer rating Japanese coffee shop called Cotto . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves Fast food at reasonable prices . It is located near Yippee Noodle Bar in the riverside area . Customers have given it an average rating . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a moderately priced restaurant in riverside that sells French food . It has a customer rating of 1 out of 5 . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : no | near : All Bar One||Located near All Bar One in the city centre , The Green Man is adult only and moderately priced serving Italian food \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is Strada , an English restaurant with low - priced food . It has an average customer rating and is family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop located in the city centre near Burger King . It has a low customer rating , but fast food there costs under 20 euros . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is a £ 20 - 25 price range place near Rainbow Vegetarian Café . \nname : The Plough | Type : pub | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||There is a family friendly pub called The Plough offering fast food near Café Rouge for prices between 20 - 25euros \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge has a price range of more than £ 30 with a customer rating 5 out of 5 \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||There is a highly rated coffee shop and expensive dine in family restaurant called Cocum . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is located at the city centre , near Burger King . It is family friendly and rated 5 out of 5 \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop serving Indian food near Café Sicilia . It is in the cheap price range and has an average customer rating . It is not considered family friendly . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||A restaurant with an average customer rating is The Cambridge Blue . It serves Japanese food . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : no||Alimentum is a Indian restaurant that has moderate pricing . It is located in the city centre . The restaurant doesn 't accept kids . \nname : The Waterman | Type : pub | food : Indian | customer rating : 3 out of 5 | area : riverside||The Waterman pub serves Indian food rated 3 out of 5 by customers in Riverside . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a high rated , kid friendly , riverside area near The Rice Boat and is priced very well . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Wildwood is a moderately priced , three - star sushi pub . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a children friendly French restaurant . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Cocum coffee shop has amazing coffee and food . It is family friendly and not too expensive . Their food is amazing . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near the Rainbow Vegetarian Café and has a average customer rating that serves Japanese for less than £ 20 and kid friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||The Mill is a pub with Fast food and moderate price range in riverside . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||By the riverside , near Avalon , is an expensive coffee shop . The low rated shop is called Blue Spice suitable for the whole family . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood is a restaurant , near Café Rouge , with a low customer rating . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an average Japanese style restaurant that is family and wallet friendly located near the Express by Holiday Inn in the city centre . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree near The Portland Arms serves English food \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||There is a coffee shop , Clowns , in the city centre near Clare Hall that serves Indian food and has customer rating of 5 out of 5 . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||The Midsummer House near All Bar One and the price range is cheap . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||If you 're looking for somewhere to take your children on the riverside for English food , come to Browns Cambridge , near The Sorrento \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies , a family friendly coffee shop is located near City center . Although the ratings are not high and the food is expensive , they serve American style food such as , hamgurgers and French fries . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an Indian food a highly regarded restaurant in riverside . A price for this children friendly restaurant is more than £ 30 per meal . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry with an average customer rating serves French food , isn 't family - friendly and is situated nearby to Café Rouge within the city centre . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman in Riverside serves Fast food but is not children friendly . It has a high price range and average customer service . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||Enjoy Italian food in Riverside at The Olive Grove , it is a cheap family friendly pub style restaurant . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop offers good sushi at a fair price . It is located on the riverside . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The coffee shop called Aromi is located in the city centre with Japanese food with customer rating 5 out of 5 . They are family - friendly . \nname : Aromi | Type : restaurant | food : Fast food | area : city centre||Located n the city centre area is the fast - food restaurant called Aromi . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Japanese food with a high price range , there is no children area and it has a customer rating 3 out of 5 . It is located in the city centre , near to Express by Holiday Inn . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||Wine and Cheeses moderately priced at The Golden Curry is located up the road from The Bakers . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a adult only coffee shop providing in the low price range . It is located in the city centre . Poor customer rating \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop , serving sushi at medium range prices . One star , not family friendly . Located next to the river . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||In the riverside are is the moderately priced child friendly Alimentum serving fast food \nname : The Dumpling Tree | Type : restaurant | food : English | price : £ 20 - 25||There is a reasonably priced restaurant called The Dumpling Tree where they serve English food . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Blue Spice is a low price range family friendly restaurant . It is in the riverside area and has an average customer rating . \nname : The Mill | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | near : The Sorrento||In the riverside area near The Sorrento is a coffee shop with a price range of 20 - 25 pounds called The Mill . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||There is an Italian restaurant in riverside that is not family - friendly and has a low customer rating called The Rice Boat . \nname : The Vaults | food : Chinese | price : cheap | family friendly : yes||The Vaults serving Chinese food is family friendly and cheap . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice is a moderate price Japanese restaurant located in the riverside area of town . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice is a child friendly restaurant , with high prices and high customer ratings , located in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 1 out of 5||The French restaurant The Cambridge Blue has received a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is an Indian coffee shop with a very high customer rating . It is cheap , but not family friendly . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||A children friendly place with high prices and an average customer rating , is The Wrestlers . It serves Italian food . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||For Italian food try The Rice Boat , it is family friendly with a 1 out of 5 customer rating in the riverside area near Express by Holiday Inn . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry restaurant offers a range of Indian food . It 's customer rating is low . You will find this restaurant in the city centre , close to Café Rouge and is family friendly . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman , which is an Italian restaurant , is cheap place to eat in the city centre and has a 5 out of 5 customer rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | near : Ranch||The Wildwood is an Italian coffee shop near Ranch with affordable prices and low customer approval . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||A kids friendly Chinese restaurant in the riverside area near The Sorrento is Browns Cambridge . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||The Midsummer House serves fast food and is cheap . It has a 5 out of 5 customer rating and is located near All Bar One . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||There is a place near All Bar One that serves French food for less than 20 pounds . The name is Midsummer House and customers rate them average . \nname : Fitzbillies | food : Japanese | price : high | near : The Six Bells||There is a high - priced Japanese restaurant , Fitzbillies , located near The Six Bells . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle located in centre city very close of Burger King , is a coffee shop with a high price range \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Near All Bar One there is a restaurant serving English food named Midsummer House , with a price range of £ 20.00 £ 25.00 with high customer rating reviews this is a great place to eat . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderate priced Indian food restaurant that got a 1 out of 5 customer rating . It is located near Rainbow Vegetarian Café and is not kid friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes||The Olive Grove is pub that serves Chinese food . It is a children - friendly , pricey place located right in the city centre . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||Located near Café Adriatic in the riverside area , Travellers Rest Beefeater has a low customer rating and a price range of less than £ 20 . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||Child friendly Green Man is in the riverside area . It has a price range of over £ 30 . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||Near Clare Hall and the city centre is a lower priced place to eat called The Bibimbap House . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | near : Café Brazil||By Café Brazilian the town centre is The Vaults coffee shop , which has prices starting at £ 30 , rated low . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low - priced restaurant that provides wine and cheese and it 's located right next to All Bar One . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a kid friendly restaurant serving English food with a moderate price range . It is located near All Bar One in the riverside area . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice is a fast food restaurant in riverside with a price point less than £ 20 . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a highly rated English restaurant in city centre . They are kid friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||There is a coffee shop near Café Sicilia , The Punter , that serves expensive Indian food and has customer rating 1 out of 5 . It 's not children friendly . \nname : Cotto | food : Italian | near : Café Rouge||Cotto has Italian food and is near Café Rouge . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||There is a pub that serves mid price range British food called Wildwood . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater restaurant is in the mid price range . It is not family friendly . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located in the city centre near the Express by Holiday Inn , The Rice Boat is family - friendly and serves average French food costing less than £ 20 . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||For French food at an average of less than twenty pounds The Green Man is a family - friendly eatery near to All Bar One in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||There is a Fast food coffee shop called Fitzbillies in the Riverside area . They are not child friendly and have a high price range , with an average rating . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat on the riverside near Express by Holiday Inn serves fast food in the high price range , is family friendly , and has a customer rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||In the city centre there is a high rated , kid friendly , fast food restaurant called The Waterman . It is in the average price range of £ 20 to £ 25 . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||High customer ratings and a kid - friendly environment merge together in the form of Indian restaurant , The Golden Curry . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||There is a coffee shop called Cotto near The Portland Arms in the city centre that has average rating and Indian food . The prices are cheap . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||Located in Riverside , Alimentum is a Japanese restaurant that is not kid friendly with a moderate price range . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Italian food . High price . It is located in the city centre area near Express by Holiday Inn . Rated 1 out of 5 . Kid friendly . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a restaurant friendly for children . The customer rating is 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||There is a kid friendly English restaurant named Loch Fyne . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a kids Friendly coffee shop , with high customer Rating , near The Portland Arms , that serves Indian food . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||An Italian coffee shop with a low customer rating , prices less than £ 20 and that isn 't family - friendly is called Cocum . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee Shop , and moderately priced , next to Burger King at City centre . Rating : 1 out of 5 . Kid friendly . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat located in the center of the city is a low price range family - friendly French restaurant with a customer rating of 5 out of 5 near the Express by Holiday Inn . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a 1 star fast food restaurant located next to The Rice Boat . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||There is a highly rated , child friendly restaurant named Zizzi that serves English food . \nname : Fitzbillies | food : Indian | price : £ 20 - 25 | near : The Six Bells||For between £ 20 and £ 25 you can get Indian food at Fitzbillies which is close to The Six Bells . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : city centre||Moderate price range pub near center of city is Clowns with a customer rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub providing Japanese food , it is kids friendly with a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : moderate||The Dumpling Tree is an Indian restaurant that offers a moderate price range \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Avalon||Blue Spice coffee shop is non children - friendly with a low rating and a price range for more than £ 30 , it is located near Avalon in the city centre . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is an over - priced , child - friendly coffee shop along the riverside near Avalon that isn 't worth going to . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Fitzbillies is a cheap , family friendly Indian coffee with a customer rating of 5 out of 5 in the city centre . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||The Phoenix is a cheap Fast food restaurant in the area of riverside with an average customer rating . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||riverside has an average rating The Golden Curry near Café Rouge that serves Japanese food with family friendly service \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a high price range adults only coffee shop Fitzbillies located in the riverside area poor customer rating \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : no||The Rice Boat is an establishment that serves Chinese food . It is located near the centre of the city , has low customer ratings , and is not child friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a high priced coffee shop that is not child friendly . It is located near Burger King in riverside and have an average rating . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is low . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : no | near : Café Rouge||The Plough is a Japanese pub near Café Rouge that is not family - friendly and has a price range of more than 30 pounds . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a higher priced , adult oriented , coffee shop , near Café Sicilia in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a highly rated coffee shop in the city centre that serves Italian food . The price range is above £ 30 . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an average rated Riverside fast food place . It has an average rating near Express by Holiday Inn with a cheap price range . It is a great place for adults \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||Taste of Cambridge is a high price range restaurant with the customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : no||In the city centre there is an expensive pub called The Olive Grove . They serve Indian food and it is not children friendly . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix Italian restaurant in the city centre has high prices , and a 1 out of 5 customer rating . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix serves Japanese food in the £ 20 - £ 25 price range with a high customer rating located in the city centre \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The site Taste of Cambridge is a coffee shop type , it offers Indian food , is located in Riverside , is ideal for children and friends , and is near Crowne Plaza Hotel \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum serves Chinese food . It has a high price range and a customer rating of 1 out of 5 . It is located in the riverside area , near Yippee Noodle Bar . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman serves Chinese food in the city centre area with a price range of £ 20 - 25 . They have a high customer rating but is not kid Friendly . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||In the city centre there is a place called Alimentum near the Yippee Noodle Bar which serves English food , has a customer rating of 1 out of 5 , and a high price range . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is the low rated and family unfriendly Strada which serves moderately priced Indian . \nname : Loch Fyne | food : Indian | customer rating : average | area : riverside | near : The Rice Boat||Near riverside and The Rice Boat , there is a popular Indian restaurant named Loch Fyne . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a non family - friendly Italian restaurant in the riverside . The price range is less than £ 20 . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a family friendly establishment in the riverside area serving French food . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||The Taste of Cambridge is an expensive , but highly rated restaurant . \nname : Strada | Type : pub | food : English | customer rating : low | near : Yippee Noodle Bar||Strada , a pub near the Yippee Noodle Bar that serves English food has a low customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a Japanese restaurant and coffee shop . It is located near The Portland Arms . Customer rating 5 out of 5 . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is in the riverside area and is a pub that serves Japanese food . The price range is more than £ 30 . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a restaurant where the prices are less than 20 £ . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a wine and cheese pub that is three star and middle price range . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a bistro coffee shop , family friendly and off the main road . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a 3 star , family friendly located close to Express by Holiday Inn providing take - away deliveries in the low price range . It is located in the city centre . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man located by in the city centre by All Bar One is an average priced , family - friendly English joint . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : average||Browns Cambridge is an affordable Chinese food establishment with an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop and serves Indian food , located in riverside , with high customer Rating and price Range more than £ 30 . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada serve English food . Their prices are moderate . They are located by Rainbow Vegetarian Café . It is rated 3 out of 5 and yes kid friendly . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two offers high customer Rating area city centre for kids Friendly in The Rice Boat . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a fast - food pub near Café Rouge . It is kid - friendly and moderately priced . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a restaurant with good ratings . It is located near The Portland Arms . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||A restaurant called Midsummer House is located near All Bar One . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies is near the Express by Holiday Inn and is 1 star . It is not family oriented . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||It 's an affordable place to eat at The Plough . It 's a Pub close to Café Rouge and it accepts children . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near Crowne Plaza Hotel near a riverside , serving French food , it is kid Friendly with an average rating . \nname : Strada | Type : pub | food : English | customer rating : low | near : Yippee Noodle Bar||Low rated English pub , Strada , is located near Yippee Noodle Bar . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Everyone is looking for a kid friendly environment these days and we have found one to try . The Twenty Two is a riverside attraction near The Rice Boat with a moderate price range . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 3 star moderately priced Italian restaurant near to Rainbow Vegetarian Café \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||In City Centre , Cotto , a coffee shop that serves French food near The Portland Arms have a high customer rating , and have a price range of £ 20 - 25 \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||A kid - friendly fast food restaurant is The Twenty Two , located in Riverside . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||At the riverside there is kids - friendly pub with moderate pricing named The Olive Grove . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||Near to the Café Brazil is The Cambridge Blue . This pub serves English food at high prices . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is an all you can eat restaurant by The Bakers rated at one star , family friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||In the city centre you will find The Olive Grove pub . They serve Japanese food for less than £ 20 but aren 't family - friendly . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne can be found on the riverside close to The Rice Boat , with sushi dishes that are the best of the best . \nname : The Vaults | food : Chinese | price : high | family friendly : yes||The Vaults provides Chinese food in the high price range . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a children - friendly pub that serves English food , located near the riverside . \nname : The Punter | food : English | price : high||The Punter is the epitome of fine dining . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge get the customer rating 5 out of 5 , and it is in moderate price range and \nname : Aromi | Type : restaurant | food : Indian | area : riverside||Aromi is an Indian restaurant in river side . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater near Café Adriatic in the city centre is high priced with average customer rating \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||For children friendly English food on the riverside with a high customer rating , try The Rice Boat . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Located in riverside is a French food coffee shop called Aromi . It has an average customer rating and is family friendly . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||There is a child - friendly pub , Giraffe , which serves fast food by the river . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||If you want a Fast food coffee shop check out Aromi in riverside it is family friendly and has an average rating . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||There is a children friendly restaurant , The Rice Boat , that serves Indian food by the riverside . Their customer rating is average . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kid friendly Italian place in riverside . It is near All Bar One and has moderate prices . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||The Browns Cambridge has a moderate price for French food but only has a rating of 1 out of 5 . \nname : The Punter | food : Italian | price : moderate||The Punter sells fairly priced Italian food . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop and is near The Portland Arms and is rated 5 out of 5 . It is family friendly and serves French food . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry a Japanese restaurant near Café Rouge in the city Centre \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||Zizzi is a one star rated pub that family 's are not welcome to visit . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||A French coffee shop called Cotto is located in Riverside , near The Portland Arms . It is in the cheap price range , and has a customer rating of 5 out of 5 . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||underrated Japanese restaurant pub , Strada is located near Yippee Noodle Bar . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family coffee shop with a 1 star rating not far from Crown Plaza Hotel sat next to the river . \nname : Fitzbillies | food : English | price : more than £ 30 | near : The Six Bells||Fitzbillies , near The Six Bells , serves English food and is in the price range of more than E30 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Indian food . It has a high rating and is children friendly . It is near the Crowne Plaza Hotel . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman , located in city centre , is an English food restaurant with a price range less than £ 20 . The customer ratings is low and it is not family - friendly . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly restaurant that is highly rated by customers at 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns Italian coffee Shop scores a 5 out of 5 customer rating and can be found in the city centre near Clare Hall . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter Less then £ 20 serving Japanese \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a mid - priced eatery in a busy part of town . It specialises in sushi . It is not family - friendly . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Having a high price range , the child friendly Strada has a customer rating of 3 out of 5 \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop located near Café Sicilia which serves fast food and has moderate prices . It is not kid friendly and has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a restaurant providing coffee in the low price range . It is located near The Portland Arms . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||With a price range of £ 20 - 25 in the area of riverside , The Phoenix is rated as average by customers . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Strada is kid friendly and has a moderate price range as well as a 3 out of 5 customer rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese food place near the Express by Holiday Inn in the riverside area . It is family friendly , has a cheap price range , and is an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop offers burgers and fries . It is family friendly and located near The Portland Arms . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : yes||Alimentum is a kid friendly Fast food restaurant with a moderate price in the city centre . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : no||The city centre area has a restaurant called The Rice Boat that serves Indian food . It is not family friendly and has a low customer rating . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Fast food near Café Rouge and is located in the city centre area . Rated low . kid unfriendly \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes||Despite its high price range , The Olive Grove pub , located at Riverside offers Indian food and provides a child - friendly environment \nname : Browns Cambridge | food : English | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge serves English food near The Sorrento in the city centre . However it is not family - friendly . \nname : Alimentum | food : Chinese | price : cheap | area : riverside | family friendly : yes||A cheap , family friendly Chinese food place , Alimentum , is located in riverside . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : no | near : The Bakers||There is an Italian restaurant called The Golden Curry located near The Bakers . It offers averagely price food but is not kid friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace in the city center . , is a coffee shop with fair prices . 1 out of 5 for the ratings . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a Pub situated in the area of Riverside . The pub is kids friendly but has a low rating of only 1 out of 5 . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers cheap English food in Express by Holiday Inn in city centre . \nname : Fitzbillies | food : English | price : £ 20 - 25 | near : The Six Bells||There is a place that does English food near The Six Bells . It 's called Fitzbillies and prices tend to be between £ 20 - 25 . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry family friendly fast food restaurant is next to the Café Rouge \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : riverside||The Mill is a pub which also offers Chinese food . Its price range is moderate and it is in the area of riverside \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||there is a coffee shop in riverside that sells Japanese food called Aromi however the customer ratings are low and families . aren 't welcome \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Although Zizzi has a 1 out of 5 customer rating , it offers a moderate priced , kid friendly venue along the riverside . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub near a Ranch with a high customer rating \nname : Strada | Type : restaurant | customer rating : 5 out of 5||Strada is a 5 out of 5 rated restaurant . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||if you are looking for a coffee shop in the riverside area near Avalon which is not family - friendly then the Blue Spice is in the less than £ 20 range with a low customer rating \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||With an average customer rating , Browns Cambridge Italian food has a cheap price range . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat Chinese restaurant is a moderately priced restaurant with a 1 out of 5 rating . This restaurant is not kid friendly but is located near Express by Holiday Inn . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||With high ratings is the kid - friendly pub Aromi , which is at the riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is an Japanese coffee shop located in riverside with a high price range to suit the upper class we have a 3 out of 5 rating with no children welcome . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||The Cambridge Blue is a restaurant that offers English food and has high customer ratings . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Along with the nearby Yippee Noodle Bar , Asian food is featured at Alimentum , an inexpensive restaurant . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes||The Olive Grove Pub , is a moderately priced , child friendly establishment , located in the city centre , which serves Fast food . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly restaurant with a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Indian food . It is cheap , average customer rating , and family friendly . It is in city centre near Burger King . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a Fast food pub near Café Brazil their price range is low - priced and cheap . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is located near Café Rouge in the city Centre . They serve Chinese food , are family friendly , and were given a high customer rating of five out of five . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||The Cricketers is an Italian restaurant near All Bar One . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly fast food pub located near The Portland Arms . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House offers moderate pricing serving English food near All Bar One . 1 out of 5 . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers serves French food with prices less than £ 20 . It is not family - friendly and has average ratings . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the high price range . It is located in the riverside near the Café Brazil . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||Green Man is located in riverside and has a price range of more than £ 30 while also being kids friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is an Italian family friendly pub with an average rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : high | family friendly : yes||Loch Fyne is a children friendly restaurant that sells fast food and has a high price range . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle is an Italian food venue . The customer Rating is 1 out of 5 . \nname : The Twenty Two | food : Japanese | family friendly : yes||There is a child friendly Japanese restaurant called The Twenty Two . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies , a coffee shop that serves Indian food in the city centre , is not kid friendly , is moderately priced , and has very low customer ratings . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an affordable coffee shop that is highly rated and offers family restrooms . It is near Café Sicilia . \nname : Loch Fyne | Type : restaurant | food : Indian | price : cheap | family friendly : yes||Loch Fyne is a family - friendly , inexpensive restaurant serving Indian food . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree can be found close to The Portland Arms . It is a pub which serves English food and is child friendly . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : no||Strada is a non kid friendly restaurant that is high priced . They have a customer rating of 3 out 5 . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||A place with a low rating that offers English food for less than £ 20 is Browns Cambridge \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : average||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is average . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap Japanese restaurant in city centre . The Rice Boat is a good place to take the kids , it 's right by the Express by Holiday Inn . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is an Italian eatery that is kid friendly , and has a rating of 3 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne has an excellent rating . It is located near The Rice Boat . \nname : The Mill | Type : coffee shop | food : Indian | price : cheap | area : riverside | near : The Sorrento||The Mill , a coffee shop in the riverside area near to The Sorrento , offers cheap Indian food . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||The Cambridge Blue is a French restaurant with a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : cheap | family friendly : yes||Cheap family friendly Chinese restaurant Loch Fyne . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||There is a family - friendly , English pub called Zizzi with an average rating . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is the best Fast food place due to the prices being anywhere from £ 20 - 25 . They are in city centre where the ratings are high . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is located in City centre . It is a family friendly French restaurant is mid - ranged prices . They have a one star rating . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||In the riverside area is The Twenty Two which serves English food and is kids - friendly . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a restaurant in the Riverside area called The Rice Boat with a low customer rating of 1 out of 5 , they serve Indian food and are not child friendly . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves English food , it is located in the riverside and also it 's children - friendly , rated average by customers . \nname : The Golden Curry | food : English | customer rating : average | family friendly : no||The Golden Curry does not cater for families but provide a variety of foods , including English and has been rated to be average . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||With a £ 20- £ 25 price range The Twenty Two is located near The Rice Boat . They are kid friendly and located on the riverside . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House has high prices and high quality sushi to match them . It is found near the All Bar One . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : high||The Indian restaurant , The Cambridge Blue , has a high customer rating . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a restaurant serving French food . Customer rating is 3 out of 5 . It is child - friendly . It is located in the city center . Prices are £ 20 - 25 . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix is a one star , Asian food restaurant , that is located in the city center . \nname : Midsummer House | food : Fast food | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge is a Fast food venue , Midsummer House , with a rating of 1 out of 5 . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Near Ranch you can find family - Friendly place named Cotto with French food rated 5 out of 5 . \nname : Midsummer House | food : Indian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House sells Indian food , a customer service rating 1 out of 5 near Café Rouge \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne in town is a sushi bar moderately priced not family friendly \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a high rated coffee shop providing Italian food in the price more that £ 30 but it is not children Friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is an expensive coffee shop not near the city centre in Avalon and it has bathrooms . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside , near the Express by Holiday Inn is a French restaurant named The Rice Boat . It costs less than £ 20 , but has a low customer rating and is not family - friendly . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||yes its amazing for Italian food and also kids friendly the name of the place is The Waterman . price range normal . area riverside \nname : The Punter | food : Chinese | price : high||The Punter is a Chines restaurant with high prices . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located near to The Crowne Plaza Hotel is the coffee shop The Taste of Cambridge . It does not allow children . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a reasonably priced French coffee shop . It is at the riverside near The Sorrento . \nname : Bibimbap House | food : Italian | price : £ 20 - 25 | area : riverside | near : Clare Hall||An average priced Italian on the riverside is Bibimbap House near Clare Hall . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||In Riverside near to Express by Holiday Inn is children friendly called The Rice Boat . it got good rating and it got fast food at price high . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a family friendly , middle range priced pub serving food . Located near the riverside . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry offers Japanese food in a family friendly environment . The price range is less than 20 English sterling . It is located near The Bakers . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : yes||The Golden Curry is a low rated , family friendly Chinese restaurant . \nname : Cotto | food : English | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Ranch and Cotto offer English food and are both family friendly . They have a customer rating of 5 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||At Riverside , near Yippee Noodle Bar The Alimentum serves serves fast food at moderate prices with a customer rating of 1 out of 5 \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a family friendly restaurant , which unfortunately has low ratings . \nname : The Golden Curry | food : English | price : moderate | family friendly : no | near : The Bakers||The Golden Curry , an English restaurant in a moderate price range that is not kids friendly is situated near The Bakers \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn the middle of the city is an Indian restaurant called The Rice Boat . It offers cheap food with high customer rating and is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced restaurant offering alcohol and Italian food . It is family friendly and located in City centre near Raja Indian Cuisine . \nname : Loch Fyne | food : Chinese | customer rating : low | area : riverside | near : The Rice Boat||Chinese restaurant , Loch Fyne has a low customer Rating ; located on the riverside near The Rice Boat . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||Located on the outskirts of Cambridge is the pub The Olive Grove . It is family friendly at a medium price range . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House serves inexpensive Italian food , and is located near All Bar One . Its customers rate it 5 out of 5 stars . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Located in the centre of the city , The Waterman , is an expensive restaurant serving English food . It is highly rated but is not recommended for children . \nname : Green Man | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is an Indian food restaurant near All Bar One in the riverside area . It is in the high price range and is child - friendly . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman serves Chinese food in the moderate price range . It is family - friendly , located in the City center and has a low customer rating . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill is located in the riverside area , is a pub than has a very good French food with a cost of more of £ 30 \nname : The Golden Curry | food : English | price : high | family friendly : no | near : The Bakers||The Golden Curry is a restaurant near The Bakers with a high price range that serves English food and isn 't children friendly . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||Wildwood is an expensive , one - star pub that serves traditional British cuisine . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a friendly pub with reasonable prices and a lovely clentele , it is located near Café Adriatic \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix serves French food on a riverside with a customer rating of low . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum is a fast food restaurant in the city centre near Yippee Noodle Bar with a customer rating of 1 out of 5 and has a high price range . \nname : Browns Cambridge | food : English | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is near The Sorrento in the city centre , offering family - friendly English food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a family - friendly oriental coffee shop situated along the riverside , offering well - priced food and an excellent 5 - star rated service . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a hight price restaurant near The Rice Boat , this is not a good place for children . \nname : Fitzbillies | food : Indian | price : less than £ 20 | near : The Six Bells||Fitzbillies Indian restaurant near The Six Bells costs less than £ 20 . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly coffee shop that serves French cuisine . The price range is less than 20 European dollar ; however , it has low customer rating . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant that was rated 3 out of 5 . It kid friendly , has a price range of 20 - 25 , and is near the Rainbow Vegetarian Café . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace a low rated French coffee shop is low rated and located at the city centre \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman provides Indian food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is located in the city centre near Avalon . There not kids friendly , it is a coffee shop , 5 out of 5 customer rating , and there price range is more then 30 dollars . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge that serves Japanese food . It is kids friendly and has a price range of £ 20 - 25 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : city centre | near : Café Adriatic||The poorly rated ' Travellers Rest Beefeater ' near Café Adriatic in the city center has quite high prices . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : cheap | family friendly : yes||There is a cheap , kid friendly Japanese restaurant called Loch Fyne . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||An average rated Japanese restaurant in the city centre is The Phoenix . It cost less than 20 euros . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Located riverside , Clowns is has high prices and is ranked 1 out of 5 . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||There is a customer - rated 5 out of 5 Italian pub called Zizzi , which is family - friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||A low priced coffee shop located next to Ranch is Wildwood . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon in Riverside with an average rating that 's also children friendly . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : yes||A family friendly pub in City Centre is Giraffe . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a Japanese coffee shop near Ranch . It serves moderately priced food and has a low rating of 1 out of 5 . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||With a low price range , Alimentum is a family friendly restaurant by the riverside in the City centre . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low - priced restaurant near the Rainbow Vegetarian Café in Cambridge , that serves wines , cheese and soup . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : city centre||The Blue Spice serves Chinese food for less than average prices . It is located in the city centre . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a beautiful Pub providing Fun for the Whole Family Our Prices Will Blow You Away . It is located in the city at 130 southpawn road right across from the Ranch . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : no||Not a child friendly place , Loch Fyne is a restaurant with a high price range that serves Indian food . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||Prices are more than £ 30 . The Golden Palace is a pub located in riverside near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||The fast food restaurant Loch Fyne is a kid friendly place with reasonable prices \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that is family - friendly , serves fast food , has a price range of less than 20 pounds , and has a low customer rating . It is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee Shop is a five star rated family friendly expensive restaurant that also serves wine . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | near : The Sorrento||A coffee shop in the riverside area , The Mill , also sells Indian food for less than £ 20 . They are located near The Sorrento . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly venue , with a low customer rating serving low cost Italian food based in the city centre near Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a moderately priced Indian pub . It is by the riverside and is kid friendly . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is an Indian restaurant with a high customer rating , that is kid - friendly and in the medium price range . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||The low priced Travellers Rest Beefeater is a family friendly restaurant . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a non kid - friendly English restaurant near Rainbow Vegetarian Café with a price range of 20 - 25 and a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a Japanese coffee shop in the city centre area . Customers give Fitzbillies 3 out of 5 stars and a price range of £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a Japanese coffee shop . It has an excellent customer rating and welcomes children , however it is quite expensive . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is located near The Portland Arms . This is a one star rated coffee shop and is not suitable for families . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : no||There is a mid priced restaurant called Alimentum that is not family friendly located near the river . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Family friendly Cocum restaurant has a customer rating of 5 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Near the Yippee Noodle Bar there is an Italian pub named Strada with a 5 out of 5 customer rating \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is an expensive children friendly English food restaurant , near The Bakers . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||If you 're going to the Green Man be sure to check out the All Bar One in the centre of the city . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : city centre||The Phoenix is an average rated Italian restaurant located in the city centre . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||A pub near Yippee Noodle Bar sells Strada which is a French food with customer rating of 3 out of 5 . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : yes||In the city centre is an Italian food restaurant named Alimentum , it is kid - friendly with a high price range . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove a pub in the centre of the city with a price range of more than £ 30 serves French food . Children are not allowed . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is located in the city centre near Café Rouge . It serves Japanese food and has an average customer rating . It is not family - friendly . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||There is a restaurant called The Waterman that serves Chinese . The price range is more than 30 and the customer rating is high . it is child friendly and is in the city centre . \nname : Alimentum | food : English | price : more than £ 30 | area : riverside | family friendly : yes||a kid 's friendly English place with a high price range in the riverside is called Alimentum \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman offers moderately priced fast food in the Riverside area that is kids - friendly and has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is 1 out of 5 . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is located near to The Bakers and it is providing English food in price less than £ 20 . Also it is friendly for family . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : riverside | near : Clare Hall||In riverside near Clare Hall , there is an average rated coffee shop that serves Indian food called Clowns . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no||Cheap and average the Cocum Indian coffee shop is not family friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves excellent Indian food at a high price range in the riverside area near Burger King . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||There is a cheap Japanese restaurant Clowns located in riverside area , near Clare Hall , with low Customer Rating , it 's coffee shop \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||The Vaults is a one - star high - price pub located near the Café Adriatic . \nname : Wildwood | Type : pub | food : Indian | price : more than £ 30 | customer rating : high||Wildwood is a pub that serves Indian food , expect it to cost more than £ 30 , but the customer rating is high . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||for Japanese food you visit Strada near Rainbow Vegetarian Café the price of food is very cheap \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : no||This restaurant in riverside is not kid - friendly . The Alimentum is a moderately priced , English eatery . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||There is a place called Fitzbillies near The Six Bells that serves well priced food . \nname : The Olive Grove | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub that is riverside and children - friendly . You get your food fast and will pay a bit more for it . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that does not provide a family - friendly environment for less than £ 20 . It is located near Café Sicilia that serves French food . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly restaurant and it is located near the river . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum if a sushi food . We have six stars . We have expensive costs . We are close to Yippee Noodle Bar at City Centre . Join us . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Fitzbillies is located near The Six Bells . It is in the low price range . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge is a low rated and cheap establishment . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Strada is a family friendly place with a price under 20 pounds , but the ratings are low . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : no||The Alimentum offers Chinese for in the high price range in the riverside area but is not child friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes||Aromi , a French coffee shop is known for being family - friendly and is located in the city centre , but it has a low customer rating . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||There is a high priced children friendly restaurant in Riverside by the name of Blue Spice , with only an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which serves Indian Food for under £ 20 . It is on the riverside , it is family friendly and is near Raja Indian Cuisine . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a Japanese restaurant in City Centre that offers meals in the low price range with a customer rating of 5 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||the Taste of Cambridge is a restaurant that has a customer Rating of 5 out of 5 with a price range of more than £ 30 per person \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Luton based highly rated children friendly venue serving fast food in the mid - range price bracket . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : no||Alimentum , located in the city centre , serves Chinese food . It is not child friendly and is moderately priced . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Low priced Japanese food is available in the city centre at Strada near to the Rainbow Vegetarian Café . Families are welcome there but it has a low customer rating . \nname : Aromi | Type : restaurant | food : Japanese | area : city centre||Aromi is a restaurant located in the city centre that serve Japanese food . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : yes||For Indian food in a family friendly setting and for less than £ 20 , you can try The Vaults . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : no||There 's no excuse to The Wrestlers overpriced lowbrow obscene French entertainment . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Café Sicilia near The Punter . Cheap Japanese family has restaurant coffee . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge It serves Japanese food and good prices It is located next to Crowne Plaza Hotel \nname : Midsummer House | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Cheap Chinese food , Midsummer House , near All Bar One . Customer rating 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | price : £ 20 - 25 | family friendly : yes||A kid friendly English restaurant in the 20 to 25 pound range is Loch Fyne . \nname : Strada | Type : restaurant | customer rating : high||Strada is a restaurant with high ratings by its customers . \nname : Fitzbillies | food : Japanese | price : cheap | near : The Six Bells||Located near The Six Bells Fitzbillies is a cheap Japanese place \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a French restaurant with a high customer rating , a price range of £ 20 - 25 and is not kid friendly . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : yes||The Green Man is located in the city centre and is a child friendly place costing on average more than £ 30 . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop that offers sushi that is low priced . However , it is not family friendly and is rated 1 out of 5 stars . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||The Golden Palace is a restaurant in riverside with an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Fitzbillies coffee shop offers highly priced Indian cuisine in the city centre . It is rated 1 out of 5 and is very children friendly . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no||The Olive Grove is a moderate priced pub that serves Indian food in the Riverside area , it is not child friendly . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Along the riverside is the children friends English restaurant , Green Man . Conveniently located close to All Bar One please be aware that the Green Man menu is in the higher price range . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two serves Indian food and allows children . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a children - friendly , highly rated English restaurant , and it is at the riverside , near Café Rouge . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a moderately priced kid friendly French restaurant near The Bakers . \nname : The Eagle | food : Italian | customer rating : average||with 3 out of 5 stars The Eagle is a Italian restaurant \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||The Punter in riverside , is child friendly , average priced and near The Portland Arms . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is a budget friendly option with Japanese food costing less than 20 euros . However , it is not family - friendly . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is an adult - only establishment with mid - level prices located next to Express by Holiday Inn . \nname : The Phoenix | food : Chinese | customer rating : low | area : riverside||The Phoenix , located in the riverside area , is a Chinese restaurant with low customer ratings . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is a restaurant in the riverside area that is low priced . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||There is a Italian restaurant Alimentum with high prices located in city centre near Yippee Noodle Bar . Average Customer rating . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman offers cheap English food , it is average rated and located in the city centre , not family - friendly . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada its a average high Fast food restaurant located near Rainbow Vegetarian Café \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice is located outside of the City Centre . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly Chinese restaurant in Riverside . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a low - priced restaurant in near riverside that delivers take - away . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : no||Riverside boasts the Green Man , a mid - range , child - friendly restaurant . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 5 out of 5||The Cambridge Blue is a restaurant which serves Chinese food with a customer rating of 5 out of 5 \nname : The Eagle | food : Japanese | customer rating : low||There is a restaurant called The Eagle serving Japanese food . It has a low customer rating . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||The Phoenix is a cheap Japanese eating experience located in City Centre . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located down by the riverside , Zizzi is a coffee shop which is kid friendly , has a customer rating of 3 out of 5 and a average price range of £ 20- £ 25 . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House sells cheap Chinese food near All Bar One , with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Want a place to take your children in the city centre , Fitzbillies coffee shop may be for you , with it 's excellent customer rating and French food from £ 30 . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near The Crowne Plaza Hotel , has Italian food in a family friendly atmosphere . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman serves Chinese food for less than £ 20 in the city centre . It is family friendly and has low customer ratings . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a high priced restaurant located next to The Bakers . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House has a 5 out of 5 rating , for more than 30 euros you can enjoy their Japanese cuisine . Located near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Japanese food serving Fitzbillies is a children friendly coffee shop situated in the city centre . It has high prices and has received low rating . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||An expensive coffee shop called Cotto is in the northern part of the City centre . It is a highly recommended shop near The Portland Arms . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is near the Rainbow Vegetarian Café . It is Chinese food moderately priced , for a kid friendly atmosphere with a 1 out of 5 rating . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a highly rated restaurant located near The Portland Arms . It is a family - friendly shop offering coffee and Italian food , Customers has given the location a high rating of 5 out of 5 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Moderately priced Chinese food that is kid friendly is found at The Rice Boat . It is in Riverside near the Express by Holiday Inn . It is rated 1 out of 5 and is moderately priced . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a high priced coffee shop that is family friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil serving Italian food in the high price range . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant that is located in City Centre next to Express by Holiday Inn . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||An affordable and quality French restaurant is Browns Cambridge . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a low priced coffee shop which also provides food . Rated one star this restaurant is located near to Café Sicilia and unfortunately does not allow children \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall is a fast - food coffee shop on the riverside named Clowns . It has a perfect 5 out of 5 customer rating . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : no||Strada is a cheap place that is not family - friendly and has a customer rating of 5 out of 5 . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : no | near : Café Rouge||There is a Chinese pub called The Plough with a moderate price range . It is located near Café Rouge and it is not kid - friendly . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House by the riverside and close to Clare Hall provides English food for under £ 20 . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a family - friendly coffee shop in the city center near the Avalon with an average customer rating . The price range is less than 20 pounds . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||Highly priced and mid rated , The Golden Palace coffee shop has riverside views to enjoy their fast food by . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a cheap Italian restaurant . It has an average customer rating and is family - Friendly . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : cheap||The Dumpling Tree is a restaurant serving Chinese for a cheap price . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : yes | near : The Sorrento||The Browns Cambridge is a family friendly eatery that provides Japanese food . It is located in the city centre near The Sorrento \nname : The Punter | food : Indian | price : £ 20 - 25||The Punter , a restaurant with Indian Food is a good place to eat , price isn 't cheap , its between £ 20 - 25 \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Not far from the Express by Holiday Inn , you will find The Rice Boat . This restaurant has a fantastic rating of between 3 and 5 for the excellent French food . Though not family - friendly , is offers food in the higher price area . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Cocum is a child friendly pub with a price range of more than £ 30 and a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an Indian coffee shop in a moderate price restaurant . It is near Burger King in riverside and is not a kid friendly place but it does have an average rating . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly fast food restaurant with a price range of less than £ 20 located in Riverside . However , it has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low priced three - star coffee shop located next to Burger King . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove pub serves Japanese food on the riverside . Its price range is more than £ 30 , but it is child friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Located near The Sorrento in the riverside area , Browns Cambridge is a family friendly restaurant serving English food . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry , specializes in French cuisine . Suitable , and loved by the whole family . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is children friendly and serves Chinese . It has a high price range and a low customer rating of 1 out of 5 . \nname : Alimentum | food : English | price : more than £ 30 | area : riverside | family friendly : yes||Children Friendly and more than £ 30 , Alimentum has English food is by the riverside \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly moderately priced Italian food venue . It is rated 1 out of 5 and is near Rainbow Vegetarian Café . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Family - friendly Italian restaurant The Wrestlers provides cheap food , but it has a low rating with customers . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||With a five star rating , The Waterman is a burger and chips restaurant suitable for families at a mid - price range . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||You can find coffee shop Zizzi in the city centre where children are welcome . Prices are average for the area and it has a customer rating of 3 . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that serves Indian food and is near The Portland Arms . It allows children . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub which is rated five stars . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove pub serves inexpensive French food in the city center . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||Italian restaurant The Cricketers is located near All Bar One . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers Fast food priced high near Rainbow Vegetarian Café rated 1 out of 5 family friendly . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid - friendly French restaurant . It has a customer rating of one out of five and is in the moderate price range . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||If you don 't want to be near kids , then The Vaults is not the place for you , only if you want Italian food . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Clowns pub in the riverside area has a price Range of more than £ 30 with a high customer Rating \nname : Blue Spice | food : Indian | price : £ 20 - 25 | area : riverside||An Indian restaurant called Blue Spice is in the riverside area , offering meals in the price range of 20 - 25 pounds . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop that is children friendly in riverside . The name is Browns Cambridge . Their customer rating is high and they serve Italian food . They are near the Crowne Plaza Hotel . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop in riverside serving French food . They are not child friendly , have a low customer rating and are in the price range of more than £ 30 \nname : The Phoenix | food : French | customer rating : low | area : riverside||While the customer rating is low , The Phoenix provides a unique dining experience . The Phoenix is a French restaurant that has a nice riverside location . \nname : Loch Fyne | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat at riverside is a Japanese place called Loch Fyne . the customer rating is 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Italian food with a average customer rating it is family friendly located near Café Rouge , and \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a five star , low cost seafood establishment situated close to All Bar One \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||coffee Shop , Fitzbillies offers Indian food at a moderate price range . Customers rated it 3 out of 5 and is located in the City Centre . However not kid friendly . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||There is a pub called The Mill in the riverside area , which offers moderately expensive French food . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : city centre | near : Clare Hall||In the city centre , near Clare Hall , is a coffee shop named Clowns . It serves Italian food and has a customer rating of average . \nname : The Eagle | food : French | customer rating : 5 out of 5||With a customer rating of 5 out of 5 , The Eagle is a French restaurant . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||Moderately priced pub , near Rainbow Vegetarian Café in the riverside area is called The Golden Palace . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||Near The Portland Arms is a restaurant The Punter which has a price range of less than £ 20 named The Punter which is not so much family - friendly \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an Italian restaurant near Yippee Noodle Bar in the city centre . It has moderate prices and a 1 out of 5 rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop in the riverside area that is family - friendly , offers fast food . options , but has low customer ratings . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum is a family - friendly , well priced English restaurant along the riverside . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||The restaurant Browns Cambridge provides French food and has an average customer rating . The price range is less than £ 20 . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a cheap Italian coffee shop near The Portland Arms in the city centre . It has an average customer rating . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : moderate | near : Café Brazil||The Cambridge Blue Pub which is located near Café Brazil has Chinese food in moderate price range . \nname : Blue Spice | food : Fast food | price : high | area : riverside||Blue Spice is a high priced fast food restaurant in the riverside area . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman offers Italian food with a price range between £ 20 - 25 . It has high customer rating and there is no kids area . It is located in the riverside . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||In the riverside area there is a pub named Giraffe that is not family - friendly . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat is located near Rainbow Vegetarian Café . It has a low customer rating and a price range of more than £ 30 . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||Near the city centre is an expensive pub called The Mill . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There 's a coffee shop that has Fast food with a high customer rating . Its called The Eagle and it 's on the river side by Burger King . It 's family friendly but expect to pay around 30 Euros . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum , a family - friendly coffee shop is serving Italian food . They have a moderate price range , are kid friendly , and have a customer rating of 3 out of 5 . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : yes||Zizzi is a family friendly pub serving Indian food . It has a low customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||With prices starting with 30 £ and rated 5 out of 5 , The Eagle impress with the riverside view . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||For £ 20 - 25 , The Waterman offers fast food in the city center . Highly rated but not kids friendly . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove located in the city centre is a non child friendly pub in the price range of more than 30 . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a high rated Italian restaurant costing more than £ 30 . It is not child friendly . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub offering Indian Food , it is child friendly and it is located near The Portland Arms . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||The Plough is a family friendly restaurant near The Bakers with a high price range . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue is a lowly rated city centre restaurant serving fast food . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the moderate price range . It has a customer range of 3 out of 5 . It is located in riverside near Express by Holiday Inn . It is kids friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||If you are looking for Fast food in a child friendly location the Loch Fyne restaurant is ideal \nname : Cotto | food : French | customer rating : high | family friendly : yes | near : Ranch||There is a French , kids friendly restaurant named Cotto near Ranch that has high customer ratings . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Cocum is a cheap and family friendly coffee shop also offering fast - food , it has an average customer rating \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||For a coffee shop that 's family - friendly , check out the Giraffe near The Bakers . The customer rating is average and the prices are cheap . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns ' coffee shop is located by the riverside at Clare Hall . The food served is Japanese and it has a low rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||There is a Chinese pub called Giraffe on the riverside and yes it is kids friendly \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a restaurant in the city centre that serves Japanese food in a non - family - friendly environment . They have earned a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves expensive Japanese food in the city centre near Express by Holiday Inn . It has a customer rating of 5 out of 5 and is not child friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop providing take - away deliveries in the medium price range . It is located close to the city center . and has a superb view across the river . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop , that offers Chinese food with fair prices . They have 3 stars and is located in the city center . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||Fast food coffee shop The Golden Palace , near the riverside , is being rated one out of five because of the moderate pricing . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia that offers low priced fare and is family friendly . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is Family friendly Fast food less than £ 20 and low customer Rating near to Express by Holiday Inn . It is located in riverside \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub . Low rating near the Ranch . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a high customer rating Japanese food with price ranging from £ 20- £ 25 , however is not kids friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood has high customer ratings and is in the normal price range . They are located near the coffee shop Ranch . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : city centre||Low rated Japanese food pub called The Waterman is located in city centre . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||There is a cheap coffee shop called The Dumpling Tree located in the riverside area near Café Sicilia . It is not family friendly . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Located near the Ranch , Cotto serves Indian food and is child friendly . It has a customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a French coffee shop bear Crowne Plaza Hotel in Riverside , though it is not family - friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Wildwood is a coffee shop with a three star rating and a low price point . It serves pasta , and can be found near Ranch . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||By the riverside and The Rice Boat , there is a French eatery called Loch Fyne . It is not the best . \nname : Wildwood | Type : restaurant | family friendly : yes||Children are welcome at Wildwood restaurant . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||There is an Italian restaurant located in Riverside called The Phoenix whose rating is high . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kids friendly Japanese food place with a customer rating of 1 out of 5 and a moderate price range . it is the city centre near the Express by Holiday Inn . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon in the high price range . It is located in the city riverside 1 out of 5 customer rating and children friendly yes \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry serves Fast food near The Bakers and is family friendly and has a cheap price range \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a moderately priced Indian restaurant , The Waterman , which is kids - friendly and has a customer rating of 3 out of 5 , located in the city centre . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop , cheap fast food on the riverfront , near The Sorrento . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub with fast food less than 20 near Café Brazil . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||The Waterman is a £ 20 or less French , family - friendly place with an average rating . its located in the city centre \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man has amazing English food for sale at moderate prices . Located in the city centre near All Bar One , and no kids allowed . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is located by the river and serves fast food . It has a mid price range with a one star rating . \nname : The Plough | Type : pub | food : English | price : high | family friendly : no | near : Café Rouge||The Plough is a pub which serves English food for high prices . It is located near Café Rouge and it is not children friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||In the riverside area , a children - friendly option for French food is Alimentum which costs over 30 pounds . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Costing more than £ 30 , Blue Spice is located in the city centre . It is not kid friendly and has a low customer rating . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Fast food restaurant located in the city centre near Café Rouge . It is not a family - friendly restaurant with a low customer rating . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||A children friendly place near The Six Bells , is The Golden Curry . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a kid friendly place that provides Italian food and is located in riverside . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : yes||Located in the city centre , Giraffe is a family - friendly pub that serves English cuisine . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There is an Italian coffee shop called Fitzbillies that is child - friendly . It is located by the riverside has high customer ratings and its prices range from £ 30 . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Near riverside and The Sorrento , Browns Cambridge serves Indian food and is children - friendly . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : no | near : The Portland Arms||The Punter is not family - friendly , but it has a price rage of less than £ 20 . It is located near The Portland Arms in city centre . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low priced restaurant providing tradition English breakfast . Family friendly located near Express by Holiday Inn \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||At a price range of more than £ 30 , the coffee shop Cotto in riverside serves Fast food near The Portland Arms and has a high customer rating . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a Family friendly Chinese food restaurant in the city centre that is less than £ 20 and near All Bar One . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat , located in the riverside area , is a restaurant that is regarded highly by its customers for its family friendly atmosphere and tasty Chinese food . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : 5 out of 5||Browns Cambridge provides Chinese food in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two is a restaurant that serves British - style breakfast near the river . Families are not allowed . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman received a high customer rating and the price range is more than 30 pounds . This child friendly fast food restaurant is in the riverside area . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||In Riverside , The Olive Grove is a pub that serves Italian food . It is family friendly and its price range is less than £ 20 . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a Japanese restaurant in the city centre near All Bar One , and is best suited for customers without children . restaurant prices range is less than £ 20 . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a not - for - kids Indian restaurant in Riverside that has a customer rating of 3 out of 5 and moderate prices \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : yes||A child friendly Indian restaurant called The Wrestlers is in the high price range and rated average by its customers . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||Located near All Bar One is a low - priced 3 star restaurant called the Midsummer House . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in riverside serves a £ 20 - 25 price range Japanese food . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : average||Customers rated a Chinese restaurant called The Cambridge Blue as average . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns has a 3 out of 5 customer rating serving French food in a coffee shop setting near Clare Hall in the riverside area . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada with a low rating and price range less than £ 20 is not family - friendly . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a pricey Indian restaurant with average ratings . It 's near Yippee Noodle Bar , in the city centre . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||There is French restaurant called Fitzbillies near The Six Bells with items in the £ 20 - 25 price range . \nname : The Rice Boat | food : English | area : riverside||Located on the riverside , The Rice Boat serves traditional English cuisine . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman serves English food and has a moderate price range . It is kid friendly . The customer Rating is 1 out of 5 . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House is a mid - priced restaurant with bad reviews near All Bar One . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove pub is in the City center . and is low priced . It also serves meals . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly Japanese coffee shop called The Wrestlers which is located near Raja Indian Cuisine in riverside . The price range is more than £ 30 . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a pub serving Italian food . It is family - Friendly and located riverside . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||Riverside has an average priced pub near Rainbow Vegetarian Café named The Golden Palace . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||There is a pub in riverside that has Chinese food for less than £ 20 called The Olive Grove . It is not family friendly . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Italian The Golden Curry is kids friendly . It is near Café Rouge . Customer rating is high . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||There is a restaurant , located in riverside , that is called The Waterman . It has a 3 out of 5 rating , and is a pub serving Japanese food . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||A one star restaurant called The Golden Curry offers a variety of food not suitable for families . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a highly rated restaurant on the Riverside , near The Rice Boat . It offers average prices and features a high customer rating , however it is not recommended for kids . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop serving Fast food with an average customer rating situated near Crowne Plaza Hotel in the riverside area . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum serves fast food in the city centre near Yippee Noodle Bar with cheap food and average customer ratings . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : yes||The restaurant Loch Fyne serves Chinese food , is kid friendly and has a moderate price range . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||Cheap Italian food is served at the conveniently located Midsummer House , near All Bar One \nname : Blue Spice | food : French | price : moderate | area : city centre||The Blue Spice serves French food . It has a moderate price range and is near the city centre . \nname : Loch Fyne | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is 3 out of 5 . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : no | near : All Bar One||In the center of city , near All Bar One is located Green Man restaurant of Japanese food moderate price \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||This place is a nice pub with a price range that is moderate also the food is Italian and the name is Wildwood and contains a very high rating with 3 out of 5 star reviews all across the board . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House serves breakfast in the mid price range near All Bar One . It has fair customer reviews . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a child friendly French restaurant that by the riverside . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a great coffee shop that serves French food . It near Crowne Plaza Hotel in the riverside area . \nname : Green Man | food : Indian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is an Indian food restaurant near riverside . and All Bar One . It is family - friendly and low - priced \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||For reasonable riverside , fast food . visit The Golden Palace coffee shop . \nname : Alimentum | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum offers Chinese food in the riverside area . It 's children friendly , but it costs more than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Indian by the riverside close to the Crowne Plaza Hotel not suitable for families \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||A coffee shop named The Eagle sells Italian food is not family - friendly and the price range is cheap with a customer rating 5 out of 5 located in riverside near Burger King \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||With a customer rating of 5 out of 5 . Cocum is a children - friendly restaurant . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : no||There is an Italian restaurant with an average rating in the riverside area called The Rice Boat , please note this is not a family - friendly restaurant . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat has an average customer rating and high price range . It is located near the Rainbow Vegetarian Café . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 3 out of 5||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is 3 out of 5 . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has 5 out of 5 customer rating and is near Rainbow Vegetarian Café . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : city centre | near : Café Adriatic||Low rated Travellers Rest Beefeater located in the city centre near Café Adriatic . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no||In city centre is an averagely rated adult coffee shop called Aromi which serves French food . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||In the city centre there is a low priced restaurant - The Waterman - which has been rated average by customers . It serves fast food , and it low priced . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : city centre||The Waterman is an English - style pub with an excellent customer rating of 5 out of 5 . It is located in the city centre . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Bibimbap House serves cheap English food by the riverside , near Clare Hall . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : city centre||The Waterman is a pub serving Indian food . The customer rating is average and it is within the City Centre . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a highly priced coffee shop located in the city centre . It offers Italian food and its located near The Portland Arms . Its rating is average . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child friendly , fast food coffee shop . It is located by the Crowne Plaza Hotel in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||There is a Japanese restaurant named Loch Fyne that is kid friendly . \nname : Midsummer House | food : Chinese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a Chinese restaurant with high customer ratings and great price range located near All Bar One . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a not family - friendly restaurant , whit low price and Italian food , this restaurant is near Express by Holiday Inn and in the riverside area . but the rating is pretty low . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn has a great customer rating , is kid friendly but has a high price £ 30 . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry , a mid - priced restaurant that offers wine , cheese platters , and fondue is not family accessible . The Bakers restaurant is the closest establishment . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi coffee Shop , is an excellent Café restaurant very good attention \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family restaurant and very expensive . It 's close by the Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is an Indian coffee shop near Ranch . The customer rating is high and the price range is £ 20 - 25 . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||At the riverside , near to Café Sicilia , The Dumpling Tree is a child friendly coffee shop with a price range between £ 20 - 25 . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a three star family friendly restaurant near the River and Chesterton Rd that is in the higher price range . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an Italian joint located new Yippee Noodle Bar in the city centre . Moderate price range , 1 out of 5 stars . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||With high reviews and low costs , Midsummer House is located near All Bar One . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||The Giraffe is a coffee shop near The Bakers . It has good reviews , family friendly and is expensive . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||In riverside there is a restaurant called The Golden Palace with an average customer rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||The Cambridge Blue pub , near Café Brazil , has cheap and tasty Italian food to serve while you meet up with your chaps . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is located in the city centre and is family friendly . It serves Indian food and has an average customer rating . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop , in the high price range , offering Indian style cuisine . It is rated by customers a 1 out of 5 and offers a children friendly atmosphere near Café Sicilia . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe coffee shop is family friendly coffee shop . We are near The Bakers . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : no||Loch Fyne is a medium - priced Chinese restaurant , not kid friendly . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is an Indian restaurant in riverside with a 1 out of 5 rating in a moderate price range . It is not kids friendly . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : riverside||Located near riverside , The Waterman is a 5 out of 5 pub where you can eat Indian food . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Indian food It is near The Portland Arms . Its customer rating is low . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop providing Indian food in the high price range . It is near Ranch . Its customer rating is 1 out of 5 . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Italian restaurant . Located in the city centre near Yippee Noodle Bar , they are rated 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||Italian coffee shop The Punter offers a price range of more than £ 30 with a high customer rating . It is not children friendly and is located near Café Sicilia . \nname : Bibimbap House | food : Chinese | price : more than £ 30 | area : riverside | near : Clare Hall||There is a venue that serves Chinese food in riverside called Bibimbap House . Its prices are above average and it is located near Clare Hall . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns , an Italian coffee shop , is located in the riverside area near Clare Hall . This spot has a one out of five customer rating . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat restaurant has an average customer rating that services French good that is in City Centre near Express by Holiday Inn and is not family - friendly and has a price range of less than £ 20 . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat It It offers a very nice trips a few prices Located near Rainbow Vegetarian Café \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a English style restaurant that is not kid friendly . The customer rating is 5 out of 5 , and is located in city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel in the city centre is a coffee shop named Taste of Cambridge . They serve Japanese food and are not family - friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap restaurant The Rice Boat located on the riverside near Express by Holiday Inn . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||In the city centre there is a coffee shop called Zizzi which offers low quality food at a cheap price . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located in the City centre , in close proximity to fast food outlet Burger King , you will come across The Eagle , a kids friendly coffee shop serving Italian cuisine . With a customer rating of 1 out of 5 , prices fall into the moderate price range for this establishment . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||If you want something in the city centre , near Express by Holiday Inn , ' The Rice Boat ' is your thing . The place is children - friendly , but the price range is quite high . It has not become a very popular choice since the customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located on the riverside near Burger King , The Eagle is a coffee shop that also serves Indian food . With a moderate price range and a customer rating of 3 out of 5 , it is also a kid friendly place . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry serves Italian food . It is children Friendly with an average customer rating . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||Bibimbap House restaurant offers a variety of food and drinks located close to Clare Hall . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix at riverside costs less than £ 20 serves English food has a low rating \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two riverside restaurant gate English good food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Near the river is Alimentum , a cheap Sushi restaurant , suitable for adults only . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop , near The Portland Arms , also serves fine food and is for the whole family . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a family - friendly eatery serving French food . It is located near All Bar One in the centre of the city . Typical prices are less than twenty pounds . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : no||The Rice Boat in riverside is an average rated restaurant , it serves Japanese food . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar on the riverside , Alimentum has a low rating but serves Japanese food for more than £ 30 . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||The Clowns coffee shop has a 3out of 5 rating and is located near Clare Hall . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is an All Bar One in Riverside that you can enjoy the atmosphere for less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies , a Japanese coffee shop , is the in the center of the city , with a rating of 3 out of 5 . It is not kid friendly and has a price range of l20 - 15 . \nname : The Twenty Two | food : French | area : city centre | family friendly : yes||A French food serving restaurant called The Twenty Two is family - friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Located near Ranch , Wildwood is a Japanese coffee shop rated 5 out of 5 . Prices are typically more than £ 30 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that serves French food around The Portland Arms and is family friendly \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies , near Express by Holiday Inn , is family friendly . Prices are less than £ 20 and it has an average customer rating . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high - priced restaurant which is family friendly . It offers wines and cheeses . It is rated 3 stars and is located in the City centre near the Express by Holiday Inn . \nname : Midsummer House | food : Chinese | price : high | customer rating : average | near : All Bar One||Midsummer House is an expensive , average rated Chinese restaurant near All Bar One . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||For a cheap riverside Japanese coffee shop that has a customer rating of 5 out of 5 , go to The Golden Palace \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Near The Six Bells is an Italian restaurant called Fitzbillies in the higher price range . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city center area near Burger King is a child friendly French food coffee shop in the high price range named The Eagle and was given a customer rating of 3 out of 5 . \nname : The Vaults | food : English | price : high | family friendly : no||The Vaults is a high priced , non - child friendly English restaurant . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is a cheap fast - food joint near Clare Hall in the riverside area . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is located by The Rice Boat in the city centre . It is not kid friendly , but is in the price range of £ 20 - 25 . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||A nice Japanese restaurant in the riverside area would be Aromi . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The Plough is pub serving moderate price English food in a kids - friendly atmosphere located near Café Rouge . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||5 out of 5 customer Rating , Aromi is by the riverside , serves French food and is also a coffee shop \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||The Japanese restaurant , The Wrestlers , is not child - friendly , has received low ratings and costs more than £ 30 . \nname : Bibimbap House | food : Italian | price : more than £ 30 | area : riverside | near : Clare Hall||In riverside near Clare Hall is Bibimbap House which serves Italian food and has a price of more than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with a family - friendly atmosphere . They serve Italian food and are located near the Crowne Plaza Hotel in the city centre . They have a low customer rating . \nname : Cotto | price : moderate | area : city centre | near : All Bar One||The moderately priced Cotto is near the city centre and All Bar One . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix restaurant , on a low budget , with unbelievable great Indian food , approved by everybody \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop offering Indian food . It has an average customer rating and is not family friendly . It is located in the riverside area near the Crowne Plaza Hotel . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge has a moderate price range for English food . The rating is 3 out of 5 . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||Near The Rice Boat in riverside , there is an organization called The Twenty Two . They have earned a 5 out of 5 rating ever since they made more than £ 30 and switched to not be child friendly . \nname : Green Man | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man offers family friendly fast food from 20 - 25 . It is located on the riverside near All Bar One . \nname : The Twenty Two | food : Fast food | family friendly : no||An adult restaurant named The Twenty Two has fast food . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is an English Style pub in the low price range just north of the City Centre . No Public restrooms available . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge is a nice place for inexpensive food and drinks . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no||Aromi is a Japanese coffee shop located in the city centre . It is not a family - friendly place and has an average customer rating . \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||Kid friendly , French food priced around £ 20 - 25 at The Vaults . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop which serves Indian food , high prices , customer rating 1 out of 5 , location city centre near Burger King , sorry no children \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced coffee shop serving fast foods located in the city centre . It is not kid friendly and has a low customer rating of 1 out of 5 . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a child friendly Chinese restaurant in the city Centre area . Its price range in moderate and is rated 3 of 5 stars . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop located near Clare Hall in riverside , which serves Italian food . It has an excellent customer rating of 5 out of 5 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a low priced fast food restaurant suitable for all ages . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Riverside - area coffee shop Clowns , near Clare Hall , serves Italian food to a customer rating of 5 out of 5 . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry offering a family friendly environment serving English food , has a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a cheap French coffee shop with a 5 out of 5 rating but is not family - friendly . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||A restaurant with average reviews for less than £ 20 is Taste of Cambridge . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||The fast food coffee shop , Cocum , is family friendly and is high priced with an average rating . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||With a customer rating of 5 out of 5 , Cocum is a family friendly restaurant . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a kids friendly restaurant that serves Japanese cuisine . Price ranges between £ 20 - 25 with customer rating of 3 out of 5 . \nname : The Twenty Two | food : Fast food | family friendly : yes||There is a fast food restaurant called The Twenty Two . It is child friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an average - priced coffee shop near Raja Indian Cuisine , by the river . Kids welcome . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the high price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : city centre | near : Clare Hall||There is a coffee Shop called Clowns that has average Indian food . It is located at the city center near Clare Hall . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||By the riverside Fitzbillies fast food coffee shop caters for children , high end prices range with customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||In the cheap price range , try The Mill . It is a Fast food pub in the Riverside area . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves sushi and is family friendly . It it located near Café Sicilia . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Indian restaurant which is cheap . It has an average customer rating and it is not family friendly . It is located near Rainbow Vegetarian Café \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||There is a cheap restaurant named The Phoenix serves Indian food with low ratings . It is located at the riverside . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman has English food it is kids friendly and is near Crowne Plaza Hotel because you are obviously coming \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Zizzi pub is Kids Friendly . It offers Indian food . The customer Rating is 1 out of 5 . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a restaurant that serves sushi and is the mid price range . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food place in the city centre near Express by Holiday Inn which is in the high price range and has a average customer rating it is not child friendly \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman Indian isn 't family friendly and is rated low by customers . It 's less than £ 20 and is by the riverside . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood serves Italian food in a pub atmosphere for tourists on a budget . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly fast food option , next to the river . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||For all it 's average customer rating , The Golden Curry in Riverside serves English food and is family friendly . It is located near Café Rouge . \nname : Wildwood | Type : pub | food : Indian | price : £ 20 - 25 | customer rating : high||Wildwood is a pub that serves Indian food in the price range of 20 - 25 pounds . It has high customer ratings . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Close to The Rice Boat in the riverside area is Bibimbap House . It serves Japanese food . \nname : Cotto | price : moderate | area : city centre | near : All Bar One||Near All Bar One is Cotto , near the city centre and has a moderate price range . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||There 's a family friendly place called Fitzbillies , near the Express by Holiday Inn . It 's pretty comparable to places around and the price range is under 20 pounds . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids friendly pub serving Japanese food . It is located near The Portland Arms . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers serves medium - priced Indian food and coffee in the city centre . It 's by Raja Indian Cuisine . Don 't bring your kids . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Chinese food in the high price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle in Riverside is a coffee Shop located near Burger King is child friendly , has a 5 out of 5 customer rating serves Japanese food and costs more than £ 30 . \nname : The Vaults | food : Japanese | price : high | family friendly : yes||The Vaults is a high price range Japanese restaurant . It is child - friendly . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is family friendly and offers Chinese food with a 5 out of 5 rating . It is located in the city centre near Café Rouge . \nname : The Vaults | Type : restaurant | food : French||For French food , visit The Vaults restaurant . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves Italian food . The price range is high but it is children - friendly . It is located near Raja Indian Cuisine in the riverside area . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Near Ranch , there is an expensive , one - star coffee shop serving sushi called Wildwood . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||A pub located near Café Rouge is called The Plough . The pub has fast food , and is family friendly , but the prices are high . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Italian food can be found at the coffee shop Fitzbillies . It has a customer rating of 1 out of 5 , is not kids - friendly , and is in the city centre area . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||The Dumpling Tree is a cheap restaurant of Italian food . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is average . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an averagely rated establishment serving French food . This adult establishment can be found in the city centre near Café Rouge . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||in the riverside area of the city near The Sorrento you can find The Mill , The Mill is a French coffee shop with prices starting at more than £ 30 \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry welcomes families of all ages who are looking to enjoy Indian cuisine . This establishment received an AVERAGE customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop that is family friendly serving Japanese food close to the riverside with a low customer rating \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a Italian restaurant with a moderate price and a rating 3 out of 5 \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Fitzbillies is a low - priced restaurant in The Six Bells that is a spaghetti food . \nname : The Plough | Type : pub | food : Italian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a pub serving Italian food near to Café Rouge . The price range is about average and kids are welcome . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a coffee shop which serves Indian food . It has a customer rating of 5 out of 5 . It can be found near Crowne Plaza Hotel within the City Centre . It is family friendly . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto is an affordable place located on the riverside near All Bar One \nname : Midsummer House | food : English | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House Is An English Café . It Is Located Near Café Rouge . It Has A Customer Rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap coffee shop Fitzbillies with a five - star rating located near the river . It serves Italian food and is family - friendly . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : riverside||Theres a pub called The Waterman just outside City centre . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a riverside French coffee shop known for its popularity with kids . It is located near the Crowne Plaza Hotel . \nname : Midsummer House | food : Indian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is an Indian food restaurant near All Bar One that has high customer ratings and a high price range . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||In the Riverside area , there is a coffee shop which serves Italian food , the customer rating is 3 out of 5 , the price range is moderate by the name of The Golden Palace . \nname : The Vaults | food : English | price : moderate | family friendly : yes||There is a Friendly kids called The Vaults serving English food moderate average . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix , which is rated 1 out of 5 , serves moderately priced Japanese food at the riverside . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||A place that has a customer rating of 3 out of 5 and serves Japanese food is The Eagle . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Wildwood pub is serves burgers and is affordable . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||Wildwood is an average rated pub with English food . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree restaurant serves Italian food . The price range is moderate . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill which is Italian pub that costs a moderate amount is in riverside . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||This 1 star family coffee shop right off the river is called Fitzbillies . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop that offers French food . Customer ratings are low . It is located in the city center . Prices are less than £ 20 \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||In the riverside area there is Zizzi . A average rated , high priced coffee shop , and yes it 's kid friendly , \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||If you are in the riverside area , Zizzi is an adult oriented coffee shop with a low customer rating and a low price range of less than £ 20 . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||Wildwood , a Japanese restaurant , is an affordable place to eat if you are looking for a quick bite . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a restaurant located on Ranch , food is very good \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap , low rated French restaurant . It is family - friendly and located near to Rainbow Vegetarian Café . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is a cheap coffee shop Cotto with a 5 out of 5 customer rating that serves Indian food in riverside . They are located near The Portland Arms . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is an English restaurant . It is kid friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : £ 20 - 25 | family friendly : yes||Loch Fyne is an English restaurant that is kid friendly , and has a price range of £ 20 - 25 . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly , Japanese pub , with a low customer rating and prices less than £ 20 . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced restaurant serving pasta . It is family friendly . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||French food is not family - friendly . The Wrestlers is a cheap alternative option with customers rating it as a 5 out of 5 . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Strada is a restaurant rated 1 out of 5 by the customers . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||At the end of the city is a high priced fast food restaurant called Alimentum . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves English food and is family friendly , it is situated in the riverside area near The Sorrento . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub on the river meant for families , with a high price range . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||With a high price range and customer rating of 1 out of 5 , The Wrestlers is a non kid friendly English restaurant . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : city centre||The Waterman is a pub downtown that serves Indian food but isn 't well rated by customers . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : city centre||The Waterman is a centrally located pub serving English food . It has a low customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||with a high price range the Japanese coffee shop called Cocum the children friendly place has a 3 out of 5 customer rating \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace in city centre is a coffee shop with high ratings and prices of more than £ 30 that serves fast food as well . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||Near Burger King near the riverside is The Eagle Indian food coffee shop . It has a high price range with average customer ratings . It is not kid friendly . \nname : Midsummer House | food : Chinese | customer rating : average | near : Café Rouge||There is a Chinese restaurant called Midsummer House near Café Rouge , which has an average customer rating . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Cheap 1 star oriental cuisine for a low price . Midsummer House close to All Bar One . \nname : Midsummer House | food : Indian | customer rating : high | near : Café Rouge||Midsummer House , located near Café Rouge , has a high customer rating and serves Indian food . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto in Riverside near All Bar One has a moderate price range . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||The Clowns has a average customer rating in the riverside are less than £ 20 price range pub . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The Mill serves cheap Italian food and is located in the riverside area . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||The Phoenix has Italian food and it is riverside . 1 out of 5 customer rates it . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop near Burger King by a riverside in the City centre , with a high price range and low customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a French coffee shop located in the city centre . Their food is average priced and have a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is a restaurant in Cambridge . The Olive Grove is near the river . The Olive Grove is not for families . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||The Italian restaurant named Bibimbap House is located near Clare Hall with high priced food in riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The customer rating is low , but pay less than £ 20 at Fitzbillies , a Japanese Food coffee Shop , that is family friendly is located in Riverside . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop is in the riverside area near Avalon and is family friend with prices less then 20 low customer rating \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||A restaurant called Midsummer House is located near All Bar One . It has a rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||There is an expensive coffee shop that serves Indian food near to Café Sicilia , called The Punter . It is not family friendly and has received average customer ratings . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Cocum is a reasonable priced pub rated one star . It is not family friendly . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is an Italian restaurant located near Yippee Noodle Bar in the city centre . The customer rating is high and has food for 30 euros and up . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe is a pub that provides Chinese food It is located in the riverside . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a Chinese restaurant located near Ranch . Kid friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : city centre | near : The Sorrento||A Fast food coffee shop is called The Mill . It is in the city centre near The Sorrento and has a high price range . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada is a high rated kids friendly restaurant of the price range of 20 - 25 pounds . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a high price ranged Japanese restaurant in riverside near Express by Holiday Inn has a 3 out of 5 customer rating and is child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : £ 20 - 25||The Dumpling Tree is a restaurant serving Italian food and has a price range of £ 20 - 25 . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||For English food in the moderate price range , Browns Cambridge has an average customer rating of 3 out of 5 . \nname : Loch Fyne | food : French | customer rating : high | area : riverside | near : The Rice Boat||For best French food just visit Loch Fyne very near to The Rice Boat . it is a best place to eat food \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a 4 star sushi place . It is located near City centre . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns for more than £ 30 . Near : Café Sicilia . Children Friendly : yes . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , with a customer rating of average , serves Indian food . It is located in riverside , near Café Rouge and is also children friendly . \nname : The Phoenix | food : Indian | customer rating : 1 out of 5 | area : riverside||Low rated The Phoenix serves Indian food in riverside . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge . yes . French . The Sorrento . riverside \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Cocum is a family - friendly coffee shop with a moderate price range and has a customer rating of 1 out of 5 . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is rated 1 out of 5 by customers , but it 's a moderately - priced kid friendly French restaurant in the riverside area . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry located in riverside serves Chinese food . Average customer rating is 1 out of 5 and it is located near Café Rouge . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly venue serving Italian food at reasonable prices , it is sited in Luton near Express by Holiday Inn , is not recommended . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||The Travellers Rest Beefeater is an adult only cheat restaurant . \nname : Strada | Type : pub | food : Chinese | customer rating : high | near : Yippee Noodle Bar||There is a pub named Strada near Yippee Noodle Bar . It has a high customer rating and serves Chinese food . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||City Centre location , not recommended for families and with a low customer rating , The Cocum . \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||The Vaults is a kids - friendly French restaurant with a price range from £ 20 to £ 25 . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant serves cheap Chinese food that is rated 5 out of 5 . The family friendly restaurant is located in city centre near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop offers healthy food for kids and is around from the riverside and has a high customer rating and is average priced . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers serves fast food , cheap price , family friendly , with a average customer rating . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The moderately priced French food restaurant , The Rice Boat , has an average rating of 1 out of 5 perhaps as it is not friendly to kids . The Rice Boat is located in the city centre area near Express by Holiday Inn , \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 out of 5 rated restaurant located in riverside . \nname : The Punter | food : Indian | price : more than £ 30||The Punter Indian restaurant is higher than £ 30 . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Located near The Six Bells is a Fast food restaurant named Fitzbillies which is in the £ 20 - 25 price range . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman in the city centre serves French food with 5 out of 5 and is child friendly and is more than £ 30 \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop which offers Japanese food without a children friendly atmosphere with a high price range . It has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The restaurant The Golden Palace has a price range more than £ 30 . \nname : Browns Cambridge | food : Indian | price : high | customer rating : 1 out of 5||Customers have rated Browns Cambridge as 1 out of 5 , it sells Indian food at a high price range . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||Pub food at below average prices is served at The Olive Grove by the riverside . It does not cater for children . \nname : Strada | Type : pub | food : Chinese | customer rating : high | near : Yippee Noodle Bar||Highly rated Strada is a pub serving Chinese food . It 's located near Yippee Noodle Bar . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||An Italian eatery called The Wrestlers has a high customer rating . Their prices range between £ 20 - 25 but they are not known as kid friendly . \nname : Browns Cambridge | food : Indian | price : high | customer rating : average||Browns Cambridge provides Indian food in the high price range . Its customer rating is average . \nname : Bibimbap House | food : French | area : city centre | near : The Rice Boat||Bibimbap House in city centre near The Rice Boat , has French food . \nname : Bibimbap House | food : English | price : more than £ 30 | area : riverside | near : Clare Hall||Located near Clare Hall and by the riverside , Bibimbap House serves English food more than £ 30 . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||Wildwood is a mid priced pub offering appetizers \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||The Phoenix is a restaurant located in riverside . It serves French food and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a restaurant providing fast food at mid - range prices . It has a five star rating . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The 1 star mid - priced restaurant called Strada is located near the Rainbow Vegetarian Café and is family friendly . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||In city centre , near Café Rouge , is family - friendly The Golden Curry , serving fast food . They have a low customer rating . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is situated in the city center not far from Express by Holiday Inn . This Italian restaurant is rated high and caters for families . Prices start from £ 30 . \nname : The Punter | food : French | price : moderate||The Punter . French food and drink . Medium cost \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Blue Spice , which is not family - friendly , scored an average rating . They are located near the riverside and their prices are not less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||5 out of 5 rated Japanese coffee house , The Golden Palace , serves food for more than 30 and is located on the riverside . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is an eatery where you can enjoy Indian cuisine in the £ 20 - 25 price range and has earned a high customer rating , plus it 's also a kids friendly establishment . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 3 out of 5||There is a Chinese pub in the moderate price range . It is named Wildwood and has a customer rating of 3 out of 5 . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||In the city centre near All Bar One , there is a family - friendly place called Green Man . It serves Japanese food and has a price range of less than £ 20 . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is near Café Rouge and in the riverside area . It is family friendly , serves English food , with a 5 out of 5 customer rating . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||Wildwood is a pub that serves sushi that has a 3 star rating and average price range \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||In riverside is The Rice Boat which is a Japanese place near Express by Holiday Inn that is children Friendly with a 3 out of 5 rating and a high price range . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub type Italian restaurant that is not kid friendly with moderate prices . They are located in city centre . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||In the center of city is located a restaurant rating in 5of5 with cheap prices called The Phoenix \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||Look no further than The Golden Curry if you are seeking a high quality family dining experience . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children friendly pub serving French food near The Portland Arms . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a highly priced coffee shop that provides Indian food . It is located in riverside near Raja Indian Cuisine . It is children friendly . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||The Bibimbap House close to Clare Hall high priced food and wine \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced Indian restaurant . it is not kid friendly . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is an Italian restaurant located by the riverside , near to Express by Holiday Inn . It is called The Rice Boat and has a high customer rating with a price range of £ 20 - 25 . It is not child - friendly . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : average | near : All Bar One||The Midsummer House has cheap Chinese food near All Bar One . It has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Cricketers is a family - friendly coffee shop with low customer ratings that serves French food . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto , located near The Portland Arms , is a one star , medium price range coffee shop that serves wine and cheese . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : no||Alimentum is a high priced Italian restaurant in the Riverside area and is not child friendly \nname : The Eagle | price : cheap | customer rating : average | area : riverside||A riverside area restaurant with cheap food and an average customer rating is called The Eagle . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||High cost restaurant called The Cambridge Blue offers fishes of French food \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||There is a restaurant near Café Adriatic with low customer rating located in Riverside called , Travellers Rest Beefeater . The price range is more than £ 30 . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum which is located at riverside near Yippee Noodle Bar is a favorite among customers who loves French food . With a customer rating of 3 out of 5 and an high price range . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||One kid friendly , moderately priced fast food venue is The Wrestlers . It has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The Rice Boat offers Fast food for kids Friendly located in riverside . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a moderately priced , kid - friendly restaurant , located near The Bakers . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub with Japanese good near Yippee Noodle Bar with a customer rating of 5 out of 5 \nname : Bibimbap House | food : Chinese | area : city centre | near : The Rice Boat||Bibimbap House is serving Chines food near The Rice Boat in the City center . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is Chinese restaurant called The Golden Curry located near Café Rouge . It is child friendly and has average ratings . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located in Riverside with a customer rating of 3 out of 5 , is Aromi , a child - friendly pub . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||A one star moderately priced sushi restaurant called Browns Cambridge \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Indian food restaurant with a 3 out of 5 customer rating , moderate price ranges , and is kid friendly , located near Rainbow Vegetarian Café . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If you happen to be near riverside be sure to stop in at Aromi . Aromi is a child friendly coffee ship offering fast food . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two close to The Rice Boat is cheap in price and has an excellent customer review of 5 out of 5 , it is also close to the riverside area but do not cater for children . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is moderately priced and serves Indian food near Riverside . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||There is a place near Yippee Noodle Bar that has Italian food , it is called Alimentum . They have a high customer rating . It is located in Riverside . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle serves Italian food . I has a rating of 1 out of 5 . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||The Midsummer House is my favorite restaurant . They have great food and is located near All Bar One . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop that also serves great Japanese food at a cheap price , it 's located on the riverside . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne is a family friendly restaurant in town that serves expensive food . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada has a customer rating of 5 out of 5 . The prices are cheap and it is kid friendly . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||Near Café Sicilia is a riverside pub with a high customer rating : The Twenty Two . The Rice Boat serves fast food in the riverside area . It is family friendly but has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle , is a fast food coffee shop - not child friendly , with a high price range and average customer rating in the Riverside area , near Burger King \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a highly rated restaurant located in the city centre . They serve Italian food costing more than £ 30 in a non - child friendly environment . \nname : Blue Spice | food : Indian | price : moderate | area : riverside||Blue Spice serves Indian food at moderate prices in riverside . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is an expensive coffee shop serving high quality food next to Ranch . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a 5 stars restaurant , located near the river \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a pub near the Café Rouge . Is serves food at mid range prices and is family friendly . \nname : Wildwood | Type : restaurant | family friendly : no||Wildwood is not a family - friendly restaurant . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||There is a Japanese food serving restaurant with a rating of 3 out of 5 in the city centre called The Phoenix . \nname : Strada | Type : pub | food : French | customer rating : 1 out of 5 | near : Yippee Noodle Bar||French pub Strada is located near Yippee Noodle Bar with rating 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a Fast food coffee shop located at the centre of the city , near the Burger King . The Eagle offers a children - free atmosphere , and the prices range more than £ 30 . Rated high . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||North of the City center . is a sushi restaurant called Blue Spice . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a Japanese restaurant with a low customer rating in the riverside area . The price range is less than 20 . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Located near The Rice Boat in riverside , is Loch Fyne . It has a customer rating of 5 out of 5 and offers English food . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||There is a cheap restaurant Alimentum located in the centre of the city that provides Italian foods in the price less that £ 20 but it is not family - friendly . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : yes||If you are looking for Indian food for less than £ 20 , go to the family friendly The Vaults . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||There is a high customer rating restaurant The Cambridge Blue and they serve Italian food . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||There is a coffee shop located in the city centre by Avalon called Blue Spice . It has a price range of 20 - 25 pounds , with a customer rating of 3 out of 5 . It is not kid - friendly . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : city centre||In the city is a restaurant called Zizzi . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a moderately priced family - friendly restaurant in the City centre called The Rice Boat that serves fast food . It is near Express by Holiday Inn and has a one - star rating . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 3 out of 5||The Cambridge Blue , is an English restaurant with a 3 of 5 star rating . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults serves Japanese , is kid friendly and the price range is moderate . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crown Plaza Hotel in Riverside there is a children friendly Japanese coffee shop called Taste of Cambridge . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop in the medium price range . It is located near Café Sicilia . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children friendly Chinese restaurant with a high price range and a one star customer rating near the Express by Holiday Inn in the city centre . \nname : The Rice Boat | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a Chinese food restaurant located in the Riverside area with a customer rating of 3 out of 5 , it is not kid friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a restaurant called The Rice Boat that is located near the Express by Holiday Inn , riverside . They have a high price range but they are rated average by customers and children friendly . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||If you 're looking for a cheap , non family - friendly but 5 out of 5 rated Japanese restaurant , then come to Strada near Rainbow Vegetarian Café . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near the Rainbow Vegetarian Café and the price range is moderate . It is rated 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||A child friendly coffee shop is The Eagle , near Burger King in the city centre . Priced around £ 20 - 25 , they serve French food , and are rated highly by customers . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is child friendly and serves English food . It 's located on the riverside . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : moderate | near : Café Brazil||The Cambridge Blue pub offers moderately priced Chinese food and is near Café Brazil . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace serving moderately priced coffee in the park north of the city just by the river . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Near Café Adriatic in the riverside area are cheap prices at Travellers Rest Beefeater . Rated average \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes||In the city centre , there is The Olive Grove , a children friendly expensive pub that serves French food . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||If you want a meal that costs 20 - 25 try Travellers Rest Beefeater which is kid friendly . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a Fast food place near Crowne Plaza Hotel that is kid friendly . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Only high quality food is served at Wildwood Pub . This high - end establishment is a tasty local Italian restaurant . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop that is family friendly and with a cheap price range . They have a customer rating of 5 out 5 . Giraffe is located near The Bakers . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat will serve up Japanese food with in the £ 20 - 25 price range near the Express by Holiday Inn in riverside with a no children policy we have 3 out of 5 stars . \nname : The Cambridge Blue | Type : pub | food : Italian | price : more than £ 30 | near : Café Brazil||There 's a pub called The Cambridge Blue near Café Brazil that serves Italian food . It costs more than 30 pounds to eat there . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : no||Loch Fyne is an Indian restaurant . It is not family friendly with a price range of less than £ 20 . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Chinese pub that is family friendly near The Portland Arms . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is Fitzbillies which has a price range of more than 30 pounds . And yes it is children friendly . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is medium priced and rated three stars . It is close to All Bar One . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the city centre is Alimentum , an Italian restaurant with one star and a mid price range . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||On the riverside is an adult only Japanese venue called The Rice Boat which has a high customer rating . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a highly rated Italian restaurant . It is not children friendly and prices are more than £ 30 . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat Indian restaurant has a 5 out of 5 rating . The restaurant is located near riverside . It is a family - friendly shop . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a fast food coffee shop located in the city centre near the Crowne Plaza Hotel . It is not family - friendly . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kid friendly pub with a moderate price range and a 1 out of 5 customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : yes | near : Café Sicilia||The coffee shop The Dumpling Tree is in the moderate price range . It is located near Café Sicilia , in the city centre and family - friendly . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults is inexpensive , fast food . Children are not welcome at The Vaults . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||There is a top rated customer Japanese restaurant called The Cambridge Blue \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||On the riverside , near The Sorrento , is a high priced Italian coffee shop named The Mill . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a three - star , family - friendly pub . It serves sushi . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||Zizzi is a family - friendly pub serving Chinese food . It has an average customer rating \nname : Loch Fyne | food : Indian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat , by the river , Loch Fyne is situated which serves Indian food and has been rated 3 out of 5 by customers . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Indian restaurant located near the Rainbow Vegetarian Café . Strada is not a kid friendly restaurant despite this they have a high customer rating . Prices range from 20 - 25 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop serving Italian food . It is near Clare Hall in the city center and has a customer rating of average . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The kids friendly The Golden Curry serves Italian food is high rated . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill is a cheap British pub located close to the riverside . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||Wildwood is a French pub in the moderate price range . It has a customer rating of 1 out of 5 . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is an inexpensive restaurant located in the city centre , it has great ratings but is not family friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||There is a coffee shop called Clowns in the riverside area near Clare Hall . It offers Fast food and is rated 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : no||Loch Fyne is a kids friendly restaurant offering Chinese food with a moderate price range . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||There is a pub near The Portland Arms that serves wine and cheese called The Dumpling Tree . This is not a family - friendly pub . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree is a fast food restaurant . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum located near the Yippee Noodle Bar , offers a low priced restaurant experience . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House offers French cuisine and is located near The Rice Boat in the riverside area . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Expensively priced , children friendly , with an extremely high customer rating , Blue Spice is located in the riverside area . \nname : The Vaults | Type : restaurant | food : Fast food||There is a fast food restaurant named The Vaults . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel , a family friendly restaurant serving Japanese cuisine is named The Waterman . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves fast food for less than £ 20 . it has a low customer rating and is not family - friendly . it is located in riverside near the Express by Holiday Inn \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Italian restaurant located in the city centre near the Yippee Noodle Bar with a customer rating 5 out of 5 . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Japanese food at The Eagle has been rated 5 out of 5 \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman serves Italian food and is family - friendly . It is located in the centre of the city . It has a price range of cheap and a customer rating of average . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Wildwood pub serves excellent , expensive Italian food . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Phoenix serves Japanese food . Their price ranges from L20 - 25 and they have a customer rating of 3 out of 5 . They are located at the city centre . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a 3 - star restaurant located near Yippee Noodle Bar on the river to the north of the City centre serving moderately - priced Japanese cuisine . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Serving Italian food , The Waterman is near the Crown Plaza Hotel . They are kid friendly . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar , along the riverside , you can find Alimentum , an expensive Chinese restaurant with a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop located in the city centre near of Burger King that bring a service of Fast food \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne near The Rice Boat at Riverside serves French Food with a 5 out of 5 customer rating \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||Suitable for all the family , visit Cocum coffee shop serving food and drinks . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a moderate price range coffee shop near Café Sicilia , They have fast food and is kids friendly with the customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman is an expensive sushi restaurant located north of the City centre \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||Look for The Olive Grove in the riverside area . Children are welcome . The food served is French - styled , and the prices are typically between £ 20 and £ 25 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop that sells Japanese food for high prices . It has a 3 star rating and is located near to the Ranch \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kids friendly Italian restaurant located in Riverside , near Café Rouge . It has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle , which is a coffee shop that is not kid friendly , is near Burger King and serves French food in the price range of £ 20 - 25 in the Riverside area . It has a high customer rating . \nname : The Plough | Type : pub | food : English | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Located near Café Rouge The Plough English Pub is kid friendly and offers food under £ 25 \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Riverside has a cheap Japanese coffee shop called Fitzbillies . They are family friendly with average ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||With an average customer review , The Eagle is a coffee shop serving Indian food . If you would like to go , they are near Burger King in the city center . Keep in mind that it is expensive , but also children friendly . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||There is a pub called Wildwood in Cambridge where sushi is available . The prices are above average . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is located near Café Sicilia . It is a fast food coffee shop with a low rating , costs less than 20 , and is not family - friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop located in city centre serving Italian food with an average customer rating . It is not family - friendly . \nname : Midsummer House | food : Indian | customer rating : 5 out of 5 | near : Café Rouge||Located near Café Rouge , Midsummer House is an Indian restaurant which has been rated 5 out of 5 by their customers . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge is a low - priced restaurant . The customer ratings are low . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne serves English food by the river , near The Rice Boat . It has a 1 out of 5 customer rating . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman sells Indian food and is located in the city centre . It has a high customer rating and is kids friendly . It has an overall price range of £ 20 to £ 25 . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low price restaurant near Rainbow Vegetarian Café that serving French food with a customer Rating of 5 out of 5 but it 's not family - friendly \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||On the riverside , there is a family friendly place called The Waterman that serves French food . It is a cheap priced place with a 5 out of 5 customer rating . \nname : Green Man | Type : pub | food : Italian | area : city centre | near : Café Rouge||The Green Man pub features Italian food located in the city centre near Café Rouge . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The Golden Curry is a family friendly restaurant with a three star review . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||Moderate priced Japanese restaurant rated 1 out of 5 by customers is The Phoenix in the city centre . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a five - star family venue serving cheese , wine , and soup , among other dishes . It is located by a river . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a child friendly coffee shop that serves Indian food with a high price range . It has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||The Browns Cambridge has a one star rating and it is expensive . \nname : Loch Fyne | food : Chinese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is average . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a family place which serves French foods . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Children friendly Loch Fyne restaurant serves Italian cuisine of prestige price . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||Giraffe public house on the river , mature dining . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry Japanese restaurant in Riverside has a low customer rating . It is children friendly and it is near Café Rouge . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a average - priced restaurant in the city centre that serves Chinese food . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum serving Chinese food , near Yippee Noodle Bar in the city centre area has a customer rating of 1 out of 5 . The price of this food is high . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a coffee shop called The Cricketers near The Portland Arms that serves Japanese food and is rated 5 out of 5 . It 's child friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a kid friendly coffee shop in Riverside called Zizzi . It is high priced and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop in the city centre which serves Japanese food . It has a price range of less than £ 20 and has a low customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults coffee Shop is located north of the city center . and near Café Brazil . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , a high end adult oriented Italian restaurant is located in Riverside near Express by Holiday Inn . Customer rating for this establishment is 1 out of 5 . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a high - priced restaurant The Rice Boat located in the riverside near Express by Holiday Inn that serves Chinese food . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||The Phoenix is a fast food restaurant with moderate reviews . It is located next to the river . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is an Italian food place that is kids friendly and a moderate price range . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||There is a cheap restaurant near The Bakers called The Golden Curry . It serves sushi and is not family friendly . \nname : Fitzbillies | food : Indian | price : cheap | near : The Six Bells||Fitzbillies it 's a Indian food restaurant , the prices are cheap , and it is near The Six Bells \nname : The Punter | food : Italian | price : high||The Punter is a high priced establishment offering Italian cuisine . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||If you are in riverside near Café Adriatic , check out Travellers Rest Beefeater with a customer rating of 1 out of 5 and a high price range . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||There is a lovely French restaurant named The Phoenix with a good price range , an average customer rating , and is located by the riverside . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a 1 out of 5 rated pub . Cocum is very child friendly and priced at a moderate range . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a 5 star restaurant that serves Indian food at a low price . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle near Burger King in city centre serves coffee and fast food with a high price range and is aimed towards adults . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a French restaurant with a medium price range . It 's family friendly and is located near The Bakers . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a French restaurant located near the riverside , it has a price range of £ 20- £ 25 and a customer rating of 3 out of 5 . This isn 't a kid friendly restaurant . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese food restaurant located in the city centre , near the Express by Holiday Inn . It is children friendly , highly priced and poorly rated . \nname : Bibimbap House | food : Chinese | area : city centre | near : The Rice Boat||Bibimbap House serves Chines food in the city center near The Rice Boat . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : no||The Cocum offers pub fare for a higher priced experience . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Fast food restaurant located in the riverside area , with a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Indian | customer rating : 1 out of 5 | area : riverside||On the riverside is a pub , The Waterman , which serves Indian food . It is rated one out of five stars by customers . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi pub is located along the riverside and has customer ratings of 5 out of 5 and is also family friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a fast food coffee shop next to Café Sicilia that is family friendly . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman is a non family - friendly Japanese restaurant in the city centre with an average customer rating and price range of less than £ 20 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||The pub called Zizzi offers Fast food and you can go there with your kids . It 's highly rated . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||For a restaurant that may serve British food Browns Cambridge is a medium priced restaurant to go to . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry near Café Rouge in the city centre serves English food , is adult oriented and has an average customer rating . \nname : The Waterman | Type : pub | food : English | customer rating : 1 out of 5 | area : riverside||Customer rating of 1 out of 5 The Waterman is an English pub located in riverside . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located in riverside , a pub named Aromi is a children - friendly pub that is rated 3 out of 5 . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Located near the city centre is a low - priced 1 star restaurant called The Wrestlers . It is not family friendly . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Family friendly , riverside place The Rice Boat is rated five stars , and is family friendly . Serves Italian food . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a family friendly Japanese restaurant . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||In riverside , The Eagle is a more than £ 30 price ranged place with a low rating . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||With an average price point , Alimentum is a highly rated English restaurant in the city centre near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving Japanese food in the riverside area , which is family friendly with a price of less than £ 20 . It has a low customer rating . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Splurge on your usual favorites at Travellers Rest Beefeater , located at riverside by the Café Adriatic \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no||Cocum is a cheap non family - friendly Italian coffee shop with an average customer rating . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a moderately priced , low reviewed Italian restaurant that welcomes families . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a children friendly coffee shop found near The Portland Arms . Japanese food is available and it has a 3 out of 5 customer rating . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Japanese food is served at The Waterman which is in the riverside area . It is in the high price range , is children - friendly , and has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||Enjoy the riverside when you visit The Waterman ; it unfortunately has been low - rated . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne near The Rice Boat in the riverside area serves French food . They have a 3 out of 5 rating . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a family friendly Sushi restaurant that is 5 stars and near Ranch . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto , with customer rating 1 out of 5 , serves English food near Ranch and is children friendly . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non children friendly English restaurant in the center of the city near Express by Holiday Inn with a high price range and a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the more than £ 30 price range . It is near Café Sicilia . Its customer rating is high . \nname : Bibimbap House | food : Indian | price : cheap | area : riverside | near : Clare Hall||The Bibimbap House serves cheap Indian food and is located on the riverside near Clare Hall . \nname : Loch Fyne | food : English | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne located in city centre , near The Rice Boat . It has a low customer rating and serves English food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese coffee shop in riverside near Raja Indian Cuisine . It is expensive and child friendly . \nname : Strada | Type : restaurant | customer rating : average||Strada is a restaurant with an average customer rating . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||There is a family friendly pub called Cocum that is average rated within the cheap price range . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is high . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman located in the riverside area is a high prices Italian restaurant with an average customer rating and is not children friendly . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Located at Rainbow Vegetarian Café , Strada is family friendly and offers good full meal deals including drinks . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a moderately expensive , family friendly restaurant located near The Rice Boat . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum offers moderate pricing and Japanese cuisine . It is located in the city centre near Yippee Noodle Bar and has a customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||The moderately priced Wildwood is a three star pub . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a moderate priced restaurant in riverside near Burger King called The Eagle . It is an Indian coffee shop witch is not kid friendly and has an average rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Located in the city centre is a family - friendly coffee shop called Zizzi with a price range of £ 20 - 25 and a high customer rating . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman sells Indian food for a high price in the riverside area . They have a customer rating of 1 out of 5 and are child friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop located near Clare Hall , north of the City Centre . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is a high - rated , expensive fast food place near the river . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a good coffee shop near to Raja Indian Cuisine . its kids friendly \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is providing Indian food in the price range . It is located in the riverside . It is near Café Rouge . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : English | price : moderate | family friendly : no | near : The Bakers||Near The Bakers is a moderately priced English food restaurant named The Golden Curry . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia , there is a high priced French coffee shop , with a customer rating of 3 out of 5 . It is not child friendly , and is called The Punter \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : yes | near : Café Rouge||The Plough is a child friendly , Indian pub with a high price range , located near the Café Rouge . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is an expensive dine in restaurant called Alimentum close to The Yippee Noodle Bar that has decent reviews . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a French food restaurant with high price , 3 / 5 rating , and not kid friendly . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House in riverside near Clare Hall offer Japanese food with less than £ 20 \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A great pub for the whole family , Cocum is rated 5 stars . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a 5 star establishment serving British cuisine . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells Italian food for less than £ 20 . It is near Express by Holiday Inn in the city centre . It is not family - friendly and it has low customer ratings . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Italian , The Rice Boat , is not kid friendly and near Express by Holiday Inn and riverside . With moderate pricing it is given a 1 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located in the riverside area and sells Indian food . Although it has a low customer rating , The Golden Curry is family friendly . It is near Café Rouge in the riverside area . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||For moderate prices near Rainbow Vegetarian Café , check out The Rice Boat . They were rated 1 out of 5 \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers is a coffee shop serving burgers and fries . It is family - friendly and has a one - star rating . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop named Taste of Cambridge in the city centre that provides Indian food near Crowne Plaza Hotel and they are not family friendly . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kids friendly coffee shop located in the riverside area near Avalon . It has a price range of £ 20 - 25 and a customer rating of 3 out of 5 . \nname : Bibimbap House | food : Indian | price : cheap | area : riverside | near : Clare Hall||Bibimbap House provides Indian food in the cheap price range . It is located in the riverside . It is near Clare Hall . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a place that is child friendly , has high customer ratings , and the prizes run over 30 . They are located near Express by Holiday Inn . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||if you want a city centre Japanese restaurant that isn 't family - friendly and has a low customer rating , then visit The Golden Curry which is close to Café Rouge \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly burger place near Crown Plaza Hotel . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Clowns is coffee shop near Clare Hall . Customers rate Clowns coffee shop as high . It serves Italian food and is placed at riverside area . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter if a coffee shop with moderate prices , kid friendly and has Fast food near Café Sicilia . 3 out of 5 rating . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum serves coffee and French food with cheap prices has a high rating but is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||on city centre there is a coffee shop that sells Italian named The Wrestlers food has a high price and close to Raja Indian Cuisine \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree near The Portland Arms is a Fast food pub that is children friendly . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : riverside||Blue Spice is a Chinese restaurant with prices less than £ 20 located on the riverside . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||On the riverside there is a kids friendly Japanese pub called The Olive Grove with and average price range \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||There is an expensive Italian restaurant with a 1 out of 5 rating named Alimentum in Riverside , near the Yippee Noodle Bar . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||near Clare Hall is the Clowns coffee shop and restaurant \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||There is a moderately priced restaurant called Travellers Rest Beefeater that is kid friendly . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||For fast food near the Express by Holiday Inn in the riverside area , try The Rice Boat . This establishment is kids friendly and has been given a 1 out of 5 rating by previous customers . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi is a family - friendly , average rated , French coffee shop , near riverside . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a non family - friendly , place with cheap and English food . Customers rate it average and it is close to the Rainbow Vegetarian Café \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Enjoy French cuisine near The Rice Boat at Loch Fyne . It has a riverside view and a 5 out of 5 rating . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||For a nice three star meal try the Midsummer House , situated near Café Rouge . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 5 out of 5||The Cambridge Blue is a Indian restaurant with a customer rating of 5 out of 5 . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||At the riverside , there is a low rated restaurant called The Golden Palace . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap coffee shop that offers sushi and is family friendly . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : city centre||Located near the city centre , The Mill is a moderately priced pub that offers Italian food . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn has a high price range with average customer ratings and has a child - friendly atmosphere . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : no | near : Ranch||Cotto is a Japanese food place near Ranch . It has excellent customer reviews but is not recommended for families . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||Due to high prices , the Taste of Cambridge restaurant has a poor 1 out of 5 customer rating . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a cheap , 5 star noodle restaurant that is near Yippee Noodle Bar , it is called Alimentum . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman serves Chinese food of moderate price in the city centre . It is rated 3 out of 5 and is not kid friendly . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Browns Cambridge sells traditional pub food for reasonable prices in the city centre . Reviews say that their food is not of very good quality . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : no||Enjoy dinner without the kids at Alimentum . Located in city Chinese menu boasts high priced . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop in the riverside area serving mid range priced food . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : no||With a quiet atmosphere , the Green Man offers dishes for less than £ 20 . It is located near the city center . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Near Burger King is and Italian coffee shop called The Eagle . It has a price range of £ 20 - 25 and is not kid - friendly . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : no||Strada is an averagely rated restaurant . It 's not family - friendly restaurant and costs less that £ 20 . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two near The Rice Boat in the riverside area is rated high by customers and it is children friendly . Also , it has a price range of over 30 euros . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant in the city centre area , located near Yippee Noodle Bar . They have low ratings and low prices . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly restaurant located near the Express by Holiday Inn in the Riverside area . It is moderately priced and is rated 3 out of 5 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||A kid friendly place near Riverside is the Indian The Twenty Two . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a five star pub serving high priced sushi . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||A coffee shop in the city centre area near the Crowne Plaza Hotel is called Browns Cambridge . They serve Indian food , have an average customer rating and are not family friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a sushi food restaurant . We don 't accept your family . We have an start of experience and we are placed close to Café Rouge . Join us . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves French food and has a high price range , it has a customer rating of 3 out of 5 and is in the riverside area and is for adults . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada sells Japanese food is not children - friendly and has a customer rating 3 out of 5 located near Rainbow Vegetarian Café \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice , on the riverside , serves expensive sushi . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies Japanese coffee shop situated in a beautiful riverside location . Great value for money and holds high standards . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Wildwood pub serves Japanese food . It is in the price range of more than £ 30 and has a low customer rating . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree , located between two major city blocks , is a mid - price restaurant . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving Japanese food in the riverside area near the Crowne Plaza Hotel . It is known to be kids - friendly . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||The Eagle is an above average - price range restaurant near riverside and has low customer rating . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is an Italian restaurant that welcomes families with children . Located near the Crowne Plaza Hotel . \nname : Blue Spice | food : French | price : high | area : riverside||On the riverside , there is a place with high prices that serves great French food . It is called Blue Spice . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies a coffee shop , located in the City Centre , has a customer rating of 5 out of 5 and provides Indian food at a cheap price range . It is not family friendly . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||A popular pub in the riverside area , near Rainbow Vegetarian Café , is The Golden Palace . Expect to pay higher prices . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is an average French restaurant called Strada . it is less than £ 20 and is not family - friendly . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||The Eagle menu prices are cheap . Their customers ratings are average and located by Riverside . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : cheap | family friendly : yes||Loch Fyne is a restaurant serving Chinese food prices are cheap and family friendly \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||A kid friendly location called The Waterman offers an average price range . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a French coffee shop suitable for family . It is located near Raja Indian Cuisine at riverside and charges less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre||The Golden Palace is a coffee shop located at the city centre . They serve French food for less than £ 20 with an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an Indian coffee shop in the moderate price range , located in the riverside area near Raja Indian Cuisine . It is located in the riverside area and is kids friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||There is a restaurant called The Dumpling Tree if you want good food for a good price . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum is located right next to the river and is adjacent to Yippee Noodle Bar . This restaurant serves low priced meals and has a rating of five stars . \nname : The Eagle | food : Japanese | customer rating : average||The Eagle is a sushi bar with a three star rating . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat at the riverside is kids - friendly Fast food restaurant rated 1 out of 5 . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Located near the Yippee Noodle Bar , The Strada is a fast food pub with average customer ratings . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||Italian kid friendly restaurant , The Vaults , cheap prices . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||With 5 out of 5 customer ratings , the French Café , The Wrestlers , is very family friendly . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a Family friendly Pub located on the River bank offering food at low price . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is an Italian restaurant that is children friendly and by the riverside . \nname : The Vaults | food : Chinese | price : cheap | family friendly : yes||The Vaults is a cheap Chinese restaurant that serves all ages . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a low price sushi restaurant . Located in City centre . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Express by Holiday Inn||Fitzbillies is located near to Express by Holiday Inn . Theres is no kids area . It has high customer rating and a price range between £ 20 - 25 . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||There is a riverside - area restaurant near The Rice Boat which provides Japanese food . Its name is Bibimbap House . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Avalon||The coffee shop named Blue Spice is moderately priced , near Avalon and the city centre , is not kid friendly and has a customer rating of 1 out of 5 . \nname : The Waterman | price : less than £ 20 | family friendly : yes||You could try The Waterman , a family friendly venue with a reasonable price range of less that £ 20 . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Brazil||There is a moderately priced coffee shop called The Vaults , located in the City Centre . It is near Café Brazil and has a customer rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||An average child friendly pub called Zizzi has an average rating . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is Chinese food in the city centre . Prices are moderate but customer ratings are low . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies provides Japanese cuisine in this kid - friendly , riverside Café . It is value for money with prices ranging from £ 20 - 25 and has a customer rating of 3 out of 5 \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an expensive Indian coffee shop that has a poor rating and does not allow children . \nname : The Vaults | Type : restaurant | food : Indian||The Vaults is an Indian restaurant . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a high price range and a 3 out of 5 customer rating . It is located near Rainbow Vegetarian Café . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : city centre||Blue Spice , a restaurant offering Indian food in less than £ 20 , is located in the city centre . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an Italian coffee shop with a high price range and a 1 out of 5 customer rating . It is not child - friendly . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Japanese food for the whole family . It is within the City center near the Express by Holiday Inn . It is high priced and rated three stars . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry has a price range of 20 to 25 dollars . Its near The Bakers and is kid friendly . It is Japanese food . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Rated 5 out of 5 , The Twenty Two is a family restaurant with cheap prices located near The Rice Boat . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop serving Indian food . Average tab is less than £ 20 but has low customer rating and is not family friendly . It is located near Café Sicilia . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat serves Japanese food and has customer rating of 5 out of 5 . This restaurant is located in the city centre and is not family - friendly . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||Located in the city centre area , this child friendly establishment received a 3 out of 5 customer rating . This coffee shop is near Avalon and offers menu items in the high price range . It is called Blue Spice . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||Cotto is a family friendly English restaurant with a high rating . It 's near the Ranch . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a children friendly place located in riverside called Blue Spice . It has a 5 out of 5 customer rating and the price range is more than £ 30 . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : city centre||The Phoenix provides Indian food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Yes , Loch Fyne is a restaurant Italian \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a low rated Italian coffee shop located on the riverside near Clare Hall . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum provides Indian food in the less than £ 20 price range . It is located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the riverside area is a French coffee shop named Browns Cambridge that is not family - friendly and has a low customer rating . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||Located near Café Adriatic , Travellers Rest Beefeater restaurant gets a high customer rating and is located along the river . Prices range £ 20 - 25 . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Italian restaurant near Rainbow Vegetarian Café that is kid friendly with a moderate pricing and a customer rating of 1 out of 5 . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||The restaurant Zizzi near the are riverside has a moderate price range . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||There is a restaurant near The Rice Boat which offers low price Japanese food in riverside called Loch Fyne . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside there is a coffee shop named Fitzbillies which serves fast food . However the prices are high , 1 out 5 customers rated it , and it is not children friendly \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||In the riverside area there is a children friendly restaurant called Green Man which has a price range of more than 30 pounds . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||A family friendly fast food venue , The Wrestlers has moderate prices and high ratings . \nname : The Plough | Type : pub | food : Italian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a family friendly Italian pub with price range more than £ 30 located near Café Rouge . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||Café Brazil is a type of coffee shop with the name The Vaults . The price there is pretty cheap and you can find it near riverside with customer ratings of 5 out of 5 . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a child friendly , Chinese food restaurant in the Riverside area , near The Sorrento . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly coffee shop in the city centre . Its name is Zizzi . It has a low customer rating but it is cheap . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||There is a medium - price place Blue Spice located at the north of city centre that provides sushi . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers and serves medium - priced fast food in a family friendly environment . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Waterman is rated 1 out of 5 and is the best pub to eat fast food by the riverside . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre is Blue Spice , a restaurant with low prices , high ratings , and family - friendly atmosphere . \nname : The Vaults | food : English | price : high | family friendly : yes||There is a high - priced , family friendly British restaurant named The Vaults . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a fast food coffee shop called Browns Cambridge with an average customer rating in the riverside area near the Crowne Plaza Hotel , which is not family - friendly \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a kid friendly pub that offers French food in the riverside area . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||If you 're in the riverside area , The Mill coffee shop serves fairly - priced French food . It 's just by The Sorrento . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||A low rated English food restaurant Loch Fyne situated on riverside near The Rice Boat . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Conveniently located near Ranch , Cotto serves Italian food in a family friendly environment . It has been rated 3 of 5 stars . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||Riverside restaurant The Phoenix , which serves French food , has a price range of over 30 pounds but a low customer rating . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge is a cheap , average - rated restaurant . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop , located next to The Portland Arms , is a family friendly environment that offers a variety of foods . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a Japanese pub in Riverside that you can bring your children too . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man in riverside near All Bar One offers kid - friendly French dining for £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||Fast food coffee shop Fitzbillies has an average customer rating with a cheap price range . It is not family - friendly and is located in city centre . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||In the city centre near Yippee Noodle Bar , there is a lace serving Italian food called Alimentum . It costs less than £ 20 and has a low customer rating . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is a great place for kids and the prices are good too . It 's near Café Sicilia . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop by the riverside serving Italian food at prices between £ 20 - 25 . Customers give it a high rating but it is not kid friendly . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a restaurant that serves French food . It is located near All Bar One . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is an Italian pub with a high price range located in riverside . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers Japanese food at a moderate price , located NEA Rainbow Vegetarian Café \nname : The Eagle | price : high | customer rating : average | area : riverside||An expensive venue located in riverside , The Eagle received an average customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Cocum is a family - friendly coffee shop with a customer rating of 1 out of 5 and has a moderate price range . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel the coffee shop Taste of Cambridge serves Indian food and coffee to families of all ages in the city centre \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Fast food . It is located near Café Sicilia . \nname : Alimentum | food : French | price : high | area : riverside | family friendly : yes||Alimentum is kid friendly , is located at the riverside , and serves French food at a high price . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , is located near Café Rouge . It is a poorly rated , riverside , Chinese establishment . Children are welcome . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located riverside near Crown Plaza Hotel . It serves Italian food and is kid - friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no||Aromi is a Japanese coffee shop located in the city centre . They have low customer ratings and are not family - friendly . \nname : Blue Spice | price : high | area : riverside||Blue Spice is a costly choice in Riverside . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Place for Chinese food called The Rice Boat and it has a 5 out of 5 customer rating in city centre while it is also not family friendly . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater has a price range of less than £ 20 in Riverside , it has a low customer rating and is located near Café Adriatic . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||There is an inexpensive , family - friendly coffee shop called Cocum , which serves burgers and fries . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is a children friendly French food pub in the price range of more than 30 located in the city centre . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House , near All Bar One , is a cheap option for English food with a 5 out of 5 customer rating . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The Eagle has a moderate price range , a customer rating of a 3 out of 5 , and is located in riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a cheap family friendly coffee shop located near the Burger King called The Eagle . They offer good Italian food . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms . It is in the highest price bracket . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||The Browns Cambridge is a five star expensive restaurant . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a pub of Japanese food that has a low customer rating and family friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||There is a family friendly coffee shop located near the river called Zizzi . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Portland Arms is located near a coffee shop that has both a high customer ratting and is also considered children friendly , this place is known as The Cricketers and serves Indian food . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is poorly reviewed and the prices are unexplained . Despite it being fairly close to Rainbow Vegetarian Café and family friendly , they simply fall short . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children - friendly coffee shop in Riverside , near Avalon , in the high price range with a customer rating of average . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Near The Bakers you can find , Giraffe , a family friendly coffee shop . It has a moderate customer rating and a price range of less than £ 20 . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : no||Alimentum serves English food . There price range is moderate . In the riverside area . They are not kids friendly . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Located north of the city centre near the river , The Waterman is a moderately priced family restaurant . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||Zizzi is a French pub . it is rated average and is family - Friendly \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a Chinese restaurant with a low price range in the area of Riverside . It is not family friendly . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is an Italian restaurant located in the city centre . It 's in the high price range with an average rating and is children friendly . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||There is a fast food restaurant near Café Rouge named Midsummer House that has a 5 out 5 customer satisfaction rating . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||A restaurant with a customer rating of 5 out of 5 is Taste of Cambridge . Their price range is more than 30 . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a fast food restaurant on the riverside located near All Bar One is highly expensive but children friendly as well . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||There is a three - star family friendly pub called Zizzi which serves pasta . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Italian food but is not children friendly , it has a high price range but a low customer rating and is near Express by Holiday Inn , in the Riverside area . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop which offers Japanese food in the price range less than £ 20 . It has no family - friendly atmosphere . It is located near Café Sicilia with an average customer rating . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults is a restaurant offering Fast food . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a French coffee shop , near The Portland Arms in riverside . It has a moderate price range and is rated 1 out of 5 . \nname : Blue Spice | food : Chinese | price : moderate | area : riverside||In riverside is a Chinese restaurant called Blue Spice . It is priced average . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers offers highly rated Indian food , with prices ranging between 20 - 25 pounds . This establishment welcomes families of all ages . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||North of the City centre a fish restaurant called The Rice Boat can be found . It is situated by the river and next to Express by Holiday Inn . It is suitable for all families and is rated one star . It is a medium priced venue . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located in the city centre area , The Rice Boat provides 5 out of 5 Indian food in a non family friendly environment . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||wine and cheese plates reasonably priced the Green Man up the road from All Bar One . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||There is an Italian The Rice Boat and they are for family . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : cheap | near : Café Brazil||A cheap Chinese pub near Café Brazil is The Cambridge Blue . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub near Ranch , but its customer rating is low . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a prestigious coffee shop Cocum in the city . Its specialty is the pasta . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a non - family - friendly pub in the city centre . It has a price range less than L20 . \nname : The Mill | Type : pub | food : Chinese | price : more than £ 30 | area : riverside||The Mill pub serves Chinese food with prices over £ 30 in the riverside area . \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter offers Japanese food in the £ 20 - 25 range . \nname : The Plough | Type : pub | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough offers Fast food in a pub style family friendly environment for 20 - 25euros near Café Rouge . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Midsummer House offers expensive English food located in Café Rouge . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||If looking for kid friendly fast food , The Eagle coffee shop is located in the city centre near Burger King . With a rating of 1 - 5 , the price range is moderate . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a cheap Indian coffee shop with a low customer rating in Riverside near The Portland Arms . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||The price range of the restaurant Taste of Cambridge is high , and it has a customer rating of 1 out of 5 stars . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a mid price restaurant located near All Bar One \nname : The Eagle | food : Indian | customer rating : 1 out of 5||The Eagle is an Indian food place with a 1 out of 5 customer rating . \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||customer rating of 1 out of 5 and is within the high price range is Browns Cambridge \nname : Blue Spice | food : Indian | price : cheap | area : riverside||Blue Spice provides Indian food in the cheap price range . It is located in the riverside . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves Japanese food in the moderate price range is located near the Yippee Noodle Bar in Riverside and has a 1 out of 5 customer rating \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||There is a coffee shop Aromi located close to the center of the city that provides family - style dining . It has a superb view across the river . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry is a low rated , non family - friendly French food restaurant \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe is a low - priced restaurant located near The Six Bells . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||The Taste of Cambridge is a eat type restaurant with a price range of less than 20 and an average customer rating . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||Offering French food at less than £ 20 , The Plough is located near the Café Rouge . They are a family friendly pub . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is an expensive , low - rated Japanese coffee shop near the riverside . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a pub located by the riverside . Price range for than £ 30 . Customer rating is low . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : no||There is a non - family friendly Indian restaurant called The Twenty Two located in the riverside area . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you are near the Crowne Plaza Hotel in riverside , bring the kids to Taste of Cambridge for some coffee . \nname : The Eagle | food : Indian | customer rating : high||Expensive Indian food is serves at The Eagle . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a pub that provides Chinese food in the moderate price range . It is near Café Rouge . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is located near All Bar One in the Riverside area . Its price ranges at more than £ 30 . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a particularly expensive British restaurant that the whole family is welcome to enjoy . The service is worth the money , with impressive 5 - star reviews , it can be found near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop that serves French food . Found in city centre is has a high customer rating and average prices . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree is a moderately priced restaurant serving pasta and wine . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree English Family friendly pub The Portland Arms \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Eat in Browns Cambridge . French food for less than £ 20 but has a low customer rating \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||There is a coffee shop called Blue Spice that is child friendly and has a high customer rating the price range is more than £ 30 and it is in the area of riverside near Avalon \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The riverside area has a place called The Rice Boat . The Rice boat is a family restaurant with amazing prices . It 's near the Express by Holiday Inn . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant in the city centre near Yippee Noodle Bar . It has a three out of five customer rating and is in the £ 20 - 25 price range . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman serves Indian food in a high price range . It is rated average and located at riverside . Children are welcome . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap , 1 star Yippee Noodle Bar , it 's located outside Cambridge City Centre . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||Found near Café Rouge , Wildwood is a restaurant with a customer rating of 5 out of 5 . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub that is kid friendly , high priced French food , and is near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||High rated Japanese themed coffee shop called The Eagle in the area of Riverside near Burger King . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||The French eatery The Wrestlers , is children friendly , has a price range of more than £ 30 and a low customer rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a restaurant in the Riverside area . It is kid friendly , serves fast food , and is located near The Sorrento . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a 3 - star rated , moderately priced coffee shop located riverside near Café Brazil . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Located near All Bar One is Midsummer House . It offers English food with a price range of £ 20- £ 25 and has a high customer rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is near The Sorrento fast food restaurant , located by the riverside , friends and family welcome . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||There is a family friendly restaurant called Alimentum near the river at the top of the city . it is a low priced sit down style restaurant . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : yes | near : All Bar One||There is a restaurant near the All Bar One in the City Centre called the Green Man . It has a moderate price range and sells French food . It is children friendly . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a French coffee shop located near Café Sicilia . Environment is child friendly and costs are less than £ 20 . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is child friendly and earned a five out of five customer rating . Its price range is over £ 30 and is located near the Express by Holiday Inn . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is kids friendly and has high ratings for good prices . Located near Express by Holiday Inn . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is high . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is now serving Japanese food . It 's a family - friendly pub located in the area of Café Rouge . A meal will cost you about £ 20 - 25 . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||a Japanese restaurant with a price range of £ 20- £ 25 called The Dumpling Tree \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a child friendly coffee shop in the high price range with a high customer rating serving French food in the riverside area . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop . It is located close to Burger King . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Located near Yippee Noodle Bar , Strada is a Japanese pub with an average rating by customers . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is an excellent customer rating coffee shop called Aromi , near riverside with an adult atmosphere and fast food . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , there is a pub named The Golden Palace , located at riverside with high price range food to choose from . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a restaurant that has a high customer rating that serves Indian food with a price range of more than £ 30 . This restaurant is not children friendly and is near Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a family friendly pub in the riverside area and is close to The Sorrento \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix is a French food restaurant located in the city centre . The price of food is costly and has low customer rating . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||A Japanese restaurant near The Sorrento in the riverside area which isn 't family - friendly is called Browns Cambridge . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop has a high price range , kid friendly and located near Café Sicilia with a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||A reasonably - priced fast food restaurant is The Dumpling Tree . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a cheap , family friendly pub . It is near the city centre . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant with an average customer rating located near Express by Holiday Inn in riverside has a price range of less than 20 , average customer rating and non family - friendly . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix is a fast food establishment offering high quality food with prices starting from £ 30 . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : no | near : All Bar One||The Green Man isn 't kids friendly , it serves Japanese food , it is quite expensive . It is located in the city centre , near All Bar One . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||The Japanese , Alimentum , is both child friendly and moderately priced and is located in the Riverside area . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : yes||Loch Fyne is an Indian restaurant offering affordable meals in a family friendly setting . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Average customer rating and high price range Café include Travellers Rest Beefeater at riverside near Café Adriatic . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||Located in the riverside area with a low customer rating , The Phoenix is an Indian restaurant in the less than £ 20 price range . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||Located near The Bakers , Giraffe is a child - friendly coffee shop with a price range of £ 30 plus and a low customer rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Close to Ranch can be found a highly rated coffee shop called Wildwood . It serves Italian food but it is fairly pricey . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Italian restaurant it is located near Express by Holiday Inn it is children friendly with an average customer rating the price range is high and it is located near the city centre \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man is an Indian restaurant with high prices near All Bar One in riverside . Kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area , there is a children friendly coffee shop serving Fast food called Browns Cambridge with an average customer rating , near Crowne Plaza Hotel . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a Italian restaurant which offers Italian food at moderate prices and is kids Friendly . \nname : Bibimbap House | food : English | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is located in the city centre , near Clare Hall and serves English food at a moderate price range . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||The Loch Fyne is a family friendly Japanese restaurant in the less than £ 20 price range . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a Japanese coffee shop in Riverside . Located near The Sorrento this restaurant provides meals for £ 20 - 25 a plate . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||restaurant named Taste of Cambridge , Price range of £ 20 - 25 , and customer rating of 3 out of 5 . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House , near Café Rouge , offers Italian food . It has an average customer rating . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a highly - rated Italian restaurant in the Riverside area . Customers and their children both give it great ratings . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||The Blue Spice coffee shop is located near Avalon and not far from the city centre . It is reasonably priced . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a 1 Star restaurant . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : no | near : The Bakers||Located near The Bakers is The Golden Curry , an average price Chinese restaurant . Just leave the kids at home . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is right near the river and ideal for families with small children . With a three - star rating , you can enjoy a cheese board with wine , or fondue for example . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice in the riverside area has received a high customer rating with its kids friendly environment and £ 20 - 25 price range . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : no||The Golden Curry has an average rating and serves Indian food , however , it is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace Italian riverside coffee shop price range moderate and customer rating 1 out of 5 \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a a coffee shop that offers Indian food , family friendly with a low price range and customer rating . \nname : Blue Spice | food : French | price : moderate | area : riverside||At riverside is a moderate priced location called Blue Spice that offers French food . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||Located in the city centre near The Rice Boat , The Twenty Two is a non - child - friendly restaurant in the high price range . It has a rating of three out of five . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a restaurant that sells Indian food , located near Café Rouge in city centre . It is not family friendly but has a customer rating if 5 of 5 . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a mid - priced English restaurant near Rainbow Vegetarian Café . It is highly rated , but not for children . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is in the city centre near The Rice Boat . Is a none kids friendly place with an average customer rating of 3 out of 5 . Prices range from £ 20- £ 25 . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne in riverside is a highly rated eatery serving Italian food . It is located near The Rice Boat . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Midsummer House is a burger bar in the high price range with a three star rating . It 's located near All Bar One . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop , Browns Cambridge , serves Fast food and is kid friendly . With an average customer rating , it can be found in the riverside area near the Crowne Plaza Hotel . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||In the city centre , close to The Rice Boat , there is an Italian restaurant called Loch Fyne . It has a customer rating of 5 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has prices above £ 30 and is located close to Express by Holiday Inn . It is a child friendly location , with a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly sushi restaurant at a low price range . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is an upscale , family friendly coffee shop that is located on the river next to Burger King . \nname : Midsummer House | food : Italian | customer rating : 3 out of 5 | near : Café Rouge||Italian Café Rouge with customer rating 3 out of 5 called Midsummer House . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Japanese food near Raja Indian Cuisine in the riverside area . It is kids friendly and in the £ 20 - 25 price range . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||For an average children friendly restaurant try Cocum . \nname : The Waterman | price : moderate | family friendly : yes||Kid friendly , The Waterman has moderate prices . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum restaurant is in the riverside area near Yippee Noodle Bar . It has Indian food with a high price range and low customer rating . \nname : Loch Fyne | food : Indian | customer rating : average | area : city centre | near : The Rice Boat||An Indian restaurant called Loch Fyne is located in the city centre near The Rice Boat that is rated average with customer reviews \nname : The Punter | food : English | price : moderate||The Punter is moderately priced dining English food . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||Near The Rice Boat on the riverside there is a restaurant called The Mill . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada serves Japanese food and is located near Rainbow Vegetarian Café . It has an average customer rating and the price range is less than £ 20 . It is not family - friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||You could try an English restaurant called The Rice Boat in the city centre near Express by Holiday Inn . They 're kid friendly with moderate pricing and a 3 out of 5 customer rating . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers Fast food for less than £ 20 near the Rainbow Vegetarian Café . The joint is family friendly but the customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the city centre . Its customer rating is low . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto has a 1 out of 5 customer rating . It is located near Ranch and is family friendly . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is an Italian pub , located near Yippee Noodle Bar . It has a relatively low customer satisfaction rating , scoring a mere 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a kid friendly coffee shop with a Japanese theme and a high customer rating . It is located in the city centre . Price range £ 20 - 25 \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Highly priced French food is served at Fitzbillies , a child friendly coffee shop located in the city centre . Customer rating is 3 out of 5 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||The coffee shop named Giraffe is child friendly and is located near The Bakers . The price range is high and has a customer rating of 3 of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||For less than £ 20 , French coffee shop The Wrestlers can be found in Riverside near Raja Indian Cuisine . No families . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : yes||Alimentum is a child friendly French restaurant located in the city centre . It has a price range of more than £ 30 . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||There is a highly rated , child - friendly Fast food restaurant called The Rice Boat in the riverside area . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada offers Italian food for kids Friendly with cheap price in Rainbow Vegetarian Café . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||A moderate priced restaurant , Travellers Rest Beefeater , is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Located by the riverside , Fitzbillies is a coffee shop that isn 't family - friendly , has low customer rating and a price range of less than £ 20 \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||By the Rainbow Vegetarian Café there is a cheap restaurant named Strada that offers cheap English food . They have an average rating . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a Fast food pub near Café Brazil their price range is low - priced and cheap . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is an adult only Chinese restaurant located near The Sorrento in the riverside area . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia on the riverside , The Dumpling Tree is a coffee shop with cheap prices and family friendly . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a cheap place to eat near Rainbow Vegetarian Café \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||With a moderate price , The Phoenix at riverside serves French food . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area near the Crowne Plaza Hotel , there is a French coffee shop called Browns Cambridge . It has a customer rating of 3 out of 5 and is rated as kids - friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Child friendly Cocum was awarded 3 out 5 stars for its Indian cuisine coffee shop experience at an average price . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The coffee shop restaurant Fitzbillies is a high end , yet family friendly restaurant outside of the city center . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub providing French food . It has a customer rating of 5 out of 5 . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : city centre||'The Eagle ' is located in the city center . It costs over 30 pounds to eat out there and it has low customer rating overall . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop providing Indian food in the cheap price range . Its customer rating is 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||The Italian restaurant Clowns near Clare Hall in Riverside is serving up hot coffee with impeccable customer ratings . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Browns Cambridge is a high priced Italian restaurant with a low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||There is a restaurant called The Cambridge Blue . It has a customer rating of one out of five stars . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||A child friendly place is Strada . It has average reviews and decent prices . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two serves Chinese and is children friendly . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is an Italian restaurant in riverside . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a English restaurant with moderate prices in the city centre \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||For moderately - priced English food , The Dumpling Tree restaurant is a good option . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough pub is low - priced . It 's near Café Rouge but is not family friendly . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||A cheap , family friendly restaurant located near the Ranch is Cotto . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||There is a one star , high priced pub named Clowns near the river . \nname : Strada | Type : pub | food : Indian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada , a pub located near Yippee Noodle Bar is serving Indian food . It has been rated 1 out of 5 in customer satisfaction . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Located close to the riverside area , Aromi is a fast - food restaurant . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove , a restaurant located in the riverside area , offers a family - friendly atmosphere . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | near : Café Brazil||The Vaults is a reasonably priced coffee shop . It has a low customer rating . It 's location is in the city centre near Café Brazil . \nname : Strada | Type : pub | food : Indian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||With a customer rating of three out of five , Strada is an Indian pub near Yippee Noodle Bar . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a moderately priced Italian restaurant located near The Bakers . It is not considered kid friendly . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry provides Chinese food It is located in the riverside . It is near Café Rouge . Its customer rating is low . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : no||The Olive Grove is a restaurant with affordable prices , offering French food in the area of riverside \nname : Midsummer House | food : Chinese | customer rating : low | near : Café Rouge||Midsummer House is a Chinese restaurant , located near Café Rouge . It has a low rating . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Cheap and affordable Italian food served at Blue Spice . Riverside . \nname : The Phoenix | food : French | customer rating : 1 out of 5 | area : riverside||The Phoenix serves French food near the riverside . It has a customer rating of 1 out of 5 . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves cheap Indian food and is family friendly . It 's rated 5 out of 5 . Near the Rainbow Vegetarian Café . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , near Café Adriatic in the riverside area , is highly rated . Typical prices are £ 30 and above . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||for more than £ 30 within riverside The Twenty Two has a low customer rating , is children Friendly and near The Rice Boat \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||There is a place to eat in riverside that offers French food at a price of more then £ 30 . It is called Blue Spice . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a 3 star fast food restaurant nearby that provides a low price option for families . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||There is a children friendly French restaurant called The Vaults that has a price range of more than £ 30 . \nname : The Eagle | food : Indian | customer rating : average||The Eagle Indian food with average customer rating . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough pub is located near Café Rouge and offers Italian cuisine at low prices . \nname : The Eagle | food : English | customer rating : 1 out of 5||With a customer rating of 1 out of 5 The Eagle has American food . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in city centre , serves English food and received a 5 out of 5 customer rating . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a pub located in the area of riverside . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a restaurant which provides Indian food in less than £ 20 . Not ideal for family due to their low customers ' rating . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is rated 3 out 5 and it is near the Rainbow Vegetarian Café . The price range is moderate . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a cheap Italian restaurant The Golden Curry located near The Bakers . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a high - priced coffee shop located in the City centre named Zizzi . It is family friendly and has 3 stars . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is good for their English dishes , it 's next to the All Bar One and very good and cheap . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : city centre||The Waterman , in the center of the city , serves French cuisine in a Pub type environment . The rating is average . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||Just north of Café Adriatic is The Vaults pub . Stop in for a pint . Middle price range . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : city centre||Located in the city centre , The Blue Spice services Chinese food for less than average prices . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults serves mid rice range beluga , it is family friendly and based in the city centre . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : city centre||The Phoenix is an expensive but popular Indian restaurant near the city centre . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Moderately priced 1 star English food at Alimentum , by the river , close to Yippee Noodle Bar \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Located in the city centre The Waterman is not child friendly . Serving an English menu with prices ranging from £ 20 -25 . Customers rate this restaurant highly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a low cost family friendly coffee shop near the river and Raja Indian Cuisine . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||A Fast food coffee shop in the riverside area is Cotto . It is near the Portland Arms , has a high price range and an average customer rating . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a restaurant situated north of the city centre and is family - friendly . \nname : The Punter | food : English | price : less than £ 20||The Punter serves English food for less than £ 20 . \nname : The Golden Curry | food : Indian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is an Indian restaurant in the cheap price range , it is family friendly and is located near The Bakers \nname : Green Man | Type : restaurant | area : riverside||In the riverside area there is a restaurant named Green Man . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||Near The Portland Arms , The Dumpling Tree is a pub offering Italian food in a childless atmosphere . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop located in the city centre near Burger King . It has cheap prices and low customer ratings . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Avalon||Blue Spice is a coffee shop in city centre near Avalon . It has a high customer rating with a price range of 20 - 25 . It is not family - friendly . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||Around the corner from Ranch , there is the Wildwood coffee shop that serves French cuisine in the higher price bracket . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace in riverside is a fast food serving coffee shop that is cheap and the customer service is average . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , a non kid friendly restaurant , serves English food . Though the rating is low , it is in the center of the city near Café Rouge . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly French restaurant with a low customer rating , located near Café Rouge in the city centre . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub located near Ranch . It has a customer rating of 5 out of 5 and is children friendly . \nname : The Olive Grove | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||There is a kids friendly pub called The Olive Grove in the riverside area , serving English food with a price range of £ 20 - 25 . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Family friendly coffee shop Giraffe , serves inexpensive food and is near the The Bakers . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an inexpensive family friendly coffee shop located by the riverside that has Italian food and a customer rating of 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop serving Indian food . It has a high price range and a high customer rating of 1 out of 5 . It is located in the city centre area . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a higher priced pub located in the riverside area . It serves French food as is child friendly . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a fast food pub near The Portland Arms , that is family friendly . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers Chinese restaurant , cheap prices , family friendly , 5 out of 5 customer ratings \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||With a customer rating of 1 out of 5 , Fitzbillies is a coffee shop that offers fast - food in the city center area . This moderately priced coffee shop is suitable not for children . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||A high rated fast food coffee shop name Cotto is price ranged at £ 20 - 25 . It is in the city centre of The Portland Arms . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : city centre||The Waterman is a fast food pub located in the city centre . They have a customer rating of 5 out of 5 . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman , in riverside , is not a family - friendly restaurant , but it serves cheap English food and has high ratings . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is low price coffee shop named serving Italian food Located in city center near Clare Hall \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Located near The Six Bells is a kids - friendly place called The Golden Curry . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is on the riverside near the Express by Holiday Inn . It serves French food within the price range of more than £ 30 . It has a low customer rating ; it 's a no for families with children . \nname : The Olive Grove | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a pub that serves Chinese food . The price range is £ 20 - 25 . It is located by the riverside and yes it is kids friendly \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop is located at the riverside . It serves Indian food , is moderately priced , has a 3 out of 5 customer service rating and is kid friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman located near city centre serves cheap Indian food . It has a 5 out of 5 rating and no , it is not family friendly . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Pub style Giraffe serves Indian food and is kid friendly . It 's located in the riverside area . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub with no family - friendly stuff with price range less then £ 20 provided Japanese food near Café Rouge . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||The Phoenix is an Italian riverside venue with a rating of 1 out of 5 . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada offers Chinese food at a high price range and located near Rainbow Vegetarian Café . It is children friendly and has a rating of 1 out of 5 . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : yes||Italian restaurant Alimentum is located in the heart of town and offers a family - friendly atmosphere and good food at a higher price . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop located near Clare Hall , at city centre . It offers French cuisine and has average ratings . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves up incredible Indian food for cheap in the heart of the city by Express by Holiday Inn . It caters mostly to individuals and is rated highly by customers . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers serves French food is moderately priced and not kid friendly and rated 1 out of 5 stars . \nname : The Twenty Two | food : Italian | family friendly : yes||You can get Italian food at The Twenty Two with your friends and family . \nname : The Olive Grove | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes||The Olive Grove , located riverside , is a family friendly pub . It serves cheap Indian food . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre near Express by Holiday Inn , is The Rice Boat . It is a cheap Italian restaurant , rated 5 out of 5 , that is not family - friendly . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a child friendly coffee shop near The Bakers . Customer rating is 1 out of 5 and has a high price range . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Japanese food can be found at The Rice Boat on riverside , however even though they are children - friendly , they have a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||The Mill is a riverside based , fast food pub . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry is a family - friendly establishment serving English food . its price range is less than £ 20 . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove pub is a family - friendly Fast food which in the price range of less than £ 20 located near the City centre \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is found at the riverside near Clare Hall . It sells French Cuisine between £ 20- £ 25 . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a non family - friendly French pub located in the city centre with a price range of less that £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is moderately priced and poorly rated Indian coffee shop located in the city centre . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : no||There is a restaurant called The Twenty Two in the city centre area that is not family friendly and it serves Chinese food . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man fast food is near All Bar One in city centre . We offer a price range of less than £ 20 . We are not family - friendly . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a moderate French coffee shop near Burger King in city centre . It is not kid friendly and has a 1 out of 5 rating . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||For French cuisine in a children friendly environment we recommend Strada . Located near the Rainbow Vegetarian Café , Strada has a 5 out of 5 customer rating and prices starting from £ 30 . \nname : The Rice Boat | food : English | area : city centre||City Centre has a English food restaurant names The Rice Boat . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly venue offering Indian food and is located near Crowne Plaza Hotel . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is a pub that sells Indian food , it has an average customer rating and is family friendly \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe pub in the riverside area , serves Fast food and is family friendly . \nname : The Golden Curry | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Near The Bakers is The Golden Curry . It is fast food and kid friendly . The price range is L 20 - 25 . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two groups were no where friendly . They were not willing to spend less than £ 20 near The Rice Boat on the riverside , who had low ratings \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||The Loch Fyne restaurant in the city centre beside The Rice Boat is 5 out of 5 rated and serves English food . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Bargain priced Cotto is a coffee shop selling Indian food at the river 's edge located near The Portland Arms . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced Italian restaurant near Express by Holiday Inn . It is not kid friendly , is located on the riverside , and received a 1 out of 5 star rating . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||Taste of Cambridge is an excellent restaurant that provides meals for around twenty to twenty - five euros . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is located near The Portland Arms . It is kid friendly and serves French food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Located near Burger King in Riverside , The Eagle is a Japanese restaurant that serves moderately priced food . They received a 1 out of 4 customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop serving Italian food and is priced low with 5 out of 5 stars . It is family friendly . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||There is a restaurant nearby serving English food named The Cambridge Blue which has a 5 out of 5 customer satisfaction rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a 5of5 stars coffee shop located near Café Sicilia , serves fast food for all \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family - friendly pub with cheap prices located in city centre . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a 3 - star family restaurant near Express by Holiday Inn called The Rice Boat . They are expensive . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 5 out of 5||the Indian restaurant The Cambridge Blue has a rating of 5 out of 5 \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : riverside||The Phoenix serves English food and has a customer rating of 5 out of 5 , it is located in the riverside area . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Indian cuisine and is highly rated . It is located in riverside near Café Rouge and is kid friendly . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The restaurant Strada , near Rainbow Vegetarian Café , is high - priced . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||Located near The Portland Arms is a pub The Dumpling Tree . They are child friendly and serve Indian food . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||The Rice Boat is located riverside . It is not family friendly and has a lower customer rating . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located riverside near Express by Holiday Inn you will find The Rice Boat offering Chinese food . They have a high customer rating and are price ranged more than £ 30 . They are children friendly . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is located near the Rainbow Vegetarian Café . It has a high price range and has a customer rating of average . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge serves French food at low prices , and is rated 5 out of 5 with customers . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is near The Portland Arms , and it is a high rated coffee shop that serves fast food at £ 20- £ 25 on the riverside . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum is a coffee shop which is family oriented . Prices are on the higher scale , but they also offer sushi for lunch . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is an establishment located in the riverside area of the city , near All Bar One . it serves French food , is in the over £ 30 price range , and is child friendly \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||Stop by The Cambridge Blue , a pub near Café Brazil , for and affordable drink . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman serves cheap Italian food customer rated as average . It is family friendly place in riverside area . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||The Golden Curry offers an exotic meal . Families welcome and handicap accessible . 3 star rating . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Indian food in the high price range . It is located in the riverside . It is near All Bar One . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes||Take the family to Cocum , a coffee shop serving good Indian food at low prices . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||For a high priced , 5 star , Italian , riverside restaurant not far from Yippee Noodle Bar then go visit Alimentum \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a popular child friendly restaurant with reasonable prices , located near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in Riverside near Express by Holiday Inn . They serve English cuisine and it offers a children friendly environment . It has been given average ratings by customers which is unexpected since it is a high price range . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||There is a Chinese restaurant Alimentum , with a high customer rating , and price . In city centre near Yippee Noodle Bar \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Blue Spice serves French food near the riverside . The price range is £ 20 - 25 . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a low priced family friendly pub serves Chinese located in riverside \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is located near All Bar One on the Riverside that has low cost and serves English food . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood Pub is a medium - priced restaurant that is highly rated . \nname : Wildwood | Type : pub | food : Chinese | price : more than £ 30 | customer rating : high||Wildwood is a pub with a high customer rating where you can eat Chinese food . Expect to spend no more than £ 30 . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family oriented restaurant with prices the whole family will love . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The low - cost coffee shop , Cotto , has five out of five stars . It is located near The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee Shop , providing fast food . Have 1 out of 5 customer rating and high price range . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant providing fast food in the low price range . It is located near the Rainbow Vegetarian Café \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi , a non - kid friendly place with low ratings , is an English pub . \nname : The Rice Boat | food : Japanese | area : riverside||A Japanese restaurant named The Rice Boat is located in the area of riverside . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is a 5 star coffee shop located near Ranch . Wildwood offers French cuisine at more than £ 30 an entree . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||The Giraffe is a kids friendly coffee shop near The Bakers with a 3 out of 5 customer rating . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat has a low customer rating but the price range is less than £ 20 and is located near the Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||City Centre has a coffee shop that serves Japanese food , children friendly , has a customer rating of 3 out of 5 and on a high price range called Fitzbillies . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no||Although The Olive Grove , is located in the city centre with a moderate price range and fast food . This pub is not kids friendly . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not recommended for families . It has a moderate price tag and an average customer rating . Serving fast food , and can be found in the riverside area , close to Express by Holiday Inn . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is a high - quality kid - friendly restaurant with an average price range . It is located on the riverside . \nname : The Vaults | food : Italian | price : more than £ 30 | family friendly : yes||The Vaults is child friendly Italian eatery costing more than £ 30 \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that serves Indian food in the city centre . It is family Friendly and is near the Crowne Plaza Hotel . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a family friendly restaurant located in the city centre that provides Indian food which has a low customer rating and the price range is less than £ 20 . \nname : Green Man | Type : restaurant | area : riverside||The Green Man is a restaurant at the riverside . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers provides a family friendly dining experience with a 5 out of 5 customer rating . The restaurant serves Chinese food for a cheap price . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||Zizzi is a pub that serves French food . It is not family - friendly and has a low customer rating . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||A family friendly restaurant near The Portland Arms , The Punter , offers food that costs less than £ 20 . It is located by the riverside . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||There is a moderate price range Fast food restaurant near All Bar One called Midsummer House . It has a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a low priced and family oriented restaurant . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Near the city centre , there is a non family friendly Indian restaurant called The Rice Boat . It has a 5 out of 5 rating . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : low||The Cambridge Blue is a low - rated Chinese restaurant . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||Chinese food is served at The Golden Curry . It has an average customer rating and yes , it is children friendly . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman has Japanese food , is kids - friendly and is located near Crowne Plaza Hotel . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The Eagle is a moderately expensive restaurant located by the riverside . It has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||The Mill pub is located next to the river \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap and family friendly fast food place in riverside . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is located in the centre of the city near Café Rouge that is not family friendly but serves Indian food . They have poor customer rating . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly restaurant offering Indian food for under £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a fast food coffee shop located near Crowne Plaza Hotel in riverside . It 's not family - friendly and has an average customer rating . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||A French pub in the less than £ 20 price range , Wildwood has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||A coffee shop serving Indian food with a price range less than £ 20 and a low customer rating in city centre near Burger King is The Eagle . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes||There is an Italian coffee shop called Aromi that is located in the city centre . It is family - friendly and has low customer ratings . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is an expensive pub near Café Adriatic with a rating of 3 . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a none kids friendly restaurant located in the city centre near Express by Holiday Inn . It serves Japanese food for moderate prices . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a south Asian eatery known for its spices . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||With an average customer rating , Cotto near Ranch serves Japanese food . Yes , it is family friendly . \nname : The Golden Curry | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is fast food and kid friendly . The price range is L 20 - 25 and is located near The Bakers . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||Japanese riverside coffee shop The Golden Palace customer rating high and price range £ 20 - 25 \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry , an average rated Italian restaurant near the city centre , is family - friendly and near Café Rouge . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a child friendly fast food venue with a customer rating of 3 out of 5 . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Located in the gleaming city center next to popular shopping and entertainment is Strada a five star family friendly Japanese restaurant that provides entertainment while cooking your meal . Parking available across from the Rainbow Vegetarian Café \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : no | near : Ranch||Cotto is a Japanese restaurant with no family - friendly ambiance . It is located near Ranch with a customer rating 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A family - friendly coffee shop serving Italian food with an average customer rating is Browns Cambridge near the Crowne Plaza Hotel . \nname : Strada | Type : pub | food : Indian | customer rating : low | near : Yippee Noodle Bar||Strada is a pub providing Indian food It is near Yippee Noodle Bar . Its customer rating is low . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||Aromi the coffee shop has a 1 star rating and isn 't suitable for families . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly fast food restaurant with moderate prices . \nname : The Olive Grove | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove , and Indian pub , is priced at more than 30 pounds , but is very child friendly and is located riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||At an average cost of £ 20 - 25 , the coffee shop Cotto offers highly - rated Japanese style food . This coffee shop can be found in the city centre area near The Portland Arms . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Indian restaurant Cotto has a customer rating of 1 out of 5 , is child friendly and is located near the Ranch . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a three star coffee shop that serves pasta in the medium price range . It is located near Café Sicilia . Public restrooms available . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix in the city centre serves moderate Italian food for a reasonable price . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada get Fast food pub near Yippee Noodle Bar . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an upscale Italian restaurant with an average customer rating and is not family - friendly . It is located near the Café Rouge in the city centre . \nname : Clowns | Type : restaurant | near : The Portland Arms||Clowns is a restaurant located a few steps of The Portland Arms . \nname : The Vaults | food : Indian | price : moderate | family friendly : yes||The Vaults is a kids friendly establishment in the medium price range offering Indian food . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||For fast food , try Midsummer House near All Bar One . The food is pricey and is rated 1 out of 5 . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : city centre||Zizzi is a locating in the city centre with a price range of less than £ 20 for a restaurant \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||With a customer rating of 5 out of 5 , Strada serves cheap fast food . It is located near Rainbow Vegetarian Café and isn 't family - friendly . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family restaurant near the Express by Holiday Inn in River side . The restaurant serves French Food and prices are amazing and customer love it . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||A restaurant with high customer rating is Cotto Italian food near Ranch and is Child Friendly \nname : The Punter | food : Fast food | price : less than £ 20||The is a low - priced place The Punter where there are cool drinks hamburgers and chips \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop has good reviews and is located near Avalon . \nname : Alimentum | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum offers fast food in a child friendly environment in the riverside area . The price range at Alimentum is more than £ 30 . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a kid friendly Japanese restaurant in Riverside . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||There is a French coffee shop with a customer rating of 5 out of 5 . It is called Cotto and is located near The Portland Arms in the city centre . \nname : The Golden Curry | food : English | price : more than £ 30 | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry offers English cuisine with a price range of more than £ 30 . The restaurant is family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is an Indian coffee shop in the riverside area . This restaurant is very family friendly and is located near the Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Near Café Sicilia ; The Punter is a low rated coffee shop . They offer Japanese food for less than £ 20 , but they are not family - friendly . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is a pub in riverside that has a price range of more than £ 30 that sells Japanese food . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a low - priced restaurant in the city centre that delivers take - away . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||The French coffee shop Cotto is located near The Portland Arms in the riverside area . It has a low customer rating and a price range of less than 20 pounds . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The family friendly restaurant near The Rice Boat in the riverside area is called The Twenty Two , but it has low customer rating . The price range is less than 20 pounds . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Midsummer House is a one - star restaurant in Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop that provides Indian food with prices less than £ 20 . It is located on the riverside near Burger King . Low customer rating . \nname : Blue Spice | food : Indian | price : moderate | area : riverside||Blue Spice is a moderately priced Indian food eatery in riverside . \nname : The Golden Palace | Type : restaurant | price : high||A high price ranged restaurant is The Golden Palace . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Three star family friendly coffee shop The Eagle , is situated close to Burger King in the city centre \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is located on the riverside , it has cheap prices and average ratings . It serves Italian food . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no||There is an average customer rated Japanese coffee shop located in the centre called Aromi that is not family - friendly . \nname : Strada | Type : pub | food : Chinese | customer rating : low | near : Yippee Noodle Bar||The Strada pub by Yippee Noodle Bar has a low customer rating but , offers Chinese food . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children friendly restaurant located on the riverside near The Rice Boat . It gets a high customer rating and has a £ 20 to £ 25 price range . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum coffee shop family friendly great food service at a higher price \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||A restaurant named The Green Man is in the riverside area located near All Bar One . It is kids friendly and offers Chinese food with a moderate price range \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly pub in the riverside area with a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low priced fast food coffee shop near Burger King by the river . It is family friendly and has a low rating . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is the restaurant located near Rainbow Vegetarian Café . It serves really expensive Indian food , has a rating of 1 out 5 , and is not family friendly . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Located near All Bar One , moderately priced Indian food is available at Midsummer House . Customers rate it 1 out of 5 and the food is moderately priced . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Chinese food in the high price range . It is located in the riverside . It is near All Bar One . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry is an above averagely priced , French restaurant that is child friendly . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||Wildwood is a pub with a high price range and serves Italian food . It 's rated in average . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in the city centre . It has an average customer rating and offers Italian food . Prices are cheap . It is family - friendly . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||Browns Cambridge is a place that offers English food for less than £ 20 . It has a low rating \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat can be found north of the city center . , beside the Express by Holiday Inn and the river . Their British cuisine is family friendly , and prices are somewhat steep , but it is worth the money for the outstanding service . \nname : The Olive Grove | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||Italian food pub The Olive Grove kid friendly moderately priced riverside area . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||Fast food and coffee can be found at The Punter near Café Sicilia . It isn 't family - friendly and is expensive however customer ratings are just 1 out of 5 . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Zizzi is a restaurant that serves low priced meals and is located right off of the river . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a restaurant near the Express by Holiday Inn and it is kids friendly . It is in the price range of £ 20 - 25 which is average for the area , and customers give it a rating of 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is an expensive coffee shop located riverside . It has a low customer rating , but is child - friendly . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap , family friendly restaurant serving English food . It has a low customer rating and is near the Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle , located by Burger King , is a low - end , family friendly coffee shop that serves sushi . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Down by the riverside there is a a low cost French restaurant called Blue Spice . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a moderately priced , kid friendly Chinese restaurant located in the riverside area and has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum has been highly rated by customers . It is in an average price range , and serves French food and coffee , but does not allow children . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia the Japanese coffee shop The Punter has a high customer rating , is kids Friendly and prices range between £ 20- £ 25 \nname : The Olive Grove | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Indian food in the cheap price range . It is located in the riverside . \nname : Cotto | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||it is a kids friendly Fast food place near Ranch named Cotto with customer rating of 3 out of 5 \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no||A French food place , With a customer rating being average , Cocum has a price range less than £ 20 . It is not family - friendly because it is a coffee shop . \nname : The Plough | Type : pub | food : English | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Near Café Rouge you will find a pub called The Plough that provides English food in the price range of £ 20 - 25 and a child - friendly atmosphere \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop called Cotto on the riverside by The Portland Arms . It serves Indian food but for its expensive prices , the reviews aren 't too good \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry Indian restaurant located near Café Rouge in the riverside area is not family friendly and has a low customer rating . \nname : Midsummer House | food : Indian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is near All Bar One and serves Indian food within a high price range and has a customer rating of 1 out of 5 \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Located near Burger King by the riverside is a high priced Japanese coffee shop , rated 3 out of 5 , called The Eagle . It is not children friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop with Indian food in the price Range of less than £ 20 , with a low customer Rating and not family Friendly , in the riverside area near Burger King . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly French restaurant with a customer rating of 5 out of 5 . It is cheap and located near Rainbow Vegetarian Café . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a high - cost , five - star , family - friendly restaurant . \nname : The Punter | food : French | price : more than £ 30||The Punter offers French food with prices over £ 30 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Adult only The Waterman located in the city centre serves Japanese food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , a fast food coffee shop is not kid friendly . With a high price range , it is near Raja Indian Cuisine and in the riverside area . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant that 's rated 1 out of 5 ; but is riverside and family friendly located near Café Rouge . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||Taste of Cambridge has a average price range of £ 20 - 25 . it is a highly rated restaurant . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a moderately priced kid friendly restaurant with a 3 out of 5 star rating . It is is the riverside area near The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a high priced coffee shop in the city centre that provides Japanese food . It has a customer rating of 3 out of 5 and children are prohibited . \nname : The Punter | food : Chinese | price : cheap||The Punter is a low - priced Chinese restaurant . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves Fast food by the riverside ; it has a moderate price range and 3 out of 5 rating but is not suitable for children . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge near Crowne Plaza Hotel in the city center . This coffee shop serves amazing Italian food , has a 5 out 5 rating . Leave the kids at home for this establishment . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||3 out of 5 stars is pretty high for a coffee shop . There is a shop in riverside near Café Brazil named The Vaults that is really good . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : yes||The Alimentum serves Chinese good in the riverside area . It is in the high price range . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman provides Indian food in the high price range . It is located in the city centre . \nname : The Waterman | price : cheap | family friendly : yes||The Waterman is a great family - friendly restaurant . It is cheap and has a great menu . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly , Japanese , coffee shop located in the city centre near the Burger King . However , it has a low customer rating and the meals cost more than 30 pounds . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||The Vaults , near Café Brazil , is located in the city centre . A great coffee shop at a high price and a customer rating of 3 out of 5 . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix offers sushi at low cost . They are a five star restaurant on the riverfront . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||At the riverside is Green Man , whose food costs about £ 20 - 25 and is kids friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is high rated coffee shop with ratings as 5 out of 5 located in the riverside . It is children friendly and serves French food with price range more than £ 30 . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||A moderate priced pub The Olive Grove offers a yes to kid friendly eats with a moderate price . Located riverside . \nname : The Twenty Two | food : French | area : city centre | family friendly : no||The Twenty Two is located in the center of the city . It serves French food and is not family - friendly . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : city centre||You can eat for less than £ 20 at The Eagle in the city centre . It has a low customer rating . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||An Italian place with a moderate price range near Clare Hall and the riverside name Bibimbap House . \nname : The Vaults | food : Chinese | price : £ 20 - 25 | family friendly : yes||The Vaults is a moderate priced Chinese restaurant . Kid Friendly . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Bibimbap House is serving fast food near The Rice Boat in the riverside area . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Zizzi is a Fast food pub which is not family - friendly and a customer rating of 5 . \nname : The Golden Curry | food : Chinese | price : high | family friendly : no | near : The Bakers||The Golden Curry , located near The Bakers provides Chinese food at a price range of high . It is not child friendly , however . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a high - end family friendly establishment north of the city centre . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is located in riverside near All Bar One and has price ranges at more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is rated 1 out of 5 by its customers . The Eagle is high priced . The Eagle is situated near Burger King in the riverside area . Children Friendly - yes . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Rated 3 out of 5 , The Rice Boat offers fast food that is moderately priced not for kids . It is located at the riverside near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an average rated family friendly coffee shop in the riverside area . It has a low price range . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||For a three star customer rated French food , try The Rice Boat , in the Riverside area , near Express by Holiday Inn , but is not child friendly \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee Shop , restaurant is down the street from the ' Café Sicilia ' . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle in the riverside area is cheap and averagely rated by customers . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Italian kid friendly place near Rainbow Vegetarian Café . It has low ratings and is cheap . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a medium priced coffee shop Fitzbillies that is family friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a an establishment located in the city centre that is moderately priced called The Waterman . It is not kids friendly and has a rating of 1 out of 5 . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is located in the riverside area near to The Sorrento and it provides Italian food . Also it is friendly for kids . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle offers Japanese food and coffee shop with cheap price near Burger King in riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Fitzbillies near the riverside is a adult only coffee shop with low customer ratings . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||Located in the city centre , near Café Rouge , there is a place where they provide English food , The Golden Curry . It is not family - friendly and its rating is low . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a nicely made French coffee shop that is kids friendly and located near Raja Indian Cuisine in the riverside area . The price range is moderate . \nname : Wildwood | Type : pub | food : Indian | price : £ 20 - 25 | customer rating : high||Wildwood is pub that provides Indian food with prices around £ 20 - 25 . It has a high customer rating . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||A family friendly pub by the river that serves English cuisine is called Giraffe . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||3 Star Classic American cuisine at an affordable price . Family friendly The Punter coffee shop , just north of Café Sicilia . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a fast food pub at the riverside , it is family - friendly and costs less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||Next to The Portland Arms is a coffee shop with a one star rating called The Cricketers which is not family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located by the river near the Crown Plaza Hotel . It serves Italian food and is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Italian coffee shop , located near Crowne Plaza Hotel by the riverside . The establishment is not family - friendly . Rated average . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is a family friendly coffee shop with a three star rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There is a family - friendly but high priced coffee shop in City centre called Fitzbillies . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop has moderate prices and a 3 out of 5 customer rating . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Chinese food and has high customer ratings , is child friendly , and is located near Café Rouge in the Riverside Area . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is low . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : no||The Vaults serves Japanese good costing more than 30 . It is not children friendly . \nname : The Mill | Type : pub | food : Indian | price : high | area : riverside||The Mill is a high priced pub serving Indian food in Riverside \nname : The Vaults | Type : restaurant | food : English||There is an English restaurant that is called The Vaults . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||The pub Cocum has a customer rating of 1 out of 5 and is in the moderate price range . It is not kids friendly . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe , located near The Bakers , is a children friendly coffee shop with a high customer rating and a price range of more than 30 euros . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a family friendly , English pub in riverside called Giraffe . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Offering moderately priced Indian fare in the Riverside area , The Waterman has been rated as 3 out of 5 by diners and is for recommended for adults . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant located near Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace is not close to the City centre . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : city centre||There is a restaurant located in the city centre with low customer ratings called The Eagle . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||With a customer rating 1 out of 5 The Rice Boat offers non kids friendly English food for a moderate price range near the Express by Holiday Inn . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a pub providing Japanese food . It is located near Café Brazil \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||In riverside there is a restaurant priced above £ 30 called Zizzi . \nname : The Olive Grove | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove , located on the riverside , has a price range between £ 20 - 25 . It is a pub and is friendly for kids . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||There is a restaurant named Loch Fyne that provides classic and tasty meals for a cheap price \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||In Riverside , the pub Clowns has a low customer rating and a price range of more than £ 30 . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House serves Italian food near Café Rouge and has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||There is a kids friendly place called Browns Cambridge that serves French food in Riverside near The Sorrento \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a highly priced Japanese restaurant close to the Rainbow Vegetarian Café . It has good customer ratings and children are welcome . \nname : Blue Spice | food : English | price : less than £ 20 | area : city centre||Blue Spice serves English food in city centre with price range less than £ 20 . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a child - friendly establishment in the city centre that provides expensive Japanese food . It is rated 5 out of 5 by customers . \nname : Green Man | Type : pub | food : Japanese | area : city centre | near : Café Rouge||Green Man is a pub selling Japanese food near Café Rouge near the city centre . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue 's customer rating is 5 out of 5 . It is a French restaurant \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood is a cheap Italian pub with a 5 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter family friendly coffee shop with less than £ 20 price range serves Japanese food near Café Sicilia has a low customer rating . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||Although The Golden Curry which received low customer ratings , is a very family friendly French food restaurant \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : city centre||The Phoenix provides Chinese food in the cheap price range . It is located in the city centre . Its customer rating is average . \nname : Strada | Type : restaurant | customer rating : average||Customers have rated Strada restaurant as average . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge serves moderately priced Italian style food accompanied with wine . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagles is rated 5 out of 5 , serving Japanese food in a coffee shop . It is higher than average priced , and located near the city centre near Burger King . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : no||There 's a Fast food restaurant near the city centre that 's not kid friendly , with a moderate price range , called Alimentum . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man provides Chinese food in the high price range . It is located in the city centre . It is near All Bar One . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is The Rice Boat . It is kid friendly and highly rated for its mid priced Japanese food . \nname : The Olive Grove | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||For a higher priced family friendly Chinese food pub go to The Olive Grove . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The best pub food near Café Adriatic is The Vaults which has a price range of 20 to 25 Euros along with a high customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an average rated coffee shop for adults that serves an array of moderately priced fast food . It is located near Burger King in riverside . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Close to the Express by Holiday Inn , you can find Fitzbillies , a mid - range restaurant . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub serving Chinese food for less than £ 20 . It 's family friendly and is in the city centre . \nname : The Olive Grove | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes||The Olive Grove offers high - priced Japanese food and are child - friendly . They can be found in the riverside area . \nname : Fitzbillies | food : Indian | price : more than £ 30 | near : The Six Bells||For more than £ 30 , try out Indian food at Fitzbillies . Just located by The Six Bells . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||Based in the city centre near the Café Rouge , The Golden Curry has a low customer rating and serves French food . it is not family - friendly . \nname : Aromi | Type : restaurant | food : English | area : city centre||In the city centre area is an English restaurant named Aromi . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||Near Café Brazil , The Cambridge Blue offers Japanese pub for more than 30 euros . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill , located in riverside is an English style high prices pub . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||Italian food is served at moderates prices in the The Mill Pub by the riverside . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House serves English food at low prices near All Bar One . It has a low customer rating . \nname : The Golden Curry | food : Italian | price : high | family friendly : no | near : The Bakers||For a highly priced non - child friendly Italian restaurant , The Golden Curry is located near The Bakers . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||The Clowns coffee shop serves Italian food , it is located along the riverside , near Clare Hall , it has a low customer rating . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge has a customer rating of 5 out of 5 while also being cheap . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The pub The Dumpling Tree serves Italian food is kids - friendly and is located near The Portland Arms \nname : Cotto | price : cheap | area : riverside | near : All Bar One||By the riverside and near All Bar One , Cotto is inexpensive . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is an average coffee shop that provides cheap fast food . It is located near Café Sicilia and it is not family - friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is an Indian pub that is highly rated and kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||A family - friendly eatery on the riverbank , north of the City centre , the 5 - star Fitzbillies is a moderately - priced coffee shop serving a range of fast - food options . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies coffee shop serves Indian food with meals priced at £ 20 - 25 . It is highly - rated , by the riverside and not suitable for children . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the city centre area near Express by Holiday Inn . It has Italian food in the £ 20 - 25 price range with a high customer rating , but is not kid friendly . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is an excellent but expensive Japanese restaurant near the All Bar One . \nname : The Golden Palace | Type : restaurant | price : moderate||A restaurant with a moderate price range is The Golden Palace \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is located in the Northern area of Cambridge . It has fair prices of food and drink . They serve wine , as well . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is an average priced , Italian pub , that is not family - friendly near Café Rouge . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : no | near : Café Rouge||The Plough is an Indian pub in a moderate price range near Café Rouge . It is not kids friendly . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||There is a medium price pub Wildwood located in the center of the city that has a really good reviews . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry provides fast food with low customer ratings . It is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||The Cambridge Blue Italian restaurant has a customer rating of 5 out of 5 \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge has a customer rating of 1 out of 5 but has a moderate price rating . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : yes||The Alimentum , a family - friendly , French restaurant is both cheap and located near the city center . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||The Midsummer House has a low rating and is an eat - in sushi restaurant located northwest of Café Rouge . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||There is an expensive restaurant called Midsummer House near All Bar One . It provides cheese and wine and is rated five stars . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||The Wildwood is a mid ranged coffee shop with low customer ratings and is located near the Ranch . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a restaurant that specializes in Indian food Their customer ratings are low . They are located in city centre and are family friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , located near Café Sicilia , serves cheap Indian food in a coffee shop setting . Customers have rated The Punter as average . It is a family friendly place . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : average||Wildwood is a pub serving Indian food with an average customer rating and a high price range . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater down the riverside near Café Adriatic has a high customer rating and average price range . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||A restaurant named Loch Fyne serves French food and is child friendly . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a low price coffee shop near The Bakers that you can take the whole family to . It has a low customer rating . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Highly rated Cocum is a child - friendly restaurant . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a low priced , three star restaurant located on the river near the Yippee Noodle Bar . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue is a restaurant with a low customer rating that serves Fast food . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : no||Loch Fyne is an upscale Chinese restaurant . Please do not bring children . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop , family friendly Japanese food . 3 stars and affordable , right by the river . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : city centre||The Waterman is a Japanese pub in the city centre with average customer rating . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is near the Rainbow Vegetarian Café with a high price range \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||There is a high cost coffee shop called Giraffe next to The Bakers . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is average . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||In the riverside area is a Japanese place called The Waterman . It is not family - friendly , but is given an average rating by customers and its menu is less than £ 20 . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a pub just north of the City Centre that serves fine wines and cheeses . It 's rated three stars . \nname : Strada | Type : pub | food : Chinese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a Chinese pub that has a average customer rating : 3 out of 5 , located near Yippee Noodle Bar . \nname : Clowns | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall at the riverside , serving French food with a customer rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||An average , Italian styled coffee shop is in the riverside , near Clare Hall . It 's called Clowns . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a riverside non family - friendly pub serving Italian food for less than £ 20 . \nname : Wildwood | Type : restaurant | family friendly : no||Wildwood restaurant is not family friendly . \nname : The Eagle | food : Chinese | customer rating : 1 out of 5||The Eagle is a lowly rated Chinese restaurant . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : yes | near : All Bar One||There is a Fast - food restaurant in the center of the city near All Bar One named Green Man that is family - friendly . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Aromi is a children friendly pub located on the riverside . It gets a 5 out of 5 customer rating . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||A moderately priced coffee Shop ' The Vaults ' found in the Riverside area , close to Café Brazil , with a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Yes , The Wrestlers is a cheap , family friendly restaurant , it has a 5 out of 5 customer rating and serves Japanese food . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix , located in Riverside , provides expensive , but high quality , Indian food . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is in riverside area near The Rice Boat . Customers rating Loch Fyne as low . It serves Japanese food just near riverside area . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The restaurant , Strada offers affordable and delightful pasta and is located near the Rainbow Vegetarian Café . \nname : Zizzi | Type : restaurant | price : moderate | area : city centre||Zizzi restaurant is centrally located offering moderately priced food . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||There is an expensive , Fast food place called The Wrestlers that has a one star rating and isn 't family - friendly . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||Riverside has a fast food restaurant named The Waterman . They offer children friendly dining with an average customer rating in the high price range . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a family friendly Indian coffee shop located near the Crowne Plaza Hotel and city centre . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a kid friendly Chinese restaurant with an average price point . Customers love it and it is located by the river . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : more than £ 30||The Dumpling Tree is a high priced Indian restaurant . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||In Riverside , near Yippee Noodle Bar Alimentum serves cheap Chinese food , rated 5 out of 5 \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : no||The Olive Grove is a riverside pub that serves English food for high prices . Don 't take your children there though as it is not children - friendly \nname : The Wrestlers | Type : coffee shop | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is now serving French food at low prices in a family friendly atmosphere , located in the riverside area by Raja Indian Cuisine \nname : Loch Fyne | Type : restaurant | food : Indian | price : more than £ 30 | family friendly : yes||Loch Fyne is an Indian restaurant . It is family friendly but costs more than £ 30 . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The kids friendly The Twenty Two is moderately priced and received a customer rating of 1 out of 5 . It is located in the riverside area near The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies coffee shop on the outskirts of the town is low cost and family friendly . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a moderate priced coffee shop that serves Indian food , has a 3 out of 5 customer rating and is located in the city centre . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||An adult - only sushi restaurant that is cheap and in the City Centre is called The Rice Boat . It is by Express by Holiday Inn , and customers rate it one star . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is an adult coffee shop serving fast food in the city centre . Prices are under £ 20 , and customer ratings are low . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is located near Burger King in the riverside area . The Eagle is a very delegate coffee shop that is family friendly and offers Fast food , the customer rating is average and the prices are cheap . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||When looking for an affordable , child friendly Japanese food restaurant , Strada is the place to be . Conveniently located near Rainbow Vegetarian Café , and customer rated 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a high price range high customer rating coffee shop in the city centre near Burger King . It is kids friendly ad they serve Japanese food . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a family - friendly restaurant with average customer ratings . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||Visit the riverside area . The Mill is a pub that serves Japanese food for less than £ 20 . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is kids friendly and serves French food , price range is moderate and the customer rating is a 1 out of 5 located near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat located near Express by Holiday Inn has a bad rating it is not kid friendly but serves Indian food and has a moderate price range \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The French coffee shop , Browns Cambridge , is child - friendly with a low customer rating , located near Crown Plaza Hotel in the riverside area . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is a restaurant for the kids near Café Sicilia with the price range of £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a family - friendly coffee shop , is situated in the riverside area near to the Crowne Plaza Hotel . It serves French food and has an average rating . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a highly recommended fast food venue in the mid - range , located in Luton . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||Families near Café Rouge looking for British cuisine can find The Plough , a pub in the mid - price range , directly in the area . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum serves French food at a price range less than £ 20 , but with a low customer rating . Alimentum is located at the city centre near the Yippee Noodle Bar . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly , high customer rating Fast food coffee shop , located in riverside near Crowne Plaza Hotel . \nname : Fitzbillies | food : Indian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies , located near The Six Bells , serves Indian food for £ 20 - 25 per person . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a Chinese pub with a moderate price range . It is not kid - friendly and it is located near Café Rouge . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter restaurant serves French food . It is located near Café Sicilia . It 's also a coffee shoo . Family friendly . Cheap price range . 5 out of 5 rating . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Browns Cambridge is a Sushi Bar located in the area that is low priced and has an overall high customer rating . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue is a pub in the mid price range . This pub is close to Café Brazil . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly Fast food place called The Waterman near the Crowne Plaza Hotel . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly restaurant in the riverside area near The Rice Boat . The price range is less than 20 pounds , but has a low customer rating . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a pleasant place of English food in the Riverside area located near All Bar One and moderate price \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop with a moderate price , is kid friendly , and has rating of 1 out of 5 - it 's by the riverside near Avalon . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto , located near The Portland Arms , offers upscale selections of coffee , wines , cheeses , and other menu items sure to delight your taste buds . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||A five star coffee shop called The Eagle is situated next to Burger King . It is great for families and offers medium prices . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a highly rated , French style coffee shop aimed at adults at a medium price range . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a restaurant that offers food such as pasta . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Kids are welcome at Loch Fyne , an English restaurant . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix serves Indian food in the riverside area . They are high priced but they are rated 1 out of 5 by customers . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||A moderately priced Chinese restaurant called Alimentum is in the riverside area near the Yippee Noodle Bar . Customer rating is 1 out of 5 . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant , providing affordable and cheap food . It is located in Riverside , nearby Clare Hall . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : 1 out of 5||Wildwood is an Indian pub with a high price range with a customer rating of 1 out of 5 . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap family - friendly fast food restaurant Strada located near Rainbow Vegetarian Café . It is an average restaurant . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a non - child friendly , high priced fast food coffee shop that is located near Café Sicilia . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub restaurant in Riverside . It serves Italian food and has a customer rating of 1 out of 5 . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant that serves Chinese food for a moderate price . It is located near the Rainbow Vegetarian Café , rated one out of five stars , and is not children friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : no||Loch Fyne is a child free restaurant with moderately priced English food . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : cheap||The Japanese restaurant called The Dumpling Tree has good prices . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : no||In the city centre serving English food in a high price range is Alimentum . They are not child friendly . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : no||Located in the area of City Centre , The Rice Boat offers fast food and is low rated and not family - friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is a family Café . Mid - range price and very close to Burger King restaurant . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a moderately priced Japanese coffee shop near Ranch . It has a low rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub . It is not a kid friendly establishment . It is located in the riverside area . It is moderately priced . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Family friendly Strada rated 5 out of 5 serves cheap . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a family friendly coffee shop The Cricketers located near The Portland Arms . It provides Italian food and customers have rated it 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crown Plaza Hotel , in the riverside area is Taste of Cambridge . This is a family friendly coffee shop that offers French food . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||A non family - friendly coffee shop located in riverside near the Crowne Plaza Hotel is Browns Cambridge . Most of the customers rate it as average . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a family friendly restaurant serving English food . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi offers a family friendly pub setting , serving French food with a customer rating of low . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||A French serving coffee shop near Clare Hall in the city centre is Clowns . They have a customer rating of 5 out of 5 . \nname : Green Man | food : Indian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man in the riverside area is a family friendly establishment in the lower price range . It offers Indian food and can be fond near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a five star family friendly coffee shop in the medium price range located in the city centre . \nname : Blue Spice | food : Chinese | price : more than £ 30 | area : riverside||Price range for Chinese food in Blue Spice that is located in riverside is more than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the riverside area is a place that serves Italian food . It is by the Crowne Plaza Hotel . It has a high rating and there is a coffee shop . It is called the Browns Cambridge and yes , it is kid friendly . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : no||There is a restaurant named The Twenty Two Located in city center serving Japanese Food but not family - friendly \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high priced fast food restaurant located in the city centre near Express by Holiday Inn . It has a one of five customer rating and is not children friendly . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly cheap fast food restaurant . It is located near the Express by Holiday Inn at city center with an average rating . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum restaurant is family - Friendly . customer rating is low . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is located in the Riverside area near Café Adriatic . It has shown to be satisfactory with its customers and continues to offer moderately priced foods . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||The Wildwood is a coffee shop near Ranch , serving English food , with a high customer rating and a price range more than £ 30 . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : yes||Alimentum provides Chinese food in the moderate price range . It is located in the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A coffee shop named The Eagle with moderate prices selling Italian food , not for kids , with a rating of 1 out of 5 . It is near Burger King in the center of the city . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a high priced pub located near the river . It received one star . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : no||Aromi is a pub located near the riverside . However , it is not family - friendly and has an average customer rating . \nname : The Rice Boat | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Chinese cuisine and has a 3 out of 5 customer rating , located in the Riverside area and it 's kid friendly . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is an average Italian restaurant with cheap prices that 's located near Rainbow Vegetarian Café . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Chinese restaurant in the riverside area located near The Sorrento . \nname : Fitzbillies | food : Italian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a Italian restaurant with low prices located near The Six Bells . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||This restaurant Aromi is in the riverside area and has Japanese food . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a place near Yippee Noodle Bar in Riverside . It is low priced , has a high customer rating , and sells Italian food . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||The Phoenix in riverside has French food with a customer rating of 3 out of 5 . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The name of the dining place is Strada . Yes , it is family friendly and the price range is less than £ 20 . It is near the Rainbow Vegetarian Café and serves French food . The average customer rating is low . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a restaurant The Waterman located in the riverside that serves Indian food . \nname : The Waterman | price : more than £ 30 | family friendly : yes||A child - friendly restaurant , called The Waterman , offers means starting around £ 30 . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : yes||The Wrestlers , a children friendly restaurant , offers a high - priced Chinese food menu . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||Wildwood is a pub serving Italian food . It has a high price range and a customer rating of 1 out of 5 . \nname : The Punter | food : Italian | price : more than £ 30||The Punter serves Italian food and prices are more than £ 30 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop with burgers , French fries and soda and is not family friendly . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum coffee shop serve French food , have a 3 out of 5 customer rating , a price range of £ 20 - 25 and are not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop rated 5 out of 5 by customers located in the city centre . It provides Italian cuisine for a low price range . \nname : The Mill | Type : coffee shop | food : Japanese | price : cheap | area : riverside | near : The Sorrento||The Mill , is a low - priced coffee shop serving Japanese cuisine located in Riverside near The Sorrento . \nname : The Rice Boat | food : Italian | area : city centre||Welcome to The Rice Boat . Our food is Italian and we are located in the city centre . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is a family friendly restaurant offering delicious western style food \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not a family - friendly Fast food eatery , but has a customer rating of 5 out of 5 , is cheap , and is located near Express by Holiday Inn in the city centre . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice is a moderately priced place in the riverside area . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a Chinese food restaurant with high customer ratings with the price range of £ 20 - 25 and is not kid friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum for coffee shop offers Fast food for cheap price for kids Friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a fast food coffee shop in the city centre , is has a high customer rating and has a price range of more than £ 30 . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||A fairly priced Italian restaurant would be The Dumpling Tree . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||With a high customer rating the Italian food restaurant , The Golden Curry near Café Rouge in Riverside is children friendly \nname : The Punter | food : Italian | price : moderate||The Punter , a medium priced venue that really does deliver good food . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a fast food , kid friendly coffee shop by the riverside area , near Crown Plaza Hotel . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge has a customer rating of 5 out of 5 with a price range of more than £ 30 \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||Poorly rated The Wrestlers is not child friendly and its Japanese food is expensive . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop located at the city centre with a customer rating 5 out of 5 . They have Japanese food . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly fast food restaurant located in the city centre . It is located near Express by Holiday Inn and has a high customer rating . The price range is £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||The coffee shop Cotto in the city centre , near The Portland Arms is in the expensive price range , but has good customer ratings . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||A cheap family friendly coffee shop near Burger King serving fast food in riverside would be The Eagle with cheap prices and a perfect rating of 5 out of 5 . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||Alimentum is family friendly , serves English food , has low prices and is located on a riverside . \nname : Bibimbap House | food : French | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is near Clare Hall in city centre with French food and average price . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a Chinese restaurant with a price range of 20 - 25 pounds . The customer rating is high and it can be located near the riverside . \nname : Green Man | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man serves Japanese food in a family friendly environment that 's cheap . It is located on the Riverside near All Bar One . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Zizzi , average in both ratings and cost , is a family - friendly coffee shop near the city centre . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||Clowns is a pub in Riverside rated 3 out of 5 but has a high price range . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||Italian cuisine and Spirits at an affordable 5 Star restaurant near the river , The Phoenix . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a Japanese restaurant near Ranch with a low customer rating but a children friendly environment . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||restaurant The Plough is cheap . It is located near The Bakers . It is family friendly . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The Japanese restaurant The Wrestlers is child friendly . The price range is £ 30 and above . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves kid friendly moderately priced Japanese food and is located near Raja Indian Cuisine near the city centre . \nname : The Golden Curry | food : French | price : cheap | family friendly : yes | near : The Bakers||Close to The Bakers , The Golden Curry is serving delicious French cuisine . Cheap family friendly environment . \nname : Cotto | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto , near Ranch , serves Indian food . It is kid - friendly and has a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||There is a moderately priced kids friendly restaurant Loch Fyne serving English Food . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is a pub with prices between 20 - 25 £ near the riverside , named Clowns and the customers rated this place 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a five star rated coffee shop offering Japanese cuisine . It is family friendly and in the high price range . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry is located in Cambridge . The Golden Curry is not for families . The Golden Curry has a one star rating . \nname : Bibimbap House | food : French | price : high | area : riverside | near : Clare Hall||By the riverside near Clare Hall , you will find Bibimbap House , which serves high priced French food . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle provides an Indian coffee shop experience at a reasonable price . Rated highly it can be found near Burger King on the riverside , but children are not welcome . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a three star French restaurant with high prices . It is located outside of the City Centre , near to Yippee Noodle Bar . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a low rated coffee shop in the area of riverside with a moderate price range . It is kids friendly and is located near Avalon . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop with a less than £ 20 price range . It is located near Café Brazil in the area of riverside but has a low customer rating . \nname : Aromi | Type : restaurant | food : Chinese | area : riverside||Aromi is a riverside Chinese restaurant . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||Aromi is a 1 - star coffee shop and not family friendly . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue is a restaurant with a customer rating of one out of five \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a high - priced family friendly restaurant located in City Centre . 5 out of 5 customer rating . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||The Bibimbap House is a cheap fast food place located near Clare Hall by the riverside . \nname : The Phoenix | food : Indian | customer rating : high | area : riverside||The Phoenix has received high customer ratings for its Indian food . It is located in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Indian coffee shop near the Crowne Plaza Hotel is called Browns Cambridge . It has an average rating but its family friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a five - star rated coffee shop located near Ranch , offering moderately priced food and drink with an excellent standard of service . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||A child - friendly pub near The Sorrento , the Taste of Cambridge is in the riverside area . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||The Cambridge Blue restaurant is an Italian restaurant . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is kids friendly and serves French food , price range is moderate and the customer rating is a 1 out of 5 located near Rainbow Vegetarian Café . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly Italian restaurant located near Café Rouge at city centre . It is rated 5 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop in the city centre . It has an average customer rating and serves French food . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat sell Indian food , 1 out of 5 customer rating , located in Riverside , kid friendly \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||A cheap Indian coffee shop , The Punter , is not family friendly and only has average ratings . This restaurant is located near Café Sicilia \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant with a rating of 3 out of 5 . Prices range from £ 20 - 25 . They are located in the city center near Yippee Noodle Bar . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace coffee shop is an average priced coffee shop located in the city centre . They serve high rated Indian food . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum provide Indian food . The prices are in the high range , although the customer ratings are average . They are located in the city centre near Yippee Noodle Bar . \nname : The Mill | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop located on the riverside near The Sorrento . It serves Indian food , with prices ranging from more than £ 30 . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : no||For Indian food try The Golden Curry , a not family friendly restaurant with a low satisfaction rating . \nname : Browns Cambridge | food : English | price : high | customer rating : average||In the middle of the city is a high priced restaurant called Browns Cambridge . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat , located in the riverside area , is a child - friendly English restaurant with high customer satisfaction . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies serves Italian food and they have a moderate price range . They are located near The Six Bells . \nname : The Rice Boat | food : French | area : city centre||The Rice Boat serves French food in the city centre . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive restaurant near Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop located just outside the city center for families that serves food . Located next to the Burger King . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : yes||A family friendly Indian food place is The Vaults . It has a price of less than 20.00 . \nname : Midsummer House | food : Chinese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has a customer rating of 5 out of 5 and serves Chinese food . It is near Café Rouge . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle is a French food venue with a 3 out of 5 customer rating . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Indian restaurant serving expensive food and is not child friendly . It has an average rating and is near Rainbow Vegetarian Café . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : city centre||The city centre restaurant Zizzi is suitable for those on a budget . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : yes||Moderately priced Italian food is served at Alimentum which is kid friendly and conveniently located in the city centre . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||There is a cheap Italian restaurant called The Phoenix in the riverside area . It has a customer rating of 5 out of 5 . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly pub , serving meals above £ 30 with a Customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a more than £ 30 - priced coffee shop in near The Portland Arms that delivers take - away . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||Offering a moderate price range , The Vaults is a pub located near Café Adriatic . Their rating from customers is 1 out of 5 . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a Chinese restaurant that is child friendly , has a high price range and has a 1 out of 5 customer rating named The Wrestlers . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is located near the Rainbow Vegetarian Café . The Strada is a moderately priced fast food restaurant with 3 out of 5 stars and is not child friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : no | near : Ranch||The Cricketers , a pub near Ranch , is highly rated but not family - friendly . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||There is Italian food near All Bar One by the riverside with a moderate price range called Green Man . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||Near Clare Hall , there is a well - rated coffee shop called Clowns . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||The pub Taste of Cambridge is family friendly and is located near The Sorrento in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||The coffee shop Cocum provides fast food in the cheap price range . Its customer rating is 5 out of 5 and it is not family - friendly . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Ranch Japanese restaurant Cotto gets an impressive 5 out of 5 customer rating . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada is in the moderate price range , is kid friendly , and is rated 1 out of 5 by customers . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Clowns pub in City centre has a 3 out of 5 rating and moderate pricing . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Mid - range priced sushi , 5 star food and family friendly into the bargain , try The Wrestlers . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is an high priced fast food restaurant located at the end of the city . \nname : The Eagle | food : French | customer rating : 1 out of 5||The Eagle provides French cuisine , and has a customer rating of 1 out of 5 . \nname : The Phoenix | food : Indian | customer rating : high | area : riverside||The Phoenix is an Indian restaurant located near riverside . Customers give it a high rating . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||Located near the river The Olive Grove is a value for money family friendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap , family friendly Indian coffee shop in Riverside . It is called The Fitzbillies and has 5 out of 5 customer rating . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults offers British food at a cheap price point , and it is family friendly . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||Midsummer House is a highly rated Italian restaurant near Café Rouge . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Moderately priced Taste of Cambridge is a restaurant rated 1 out of 5 by customers . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 5 out of 5 rated , cheap , family - friendly , fast - food restaurant in riverside , near Express by Holiday Inn . \nname : Fitzbillies | food : Indian | price : more than £ 30 | near : The Six Bells||For Indian food try The Fitzbillies . It is near The Six Bells and has a price range of more than 30 . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry serves French food . It is family friendly and has an average rating . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||French food with a 5 out of 5 rating can be found at The Punter coffee shop near Café Sicilia . It is not child friendly and has a more than £ 30 price range . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||At the riverside , Bibimbap House serves French food . It can be found near The Rice Boat . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers family friendly coffee shop serves French food . It is located near The Portland Arms and has a low customer rating . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||Near Café Rouge you can try French cuisine , with a rating of 3 out of 5 , at the Midsummer House . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop by the river . It is family friendly but has received poor reviews . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||If want to eat pasta there is a restaurant in the south of the city . Its name is Green Man near of the All Bar One . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||There is a fast food restaurant located North of the City Centre by The Rice Boat called Loch Fyne . It has been rated 5 out of 5 stars . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : average||Wildwood pub has Indian food in the high price range with an average customer rating . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||A pub with a customer rating of 5 out of 5 located near the Café Adriatic , The Vaults is a cheap option . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall there is a coffee shop named Clowns that serves French food by the riverside and it has received a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||This children friendly restaurant serving excellent Japanese food . Loch Fyne serves excellent food at a slightly above average price , but it is worth it . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice is a restaurant . it is located in the riverside . His Price range is more than £ 30 \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man has Italian food with high prices located near All Bar One in city centre . They are not kid friendly . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : no | near : Ranch||family - friendly Pub The Cricketers is near Ranch and has a customer rating of 5 out of 5 . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||There is a high - priced Japanese restaurant Midsummer House located in City Centre near All Bar One . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no||In the city centre , there is a kid - friendly pub that serves Indian food at a moderate price , The Olive Grove . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a low rated coffee shop that serves Indian food in the riverside area near Burger King . The Eagle has a price range of less than £ 20 , and is not family friendly . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Looking for French food in the city centre , The Waterman is a highly praised eatery offering 5 star adult dining starting from £ 30 . \nname : The Golden Curry | food : French | price : high | family friendly : yes | near : The Bakers||The Golden Curry is child friendly and serves French Food at high prices , it is situated near The Bakers . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Located near the Ranch is the Cotto Chinese restaurant . This is a child friendly establishment with high customer ratings . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is an affordable Indian food establishment with an average customer rating located in the City Centre , near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||A reasonably priced French coffee shop , Fitzbillies is located in the riverside area and received an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies family friendly coffee shop features cheap Japanese food in the riverside area . Our customers have given us a 5 out of 5 rating . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||On the riverside near Express by Holiday Inn is The Rice Boat which serves Indian food . The price range is moderate with a customer rating of 3 out of 5 . They are kid friendly . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a pub that does not allow families and is middle priced . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Wakey wakey it 's Browns Cambridge low priced eggs and bakey \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a pricey , family friendly , one star restaurant known as The Wrestlers . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in riverside near Express by Holiday Inn , The Rice Boat provides Japanese food with a customer rating 1 out of 5 . It is not kids friendly . \nname : Midsummer House | food : Chinese | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House earned a customer rating of 1 our of 5 . This establishment features Chinese cuisine and is located near Café Rouge . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : no||Rated 5 out of 5 The Golden Curry is not family friendly , serving Chinese foods . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a family friendly establishment offering English cuisine . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a reasonably priced , family friendly Indian restaurant in Riverside . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : yes||Located in the city centre , the Green Man is family - friendly and cheap . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||There is a French , moderately priced French restaurant called Fitzbillies , near The Six Bells . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||There is a cheap restaurant Fitzbillies located near Express by Holiday Inn . Not family - friendly with a customer rating of 5 out of 5 . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The family - friendly establishment , The Wrestlers , serves Japanese food at a higher than average price . Customers give this location 1 out of 5 stars . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Beside the Crown Plaza Hotel and the river , there is an Italian food serving coffee shop called Taste of Cambridge . It is family friendly . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the centre of the city is Alimentum . Fast food with a price range of £ 20 - 25 , it has high customer ratings . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults is a low priced Italian restaurant that is not family - friendly . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||adult only moderate priced Japanese food in the riverside area is The Waterman with 1 out of 5 for customer rating \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat provides Chinese food that is affordable , family friendly and centrally located . It has received low ratings . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||Near The Bakers there is a kid friendly place called The Golden Curry which serves French food in a moderate price range . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The riverside is one of the many popular places to eat in Cambridge , in particular there is a coffee shop named Taste of Cambridge not far from the Crowne Plaza Hotel . This coffee shop specialises in Italian food and is also a family friendly environment . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||The Cambridge Blue is a pub serving excellent French food , located near Café Brazil , offers great service and great food at a good price . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a family - friendly Japanese coffee shop located in city centre . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly coffee shop , offering French food , located in the riverside area near Crown Plaza Hotel . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub that serves Italian food and is rated 1 out of 5 by customers . It is also children Friendly . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults is a pub located near Café Adriatic and provides good food and drink at a cheap price . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a child friendly pub in the riverside area that serves French food . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry restaurant is located near Café Rouge in the riverside area . The Golden Curry is a family friendly restaurant serving Japanese food . Currently , the customer rating for The Golden Curry restaurant is low . \nname : The Punter | food : Japanese | price : high||The Punter offers Japanese cuisine at an upper - end price range . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||There 's this new fast food restaurant named The Phoenix that has an amazing view of the riverside . The food was good , as well as the customer service . It was a average little restaurant . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Next to Clare Hall is a low price point , fast food restaurant called Bibimbap House . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a restaurant providing food in the high - end price range . It is located near All Bar One in the riverside area . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada does Chinese food , but I wouldn 't recommend it , its only rated 1 out of 5 , and they don 't allow children . , but the prices are ok about £ 20 for a meal . If you decide to go there , you can find it near the Rainbow Vegetarian Café . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The French restaurant The Golden Curry is a great place with low customer ratings . \nname : Aromi | Type : restaurant | food : Indian | area : city centre||Aromi is a restaurant near the city center that serves Indian dishes . \nname : Green Man | food : French | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man provides French cuisine with a high price range near All Bar One . It is child friendly and located in riverside . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Avalon||While not a family - friendly coffee shop , Blue Spice has an average price is less than £ 20 that matches it 's average customer rating and is located near Avalon in the riverside area . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a coffee shop style restaurant , which is kid friendly , and has a customer rating of 3 out of 5 . The price range is on the high side and located near city centre . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : city centre||The Mill is a pub near the city centre that offers Italian food in the moderate price range . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid friendly Japanese restaurant . they are located in the city center , costs 20 - 25 euros , customers rate it 3 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar is in the city centre area . It has fast food and a moderate price range . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Although child friendly with an excellent customer rating The Rice Boat Japanese restaurant near Express by Holiday Inn in riverside does not come cheap with a price range of more than £ 30 . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum restaurant ratings is 3 out of 5 and they are for family . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||On the riverside there is family - friendly The Rice Boat , they offer a French food . Customer rating is 5 . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced and family friendly restaurant close to the Express by Holiday Inn \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||If you are looking for a good place to have Chinese food , then try The Wrestlers . It is children - friendly , with hight customer ratings and its prance range around £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 1 out of 5||There is a French food restaurant called The Cambridge Blue but it has a low customer rating . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||at a moderate price range , Fitzbillies is kids Friendly with a customer Rating of 3 out of 5 . Can be found near the Express by Holiday Inn \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a restaurant providing take - away deliveries in the low price range and is children friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||The Loch Fyne is a moderate priced family restaurant . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||With a price range of more than 30 and a customer rating of 5 out of 5 , The Twenty Two is located near The Rice Boat in the riverside area .. \nname : Alimentum | food : English | price : more than £ 30 | area : riverside | family friendly : yes||more than £ 30 , Alimentum , is child friendly and has English food on the riverside \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an Indian restaurant in the riverside area in the £ 20 - 25 price range , that is kid friendly and has high customer ratings . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One , Midsummer House fast food restaurant low - cost \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub in riverside serving great Japanese food . With a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||There is a high - price ranged coffee shop The Punter located near Café Sicilia . 1 - star rating . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high rated Indian venue located in riverside . It is not kid friendly , has a price range of £ 20 - 25 , and is near the Express by Holiday Inn . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is an Italian coffee shop located in the city centre . It is not family - friendly , but has a customer rating of 5 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||Taste of Cambridge is a restaurant price range more than £ 30 high customer rating \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an Indian coffee shop in the high price range near The Portland Arms at the riverside . It has an average customer rating . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge has a moderate price range with a 1 out of 5 customer rating restaurant \nname : The Eagle | price : more than £ 30 | customer rating : low | area : city centre||In the city center , ' The Eagle ' is a cheap restaurant with poor customer reviews . \nname : The Vaults | food : Chinese | price : moderate | family friendly : yes||The Vaults is a family friendly moderately priced Chinese food restaurant . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||With an average customer rating , The Golden Curry is a family friendly Chinese food joint . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : no||High priced and low rated , the Cocum pub restaurant offers a non - child friendly atmosphere . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : £ 20 - 25||The Dumpling Tree restaurant serves Italian food with a price range of £ 20 - 25 . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Come check out Strada family friendly restaurant at an affordable price conveniently located next to the Rainbow Vegetarian Café . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat can be found in the city centre , near the Express by Holiday Inn . Family friendly , moderately priced and rated 5 out of 5 . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||Wildwood is an inexpensive pub that serves sushi dishes . Reviewers have decent things to say about this restaurant . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||Serving French food , The Cambridge Blue restaurant has a customer rating of 3 out of 5 . \nname : The Waterman | price : moderate | family friendly : yes||Check out the kid friendly restaurant The Waterman with moderate pricing . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge is the Wildwood restaurant with a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||In the city centre you will find a low rated Fast food coffee shop named The Eagle . It is located near Burger King with items averaging less than £ 20 , however it is not family - friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Italian and family - Friendly pub near of The Portland Arms . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||Dishes from £ 30 for all in The Wrestlers , a restaurant rating low \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Moderately priced average Indian food is on offer at The Wrestlers but it 's not family friendly . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly Japanese joint near Ranch . It has a low customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge , located on the riverside near the Crowne Plaza Hotel , features a kid - friendly coffee shop atmosphere that serves Japanese cuisine as well . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is based in the city centre near Express by Holiday Inn . It is a family - friendly venue serving low cost Italian food and with a low customer rating . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly Japanese restaurant for a moderate price . It is located at the city centre near the Express by Holiday Inn . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Rated 1 on a scale of 5 , The Waterman is an adult focused restaurant in riverside offering moderately priced Indian dishes . \nname : The Phoenix | food : Chinese | customer rating : high | area : riverside||There is a highly rated restaurant in the riverside area that serves Chinese food called The Phoenix . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Blue Spice in the riverside area , serving average meals less than £ 20 for the whole family . \nname : The Punter | food : Italian | price : more than £ 30||An Italian restaurant is The Punter , charging more than 30 pounds . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is a pub in the riverside area . It 's in the high price range and has an average customer rating . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter , which sells Japanese food , has a price range of 30 plus euros \nname : Loch Fyne | Type : restaurant | food : Japanese | price : cheap | family friendly : yes||For cheap and family friendly Japanese food I suggest you try Loch Fyne . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kid friendly coffee shop that has a moderate price range and Japanese cuisine it has an overall customer rating of 1 out of 5 . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : no||There is a place called The Twenty Two that serves Indian food , is near the city centre , and is not family friendly . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located in the riverside area , The Rice Boat received a 5 out of 5 review . It offers a family - friendly Italian menu . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Japanese food type coffee shop , named The Punter , children friendly near Café Sicilia price range more than £ 30 , customer rating 5 out of 5 \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman has a customer rating of 3 out of 5 . They are kids friendly . They serve English food . The price range is moderate . Located in the city centre . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is kids - friendly Fast food restaurant rated 1 out of 5 named The Rice Boat at the riverside . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||With a 3 out of 5 customer rating , The Cambridge Blue is a French restaurant \nname : Loch Fyne | food : Fast food | customer rating : average | area : city centre | near : The Rice Boat||Located near The Rice Boat in the city centre area , is the fast - food restaurant Loch Fyne . This restaurant is rated by customers are being average . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix has a moderate price range . They serve French food . They have a customer rating 1 out of 5 and there located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||In the town centre there is an Italian coffee shop named The Golden Palace , offering food from £ 30 at a high rating . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Located on the riverside near The Rice Boat , The Twenty Two is kid friendly and moderately price . Three out of 5 customers give it a thumbs up . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 3 out of 5||The Cambridge Blue is a restaurant that provides Chinese food Its customer rating is 3 out of 5 . \nname : The Punter | food : Indian | price : cheap||There is a restaurant called The Punter that provides Indian food . It has a cheap price range . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe , near The Bakers , is a child riddle coffee shop . It is quite expensive though and has a low customer rating . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice served Japanese food the price range is more than £ 30 and its in Riverside . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly restaurant located near the river and Burger King . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop serving Indian food with a high price range . It 's in the riverside area near The Sorrento . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a five star , low priced fast food restaurant . It is located next to Yippee Noodle Bar . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a children friendly , Italian restaurant near riverside . its prices average more than £ 30 and it has high customer ratings . \nname : Green Man | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a cheap and family friendly Chinese restaurant in the riverside area . It is near All Bar One . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man located near the All Bar One on the riverside is not a kids Friendly Fast food which a moderate price range category \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||For a family - friendly and highly rated French restaurant in the city centre , try The Rice Boat . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Child friendly French coffee shop , Browns Cambridge is located in the riverside area near Crowne Plaza Hotel and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||There is a cheap English restaurant located in the city centre , The Phoenix , that has a customer rating of 5 out of 5 . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is an inexpensive , family friendly Fast food restaurant located in riverside . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a French restaurant which cost 30 pounds or more and is located by the riverside with a customer rating of five out of five . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||Looking for a coffee shop serving Indian food in the price range of less than £ 20 , with low customer ratings in the city centre area near Burger King and is family friendly , then visit The Eagle . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop offering French food at a moderate price . It is located in the city centre . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man is an adult establishment near city centre and All Bar One that serves fast food . It prices are on the high side . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : no||Found a medium priced Chinese restaurant named Loch Fyne . Not kid friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||The Waterman is a pub in the riverside area which serves Italian meals with a high customer rating . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Italian family friendly place in riverside near Express by Holiday Inn . It has a low customer rating but a less than £ 20 price range . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two located in the north of the city is a restaurant \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man is in the riverside area , is kids Friendly , and is in the moderate price Range . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly English food place with their prices ranges less than £ 20 . They are located in the city center with a low customer rating . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada , near the Rainbow Vegetarian Café serves Japanese food within a price range of £ 20 - 25 . It 's a no for kids with a customer rating of 3 out of 5 . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is average customer rated restaurant located in The Rice Boat . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a mid - priced coffee shop that is not family friendly \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A coffee shop named The Eagle with Japanese food is located near Burger King and the city centre . It is not kids friendly with a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||The Cambridge Blue is a English restaurant with a high rating . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a high price range Indian coffee shop located near The Portland Arms in city centre , with average ratings . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults is not family - friendly . It offers English food and the price range is less than £ 20 . \nname : Bibimbap House | food : Fast food | price : moderate | area : city centre | near : Clare Hall||A moderate costing fast food restaurant called the Bibimbap House is in the city centre near Clare Hall . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Waterman With a customer rating of 1 out of 5 , is a pub the serves Chinese food at the riverside \nname : Green Man | price : high | area : riverside | family friendly : yes||A high price venue that is children friendly and in the riverside area is Green Man . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove has price range of less than £ 20 . It is a family friendly pub on the riverside . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||In city centre near Clare Hall you can find Japanese food serving coffee shop called Clowns . It is customer rated 5 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a Chinese with a 3 out of 5 rating and is kid friendly . \nname : The Phoenix | food : English | customer rating : average | area : riverside||With an average customer rating , The Phoenix serves English food in the riverside area . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||Not family friendly , Chinese restaurant Alimentum offers prices 20 euro and below . It is located in the city centre . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman restaurant is not a family - friendly restaurant that serves Italian food that is cheap in that Riverside area that has an average Customer rating . \nname : The Vaults | food : Fast food | price : cheap | family friendly : yes||The Vaults is a cheap , family friendly Fast food joint . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto , a coffee shop that offers Japanese cuisine , is located near The Portland Arms in the riverside area . Cotto offers moderately competitive prices and has received a 1 out of 5 customer rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||An option for Indian cuisine is The Wrestlers . This is a coffee shop near Raja Indian Cuisine in the city centre . This establishment costs more than others and does not allow children . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a Japanese coffee shop , whose meals average less than E20 , but recently they received low customer service ratings due to not being family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an Indian coffee shop with a moderate price range , located in riverside . The customer ratings are 1 out of 5 and is kid friendly . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||Customers give a 3 out of 5 rating to The Twenty Two , a pub by the riverside near Café Sicilia . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap Japanese food restaurant . It is not family - friendly and it is located near The Bakers . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located in city centre , The Waterman is an expensive French restaurant that received a 5 out of 5 customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : yes | near : Café Sicilia||The coffee shop , The Dumpling Tree , is family - friendly and has prices less than 20 . It is located near Café Sicilia in the city centre . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a children friendly Fast food establishment . There price range is high and there customer rating is 1 out of 5 . The Waterman is located in the city centre and is child friendly . high End fast good can be priced accordingly . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant in Indian , the price range £ 20 - 25 , with high customer ratings and is kids friendly , located near Rainbow Vegetarian Café . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is a cheap , average English restaurant by the river and is not family - friendly . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||For highly rated , family friendly Indian food , try The Golden Curry in the city centre , near Café Rouge . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant sell five star fast - food for all the family . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||There is an inexpensive restaurants near the Rainbow Vegetarian Café called The Rice Boat \nname : The Eagle | food : French | customer rating : average||The Eagle has a customer rating of average and sells French food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With a cheap price range along the riverside , the coffee shop named The Wrestlers is family friendly and serves Fast food Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||If you are searching for a low price range menu , there is a cheap coffee shop called Fitzbillies . It is not family - friendly , but it is quite good . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeaters is located near Café Adriatic on the riverside . Serving food at higher than average prices and lower ratings . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||There 's a family - friendly fast - food place near Ranch . It 's called Cotto and has average customer reviews . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is located in the riverside area , with an average customer rating , and is a French coffee shop , with a price range of less than £ 20 . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a high end restaurant with a high customer rating . Strada is located near Rainbow Vegetarian Café and is not child friendly . Strada price range is a bit higher than most but for the quality of food it is worth it . Strada would be a great place to take a date or for a special occasion . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly place that is rated three stars . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : no||There is a non family friendly Indian restaurant called Loch Fyne . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The Mill is pub that serves cheap Italian food in riverside area . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre is a family friendly fine dining restaurant named The Rice Boat . It has a 1 of 5 customer rating and low prices . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman loves French food Crown Plaza Hotel \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||There is a cheap coffee shop Wildwood located in City Centre near Ranch . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||For an expensive Italian meal why not try The Punter near Café Sicilia , a child free zone , coffee shop environment with average ratings . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||There is a restaurant called The Plough located near Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Find pub quality Japanese for a high cost at Wildwood . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a highly rated fast food coffee shop near Café Sicilia . It is not children friendly and costs more than 30 pounds . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a 3 star restaurant that serves fast food . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||By All Bar One , there is a cheap five - star English restaurant called Midsummer House . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly Japanese restaurant in the 20 pound price range . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree is a French restaurant with prices less than 20 . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||Being a child friendly , English curry house with a highly rated by customers , regular and the one off , The Golden Curry is the place to be . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is restaurant providing French food in the family friendly environment less than £ 20 . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man , near All Bar One , offers Japanese food in the riverside area . It is a kid friendly location with a price range of between £ 20 - 25 . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman serves French food in a childless atmosphere in the riverside area with cheap prices and high customer ratings . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||Clowns is a low customer rating coffee shop that serves fast food . It is in riverside near Clare Hall . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry near The Six Bells is child friendly \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is near Rainbow Vegetarian Café and costs between £ 20 and 25 . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Welcome to the Green Man . We are not family - friendly . Our food is Japanese , and we are located on the riverside near the All Bar One . Our price range is less than 20 pounds . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults serves Italian tapa , wines , cheeses , etc . Family- friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop of sushi food . We don 't love the family , we have one star . Join Us . \nname : The Golden Curry | food : Chinese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the more than £ 30 price range . It is near The Bakers . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry , near The Bakers , serves Japanese food in the price range of more than £ 30 and is children friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||Near Café Brazil its located a high cost restaurant called The Cambridge Blue \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Yes , the Italian food The Waterman in the city centre rank 1 out of 5 with moderate price \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee shot serves cheap Indian food and has a customer rating of 5 out of 5 . It is located in riverside near The Portland Arms . \nname : The Rice Boat | food : English | area : riverside||English food is now available at The Rice Boat in the Riverside . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a Fast Food pub and yes has a children area . It is located in the riverside . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre||Located in the City Centre is a coffee shop called the Golden Palace . The Golden Palace has an average rating , but serves high priced Indian food . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto is a fast food place near Café Rouge . \nname : The Vaults | food : English | price : moderate | family friendly : yes||There is an establishment named The Vaults that is kid friendly and provides English food at a moderate price . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is an expensive French coffee shop , found in the city centre close to Café Sicilia . It 's family friendly with a low customer rating . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a riverside , family friendly Indian restaurant . \nname : The Twenty Two | food : Italian | family friendly : yes||If you are looking for a great family friendly restaurant , I recommend stopping and getting some Italian food at The Twenty Two . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family coffee shop Browns Cambridge sat next to the river not far from Crown Plaza Hotel , with a 1 star rating . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an inexpensive Italian restaurant by Express by Holiday Inn in the City Centre . It is not family - friendly . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||For a moderately priced , family friendly public house , The Rice Boat is near to Express by Holiday Inn in the city centre . It has been rated as 1 out of 5 starts by its customers . \nname : The Vaults | food : Japanese | price : high | family friendly : yes||The Vaults is an expensive , child friendly Japanese restaurant . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : high | area : riverside | near : Clare Hall||An Indian coffee shop named the Clowns has very high ratings and located on the riverside near Clare Hall \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||With an average customer rating of 3 out of 5 , moderately priced fast food can be enjoyed at the coffee shop Cotto near The Portland Arms in Riverside . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns at Café Sicilia are less than £ 20 and are family friendly . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two serves Japanese style food . It is a family place located near the river \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne is children - friendly Japanese restaurant with prices more than £ 30 . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry located near Café Rouge in the city center serves Japanese food . They are family - friendly and rated average . \nname : The Rice Boat | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a Chinese food restaurant in the Riverside area called The Rice Boat with a customer rating of 3 out of 5 , it is not kid friendly . \nname : Green Man | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a children friendly Italian restaurant in Riverside located near All Bar One . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a Indian coffee shop with a 3 out of 5 customer rating in the riverside area near Clare Hall . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a low priced restaurant near All Bar One . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||The pub Cocum is in the moderate price range . It is not kids friendly and has a customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a kids friendly pub with a moderate price range that serves Italian food near Café Rouge . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves Chinese food located in riverside . It is average and family friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The high - priced Cocum is a child friendly coffee shop . It serves Italian food and has been rated 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Near the Burger King in the riverside area there is a cheap coffee shop called The Eagle that serves French food and welcomes children that customers have rated a 5 out of 5 . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge in Riverside , The Golden Curry is child friendly French restaurant with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge and the river is The Golden Curry . It is not family - friendly and customers poorly rate its Japanese food . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||A fast food restaurant with a moderate price range is called Alimentum . It is near Yippee Noodle Bar in the city centre area . It has a customer rating of 1 out of 5 . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||There is a restaurant called Midsummer House that serves Italian food . The price range is moderate and the customer rating is 1 out of 5 . it is near All Bar One \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an average rated fast food outlet in the riverside area . It is not considered to be family - friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||A good pub is called The Waterman they have sushi and a good review . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||With an average price range and a average customer rating , Travellers Rest Beefeater is by a riverside near Café Adriatic in the City centre . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located near the Express by Holiday Inn , by the riverside . Not recommended for children , The Rice Boat is priced more than £ 30 . Rated 5 out of 5 . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||£ 20 - 25 is what you 'll pay at The Golden Palace restaurant . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a French , kid friendly restaurant , with prices from £ 20 - 25 and a customer rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : Indian | price : more than £ 30 | customer rating : high||Wildwood is a pub providing Indian food in the more than £ 30 price range . Its customer rating is high . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||The Cambridge Blue restaurant has a five star rating . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||The Phoenix is a high rated Italian restaurant situated on the riverside . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family - friendly Italian restaurant in the city centre area . The Rice Boat is highly rated . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House provides Indian food in the less than £ 20 price range . It is located in the riverside . It is near Clare Hall . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a Japanese , family friendly , moderately priced restaurant which has high customer ratings . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||Wildwood is a pub in Cambridge serving Japanese food in the higher price range . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a restaurant that serves Italian food . It also a coffee shop . Moderate price range . Kid friendly . It has a three out of five customer rating . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a moderately priced restaurant located near the river . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the city near The Rice Boat having a customer service rating of 5 out of 5 is children friendly and a price range of more than 30 euros . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Situated close to Rainbow Vegetarian Café , the affordable Strada offers English fare and is family friendly . \nname : The Waterman | price : cheap | family friendly : yes||The Waterman is a cheap priced establishment . Family Friendly \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto coffee shop , located on the riverside near The Portland Arms , serves excellent , but high - priced Italian food . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a five - star restaurant located near the Express by Holiday Inn . It is suitable for families with small children . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop at Ranch is the best place for pasta and other good meals at good bargains . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high - priced and kid - friendly Italian restaurant located near The Bakers . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||There is a riverside restaurant called Blue Spice which serves Japanese food for less than £ 20 . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low - priced restaurant in the city centre near Café Sicilia . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is Strada . This Japanese restaurant is in the high price range but is family friendly and has a good customer rating at 3 out of 5 . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced Italian restaurant located at the city centre . It is not a child friendly establishment . The Rice Boat can be found near the Express by Holiday Inn . It has a 3 out of 5 star customer rating . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi , a family - friendly Riverside pub , has a relatively low customer satisfaction rating . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Strada , a pub offering fast food near Yippee Noodle Bar has an average customer rating . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||Riverside , near The Portland Arms , The Punter is high - priced and child friendly . \nname : The Punter | food : Chinese | price : more than £ 30||The Punter is a restaurant the serves Chinese food , 30 or more price range \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family - Friendly Italian coffee shop in riverside . It has a high customer rating . \nname : Loch Fyne | food : Fast food | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is located near The Rice Boat in the City Centre area serves fast food and has a low customer rating \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is average . \nname : Strada | price : high | customer rating : average | family friendly : yes||The Strada is priced high , child friendly yes , and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||With a moderate price range and a 3 out of 5 customer rating , Fitzbillies is a coffee shop near riverside that serves Indian food . It is not kids friendly though . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is an average rated family friendly pub that sells Indian food \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||An inexpensive , family - friendly restaurant near The Bakers is called The Plough . \nname : The Twenty Two | food : English | area : city centre | family friendly : yes||The Twenty Two is a family - friendly restaurant providing English food in the city centre . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap , family friendly , Chinese food restaurant , rated 5 out of 5 near the Rainbow Vegetarian Café . \nname : The Twenty Two | food : Fast food | family friendly : yes||For kid friendly fast food The Twenty Two is the perfect place \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||Located next to the River , just outside the city centre , The Phoenix is an expensive but poorly - rated location to have English breakfast . \nname : The Rice Boat | food : Italian | area : city centre||Welcome to The Rice Boat . Our Food is Italian and we are located in the city centre \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly , highly priced venue with a 3 out of 5 rating . It can be found in the riverside area , close to The Rice Boat . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||Have a night out at The Golden Curry for reasonable sushi conveniently located near The Bakers . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : average||Browns Cambridge is an average restaurant that sells Chinese food for low prices . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is a pub in the riverside area , serves Japanese food and the price range is more than E30 . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A children friendly French restaurant has a customer rating of 5 out of 5 . It is called The Golden Curry and is near to Café Rouge by the riverside . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Luton based Fitzbillies is an adults only averagely rated coffee shop selling fast food at reasonable prices . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a cheap coffee shop near Café Sicilia . It also offers Italian food . It has an average rating by customers and not suitable for a family . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves French food and is situated near Express by Holiday Inn at Riverside . Average customer ratings with low price range of less than £ 20 . Not suitable for families . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||In riverside , The Golden Palace coffee shop serves Indian food . It is cheap and has great ratings . \nname : Loch Fyne | food : French | customer rating : high | area : riverside | near : The Rice Boat||riverside has high customer ratings and they have French food near Loch Fyne on The Rice Boat . \nname : The Twenty Two | food : French | family friendly : no||The family can have some cool drinks and tasty food at The Twenty Two . \nname : The Phoenix | food : Italian | customer rating : low | area : city centre||The Phoenix is an low key Italian eatery in the city centre \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French food . It has a average customer rating It is located in the city centre near the Express by Holiday Inn . The price range is less than £ 20 and is family - friendly . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers serves English food and is moderately priced with 5 out of 5 stars and is family friendly . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is next to the Express by Holiday Inn , and right next to the river . They sell cheap fast food . They are not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving Indian food in the City center . It is in the medium price range but has a low customer rating . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is less than £ 20 and Italian food . its in the city centre but has a low rating . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : no||Strada is a cheap place that is not family - friendly and has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||For high end Italian food go to The Dumpling Tree \nname : The Waterman | Type : pub | food : English | customer rating : 1 out of 5 | area : riverside||The Waterman pub serves English food , is located by the riverside and has a customer Rating of 1 out of 5 . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||Located near The Portland Arms in the riverside area is an establishment named The Punter . It offers a kid friendly environment at a moderate price . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Close to the Rainbow Vegetarian Café you will find a child friendly Japanese restaurant called Strada . It is a high priced restaurant . It has ratings of 3 out of 5 . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The Alimentum is a higher priced restaurant near the city centre . It 's near the Yippee Noodle Bar . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Near The Bakers . there is a highly rated coffee shop called Giraffe . It is child friendly and has a high rating . The price range is more than £ 30 . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a French restaurant that is located by the riverside . This is not a family - friendly venue but has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn is an English child - friendly restaurant with an average customer rating and high price range . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Bibimbap House is near The Rice Boat at the riverside and it provides Japanese food . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough Pub is a mid range restaurant , is family friendly , with baby facilities . It is in the centre of town , with the Café Rouge nearby \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a low - priced restaurant located by Express by Holiday Inn that offers food . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is an English restaurant with a moderate price range . Customers have given a rating of 3 out of 5. located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies in the riverside area , is a kid Friendly coffee shop , with Indian food , a high customer Rating and in the price range of £ 20 - 25 . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a fast food pub with a 3 out of 5 customer rating . It is located near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop by the river , serving fine foods and wines at reasonable prices in a family friendly atmosphere . \nname : The Rice Boat | food : Italian | area : riverside||The Rice Boat offers an Italian menu in the riverside area . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly pub in the riverside area with a customer rating of 5 out of 5 . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix , located in City centre area near The Portland Arms , serves Japanese food . This high - priced food receives a 3 out of 5 stars from customers . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||If you 're looking for a highly rated , children - free restaurant , check out The Rice Boat . Located at the city centre , near the Express by Holiday Inn , The Rice Boat ranges more than £ 30 . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop has some great Japanese food for under £ 20 , near The Sorrento in Riverside . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is mid price range restaurant . It is not family friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly venue that offers Chinese food . It is located near Café Rouge in riverside and its customer rating is above average . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||a great coffee shop in riverside is Zizzi with higher prices is not a place for family and great rating \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a 5 star rated coffee shop in the center of the city offering Italian food and coffee in an adult only setting . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||There is a coffee shop near Avalon , in the riverside area , called Blue Spice . It has a customer rating of 3 out of 5 and is high priced . It is not a children friendly coffee shop . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Costing less than £ 20 , The Punter , near The Portland Arms , is on the riverside and is family friendly . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is The Rice Boat . It has 5 out 5 customer ratings despite it 's food being higher than 30 euros . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Clowns is a pub with moderate price range and has a customer rating of 3 out of 5 . It is located in the riverside . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes||In the city center there is a family - friendly coffee shop named Aromi , with Japanese food . There customer rating is average . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter is a Japanese food restaurant , serving delicious Japanese delicacies for a price range of less than £ 20.00 . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Midsummer House is near Café Rouge and has a high customer rating for English food . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no||Cocum is a cheap , average Indian coffee shop that is not family friendly . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kids - friendly place located on the riverside . its customer rating is 1 out of 5 . They serve English food . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||In the area of riverside is Aromi . It is a coffee shop with Italian food . It is kid friendly and has a high customer rating . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : city centre||Blue Spice is more than £ 30 in the city centre and is Fast food . \nname : Green Man | food : French | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a child friendly pub near the river and All Bar One serving expensive French food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||The family - friendly Alimentum , located in the city centre , serves cheap Japanese food . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop which serves fast food . It is located in the city centre area near to The Portland Arms . It is cheap and has a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop that sells Indian food is located near Clare Hall in the city centre area that has an average customer rating . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a Indian restaurant with low prices . Kid Friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is on riverside has a moderate price its close to Raja Indian Cuisine \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is along the riverside near Raja Indian Cuisine that offers Italian food on a price range of cheap and is also family friendly . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : no||With a price range under £ 20 , The Olive Grove is a pub that is not family - friendly and is located in the center of the city . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Let 's eat at The Golden Curry , which sells French food , is kid friendly , and the prices are around £ 20 - 25 . The Bakers are near it . \nname : Bibimbap House | food : English | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House serves English food . It is near riverside with a price range of 20 to 25 dollars and is near Clare Hall . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Italian restaurant , The Eagle , rated a 3 out of 5 by customers , is a kid friendly coffee shop located near Burger King in the city center . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Blue Spice is located at the riverside . It is not a child friendly establishment , and has a low rating . The price range is over £ 30 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||The Loch Fyne is a Japanese restaurant . It 's a family friendly location falling in the less than £ 20 price range . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||In Riverside , there is a place named The Eagle that has a high customer rating and is cheap . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a Japanese restaurant . It is in three star rated , in the mid price range and is family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||An adult Indian coffee shop near the Crowne Plaza Hotel and located riverside is Taste of Cambridge . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : no||Loch Fyne is a moderately priced English restaurant with a no children policy \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Rainbow Vegetarian Café that offers high - priced French food . It has a customer rating of 3 out of 5 and is not children friendly . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe is a restaurant with a price range of more than £ 30 and is near The Six Bells . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Cocum coffee shop offers low priced sushi . It is family friendly and has a 5 of 5 rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||Zizzi is a one - star pub that does not provide family services . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop which also offers fast food and is located in the city centre . With a 5 star rating it is especially family - friendly and the prices are quite cheap . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||The Eagle by the riverside in the £ 20 - 25 range has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a Japanese coffee shop near Burger King in the riverside area . It has a price range of less than 20 pounds and a low customer rating , but it is family - friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an up market French cuisine restaurant located in the City Centre near to the Raja Indian Cuisine restaurant \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||Near Ranch , is a family friendly pub , The Cricketers , It has an average customer rating . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum , at less than £ 20 , with English food , located near Yippee Noodle Bar , at City Centre with a low customer rating . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||People love Midsummer House , great English food near Café Rouge \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a pub that sells food for £ 20 - £ 25 . It has a high customer rating and is located along the riverside . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||The restaurant , The Golden Palace , is an Italian delight that is not only affordable , but also incredibly convenient to arrive at , as it is only mere steps away from the city center \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman serves Italian food at a moderate price range . It 's not kids - friendly and has a customer rating of 1 out of 5 . It 's on Riverside . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||French , child friendly riverside Alimentum is cheap at £ 35 \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman , a family - friendly Italian restaurant is a cheap option with a 5 out of 5 rating in the riverside area . \nname : Clowns | Type : restaurant | near : The Portland Arms||For a restaurant near The Portland Arms , try Clowns . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Although Alimentum has high price range , it has a beautiful view of the river , as it is located on the riverside . On average , customers rate this Fast food restaurant with 1 out of 5 stars . A nearby eatery is Yippee Noodle Bar . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a moderately priced coffee shop located north of the city center . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Near the Crown Plaza Hotel The Waterman offers family friendly French style food . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : riverside||The Mill is a pub that provides Indian food in the less than £ 20 price range . It is located in the riverside . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Near the Ranch is the Wildwood coffee shop . It has French food and its prices are between 20 and 25 . Customer ratings are 3 out of 5 . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves English food with prices of more than £ 20 . They are located in the riverside area near the Express by Holiday Inn . They have a high customer rating and they are not children friendly . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults is a pub with a price range of more than £ 30 and high customer ratings . It is located near Café Adriatic . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||For moderate priced Fast food Browns Cambridge has customer ratings of 1 out of 5 \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : yes||Chinese food can ordered at The Vaults . The price range is less than £ 20 and yes , it is family friendly . \nname : Loch Fyne | food : Indian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a high customer rated Indian food restaurant in riverside near The Rice Boat . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat It is a restaurant serving Chinese food does not own customer Rating May 5 , if located in the city center , ideal for family and friends \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a fast food venue receiving a 3 out of 5 rating . It is child friendly and is in the moderate price bracket . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Clowns is a one star coffee shop located near Clare Hall . \nname : Loch Fyne | Type : restaurant | food : French | price : cheap | family friendly : yes||Check out Loch Fyne , a low - cost , family friendly restaurant which provides delicious French cuisine without breaking the bank . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||Offering cheap sushi in a family - friendly environment is a coffee shop called Cocum . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||With average prices and fast food , The Eagle coffee shop can be found in city centre near Burger King . This is not a kid friendly establishment . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located in riverside near Café Rouge , The Golden Curry is an average place where where you anyone can eat Italian . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||On the river and near Café Brazil is a mid - priced coffee shop called The Vaults . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle , a Japanese restaurant , is low . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese , children friendly restaurant , with a price range more than 30 pounds , in the city centre . It has a 5 out of 5 rating , and is located near Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle , and Indian coffee shop , is high priced family friendly restaurant with an average customer rating located near Burger King in City Centre . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||With a 5 out of 5 customer rating , Browns Cambridge serves high priced fast food . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a average rated restaurant that sells French food for less than £ 20 . It is along the riverside near the Yippee Noodle Bar . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||The Japanese restaurant , Loch Fyne , is family friendly . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : yes | near : Café Rouge||A new pub is emerging near the Café Rouge named The Plough . Not only is it a pub , but it is also a Chinese restaurant who welcomes families with a price range less than less than £ 20 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix serves French food in a riverside location and is a mid priced venue with high customer ratings \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||At The Waterman near Crowne Plaza Hotel , take your children to enjoy English food . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman has English food is for the family . The price is high and has a customer rating of 1 out of 5 it is located in city centre . \nname : Strada | Type : pub | food : Chinese | customer rating : average | near : Yippee Noodle Bar||Chinese - serving pub , Strada , has a customer rating of average and is located near yo Yippee Noodle Bar . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||Loch Fyne Japanese restaurant is a kid friendly place with a moderate price range . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||If you are looking for a fun , beautiful area that is children friendly , look no further than The Punter . With its beautiful riverside scenery , and high price range , this is sure to be a family favorite . Located near The Portland Arms . \nname : Green Man | Type : pub | food : English | area : city centre | near : Café Rouge||The Green Man pub , near Café Rouge in the city centre , serves English food . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is an expensive family coffee shop that serves British food . It is located near a Burger King . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a bistro with a 5 out of 5 rating in the high price range near the All Bar One \nname : The Eagle | food : English | customer rating : average||The Eagle is a restaurant providing breakfast with a 3 star rating . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly restaurant offering fast food for under £ 20 . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a high price range , children friendly , average customer rating in the Riverside area . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Plough is a child friendly restaurant near ' The Bakers ' , but has a high price range . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly fast food place with a rating of 3 out of 5 . It is located in the city center near Express by Holiday Inn . It has a moderate price range . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is an average Italian place . Cheap prices for an adult night out on the riverside . \nname : Green Man | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man in in riverside area near All Bar One . It serves Japanese food in cheap price range . You can find Green Man near All Bar One . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||A family friendly restaurant called Browns Cambridge is located near The Sorrento on the riverside . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is a 3 - star restaurant that offers Asian cuisine . It is located near City centre just off the river across from The Rice Boat . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman ordered Indian food at the riverside for £ 8 . He was polite , but he rated 1 . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a family friendly restaurant named The Golden Curry near The Bakers that serves French food for less than £ 20 \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is the Fitzbillies . It is kid Friendly and the price range is between 20 and 25 . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no||The Olive Grove is a Chinese pub serving food within a moderate price range in the riverside area . It is not kid friendly . \nname : The Phoenix | food : Indian | customer rating : average | area : riverside||In riverside , The Phoenix serves Indian food with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is near the Crowne Plaza Hotel . It serves Indian food and coffee and has a high rating . It allows children . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi is a pub that sells Chinese food . Its customer rating is high and it is family friendly \nname : The Golden Curry | food : Japanese | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry , a cheap place serving Japanese food , is near The Bakers and is family friendly . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Cheap Chinese eating is what you will find at Alimentum , and with a 5 out of 5 customer rating , you will want to get to the city centre as quick as you can . They are located near the Yippee Noodle Bar . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada has an average customer rating and is family friendly . The price range is less than £ 20 . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Located near The Six Bells is Fitzbillies , it has high priced Italian food . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||For a coffee shop near The Bakers , try Giraffe , a kid friendly rated 3 out of 5 and costing 20 - 25 . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Situated near The Portland Arms on the riverfront , north of the City centre , the 3 - star ' Cotto ' coffee shop serves a range of moderately - priced fast foods . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Located in the city centre try The Rice Boat for some sushi , all the family welcome . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a child friendly restaurant located near Café Sicilia for approx 30L . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a non - family friendly Chinese restaurant with a low customer rating . It is in the less than £ 20 price range and is near Rainbow Vegetarian Café . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a restaurant Strada located near Rainbow Vegetarian Café that provides French foods in more than £ 30 . I has customer rating of 5 out of 5 but it is not children Friendly . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar in City Centre , is Alimentum , a pricey , one - star restaurant . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood Italian Ranch and coffee shop offers moderate priced food and a customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||A Japanese restaurant called The Waterman is averagely priced . It is in riverside . It has a customer rating of 3 out of 5 . It is not kid friendly . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a restaurant serving sushi in the low price range . It is located just south of center . City and north of All Bar One . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderate priced , child friendly coffee shop that serves Indian food in the city centre near Raja Indian Cuisine . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat in riverside with a high rating is The Twenty Two . It is family - friendly and typically cost more than £ 30 . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||The Bibimbap House has a price range of less than £ 20 that serves French food . It is near Clare Hall in the riverside area . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Italian food for less than 20 pounds can be found at the Cocum is a low rated family friendly coffee shop . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a low - priced restaurant in the city centre that delivers take - away . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Fitzbillies is a low priced fast food venue near The Six Bells . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : no||The Rice Boat serves Chinese food at the river side and has an average customer rating . It is not family friendly . \nname : Alimentum | food : French | price : high | area : riverside | family friendly : yes||On the riverside you can find an expensive French restaurant called Alimentum . However , it is child friendly . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A child friendly restaurant in the riverside area near Café Rouge with a customer rating of 1 out of 5 is The Golden Curry . It serves Indian food . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||There is a kid - friendly French restaurant in Riverside near The Sorrento named Browns Cambridge . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||Just along the river from The Sorrento , you 'll find The Mill coffee shop , offering affordable fast food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located in the city centre , near Raja Indian Cuisine , is a Japanese restaurant and coffee shop . It is children friendly with a price range of more than £ 30 . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||A restaurant , Travellers Rest Beefeater , is a moderate priced kid friendly restaurant . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a kid friendly Fast food pub with a 3 out of 5 rating \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||In the riverside area , there is a cheap and family - Friendly pub called The Olive Grove . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a moderately priced Chinese near All Bar One in the city centre . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle is an average type of Fast food . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant located in the city centre near Express by Holiday Inn . It is not a kids friendly restaurant . It is moderately priced with a customer rating of 3 . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a Italian coffee shop near Burger King . This family - friendly location in the city center area has a average rating with cheap prices . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a kid - friendly coffee shop called Cocum serving Indian food in the moderate price range . It has a low customer rating of 1 out of 5 . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||If you are looking for inexpensive breakfast , go to Midsummer House . It is just up the road from All Bar One . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : no | near : The Bakers||The Golden Curry serves Japanese food and is not child friendly . It is located near The Bakers and has a price range of more than 30 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a riverside coffee shop that is rated three out of five stars . It is moderately expensive and family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an average non family - friendly coffee shop that has Fast food near Burger King in the city centre . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Near to The Portland Arms , which is located in the riverside area , is a coffee shop called Cotto that sells cheap Italian food . It has an average Customer Rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a low priced restaurant located in riverside near Express by Holiday Inn . They serve English food and have an average customer rating , though they aren 't family - friendly . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a three - starred , medium priced pasta restaurant , located very close to All Bar One \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||A kid friendly pub where prices start from £ 20- £ 25 called Cocum . The rating which customers have given this establishment is 3 out of 5 . \nname : Green Man | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||A family friendly Indian restaurant in Riverside near All Bar One that is moderately priced is Green Man . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is a cheap and family - friendly fast food place with an average customer rating in the city centre . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a Chinese food restaurant with low customer ratings and is not family friendly in the Riverside area . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serves Italian food . It is in moderate price range and customer rating is 1 out of 5 . Cotto coffee shop is placed near The Portland Arms . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 1 out of 5 | area : riverside||At the riverside is a pub called The Waterman . It serves Japanese and has a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Kid friendly and filled with decadent Indian cuisine , Aromi is a highly rated , kid friendly coffee shop located riverside . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||If you are looking for a low priced English restaurant you should try Green Man located at the riverside close to All Bar One \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced family friendly restaurant serving freshly bakes bread , wine and local cheeses \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area near the Crowne Plaza Hotel is Browns Cambridge . It is a kids friendly coffee shop with a 3 out 5 customer rating . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat , a family friendly French restaurant near riverside , has a low customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a Japanese child friendly coffee shop with 5 out of 5 ratings along the riverside . \nname : Blue Spice | food : Indian | price : more than £ 30 | area : riverside||Blue Spice is in the riverside area and serves high priced Indian food . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee shop serves cheap Italian food and is located near The Portland Arms in the Riverside area \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle , found in the Riverside area , has achieved a customer rating of 3 out of 5 for its high prices . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant located in the riverside near Express by Holiday Inn . It is an English restaurant that has low priced foods and has an average customer rating . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is located in city centre . It is not kid friendly . it has cheep prices \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Located near Burger King , the kid friendly , highly rated coffee shop , The Eagle is kid friendly restaurant that also serves fast food with a price range £ 20 - 25 . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two sells children pizza \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : high||The Cambridge Blue is an Indian restaurant with high customer ratings . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||Tasty Chinese food existing in The Golden Curry restaurant . high Rating 3 stars Friendly for kids \nname : The Golden Curry | food : Japanese | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry offer cheap Japanese food for the whole family , located near The Bakers . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Phoenix is a highly priced and highly rated French food restaurant , located in the city centre . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||in the city centre near the Yippee Noodle Bar there is a moderately priced place called the Alimentum which serves Japanese food with a low customer rating of 1 out of 5 \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||near The Rice Boat in riverside is The Twenty Two which is a children friendly place with high prices and an average customer rating \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||In Riverside there is a child friendly restaurant called The Olive Grove . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace Italian coffee shop is near the riverside . The Golden Palace has customer ratings of 5 out of 5 and they are cheap . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Close to All Bar One is the Midsummer House a restaurant in the high price range \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The coffee shop near The Portland Arms , The Cricketers , serves Italian cuisine and boasts a 5 out of 5 customer rating . Customers should be aware it is not family - friendly . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||Situated by the riverside , The Eagle has a rating of 3 out of 5 from customers and prices in the high range . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a kid - friendly , Italian restaurant . They provide food at the price range of moderate . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is rated one star for its breakfast . It is located in city centre . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||The Cambridge Blue is a restaurant in the city that serves Italian food and they have high customer ratings . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : no||The Rice Boat is an Italian food place that is not family - friendly and has a low customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is an Italian coffee shop with high customer ratings . The price range is between £ 20 to £ 25 but they are not child friendly . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House near Clare Hall is Indian food moderately priced \nname : The Phoenix | food : French | customer rating : low | area : riverside||The customer rating of The Phoenix is low . They serve French food and are located on a riverside . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : city centre||The Waterman is an average Italian pub in the city centre . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue pub serves British meals and mid - range prices . Find it near to Café Brazil . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||The Wildwood pub is a cheap eatery that offers a quick alternative to other sit - down dining establishments . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn , is in the riverside area . It has Italian food in the high price range with an average customer Rating and is children Friendly . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||A English pub called The Cambridge Blue is near Café Brazil and is cheap . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is an English restaurant in the city centre with a high price range and has a customer rating of 1 out of 5 . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle is a fast food restaurant with high customer ratings . \nname : Cotto | food : English | customer rating : low | family friendly : yes | near : Ranch||Cotto provides English food near Ranch that is family friendly and has a low customer rating \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop that offers wine . It is located near Burger King . \nname : Wildwood | Type : pub | food : Chinese | price : less than £ 20 | customer rating : low||Wildwood Is a pub where they serve Chinese food with the price of range less than 20 euros and they have a low customer rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||The price range is a little high , but Wildwood coffee shop caters for a range of requirements for Italian food . With is location near a Ranch , customers rate it as average . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree restaurant offers fair - priced meals . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : yes||Alimentum is kid friendly . They serve Indian food for a moderate price in the riverside area . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is family - friendly and offers both fast food . and low prices . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||Found in riverside close to The Rice Boat , the English styled Loch Fyne is highly rated . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||Taste of Cambridge is a cheap restaurant . Customer rating is 5 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil that sells Japanese food at a moderate price range . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly , fast - food restaurant in the city centre area by Express by Holiday Inn . It serves an average - priced menu that receives 5 out of 5 stars from customers . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop near Burger King , and beside the river , costing roughly £ 20 , it 's a bit cheaper , however it 's not family - friendly , and its customer rating is average . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||Green Man pub is located near Café Rouge on the riverside . It serves Japanese food . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is a high priced business , near Café Sicilia , that is children friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||Zizzi is a high - rated , kid friendly Italian pub . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||A coffee shop close to Café Sicilia , with a 3 out of 5 rating , is serving Italian food in a kid - friendly environment . It 's called The Punter , and it 's fairly priced . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a low priced fast food restaurant that is known for being family friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a kid friendly coffee shop that serves Indian food in the city centre area near Burger King called The Eagle . There price ranges are moderate and they have a customer rating of 3 out of 5 . \nname : The Eagle | food : English | customer rating : 1 out of 5||With a customer rating of 1 out of 5 The Eagle serves English food . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||A casual pub style restaurant , Green Man serves Japanese traditional food . It is located in the riverside area near the Café Rouge . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly fast food place with low customer ratings . It is near Café Rouge in the Riverside area . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||There is a restaurant with a high customer rating , The Rice Boat , located riverside that serves Indian food . It is kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||With a great view of the river , and just down the road from Crowne Plaza Hotel is Browns Cambridge , a family friendly coffee shop \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a middle priced restaurant with 3 stars . It is family friendly . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada that sells Chinese at a fair price would like to welcome you and your family . We are very proud of our 3 out of 5 rating and we are near The Rainbow Vegetarian Café . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves inexpensive but highly rated Indian dishes in a family - friendly environment . It is located near Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||Cheap fast food can be found near Ranch at Wildwood . This coffee shop is rated 5 out of 5 by customers . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum serves English food in moderate price range . Located in Centre City near Yippee Noodle Bar . customer rating 3 out of 5 . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The city centre Blue Spice costs less than £ 20 . It has an average customer rating and is not family - friendly . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults , located at the riverside , which is near Café Brazil , is a highly priced coffee shop with a customer rating of 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is a quiet coffee shop located in The Bakers with one star rating . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Cotto is an Italian place near Ranch . It has average customer rating and is a family friendly place . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Aromi pub on the riverside is child friendly and has a rating of 1 out of 5 \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Italian food with a high price range and yes has family area . It has a customer rating 1 out of 5 . It is located in the city centre , near to Express by Holiday Inn . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix is a high priced one - star Cheese and Winery . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a fast food restaurant and coffee shop that is friendly for the kids . It is near Café Sicilia . Customers rate The Punter highly and the price range falls between £ 20 and £ 25 . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada has a high price and low rating but is a family friendly restaurant . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||Zizzi is Fast food with pub and no low rank \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||An Italian pub called The Mill with a high price range is located in riverside . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||With prices ranging from £ 20 to 25 for English food and a high customer rating , The Phoenix is the place to be . Its located in the city center . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||Alimentum is a Riverside restaurant that serves Italian food . It is cheap and family friendly . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub located in the City center . Near The Cambridge Blue is Café Brazil . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a child friendly pub situated riverside but the customer rating is low \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a sushi restaurant located close to the Yippee Noodle Bar called Alimentum . It is in the mid price range . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is an Italian coffee shop in the near vicinity of Ranch with prices averaging £ 20- £ 25 . Consumers give Wildwood favourable reviews . \nname : The Wrestlers | Type : coffee shop | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located near Raja Indian Cuisine , is a high end French bistro and Café in Riverside and it is kid friendly . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant that is located in the riverside area near Café Rouge . It has a customer rating of 1 out of 5 and is child friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : high||The Dumpling Tree is a restaurant offering high price range French food . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A coffee shop named The Eagle with moderate prices selling Italian food , not for kids , with a rating of 1 out of 5 . It is near Burger King in the center of the city . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Kid friendly pub , Giraffe serves French food in riverside . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is a restaurant located in Riverside serving French food . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Near to The Portland Arms and the riverside area , Cotto is a low customer rated coffee shop serving Fast food at an average price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is high - rated coffee shop that serves Italian food for £ 20 - 25 in Riverside . It is kids friendly . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||Visit Cotto near Ranch . English food and family friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a child friendly coffee shop called The Cricketers in which French food is served , customers have rated it 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||The Giraffe is a coffee shop near The Bakers . It is kids friendly and has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : city centre||The Mill is a pub Indian in the city centre . Price range is less than £ 20 . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes||In city centre , there is an English pub called The Olive Grove \nname : The Golden Curry | family friendly : yes | near : The Six Bells||For family friendly dining , visit The Golden Curry located near The Six Bells . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults is a restaurant that offers Fast food . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn you 'll find The Rice Boat offering Indian food for a price range of more than £ 30 . It has a high customer rating but is not children friendly . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||With it 's kid friendly environment , The Twenty Two is a riverside restaurant located near The Rice Boat with a moderate price range and a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a Japanese coffee shop located in city centre . It is expensive . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two sells Japanese food and yes has a children area . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced French restaurant near the Express by Holiday Inn in the centre of the city . It has a low customer rating of 1 out of 5 and is not recommended for kids . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a nice kid friendly pub , that my kids and I love . While the customer rating is low , due to Cocum 's high prices , the food is worth every penny . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The child friendly coffee shop Zizzi has a high customer rating . Located in the riverside area , it has price range of £ 20 - 25 . \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||Situated on the Riverside and with a customer rating of 1 out of 5 , The Phoenix serves English food . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub , which sells Italian food in the city centre for less than £ 20 , but is not family - friendly . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto near Ranch serves English food and is children friendly , has customer rating 1 out of 5 . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||With a high customer rating , price range of £ 20 - 25 , Browns Cambridge sells Italian food . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns pub . Near the river . Pricey and one star . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Dumpling Tree is located close to the city . Great place to take a date cuz its moderately low price and has great pasta . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the riverside area , is the adult Italian coffee shop , Taste of Cambridge . \nname : Bibimbap House | food : Fast food | price : high | area : city centre | near : Clare Hall||Fast Food was eaten at the city centre inside Bibimbap House , near Clare Hall which the bill was very high . \nname : The Golden Palace | Type : restaurant | price : high||The Golden Palace is a restaurant and as a high price range \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue Pub is moderately priced pub in the city offering delicious burgers and fries . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a non family friendly Japanese restaurant near to Rainbow Vegetarian Café . It is moderately priced and has a rating of 1 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||Located near Café Rouge , by the riverside , The Golden Curry is a Fast food restaurant that is not family - friendly and has a customer rating of low . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap , riverside Chinese restaurant with a customer rating of 5 out of 5 . It is not family friendly and is near Express by Holiday Inn . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||A high priced coffee shop with 3 out of 5 customer rating is , The Vaults . They are located near Café Brazil in the riverside area . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Although rated at 1 out of 5 , Cocum is a kid friendly restaurant . \nname : The Punter | food : Chinese | price : high||You can get expensive Chinese food at The Punter . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : average | near : Ranch||Wildwood is a coffee shop near Ranch now serving Indian food with cheap prices and an average customer rating . \nname : The Plough | Type : pub | food : Japanese | price : cheap | family friendly : yes | near : Café Rouge||The family friendly and cost worthy Japanese pub ' The Plough ' is excellent . Is located near ' Café Rouge ' . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||A kid friendly Japanese restaurant called Green Man is near All Bar One in riverside . They have a moderate price range . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop free of kid noise . They serve Italian food near Crowne Plaza Hotel in the city centre . \nname : Browns Cambridge | price : high | customer rating : average||The high price ranged Browns Cambridge has an average customer rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove is a high priced pub . Located near the River . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap wine tasting restaurant that has poor reviews and is located next to the Yippee Noodle Bar . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge is a high end restaurant located in the middle of the city . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is a pub called The Golden Palace with meals available from under £ 20 with a setting by the riverside \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a riverside coffee shop near Avalon . It is kid friendly , has a high customer rating and prices are in the £ 20 - 25 range . \nname : Cotto | food : Indian | customer rating : low | family friendly : yes | near : Ranch||Near Ranch is and Indian food place called Cotto . It is family friendly and has low customer ratings . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : no||In riverside , there is a high priced English pub called The Olive Grove . They are not child friendly . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||Located by the riverside , The Phoenix is a French restaurant with a high 5 star rating . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is an expensive , family friendly Italian eatery located near The Bakers . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre is a children - friendly , English restaurant named The Rice Boat with a high customer rating and price range more than L30 . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||With a low customer rating , The Golden Curry is family and serves Japanese . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The child friendly , Loch Fyne restaurant serves Italian food . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix is an average restaurant in the low price range . It is located outside the city centre . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop which serves Italian food at a low price . It is located near The Portland Arms in the city centre . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum coffee shop is a family friendly atmosphere serving fast food \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop located along the riverside with a high customer rating and children friendly atmosphere . They serve English Food although their price range is quite high at more than £ 30.00 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly coffee shop in the riverside area near Crown Plaza Hotel called Browns Cambridge . The food is Japanese and has a low rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city near Raja Indian Cuisine there is a family - friendly Italian coffee shop with a price range of less than 20 euros named The Wrestlers . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is an expensive establishment in the city centre near The Rice Boat . It has a customer rating of 3 out of 5 and is not child friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Located in riverside , lies a family friendly coffee shop called Zizzi with a low rating but cheap food under e20 \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , near Crowne Plaza Hotel in the city centre , is a highly rated non - family friendly Indian coffee shop . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||Near the Ranch is a child friendly pub with high customer ratings called The Cricketers \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat can be found near Rainbow Vegetarian Café . With an average customer rating , its price range is under £ 20 . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a children friendly high priced Italian restaurant near The Bakers . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Strada is an English pub near Yippee Noodle Bar . Customers rate it highly . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a restaurant that provides Indian food \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||The Twenty Two is a pub in Riverside has a 3 out of 5 customer rating . It 's near Café Sicilia . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant in the south of the city near of the All Bar One . Its specialty is pasta . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||Midsummer House is located in All Bar One and offers mid - priced Italian food . \nname : Midsummer House | food : English | customer rating : 3 out of 5 | near : Café Rouge||A English Café Is Near Café Rouge . It is called Midsummer House and has a rating of 3 out of 5 \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix provides Indian food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum cheap Japanese food with low customer rating in the city centre near Yippee Noodle Bar \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop with high prices and medium ratings . They are family friendly and located north of the city . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a less than £ 20 family friendly stop near The Bakers \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||If you are looking for a restaurant in the price range of less than 30 in the Riverside area go to Zizzi \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Located city centre you will find The Waterman offering Indian food . They have a customer rating of 1 out of 5 and they are kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low - cost coffee shop near to the river , North of the city centre . This 1 star fast food venue is not suitable for families . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix is a Fast food restaurant located in area riverside , its customer rating is low . \nname : The Punter | food : English | price : cheap||The Punter offers cheap English food . \nname : The Mill | Type : pub | food : Italian | price : high | area : city centre||City centre pub The Mill , offers high end Italian cuisine . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a well - reviewed place near the city river . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : high||There is a high price ranged Japanese restaurant called The Dumpling Tree . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||In riverside near Yippee Noodle Bar , Alimentum serves Indian food with a cheap price range and average customer rating . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is an adults only establishment located in riverside , near The Sorrento , and features Indian cuisine . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Found near The Rice Boat in riverside area , The Twenty Two is kids friendly with a moderate price range . But the customer rating remains 1 out of 5 . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a family friendly restaurant serving English food . With great customer ratings for more than £ 30 , located by the riverside . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : riverside | near : Clare Hall||Clowns is an average rated coffee shop that serves Indian ; it is located in riverside near Clare Hall . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers offer Chinese food with a moderate price Range and the customer Rating is 1 out of 5 and is not kid Friendly \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Italian food less than £ 20 can be found at Fitzbillies near The Six Bells . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||Wildwood is a pub with a cheap price and a low customer rating that serves Fast food . \nname : The Vaults | food : Chinese | price : high | family friendly : yes||The Vaults provides Chinese food in the high price range . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace restaurant is a high end afternoon experience just outside the city center . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||A Japanese restaurant called The Dumpling Tree is moderately priced . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||The Phoenix , located in Riverside serves Italian food , has an average customer rating and is in the high price range . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat is very expensive with bad review . It 's very close to the Rainbow Vegetarian Café . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||An average rated fast food restaurant called Midsummer House is located near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue pub is located inside of Café Brazil . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||The Taste of Cambridge is a high priced restaurant with a 3 out of 5 rating . \nname : Green Man | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a moderately priced Indian restaurant in Riverside that is located near All Bar One . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a cheap and highly rated English restaurant in riverside called The Waterman , but it is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a highly rated , family friendly , fast food location . Though it is located in Riverside near Burger King , The Eagle comes in as a cheap coffee shop . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix on the riverside has a low customer rating even for a fast food joint . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is average . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is in the city centre and is family - friendly . It has Italian food with a low customer rating . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : no | near : All Bar One||In the city centre , near All Bar One , there is the Green Man , which isn 't kids friendly , offers Japanese food and is quite expensive . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge is quite highly priced at more than £ 30 , but has low customer ratings \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||moderate priced Japanese food at The Wrestlers has low customer rating and is adult only \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Italian restaurant The Wrestlers is a non -kid friendly establishment that has a poor customer rating with 1 out of 5 . The prices are moderate . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside||Located in Riverside is a coffee shop titled The Golden Palace , this shop provides Indian food as well . This coffee shop has an average rating and cheap prices . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum serves French food , has a low customer rating , a price range of more than £ 30 and are located in city centre near Yippee Noodle Bar . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that serves Indian food in the riverside . It is a kid friendly place near the Crowne Plaza Hotel . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the riverside area is an English restaurant that was given a customer rating of 5 out of 5 and is cheap in price range , but is not kid - friendly . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||A pub near Café Sicilia is located riverside and named The Twenty Two . Its customer rating is 3 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you 're looking for kid friendly Italian food in the riverside area - then the Taste of Cambridge is for you . It is near the Crown Plaza Hotel . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The wrestlers offers low priced sushi in a family friendly atmosphere \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a nice priced Italian restaurant that is kids friendly . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is located in the city centre . It is a family - friendly French restaurant with an average customer rating . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||If you 're near All Bar One , you should check out Midsummer House , a Japanese restaurant with a customer rating of 3 out of 5 , and a price range of £ 20 - 25 . \nname : Midsummer House | food : Indian | customer rating : average | near : Café Rouge||Midsummer House provides Indian food It is near Café Rouge . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a Japanese coffee shop in the city centre , though it is low - priced it is not suitable for families . Previous customers have given it a bad rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi coffee shop is situated in the city center providing fast food in a grown up setting . It has received a 5 out of 5 rating . \nname : Blue Spice | food : English | price : moderate | area : city centre||Blue Spice is an average priced English restaurant in the city centre . \nname : The Punter | food : Japanese | price : less than £ 20||If you 're craving Japanese food at a low price , visit The Punter . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||Zizzi , is a non - family - friendly pub . With specialties in Japanese food , and a low customer rating . \nname : The Rice Boat | food : Fast food | area : city centre||The Rice Boat is located in the city centre . The rice boat is a Fast Food restaurant . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||You won 't pay much for fries , burgers and soft drinks at The Eagle coffee shop , the quality is all right and it is close to Burger King . \nname : Aromi | Type : restaurant | food : Indian | area : city centre||In the city centre is an Indian restaurant called Aromi . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : 5 out of 5||Wildwood is a pub that serves Indian food for a cheap price with customer ratings of five out of five . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a family friend Italian restaurant in riverside . The customer Rating is low but you can eat for less than 20 . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a family friendly restaurant that serves Japanese food , has an average customer rating , and the price range is less than £ 20 . \nname : The Vaults | Type : restaurant | food : Italian||The Vaults is a restaurant that offers Italian food . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant located near Café Rouge and riverside . Known to be children friendly , this establishment is very highly rated . \nname : The Eagle | food : French | customer rating : 1 out of 5||A five star French restaurant is The Eagle . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The French style coffee shop Fitzbillies has a price range of more than £ 30 , has a low customer rating , and is not child friendly . It is located in the Riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel by the riverside , there is a highly rated coffee shop called Browns Cambridge which is child friendly and serves Italian food . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Zizzi offers coffee shop for family - friendly with cheap price in city centre . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||One fast food restaurant is the Browns Cambridge near the Crown Plaza Hotel . Kid friendly and its on the riverside \nname : The Vaults | food : Chinese | price : more than £ 30 | family friendly : yes||Currently serving Chinese food , The Vaults is family friendly and priced at L30 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||A 5 out of 5 family - friendly fast food pub is known as Zizzi \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi is a three star coffee shop . It is family friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a cheap coffee shop that is family friendly called Cocum . \nname : The Twenty Two | Type : pub | customer rating : average | area : city centre | near : Café Sicilia||Located in the city centre , The Twenty Two is an average rated pub situated near Café Sicilia . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : no||The Giraffe is a pub in the city centre . The food is Japanese but in is not family - friendly . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The pub , The Cambridge Blue , is an expensive place that serves gourmet foods . It is found near Café Brazil . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge has moderate pricing for it 's food with a 1 out of 5 in customer rating . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Close to The Bakers , there is a kids - friendly coffee shop named Giraffe , which has a high customer rating and a fair price range of £ 20 - 25 . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a pub that has an average customer rating , but is family friendly and in the price range of less than £ 20 . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||With a low price range and a high customer rating , Cocum is a family friendly coffee shop . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat on the riverside is The Twenty Two . Prices range above £ 30 . It is child friendly and has a high customer rating . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a child friendly Japanese eatery with a price range more than £ 30 and is located near The Bakers . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||There is a cheap family friendly restaurant Travellers Rest Beefeater with a low price range . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is an expensive Fast food restaurant with a customer rating of 1 out of 5 . It is in the riverside area . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Japanese food restaurant The Waterman is located in Riverside and had a customer rating of 3 out of 5 . This kids friendly restaurant also has very high prices . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||The Rice Boat offers good meal bargains but is not children friendly . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||with 5 out of 5 ratings and high prices Clowns is a pub near the river \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||1 -star rated Aromi is near Chesterton Rd . You can try the coffee shop 's sushi without the company of your children 's \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||Browns Cambridge is a low customer rate English restaurant with a price range of less than £ 20 . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||in riverside , The Eagle has average customer rating and has a price range of less than £ 20 . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a fair rated sushi pub located near the Yippee Noodle Bar . \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop , located near Ranch , with low customer ranting and a price range of less than £ 20 . It is serves fast food . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is a three star , high cost , family friendly restaurant . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is an amazing place near the Rainbow Vegetarian Café the price is a little high but the quality is amazing . \nname : Fitzbillies | food : Fast food | price : moderate | near : The Six Bells||The Fitzbillies is a fast food establishment with a moderate price range . It is located near The Six Bells . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman serves French food and is located at the riverside . However , it is not kid friendly , has a moderate price range , and a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is in the riverside area near Burger King . It has a average customer rating , serving French food in a coffee shop atmosphere . The price range is less than £ 20 . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : no||Italian pub , Giraffe is not a family - friendly place . It 's in the city centre . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||High customer rated , Zizzi , is a Pub , that offers Italian food , and is children friendly . \nname : Midsummer House | food : Indian | customer rating : 1 out of 5 | near : Café Rouge||Indian Food is on the menu at Midsummer House restaurant located near Café Rouge . This dining choice is rated 1 out of 5 by customers . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Strada has a customer rating of five out of five . It cost more than £ 30 and is not children friendly . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is located near Rainbow Vegetarian Café . It has a customer rating of 3 out of 5 , and a £ 20 - 25 price range . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||there is a high priced Pub called Cocum and is child friendly and has ratings of out of 5 \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Fitzbillies is a moderately priced English food serving location , that is near The Six Bells . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||For under £ 20 you can eat at The Vaults , a family friendly fast food restaurant . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||The family friendly pub , Zizzi , serves ultimate UK breakfast like no other \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||In riverside , Alimentum serves Italian food in a child friendly environment at a moderate price range . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a customer rating of 3 out of 5 . Prices range from 20 to 25 dollars . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a family friendly Italian eatery in riverside . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||There is a French food serving pub called Strada which is located near Yippee Noodle Bar . The customer rating is low . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is located in the centre of the city near All Bar One . For adults , it has prices under £ 20 and serves English food . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms in the center city is located a restaurant of Italian food rating in 5of5 , eat type coffee shop , called Cotto \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||In the riverside area , there is a coffee shop called Zizzi . Zizzi 's has a 1 out of 5 customer rating with a moderate pricing range for families and their children . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is located in the city centre . It serves fast food , is child friendly and has average ratings and cheap food . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman Indian restaurant is moderate in price , kid friendly , with a customer Rating of 3 out of 5 on the riverside . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a Italian coffee shop in the cheap price range . Its customer ratings are 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap coffee shop located in the riverside of the city and they are for family . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop located in the riverside of Cambridge . It provides fast food and is children friendly , customers rate it 1 out of 5 . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provide Chinese food at moderate prices . One out of Five Rating . Children Friendly . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||High priced Italian restaurant Strada is a 5 out of 5 star family friendly eatery located close to the Rainbow Vegetarian Café . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two family restaurant has very poor ratings . It is located on the riverside near The Rice Boat . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes||family - friendly , fast food , coffee shop in the city centre called Aromi . Customers have rated it average . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine on the riverside , The Wrestlers is a kid friendly French coffee shop with prices £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle is a very highly - rated restaurant which serves French food . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman , has a price range of £ 20 - 25 , and has a high customer rating . It offers Indian food , and is kids friendly . It is located in a city centre . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is The Rice Boat , with a high price range and a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a medium priced sit down coffee shop style three star restaurant in the Ranch area . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers and is a family friendly place . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||The new awesome coffee shop named Clowns is a fast food restaurant on the riverside near Clare Hall . It has a low customer rating . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||Midsummer House is a high priced restaurant located near All Bar One . It has a 3 star rating . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Located near Café Rouge , the Wildwood restaurant has a customer rating of 3 out of 5 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is situated along the riverside serving French food for a reasonable price , the restaurant has a high customer rating \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a five - starred sushi restaurant located next to the Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||In the city centre near Burger King an Italian food place and a coffee shop called The Eagle is a children friendly place which price ranging more than £ 30 with a high customer rating . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : yes||A family - friendly restaurant named The Rice Boat is located in the city centre area . It has French food and a low customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : cheap||The Dumpling Tree is a cheap fast food restaurant . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a family oriented restaurant located near The Portland Arms . They are ranked 5 star . \nname : Bibimbap House | food : Indian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House serves Indian food for an average price . Located in Riverside near Clare Hall . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat is a restaurant located near the Rainbow Vegetarian Café with a low customer rating and a higher than 30 Euros price range . \nname : The Golden Curry | food : Italian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is an Italian restaurant , located near The Bakers . It is child friendly , with average priced meals for the town . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||The Golden Palace is a poor restaurant by the riverside . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Customers choice restaurant was English restaurant , named like Midsummer House , which has a high rating , is located near Café Rouge . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle serves Italian food with a rating of 1 out of 5 \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The expensive fast food ' The Dumpling Tree ' restaurant . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a cheap Chinese restaurant located in the city centre . It is family friendly and has a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||A children - friendly restaurant named The Olive Grove is located by the riverside . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||In the Riverside area there is a restaurant called The Dumpling Tree that is a children friendly coffee shop located near Café Sicilia with a high price range . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : no||There is a moderate priced pub The Olive Grove that provides English food that is not child friendly . It is located near riverside . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Near Burger King by riverside is a coffee shop that is yes family friendly with a low customer rating called The Eagle and the prices are less than £ 20 . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : The Rice Boat||In city centre , near The Rice Boat , there is a cost and family - friendly restaurant called The Twenty Two . The Twenty two has an average customer rating . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is family - friendly restaurant at a medium price range . \nname : The Phoenix | food : Indian | customer rating : low | area : city centre||The Phoenix is low rated Indian restaurant near the city centre . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the cheap price range . It is located in the city centre . It is near Burger King . Its customer rating is 5 out of 5 . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Strada which is near Yippee Noodle Bar . They are a pub with three stars . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||coffee shop Taste of Cambridge is a family - friendly fast food restaurant in city centre near Crowne Plaza Hotel . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap restaurant located near The Bakers . It is not family friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a situated in Cambridge no families . are welcome and is cheaply priced \nname : Blue Spice | food : Fast food | price : moderate | area : city centre||There is a fast food restaurant with a moderate price range in the city centre area named Blue Spice . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that sells Indian food , high price range , located in City Centre , child friendly , located near Raja Indian Cuisine \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies is a restaurant providing Italian food . It is located in the city centre . There is a cheap restaurant Fitzbillies located near The Six Bells . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced Chinese restaurant in the city centre near Express by Holiday Inn . They are children friendly and have an average customer rating . \nname : Cotto | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is 5 out of 5 . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is a seafood restaurant located near All Bar One . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat a cheap restaurant serving Indian food . Found in riverside near Express by Holiday Inn . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The Japanese coffee shop called The Mill is located in Riverside near The Sorrento . It has a high price range . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||The Eagle is a more than £ 30 price ranged place with a low rating in riverside . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||There is a high end Japanese food venue called Bibimbap House near Clare Hall in the riverside area . Clowns is a restaurant near The Portland Arms . \nname : Alimentum | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||Offering Italian food the Alimentum is a kid friendly place in the riverside area . Prices range between 20 - 25 . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a expensive place located near Rainbow Vegetarian Café . 1 stars \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||There is a cheap place located near Café Adriatic on the riverside called Travellers Rest Beefeater with a 5 out of 5 customer rating . \nname : Strada | Type : pub | food : Fast food | customer rating : low | near : Yippee Noodle Bar||Strada is a Fast food pub with a low customer rating . It is located near Yippee Noodle Bar . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The restaurant Strada , located near the Rainbow Vegetarian Café , serves Expensive English food , has a customer rating of 1 out of 5 and is not child friendly . \nname : The Waterman | price : moderate | family friendly : yes||The Waterman has a moderate price range and is kid friendly . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two on riverside serves Japanese food and is child friendly \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||The Zizzi is an English pub with a high customer rating and is children friendly . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat offers a high customer satisfaction rating at a slightly above average cost . It is located near the Rainbow Vegetarian Café . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||A child friendly place with a customer rating of 5 out of 5 is French restaurant Cotto , situated near Ranch . \nname : The Vaults | food : English | price : moderate | family friendly : yes||Moderately - priced The Vaults restaurant is a family - friendly eatery serving traditional British cuisine . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop serves fast food at a moderate price . The Wrestlers can be found near Raja Indian Cuisine in the city centre and is not kid friendly . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is located on the riverside , near All Bar One with prices ranging from 20 to 25 euro . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman , north of City Centre is located off the river . \nname : Clowns | Type : restaurant | near : The Portland Arms||Near The Portland Arms you can visit restaurant called Clowns . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a family friendly French food venue , rated average for there meals starting less than £ 20 . \nname : The Vaults | Type : restaurant | food : French||For a French cuisine restaurant , The Vaults is a great choice . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located in the city centre nearby Express by Holiday Inn there is a restaurant The Rice Boat , which is affordable and family friendly but customer rating is low . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Italian coffee shop Cotto , has a customer rating of 5 out 5 for it 's cheap prices , and can be found near The Portland Arms on the riverside \nname : The Vaults | Type : restaurant | food : English||The Vaults restaurant serves traditional English fare . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a Fast food restaurant in the city centre area . There price range is high with a 1 of 5 customer rating and they are not children friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||This restaurant has received a high customer rating by serving Italian food and is located in the city centre area ; it 's a coffee shop is called The Golden Palace ; offering menu items in the price range of £ 20 - 25 . \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||Near the riverside is Alimentum , a family friendly Fast food cheap eatery . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located near Crowne Plaza Hotel in the riverside area . It has has an average customer rating and is not family - friendly . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||located at the riverside , The Phoenix offers Chinese food ranging at less than £ 20 .. but with a low customer rating \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an affordable , family - friendly restaurant located on the waterfront . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a 5 star family friendly restaurant . \nname : Fitzbillies | food : Chinese | price : less than £ 20 | near : The Six Bells||Fitzbillies is a Chinese restaurant with cheap prices located near The Six Bells . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||If you want Italian and the high price is no problem , The Cambridge Blue pub can be found near the Café Brazil . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar its locate Alimentum , a restaurant 5of5 stars \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a kid - friendly fast food restaurant called The Rice Boat located by the Express by Holiday Inn in the city centre . It has a moderate price range and is rated 1 out of 5 by its customers . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Kid friendly and within the price range of £ 20 - 25 , Loch Fyne restaurant serves Japanese food . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is the ideal pub to visit for a French meal that costs less than 20 Euros . It is located near Café Brazil . \nname : Green Man | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||There is an Italian restaurant near All Bar One in Riverside called Green Man . It is children friendly and has a price range of more than 30 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Aromi coffee shop serving Italian food in riverside is family Friendly but received a low customer rating . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Looking for that 5 out of 5 experience , visit The Phoenix , starting at £ 30 for French food in the city centre . \nname : Loch Fyne | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves Chinese food , 3 out of 5 people like it , its in riverside , near The Rice Boat . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a cheap , five star and family friendly restaurant . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Family friendly Japanese food with an average rating 3 out of 5 and a high price point . The Waterman can be found in the City centre area . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||By the riverside near The Portland Arms is a family friendly cheap place named The Punter . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a average priced coffee shop located at the end of the city . \nname : Green Man | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man Chinese Food restaurant is a moderately priced dining choice in the riverside area . This child friendly restaurant is located near All Bar One . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||Taste of Cambridge is an expensive restaurant with a low rating . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||There is a high priced restaurant The Dumpling Tree . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant located in city center which providing a Chinese food for less than £ 20 near by Express by Holiday Inn \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Chinese food serving restaurant near Café Rouge , The Golden Curry , by the riverside , is family friendly with a low customer rating . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : no||The Wrestlers sell cheap Chinese food , and aren 't family friendly . They have an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||The Golden Palace coffee shop will be your new favorite place to get a cup . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||The Blue Spice coffee shop is an affordable and family friendly place located in City Centre near Avalon . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is an averagely rated cheap Italian coffee Shop located in the city centre . It is not family - friendly . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop near riverside and near Café Brazil . It is cheap and has perfect ratings . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a surprisingly inexpensive Indian cuisine restaurant in the riverside area . It is family friendly and boasts a customer rating of 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop placed near the river in City centre . We are a non - familiar ambient . we have one star and also we have a mid - price . Join Us . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is located near the river north of City centre . It is a sit - down restaurant that is appropriate for families . It is high priced . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||Near Café Adriatic is The Vaults , a cheap pub with a 5 out of 5 customer rating . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||High priced English food can be found in the city centre at The Dumpling Tree restaurant . \nname : The Golden Curry | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an amazing Japanese restaurant near Café Rouge . It is riverside and child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree is a mid - price restaurant that offers burgers and fries . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||The Wildwood coffee shop is near the Ranch and it is expensive . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||A restaurant at riverside called Zizzi has a price range of £ 20 - 25 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : high | area : riverside||The Waterman pub serves Japanese food and is in the riverside area . It has a high customer rating . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum family restaurant offers quality British fare and is family friendly . \nname : Cotto | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Kids friendly place near Ranch named Cotto has Italian food rating customer rating 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||if you are looking for a place that is not child friendly there is a place in the city centre near Avalon called the Blue Spice which is a coffee shop in the high price range with customer reviews of 3 out of 5 \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Fitzbillies is a restaurant providing spaghetti food in the low - price range . It is located in The Six Bells \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Blue Spice in the riverside area offers meals for less than £ 20 , however has a low customer rating and is not family - friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located in riverside near Express by Holiday Inn , serves moderately priced Indian food rated 1 out of 5 stars . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn in the city centre , Fitzbillies is a high priced family friendly restaurant with a one star rating . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a low priced pub with a customer rating of 1 out of 5 . \nname : Aromi | Type : restaurant | food : Italian | area : city centre||Aromi is a Italian restaurant in the city centre area . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||The Clowns pub price range is more than £ 30 in high customer rating in riverside \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat restaurant has a customer rating of 3 out of 5 . It is in the £ 20 - 25 price range an is near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Fast food | area : riverside||In the area of riverside is The Rice Boat . It has Fast food . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a children friendly restaurant . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry is a low - rated venue serving Italian food . It is not family - friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is an inexpensive Sushi restaurant , not suitable for families with young children . Near the river . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a three out of five starred restaurant that is family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry , located near The Bakers , is a family - friendly , inexpensive , Japanese restaurant . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a coffee shop that sells Indian food . Their Price Range is between 20 through 25 pounds . They are located In the centre of the city and they have a high customer rating \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located in the heart of city centre , near the Crowne Plaza Hotel , Browns Cambridge is an upscale , yet family - friendly , Japanese coffee shop . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||Near Café Brazil is a moderately priced French pub called The Cambridge Blue . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Come visit our new children friendly restaurant The Green Man . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||The Dumpling Tree is a restaurant in the city centre that serves reasonable priced Japanese food . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||There is a kid friendly Japanese restaurant called The Golden Curry . It is low priced and near The Bakers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Near Burger King in riverside you will find The Eagle . It is your average coffee shop with inexpensive fast food options and a family friendly environment . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a fast food restaurant that is not kid friendly . They have moderate prices and are located in Riverside with a customer review of 1 out of 5 . \nname : The Mill | Type : pub | food : Chinese | price : cheap | area : riverside||The Mill is a Chinese put with a cheap price range located in the riverside . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Ranch is located by The Cricketers pub \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Located in riverside near The Portland Arms , Cotto coffee shop serves cheap Indian food and has a customer rating of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a French coffee shop in riverside . It is convenient to the Crowne Plaza Hotel , and offer a child - friendly environment . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no||A coffee shop with an average customer rating serving French food is Aromi in Riverside . They are non family - friendly . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||In Riverside , the Bibimbap House is a high - priced fast food restaurant near Clare Hall . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar there is a expensive restaurant called Alimentum . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a family friendly coffee shop , known for fast food but low rating , located near Crown Plaza Hotel in riverside \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat seems to be an fine children friendly fast food restaurant at riverside , with a customer rating of 1 out of 5 . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a children - friendly Japanese food of price range more than £ 30 in riverside \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family style coffee shop with a rating of one out of five stars for a decent price located in City centre near Burger King \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers are located in a busy part of town . They sell spaghetti which you can enjoy with some wine . Quite cheap , they have a three - star rating . Convenient for families with children and prams . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop serving Indian food in the city centre . It has a low customer rating . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns , the coffee shop is rated 5 out of 5 by customers in the Clare Hall and Riverside area , and serves Japanese style food \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||There is an Indian coffee shop called The Golden Palace in riverside with a high price range and a 1 out of 5 rating . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||If Japanese is what you are looking for The Green Man is family friendly costing less than £ 20 and is near All Bar One in the riverside area \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||By the riverside and near Yippee Noodle Bar the Alimentum serves Japanese food for less than £ 20 and customer rated average . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||Located in riverside , is a high price Fast food restaurant called The Waterman . It has average customer ratings and is not children friendly . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a cheap family - friendly restaurant that serves Italian food in the city centre . It has a customer rating 5 out of 5 . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||With a moderate price Range , The Golden Curry near The Bakers is kid Friendly serving Fast food . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||a high customer rating the Browns Cambridge serves English food price of more than £ 30 and \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||The Golden Palace in Riverside is a 5 star restaurant \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||Cocum is a 1 - star rated restaurant that is not child - friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant with a moderate price range in the city centre , near Express by Holiday Inn . It is not child friendly and has a customer rating of 3 out of 5 . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||For child friendly French food near the Crown Plaza Hotel try The Waterman . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||In riverside area near The Sorrento , is a coffee shop called The Mill . It sells fast food at a moderate price range . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The highly rated but expensive The Twenty Two is family friendly . It is located in the riverside area near The Rice Boat . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace offers reasonably priced pub food , it is in Luton near the Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a French coffee shop located near the Burger King in the city centre . They have a high customer rating and their prices range between £ 20 - 25 but they are not children friendly . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Blue Spice is Italian food cheaply priced , located in Riverside area . \nname : The Phoenix | food : Fast food | customer rating : 1 out of 5 | area : riverside||A fast food restaurant named The Phoenix has a rating of 1 out of 5 and is by the riverside . \nname : The Golden Curry | food : English | customer rating : average | family friendly : no||An English eatery , The Golden Curry , is an adult only and average rated . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop located near Raja Indian Cuisine . \nname : Browns Cambridge | food : Indian | price : high | customer rating : 1 out of 5||Browns Cambridge offers Indian food at a high price and is rated 1 out of 5 by customers \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||With a cheap price range and average customer rating , located in the city centre near Yippee Noodle Bar , The Alimentum offers Italian food at a cheap price range . \nname : The Mill | Type : coffee shop | food : Indian | price : cheap | area : riverside | near : The Sorrento||Near The Sorrento , by the riverside there is a coffee shop called The Mill . It is cheap and serves Indian food . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||There is s cheap pub called The Vaults that is near Café Adriatic , it sells high priced food and has an average rating . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a Yippee Noodle Bar fast food by the riverside that charges less then 20 with a low rating . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderately priced restaurant that serves Japanese food and is located near Rainbow Vegetarian Café . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||The Vaults , a pub close to Café Adriatic , who have high prices and an average customer rating \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||A cheap Indian restaurant that is rated 5 out of 5 named Strada is near the Rainbow Vegetarian Café . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||In Riverside there 's a restaurant called The Phoenix that makes Japanese food but has a low customer rating . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||In Riverside is a highly rated fast food restaurant named Loch Fyne that is near The Rice Boat . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The restaurant The Golden Palace offers meals of under £ 20 per person . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub near Ranch with an average customer rating . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne , providing 1 star food close to the city centre and The Rice Boat . \nname : Loch Fyne | food : English | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne serves English food and is near The Rice Boat in the city centre . It has a low customer rating . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a restaurant that serves food near Clare Hall . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The coffee shop Cotto is a Japanese food type place near The Portland Arms , at the riverside , that has a moderate price range and a 1 out of 5 customer rating \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is near the Rainbow Vegetarian Café . It serves more expensive French food , welcomes children and has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : English | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is not kids - friendly with moderate price range . It is near The Bakers with English food . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a moderate priced family - friendly English joint located in the city centre by All Bar One . \nname : Browns Cambridge | food : English | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is located in the city centre near The Sorrento and is a family - friendly English restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Riverside has an Indian food Café located near Crowne Plaza Hotel called Browns Cambridge . It has a 5 out of 5 customer rating and is family friendly . \nname : Blue Spice | food : Chinese | price : more than £ 30 | area : riverside||Blue Spice , in the riverside area , has Chinese food and a price Range more than £ 30 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Highly rated , The Rice Boat serves Japanese food in the £ 20- £ 25 price range in a kids friendly atmosphere located in the city centre near Express by Holiday Inn . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||Located on the riverside , The Mill is a moderately priced French pub . \nname : Loch Fyne | food : Italian | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is located at the city centre near The Rice Boat . They serve Italian food but have a low customer rating . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Looking for a highly rated family friendly experience - Cocum is your restaurant to try . \nname : The Waterman | price : less than £ 20 | family friendly : yes||The Waterman is cheap and family friendly . \nname : The Phoenix | food : Fast food | customer rating : high | area : riverside||The riverside is also home to The Phoenix , an excellent fast food place for all ages . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a highly rated coffee shop in the riverside area near The Portland Arms . It serves Italian food and the price range is £ 20 - 25 . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant providing average quality food in the average price range . It is located in the north of city after Express by Holiday Inn . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - Friendly pub with a low customer rating located near Ranch . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge is a high end restaurant serving English food with a low customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice is low price coffee shop Located in riverside with a customer rating of 5 out of 5 but not children - friendly \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a small , moderately priced pub near Café Adriatic with a customer rating of 3 out of 5 . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Near All Bar One is located Green Man , restaurant of Japanese food moderate price in the centre of city , for all \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is a child friendly Italian restaurant called The Waterman . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is located next to Clare Hall and is a budget priced food and drink venue . \nname : The Punter | food : English | price : cheap||You can get English food at The Punter and it is cheap . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House serves expensive Italian food . It is located near Clare Hall in Riverside . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a Chinese restaurant in the cheap price range with a customer rating of 5 out of 5 . It is located in the city centre area and is not family friendly . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||There is a French food pub called the Wildwood . It has low customer ratings and the price range is more than 30 . \nname : The Wrestlers | Type : coffee shop | food : French | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine in Riverside that serves expensive French food . It is children friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a Japanese coffee shop with a moderate price range that has a customer rating of 1 out of 5 and is not kids friendly . \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||The Wildwood pub is an affordable place to dine . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||Fitzbillies sells French food in the average price range and is located near The Six Bells . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a child friendly coffee shop that serves high priced Japanese food located in the Riverside area called Fitzbillies . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill pub provides moderate priced Italian food and is based in Riverside \nname : Strada | Type : restaurant | customer rating : average||an average restaurant is Strada \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a average rated , children friendly , and high priced Fast food place located near Rainbow Vegetarian Café . \nname : Cotto | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto located near Ranch serves Japanese food for all . It is not recommended by others . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle 's Japanese food is rated 5 out of 5 \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is cheap , family friendly with 5 out of 5 ratings . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is children friendly , near Express by Holiday Inn , has high customer rating and price range is more than £ 30 . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||French Cotto , located by Ranch , is kids - friendly and rating of 3 out of 5 . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a kid friendly , riverside restaurant with a price range of 20 - 25 and a customer rating of 3 out of 5 \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||If you 're looking for a moderately priced French restaurant there 's one in the city centre . It 's called The Phoenix and has moderate prices but it has a one out of five customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace coffee shop serves Japanese style food . It is close to the City center , medium priced and rated five stars . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , Is not a family - friendly environment . We provide quality Italian food . We are located near Café Rouge , In the city centre . Customer rating Low . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a restaurant providing Fast food deliveries in the low price range . It is located in Raja Indian Cuisine \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||Near the river , there is a poorly rated family restaurant called The Rice Boat . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : average||Wildwood is a pub offering Chinese food at a low price range , with an average customer rating . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Italian restaurant located in the city centre near the Yippee Noodle Bar with a customer rating 5 out of 5 . \nname : The Punter | food : Indian | price : high||The Punter is a highly priced Indian restaurant . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||For Japanese food , I would recommend The Golden Curry . It boasts a 5 out of 5 rating by customers and is very child friendly . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a family friendly pub serving British cuisine . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||A low price restaurant is Taste of Cambridge , though it 's rated low with customers . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The Cocum is a fast food coffee shop with high customer ratings and average prices . The Cocum is not child - friendly . \nname : The Twenty Two | food : English | family friendly : yes||There is a family friendly restaurant which serves English food called The Twenty Two . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||In the riverside area there is a place called The Eagle which has a price range of less than £ 20 and an average customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a no family - friendly coffee shop providing Fast food . It is located near Crowne Plaza Hotel in the riverside . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a French pub in the riverside area that is child friendly . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a British , family friendly restaurant with inexpensive dishes . It can be found north of the city center . , nearby All Bar One and the river . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||Next to The Rice Boat there is a restaurant called The Twenty Two , its not good for families . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||City Centre is home to a cheap and family friendly Chinese restaurant known as The Rice Boat which is located near Express by Holiday Inn . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge coffee shop offers Italian food in the riverside area . It is near the Crown Plaza Hotel . \nname : The Phoenix | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Phoenix , customer rated 1 out of 5 , serves Chinese food in the riverside area . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||with a rating of 3 out of 5 near Café Sicilia a coffee shop which is kids Friendly and priced £ 20- £ 25 is The Punter which serves Japanese food \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Eagle serves Japanese food and has customer Rating 3 out of 5 . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||For moderately priced fast food there is Browns Cambridge although it has only scored 1 out of 5 stars . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto is a kid - friendly place to have high - rated Indian food by the Ranch . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil . It offers French food in the higher price range . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||A family friendly hamburger restaurant is called The Golden Curry and has an okay rating of 3 out of 5 stars . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||Found in riverside , The Twenty Two has French food and is kids friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue restaurant offers average French food . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is an Italian food restaurant . It has a 5 out of 5 customer rating and the prices are cheap , but it is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 1 out of 5||The Cambridge Blue is a 1 out of 5 rated Japanese restaurant . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : city centre||The Waterman pub in the city centre offers Fast food in a pub environment , customers have reported mixed results . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a fast food restaurant near Rainbow Vegetarian Café whose prices are less than £ 20 . It is not a family - friendly restaurant and it has a low customer rating . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : riverside||In riverside there is a pub called The Mill serving Indian food for less than £ 20 . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||For a kid friendly place at a moderate price make a stop at Strada , however its customer rating is low at 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly fast food pub near The Portland Arms . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant near The Six Bells with a price range of 20 - 25 pounds . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : less than £ 20||For a low to moderately priced Indian restaurant , try The Dumpling Tree . \nname : Midsummer House | food : Indian | customer rating : high | near : Café Rouge||Midsummer House is located near Café Rouge . It is highly rated and serves Indian food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an expensive family friendly coffee shop north of the city , near Raja Indian Cuisine . \nname : Bibimbap House | food : Chinese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House Chinese food price range is more than £ 30 , but the ambiance of the riverside location near Clare Hall makes it perfect . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Zizzi is a moderately priced coffee shop in the city centre . It isn 't kids friendly and has a 1 out of 5 rating . \nname : The Punter | food : Indian | price : cheap||The Punter is an Indian restaurant that has a cheap price range \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House serves good fast food , situated near Café Rouge . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : no||The Chinese restaurant known as Loch Fyne has high prices and is not kid friendly . \nname : The Twenty Two | food : Chinese | family friendly : yes||Chinese food in a family friendly environment : The Twenty Two . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : no | near : The Portland Arms||The Punter is in the city centre near The Portland Arms . They are in the price range of more than £ 30 and are not child friendly . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is located near Rainbow Vegetarian Café and has a low price range . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : no | near : Café Rouge||Despite not being child friendly and having a high price range , The Plough , a pub near Café Rouge offers Chinese food \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a children friendly Italian restaurant in the city centre that has an average rating and high prices . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||In the city centre there is a mid rated coffee shop called Fitzbillies , of French styling and unfortunately not for children . Costs are reasonably low also \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop that provide Indian food of low prices . It is highly rated by the customers . Cocum is a coffee shop which is so children friendly . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Wildwood is a pub featuring low prices and serving burgers , fries , and drinks . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a restaurant providing dining in a family friendly atmosphere . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms . It is cheap and moderately rated . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||At City Centre , near Express by Holiday Inn is a Japanese restaurant called The Rice Boat . Its price range is high and is rated 3 out of 5 by customers . It is also children friendly . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice is a Japanese restaurant in riverside provide food at a price of more than £ 30 . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a riverside Japanese restaurant . It is moderately priced and gets a 1 out of 5 rating . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub that provides Japanese located by the riverside with a 5 out of 5 customer rating . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly Italian pub ear The Portland Arms . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is children friendly and located near The Rice Boat in the city centre . It has low customer ratings and costs more than 30 pounds . \nname : Blue Spice | food : Fast food | price : cheap | area : riverside||In the riverside area is a cheap restaurant called Blue Spice that serves Fast Food . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||For Italian food , try The Twenty Two in Riverside which is also suitable for children . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry sells children friendly Italian food in the high price range . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice serves food in the £ 20 - 25 price range and is along the riverside . \nname : The Olive Grove | Type : pub | food : French | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap French pub you can go to as a family in the riverside area \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||There is a Yippee Noodle Bar with high customer ratings called Strada . It serves Italian food and is a pub \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||French food in Riverside , near Express by Holiday Inn , can be found at The Rice Boat . It has low customer ratings and a family friendly environment . \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter restaurant , sell Japanese food , only £ 20 - 25 . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : city centre||Average rating restaurant in city centre is The Golden Palace . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is child - friendly and located riverside , serving pub - style fare . It has a low customer rating . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : yes | near : The Portland Arms||In the city centre area is a children friendly restaurant named The Punter . The price range is more than 30 and it is near The Portland Arms . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family - friendly pub near Café Rouge . The pub serves English food for less than £ 20 . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is a coffee shop serving expensive Italian food . It is family friendly and has a three star rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : riverside||The Waterman is a pub restaurant that serves Indian food . It has an average customer rating . It is located at the riverside \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : riverside||The Waterman is a well - reviewed British pub on the river . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : city centre||The French pub in the city center , ' The Waterman ' , is not a recommended place to go . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge is a high - priced restaurant offering English food with an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The Cambridge Blue is a high - rated , English restaurant . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||By the Rainbow Vegetarian Café , there is a restaurant called The Rice Boat with average prices that customer like a lot . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a cheap Japanese coffee shop in the riverside area that is not family - friendly and has a 5 out of 5 rating \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : city centre||The Waterman is a pub serving Indian food near the city centre with a low rating . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is pub that serves Japanese food . It is by the riverside and has a low customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||You can order Japanese food for more than £ 30 at the coffee shop The Punter . It 's located near Café Sicilia , is not child friendly and has a low customer rating . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix It offers French meals at a price Less than £ 20 \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Near the city centre it 's found a low - cost coffee shop , is called Fitzbillies , serves dishes from £ 30 for all \nname : The Vaults | food : Indian | price : £ 20 - 25 | family friendly : yes||The Vaults is a kids friendly restaurant serving Indian food between £ 20 - 25 per person . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The fast food restaurant called The Taste of Cambridge , is located in the riverside area near The Crowne Plaza Hotel . It is kid friendly , and also a coffee shop \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||In the less than £ 20 price range is the Blue Spice which serves French food and is in the riverside area . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||There is a five star rated coffee shop located inside of Café Sicilia . The Punter offers food and drink . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Located in the riverside area , close to Café Rouge , The Golden Curry is an English restaurant with an average customer rating but it is not family - friendly . \nname : Browns Cambridge | price : high | customer rating : average||Browns Cambridge has an average customer rating and a high price range . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family friendly establishment with a 5 - star rating . \nname : Loch Fyne | food : Indian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||An Indian restaurant with a 5 out of 5 customer rating in the riverside near The Rice Boat is Loch Fyne . \nname : The Cambridge Blue | Type : pub | food : Indian | price : moderate | near : Café Brazil||The Cambridge Blue is a pub that provides Indian food in the moderate price range . It is near Café Brazil . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||The Green Man is in the price range of more than £ 30 . It is children friendly and is near the riverside . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum is near the Yippee Noodle Bar . It is a cheap Japanese place in the riverside area with a 5 out of 5 customer rating . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||Clowns coffee shop offers Italian food . It has low consumer ratings . Is located near Clare Hall \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||In the middle of the city , there is a Chinese restaurant named The Golden Curry , near Café Rouge . Although this establishment is not family friendly , they do have an average customer rating . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Wildwood pub provides great food at a mid range price . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : less than £ 20||There is an Indian restaurant called The Dumpling Tree which has prices under £ 20 \nname : The Punter | food : English | price : cheap||The Punter serves cheaper English food . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Chinese food restaurant with a low customer rating located near Rainbow Vegetarian Café . It is family friendly and has dishes under 20 pounds . \nname : The Rice Boat | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Indian food in Riverside . It has an average customer rating and is kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Japanese restaurant providing excellent customer service . It is located on the riverside near Café Rouge . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap family friendly place near Rainbow Vegetarian Café with a 5 out of 5 customer rating \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese coffee shop called The Wrestlers located near Raja Indian Cuisine in riverside . They do offer a higher price range but are children friendly . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a Fast food place located near Yippee Noodle Bar in city centre . The prices are anywhere from £ 20 - 25 . They have even earned a high rating . \nname : Alimentum | food : English | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is located in the city centre near Yippee Noodle Bar serves High Priced English food . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||The Travellers Rest Beefeater is a family friendly restaurant with a low price range . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||The Eagle has low customer rating and costs more than £ 30 . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a child friendly pub in the riverside area with an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap and family friendly coffee shop in the Riverside area . The Wrestlers serves fast food and is located near Raja Indian Cuisine . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||When in Riverside and you have no kids , then you might try the English restaurant named The Waterman . It is mediocre with moderate prices and is not kid friendly . \nname : Bibimbap House | food : Indian | price : more than £ 30 | area : riverside | near : Clare Hall||Indian food at Bibimbap House , we provide food with a price Range more than £ 30 . Locate in the riverside area , near to the Clare Hall . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Crowne Plaza Hotel near the city centre area has a coffee shop named Browns Cambridge ; it offers French food and has a low customer rating yet is family - friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is located on the riverside near Burger King . It serves moderately priced Italian food . The coffee shop is kid friendly , but received 1 out 5 on customer reviews . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Japanese food . It is near Café Rouge and the river , and is not family - friendly . It also has a low customer rating . \nname : The Phoenix | food : Chinese | customer rating : low | area : city centre||The Phoenix is a low rating Chinese restaurant near city centre . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman a place to eat English food , located in the city centre . With low prices , a family - friendly environment , but low customer ratings . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||The pub named Zizzi has an average customer rating , is family - friendly , and offers French dishes . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House has a customer rating of 1 out of 5 . It is a wine bar located close to Café Rouge \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a highly rated coffee shop with an average price range . It serves Indian food and children are welcome . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant that received a 5 out of 5 customer rating . They serve English food and are located in city centre near Express by Holiday Inn . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap family friendly place near Rainbow Vegetarian Café with a 5 out of 5 customer rating \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||The Rice Boat , located riverside , is a non family friendly restaurant with a lower customer rating . \nname : The Waterman | Type : pub | food : French | customer rating : high | area : riverside||Located on the riverside , The Waterman is a highly rated pub serving French food . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||There is a pub called Strada that is close to Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : yes||The Olive Grove is located in the city centre and have a moderate price range \nname : Browns Cambridge | food : Indian | price : less than £ 20 | customer rating : low||With a low customer rating , Browns Cambridge serves Indian food and has a price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is not kid friendly . a customer rating of 3 out of 5 . Its near Burger King in riverside \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves Indian food . It has a moderate price range . Its near Raja Indian Cuisine in riverside . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub that serves Japanese food less than £ 20 near Café Rouge . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a non family - friendly Italian pub in the center of the city with a price range of less than 20 euros . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a cheap average rating pub in the area of Riverside . \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||The Cambridge Blue is a French pub , moderately priced , near Café Brazil . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : yes||family - friendly and rated low , Aromi is a pub in the city centre . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||Giraffe is a cheap coffee shop for individuals near The Bakers with a customer rating of 5 out of 5 . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||The Eagle at Riverside has a customer rating of 5 out of 5 and is cheap \nname : Clowns | price : more than £ 30 | family friendly : no | near : Café Sicilia||Clowns is not a children friendly restaurant with a price range of more than 30lb near Café Sicilia . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high priced , Chinese food restaurant with a high customer rating , in the Riverside area , near the Express by Holiday Inn , it is not child friendly . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a restaurant for Japanese food in the low price range . it is located close to Ranch and it is suitable for families . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||The Waterman in the city centre has an average customer rating and is family - friendly . They serve Japanese food for less than £ 20 . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The kids friendly The Wrestlers serves Chinese food which is moderately priced with a moderate customer rating . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||If you 're looking for Japanese food , try The Waterman , a reasonably - priced , family - friendly restaurant in the city centre . This restaurant received a rating of 5 out of 5 from customers . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The highly rated Cocum serves Japanese food in a child friendly location \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , near Burger King on the riverside has a great customer rating of 5 out of 5 . It 's a coffee shop that serves French food at cheap prices , although it 's a no families environment . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Located by the riverside , Giraffe is a family friendly pub which serves French food . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low - rated family - friendly restaurant with a price range of less than £ 20 . It serves Japanese food and is located near Express by Holiday Inn in the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||By the riverside and near Burger King is a cheap family friendly Italian coffee shop called The Eagle . It has a customer rating of average . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : average||The Cambridge Blue restaurantr serves Indian food and has an average customer rating \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||There is a cheap coffee shop named Cocum , rated average by customers . The place offers Fast food and is family friendly . \nname : The Waterman | price : high | family friendly : yes||The Waterman has a high end price range and is child friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||For an average English restaurant that doesn 't allow kids , try The Rice Boat in Riverside , near the Express by Holiday Inn . \nname : The Vaults | food : Italian | price : high | family friendly : no||The Vaults serves high - priced Italian food , and is not children - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||A high priced Japanese coffee shop with a high customer rating but not child friendly , is The Eagle , near Burger King in the city centre \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne , located on the riverside in close proximity to The Rice Boat , is a 5 - star fine - dining restaurant . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a French restaurant in the price range less than £ 20 with a low customer rating . It has a bad family - friendly atmosphere \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a fast food family friendly restaurant . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||with a low customer rating the The Rice Boat is family friendly serving Italian food . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a cheap coffee shop in the south of the city near of The Portland Arms . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||Located near Avalon in the Riverside area , the Blue Spice is a coffee shop . They are moderately priced and received a 3 out of 5 customer rating . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Bibimbap House on the riverside , near Clare Hall , serves moderately priced English food . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is a 3 star river side restaurant \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman kid friendly Chinese restaurant located near the riverside is moderately rated for price . Its customer ratings are 3 out of 5 . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||There is a family - friendly place at the riverside called Alimentum . It offers Japanese food in the low price range . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | near : The Sorrento||There is a low - priced coffee shop near the city river called The Mill , it is also close to The Sorrento . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Kid - friendly French dining can be had in riverside near All Bar One at Green Man for £ 20 - 25 . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe is a pub that provides Chinese food It is located in the riverside . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||The Mill , a cheap coffee shop that serves fast food is near The Sorrento on the riverside . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is a restaurant geared towards adults that is in the medium price range . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : 5 out of 5||There is a pub with cheap prices that sells Chinese food . Wildwood has been rated 5 out of 5 . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||The Eagle has a cheap price range . It is in the Riverside area . The customer rating is 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving Japanese food in the riverside area near The Portland Arms . It is low cost but has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Japanese food in the city centre city , very close of Crowne Plaza Hotel \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a restaurant offering Chinese food in the 20 pound range . It 's located in the riverside area near Clare Hall . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Low priced and low rated , Alimentum is a riverside Italian food place near Yippee Noodle Bar . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the centre of the city , near Raja Indian Cuisine sits a high priced coffee shop called The Wrestlers , that offers Indian food at a non child friendly establishment . \nname : The Punter | food : English | price : £ 20 - 25||The Punter serves English food with a price of £ 20 - 25 . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a child friendly Indian coffee shop . It is located in Riverside next to the Crowne Plaza Hotel . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : city centre||In the city centre there is an Indian food place called The Mill , is meal is less than £ 20 . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : city centre||The Waterman is an average rating restaurant located in city center . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : no||Alimentum is a moderately priced , adult oriented Indian restaurant in the riverside area . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the center of the city near Burger King , the fast food , is a kid friendly coffee shop named The Eagle . Customers rate it a 3 out of 5 , with moderate pricing . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||Located near the city centre , The Golden Palace , is a low rated coffee shop that serves Japanese food that costs more than 30 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food and has an average customer rating . Located in the city of Riverside , it is a family - friendly establishment that is near the Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||Located next to The Portland Arms The Cricketers , coffee shop . Not available to families , 1 star restaurant \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||With a low customer rating and a price range of less than £ 20 , Zizzi is a family friendly coffee shop on the riverside . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace offers mid - priced coffee , cheese , and fruit and is located on the river . \nname : The Eagle | food : Japanese | customer rating : average||Customers rate The Eagle , a Japanese restaurant , as average . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Children friendly places are indeed , yes , can cast you more than £ 30 at a place in riverside named The Rice Boat . It has a customer rating of 5 out of 5 stars and they sell French food near the Express by Holiday Inn . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||Located on the riverside , The Phoenix serves English food at high prices . Customers rate The Phoenix as average . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge , The Golden Curry is a kid friendly fast food place on the Riverside , with a rating of 1 out of 5 \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood coffee shop is near the Ranch and of the higher price range . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : no | near : The Bakers||The Bakers which has a price range of less than £ 20 was given an average rating by the Giraffe for a non family - friendly coffee shop \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : average||The Wildwood pub offers Indian food with a high price range and average customer rating of average . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies is located near The Six Bells with a price range of less the £ 20 and is Japanese . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides fast food . It is near the Rainbow Vegetarian Café . It has high customer rating , is kid friendly and has a price range of £ 20 - 25 . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Blue Spice is an upscale restaurant conveniently located in the city center . 3 out of 5 customers recommend eating at Blue Spice as it has an average price range of 20 - 25 . \nname : Aromi | Type : restaurant | food : English | area : riverside||There is an English food restaurant in riverside called Aromi . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is a children friendly English restaurant called The Waterman . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||In the riverside area , near Café Rouge , The Golden Curry serves fast food , is child friendly and has been highly rated by customers . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Moderate prices you can find at Alimentum , near Yippee Noodle Bar . This is a new restaurant near riverside with Japanese food , rated 1 out of 5 by our customers . \nname : Strada | Type : restaurant | customer rating : low||Strada is a restaurant that gets low customer ratings . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is located near All Bar One . It has a high customer Rating . The price Range is slightly above average , more than £ 30 , for their Italian cuisine . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Situated on the riverfront , north of the City centre , the premium ' The Olive Grove ' pub is a family - friendly eatery serving a variety of wines and cheeses . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a 1 - star coffee shop providing drinks and desserts in the high price range . It is located beside Café Sicilia and suitable for families . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop located near Ranch , it serves Fast food and has an average customer rating . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||Wildwood , the expensive , lowly rated Pub , serving French cuisine . \nname : The Cricketers | Type : restaurant | food : Chinese | near : All Bar One||The Cricketers is a Chinese restaurant located near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located on the outskirts of the city centre is a family friendly coffee shop Fitzbillies that serves mid - range priced food . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing French food more than 30 pounds price range it is located in the city centre near Raja Indian Cuisine not child friendly for adults only \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||For a fancy night out , try Browns Cambridge , with entrees in the high price range . Customers give it 3 out of 5 stars . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||If you 're ever traveling through the riverside area , try your luck dining at The Phoenix . It 's a Chinese restaurant with a lowly rated customer review , yet low enough to fit your budget . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle Indian coffee shop , is moderate in price with a 3 out of 5 customer Rating , not kid friendly on the riverside near Burger King . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a restaurant serving average quality sushi that has above average pricing . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe restaurant near The Six Bells is in the cheap price range . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||Wildwood is a highly rated pub offering American food . It is moderately priced . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop offering Italian food . This is a children friendly coffee shop which is highly rated . It is situated near Café Sicilia but can be expensive with food being more than £ 30.00 . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man provides Chinese food in the high price range . It is located in the city centre . It is near All Bar One . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a high priced Italian restaurant named The Waterman near riverside . It is child friendly with a customer rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman located in riverside with over average prices is an ok rated adult only Fast food eatery \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 5 star , family restaurant that serves reasonably priced food and spirits . It is located close to the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is not a children friendly coffee shop serving Japanese food for more than £ 30 with a 5 out of 5 rating located near the city centre . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : no||Chinese food under £ 20 don 't bring the kids to Loch Fyne \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a child - friendly restaurant . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap 5 star rated Indian restaurant near Yippee Noodle Bar and the riverside . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is a restaurant providing English food . It has an average customer rating . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is a pricey but child friendly venue near Café Sicilia \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The high priced pasta meals at The Golden Palace coffee shop have an average rating of 1 out of 5 stars . Located in the City centre area . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside||The Mill is a pub style restaurant offering English style food . The price range is above £ 30 . Conveniently located around riverside . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop with average customer ratings an is located near to Café Brazil in the riverside area \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a restaurant located in the historical center . of the city offering authentic Asian food . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a not family place with great rating and price range more than £ 30 next to Express by Holiday Inn \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is a coffee shop near of The Bakers with a low customer rating \nname : The Punter | food : Japanese | price : more than £ 30||The Punter is a Japanese restaurant . The price range is more than £ 30 . \nname : Midsummer House | food : Chinese | customer rating : low | near : Café Rouge||Midsummer House serves Chinese food . They are located near Café Rouge and are rated low . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||With a rating of 1 out of 5 stars , The Rice Boat provides Italian food in its kid - friendly environment . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||near The Portland Arms , children friendly The Cricketers coffee Shop serves Italian food with a customer rating of 1 out of 5 \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a expensive place to eat , it has 5 stars and is near All Bar One . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : yes | near : All Bar One||French food served at the kids - friendly Green Man located near the All Bar One in the city centre . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||For under £ 20 dining at an average rating , visit Browns Cambridge . \nname : The Eagle | food : Chinese | customer rating : average||The Eagle is a Chinese restaurant with an average customer rating . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||Clowns is a fast food coffee shop near Clare Hall \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is kids Friendly , serves Fast food , has high ratings and costs between £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||5 out of 5 for this coffee shop , although no facilities for children . It is close to Burger King , called The Eagle near to the riverside has a price list of more than £ 30 serves Japanese cuisine . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , situated in the city centre near the Express by Holiday Inn . It serves French food within a price range of less than £ 20 . No families . The customer rating is average . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||The highly acclaimed Italian Pub Zizzi is kid friendly . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is an expensive , one star , coffee shop near Café Brazil . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids friendly pub serving English food . It is near The Portland Arms . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Blue Spice is located in the city centre , it has a rating of 1 out of 5 , a moderate price range and is kid friendly . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a highly rated Japanese eatery located by Express by Holiday Inn . It is in the city centre , is not child friendly and has a price range of more than £ 30 . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice have a high price range located in the riverside \nname : Strada | Type : pub | food : Fast food | customer rating : 3 out of 5 | near : Yippee Noodle Bar||For Fast food in a pub , come to Strada - 3 out of 5 , near Yippee Noodle Bar \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Bring your kids to Strada and enjoy Fast food at only £ 20 - 25 . Boasting excellent customer ratings near the infamous Rainbow Vegetarian Café \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||There is a average rated restaurant named Taste of Cambridge with cheap prices . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Located near All Bar One , Midsummer House serves cheap English food . Midsummer House has an average customer rating . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||There is a pretty good coffee shop , called The Vaults , in the riverside district . It is close to Café Brazil . Although prices are a bit high , customers still give it a good rating , 3 out of 5 , would still eat there . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers , a children friendly restaurant that serves English food , has a customer rating of 1 out of 5 and has a high price range . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is a family friendly restaurant called The Plough . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no||Cocum is an expensive Italian coffee shop that is average and not family - friendly . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||Midsummer House near All Bar One is an Italian place with an average rating and cheap prices . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Rated 5 out of 5 , Blue Spice is a child friendly restaurant located on the riverside . Prices are typically more than £ 30 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Avalon||coffee shop Blue Spice is located in city centre near Avalon . It has a price range of 20 - 25 with a high customer rating . It is not recommended for families . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||Known for its Italian style and kid - friendly area , the Zizzi is a high - rated pub . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the moderate price range and a customer rating of 3 out of 5 . The venue has a kid friendly atmosphere and is located near Café Sicilia . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||Wildwood Pub is a one star restaurant that sells spaghetti and wine and is moderately priced . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves English food in price range of less than £ 20 . Is family - friendly located in the city centre near the Express by Holiday Inn , customer rating is low . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue , near Café Brazil offers moderately priced pub style Italian food . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Japanese restaurant that is rated 3 out of 5 . It is located in riverside near The Rice Boat \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a Chinese food , kids Friendly restaurant , with high price Range and average customer Rating located in the city centre . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||Wildwood is an English pub serving average rated cheap bites . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a Japanese pub located near Yippee Noodle Bar . It doesn 't have a high customer rating . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a higher priced restaurant that serves burgers , fries and soft drinks located just off of the city center . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe is a restaurant near The Six Bells with cheap price range \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : city centre||Clowns is an expensive , poorly rated pub in the city centre . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : no||Loch Fyne is a fast food restaurant that is not child friendly and is in the price range of more than 30 . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : no | near : Express by Holiday Inn||Fitzbillies near the Express by Holiday Inn average food with a price point of less than £ 20 per meal , Sorry no children allowed . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge offers solid , standard British fare for those on a moderate budget . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kid friendly pub near The Portland Arms that serves English food . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House serves English food near Clare Hall in riverside . It has a high price range . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||If you 're looking for some kid friendly pub food near Ranch , then you could try The Cricketers , however , it has a low customer rating of 1 out of 5 . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||In the riverside area there is a cheap , family friendly , English restaurant named Alimentum . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop selling Indian food in the centre of the city . It is child friendly and has a high customer rating , with meal prices ranging between £ 20- £ 25 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||A Japanese eating establishment near to the Express by Holiday Inn is The Rice Boat . They are not children friendly have a low customer rating and their prices range more than £ 30 . However , they are in the city centre . \nname : The Golden Palace | Type : restaurant | price : high||For a more costly restaurant try The Golden Palace . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is an Indian restaurant in the moderate price range with customer rating of 3 out of 5 , in the city centre but is not kids friendly . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is a high - priced restaurant next to Clare Hall that serves Sushi . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||For Fast food there is The Wrestlers . It is not child friendly and prices are high . Customer rating are low , 1 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||There is a child friendly place called Fitzbillies that is near the Express by Holiday Inn . They have high ratings and their price ranges over 30 . \nname : Cotto | food : Chinese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly Chinese restaurant near Ranch with a low customer rating . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a highly recommended family - friendly French restaurant in Luton serving budget food . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant near Express by Holiday Inn in the city centre . It is not kid friendly , has a moderate price range , and a low customer rating of 1 out of 5 . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice has a price range of more than £ 30 , it is by the riverside . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a high end coffee shop in the city centre of Avalon customers rate it 3 out of 5 as it isn 't children friendly \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||A child friendly coffee shop is Zizzi , located in the city centre . They have a 5 out of 5 customer rating , and are in the price range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop with average customer ratings that serves fast food . It is an above average price coffee shop and it is in riverside near Burger King . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is a medium - priced restaurant in the city centre . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Zizzi offers coffee shop for family - friendly with cheap price in city centre . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap , family friendly , coffee shop with a perfect rating near riverside named Zizzi . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||A fast food coffee shop with a 5 out of 5 rating is Aromi . It 's located in Riverside . It 's not family - friendly . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , the Indian restaurant in the city centre near Yippee Noodle Bar , has a high price range and a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||If you are in riverside near The Portland Arms and looking for French cuisine , stop at Cotto . This coffee shop has been rated 3 out of 5 , and typical meals cost £ 20 - 25 . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : no | near : Café Rouge||The Plough is an Indian pub located near Café Rouge where prices are high and children are not welcomed . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove pub providing Indian food in good price .Price range less than £ 20 per dish . It is located in the city centre .Nice to see all family . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers French coffee shop is children friendly , and can be found in the riverside area near Raja Indian Cuisine . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has an average price range with high customer ratings . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||Good value meals at the Wildwood pub . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is cheap , is family friendly and has a customer rating of 5 out of 5 . \nname : The Vaults | food : Chinese | price : moderate | family friendly : no||For moderate rated Chinese food , try The Vaults . Not child friendly . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||With a price range of £ 20 - 25 , offering French food , near Clare Hall is Bibimbap House in the riverside area . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a great coffee shop located near Café Sicilia . The price range is high and the location is child friendly . You will find it in the riverside area . \nname : The Rice Boat | food : Fast food | area : city centre||The Rice Boat is a Fast Food restaurant located in the City Centre . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman is a pub North of City centre . It serves fast food style meals . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||There is a kids - friendly , French restaurant named Loch Fyne . The price range is twenty to twenty - five pounds . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults , near Café Brazil is a high - priced coffee shop in riverside with a 3 out of 5 rating . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House is a Fast food restaurant near Café Rouge . It has a low customer rating . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is moderately priced located in the center of the city near Café Adriatic . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a fast food place that received 3 out of 5 stars . It cost between 20 and 25 pounds to eat there . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The restaurant is called The Golden Curry . It serves Italian food and yes , it is kid - friendly . It has a high customer rating . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers is not a family - friendly pub near Ranch , that has low customer ratings . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a French restaurant near The Rice Boat in riverside with a customer rating of 3 out of 5 . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man and All Bar One is a full service restaurant located north of the City center . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a five - star coffee shop in the high price range . It is located near Café Brazil . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a five star establishment that serves fast food . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a children friendly , coffee shop in the riverside area called Aromi which serves French food . Customer rating 3 out of 5 . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Located near riverside , The Waterman is an Indian restaurant . Highly rated , the price range is between £ 20 - 25 per person . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The family - friendly restaurant called The Rice Boat serves Indian food with a 5 out of 5 rating . It is next to riverside . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is average . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||At The Twenty Two we offer a 1 out of 5 customer rating pub . You can find us in the riverside area near Café Sicilia . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is by the riverside and is kid friendly . Its prices range from 20 - 25 and it has a high customer rating . \nname : The Punter | food : French | price : moderate||The Punter restaurant is on the less expensive end . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||An area in riverside has a high price range with an average customer service rating . It is a coffee shop near The Portland Arms that serves Italian food and goes by Cotto . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café and offers Indian food costing more than 30 . It has a high customer rating but is not child friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Families are welcome to dine on good Italian food for a fair price at Cocum coffee shop . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||A family pub called the Giraffe is located in the riverside , serves Chinese food , and is family friendly . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Come by the river to The Waterman for a family friendly meal of cheese , wine , and fruit . \nname : The Vaults | food : English | price : moderate | family friendly : yes||Average priced , The Vaults serves British food suitable for the whole family . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum is coffee shop offering Indian food at a moderate price range . With an average rating , it is not ideal for children . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge , Not family - friendly , is a fast food place located near The Sorrento in the city centre . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne is a Japanese restaurant providing children Friendly food price ranged more than £ 30 . \nname : The Vaults | Type : restaurant | food : Japanese||The Vaults is a restaurant serving Japanese food . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||Strada is a cheap French pub restaurant located near Yippee Noodle Bar , but the ratings are low . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||A mid prices venue with a high customer rating that is kid friendly is Strada . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a medium priced Indian coffee shop located in riverside near Burger King . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a cheap , family - friendly Italian restaurant which is not rated highly by customers . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub providing French food near Café Brazil , in the higher price range . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||A centrally located coffee shop called The Eagle has Indian food in the price range of 20 - 25 pounds . They are not family friendly . They can be found near Burger King . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||There is a Chinese restaurant called Loch Fyne with 5 out of 5 customer rating located in the riverside area near The Rice Boat . \nname : The Punter | food : Italian | price : £ 20 - 25||The Punter serves Italian food with a price range of £ 20 - 25 . \nname : Blue Spice | food : Italian | price : moderate | area : city centre||Blue Spice is a mid - range restaurant serving Italian food in Luton . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Located on the riverside , family friendly restaurant The Rice Boat scores 3 out of 5 stars . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a high priced coffee shop in the riverside area near Burger King . It serves Japanese food and is not child friendly but has a customer rating of 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap restaurant Zizzi coffee shop located in the centre of the city close to a water way for families to meet \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Highly rated inexpensive Japanese food at The Waterman in the city centre is for adults only \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is coffee shop with a service of Fast food in the city centre very close of Burger King \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman located on the north city of city center is a cheap affordable Japanese restaurant that allows carryout . If family dining is what you seek , this is not it . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||There is a fairly expensive dine in family restaurant called Loch Fyne . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman serves Japanese food in riverside . The food is in the cheap price range , and customers rate it a 5 out of 5 despite the unfriendly family environment . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , Is not a family - friendly environment . We provide quality Italian food . We are located near Café Rouge , In the city centre . Customer rating Low . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a poorly rated , moderately expensive family coffee shop near Burger King . It serves fast food . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is an establishment in the city centre serving Italian food at a lower than average price . The Waterman is not child friendly and has a low customer rating . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Moderately priced Browns Cambridge fast food has a 1 out of 5 rating \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a family friendly venue located near Café Sicilia . \nname : The Twenty Two | food : Fast food | family friendly : no||The Twenty Two , offering fast food , is not family - friendly . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto provides Chinese food . It is near Ranch . Its customer rating is 1 out of 5 . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is an Indian restaurant that is child friendly with a low customer rating of 1 out of 5 . It 's located near the Ranch . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||The Phoenix is an Italian food venue in the Riverside area with a high price range and an average customer rating . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is an Italian restaurant that offers good value for money it is situated Near Clare Hall which is close to the city centre . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge has a price range of more than £ 30 , with a customer rating of 5 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||For French food and a family - friendly environment , The Golden Curry is located in the city centre near Café Rouge , but it has a low customer rating . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||The Waterman is an average rated Japanese food place , prices all lower than 20 dollars . Its a family - friendly place located in city center \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove has the best sushi at low - prices , every day . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop with a customer rating of 3 out of 5 , a price range of £ 20 - 25 and is situated near Café Brazil in the riverside area . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a family friendly Italian restaurant by the riverside . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves moderately priced Chinese food and has a customer rating of 3 out of 5 stars . It is in the riverside area , is kid friendly , and is near Express by Holiday Inn . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe , located near the riverside is a children friendly pub that sells Indian food . \nname : The Punter | food : Italian | price : high||Noodle dishes are served at The Punter , a more expensive place to eat . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||If you are looking for a children friendly English restaurant , The Golden Curry has a high price range and is located near The Bakers . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man offers expensive Indian food in city centre , near All Bar One . It is kid friendly . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||The Eagle is highly rated , expensive restaurant in the riverside area . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is an English food place that is high priced and child friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a coffee shop located out side the city center . call Fitzbillies . It is in the high price range . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults is an inexpensive takeaway , serving fast food in Cambridge \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a low priced restaurant in the city . \nname : The Phoenix | food : Chinese | customer rating : low | area : riverside||The Phoenix is a Chinese restaurant located in the riverside area . It has low customer ratings . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||A pub in riverside with an average rating is Clowns . It is has a high price - range . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||There is a high - priced , three star restaurant located near All Bar One names Midsummer House . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies is a affordable sushi restaurant location in The Six Bells . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : yes||Giraffe is a family friendly Chinese pub in the city Centre . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman serves Indian food in the £ 20- £ 25 price range and has a high customer rating . It is located in the city centre and is kid friendly \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is Pub Riverside It offers drinks at a low price \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a kids friendly English restaurant . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two is a children friendly restaurant along the riverside . The Twenty Two serves Chinese food . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : yes | near : Café Rouge||There is a child friendly pub called The Plough that serves Chinese food . It 's near Café Rouge but it 's price range is little high . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||The Wrestlers offers expensive Japanese food but has a low rating and is not child friendly . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough Japanese Café Rouge pub £ 20 - 25 yes \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is rated five stars , low priced , and family oriented . It is located near the Rainbow Vegetarian Café and serves fine food and drinks . \nname : Green Man | Type : pub | food : Chinese | area : riverside | near : Café Rouge||Green Man is a pub that provides Chinese food in the riverside area near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||A moderate price range Indian coffee shop called The Eagle is near Burger King in riverside . It has a poor customer rating and is not kid friendly . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Fast food restaurant near the Rainbow Vegetarian Café which has a moderate customer rating of 1 out of 5 for a non Kids friendly restaurant \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Costing less than £ 20 , Loch Fyne is a family friendly French restaurant . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop located near Café Sicilia serving Indian food called The Punter . It is in the high price range and is children - friendly . It has a low customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a child friendly coffee shop situated near Café Sicilia . They serve French food at a price range of over £ 30 and have a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill , a coffee shop , serves Indian food in the £ 20 - 25 price range . It is located riverside near The Sorrento . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in Express by Holiday Inn is a 5 stars place where family can taste great food . it is located in the city centre . \nname : Fitzbillies | food : Indian | price : less than £ 20 | near : The Six Bells||Located near The Six Bells is a cheap Indian restaurant called Fitzbillies . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : yes||Loch Fyne is a restaurant providing Chinese food in the moderate price range . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Midsummer House is a high priced , three star restaurant located near All Bar One . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : no||Loch Fyne is a restaurant that provides French food with the price range of more than £ 30 . It is not children friendly . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice serves English food for less than £ 20 in riverside . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry is a French setting , but is not family - friendly and has a low customer rating . \nname : The Vaults | food : Chinese | price : moderate | family friendly : no||For a night out without kids , try The Vaults . They serve moderate rated Chinese food . \nname : The Twenty Two | Type : pub | customer rating : average | area : city centre | near : Café Sicilia||The Twenty Two is a pub located within the Café Sicilia . It is average rated and situated within the city centre . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||A restaurant providing French food in the high price range that customers have rated average is called Browns Cambridge . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||bacon eggs and beans at this 1 star eatery near the river The Waterman is family friendly . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||Not family - friendly , The Golden Curry is a low rated English restaurant . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a three star , expensive , coffee shop located near the river . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a Chinese food restaurant with a price range of less than £ 20 that is low rated and not family friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove restaurant is a mid - priced pub . We are also near the city centre . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a small French coffee shop located in the city centre , near The Sorrento . All prices are less than £ 20 . \nname : The Vaults | food : French | price : moderate | family friendly : no||The Vaults restaurant serves food and is not family friendly . They have a moderate price range . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||A place that serves Japanese food is The Wrestlers . With a customer rating of 3 out of 5 , the price range is high and it 's not child - friendly . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two has a customer rating of 1 out of 5 and is near The Rice Boat in the city centre it offers moderate prices . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a low - priced restaurant near of the Café Sicilia . You can go with your whole family . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Enjoy a family dinner at The Olive Grove in Riverside . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||There is a 3 - star coffee shop called Clowns located near Clare Hall . \nname : The Waterman | price : high | family friendly : yes||A high priced , child friendly restaurant is The Waterman . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a cheap restaurant called The Rice Boat that serves Indian food that is located in riverside near Express by Holiday Inn . This restaurant is not family friendly and has an average customer rating . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Japanese food on the riverside near The Rice Boat with a customer rating of 5 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||A few steps of the Café Rouge , there is a restaurant called Wildwood with with negative feedback from its customers . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue ' is a pub that serves wines and cheeses at very high prices . It is located near Café Brazil . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre is a French coffee shop . It 's called Browns Cambridge . It 's rated 5 out of 5 and is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a coffee shop where you can buy Fast food in the riverside area . It is called Fitzbillies . It is kid friendly but has a low customer rating . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Rainbow Vegetarian Café for all families in Cambridge that welcomes all families \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill it is Café shop which is next to The Sorrento , their prices are low \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a not family - friendly , place with cheap and English food . Customers rate it average and it is close to the Rainbow Vegetarian Café \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia it 's found a 5of5 class coffee shop , is called The Punter , serves serves cheap food \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia , The Punter is a high - priced coffee shop serving Fast food . It has an average customer rating , but it 's child friendly . \nname : Alimentum | food : English | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||English food served at Alimentum which is located in the city centre near Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle a restaurant that is Japanese , kid friendly has a coffee shop , with a customer rating of 3 out of 5 , price range of 20 to 25 pounds in Riverside near Burger King . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House rated 1 out of 5 by the customers , serves Italian food near the Café Rouge . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Situated in the city centre near Express by Holiday Inn is a Chinese called The Rice Boat . It isn 't family friendly but serves cheap food and has a 5 out of 5 customer rating . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry serves Indian food . It has a customer rating of 3 out of 5 and is kid - friendly . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||Riverside area near Café Sicilia is the , The Dumpling Tree a child friendly coffee shop . Above average prices . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Cocum , a children friendly pub , has high prices and the customer ratings are average . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop offering fast food at moderate prices . Located near the riverside Burger King it has a low customer rating and does not welcome children . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||A non family - friendly restaurant with less than £ 20 prices would be The Wrestlers . It average a low customer rating . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is an Indian restaurant located near Rainbow Vegetarian Café called Strada . It is not kid friendly , moderate priced and received a 1 out 5 customer rating . \nname : The Twenty Two | food : French | family friendly : yes||For children friendly French food , go to The Twenty Two . \nname : The Golden Curry | food : Fast food | customer rating : high | family friendly : yes||The Golden Curry is a kids - friendly place offers fast food . It has received high ratings from customers . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Children - friendly pub , Zizzi provides Indian food , and maintains an average customer rating . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The riverside Italian restaurant The Rice Boat is a family friendly restaurant conveniently located near the Express by Holiday Inn . The restaurant is rated 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly Japanese coffee shop in Riverside with an average rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop with a low customer rating and is not family - friendly . It is at riverside and located near Crowne Plaza Hotel . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||The Dumpling Tree is a restaurant with a low price range and they serve English food . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||When looking for a Pub near Café Rouge , The Plough is high end and is child friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop , located in the area of Riverside . The price range for eat in The Golden Palace is £ 20- £ 25 . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a high - priced , and average rated and children friendly , serving Chinese food in the city center . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||1 out of 5 in customer rating , Browns Cambridge has moderate prices for their food . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a riverside British restaurant . It is not family friendly , and has one star , but is cheap . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||Low priced restaurant The Phoenix is near the river and delivers take out . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||The Blue Spice coffee shop close to Avalon near the city centre offers a customer review of 5 out of 5 and a price list of more than £ 30 , welcomes families . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers offers good value for money meals for all the family , situated in the city centre close to all amenities \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Next to The Six Bells is Fitzbillies restaurant . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant serving a high - priced English menu . It is located in the riverside area near Yippee Noodle Bar and is rated 1 out of 5 by customers . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||Loch Fyne is a cheap fast food restaurant in the city . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a children friendly coffee shop which serves Japanese food , and is located near the Crown Plaza Hotel by the riverside . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||There is a high customer Rating family friendly pub called Aromi located at the riverside . \nname : The Twenty Two | food : Fast food | family friendly : yes||Yes it is children friendly . The Twenty Two is a Fast food joint . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no||There is pub grub at The Olive Grove pub at moderate prices located in the riverside adults only \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crown Plaza Hotel their is a coffee shop that is family friendly serving Italian food along the riverside named Taste of Cambridge . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : no||Green Man is adult - only located in riverside with prices starting at £ 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a French coffee shop in Riverside with a moderate price range . It has a low customer rating and is kid - friendly . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||An expensive pub called Clowns is located in Riverside and has an average customer rating . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||An affordable restaurant for adults near The Bakers is The Plough . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies is a restaurant with prices ranging more than £ 30 . It is located near Rainbow Vegetarian Café . \nname : The Punter | food : Chinese | price : cheap||The Punter , offers Chinese food , within a cheap price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an expensive Japanese coffee shop in the riverside area near Burger King that is not child friendly . It has a customer rating of 3 out of 5 . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly English restaurant that is near the area of riverside . Alimentum has a price range of less than £ 20 . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kids friendly Japanese restaurant located near the Crowne Plaza Hotel . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers serves cheap French food in an adult environment and has received low customer ratings . \nname : The Punter | food : Chinese | price : high||For Chinese food in the high priced range you can go to The Punter . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||There is a place located near The Rice Boat in the riverside area that has a moderate price range , a low customer rating and is non kid friendly named The Twenty Two . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar you will see along the riverside a restaurant named Alimentum . This restaurant serves Fast food at a customer rating of average . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a low rated , family friendly , coffee shop that sells fast food near the Crown Plaza Hotel by the riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Riverside has a child friendly quick service coffee shop called The Eagle . It has a average customer rating and is in the high price range . It is located near Burger King . \nname : The Punter | food : Indian | price : more than £ 30||the Indian restaurant called The Punter has a price range of more than 20 pounds \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||A one star Japanese restaurant , The Golden Curry is located near the Café Rouge in the riverside area . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman Is a restaurant location where they serve Indian food and its located in the centre of the city . It is not children friendly and their customer rating is average \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a one star venue that offers medium prices . It can be found north of the City centre and next to the Yippee Noodle Bar . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||The Rice Boat , a fast food restaurant , has been given a rating of one star . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is family friendly and serves fast food . It is riverside near The Sorrento . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant that has high customer ratings located near the Express by Holiday Inn in Riverside . It is child friendly and is more than 30 euro 's . \nname : Bibimbap House | food : Fast food | price : more than £ 30 | area : riverside | near : Clare Hall||Near Clare Hall in Riverside is a Fast food place with an above £ 30 price range named Bibimbap House \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a pub having customer rating of 5 out of 5 sells French food in a price range of more than £ 30 . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||there is a good place called The Golden Curry for Italian food \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn in riverside , is a moderately priced English restaurant catering for adults . It has a low customer rating . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : riverside||The Phoenix is located by the riverside , it is in the cheap price range and has an average customer rating . It sells Indian food . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||The Giraffe is a family friendly coffee shop located near The Bakers . They have a high price range and a customer rating of 1 out of 5 . \nname : Fitzbillies | food : Japanese | price : high | near : The Six Bells||Located near The Six Bells is Fitzbillies , they offer high priced Japanese cuisine . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop offering Japanese food . It is not family - friendly . It is located near Crowne Plaza Hotel in the city centre . The customer rating is low . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge near The Sorrento in the riverside area is a family - Friendly restaurant that serves French food . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies is a high priced establishment near Rainbow Vegetarian Café . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman on the riverside is a family friendly mid priced Chinese restaurant with a low customer rating . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a Indian coffee shop in the high price range with a rating of 1 out of 5 \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant in the moderate price range with a 1 out of 5 customer rating . Located in Riverside near Yippee Noodle Bar , \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : no | near : Café Rouge||The Plough pub offers English food and a moderate price range . It is not kid friendly and is located near Café Rouge . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||Italian family restaurant The Twenty Two is located in the riverside area . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe is a pub that sells Chinese food . It 's located in the riverside and is family friendly \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a non family - friendly coffee shop and fast food shop in the riverside area of the town near the Crowne Plaza Hotel with an average customer rating \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||In riverside , near The Rice Boat , there is a kid friendly , highly rated restaurant called The Twenty Two . Prices range £ 20 - 25 . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada It is not for the whole family , rated 1 star , their prices are cheap , It is next to Rainbow Vegetarian Café \nname : Wildwood | Type : pub | food : Indian | price : less than £ 20 | customer rating : low||Pub and Indian food , Wildwood , has a price range of less than £ 20 with a low customer rating . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||The restaurant Aromi , located in Riverside , serves Japanese food . \nname : The Eagle | food : Fast food | customer rating : 1 out of 5||You can try The Eagle if you want fast food . Scored 1 out of 5 by previous customers . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||This coffee shop is in the city centre area serves Japanese food and is names The Golden Palace . its price range is high and the customer rating is 3 out of 5 . \nname : Cotto | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto serves Indian food near Ranch . It has a customer rating of 3 out of 5 and is kid - friendly . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns costs more than £ 30 and is located near Café Sicilia . Yes it is children friendly . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a French restaurant located in the city centre area . It is not family - friendly . Cheap price range . Customer rating 5 out 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||Near the Burger King in the city centre , there is a cheap , non - family - friendly Fast food and coffee shop named The Eagle . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near Crowne Plaza Hotel is a friendly Italian restaurant \nname : The Phoenix | food : Chinese | customer rating : average | area : city centre||The Phoenix is providing Chinese food in the price range . It is located in the city centre . Its customer rating is average . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum serves Japanese food with prices ranging from £ 20 - 25 . They are located near Yippee Noodle Bar in the city center . They have a rating of 3 out of 5 . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||Strada is a fast food pub near Yippee Noodle Bar with a high customer rating . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman serves Indian food for less than £ 20 with a low customer rating in the riverside area . It is family friendly . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Located near Yippee Noodle Bar , Alimentum is a fast food restaurant that has a low price range and has received average reviews . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves fast food at a higher than average price . It is family friendly , and located near the Rainbow Vegetarian Café . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Browns Cambridge is a low priced Japanese restaurant with a three star rating in the city centre . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||In the middle of the city there is a low price family friendly pub located beside Café Rouge called The Plough . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is an average , inexpensive , kid friendly place near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a family friendly one star coffee shop called The Cricketers . \nname : The Cambridge Blue | Type : pub | food : English | price : more than £ 30 | near : Café Brazil||There is a pub near the Café Brazil called The Cambridge Blue . It sells English food for £ 32 . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a Japanese restaurant that is located in Riverside . The restaurant is children friendly and is in the general price range of more than £ 30 . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Near Café Sicilia is a non family friendly , average priced restaurant named Clowns . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||French food serving The Wrestlers coffee shop can be found near Raja Indian Cuisine in the city centre . It is not a kids friendly coffee shop . The prices are moderate . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||The Cotto serves French food in the £ 20 - 25 price range . It has a coffee shop style and has a customer rating of 3 out of 5 . This is within the riverside area , near The Portland Arms . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is close by the All Bar One . It 's really cheap and very good . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||Strada is a restaurant that has a customer rating of 5 out of 5 . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is a French restaurant that is suitable for families . It has food that is considered to be in the low price range . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||High - priced , but poor quality sushi is served at Wildwood pub . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is an Italian pub that 's child - friendly , but the customer rating is just average . \nname : The Rice Boat | food : French | area : city centre||For French food , there is The Rice Boat in the city centre . \nname : The Eagle | food : French | customer rating : low||The Eagle , which serves French food , has a low customer rating . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms in the city centre , there is a French coffee shop named Cotto . It is in the moderate price range and has a 1 out of 5 customer rating . \nname : Aromi | Type : restaurant | food : Italian | area : city centre||In the city centre area an Italian restaurant is called Aromi . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace offers Japanese food with a price range fro £ 20- £ 25 . This coffee shop is located in the city center and has a rating of 3 out of 5 . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||If you want to try something special , join friends for an afternoon tea at Browns Cambridge , 23 Trumpington St , then follow with an optional glass of Mercie . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you 're looking for a moderately - rated , moderately - priced , kid friendly Italian restaurant , check out The Rice Boat , in the riverside area , near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : yes||There is a moderately priced Indian restaurant that is kids friendly called Loch Fyne \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a moderately - priced pub located near that river that is family friendly . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House serves Italian food at a high price . It is located near All Bar One . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge is high priced English food , that is average customer rated . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||An inexpensive coffee shop called Wildwood is located near Ranch and serves burgers and fries . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||Located on the river , The Olive Grove caters for adults in a child - free environment \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice serves fast food and is moderately priced . It is located near riverside . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , an Italian coffee show near Crowne Plaza Hotel in the city centre , if not family - friendly and has average customer ratings . \nname : The Cambridge Blue | Type : pub | food : Indian | price : high | near : Café Brazil||Near Café Brazil is a pub that serves expensive Indian food , called The Cambridge Blue . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes||The city centre 's Fast food and coffee shop Aromi is an average - rated , family - friendly food . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||An expensive restaurant called Taste of Cambridge has a customer rating of 3 out of 5 . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a moderate price range , located near Rainbow Vegetarian Café it has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn is a high priced restaurant called The Rice Boat . This restaurant is child - friendly and serves English food . Customer rating is 1 out of 5 . \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||Rated 3 out of 5 , Zizzi is a French pub which is child friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly restaurant by the riverside in the City centre with a low price range . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House serves low priced Italian food . It is located near All Bar One and has a high rating of 5 out of 5 . \nname : Blue Spice | food : English | price : less than £ 20 | area : city centre||Blue Spice is a cheap English food place in the city center . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||If you are looking for Japanese food , Browns Cambridge has an average customer rating with food priced £ 20 and less . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly and it has a medium price range . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||In the riverside area is a average family - Friendly French coffee shop named Aromi \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Near Yippee Noodle Bar , there 's a fast food pub called Strada that has an average customer rating . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||The non- kid friendly Japanese restaurant Green Man , is a moderate dining experience located in riverside near All Bar One . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||In the city centre near Burger King , there is an Italian coffee shop called The Eagle . It is not family - friendly and has a low customer rating and a price range of less than £ 20 . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a low price English food restaurant by the riverside called The Waterman , with a family ambient and a customer 5 out of 5 rating . \nname : The Punter | food : Indian | price : moderate||The Indian restaurant The Punter serves moderately priced food . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree is a restaurant serving pasta dishes . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies is located near The Six Bells and offers Japanese with a price range more than £ 30 . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle located near riverside is fairly cheap . They have a customer rating of 3 out of 5 . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a moderate priced restaurant near The Six Bells \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||A pub known as The Mill offers food ranging from £ 20 or less . It serves French food and is stationed near the riverside area . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix fast food restaurant serves meals in the high price range in the city centre . It has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese food restaurant that gets a 5 out of 5 rating . It is located in the city centre near Café Rouge and is not family friendly . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a French food with a customer rating of 3 out of 5 is available in a pub near Yippee Noodle Bar . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||Clowns is a pub at riverside has a high price range and is rated 3 out of 5 \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter in the store also sold coffee and fast food still good value for the family . It is located next to Café Sicilia . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is cheap , family friendly coffee shop near Burger King called The Eagle . It has a one - star rating . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||There is a cheap Japanese restaurant , The Phoenix in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a fast food coffee shop with a customer rating 1 out of 5 , but it 's kids friendly . It 's in the riverside area near Crown Plaza Hotel \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Cheap , customer rated 5 out of 5 , coffee shop called Fitzbillies is not family - friendly place , serving French food in riverside area . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high - end Indian dining experience located near Rainbow Vegetarian Café . It has an average rating and children are welcome diners . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Located in the riverside area near The Portland Arms the coffee shop Cotto offers a Japanese menu on the cheap with a customer rating of 5 out 5 \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Blue Spice serves Japanese food in the mid price range . It is located riverside . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||There is a low rated Asian pub that is open tall ages , called The Zizzi pub \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a low rated , child - friendly restaurant . \nname : Blue Spice | food : Italian | price : high | area : riverside||In the riverside area there is a high price range Italian restaurant named Blue Spice . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||A family friendly coffee shop , Zizzi is cheap with an average customer rating in riverside . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a children - friendly coffee shop that serves Japanese style cuisine . It is located near The Portland Arms but the customer ratings are low . \nname : Wildwood | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop that is located near a Ranch . It serves Indian and its prices are less than £ 20 . However , customer ratings are low . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman , located near the river , is a family friendly Italian restaurant . It has a low price range and has received average reviews . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a French place called Alimentum with French food with a rating of 3 out of 5 . The price is between 20 - 25 pounds and can be found in riverside near Yippe Noodle Bar . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||The Mill is a Pub serving fast food for less than £ 20 on the riverside . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap fast food restaurant Strada located near Rainbow Vegetarian Café . It has excellent customer ratings . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A coffee shop with fast food , near Raja Indian Cuisine on the riverside is family friendly and less than 20 euros is known as , The Wrestlers . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : city centre||In the city centre there is a pub called The Mill that sells Indian food at a cheap price . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||A family friendly restaurant thats serves high quality breakfast food is The Wrestlers and it has above average pricing . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : city centre | family friendly : no||Located in the city centre , The Olive Grove is a not family - friendly pub specializing in French food costing less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an adult Japanese coffee shop in riverside near Raja Indian Cuisine with price range more than £ 30 \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is rated 3 out of 5 . It 's a child - friendly Japanese restaurant on the river . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop near Clare Hall serving French food . They are in the city centre and have a rating of 5 out of 5 . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Strada is a three out of five star pub that is located near Yippee Noodle Bar . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||by the river up from the Express by Holiday Inn The Rice Boat a 1 star family friendly eatery . \nname : Alimentum | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is children friendly . They serve Fast food . They are near the area of riverside . The prices are cheap . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub providing Indian food with a high price range . It 's located at the Riverside and is child friendly . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : no | near : Café Rouge||The Plough is an adult venue near Café Rouge . It offers fast pub style food with a higher price range . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop that serves French food near the city centre . Ratings are average , and it is not family - friendly . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a fast food which caters for families and is situated in the city centre . The price for a meal is under £ 20.00 \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | near : Clare Hall||In the city centre near Clare Hall , Clowns is a fast food coffee shop with an average customer rating . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : city centre||The Phoenix features English food in the city centre with a customer rating of 5 out of 5 . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn is a family - friendly restaurant Fitzbillies . With a good rating they offer cheap food . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : moderate||The Dumpling Tree is an Indian food restaurant with a moderate price \nname : Fitzbillies | food : Italian | price : more than £ 30 | near : The Six Bells||Fitzbillies is our new Italian venue , located near The Six Bells and with a price range of more than 30 . Treat yourself to this delicious restaurant . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns pub offers cheap food in the riverside area . it has been given an average rating by previous customers . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A kid friendly restaurant called The Waterman serves Japanese food . It is located near the city centre . It is moderately priced with a customer rating of 1 out of 5 . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a fast food restaurant with a price range of £ 20 - 25 near The Six Bells . \nname : The Rice Boat | food : French | area : riverside||In the riverside area is The Rice Boat serving French cuisine . \nname : Strada | Type : restaurant | customer rating : high||Strada is a restaurant with good reviews . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is family friendly with an average customer rating for less than £ 20 \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The poorly rated coffee shop , Browns Cambridge , serves Italian food and offers a family - friendly environment . They are located in the city centre near the Crowne Plaza Hotel . \nname : Blue Spice | food : Indian | price : £ 20 - 25 | area : riverside||An Indian restaurant called Blue Spice is located riverside with a price range of £ 20 - 25 . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat is rating low , a restaurant of food located in riverside \nname : Blue Spice | price : less than £ 20 | area : riverside||If you want to spend less than £ 20 , there is Blue Spice in the Riverside area . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is an Italian restaurant located by the river . It has great reviews with a five star rating . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||There 's a Japanese pub named Giraffe near riverside . It 's kid - friendly . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||In riverside area you can find the family friendly Zizzi coffee shop . Cheap prices and average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The 5 star coffee shop and sushi restaurant combo Browns Cambridge is also family friendly . It is beside the Crowne Plaza Hotel below the river . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace , located in the centre of the city , is a 3 - star coffee shop . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||You can find The Twenty Two , which is adults only , near The Rice Boat with a low customer rating but moderately priced . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a low price coffee shop that serves fast food and caters to families . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is a Italian restaurant that is located in riverside . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a Japanese restaurant and is family friendly . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : city centre||The Waterman is a pub in the city centre with an average customer rating that serves Chinese food . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||The highly rated Cocum coffee shop serves Indian food at the higher price point . It is not child friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree price range is less than £ 20 its a cheap French restaurant . \nname : The Twenty Two | food : English | area : city centre | family friendly : no||In the city centre , you will find The Twenty Two restaurant . This restaurant serves English food in an adults only atmosphere . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a child friendly , expensive French coffee shop with low customer ratings . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee shop located in the riverside area . it is kid friendly and moderately priced . Customers give it a 3 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry provides Italian food . It has a low customer rating and is not family - friendly . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies around the corner near Rainbow Vegetarian Café has a pricey menu averaging £ 30 \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Kid friendly Chinese food can be found near the Express by Holiday Inn in riverside at The Rice Boat . It is rated 1 out of 5 and moderately priced . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice has a price range of more than £ 30 . It is by the riverside . \nname : Midsummer House | food : Indian | customer rating : average | near : Café Rouge||Midsummer House is an Indian food restaurant with an average customer rating , located near Café Rouge \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is an Italian coffee shop in the middle price range . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||There is a pub in riverside , Called Clowns , Its price is pretty high , and customer 's give it a 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||A 1 out of 5 rated , moderately priced French coffee shop named Fitzbillies serves the riverside area and is not kid friendly . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||For Fast food , in a child free environment , try Zizzi , may not meet everyone 's expectations \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||There is a medium - priced pub The Mill serving fast food located near the river . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a cheap coffee shop located in City Centre near Ranch . 1 out of 5 customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||There is a one star restaurant called The Cambridge Blue . \nname : Strada | Type : pub | food : English | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a pub offering English food located near Yippee Noodle Bar . Customer stars 3 out of 5 \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap restaurant located at the end of the city that is family friendly . \nname : The Mill | Type : pub | food : Indian | price : more than £ 30 | area : riverside||There is a reasonably priced pub type restaurant that serves Indian food in Riverside , The Mill . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||The City Centre has a low rated , non family friendly restaurant named Aromi . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is a Chinese restaurant with a high price range , and a average customer rating . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A kid friendly fast food restaurant in a moderate price range with a 1 out of 5 customer rating is The Wrestlers . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is situated near Café Rouge and is near the riverside . It is not family friendly and has a customer rating of 5 out of 5 . It sells Chinese food . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue is a moderate priced fast food pub near Café Brazil . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a moderately priced , kid friendly coffee shop near The Bakers with a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop that also provides delicious fast food . \nname : The Punter | food : Italian | price : moderate||The Punter serves Italian food and has a moderate price range . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Near the riverside near The Portland Arms is The Cotto coffee shop . It serves Japanese food . Price range of food is less than 20 . It has low customer ratings . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||A low rated Italian eatery located in the city centre is The Waterman is a family - friendly , average priced eatery . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||A restaurant named The Dumpling Tree serves English food with a high price range . \nname : The Olive Grove | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub in the more than £ 30 price range . They are child friendly and serve English food there and are located near the riverside . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||There is a kids friendly Indian restaurant near the Crowne Plaza Hotel named The Waterman . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||An exclusive adults only Indian cuisine coffee shop called Fitzbillies . We are fairly priced and located in the city centre . We are proud of our rating of 3 out of 5 . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a fast food restaurant near the Rainbow Vegetarian Café . It is in the low price bracket and not family friendly . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a kids Friendly pub that serves Indian food , with moderate price Range , near Café Rouge . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House serves English Food and is situated near Café Rouge \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Fast food restaurant located at the city centre near the Express by Holiday Inn . This highly rated establishment offers a children - free atmosphere and is priced more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside||The Golden Palace is an Indian coffee shop it is cheap and average ratings . its on the riverside . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in riverside serves fast food . Prices are in the high range while customers have rated it a 1 out of 5 . The Rice Boat is not child friendly . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a 5 - star restaurant providing English breakfast in the high price range . It is located at the north of city centre beside Yippee Noodle Bar . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||A highly - rated place selling Indian food in the city centre is The Waterman . With a high customer rating , The Waterman is kids friendly and good for families , It has a price range of £ 20 to £ 25 and can be found in the city centre . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves high price range Indian food . It is located at the riverside near The Portland Arms and has a customer rating of 1 out of 5 . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||There is a moderate priced Italian place called the Midsummer House . It has a 3 out of 5 rating . It is near the All Bar One . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : city centre | near : Clare Hall||Clowns is located at city centre , near Clare Hall . It 's a coffee shop with average ratings , offering French food . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : yes||The Rice Boat serves French food . It is family - friendly , has an average restaurant rating , and is located in the city centre . \nname : The Twenty Two | food : Italian | family friendly : no||The Twenty Two is a non family - friendly restaurant that serves Italian food . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater down the riverside near Café Adriatic has a high customer rating caused also by the average price range . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is located near The Rice Boat on the riverside . It is child friendly , has a high customer rating , and costs more than £ 30 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub offers a child friendly place to enjoy a French style meal . Located by The Portland Arms . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a fast food restaurant in Riverside area near All Bar One which is cheap and family friendly as well . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : no||In the city centre there is a non children - friendly , high priced Italian restaurant named The Olive Grove . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Green Man is a pub in the Riverside area that serves French food . It is located near Café Rouge . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman 's Indian food is inexpensive , but customer provide average ratings for the restaurant located in the city centre perhaps because it is not a family friendly restaurant . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop . Price range is cheap with a customer rating 5 out of 5 . They are not family - friendly . They serve Italian food and there located near Café Sicilia . \nname : The Eagle | food : Indian | customer rating : low||The Eagle provides Indian food Its customer rating is low . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : no||This place named Alimentum sells Italian food in the riverside area with a moderate price range . It 's not kids friendly . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is a family - Friendly venue on the riverside with prices less than £ 20 . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a children friendly restaurant of Indian food near to Crowne Plaza Hotel \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is an Italian restaurant in the Riverside area . It 's moderately priced and has received 3 out of 5 in customer ratings . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||The Mill is a pub restaurant providing Japanese food in the moderate price range . It is located on the riverside . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||A kid friendly pub named Taste of Cambridge is located in the riverside area near The Sorrento . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||Loch Fyne is a restaurant . It is located in riverside area . Not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers near The Portland Arms is a coffee shop rated 1 out of 5 fast food \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Loch Fyne is a family - friendly restaurant with cheap prices that serves English food . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree pub is serving up Fast food and would not be considered family - friendly . \nname : The Vaults | food : Japanese | price : cheap | family friendly : yes||With great prices and a friendly atmosphere , The Vaults is a great family friendly place serving great Japanese food at low prices . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a medium priced restaurant located in City Centre near All Bar One . 3 out of 5 customer rating . \nname : The Golden Curry | food : Chinese | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly Chinese food place . It is located near The Bakers and has a cheap price range . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House serves high price range Italian food . It is located near All Bar One . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||In the Riverside area with high price range and an average customer review , The Rice Boat offers fast food near Express by Holiday Inn . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||In the riverside area , Bibimbap House , located near The Rice Boat , provides Fast food to its customers . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a customer rating of 3 out of 5 this riverside coffee shop is both child friendly and good value for money , ranging from £ 20- £ 25 serving Japanese food at Fitzbillies . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a Japanese food restaurant located in the city centre ; at a customer rating of 3 out of 5 it has a high price range and is not children friendly . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||With a high price range for Chinese food , the Alimentum only has a customer rating of 1 out of 5 . They are located in the city centre area , near Yippee Noodle Bar . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a great coffee shop that has high prices ranging from £ 20 - 25 . Yes , if your looking for Fast food restaurant then go to the Café Sicilia . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||A restaurant called The Golden Curry serves French food at less than average prices . It is unable to accommodate children . The Bakers is nearby . \nname : Strada | Type : pub | food : Chinese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||The Strada is a pub that serves Chinese food with a rating of 1 out of 5 near Yippee Noodle Bar . \nname : The Golden Curry | food : English | price : more than £ 30 | family friendly : yes | near : The Bakers||The English place The Golden Curry is a children friendly place located near The Bakers . It offers products with an above average price . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kids friendly Japanese coffee shop with a price range of around £ 20 - 25 . It has a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue restaurant with a rating of one out of five stars \nname : The Twenty Two | food : Japanese | family friendly : yes||Yes The Twenty Two Japanese are friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is an inexpensive , family - friendly coffee shop near the river and Burger King . It 's called The Eagle and serves pasta . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Midsummer House has an average rating and serves French food . It 's near Café Rouge . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||The Plough , located next to Café Rouge is a family friendly pub that provides Japanese food . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The English pub The Waterman down the riverside has an average customer rating . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a Chinese restaurant in the city centre near The Sorrento . It is family Friendly . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||The average coffee shop Clowns in riverside is near Clare Hall . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers restaurant located near All Bar One , serves English foods . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove pub is family friendly . The pub offers hamburgers and fries . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is in riverside near All Bar One with a price range less than £ 20 \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly Japanese coffee shop in the city centre near Burger King with a cheap price range and has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near the Express by Holiday Inn in the riverside area , The Rice Boat is a children - friendly Chinese restaurant with high customer ratings where the prices usually exceed £ 30 . \nname : Strada | Type : restaurant | customer rating : average||Strada is a reasonably priced restaurant for the family \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||Our low customer rating shouldn 't stop you from visiting The Eagle . Price range of more than £ 30 , located in the riverside area . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||There is a children friendly coffee shop in the city center area , near Burger King named The Eagle . They have a high customer rating with fast food ranging more the £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing tea and coffee . It is located near Raja Indian Cuisine in the city centre . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : no | near : All Bar One||There is a moderate - priced restaurant Green Man located near All Bar One in the city centre that provides English food with no kids friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||The Dumpling Tree is a mid priced ranged restaurant . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle offers fast food , but has low customer ratings . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a low - priced restaurant in the city centre that delivers take - away . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a Japanese kids friendly place near Ranch rated 3 out of5 . \nname : The Plough | Type : pub | food : Japanese | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub that provides Japanese food with a high price range . It is located near Café Rouge and is children friendly . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderately priced Japanese restaurant located near Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||A coffee shop serving French food called Fitzbillies is kid friendly . It is averagely priced with a customer rating of 3 out of 5 . It is located in city centre . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop by the name of The Wrestlers . Their price range is moderate and they serve Fast Food . They are not kid friendly and they are at the city centre near Raja Indian Cuisine . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||A coffee shop with a high rating is The Eagle . They offer Indian food at higher prices . They do not allow children and they can be found near Burger King . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a child friendly restaurant located near Express by Holiday Inn . \nname : The Plough | Type : pub | food : Chinese | price : cheap | family friendly : yes | near : Café Rouge||Located near Café Rouge , The Plough is an ideal pub for friends and family looking for Chinese food at a cheap price range . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat may have a low customer rating , but they are a family friendly Japanese restaurant located on the riverside . \nname : Bibimbap House | food : French | price : moderate | area : city centre | near : Clare Hall||Bibimbap House , near Clare Hall in the city centre serves French food at a moderate price \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an English restaurant in Riverside near Café Rouge . It is kids friendly and customers give it a 3 out of 5 star rating . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||This family friendly coffee shop offers convenient well priced food . The Cricketers is located near The Portland Arms . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : city centre | near : The Sorrento||The Mill is an Indian coffee shop in the city centre . The price range is moderate and the coffee shop is located near The Sorrento . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Riverside coffee shop called Clowns near Clare Hall has Japanese food with a low customer rating . \nname : The Phoenix | food : Fast food | customer rating : low | area : city centre||The Phoenix which is located in the city is a Fast food restaurant with a low customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is an Italian coffee shop with high customer ratings . The price range is between £ 20 to £ 25 but they are not child friendly . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Families are not catered for at The Wrestlers , but it is cheap \nname : Bibimbap House | food : Chinese | price : cheap | area : riverside | near : Clare Hall||Bibimbap House of Chinese food is cheap , riverside near Clare Hall . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a 5 out of 5 Japanese coffee shop along the riverside that is child friendly called Aromi \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside||Variety abounds at The Golden Palace coffee shop located near the river with higher prices and a three star rating . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a cheap venue that provides Indian food . It has an average customer rating , is not family friendly , and is located in the city centre . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Near the Yippee Noodle Bar is a low rated Japanese pub called Strada \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Giraffe coffee shop is a cheap family friendly place to eat , near to The Bakers . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Located close to The Portland Arms , is The Punter , a cheap venue with a family friendly environment . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry a Japanese restaurant with three out of five customers enjoying our food and environment . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada restaurant has Indian food with low prices . Located near Rainbow Vegetarian Café , is family friendly with an average rating . \nname : The Phoenix | food : English | customer rating : low | area : riverside||The Phoenix serves English food on the riverside . It has poor ratings . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies , a kid - friendly Japanese coffee shop , has a 3 out of 5 rating . It is located in the city centre and costs between 20 - 25 pounds . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||Located in the city centre area and with an average customer rating , is an establishment called The Waterman , offering Italian food at a cheap price range , but is not kid friendly . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||For about £ 20 - 25 you can eat at the highly rated kid friendly Japanese restaurant The Wrestlers . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||There is a riverside Café near The Sorrento called The Mill . It is pricey but does have Italian food . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : no||An averagely priced , kid - free restaurant called Strada with a very customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum coffee shop serves Japanese food for less than £ 20 in a family friendly setting . Cocum has an average customer rating . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : no||Alimentum is a Chinese dining establishment offering high priced menu options . It is located in the Riverside , and is not child friendly . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne is near The Rice Boat in the riverside area . The food they serve there is English . It has a low customer rating of 1 out of 5 . \nname : The Vaults | Type : restaurant | food : Italian||The Vaults is an Italian restaurant . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop that is located in the riverside near Café Sicilia . The price range is more than 30 and is not children - friendly . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||With a customer rating of 5 out of 5 The Rice Boat is an Italian restaurant near the Express by Holiday Inn in the riverside area . It 's cheap but not family - friendly . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||Browns Cambridge serves English food for less than £ 20 , it has low customer ratings . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a mid - priced coffee shop on the river , near to The Portland Arms \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap family friendly English place near The Bakers . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is one star , inexpensive restaurant , that is not suitable for the whole family . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a kids friendly coffee shop that is near Café Sicilia . They serve Indian food that ranges between £ 20 - 25 and also has a high rating . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is Japanese restaurant located in the city centre by Café Rouge . It has an average customer rating , and yes , it is family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop with high customer ratings that serves French food . The coffee shop is in riverside near the Crowne Plaza Hotel . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop that serves Italian food . It is located near the riverside and is not family - friendly it has an average customer rating . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||In the high price range there is a coffee shop which serves French food and is children friendly . It is call Cocum and has a customer rating of 3 out of 5 . \nname : Blue Spice | food : Chinese | price : high | area : city centre||Blue Spice provides Chinese food in the high price range . It is located in the city centre . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The expensive , adults only , Italian restaurant , The Rice Boat , is located in Riverside , near the Express by Holiday Inn and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Fitzbillies is a great coffee shop to order take out for delivery in the city centre . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man , located in Riverside , has French cuisine , and is children friendly . It 's located near All Bar One and the price range is more than L30 . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Although not very popular , Fitzbillies is children friendly and costs more than 30 pounds . It is near Express by Holiday Inn . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly low cost dine in restaurant . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Chinese food . They are price ranged of more than £ 30 with a customer rating of high . They are children friendly and are located riverside near Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that sells French Food for moderate prices . It has a 1 out of 5 rating and it is kids friendly . It is located in the city centre near Burger King . \nname : Cotto | food : Japanese | customer rating : average | family friendly : no | near : Ranch||Located near Ranch , Cotto is a Japanese restaurant with an average customer rating . It is not family - friendly . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||Located outside of the City center , The Phoenix is a five star sushi restaurant . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a French food restaurant situated on the riverside near The Rice Boat with customer rating 3 out of 5 . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The highly rated but expensive Strada is family friendly . It serves Japanese food and can be found near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||City Centre coffee Shop The Eagle serves Indian food , not far from Burger King , adults only , customer rating 1 out of 5 , price range high . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family restaurant with low prices and delicious sushi . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop serving Indian food on the riverside near the Crowne Plaza Hotel is the Taste of Cambridge . It is family friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Indian restaurant , in City Centre , is moderately priced and kid friendly . It is located near Express by Holiday Inn . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||The pub Wildwood serves expensive English food when th a high customer satisfaction . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||The Clowns Pub is located by the river , its menu is moderately priced and has a good client rating - 3 out of 5 . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Green Man is located in the city centre near All Bar One . It offers French food at above average prices and children are welcome . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||In the city centre situated near Burger King is a French coffee shop called The Eagle , it is family - friendly and reasonably priced at less than £ 20 per person , it has a low customer rating \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The family friendly The Golden Curry , near The Bakers , will provide French food at reasonable , less than £ 20 , prices . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is located near The Rice Boat in riverside and is not family - friendly . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A five star restaurant for families called The Waterman is located in City centre . It offers wines , but is low - priced and highly recommended . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||There is a family friendly Japanese restaurant with a low customer rating located near a Ranch called Cotto . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||In the riverside , Bibimbap House is near Clare Hall , moderate price range and English food \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly Italian coffee shop in the Riverside area near Raja Indian Cuisine . It is in the high price range . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In Riverside , near Raja Indian Cuisine is a child friendly , high priced , fast food coffee ship called The Wrestlers . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||For your next night out why not try The Cambridge Blue restaurant . They 're low rating and French cuisine are sure to please . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Located next to Clare Hall there is a high - priced local venue called Bibimbap House . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The Golden Palace is an expensive coffee shop located in the city centre . \nname : Green Man | Type : pub | food : Indian | area : city centre | near : Café Rouge||The Green Man pub is located near Café Rouge in the city centre and serves Indian food \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||At Riverside near Café Sicilia , The Dumpling Tree is a kids friendly coffee shop priced at £ 20- £ 25 \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix restaurant , with its quaint setting down by the river , serves a French fare but it only received an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop with fast food in Riverside that is moderately priced . It has a customer rating of 3 out of 5 , and us is kid friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||On the riverside , The Golden Palace offers French food at a moderate price in a 1 out of 5 customer rated coffee shop \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop with a high price range . The customer rating is average but it is child - friendly . It is located in the riverside area near Avalon . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice at the riverside offers French food for a price range of less than £ 20 . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||For less than £ 20 family friendly The Punter is near The Portland Arms in riverside \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located north of the city center near Café Rouge , The Golden Curry is a five - star family restaurant . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a French food style coffee shop near the riverside , it is not catered for children , has a customer review of 5 out of 5 , but has a cheap price list . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||There is a coffee shop at the riverside located near Avalon which is children friendly . It is called Blue Spice and it is rated 5 out of 5 . The price range is more than £ 30 . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : The Bakers||The Giraffe coffee shop is in the moderate price range and is near The Bakers . It is not kid friendly and has a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly Italian coffee shop near Raja Indian Cuisine in the city with a price range of less than 20 euros \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a cheap Indian coffee shop near Café Sicilia . It has average customer rating and is family friendly . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||If you are looking for a mid level budget Japanese restaurant you could try the Strada which is located near to the Rainbow Vegetarian Café \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge near Crowne Plaza Hotel in Riverside , is a non family - friendly coffee shop that also serves Japanese food with a 5 out of 5 rating . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a pub located near Café Brazil . They offer English food in the higher price range . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a restaurant near the river that serves quality food at a low price . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||You can find cheap French food at The Phoenix , located at the city centre . Customers rave about it , giving it a 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Mid price range coffee shop , Blue Spice is suitable for adults only . It is near the river and close to Avalon . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : no||The Olive Grove is a no kids - friendly pub providing English food in the moderate price range . It is located in the city centre . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||There is a pub of English food named Zizzi that has a high customer rating and kids friendly . \nname : Bibimbap House | food : Japanese | price : high | area : riverside | near : Clare Hall||Dine on Japanese food near the riverside by Clare Hall at the Bibimbap House . This is a higher price ranged restaurant providing unsurpassed quality food . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a medium price range for highly rated Japanese food . It is family friendly and located near Rainbow Vegetarian Café . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||The Waterman restaurant is in the city centre and serves French food for £ 20 or less . It has an average customer rating and is family - friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice on the riverside serves family friendly fare . Over thirty pounds per head . Average customer rating is low . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is located near All Bar One at the riverside . It has a low price range . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Name The Wrestlers in the riverside area at a price range of less than £ 20 it is a family friendly coffee shop near the Raja Indian Cuisine serving Japanese food \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub that costs less than 20 euros . It serves French food and is located near Café Brazil . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Midsummer House is an average rated fast food restaurant near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop providing Indian food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : yes||Green Man is family - friendly . The price range is less than £ 20 and it is in the city centre . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : no||For more than £ 30 , you can go to Green Man in the city centre . Please note that children are not allowed in this restaurant . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||Located near Café Brazil is the pub , The Cambridge Blue , which serves fast foods at affordable rates . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an Italian restaurant . It is near Café Rouge , riverside . It is kid friendly . The customer rating is high . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix is a riverside Japanese venue with average customer Rating . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||The Green Man is at the riverside and it is children friendly . The price range is more than £ 30 . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||There is a coffee shop near Café Brazil within the city centre called The Vaults which has a price range of £ 20 - 25 and a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an expensive sushi restaurant located beside Express by Holiday Inn . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||High priced English pub food at the Wildwood has an average customer rating \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||If you are looking for fast food , theres is a pub called Green Man . It is situated near Café Rouge on the Riverside . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a restaurant that has Indian food . The pricing is moderate and has an average rating of 3 out of 5 . It is near All Bar One . \nname : Bibimbap House | food : Fast food | area : city centre | near : The Rice Boat||Bibimbap House is a fast food join in the city centre near The Rice Boat . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese coffee shop near Raja Indian Cuisine in riverside . It is children friendly and the price range is more than £ 30 . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a child friendly Japanese restaurant on the riverside . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||Right near Rainbow Vegetarian Café on the riverside , is a pub called The Golden Palace . It dines customers for less than 20 pounds per head . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : city centre||Clowns is a city centre pub with a lower than average price range . This pub has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an average rated , family- friendly coffee shop near the Crowne Plaza Hotel . It is located in the riverside area and serves Japanese food . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||The Eagle can be located by the river higher price range but poor customer rating \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||The Golden Palace is a low rated restaurant that is located on the riverside . \nname : The Rice Boat | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid friendly fast food restaurant serving decent food in the riverside area . \nname : Strada | Type : restaurant | customer rating : low||If you want to eat at a restaurant with a low customer rating then Strada is the place to go \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||A recommended place close to the city river is The Phoenix . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The moderately - priced pub The Olive Grove is in a riverside location , offering Japanese food . This is a non - child friendly restaurant . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop near the Burger King in the city center . It has a low customer rating and a price range of more than £ 30 . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||A high priced , average , non - family - friendly , French coffee shop is Cocum . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is rated 3 out of 5 with a price range £ 20 - 25 and kids friendly place to eat . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is an expensive pub with an average customer rating in Riverside . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||A restaurant that serves breakfast is The Dumpling Tree . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Aromi , a coffee shop in Riverside serves Japanese , has an average customer rating , and is family friendly . \nname : Blue Spice | food : Chinese | price : £ 20 - 25 | area : riverside||There is a Chinese restaurant in riverside that offers average priced food at a restaurant called Blue Spice . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||There is a high priced restaurant The Dumpling Tree . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an Indian food store which has a cheap price range , it is located in the riverside near Yippee Noodle Bar . \nname : Bibimbap House | food : French | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House serves French food . Has a price range of less then 20 . Serves in the city centre near Clare Hall . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non - kid friendly place serving high rated , moderate priced Chinese food . It is located in the city centre near Express by Holiday Inn . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family coffee shop with Italian food its near to Café Sicilia with high prices and average rating \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : no | near : All Bar One||Near All Bar One is Green Man serving Indian food in city centre area . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : no||Aromi is a pub located in city centre . Average customer rating . Not family friendly . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||The Golden Palace holds a rating of 3 out of 5 . The restaurant is located in the riverside area . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee shop is very cheap and located across from the Café Sicilia in the centre of the city . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||Customers rate The Eagle highly . It is a riverside venue and averagely priced . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : average||Browns Cambridge provides Chinese food in the high price range . Its customer rating is average . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough , located near Café Rouge is a pub providing Japanese food at a price range of 20 - 25 Euros . It is also kid friendly . \nname : The Rice Boat | food : Japanese | area : riverside||Near the riverside area , The Rice Boat sells Japanese food . \nname : Strada | Type : pub | food : Italian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub near the Yippee Noodle Bar offering Italian food and has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap restaurant The Rice Boat that provides cheap meals near the Express by Holiday Inn . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Midsummer House is a one - star pasta restaurant located near Café Rouge . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||Try The Twenty Two Fast food children - friendly restaurant in the riverside area . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a family friendly Sushi restaurant providing full meals in the low price range . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||Cheap fast food is what you can expect at The Dumpling Tree . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue offers English style fare and drink at a moderate price . It is located near Café Brazil . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Near Café Sicilia is a low priced family coffee shop restaurant called The Punter . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||Family friendly The Vaults is city centre based , it serves beluga at cheap prices . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is in city centre near Burger King . it serves Indian food . It also is a coffee shop . It is kid friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||There is an average coffee shop The Punter located near Café Sicilia that provides cheap fast food . It is not family - friendly . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman , a highly rated Fast food restaurant at Riverside , is both cheap and child friendly . \nname : Blue Spice | food : Fast food | price : moderate | area : city centre||Fast food is available moderately priced at Blue Spice in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto provides sit down sushi . Cotto is family friendly . It is located near the Ranch . It does not have good reviews . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop serving French food costing over £ 30 in the Riverside area . It does not cater for children . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a kid friendly coffee shop with an average price range and a high customer rating . It is located near Avalon in the city centre . \nname : The Mill | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | near : The Sorrento||Situated in the riverside area , near The Sorrento , The Mill is a coffee shop that serves Indian food with prices exceeding £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||A restaurant selling English food has a high customer rating . It is The Cambridge Blue . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||with a customer rating of 3 out of 5 and serving Japanese cuisine , is The Eagle \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum sells moderately priced Fast food in the riverside area near Yippee Noodle Bar . Customers have given is a rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a family - friendly fast food restaurant located in town centre , rated 3 with moderate prices . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : more than £ 30||The Dumpling Tree is a restaurant that is priced at more than £ 30 that sells Indian food . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : no | near : All Bar One||There is an Indian restaurant called the Green Man in the City Centre , it is near All Bar One , it does not allow children the price of a meal is approximately £ 25 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a mid - priced coffee shop located in City Centre along the river near Café Brazil . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood Pub , is where people go to drink cheap wine . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Located in the Riverside area , near Café Rouge . Is a Japanese food restaurant called , The Golden Curry . Which isn 't family - friendly , But holds a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a child friendly , moderately priced coffee shop selling Fast food , with a customer Rating of 3 out of 5 . It is near the Café Sicilia . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman , an English food restaurant , is located in city centre . The price range is less than £ 20 , the customer ratings are low and it is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is an adult only coffee shop located near Crowne Plaza Hotel and north of City centre . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge near to The Sorrento in Riverside it is a Chinese restaurant . Good prices , children are allowed . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a cheap family - friendly fast food restaurant . It is located in city centre and has a very good customer rating . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||There is a pub called the Giraffe on the riverside . It serves wonderful Japanese and yes , you can take your kids . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , near Yippee Noodle Bar in city centre , serve French food , have a 5 out of 5 customer rating , and have a price range of more than £ 30 . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a children friendly pub near The Portland Arms that has Fast food The Dumpling Tree . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a French food establishment . It is family friendly and located on the riverside . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||The Fast food restaurant Aromi is near the riverside . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||A cheap Indian coffee shop with a 5 of 5 rating named The Golden Palace is located in the riverside area . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a mid price range coffee shop with a 3 star rating . Near to the Ranch . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city centre near Burger King there is a coffee shop serving Indian food . It is not child friendly and is called The Eagle and has a high price range with an average customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||For family Friendly , The Plough serves French food for less than £ 20 . Can be found near Café Rouge \nname : Zizzi | Type : pub | food : English | customer rating : 3 out of 5 | family friendly : yes||The kids - friendly pub Zizzi serves English food and is rated 3 out of 5 \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is a French restaurant located in city centre called The Waterman . It has a 5 out of 5 rating . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||There is a cheap restaurant The Phoenix located outside of the centre of the city . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Chinese restaurant The Waterman is child friendly but has a high price range , low customer rating , and is located in Riverside . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there is a high priced , five star restaurant names Strada . They are family - friendly . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies offers cheap Italian food , and is located near The Six Bells . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Fitzbillies is a non - children friendly Japanese coffee shop in the city centre with a customer rating of 1 out of 5 and has a price range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Located near Burger King in the city centre , you can find an Indian coffee shop called The Eagle . Though its prices exceed £ 30 , it has a high rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With prices ranging £ 20 - 25 , The Wrestlers coffee shop can be found near Raja Indian Cuisine . The Wrestlers is kid - friendly and serves Japanese fare . \nname : The Rice Boat | food : French | area : city centre||The Rice Boat is a French restaurant located in the city centre . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||Burgers and fries can be found at The Cricketers coffee shop , located near The Portland Arms . Families can enjoy the 3 star atmosphere . \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cotto is a children friendly restaurant near the Ranch . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is a Pub on the riverside . It not child friendly and the price range is more than £ 30 \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : riverside||The Phoenix has 5 out 5 customer rating in the area of riverside , serving Indian food . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant next to Rainbow Vegetarian Café . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The All Bar One is next to the Green Man in the centre of the city . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a 3 star establishment with high quality food for our adult guests , a place to relax , situated close to The Portland Arms . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||There is the Zizzi restaurant located in riverside which is in the lower price range . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Fast food from children friendly Strada near Rainbow Vegetarian Café has an average customer Rating with a high price range . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Waterman is a non family - friendly fast food restaurant . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||You can expect great American food from the Bibimbap House restaurant . Although , the prices are high , the food is of the best quality . You get what you pay for at this restaurant . You can find Bibimbap House across the river from Clare Hall . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a cheap , family - friendly fast food restaurant near All Bar One in the city centre . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant providing medium priced meals . Located near the River . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a Japanese coffee shop , more than £ 30 , with a low customer rating . It is near Café Sicilia and is not children friendly . \nname : Blue Spice | food : Indian | price : moderate | area : city centre||The city centre is home to a moderately priced Indian restaurant called Blue Spice . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a great place with English food and moderate prices , not good for family but has a rating 3 out of 5 \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Zizzi get great customer reviews . It 's a moderately priced coffee shop in the riverside area . Children welcomed . \nname : Strada | Type : pub | food : Indian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a Indian pub near the Yippee Noodle Bar . Customer rated 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||There is a cheap coffee shop Fitzbillies providing fast food in riverside . It is not family - friendly and has an average customer rating . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant offers quality Italian food and is located right off the river outside of City centre . You can bring the whole family to this restaurant for great Italian cuisine . \nname : The Eagle | food : French | customer rating : average||The Eagle is a three star restaurant that primarily caters to wine pairings . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||there is a moderate price Fast food named Alimentum Located in city center near Yippee Noodle Bar with a high customer rating \nname : Bibimbap House | food : Italian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is an Italian restaurant located close to Clare Hall in the riverside area with a modest £ 20 - 25 price tag . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||In the City Centre near Yippee Noodle Bar , you will find a five star , high priced restaurant called Alimentum . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||The Mill is a mid - priced pub located by the river serving fast food . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada , an average priced Chinese restaurant with high customer ratings , is located near the Rainbow Vegetarian Café and kid - friendly . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : city centre||In the center of the city is located a French food public restaurant rating 5 out of 5 called The Waterman \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||In riverside , non - child - friendly Indian food is found at high priced Fitzbillies , a coffee shop . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House serves Italian food and has a high customer rating , it is located near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||In the riverside area , Fitzbillies is a Fast food coffee shop that yes , is kids friendly , and has a high customer rating with prices ranging from £ 20 - 25 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree offers Fast food for a price of more then £ 30 in the restaurant setting . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns family is cheap at Café Sicilia . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap Bar with 5 out of 5 star rating . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||With a price Range more than £ 30 , Japanese food has a customer Rating of 5 out of 5 , Alimentum , Is near Yippee Noodle Bar , in the riverside area . \nname : The Punter | food : Italian | price : £ 20 - 25||The Punter is an Italian restaurant where you can eat for about £ 20 - 25 . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||Near Ranch , Cotto serves English food . Has a high customer rating and is kid friendly . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||Strada is a pub that serves English food . Other customers give it an average rating . It 's located near Yippee Noodle Bar . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a Sushi restaurant that provides cheap food at a good quality . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two offers Japanese food in a family - friendly environment . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Aromi is a highly rated coffee shop near the riverside that serves Italian food and has a child - friendly atmosphere . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||This restaurant is located in the Riverside area near Express by Holiday Inn , The Rice Boat serves English food with a price range of less than 20 pounds . It is a family friendly place with a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||When in the center of the city you must try The Wrestlers with your family . It is a coffee shop that serves Italian food at a fair price . It 's located near Raja Indian Cuisine . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is Strada . It has a high customer rating but it 's not kid friendly , and it has averaged priced Japanese food . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge , offers fine food at fine prices and good service to boot . \nname : Aromi | Type : restaurant | food : Japanese | area : city centre||Aromi is a Japanese restaurant in the city centre . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A restaurant named Travellers Rest Beefeater is kid friendly and has a price range of 20 to 25 pounds . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue pub near Café Brazil offers French food in the more than £ 30 price range . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue , located near the Café Brazil , is a low price pub that serves breakfast . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the riverside area is Browns Cambridge . A great coffee shop that is kid friendly . They serve French food . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : yes | near : Café Rouge||The Plough pub serves Indian food . It is kid friendly , moderately priced and near Café Rouge . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is child friendly near the Crowne Plaza Hotel and serves English food . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||There is an average price restaurant The Phoenix . It is an excellent restaurant . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||By the riverside , cheap family friendly , Green Man . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a Chinese restaurant with a High price range a 1 out of 5 customer rating located in the city centre and is children friendly \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers offers average priced English food bring the family to a place with satisfied client ratings . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||A moderately priced , kid friendly place that serves English food is Alimentum . It is in the riverside area . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||A new pub named Clowns , situated on the riverside has a very affordable price range of less than 20 £ with an average customer rating . \nname : The Mill | Type : pub | food : Indian | price : high | area : city centre||The Mill is a pricey Indiana pub located in the city centre . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||There is a kid friendly pub near The Portland Arms called The Dumpling Tree that offers French cuisine . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater in moderate price range and customer rating 1 out of 5 near Café Adriatic . It is located in riverside . \nname : The Waterman | Type : pub | food : English | customer rating : 3 out of 5 | area : riverside||The Waterman in the riverside area is a pub that serves English food and has a customer Rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : city centre||The Mill is a Japanese pub in the city centre with a moderate price range . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||Cheap , family friendly Fast food can be found near The Bakers at The Golden Curry \nname : The Cambridge Blue | Type : pub | food : Indian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a Italian pub , located near Café Brazil and is priced over L30 \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : riverside | near : The Sorrento||Located in Riverside near The Sorrento , The Mill is an Indian coffee shop that serves moderately priced food . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||If you want to go to a cheap pub with Italian food , I 'd recommend The Plough . It 's by Café Rouge and it 's family friendly too . \nname : Strada | Type : pub | food : French | customer rating : 5 out of 5 | near : Yippee Noodle Bar||There is a French food pub near Yippee Noodle Bar called Strada . It has a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : no||Zizzi , an Indian food serving pub , is not family friendly and has a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a decently priced coffee shop and Japanese food establishment you can take your kids to in riverside . It is close to Raja Indian Cuisine . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes||For fast food The Olive Grove public house is moderately priced and family - friendly in the city centre . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a five star , moderately - priced family restaurant . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : yes||The Twenty Two is an Indian restaurant in city centre that is family friendly . \nname : Wildwood | Type : pub | food : Chinese | price : less than £ 20 | customer rating : low||Customers rate Wildwood , a Chinese pub , as low and it is in the low price range . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : no||Alimentum in Riverside offers your favorite Japanese cuisine at a moderate price . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||The Golden Palace is an average coffee shop providing Italian food at a high price range . It is located in the riverside area . \nname : Strada | Type : pub | food : Fast food | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Near Yippee Noodle Bar , is a place called Strada , a fast food , pub , with a customer rating 5 out of 5 . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Family restaurant Green Man offers a variety of foods and wine at a moderate price and right down from All Bar One \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub restaurant with moderate prices , located by the river . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Strada is a restaurant American food in the high price range . It is located in the city centre \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||For Chinese food for a moderate price , The Rice Boat is a child friendly restaurant located in the city center near Express by Holiday Inn , with an average rating of one out of five stars . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop with a 5 star rating . It is family friendly and located near The Portland Arms . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a kids Friendly Chinese food restaurant , in the city centre , with high price Range and average customer Ratings . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an Indian restaurant with high customer rating in riverside area of Café Rouge and is family friendly . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is located near All Bar One , they serve French food with a moderate price range and have a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Located near Avalon , a coffee shop named Blue Spice is three star rated , family friendly with decent prices . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop in the city centre with average customer ratings called Browns Cambridge . Located near the Crowne Plaza Hotel , it is a family - friendly place serving Italian food . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a moderately priced English food restaurant which caters to families visiting and living in the city centre near All Bar One . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||There is a family friendly English restaurant in riverside with a price range under £ 20 called Alimentum . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly coffee shop serving French food near Crown Plaza Hotel in the riverside area . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a kids friendly Indian food restaurant , that has low customer rating , in riverside . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge is high priced , three star serving fast food . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Customer rated 1 out of 5 , the Indian coffee shop , The Punter , offers moderately prices and kid friendly services . Located near Café Sicilia . \nname : Wildwood | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop serving inexpensive food . Close to Ranch . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is high . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||Riverside pub The Olive Grove offers moderately priced kid friendly fare . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||With a moderate price range and a 3 out of 5 customer rating , The Wrestlers is a wonderful kid friendly Italian restaurant choice . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves English food for you and your children to enjoy by the Riverside , they have a 1 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly Indian coffee shop with an average rating along the riverside near the Crowne Plaza Hotel . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum is a mid - range restaurant located outside the city centre . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly Japanese food restaurant located in the riverside near All Bar One . Green Man has food priced at less than £ 20 . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||With a high price range and an average customer rating , Taste of Cambridge is new restaurant . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge with will serve you with some lovely Italian food with in the city center with a rating of 5 out of 5 stars . no children please . \nname : The Twenty Two | food : Japanese | family friendly : no||The Twenty Two is a sushi restaurant that does not allow families with small children . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||The Cambridge Blue is an English Pub near Café Brazil and it 's cheap . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Clowns , the Italian restaurant in Riverside near Clare Hall is a superb coffee shop with raving reviews from customers . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub that has a customer rating of 5 out of 5 near Ranch \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a high - end coffee shop for adults only . Located near the Café Sicilia , this highly rated coffee shop serves English food at an above average price of more than £ 30 . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a one - starred , expensive family center . located close to the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is not a family - friendly coffee shop located in the city centre . It has a low customer rating , but serves Italian food for less than £ 20 . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix is a moderately priced fast food restaurant in the city centre area . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Children friendly places are indeed , yes , can cast you more than £ 30 at a place in riverside named The Rice Boat . It has a customer rating of 5 out of 5 stars and they sell French food near the Express by Holiday Inn . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is an expensive family - friendly restaurant in the city centre and it has a customer rating of one out of five . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||There is a moderately priced Italian restaurant called The Wrestlers that is family friendly . \nname : The Eagle | food : French | customer rating : average||The Eagle has a customer rating of average and serves French food \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes||Aromi a Japanese coffee shop in the riverside area that is children friendly with high customer rating \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid - friendly coffee shop serving fast food . It is highly - rated by customers , and is located in the riverside area close to the Crowne Plaza Hotel . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre||The English pub , The Mill , offers low prices and is located in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a low - priced and family - friendly coffee shop on the riverside that serves Japanese food . It is called The Wrestlers and is located near Raja Indian Cuisine . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two which is in the city centre near The Rice Boat is a cheap restaurant , it isn 't family - friendly and has a 5 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||For a cheap Indian coffee shop check out the average family friendly The Eagle , located in the riverside area near Burger King . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry by the riverside , near Café Rouge , serves up French cuisine . It has a low customer rating ; however , yes it is child friendly . \nname : The Vaults | Type : restaurant | food : French||If you are in the mood for French cuisine , give The Vaults a try . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House having Indian food in less than £ 20 , is in city centre near Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is an Italian coffee shop located in riverside with a low customer rating and a price range that is less than £ 20 . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto , located The Portland Arms , is a £ 20 - 25 coffee shop Fast food by the riverside is high rated . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no||In the city centre , there is a moderate priced Chinese pub named The Olive Grove , and it is not kids friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a children - friendly Japanese food available near Rainbow Vegetarian Café but has low customer rating and price range of more than £ 30 . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : no | near : The Portland Arms||The Punter is in the riverside area . It is near The Portland Arms . It has a price range of more than £ 30 . It is not children friendly . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a family - friendly French restaurant and coffee shop in the cheap price range near Café Sicilia with a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub located in the area of riverside serving Japanese food with a price range of less than £ 20 . It is not family - friendly . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a family friendly restaurant located near Café Rouge in the city centre that serves low quality food . \nname : Strada | Type : pub | food : French | customer rating : 1 out of 5 | near : Yippee Noodle Bar||With a rating of 1 out of 5 , Strada is a French pub situated near Yippee Noodle Bar . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||Wildwood is a low - priced pub located in the city centre . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||An Indian restaurant named The Golden Curry has a low customer rating and is not family friendly , this restaurant is located near Café Rouge in the riverside area . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||The Taste of Cambridge is a low customer rated restaurant in the price range of £ 30 or more . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the riverside , is a place that serves Italian food . It is near the Crowne Plaza Hotel . It has a high rating . There is also a coffee shop called Browns Cambridge . Yes , it is kid friendly . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||An Italian place called Midsummer House is rated 5 out of 5 by customers and is located near Café Rouge \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving Indian food in the riverside area near to the Crowne Plaza Hotel . It 's kids friendly but has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is an Italian restaurant with no family - friendly ambiance with a customer rating 5 out of 5 . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : city centre | near : Café Adriatic||Moderately priced food can be obtained from the Travellers Rest Beefeater . It has customer ratings which are average and is located near Café Adriatic in the city centre . \nname : The Punter | food : Chinese | price : moderate||At The Punter you will find moderately priced Chinese food . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Not child friendly . At a Price Range of more than £ 30 , is a 5 out of 5 rated space named The Waterman , with Japanese Food located at City Centre . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub serving Fast food that costs 20 to 25 pounds and is located near Café Brazil . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop by the riverside . It 's rated 5 out of 5 by customers , its food is cheap , plus it 's family friendly . It serves fast food . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an Italian riverside child friendly place , which is located near The Sorrento . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||The Aromi coffee shop is a one star , family free restaurant located by the river . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The highly rated , child friendly coffee shop Fitzbillies is located in the city centre . It serves fast food and will cost more than £ 30 . \nname : The Punter | food : Italian | price : moderate||The Punter is an Italian restaurant that offers food at a moderate price . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||This coffee shops ' menu items are in the price range of more than £ 30 but boasts a high customer rating . Called The Golden Palace , you can get fast food right in the city centre area . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly French coffee shop located in the riverside area near Crowne Plaza Hotel with a high customer rating . \nname : The Phoenix | food : Japanese | customer rating : high | area : riverside||There is a high rated restaurant near the riverside . It 's called The Phoenix and they serve Japanese food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is an Italian coffee shop that has high customer ratings , a price range of £ 20 - 25 and is kid friendly , located in the city centre \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||The place near the Rainbow Vegetarian Café is The Rice Boat and it costs around £ 20 - 25 . I heard customers gave it a high rating . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is a not a family - friendly Fast food located in riverside . It is a cheap restaurant and has average customer rating . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe pub Indian food set along the riverside is family friendly . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue is a moderately priced pub near the Café Brazil . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||A coffee shop serving Italian food , The Mill is moderately priced and can be found in riverside near The Sorrento . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a riverside French coffee shop with an average price range of 20 - 25 pounds . It is near Burger King , is kid friendly , and has a 3 customer rating . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is child friendly restaurant serving Chinese food . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Near the city centre and Burger King is the coffee shop The Eagle , which serves Italian food , is child friendly , has an average customer rating and has a high price range . \nname : The Plough | Type : pub | food : Indian | price : cheap | family friendly : yes | near : Café Rouge||There is an inexpensive pub called The Plough located near the Café Rouge . It is family friendly and serves Indian food . \nname : The Phoenix | food : Indian | customer rating : low | area : riverside||The Phoenix is located on the riverside and offers Indian food . Has a low customer rating . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||close to The Rice Boat although cater for no children is The Twenty Two , its cheap , nearby the riverside has a customer review of 5 out of 5 . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter is a Fast food place with a price of more than £ 30 \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Along the river there is a English restaurant called Alimentum that is kid friendly but expensive . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a low priced restaurant located by the river , but they are not kid friendly . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is an adult restaurant serving French food . It is located near The Bakers and moderately priced . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||In the city center an average , family - friendly coffee shop called Zizzi is less than £ 20 . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||The low priced restaurant called Midsummer House is located near All Bar One . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop with a good customer rating and affordable prices . It 's located in a riverside area near Avalon a good place to relax with your family plus it 's a kid friendly shop . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||A kid - Friendly pub , The Olive Grove is located along the riverside and serves French food for a moderate price . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a low ranked pub that does not allow families . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers . It 's kids friendly , with moderate prices and a 3 out of 5 rating \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||Cocum is a 3 - star friendly - friendly coffee shop serving reasonably - priced Italian cuisine . \nname : Zizzi | Type : pub | food : Italian | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub serving Italian food and is kids friendly and as a customer rating of 3 out 5 \nname : Wildwood | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop the serves Indian food near Ranch . They have a high customer rating and are £ 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is an English restaurant which is child friendly . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||Looking for an Indian restaurant in the riverside area and is family friendly , then The Twenty Two is for you . \nname : The Mill | Type : pub | food : Indian | price : more than £ 30 | area : riverside||The Mill is a pub type restaurant that serves Indian food . The price ranges is mid priced and is located in Riverside area . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : 1 out of 5||Browns Cambridge serves high priced Chinese food . Unfortunately , it is not highly rated with customers . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice a cheap fast food restaurant located near the riverside . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is located near Ranch . It 's a coffee shop serving Italian food . While it 's in the high price range it has an average customer rating . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is an Indian pub in the low price range . It is not family friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : no||An Indian restaurant that is high priced and not a place to bring children is Loch Fyne . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle is a 3 star rating restaurant in Riverside which is highly priced . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is a Japanese restaurant in the city centre near The Sorrento , it is not family - friendly . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly riverside eatery . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : £ 20 - 25||With a price range between £ 20 - 25 , The Dumpling Tree is a restaurant serving Chinese food . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a child friendly , Japanese restaurant , with a 5 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||There is a cheap coffee shop The Punter located near Café Sicilia that provides fast food . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a Chinese restaurant , with a 5 out of 5 customer rating , and is located in the city centre , near The Rice Boat . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House is serving English food at high prices in the riverside area near Clare Hall \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||There is a cheap pub that provides fast food called The Olive Grove . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a restaurant providing Italian food less than £ 20 price range . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar . It serves Fast food and has a high customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||Cocum is a cheap coffee shop that offers a family friendly environment , Italian food and has an average customer rating . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Cotto is a Fast food joint near Ranch . It 's child friendly with an average customer rating . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||Close to Café Adriatic , The Vaults is a high priced pub with an average customer rating \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||Also at the riverside close to Clare Hall operate Bibimbap House French food restaurant with average prices £ 20 - 25 . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre is a kid friendly place called The Rice Boat which has Japanese food at a moderate price range and a 1 out of 5 customer rating . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is providing Indian food in the price range . It is located in the riverside . It is near The Rice Boat . Its customer rating is 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : yes||Loch Fyne restaurant serves moderately priced Chinese food . The restaurant is kids friendly . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a restaurant with a high price range located near The Six Bells . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||With a 3 out of 5 rating , Travellers Rest Beefeater is moderately priced . It is located near Café Adriatic in the riverside . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The Golden Palace is a high - priced coffee shop located in Riverside . Customers Rate the establishment as average and it offers fast - food . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Indian food . It has a customer rating of 5 out of 5 and is family friendly . It is near The Portland Arms . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , a French coffee shop , which is child - friendly , is located near Crowne Plaza Hotel in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace , a French , riverside , coffee shop , is a pricey restaurant with low ratings . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms is an averaged priced , 1 star coffee shop called Cotto . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada near the Rainbow Vegetarian Café has a moderate customer rating of 3 out of 5 . English food and child friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop with Japanese food is Taste of Cambridge and is next to Crowne Plaza Hotel . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is near the All Bar One with cheap prices serving Italian food . It has high customer ratings . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||The Eagle has an average customer rating . It is by the riverside and the price is cheap . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||There is a cheap restaurant The Olive Grove that is family - oriented . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a fast food coffee shop in the riverside area near Burger King . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : no||Alimentum is a high - priced English restaurant located in the city centre . It is not child - friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue is a French restaurant that has been given a one star rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that provides Indian food with high price ranges . They have an average customer rating in located near Burger King in riverside . The Eagle is child friendly . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a cheap pub that is not family - friendly . It is located near Café Rouge . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : no | near : The Bakers||Near The Bakers there is a coffee shop called The Giraffe . It is not children friendly and costs more than £ 30 . It has a low customer rating . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is a cheap , one star Italian pub , located south of the city centre . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant at a low price point located near Clare Hall . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a pub with menu items more than £ 30 and a customer rating of 5 out of 5 . The Vaults is located near Café Adriatic . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is located by the river . It serves food from a high price range to families . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||There is a mid priced restaurant located at the edge of the city beside the river . The Phoenix offers sushi take - away . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||Loch Fyne has a variety of reasonable cheap prices . \nname : Fitzbillies | food : Chinese | price : less than £ 20 | near : The Six Bells||Fitzbillies is a cheap priced Chinese restaurant located near The Six Bells . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The coffee shop , Cotto , is located in the city centre near The Portland Arms . It serves average - priced Japanese food . Customers give this coffee shop 5 out of 5 stars . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is a non - family - friendly restaurant with low customer ratings , and a low price range . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , family friendly restaurant in the riverside area near to the Express by Holiday Inn . It is rated 5 out of 5 by other customers and serves Japanese food . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||There is a fine dining restaurant that also serves wine called Browns Cambridge . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||A customer rating of 5 out of 5 with a none family - friendly environment is coffee shop also a Fast food place near Café Sicilia called The Punter . Price ranging cheap . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||An average , cheap , Italian coffee shop , near Burger King in the city center , is called The Eagle . They are not family - friendly . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two restaurant is located in the area of riverside . This restaurant offers Japanese food . The restaurant itself is family friendly . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a French restaurant located at the centre of the city . The prices range less than £ 20 . Not family - friendly . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||There is a expensive fast food pub near Café Rouge that is child friendly . It is called The Plough . \nname : The Eagle | food : French | customer rating : low||Rated low by customers , The Eagle serves French food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Located near the river side , a Japanese place named Alimentum with decent prices is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop that sells Japanese food in the riverside area . Its food is cheap and customer rating is average . It is not family - friendly . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||There is a child friendly coffee shop near The Bakers called Giraffe . Prices are typically around £ 30 and customer ratings are low . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix , rated 1 out of 5 , serves Italian food at a high price . It is located in the riverside . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman served English food and is rated average , but is by the riverside . The pricing is high and they are not child friendly . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : no||Located in the city centre , The Olive Grove is a non - family - friendly pub with a price range of less than £ 20 . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman on the riverside serves cheap French food . It is a family friendly place with a 5 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto , located north of the city centre near The Portland Arms , is a mid - priced coffee shop . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||down the road from Express by Holiday Inn is The Rice Boat . It also has 5 - stars and is family friendly . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : no||The Twenty Two is located in city centre offering Italian food . It is unfortunately not family - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that has a moderate price range and Japanese food with low ratings near Burger King in city centre with a moderate price range . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||An averagely rated Italian food restaurant is The Cambridge Blue . \nname : The Eagle | food : Indian | customer rating : 5 out of 5||The Eagle has Indian food with a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the riverside area is a family friendly Indian coffee shop called Fitzbillies , its cheap and highly recommended . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a cheap Italian family friendly restaurant located near All Bar One and the riverside . \nname : Wildwood | Type : pub | food : Indian | price : more than £ 30 | customer rating : high||The Wildwood is a pub serving Indian food . Average price is greater than £ 30 ; highly rated by customers . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant , providing Italian food , located near The Rice Boat in riverside , with a average Customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||there is a Japanese restaurant with a low customer rating called The Cambridge Blue \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : less than £ 20||The Dumpling Tree is a low - priced restaurant that serves Chinese food . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is an adult Chinese pub in riverside that offers food for a low price . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is coffee shop near Crowne Plaza Hotel in the city center that offers fast food , is not family - friendly and has a low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The Cambridge Blue is a British style restaurant . They are ranked 5 star . \nname : Bibimbap House | food : French | area : city centre | near : The Rice Boat||Bibimbap House located in the city center near The Rice Boat serves French food . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge is a 1 star restaurant with moderate prices . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||Near to The Rice Boat on the riverside is The Twenty Two , which is child friendly , is in the high price range and has a customer rating of average . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly English restaurant that is near the area of riverside . Alimentum has a price range of less than £ 20 . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Japanese food place in Riverside near The Sorrento \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a Japanese family friendly pub in Riverside . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no||for a pub that is not child friendly in the city centre that does Fast food then there is The Olive Grove which is in the moderate price range \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a kids friendly rating 3 out of 5 Italian restaurant . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly recommended and kids - friendly Japanese restaurant located in the centre of the city near Express by Holiday Inn . Their prices range among £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre||The Golden Palace is a cheap coffee shop located in the city centre . You can also have Indian food , customer rated average . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : more than £ 30 | near : Café Brazil||Near Café Brazil there is a fast food pub named The Cambridge Blue that has a price range of more than £ 30 . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||'Cocum ' is an expensive Italian coffee shop whose target audience is mainly for adult , most customers give them a 1 out of 5 on ratings . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee shop is a low priced and family friendly shop , the Café Sicilia , serves pasta entries . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||3 star American cuisine at Loch Fyne . Near The Rice Boat . \nname : The Punter | food : English | price : moderate||English cuisine served at The Punter for a moderate price . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is a child friendly restaurant in the riverside area with prices less than £ 20 . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree restaurant is located near the city center . and serves wine , cheese , and fruit . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop , with a low prices , they serve fast food , it is located by the riverside near a Burger King . It has a low customer rating . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French restaurant , that is not kid friendly , located in the city centre , near Rainbow Vegetarian Café . All prices are between £ 20 - 25 . It has a 3 out of 5 star rating . \nname : Blue Spice | food : Fast food | price : moderate | area : city centre||Blue Spice , a city centre area fast food restaurant , has a moderate price range . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum located in the city centre near Yippee Noodle Bar provides French food with a price range of more than £ 30 . It has a customer rating of 5 out of 5 . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||The Twenty Two is located in the riverside area that offers fast food and is not family - friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | near : The Portland Arms||There is a high - priced coffee shop named Cotto which also serves Fast food . It is located near The Portland Arms . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||The Eagle has prices under £ 20 . It is in the riverside area and has low customer ratings . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop in riverside that has a 3 out of 5 customer rating . It serves Japanese food between £ 20 - £ 25 . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||The Vaults is a kid friendly fast food joint with a price range of £ 20 - 25 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a family - friendly coffee shop that serves French food . The Cricketers has an average customer rating . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Low rated Alimentum near Japanese Yippee Noodle Bar can be found in the riverside area and has a moderate price range . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high price range Italian coffee shop in the Riverside area near Raja Indian Cuisine . It is children friendly . \nname : The Rice Boat | food : Japanese | area : city centre||The Rice Boat is a restaurant in the centre of the city which serves Japanese food . \nname : The Twenty Two | food : English | family friendly : yes||Located in the city centre , The Twenty Two is family friendly and serves British food . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop in Riverside serves Indian fare and has moderate pricing with a 1 out of 5 customer rating . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : city centre||The 5 out of 5 rated The Phoenix serves Italian food . It can be found in the city centre . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||A coffee shop that is not kid friendly is located in the riverside area near Burger King . It is named The Eagle , has French food and a moderate price range and a high customer rating . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is in the £ 30 and higher price range . It is a Japanese restaurant that is child friendly . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee Shop in the Riverside area located near Café Brazil . It has a moderate price range and a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree restaurant serves English food at a high price range . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Close to Rainbow Vegetarian Café Fitzbillies are cheap \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a Japanese coffee shop called Fitzbillies that is located in the city centre . It is family - friendly , has a low price range , and a high customer rating . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap Japanese food place near The Bakers and is not family - friendly . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||In the city centre it 's found a average restaurant , is called The Waterman , serves cheap food for all \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a kids friendly pub , located by riverside . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle serves Japanese food , and it has a low customer rating . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : city centre | near : The Sorrento||The Mill coffee shop serves Indian food at a moderate price . The Mill is in the city centre near The Sorrento . \nname : The Punter | food : Chinese | price : £ 20 - 25||A Chinese food restaurant with a price range of £ 20 - 25 is called The Punter . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you 're in the riverside area with your children and are looking for highly rated Chinese food , The Rice Boat is a great option . It is near Express by Holiday Inn and can expect to spend more than £ 30 . \nname : Midsummer House | food : French | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House , is a French restaurant hear Café Rouge , and has a low customer rating of 1 out of 5 . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a low rated , non - child friendly restaurant . Located in the city centre near The Rice Boat , The Twenty Two has an average price range of more than £ 30 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near city centre in Avalon . Their prices are expensive but they are family - friendly . Their customer service rating is 3 out of 5 . \nname : Wildwood | Type : restaurant | family friendly : yes||A restaurant that has children friendly service is Wildwood . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace serves pub food at under £ 20 , it is in Luton near the Rainbow Vegetarian Café . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is a family French restaurant with prices more than £ 30 \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a pub by the riverside that has a moderate price range and a rating of 1 out of 5 . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a cheap wine bar Alimentum located near Yippee Noodle Bar . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | near : Ranch||The Wildwood is a moderate range coffee shop near Ranch , which offers Indian food . Their customer rating is a 3 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||The Cambridge Blue is a fast food restaurant with a healthy 3 star rating \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||'Browns Cambridge ' is a sushi - serving coffee shop . It located near the Crowne Plaza Hotel by the riverside and it very highly rated and recommended for families . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman pub in riverside Japanese food 5 out of 5 \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man has a price range of £ 20 - 25 , it is kids friendly and located at riverside . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||The Bibimbap House has cheap English food near Clare Hall in riverside . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||Taste of Cambridge is a restaurant price range more than £ 30 high customer rating \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Family friendly Fast food and yes a pub , Zizzi has a average rating . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House is a fair - quality place near Café Rouge . \nname : Aromi | Type : restaurant | food : French | area : riverside||In the riverside area there is a French food restaurant called Aromi \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop offers stunning French dishes in this 5 star establishment near Crowne Plaza Hotel \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||An affordable coffee shop is Cocum . It is kid friendly , reasonably priced , and serves French food . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||You can find a Chinese restaurant in riverside , called The Phoenix . The customer rating is low and the price range is less than £ 20 . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||There is an Italian coffee shop located near Café Sicilia . Their ratings are low and their prices are high . The Punter is not a child friendly establishment . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is situated by the riverside near The Rice Boat . They serve French food and they have an average customer rating . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : no||The family unfriendly and lowly rated Zizzi is a pub that serves Chinese food . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||The Plough is a restaurant near The Bakers . The restaurant is not conducive for a family , but the prices are less than £ 20 . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||Taste of Cambridge is a cheap restaurant with average customer rating . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge in the city center . It serves French food and has a customer rating of 5 out of 5 and is not child friendly \nname : The Punter | food : Fast food | price : less than £ 20||The Punter is a Fast food restaurant where you will find food for less than £ 20 . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||This high - cost , 5 star restaurant , The Wrestlers , provides a variety of cheese and wines in a family friendly environment . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||Enjoy a mature coffee shop , The Punter near Café Sicilia . This high rated coffee shop features high end fast foods with a high end price \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||For date night try The Golden Curry , Indian food with a five star satisfaction rate , not family friendly . They are in the riverside area near Café Rouge . \nname : The Golden Palace | Type : restaurant | price : high||The Golden Palace is a high range restaurant . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The Mill is a pub providing Italian food in the low price range . It is located near the Riverside . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a cheaply priced fast food restaurant , not recommended for families . It has a low customer rating and is located in the city centre . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The restaurant The Olive Grove is not kid friendly but is cheap . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a 3 out of 5 customer rating , is kids friendly and has a moderate price range . It is situated by a riverside and near Express by Holiday Inn . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a restaurant near The Six Bells . The price range is high . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||On the riverside , near The Rice Boat is The Twenty Two . Yes , it is family friendly , price range is less than £ 20 , but it has a low customer rating . \nname : The Punter | food : Chinese | price : less than £ 20||The Punter is a Chinese venue that has a price range of less than £ 20 . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||Taste of Cambridge is a restaurant based in the city centre serving scummy food . The average price of a meal is above average at £ 30 per head \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a moderately priced French restaurant , called The Rice Boat , in the centre of the city . It is located near the Express by Holiday Inn and is not recommended for kids . Customers have given it a poor rating of 1 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Near Café Rouge is the Wildwood restaurant with a 3 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||With its riverside views , The Golden Palace produces high standard Japanese dining alongside its coffee shop . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is family friendly , Japanese restaurant with prices less then 20 , near All Bar One in the riverside area . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is restaurant that provides British food including breakfasts at low prices . It is located in the city centre . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : city centre||The Waterman pub is in the city centre . It has Indian food with an average rating . \nname : Strada | Type : pub | food : Italian | customer rating : low | near : Yippee Noodle Bar||Strada is a pub that serves Italian food . It is near Yippee Noodle Bar and has a low customer rating . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Near The Six Bells there is a place called Fitzbillies that has French food . Their prices range less than 20 . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||The Alimentum is a English restaurant that has a high price range and an average customer rating . It 's located near the Yippee Noodle Bar . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||With a 3 out of 4 rating near Café Brazil you will find the moderate priced coffee shop The Vaults which has a riverside location . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||children friendly in the riverside area near The Sorrento , is the Browns Cambridge Indian foods \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Near the Burger King at the riverside for less than £ 20 , The Eagle is family Friendly and serves French food \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub located in the riverside area . It is not a family - friendly establishment . The Olive Grove provide English food less than £ 20 . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a restaurant for Italian food . We are close to All Bar One . Join us . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Children friendly The Waterman serving expensive Japanese food has been rated 5 out of 5 by customers . The place is located in the city centre . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is an Italian restaurant with cheap prices . They have earned a rating of 5 out of 5 due to not being child friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle , a low - rated coffee shop , serves Indian food in the low price range . Customers say it is not family friendly and it can be found near the city centre and Burger King . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two offers fine Italian food , suitable for the whole family \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry is an average family restaurant . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a very good restaurant its have a wonderful Indian but its expensive its located on a riverside and the are children friendly \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a coffee shop with a low rating , although it is family friendly , cheap , and fast . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is an Indian coffee shop near the Crowne Plaza Hotel known as Browns Cambridge . It is kid - friendly and has an average score of 3 out of 5 with its customers . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||Wildwood coffee shop providing affordable food close by to The Ranch . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop with a customer rating of 3 out of 5 near the riverside . It serves French food with a price range of £ 20 - 25 and kids are not allowed . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near the Express by Holiday Inn is child friendly . They have a high customer rating and the cost is more than £ 30 . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : no||The Wrestlers serves French food in the more than £ 30 price range , it has a low customer rating and is not child friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a restaurant in riverside near Burger King that is an Indian coffee shop called The Eagle . It is moderate price range with a one out of 5 customer rating that is not kid friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a children friendly place located in riverside . It has a 5 out of 5 customer rating and the price range is more than £ 30 . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle is by the riverside , has a customer rating of 3 out of 5 and has a high price range . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat is located near the Rainbow Vegetarian Café and offers food for around £ 20 - 25 and has a high customer rating . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a fast - food restaurant located outside of the City Centre , near to Yippee Noodle Bar . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a family friendly fast food restaurant at a mid price range . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a low - priced pub that provides deliveries . It is located near Café Brazil . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a highly - rated and expensive establishment providing Japanese food in a child - friendly environment . It is located in the city centre . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||Travellers Rest Beefeater offering a price range of more than £ 30 . It also has a high customer rating . Its located near the Café Adriatic in the riverside area . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||A coffee shop providing Indian food , Cocum is a restaurant with a moderate price range . Not ideal for children due to its average rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop with moderate prices . It sells Japanese food and is not kids friendly . Its in the riverside area and has a rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Indian food in the more than £ 30 price range . It is located in the riverside . \nname : The Vaults | food : English | price : £ 20 - 25 | family friendly : yes||The Vaults serves English food is kids friendly as a price range of £ 20 - 25 \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||In the riverside area near Burger King is a French coffee shop called The Eagle that has a low customer rating but is child friendly and is more than 30 dollars . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House providing Fast food . It is located in City center near Café Rouge . Have 5 out of 5 costumer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||With a customer rating of one , Fitzbillies is a coffee shop serving Indian food near Riverside . It has a moderate price and is not kid friendly . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Blue Spice restaurant located in riverside selling cheap Italian food . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a moderate priced poor rated coffee shop The Eagle that offers Italian food near Burger King in riverside . It is not child friendly . \nname : The Plough | Type : pub | food : Fast food | price : more than £ 30 | family friendly : yes | near : Café Rouge||A fast food children 's friendly restaurant named The Plough is located in the riverside area near Café Rouge with a price range of more then £ 30 . \nname : Bibimbap House | food : English | price : high | area : city centre | near : Clare Hall||Bibimbap House in the city centre , near Clare Hall serves English food and has a high price range . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||Near The Portland Arms in the city centre , Cotto is a coffee shop with a price range of less than £ 20 that serves Japanese food and has an average customer rating . \nname : The Rice Boat | food : French | area : city centre||The Rice Boat serves French food and is in the city centre . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a Japanese restaurant in the city centre . It has a 5out of 5 rating and is kid friendly . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix providing French Food . It is located in riverside area . Start from low price and have 5 out of 5 costumer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is an averagely rated and child friendly coffee shop in the city centre providing Indian food in a high price range . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop that serves for a range of £ 20 - 25 located near The Bakers . It is kids friendly and high rated . \nname : The Golden Curry | food : Japanese | customer rating : high | family friendly : yes||The Golden Curry provides highly rated products that are kid - friendly . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||Located close to The Portland Arms is a pub The Dumpling Tree , this is not a family friendly restaurant . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine there is a coffee shop called The Wrestlers that offers less than £ 20 Italian food and is by the river side . Kids not welcome \nname : Cotto | price : less than £ 20 | area : city centre | near : All Bar One||Near All Bar One in city centre is a cheap place called Cotto . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is an expensive , Italian restaurant sited by the riverside . It is not open to children and has a 1 out of 5 customer rating . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||You can find English food in family friendly The Golden Curry . Previous customers have given it a low rating . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : no | near : Café Rouge||The Plough is a French pub , which is not kid friendly . The price range is moderate and is located near Café Rouge . \nname : Cotto | food : Italian | near : Café Rouge||A restaurant called Cotto , near Café Rouge , has great Italian food . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge in riverside , you can find a family - friendly English restaurant named The Golden Curry that has a low customer rating . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||The Aromi pub , located in the riverside area , is children - friendly , but has a low customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a low cost family friendly Chinese food pub in riverside . \nname : The Punter | food : Chinese | price : less than £ 20||The Punter , Chinese restaurant , prices from £ 19.99 \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||There is a Japanese food place called Browns Cambridge . The prices are moderate but the rating are low . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers , near All Bar One , is an English restaurant . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop in riverside has a high price range , and serves Italian food . They have a 1 out of 5 customer rating . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat in riverside , but it is a low rated Japanese place . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||Zizzi is a kid - friendly pub that serves fast food and has a high customer rating . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||The gourmet foods coffee shop ' The Cricketers ' has poor customer reviews and is not recommended for families . It is found near The Portland Arms . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||Near The Sorrento by the riverside is a high price range French coffee shop called The Mill . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a Chinese restaurant in the moderate price range and a 3 out of 5 customer rating , its located on the riverside and , no , its not kids suitable . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serves French food and is family friendly yes indeed . Its near The Portland Arms , although it has a low rating \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is a coffee shop situated near Café Brazil in the city centre . Prices are more than £ 30 and it has a 5 out of 5 rating . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||A restaurant highly rated by customers , and averagely priced is Taste of Cambridge . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||There is a family friendly , one star rated wine bar called The Golden Curry . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Japanese The Waterman is located on the riverside . It is children friendly . Customer rating is 5 out of 5 . The price range is above average . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||With a customer rating of 5 out of 5 near the riverside The Waterman pub serves Italian food \nname : Blue Spice | food : Indian | price : high | area : city centre||The Blue Spice is an Indian restaurant in the city centre with a high price range . \nname : Bibimbap House | food : Fast food | price : £ 20 - 25 | area : riverside | near : Clare Hall||Near Clare Hall area , price range 24 , Bibimbap House , Wendy 's . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||The Cambridge Blue is a cheap Italian pub located near Café Brazil . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge is a high priced , three star rated restaurant that serves breakfast . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop with a £ 20 - 25 price range . They serve Japanese food with a customer rating of 3 out of 5 . The Punter is located near Café Sicilia , and it is not a child friendly establishment . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter offers Fast food for more than £ 30 . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia serving cheap Indian food . It has a very high customer rating but is not family - friendly . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||There is a restaurant near Rainbow Vegetarian Café called Strada . The price range is high , it is not family - friendly , and it also has a low customer rating . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne has a high customer rating and serves English food . It is located near The Rice Boat on the riverside . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice coffee shop is near the river . Not suitable for families and is mid price range . It is close to Avalon . \nname : The Punter | food : Indian | price : high||The Punter serves Indian food in the high price range . \nname : The Waterman | price : cheap | family friendly : yes||The Waterman is a family friendly low priced venue . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough is an expensive pub that is family friendly and located in Café Rouge . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms . It is cheap and moderately rated . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||In the city centre you will find Alimentum , a highly rated Japanese restaurant located near Yippee Noodle Bar . It has a price range of £ 20 - 25 . \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||The Plough is an average priced restaurant near The Bakers . They are not family friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||A coffee shop near Ranch , Wildwood , serves Japanese food . It is cheap for it 's 5 out of 5 rating . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||In the riverside area near The Portland Arms there is a high priced child friendly restaurant called The Punter . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults is a pub located near Café Adriatic with a price range of less than £ 20 and an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||A Japanese coffee shop located in the city centre with low ratings and moderate pricing is The Golden Palace . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : riverside||The Phoenix sells Chinese food at a high price range and average customer rating in Riverside . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is rated a 3 out of 5 and is located riverside near The Rice Boat . It is moderately priced but is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located near the river , Fitzbillies coffee Shop is a family oriented coffee place with below than average customer ratings . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a fast food place for adults with a moderate price range . It is near All Bar One in Riverside . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge can be found in the riverside area , near The Sorrento . It is family - friendly and offers Japanese food . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||the Blue Spice is a coffee shop in the city centre near Avalon it is in the high price range and has a customer rating of 3 out of 5 and is not child friendly \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is a non family - friendly restaurant located at the riverside . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is located in the city centre and has a customer rating of one out of five . It is family - friendly and has a high price range . \nname : The Golden Curry | food : Chinese | price : high | family friendly : yes | near : The Bakers||The Golden Curry serves Chinese food with a high price range . It has a high price range and is considered children friendly located near The Bakers . \nname : Bibimbap House | food : English | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House , located near Clare Hall in the city center has a low food price less than £ 20 . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves low priced Italian food . It has average customer ratings and can be found in the riverside area near Yippee Noodle Bar . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a highly rated but inexpensive coffee shop near Café Sicilia with family - friendly restrooms . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a sushi restaurant located along the bank of the river . It is family oriented and is ranked three star . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes||There is a pub called Giraffe . They are located at the city centre . They are family - friendly and they serve French food . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle has a high price range , with a customer rating of 3 out of 5 . It is located in the riverside area . \nname : Bibimbap House | food : Indian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House provides Indian food in the moderate price range . It is located in the riverside . It is near Clare Hall . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves Indian food in the mid price range . Customers have given the restaurant a 9 on a scale of 1 - 10 . A children 's menu is available suited to most tastes . Located near Café Sicilia this is a must try restaurant . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||If you are looking for a restaurant serving English food then Midsummer House is definitely somewhere you are going to want to go . Near All Bar One this restaurant has a price range of £ 20.00 - £ 25.00 and high customer ratings you cant go wrong here . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is an Indian riverside coffee shop with an excellent customer rating that can be found near to Clare Hall . \nname : The Punter | food : French | price : more than £ 30||The customers gave The Punter 3 stars for the food . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : 5 out of 5||There is a cheap Indian food place called Wildwood that has a high customer rating . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : yes||The Alimentum is children friendly and is located in riverside . They serve Chinese food . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||There is a kid - friendly Italian coffee shop with high customer ratings named Cocum . It is in the price range of more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is located close to Raja Indian Cuisine . They are a coffee shop with low prices . \nname : The Eagle | food : Chinese | customer rating : low||The Eagle is a Chinese restaurant with a poor customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||There is an above average - price range restaurant The Eagle , it is near riverside and has low customer rating . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Browns Cambridge serves English food for a moderate price but leaves 1 out of 5 customers unsatisfied . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a 3of5 coffee shop moderate located in the centre of the city , serves food for all , including kids friendly \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French restaurant that serves average priced food near Rainbow Vegetarian Café . It is not kid friendly but has a high customer rating . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a kids - friendly Japanese pub near the riverside . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is located in the city center . It is a great place to go when fast - service is a priority . Cocum is not recommended for families . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food joint near Express by Holiday Inn in the city centre . It is not child friendly , has a high price range and an average customer rating . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high - priced Fast food restaurant that is child - friendly and located near The Bakers . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : no||For Italian food and a pub - style restaurant , go to Giraffe in city centre . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a 5 - Star Sushi restaurant that welcomes the whole family to dine . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge also offers Indian food to go along with the family friendly coffee shop located near Crowne Plaza Hotel \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop that serves fast food , Wildwood has received high customer ratings and has a price range of more than £ 30 . Wildwood is located near Ranch . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is a restaurant Italian located in the riverside on The Rice Boat \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an English food restaurant near the Express by Holiday Inn . It is in the low price bracket and family friendly \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kid friendly pub serving fast food near The Portland Arms . \nname : Browns Cambridge | food : Indian | price : high | customer rating : average||Browns Cambridge has received average customer ratings for its highly priced Indian food . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||The one star coffee shop Aromi is not family friendly . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||In the riverside area is a Japanese restaurant called Green Man . It is kids friendly , moderately priced , and near All Bar One . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : no||Strada is a restaurant which costs less than £ 20 , but is not family - friendly and has an average rating . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle serves French food and is rated 5 out of 5 \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a kid friendly Italian coffee shop with a high customer rating , right in the city centre , with a price range between £ 20 - 25 . \nname : The Vaults | food : Indian | price : high | family friendly : no||The Vaults are not suitable for children and serve Indian food with a high price range . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||With a high customer rating , The Golden Curry serves English food in a family friendly riverside area . The Golden Curry is located near Café Rouge . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a low priced , family friendly pub in the Café Rouge area where you can take out , eat in or deliveries . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||Wildwood is a pub providing Japanese food . With a 3 out of 5 customer rating , it is in the high price range . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high end establishment on the waters edge offering fast food . It is child friendly but only has a rating of 1 out of 5 . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : no||The Rice Boat in the city centre serves Chinese food , but is rated low , and is not family friendly . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||The Blue Spice has an average customer rating and this family - friendly coffee shop is located near Avalon in the city centre where you can eat for under £ 25 \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The moderately priced , The Golden Curry , is a French adult restaurant , situated near The Bakers . \nname : The Vaults | food : French | price : cheap | family friendly : yes||The Vaults serves cheap French food and is family friendly \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : city centre | near : Clare Hall||Bibimbap House offers Japanese food beginning at £ 30 , located in the city center near Clare Hall . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Italian food in the moderate price range . It is located in the city centre . kid friendly and good customer rating \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||A very good Italian coffee shop is Clowns near Clare Hall along the riverside . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a fast food coffee shop . It is located in Riverside near the Crowne Plaza Hotel . It is children friendly but has a low customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum , a coffee shop , serves Italian food . It is inexpensive and family friendly with a low customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : yes | near : Café Sicilia||For a moderately priced coffee shop , visit The Dumpling Tree . It 's located in the city centre near Café Sicilia , and also features a playground . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop located near Café Sicilia which offers top quality food at a high price . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant located near Yippee Noodle Bar in the city centre with a customer rating of 5 out of 5 and cheap price range . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a riverside Japanese restaurant with a moderate price range and a low customer rating . It is not kid friendly . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes||There is a pub called The Olive Grove that serves Indian food that is kid friendly . It is located in riverside and priced moderately . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub that serves Indian food in the moderate price range . It is kid - friendly and is located in the city centre . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a highly rated Indian coffee shop that can be found at the riverside , near to The Portland Arms . A meal typically costs £ 20 - 25 \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is a coffee shop near The Bakers . It has a price of more than £ 30 and a low customer rating . It is not children friendly . \nname : The Vaults | food : Chinese | price : more than £ 30 | family friendly : yes||The Vaults , an expensive Chinese food restaurant , is kid friendly but you will expect to pay more than £ 30 . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||A restaurant called The Wrestlers serving French food at above average prices has achieved high levels of customer satisfaction . It is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly coffee shop located near Raja Indian Cuisine in riverside . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||Aromi coffee shop serves Japanese food for adults only with low customer rating \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : no||Green Man is a more than £ 30 pub in the city centre . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||For less than £ 20 you can have Japanese food from The Waterman . It is in the city centre and is family - friendly with an average customer rating . \nname : The Waterman | price : less than £ 20 | family friendly : no||The Waterman is not family - friendly and has a price range of less than 20 . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in riverside is a family friendly Indian coffee shop named Taste of Cambridge , this restaurant is located near the Crowne Plaza Hotel . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The Waterman riverside good place to all family and eat the best English Food \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a Family Friendly Pub near Ranch . It has a customer satisfaction rating of 5 out of 5 . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man is a child friendly place in the area of Riverside . Prices range from 20 to 25 Euros . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : high||An Indian restaurant in the high price range is The Dumpling Tree . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a cheap Italian food option located in the city centre . It is a pub and is not intended for children . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is located near Clare Hall . The location is in the city centre area . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly Indian food restaurant rated 1 out of 5 located in Riverside . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||French food is offered at Browns Cambridge coffee shop . They are located in the city centre near Crowne Plaza Hotel . Featuring an average customer rating and a family - friendly environment . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a poorly rated mid priced fast food restaurant The Wrestlers . It is family friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||A restaurant called Loch Fyne is child friendly and sells English food . Its price range is high . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : average||The Browns Cambridge is a high priced restaurant that serves Chinese food . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||A family friendly restaurant in the riverside area is Green Man . Food costs less than 20 pounds . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a 3 out of 5 customer rated , child friendly fast food restaurant . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop with great prices , ranging from 20 to 25 euros . It is located near The Portland Arms in the city centre and has a customer rating of 3 out of 5 . \nname : Cotto | price : less than £ 20 | area : city centre | near : All Bar One||Cotto is inexpensive at less than £ 20 . It is located in the city centre near All Bar One . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||There is a pub called The Plough located near the Café Rouge that is family friendly and serves cheap Italian food . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill at riverside near The Sorrento is a coffee shop that serves Japanese food in a price range of more that £ 30 . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Near the river is The Waterman that is family friendly but not budget friendly . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||Zizzi public house serves British food , is family friendly and has 5 out of 5 stars . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||Zizzi has Japanese food and a good customer rating . It is a kid friendly pub . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : no||Alimentum has average priced English food in the city centre . It is not kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||An Italian coffee shop near Café Sicilia is The Punter . The price range is cheap and the customer rating is average . It is not family - friendly . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge is high priced with a 3 out of 5 rating . One kid friendly , moderately priced fast food venue is The Wrestlers . It has a customer rating of 3 out of 5 . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||In the riverside area there is a French food place named Blue Spice that 's price range is more than 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that is family friendly by the river with 1 star . \nname : The Eagle | food : Chinese | customer rating : average||The Eagle has Chinese food \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||Giraffe is a pub that specializes in spaghetti . Only those above the legal drinking age are allowed to enter . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Japanese restaurant , The Eagle , has a customer rating of 3 out of 5 stars . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a low - priced coffee shop that provides high quality drinks and it is opened to all age groups . It is located near The Bakers . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||The Fitzbillies is kids Friendly . It is near the Express by Holiday Inn . its price range is between 20 and 25 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near to The Portland Arms is a kid friendly pub called The Dumpling Tree that serves English food . \nname : Cotto | price : less than £ 20 | area : city centre | near : All Bar One||Cotto is a located in the city centre near All Bar One . It has a price range less than 20 GBP . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||A moderate priced English food establishment called The Phoenix has a customer rating of 1 out of 5 . It is located by the riverside . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : no||restaurant Loch Fyne serves fast food prices are moderate . Not a kids friendly place . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man , located near All Bar One in the city centre , is not family - friendly and offers English food at prices less than 20 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that also sells noodles and wine , it is located next to the river , it is a family restaurant that has a 5 star rating and is highly priced . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a French kid friendly coffee shop in riverside . It has moderate prices and is low rated . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : no||The Wrestlers is a restaurant that don 't offer children friendly environment and they offer fast food at high price and the customer rating is Average . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||The Phoenix is a riverside Italian restaurant that needs you to tell the World it deserves more than a 1 out of 5 rating . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a family - friendly restaurant with a high price range and has a customer rating of 3 out of 5 ; it is located just north of Rainbow Vegetarian Café . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a high price range traditional Japanese restaurant near All Bar One . Public restrooms available . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a child - friendly pub . The prices are above average and it has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||Loch Fyne is a restaurant providing mid - priced fast food and is family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||A Japanese restaurant called The Dumpling Tree has a price range of more than £ 30 . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly coffee shop with a high price range and a high customer rating . \nname : The Phoenix | food : Japanese | customer rating : low | area : city centre||The Phoenix is located near the city center , is rated low by customers and serves Japanese food . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a French coffee shop in the moderate price range . It is located in the city centre , near The Portland Arms , and has a customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap , family friendly fast food pub near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||At The Cambridge Blue pub located at Café Brazil , you can get a meal , a side and a drink at a good price . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree is a French restaurant price ranges less than £ 20 . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is a non family friendly Sushi restaurant in the City Centre that provides food at the low price range . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is a pub providing Indian food in the price range . Its customer rating is average . \nname : The Punter | price : moderate | area : city centre | family friendly : no | near : The Portland Arms||For a moderately priced , child friendly venue , try The Punter , it can be found in the city centre near The Portland Arms . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a French eatery that has an average price range and a high customer rating . It is located near the Yippee Noodle Bar along the riverside . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a low rated restaurant offering Indian food . It is not family friendly and is located at city centre . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults is an expensive place that enjoys kids and is Italian oriented . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is providing Chinese food in the £ 20 - 25 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is located in the center of the city near Yippee Noodle Bar . It serves Italian food and has a high customer rating . Prices range from £ 20 - 25 . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is an Italian restaurant located near The Sorrento by the riverside . This establishment is not family - friendly . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : city centre | near : The Sorrento||The Mill is a moderate pub in the city centre near of The Sorrento that delivers Japanese food . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : yes||The Giraffe is family - friendly pub which serves Italian food in the city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum , a Japanese coffee shop , is low priced and highly rated , as well as being family friendly . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly coffee shop located in the city centre near the Burger King . The customer rating is 5 out of 5 and if you 're looking for some French food and have a price range of more than 30 pounds this is a good place to go . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a five star restaurant near The Rice Boat . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : city centre||The Mill pub has a less than £ 20 price range for its Italian food and can be found in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : French | price : cheap||The Dumpling Tree is a French restaurant with a cheap price range . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a high rated , cheap Chinese food restaurant located in the city centre \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||In the area of riverside and a high price range , Blue Spice is a fast food restaurant in the riverside area . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Feed the whole family or less than £ 20 at The Punter . This family friendly restaurant is located in riverside near The Portland Arms . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : city centre||The Waterman is a pub in the city centre which sells French food with an average customer rating \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||There is a high priced Italian coffee shop in riverside called The Eagle . It is near Burger King and it is not children friendly . It has an average customer rating . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||Near Ranch is The Cricketers . It 's not a family - friendly pub that has low customer ratings . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||Located near Ranch . The Cricketers is a family friendly pub with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||An Italian coffee shop in the riverside area that is children friendly , is called Fitzbillies . It has an average customer rating with a high price range . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill is a pub bar in the riverside area than offer French food with a price range over than £ 30 \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||If you are looking for a child - friendly Café close to The Portland Arms , then try The Cricketers . You can purchase light meals and alcoholic beverages as well . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||The Aromis is a family - friendly coffee shop . Serves Italian food . Located riverside and is not family - friendly . Low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is located near The Crowne Plaza Hotel in the city centre and is an adult only average coffee shop serving fast food \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Great French food is sold at The Wrestlers coffee shop . With a price range of less than £ 20 and no kids allowed , the riverside Café near the Raja Indian Cuisine is sure to please . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||There is a French restaurant Loch Fyne on the riverside near The Rice Boat having 3 out of 5 customer rating . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : city centre||There is a cheap pub called The Mill that serves French food in the city centre . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||The Dumpling Tree is a non - family - friendly pub that serves French food near The Portland Arms . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a cheap coffee shop called Zizzi in the city centre that isn 't family - friendly . It has a customer rating of 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There is a child - friendly coffee shop down by the riverside - Zizzi - where you can have a highly - rated meal for more than 30 pounds . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is located near Express by Holiday Inn . It is a child - friendly restaurant . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||The Waterman is a pub that serves Japanese food in the riverside area and has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is a Japanese coffee shop located near Ranch . Prices are typically more than £ 30 . Customers rated Wildwood 5 out of 5 . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Near The Six Bells there is an English restaurant called Fitzbillies that has a high price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies , is an inexpensive coffee shop located outside the city centre perfect for the whole family . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : no||The Golden Curry is another place to get Indian food , but they are not family friendly and rate low among customers . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a pub located near the river , is rated 3 stars , and has fine wine and bread . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop on the outside of the City center . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is low cost , greasy spoon takeaway with decent family facilities . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||For great Italian food that 's child friendly visit Browns Cambridge . Located near The Sorrento . \nname : The Rice Boat | food : Japanese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a child friendly Japanese restaurant in the riverside area . It has a high customer rating . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||There is a low customer rating coffee shop Fitzbillies located in the city centre that provides Fast food . Its price is less than £ 20 with no family - friendly . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : no | near : Ranch||The Cricketers is a highly rated , but not family - friendly , pub near Ranch . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||The Italian Browns Cambridge is kid friendly and is in the riverside area near to The Sorrento . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : no | near : The Bakers||The Indian restaurant near The Bakers called The Golden Curry serves Indian food that costs less than £ 20 but is not family friendly . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||Located near Clare Hall , The Bibimbap House has French and a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Japanese food in the average price range . It is located in the riverside and has a high customer rating with no kids - friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi near riverside is a Fast food coffee shop average rated children friendly \nname : The Phoenix | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Phoenix is rated 1 out of 5 by customers . They serve Chinese food in the riverside area . \nname : The Golden Curry | food : French | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry serving delicious French cuisine . Cheap family friendly environment . Close to The Bakers . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a Japanese coffee shop in the riverside area near Clare Hall . This venue has a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes||A cheap family friendly pub , The Olive Grove , is in Riverside . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Located near Ranch , Wildwood is a coffee shop that serves French food at a price range of £ 20 - 25 . Wildwood has a 3 out of 5 customer rating . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is an Indian food restaurant with average customer ratings and a family friendly atmosphere located near the Riverside area . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada , rated low and family unfriendly , serves moderately priced Indian near Rainbow Vegetarian Café . \nname : Blue Spice | food : French | price : more than £ 30 | area : city centre||Blue Spice is a high - end restaurant that serves French cuisine . It is located in the center of city . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||A highly rated high priced Chinese restaurant that is not family friendly located near city centre is called The Waterman . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||In the city centre near The Portland Arms , is the Japanese coffee shop Cotto . They are cheap and highly rated with 5 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a child friendly coffee shop serving French food . It is moderately priced , located near Café Sicilia and has a customer rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Rated 3 stars , the pub Zizzi offers Italian food suitable for families . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is located near the Crown Plaza Hotel and it has a one star rating . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||With riverside views , highly rated restaurant The Phoenix serves Japanese food for an exclusive adult night out . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop in the cheap price range located in Riverside near Café Brazil with a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||There is a Japanese restaurant that is called The Dumpling Tree with moderate prices . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : no||Zizzi is an adult Japanese pub rated five out of five by customers \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Japanese coffee shop Aromi has a moderate rating of 3 stars despite being both conveniently located along the riverside and remaining children friendly . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a high priced Indian restaurant . it has average customer ratings it is located near Yippee Noodle Bar . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located by riverside is the name Blue Spice . It is a child - friendly place with a price Range of high and a customer rating of 1 out of 5 . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop located in the city center , near The Sorrento , offering Japanese food at an affordable price . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto , a coffee shop that serves Italian food with a price Range of less than L20 , is near The Portland Arms . It has a low customer Rating . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||There is a cheap coffee shop serving Indian food called The Punter near Café Sicilia . It has an average customer rating and is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Down the road from Crowne Plaza Hotel is Browns Cambridge , a family friendly coffee shop . It also has a great view of the river \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||There is a coffee shop with a low customer rating named Cotto . It is near The Portland Arms in the riverside area . You can buy fast food there for less than 20 Euros . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap 5 - star restaurant that serves many specialties from around Europe . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : no | near : All Bar One||The Green Man an All Bar One on the riverside , does fast food , but is high in price and non family - friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||5 star establishment , Aromi is a riverside coffee shop that serves Italian food \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is an Italian restaurant located in the city centre . The average customer rating is average and the restaurant is family - friendly . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||For a Japanese menu , try The Eagle . It scores high with a customer rating of 5 out of 5 . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is child friendly and serves Italian food . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Phoenix , serving Chinese food rated 5 out of 5 by customers , is located in the city centre . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a wonderful child friendly pub serving Japanese food . You will find it near The Portland Arms . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Riverside area has a family friendly Italian restaurant near All Bar One called Green Man . \nname : Cotto | food : Japanese | near : Café Rouge||For Japanese food visit Cotto located near Café Rouge \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a highly rated French restaurant located near Rainbow Vegetarian Café . Strada offers a kid friendly environment and average prices at £ 20 - 25 . Strada rates highly among patrons . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located within the city centre near Express by Holiday Inn . This adult - only establishment offers low priced Chinese cuisine and received a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a non family friendly pub in the low price range . It is located in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a moderately priced coffee shop called The Wrestlers in the centre of the city near Raja Indian Cuisine . It serves Japanese food and kids are not welcomed . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre you can find The Wrestlers , a moderately priced coffee shop of the Japanese style that unfortunately does not openly welcome families with children . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice on the riverside kids friendly customer rating \nname : The Vaults | food : Indian | price : more than £ 30 | family friendly : yes||For Indian food in the higher price range visit The Vaults . Its kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is near Crowne Plaza Hotel . Browns Cambridge has a three star rating . Browns Cambridge is a family coffee shop . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is kid friendly . It serves Fast food . The price range is moderate . It is a pub near Café Rouge . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry is family friendly , offers English food , and has an average customer rating . \nname : The Eagle | food : Chinese | customer rating : average||The Chinese food at The Eagle restaurant is average . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Wildwood is a coffee shop close to Ranch . It has an average rating and serves cheap Italian food . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : city centre||The Mill is a pub that serves Chinese food at a less than average price range . They are located in the city centre . \nname : The Rice Boat | food : Japanese | area : riverside||The Rice Boat serves Japanese food in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a Italian coffee shop in town , it offers food from £ 30 and is rated high . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel is a children - friendly English restaurant called The Waterman . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a coffee shop near Avalon in city centre . Their prices are high and they aren 't kid friendly . They are rated 3 out of 5 stars . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is not a family - friendly restaurant . \nname : The Punter | food : Fast food | price : moderate||The Punter is a fairly - priced venue offering American snacks like burgers and fries . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is an English restaurant located near Rainbow Vegetarian Café . Strada has low ratings and is not child friendly . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||A cheap night out would include the Cotto by the riverside near All Bar One . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub that is located near Ranch . It has a customer rating of 5 out of 5 . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada a family friendly low cost 1 star restaurant , located next to the Rainbow Vegetarian Café . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults serves British style meals in the lower - priced range for adults only . No children allowed . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum boasts cheap prices and a five out of five customer ratings for it 's Indian food . Find it in the city centre near the Yippee Noodle Bar . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a 1 star restaurant which is not family friendly . It serves wines and cheeses and is located in the City centre . \nname : Blue Spice | price : more than £ 30 | area : city centre||We ate at a pricey restaurant called Blue Spice , located in the city centre \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is located at the riverside near The Rice Boat . The customer rating is average , it is cheap , and it is family friendly . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : no||The Wrestlers is an average , high priced , adult friendly Indian establishment . \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man in riverside has a moderate price range and is kid friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a highly rated Indian coffee shop located in the city centre . It is not family friendly . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove , near the riverside , serves Indian food for less than £ 20 , but is not family friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The Golden Curry has Japanese , is children friendly , and has a low customer rating . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : no | near : The Sorrento||There is a restaurant named Browns Cambridge which serves Indian food located in centre city near The Sorrento . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||The Bibimbap House in riverside near Clare Hall has French and has a moderate price range . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located on the riverside near the Express by Holiday Inn , serves excellent , moderately - priced Italian food . Families with children are welcome . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne offers high - quality Italian food . It is located near The Rice Boat . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a restaurant it 's located in near Café Brazil , it 's Japanese Food , and and the type food is public , the price range is Average between £ 20 - 25 . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : no||In the city centre there is a moderately priced French restaurant called Alimentum . It is not family - friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a Fast food serving coffee shop located near The Sorrento in Riverside with a price range of 20 - 25 pounds . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop with a moderate price range , a customer rating of 1 out of 5 that offer Fast food and is not a kid friendly place . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||Indian restaurant and coffee shop , The Eagle , is located in the city centre near Burger King having a moderate price and 3 out of 5 Rating . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Fast food near Café Rouge and is located in the city centre area . Rated low . kid unfriendly \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Located riverside near the Café Adriatic , Travellers Rest Beefeater has a high price range , over £ 30 , but a low customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a Japanese coffee shop with a low customer rating and a £ and up price range . It is located near Ranch . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is five star licensed restaurant . It is in the mid price range and is located near to the Yippee Noodle Bar . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||cheap French food with a 5 out of 5 Rating , The Waterman is Family friendly and can be found by the riverside \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||Although considered family friendly , Giraffe coffee shop is highly priced in comparison to its low score of 1 out of 5 stars . It is located near The Bakers . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Children friendly , highly priced and lowly rated Italian restaurant The Rice Boat is located near the Express by Holiday Inn . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : no||The Alimentum is a moderately priced fast food restaurant . They are located in the riverside area . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||The Plough is a children friendly pub that serves English food . It is near Café Rouge and is in the high price range . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : yes||There is a kid friendly Chinese restaurant in the riverside area . It is called the Alimentum has a high price range . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre||The Mill pub in the city centre has English food in the less than £ 20 price range . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a French restaurant located at the riverside . It can be found near The Sorrento , and it is not a family - friendly establishment . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop situated next to The Sorrento . It falls into the high price range . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle serves Low rated Japanese food . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a family - friendly establishment that serves a light menu of food and alcohol . This average - priced menu is reviewed by customers as 3 out of 5 stars . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers with an average customer rating is kid friendly pub located near the Ranch . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a cheap family friendly restaurant by the riverside . It has a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a poorly - rated Italian coffee shop in the city centre near Burger King . It is cheap and family - friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is a high priced , kid friendly coffee shop that serves Italian food . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves French food with prices ranging from £ 20 - 25 . It is located in the riverside area near The Portland Arms and received a high customer rating . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||With one star , the cheap coffee shop Zizzi is not family friendly . It is located in the riverside area . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Indian food at the price range of £ 20- 25 and is located at the city centre near Express by Holiday Inn . It is not kids friendly and has a high customer rating .. \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||For a family friendly Café that does British food with a 5 star rating then The Golden Curry is the place \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||For prices ranges from £ 20 - 25 , visit the Giraffe restaurant near The Six Bells . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is Fast food with a high customer rating near Ranch with a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies coffee shop serves Indian food in the price range of £ 20 - 25 . Located in the riverside area and has a high customer rating . Not kid friendly . \nname : The Eagle | food : Italian | customer rating : 3 out of 5||The Eagle serves Italian food and is rated 3 out of 5 stars . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum , near the Yippee Noodle Bar in the riverside area , serves Fast food in the price range cheap . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix is a restaurant located in City centre \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly French restaurant near Café Rouge . They are located at the city center and their customer rating is low . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a Japanese , non children Friendly restaurant in the riverside area with a high price range and a customer rating of 3 out of 5 named The Waterman . \nname : Browns Cambridge | food : French | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a French food restaurant in the city centre near The Sorrento . It is family - friendly . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a kid friendly coffee shop located near The Bakers , the highly recommended coffee shop is affordably priced . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||In the riverside area , near Clare Hall , is Bibimbap House , serving Japanese food with a price range of £ 20- £ 25 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a child - friendly coffee shop that gets one out of five stars customer rating . They serve Chinese food and are located in the Riverside area . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||You can get some French food at The Rice Boat located at riverside near the Express by Holiday Inn . While the prices are on the high end , it has received a perfect 5 out of 5 customer rating . Please note that The Rice Boat is not children friendly . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is in the riverside area . It has a high price range and a customer rating of 1 out of 5 . It is near Café Adriatic . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman offers mid - range Italian in a family - friendly environment . \nname : Fitzbillies | food : Chinese | price : high | near : The Six Bells||Fitzbillies , serving Chinese food near The Six Bells , has a high price range . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant located on the riverside near Yippee Noodle Bar . It has a low customer rating and moderate prices . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no||Cocum is a coffee shop where they serve Indian food , they a have a cheap price and an average customer rating . Their restaurant is not family friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a highly rated average priced Fast food coffee shop located in the city centre near The Portland Arms \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop in the city centre , near Burger King . It is high price , not child friendly and has an average customer rating . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : city centre||With a price range of less than £ 20 , The Mill is an inexpensive pub serving Fast food in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a coffee shop who has a low rating . They are family - friendly and serve amazing French food . They can be found near Crowne Plaza Hotel in city centre . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||For average , riverside food head to The Watermans . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||Their is a pub called The Olive Grove in the riverside area . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : yes||In the centre of the city of The Twenty Two , Italian food and child friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is child friendly , offering French food in the Riverside . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Italian food near the Express by Holiday Inn in the city centre . They are in the high price range , are child friendly and have an average customer rating . \nname : The Mill | Type : coffee shop | food : Japanese | price : high | area : riverside | near : The Sorrento||The Mill , offers high priced Japanese food in their coffee shop . Located in the riverside near The Sorrento \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||The Wildwood pub serving expensive French food has been rated low by customers . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a customer rating of 1 out of 5 and a high price range . It is located in riverside near Café Adriatic . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre is Taste of Cambridge . It is a Japanese coffee shop that is family - friendly . \nname : The Golden Curry | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the £ 20 - 25 price range . It is near The Bakers . \nname : Cotto | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is 5 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Try Alimentum in the city centre near Yippee Noodle Bar . They sell Fast food with moderate pricing and have a 3 out of 5 customer rating . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Alimentum is not a family - friendly English food restaurant on the riverside with a price range of less than 20 pounds . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a high priced restaurant in the city centre with a customer rating of 1 out of 5 offering English food . It is not child friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the more than £ 30 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||Next to Café Rouge there is a pub called The Plough , it is a low priced , family friendly wine bar . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : no||Zizzi is an average adult only pub serving Italian food \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||In the city centre near The Rice Boat , The Twenty Two is in the average price range . The Twenty Two is not kid friendly and is rated 3 out of 5 by customers . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House provides Chinese food in the cheap price range . It is near All Bar One . Its customer rating is 5 out of 5 . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Near The Bakers there is an average customer rated coffee shop named Giraffe . It is family friendly and cheap . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel there is a well rated family coffee shop called Browns Cambridge that sells sushi . \nname : Blue Spice | food : Italian | price : high | area : city centre||The Italian restaurant , Blue Spice has a high price range and is located in the city centre . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub that serves Chinese food in an average price range . It is located near Café Brazil . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum serves Italian food at less than £ 20 . It is located in the city centre near Yippee Noodle Bar and has a low customer rating . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant providing Fast food . It is located near of Rainbow Vegetarian Café . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||An average rated , cheap pub with English food , is Wildwood . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Riverside area near Café Adriatic is the Travellers Rest Beefeater above average prices poor customer ratings . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop that provides a wide variety of French food around the average price range . It is located near Clare Hall by riverside . Clowns is a low - priced restaurant that can deliver take - outs . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||Bibimbap House , located near The Rice Boat on the riverside , provides English food . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||In riverside is Alimentum , it offers French food and is family friendly . The price range is less than £ 20 . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada sells Japanese food for less than £ 20 . Located near the Rainbow Vegetarian Café , they are family friendly , but have a low customer rating . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a family oriented sushi restaurant along the bank of the river . It is ranked three star . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Chinese food for £ 20 - 25 and is highly rated by customers . It is child friendly and located in the riverside area near an Express by Holiday Inn . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||French food is offered in the riverside area near The Rice Boat at Bibimbap House . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies is an located in Cambridge , north of The Six Bells . \nname : The Phoenix | food : Indian | customer rating : low | area : riverside||The Phoenix has Indian cuisine by the riverside . Customers rate it as low , \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a kids friendly French food restaurant customer rated 3 out of 5 , providing average price meals in the price range £ 20 - 25 situated near to the Rainbow Vegetarian Café \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||A pub called The Mill is on the riverside and serves Fast food at a moderate price . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop that provides Indian foods with a price range less than £ 20 located in riverside area . It is not family friendly and has a low customer rating . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a Japanese place near The Bakers . It is a kid friendly and low priced . \nname : The Waterman | price : moderate | family friendly : no||The Waterman is situated on the waterfront , it provides all types of cuisine to suit all individual needs and offers good value for money . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : yes||Indian food in Riverside , The Rice Boat , is family friendly with a low customer rating . \nname : Strada | Type : pub | food : Indian | customer rating : high | near : Yippee Noodle Bar||There is a pub called Strada providing Indian food located near Yippee Noodle Bar with high customer rating . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||By the river high priced food and wine at The Mill \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves English food at a moderate price range . Located in the city centre near Express by Holiday Inn , it is not child friendly and the customer ratings are 1 out of 5 . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two serves Fast food and is kids friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop in the riverside area , close to Burger King . This venue is cheap , not recommended for families and has a customer rating 1 out of 5 . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : no||The Italian restaurant , Alimentum , is in the city centre . It is expensive and not children friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : city centre||A pub centrally located in the city that serves Japanese food is The Waterman . It has a low customer rating . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is in the riverside area near Express by Holiday Inn . It is family friendly , serves expensive food and has a five star rating . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is average . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Fast food , average priced restaurant located near the Express by Holiday Inn . This riverside establishment is not family - friendly . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced , French restaurant , situated in the riverside area , near the Express by Holiday Inn . Its customer rating is average and it is not child friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a family friendly restaurant serving English food in the riverside area . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : yes||Giraffe is a family - friendly pub , located in the city centre . It serves English cuisine . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||There is an English restaurant called the Bibimbap House that is near The Rice Boat on the riverside \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has a prices ranging between £ 20- £ 25 and is also highly rated by its customers \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family - friendly Chinese restaurant . It has average pricing and is located in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop is a moderately priced , family friendly eatery providing hamburgers , French fries and soft drinks . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The coffee shop , The Wrestlers is an affordable location city center . and the Raja Indian Cuisine restaurant \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a children friendly pub , it has a low customer rating and goods cost more than £ 30 . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi is a pub , it is not family - friendly , serves English food and has a low rating . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults is a pub with a high customer rating and a price range of £ 20 - 25 situated near Café Adriatic . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : no | near : All Bar One||near All Bar One there 's an Indian restaurant called Green Man that is moderately priced and is not kid friendly \nname : The Punter | food : Chinese | price : £ 20 - 25||The Punter is a restaurant that serves Chinese food with a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is low price coffee shop serving Japanese food Located in riverside with a customer rating of 5 out of 5 but not family - friendly \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||In the riverside area near Clare Hall is Clowns . A coffee shop offering Indian food with a 1 out of 5 rating . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly restaurant which provides Indian foods with a price range of less than £ 20 . It is located near The Bakers \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Avalon||Blue Spice has an average customer rating . There price range is less then 20 . They are family - friendly . It is a coffee shop . They are located in the city centre near Avalon . \nname : Bibimbap House | food : Chinese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a Chinese restaurant with a moderate price range . Located in riverside near Clare Hall . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is cheap and near the Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is an expensive , 5 - star coffee shop near Ranch that also offers select cheeses and wine . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||The Wildwood pub is a 5 star establishment that serves low cost convenient food \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is and Indian restaurant near the Rainbow Vegetarian Café with a moderate price range . It has a customer rating of 1 out of 5 and if kid friendly . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : no | near : All Bar One||Look near All Bar One in the city centre for a moderately priced Chinese restaurant called Green Man . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The whole family can eat at The Wrestlers . The restaurant offers quality Italian cuisine at mid - level prices . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House , near Clare Hall serves Japanese food . If you are in the riverside area , this is a moderately - priced choice , offering Japanese selections between £ 20 - 25 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : high||The Dumpling Tree restaurant serve fancy Indian food . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is not family - friendly with a low price range serving fast food near city centre . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two offers English cuisine in a family friendly environment . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||If you are searching for a pub near The Portland Arms , The Dumpling Tree is perfect for you . It serves French food , but it 's not family - friendly . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : no||Zizzi ; a pub serving average Japanese food in an adult setting . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||Located in the riverside area , The Twenty Two is a family friendly place offering Fast food . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a sushi restaurant that is located close to All Bar One in City centre on the river . It is a good place to eat for a low price without the kids . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||In city centre , near Yippee Noodle Bar , Alimentum serves French food with a price range of more than £ 30 and have a low customer rating . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Browns Cambridge serves cheap Fast food with 5 out of 5 customer rating . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Nearby Rainbow Vegetarian Café is the poorly - reviewed sushi restaurant Strada , which offers medium prices and welcomes families . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Coming in with a high customer rating is Alimentum . Alimentum serves French food . They are in the riverside area near Yippee Noodle Bar and have a medium price range of £ 20 - 25 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix serves French food in city centre . They have a high customer rating and have a price range of £ 20 - 25 . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||Wildwood is a pub that is above the average price range , that serves Fast food , it has a high customer rating . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a sushi restaurant with 3 stars found in the center of the city near Express by Holiday Inn . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||family friendly The Twenty Two at Riverside serves Italian food \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop in the City Centre . This coffee shop is child - friendly , has a 5 out of 5 customer rating and has prices that are higher than average . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle Is a restaurant located next to Burger King , in the low price range \nname : The Mill | Type : pub | food : Chinese | price : cheap | area : riverside||In the riverside area , there is a pub called The Mill which offers cheap Chinese food . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The coffee shop Fitzbillies in the riverside area serves French food . They are rated 3 out of 5 and is not conducive for kids . Prices range between £ 20 - 25 . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman serves Chinese food with an average price range . It is located in the city centre . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located in Riverside , Aromi is a children - friendly coffee shop offering Japanese food . Customers have given it a rating of 5 out of 5 making it a must stop location . \nname : Strada | Type : pub | food : Italian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Near Yippee Noodle Bar is Strada , an Italian pub with a 5 out of 5 rating . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||A fast food family - friendly average customer rating restaurant is called The Golden Curry . It is in the city centre area near Café Rouge . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||There is a medium - priced restaurant The Golden Curry located beside The Bakers that provides sushi . Families are not welcomed there . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater restaurant is moderately priced and can be found in the riverside area near Café Adriatic \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : no||Zizzi is a eating type pub that serves English food . It has an average customer rating and being a pub is not family - friendly . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum , is a restaurant located near ' Yippee Noodle Bar ' . \nname : Midsummer House | food : Japanese | customer rating : high | near : Café Rouge||Near the Café Rouge , is a great Japanese placed called Midsummer House . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low - priced restaurant that is family friendly . It is also located next to the Express by Holiday Inn . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : no | near : Ranch||There is a Japanese restaurant called Cotto located near the Ranch . They have a 5 out of 5 customer rating but are not family - friendly . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : city centre||Rated 5 out of 5 , Clowns is a cheap pub located in the city centre . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Child friendly Fitzbillies is near Express by Holiday Inn . It offers a price range of £ 20 to £ 25 , and is highly rated by its customers . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace has a high customer rating and falls within the £ 20 - 25 price range for French food . It is along the riverside and within a coffee shop environment . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||The Wrestlers offers Japanese food . The prices are high and it 's not child - friendly , but has a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub and restaurant situated next the the Café Brazil and it serves low cost meals . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located on riverside area , near to Café Rouge this offer English food ideal for kids , his rating are over 3 to5 . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a children friendly , riverside English restaurant with a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop named Browns Cambridge near the Crowne Plaza Hotel in the riverside area . It specializes in French food and is kids - friendly . It is rated 3 out of 5 . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is a Japanese place that is children Friendly with a more than £ 30 price range . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a child friendly pub Taste of Cambridge located in river side near The Sorrento . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man serves Italian food near All Bar One and is children friendly . The price range is high and it is in the riverside area . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man in riverside , kid friendly prices £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is an Italian coffee shop based in the city centre , offering a high range of food . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : no||The Rice Boat is a non - family - friendly fast food restaurant with an average customer rating . It is located on the riverside . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||The Giraffe is a kid - friendly French pub located near the riverside . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop near Raja Indian Cuisine in riverside called The Wrestlers with a high price range Italian food . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop serving French food at prices more than £ 30 . Located near Burger King in the city centre , this restaurant is not child friendly and has a low customer rating . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a 5 out of 5 customer rating , is in the more than £ 30 price range and is located near Rainbow Vegetarian Café . \nname : The Punter | food : Italian | price : less than £ 20||The Punter is an Italian restaurant . The food is moderately priced , around twenty pounds per diner . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||There is a medium priced coffee shop called Wildwood in the Ranch area . it is a sit down restaurant with three stars . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||In the riverside area , The Phoenix serves Japanese food at moderate price and is rated 1 out of 5 . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : All Bar One||An average rated Chinese restaurant called Midsummer House is moderately priced . It is near All Bar One . \nname : The Golden Curry | food : Chinese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry Chinese restaurant is a bit pricey but kid friendly . It serves chines food and is located near The Bakers . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : yes | near : All Bar One||By the riverside there is an Indian restaurant named Green Man that is child friendly , with a high price range and is located near All Bar One . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||In the riverside there is a pub called Clowns with a moderate price range and has a customer rating of 3 out of 5 . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum is located beside the riverside close to the Yippee Noodle Bar . It sells cheap English food and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||A cheap Japanese restaurant is Browns Cambridge ; they have a customer rating of 3 out of 5 \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||One of the City Centre 's poorly reviewed Fast food chains called The Waterman offers adult friendly food for under £ 20 \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a highly rated Japanese restaurant located near center city not for family meals . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne , a Fast food place , is located near The Rice Boat , has an average customer rating . It is located by the riverside . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Waterman pub serves fast food its located by riverside and has a low customer rating . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||There is a cheap Japanese restaurant , The Phoenix , by the riverside what received 5 out of 5 star rating . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a three - star , family - friendly sushi pub . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers near The Portland Arms is a coffee shop rated 1 out of 5 fast food \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a French food place , children friendly place in the city centre near the All Bar One . Price ranging more than £ 30 . \nname : The Golden Curry | food : Indian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is providing Indian food in the cheap price range . It is near The Bakers . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman provides Indian food . It is near Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a coffee shop , offering Italian food . It is not child friendly , and has a price range of more than £ 30 , but has high customer ratings \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is located in the Riverside area of town , offering cheap meals in a family friendly environment . We have an excellent 5 out of 5 rating . We hope to see you soon . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||Rated 3 out of 5 by customers the Wildwood Pub , serves Italian food at moderate prices . \nname : Cotto | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is a kid friendly 1 star Japanese place near Ranch . It is called Cotto . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre , The Rice Boat serves fast food and offers high prices , a child free atmosphere and fair customer ratings . It is near the Express by Holiday Inn . \nname : Green Man | Type : restaurant | area : riverside||The Green Man is a restaurant in the riverside area of the city . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||In the high price range is a coffee shop called Giraffe . It is located near The Bakers and has a customer rating of 1 out of 5 . This coffee shop is child friendly . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||In riverside , there 's a kid friendly Fast - food place called Browns Cambridge near The Sorrento . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : city centre||In the city center area is where The Phoenix is located . There French food ranging less than £ 20 , and a low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop located in riverside near Burger King . It has a low customer rating , not kid friendly and costs more than £ 30 . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||The Wildwood pub has an average customer rating and offers French cuisine for £ 20 and under \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||An average rated , kids friendly , relatively affordable Fitzbillies , is nearby Express by Holiday Inn . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||There is a pub called Giraffe which is not far away which serves fine wine , \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne in riverside near The Rice Boat has customer ratings of 5 out of 5 and offers Japanese food . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||The Blue Spice offers Fast food in riverside for more than £ 30 \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Enjoy lunch at the Cocum coffee shop . Not family oriented and not handicap accessible . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Japanese food in the moderate price range . It is located in the riverside area near Raja Indian Cuisine adults only \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is a riverside area restaurant that is family friendly with pricing less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Rated 3 out of 5 by customers , Fitzbillies Indian coffee shop is moderately priced and kid friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Alimentum serves Japanese food for less then £ 20 , and they are very friendly and they are located by the riverside . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Try Cocum , a child - friendly restaurant . Customers give it a 3 out of 5 rating , \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Check out Strada , the French pub , located near Yippee Noodle Bar . Rated 3 out of 5 \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||With a a high price range , located in the city centre near Express by Holiday Inn , The Rice Boat offers English food with an average customer rating . It is not children friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||There is a coffee shop named Cotto near The Portland Arms in the centre of the city . It serves Italian food at less than £ 20 . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Riverside the rice boat near Express by Holiday inn , serves English food , has a high price rate and a star rating of 1 to 5 , its child - friendly . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is located near Yippee Noodle Bar in the City centre \nname : Cotto | food : Fast food | near : Café Rouge||Cotto serves fast food and is located near Café Rouge . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Clowns is a pub in the Riverside area . It is pricey but highly regarded . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is near the Café Brazil and serves fast food pub style for under L20 . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no||Cocum is a fine French coffee shop . It is expensive , not child friendly and doesn 't get good reviews . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A family friendly three - star coffee shop called Zizzi is located in the northwestern corner of the City Centre . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is near Café Brazil and is expensive and has one star . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||There is a mid - range priced coffee shop named Wildwood located on Ranch . Wildwood is rated one star . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||In Riverside there is a place called Fitzbillies , it 's a coffee shop style Indian food place with cheap prices and an average rating , it isn 't family friendly however . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : yes | near : All Bar One||In the city centre is child friendly French restaurant , Green Man . With a mid price point it is near All Bar One . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||There is an average Italian coffee shop , near Clare Hall in the riverside , named Clowns . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub for adults to enjoy average priced Chinese food . It is Near Café Rouge . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant near The Six Bells in the price range of £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a highly rated coffee shop in the City Centre near Burger King . It is aimed at older upper class people serving fantastic coffee and delicious French Food . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is average . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||There is a low priced family restaurant near the river called The Waterman . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | near : Café Brazil||The Vaults is a coffee shop based in the city centre near Café Brazil . It has an average customer rating serving inexpensive food . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House serves Chinese food in the City center near Clare Hall . It is the medium price range . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers Italian food with high ratings and is children friendly . It can be found near Burger King in the city Centre area . Price range is more than £ 30 . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Yes , there is a children - friendly Fast food place called Cotto , it 's got an average customer rating , it 's near Ranch . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge , a service of Fast food in the riverside , close to The Sorrento \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fast food place that costs more then £ 30 and child friendly with a high customer rating and is located near the Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : £ 20 - 25||The Dumpling Tree is a Chinese restaurant that has average Cambridge prices . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant that is cheap and rated average by customers and it is in riverside . It is family friendly and near the Express by Holiday Inn . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||A cheap place to eat , but highly rated - 5 out of 5 , is the Chinese restaurant , The Waterman , near the riverside . It is not family friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||In riverside are , there is a coffee shop of Italian food named Aromi . It has high customer rating and children friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The family friendly Cocum , is a low rated Italian coffee shop , that offer food for less that £ 20 . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop serving low priced fast food . It is family friendly and has a rating of 5 out of 5 . It is located near Café Sicilia . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry restaurant offers a kid friendly dining experience . It is located near The Six Bells . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||Zizzi offers a kids friendly environment in which one could enjoy Italian food served pub style \nname : The Phoenix | food : Fast food | customer rating : low | area : city centre||The Phoenix is a low customer rating Fast food restaurant located in the city . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||A family friendly place is Clowns . It 's cheap . It 's near Café Sicilia . \nname : Green Man | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near All Bar One . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||You can find a child friendly pub close to The Portland Arms it is called The Dumpling Tree and they sell Fast food \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||In the city centre there is a cheap coffee shop with average customer ratings . It 's called The Eagle and is family - friendly , located near Burger King . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an above average priced coffee shop called The Wrestlers , located near Raja Indian Cuisine in riverside . The venue is child friendly . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a restaurant providing refine food in the mid price range . It is located in the city centre . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an adult only Chinese restaurant with a 1 out of 5 customer rating . It is located near the Express by Holiday Inn in Riverside and is moderately priced . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi serves wine and cheese , and has riverfront views . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is low . \nname : Bibimbap House | food : Japanese | area : city centre | near : The Rice Boat||if you are looking for a place the does Japanese food there is a place near The Rice Boat in the city centre called Bibimbap House \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman is a low - priced restaurant , located in riverside area , with a low Customer rating . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||With a customer rating of 3 out of 5 , The Wrestlers serves English food with a moderate price range . It is kid friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a non family - friendly place located in the city centre where you can eat Japanese food for less than £ 20 . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman has a low customer rating . it is in riverside . it is not family friendly . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : no||The Wrestlers is a cheap English restaurant with an average customer rating . It is not family - friendly . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||The Giraffe restaurant offers good French food with a kid friendly area . Located in the riverside area is a pub , The Giraffe . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||The Golden Palace is a low rated restaurant near the riverside . \nname : Bibimbap House | food : Indian | area : riverside | near : The Rice Boat||Bibimbap House has Indian food and is located in the riverside area near The Rice Boat . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kids - friendly coffee shop located in riverside near Crowne Plaza Hotel . Fast food \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A medium price range , decent reviews , and being kid friendly makes Chinese food great . The Rice Boat is located by Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the cheap price range . It is located in the city centre . Its customer rating is average . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||In riverside area there is cheap pub , called The Mill , that serves Italian food . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The Eagle is a restaurant located in the area of Riverside with a price range of moderate and has a customer rating of 3 - 5 . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : no||The Rice Boat provides Chinese food It is located in the city centre . Its customer rating is average . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , is a kids friendly restaurant named The Plough . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is in the city centre near The Sorrento . It offers Italian food and is family - friendly . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||In Riverside there is a family friendly Japanese pub called Giraffe . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Alimentum is child friendly and located in the riverside area . It serves French food ranging more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre||The Golden Palace in the city centre is an expensive coffee shop , which serves Italian food with an average rating . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Indian food in the moderate price range . It is located in the riverside . It is near All Bar One . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The three star coffee shop , The Eagle , gives families an mid - priced dining experience featuring a variety of wines and cheeses . Find The Eagle near Burger King . \nname : Green Man | Type : pub | food : French | area : city centre | near : Café Rouge||Located in the city centre near Café Rouge , Green Man is a French food serving pub . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Green Man is a pub serving Italian selections . It is located in the riverside area near Café Rouge . \nname : The Waterman | food : Chinese | family friendly : no | near : Crowne Plaza Hotel||The Waterman , near Crowne Plaza Hotel , serves Chinese food . They are not family friendly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge near The Sorrento is highly recommended , it offers delicious Japanese food and is suitable for all the family , with beautiful views of the riverside . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap family friendly Japanese coffee shop , The Wrestlers in Riverside , near Raja Indian Cuisine . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is located north of the city centre , near Avalon . It is a moderately priced river - side coffee shop . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||family - friendly Blue Spice is located near the center of the city . This restaurant has an average rating and is priced less than 20 . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Customers rate Strada highly . It is an English pub near Yippee Noodle Bar . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||There is a pub in Riverside called ' The Waterman ' offering French food that received a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a restaurant with Japanese food that is kid friendly and priced around £ 20 - 25 . \nname : Bibimbap House | food : Fast food | area : city centre | near : The Rice Boat||Bibimbap House is a fast food restaurant in the city centre . It is located near to The Rice Boat . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||The adult only coffee shop , The Giraffe , situated near The Bakers , has a 3 out of 5 rating and you can eat for under £ 25 \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two has Fast food and is children - friendly \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : no | near : The Bakers||The Golden Curry , near The Bakers , is a mid priced fast food restaurant that is not child friendly . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Wildwood pub is cheap and has mixed review . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry Chinese restaurant scores highly on customer rating with 5 out of 5 and is family friendly . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : city centre||Indian food with an average customer review in the high price range can be found in the city centre at The Phoenix . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is coffee shop which provides range of Japanese food locate by riverside near Clare Hall , and customer rating is 5 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||Located near Café Brazil is a pub called The Cambridge Blue . It is more highly priced and serves Italian food . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||A pub with a high rating near the Ranch is The Cricketers . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Close to Café Rouge at the riverside is the well - recognized The Golden Curry , a children - friendly restaurant providing English food . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||Found near the river The Waterman pub has decent ratings . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a coffee shop that is not kids friendly . Located in a city centre near Avalon . Has a 5 out of 5 customer rating . There price range is more then 30 dollars . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is located near Rainbow Vegetarian Café with prices around £ 20--25 . \nname : The Punter | food : Indian | price : moderate||The restaurant The Punter serves moderately priced Indian food . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||There is a pub called The Dumpling Tree located near The Portland Arms that provides Indian food in a family friendly environment . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : city centre||There is a pub in the city centre that serves Italian food called The Mill . Pricing ranges below £ 20 . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn , it is high priced gut has a 3 out of 5 rating and is children friendly . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||One star Alimentum sells cheap fast food . it is located near to Yippee Noodle Bar along the riverside . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||In the city centre by the Yippee Noodle Bar , Alimentum is a high priced Indian food restaurant that is rated by its customers as 1 out of 5 . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||Children are welcomed at The Golden Curry . It serves Italian food at quite reasonable prices , and is located near The Bakers . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high end restaurant . It is located in city centre near Express by Holiday Inns . It has high priced Indian food and is kid friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a low - priced restaurant in the city centre that delivers take - away , near Burger King . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is a family friendly Indian restaurant in the city centre , The Waterman , which has moderate menu prices and a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a very affordable coffee shop in City centre near The Portland Arms . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies serves wonderful sushi restaurant located close to The Six Bells . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 1 out of 5||A Fast food restaurant with a 1 out of 5 rating is called The Cambridge Blue \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman Fast food restaurant build near Crowne Plaza Hotel . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an Italian restaurant near The Sorrento in the Riverside area . It is kid friendly . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : city centre||The Waterman is an Indian pub in the city centre that is rated 5 out of 5 by its customers . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada a Chinese is near Rainbow Vegetarian Café . It 's more than £ 30 but it is child friendly and is highly customer rated . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat has a price range of less than £ 20 and its customer rating is low . It is not family friendly . It is near the riverside and is also near Express by Holiday Inn . \nname : The Rice Boat | food : Italian | area : riverside||For Italian food in a riverside location try The Rice Boat . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly coffee shop with a low price range in the northern City Centre next to Raja Indian Cuisine . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop serving Italian food and is priced low with 1 out of 5 stars . It is family friendly . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is located north of the city center . , close to All Bar One and has a view of the river . They offer a family friendly menu and environment , with inexpensive prices to match . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a fast food restaurant along the riverside near the Yippee Noodle Bar . They are mid - priced and have a five - star rating . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , located near Rainbow Vegetarian Café , serves Italian food . It is in the moderate price range and is not kid - friendly . It has a 3 out of 5 customer rating . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly Chinese restaurant near the Crowne Plaza Hotel called The Waterman . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||Zizzi pub is a cheap fast food pub . It is not a family friendly pub . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers coffee shop offers a variety of sushi and coffee for you to enjoy . It is located in The Portland Arms . \nname : Strada | Type : pub | food : French | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a French pub near Yippee Noodle Bar . Customer rating is 1 out of 5 . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a Fast food restaurant called Alimentum in the price range cheap , near The Yippee Noodle Bar in the riverside area . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||Cotto coffee shop is located in the city centre , near The Portland Arms . It offers French food with an average rating and a less than £ 20 price range . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop , located next to Café Sicilia , three star family friendly restaurant \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is a below average but expensive French restaurant near All Bar One . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||A moderately priced option is The Eagle on the riverside , customers rate is 1 out of 5 \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre||Located in the city centre , The Golden Palace is a good Indian eatery and coffee shop . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city centre is a cheap 5 star Japanese coffee shop , The Eagle \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||In the riverside area , there is a Fast - food pub called The Olive Grove that has a price range of less than 20 pounds , but is not family - friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves English food at a high price range but it is customer rated average , children friendly , and located riverside near the Express by Holiday Inn . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Located near All Bar One , Midsummer House offers Italian food for less than £ 20 with a low customer rating . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||The Vaults is an establishment that serves a variety of cheese and wines . The Vaults is not family friendly . \nname : Strada | Type : pub | food : French | customer rating : 5 out of 5 | near : Yippee Noodle Bar||The Strada is a Pub restaurant serving French Cuisine . It is located near to the Yippee Noodle Bar , and has a Customer Rating of 5 out of 5 . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||Serving Chinese food over £ 30 in the city centre , The Phoenix has a high customer rating . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||There is a cheap pub in the heart of the city called Wildwood . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that offers fast food and is family friendly . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||With an average price range of more than £ 30 the Fast food restaurant , Browns Cambridge , still has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||A family - friendly coffee shop named Fitzbillies is located in the city centre area . It has a low customer rating with fast food and a price range less then £ 20 . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an Italian restaurant located by the riverside with a price range of 20 - 25L . This is a kids friendly place and its customer rating is high . \nname : Cotto | food : Italian | near : Café Rouge||Cotto is a restaurant that serves Italian food . It 's located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop offers excellent value for money and an excellent service backed up by its 5 out of 5 customer ratings . Located in Riverside next to Burger King its ideal for those wanting a quick bite to eat . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : no||At Alimentum one can get English food in city centre at a spot for less than £ 20 , although it is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||French food is served at Loch Fyne . It is a child friendly restaurant . \nname : The Vaults | food : Italian | price : £ 20 - 25 | family friendly : yes||The Vaults is an Italian restaurant that is kid friendly in the 20 - 25 price range . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada near Rainbow Vegetarian Café has an average customer Rating serving children friendly Fast food with a high price range . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The Twenty Two pub near Café Sicilia at the riverside has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Near the city centre , The Eagle is a coffee shop providing Indian cuisine . They charge higher prices and have high customer ratings . They do not allow children . They can be found near Burger King . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a family friendly French restaurant near the riverside area . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||You can eat exceptional American cuisine at the Midsummer House restaurant . The restaurant charges higher prices for its quality and is located at All Bar One . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||The Punter a kids friendly restaurant with moderate prices near the riverside area by The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||A coffee shop with Japanese cuisine - The Golden Palace in the riverside area is child friendly , fairly priced and has a good rating . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a pub located by the riverside , with a children friendly environment despite its low customer ratings . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop it a cheap and a family friendly place situated down the riverside near Burger King . This is the main reason for receiving a 5 out of 5 customer rating score . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||A family friendly coffee shop near Avalon on in riverside with a low customer rating and low price range of less than £ 20 is Blue Spice . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat offers cheap English food in Express by Holiday Inn in city centre . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House located near Clare Hall offers cheap fast food . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Expect nothing less than the usual restaurant quality at Wildwood located by Café Rouge . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice is a place providing sushi in the medium price range . It is located at the north of city centre . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : £ 20 - 25 | family friendly : yes||There is a kids friendly restaurant , Loch Fyne that serves Chinese food priced between £ 20 - 25 . \nname : The Rice Boat | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat sells Indian food , 3 out of 5 customer rating , located in Riverside , child friendly \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||If you are looking for a cheap Italian restaurant , try Loch Fyne . Yes , families are welcome . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is an Italian restaurant located in Riverside . It has a 5 out of 5 rating , but is not family - friendly . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||Cotto is a three star family friendly restaurant , located just north of Ranch . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||The Vaults is a kid friendly place serving Japanese food with a price range of £ 20 - 25 . \nname : Cotto | food : English | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a kid friendly English restaurant near Ranch . They have a moderate rating . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub in the riverside area servicing Italian food in the moderate price range and family friendly . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||A coffee shop , The Mill , near The Sorrento in Riverside has some Japanese food for under £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop , a child friendly venue in the city centre serving high priced Italian food based in the city centre with an average customer rating . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The family - friendly restaurant The Wrestlers , while rated low by customers , offers English food priced at less than £ 20 . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is an Italian restaurant with a customer rating of 5 out of 5 . It is located in the city centre near The Rice Boat . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace coffee Shop providing Fast Food . It is located in riverside area . Have 5 out of 5 costumer rating . High range price . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Indian food in less than £ 20 , is offered by a coffee shop named The Eagle , it is family friendly with low customer rating and situated in riverside near Burger King . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : low||The Cambridge Blue restaurant sells Chinese food . The customer rating is currently low . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat serves Chinese food in the riverside area and has a 5 out of 5 customer rating but it is not family friendly \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a child friendly pub serving French food . It is located near Café Rouge and is mid range in price . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults is a fast food restaurant . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||There is a family - friendly pub named The Plough near Café Rouge that has the price range less than £ 20 \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The English restaurant The Waterman in Riverside has an average rating , moderate prices and is not kid friendly . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a child friendly coffee shop that is moderately priced and is near The Bakers . its customer rating is 1 out of 5 . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers serves Chinese food with a high customer rating . Location is not family friendly , price range is more than L30 . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||French food Midsummer House positive customer rating near Café Rouge . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a highly rated , reasonably priced Italian place on the riverside . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a great pub , kid friendly and customer rate it to be a 1 out of 5 and the price range is moderate rating . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man in the riverside area is near the All Bar One . It is family friendly , serves English food and the price range is cheap \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a one star coffee shop Cotto in the City centre near The Portland Arms . It offers mid priced fast food . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Close to Café Sicilia , The Punter is a coffee shop serving mid - price fast food in a family atmosphere . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a kid friendly coffee shop in city centre near Avalon . It has moderate pricing and 1 out of 5 rating . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : no||No , Aromi not sell pub , and its Fast food located in the riverside with rank 5 out of 5 \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no||Near riverside its located The Olive Grove , moderate public restaurant Fast food \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||There is a Japanese restaurant called Loch Fyne which is kid friendly . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||Although the customer rating is low , The Rice Boat near the Rainbow Vegetarian Café costs less than £ 20 . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||Wildwood is an Italian pub with high customer ratings offering items in the £ 20 - 25 price range . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Cocum is an expensive coffee shop offering food for the whole family . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Near the riverside , there is a family friendly French food restaurant named The Rice Boat , which has a customer rating of five out of five . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||rated average by customers , the places name is The Waterman in the riverside area , This is a Italian pub . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A coffee shop that serves French food and that is kids friendly is Cocum , the price range is moderate and has a customer rating of 1 out of 5 \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||Providing cheaply priced Fast food and located near the city centre , The Golden Palace is a coffee shop that is rated 5 out of 5 . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough is a family - friendly restaurant near the Express by Holiday Inn \nname : The Eagle | food : French | customer rating : low||With a low customer rating , The Eagle serves French food . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||With a customer rating of 5 out of 5 , the Travellers Rest Beefeater is located near Café Adriatic in the riverside area . Prices are more than £ 30 . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a pub which , yes , allows kids . The price range is from £ 20 - 25 and it has a customer satisfaction rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre||The Golden Palace is an average rating cheap Fast food coffee shop in the city centre . \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : yes||A restaurant named The Rice Boat is not family - friendly . It is located in the city centre area . It has English food and an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is family - friendly they serve fast food that is in City center that is near Crowne Plaza Hotel that has a low customer rating . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a children friendly restaurant with moderate price range serves English food located near The Bakers \nname : The Vaults | Type : restaurant | food : English||The Vaults is a restaurant that offers English food . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||There is a pub , The Mill , located near the river that serves food and drinks . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge has a low rating and is a high priced restaurant . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a fast food restaurant which is kid friendly and has a customer of 1 out of 5 \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||The Mill pub serves Japanese food in the riverside area with a price range of 20 - 25 pounds . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||A coffee shop that sells cheap food would be the Blue Spice . They are not kid friendly and yet they have earned a 5 out of 5 rating . They are located near Avalon near the riverside . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix has Indian food in the cheap price Range , with a customer Rating of 5 out of 5 , in the city centre . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Near The Bakers is Giraffe . It is a kid friendly , 5 - 5 customer rated , high priced coffee shop . \nname : Midsummer House | food : Fast food | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House , a fast food restaurant , is located near Café Rouge and has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Close to the Express by Holiday Inn is The Rice Boat Italian restaurant . The price range is high , the customer rating is average and they 're not known for being children friendly . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||The Zizzi is an English pub that is kid friendly and has high customer rating . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||A good Italian restaurant in the riverside area is called The Rice Boat .The atmosphere is excellent for children and with good prices . Plus every loves it . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a non family - friendly pub offering low price food . It is located by the riverside . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the riverside area is a family friendly coffee shop serving Fast food with a customer rating of average named Browns Cambridge . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a low priced English restaurant located near The Bakers . It is not family - friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||This cheap Japanese restaurant , The Rice Boat , near Express by Holiday Inn in riverside is family friendly . It has a lovely atmosphere and average ratings . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : cheap||The Dumpling Tree is a restaurant with Japanese food for good prices . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Next to Burger King there is a coffee shop called The Eagle that sells Italian food , it is five star rated , medium priced and family friendly . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Located near The Portland Arms , in the city centre , Cotto is a coffee shop which serves Indian food at less than £ 20 . It has low customer ratings . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop serving food . Located next to Burger King . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||In riverside the coffee shop near The Portland Arms called Cotto has prices less than £ 20 and has an average customer rating . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kids - friendly restaurant with a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle , situated near Burger King in the city centre , is an Indian food selling coffee shop , with a high customer rating due to the price range of more than £ 30 , not child friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||High class falsehood coffee house Wildwood located near the Ranch . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is situated near All Bar One in the city centre . At less than £ 20 its prices are highly competitive for the French food it serves . Yes to families . \nname : Blue Spice | food : English | price : high | area : riverside||Blue Spice is a restaurant that has an English style menu but a high price . It 's is located at the area of the riverside . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , there is a cheap family - friendly restaurant called Strada . It serves British food and has a customer rating of three out of five . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop near Ranch with an average price range and a high customer rating . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||If you 're looking for a Japanese restaurant by the riverside , The Rice Boat offers a children - free atmosphere and is located near the Express by Holiday Inn . The prices ranges more than £ 30 , but customers rave about it , rating it a 5 out of 5 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Visit the Clowns pub in the city centre . While a little pricey , it is top - rated by customers . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is Fitzbillies . It has moderate prices and it child friendly with 3 out 5 ratings . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||A kid - friendly Italian restaurant Green Man is located in the riverside area near All Bar One . It is in the moderate price range . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a Japanese food venue , which is highly rated . It caters for a budget between £ 20 and £ 25 . It is near the Yippee Noodle Bar in the riverside area . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Yes , there is a high rated kids friendly coffee shop , Cocum , they serve Indian food and has a price range of £ 20 - 25 . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Nearby the city centre and Yippee Noodle Bar is a cheap , one star fast food restaurant called Alimentum . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Eat in Loch Fyne a restaurant kid - friendly serving Italian food \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : city centre||There is a pub called The Mill that offers Chinese food where one can eat for less than £ 20 . It is located in the city centre . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||In the Riverside area you 'll find Bibimbap House . They serve fast food near The Rice Boat . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers , is a fast food place that welcomes families . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||If you 're in the riverside area , near Café Sicilia , come check out The Twenty Two pub . We have a 1 out of 5 customer rating . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Near the Crown Plaza Hotel is The Waterman , which provides English food and a kid - friendly setting . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle , located near Burger King in the city centre , is a French coffee shop with has an average customer rating , a less than £ 20 price range , but is family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop providing Fast food in the moderate price range , It is situated in the riverside area and has a customer Rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||There is a coffee shop called Aromi which is by the river and close to the city centre . It is rated one star and is family friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a fast food , child friendly coffee shop . it has a price range of £ 30 and high customer ratings . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||A new place near the riverside called The Eagle is now open . The prices start with 30 £ and the rating is 5 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||Café Rouge is a restaurant in Wildwood with a rating 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||In the city centre , with a 1 out of 5 rating , The Golden Palace is a coffee shop that serves moderately priced fast food . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a Japanese restaurant that is family friendly . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is near The Bakers and serves inexpensive French food . It is not a family - friendly venue . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a beautiful coffee that offers breakfast and a wide range of foods of choice is located in riverside France also have a park for children \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||A poor quality coffee shop is Zizzi and it is not family friendly and has above average pricing . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||Moderately priced French food is served at The Phoenix in the city centre . Customers rate the food 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Zizzi coffee shop in city centre is non family - friendly and has a low customer rating . It has a price range of less than £ 20 . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : yes||The Golden Curry offers Chinese food in a family friendly atmosphere with a low customer rating . \nname : The Waterman | food : Chinese | family friendly : no | near : Crowne Plaza Hotel||You can find Chinese food at The Waterman , near the Crowne Plaza Hotel . The Waterman is not family friendly . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has a five star rating and can easily be found right by Café Rouge . \nname : The Eagle | food : Italian | customer rating : low||The Eagle is a 1 - star rated noodle place . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop serving Indian food neat The Sorrento in the city centre . It is high cost . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a pub . It is located in riverside area . have 3 out of 5 costumer rating . \nname : The Vaults | Type : restaurant | food : Italian||Italian food is served at a restaurant called The Vaults . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||They said yes at the food French in the riverside only The Twenty Two . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French restaurant with no less than £ 20 and low rank , its located in the city centre on the side Express by Holiday Inn \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||Near Café Rouge is a French pub called The Plough that is family friendly and in the less than 20 pounds price range . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop on the riverside near Crowne Plaza Hotel with an average rating serving French food , called Browns Cambridge , it is kid Friendly . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : city centre||Located in city centre , The Phoenix received a 5 out of 5 customer rating . They are a French restaurant . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant providing low quality food . It is located in the north city after The Rice Boat \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The restaurant Loch Fyne serves English style food and has a child - friendly atmosphere . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada , good food at cheap prices . nearby is the Rainbow Vegetarian Café . Children welcome . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Down the road from St. John 's College lies The Waterman , a legendary restaurant provides the highest quality food in a family environment . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a poorly rated fast food coffee shop in the city centre . It is in the moderate price range and is not child - friendly . \nname : Clowns | price : more than £ 30 | family friendly : no | near : Café Sicilia||Clowns is a non - family - friendly restaurant near Café Sicilia . It has a price range more than L30 . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto the coffee shop is close to The Portland Arms by the riverside . They provide Italian and have a high customer rating with a price range of £ 20 - 25 . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a five - star rated restaurant near the River Cam in Cambridge . It that serves a traditional English breakfast . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace , is a cheap coffee shop , featuring French food right in Riverside and rated 5 out of 5 . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||There is an Italian restaurant near Café Rouge called Midsummer House . It has received a low customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto , located north of the city center near The Portland Arms , is a low priced coffee shop . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : riverside | near : Clare Hall||There is a cheap coffee shop located in riverside named Clowns . It has an average customer rating due to the rather dull tasting French food and it 's location , situated just near Clare Hall . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||An Italian restaurant in the city centre near the Yippee Noodle Bar is called Alimentum . Is has an average customer rating , and a cheap price range . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : no | near : The Bakers||An adult oriented , moderately priced Italian restaurant called The Golden Curry is located near The Bakers . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly , highly priced and rated Japanese restaurant in the city center near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Indian | price : £ 20 - 25 | family friendly : yes||Loch Fyne Indian restaurant offers food priced in the £ 20 to £ 25 range and is kid - friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Adult friendly , highly rated and located in the city centre , The Watermans offers cheap Chinese food . \nname : Blue Spice | price : high | area : riverside||A high price place in Riverside is Blue Spice . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||There is a high rated fast food pub on the riverside area called The Waterman \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Try Cotto near The Portland Arms of riverside , with an average customer rating you can enjoy good prices on fast food in a coffee shop setting . \nname : Blue Spice | food : English | price : less than £ 20 | area : city centre||In the city center there is a low - priced English food place called ' Blue Spice ' . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||A French Pub named The Dumpling Tree is located near The Portland Arms . They are child friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is coffee shop offers Fast food . Customer ratings are high . It is located in the city center . Prices are more than £ 30 . The Café is located close to The Portland Arms . \nname : The Twenty Two | food : English | family friendly : yes||Kids are welcome at The Twenty Two which serves English food . \nname : The Punter | food : Chinese | price : moderate||For moderately priced Chinese food try The Punter . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||There is an Indian restaurant called The Golden Curry near Café Rouge in riverside . It has an average customer rating and is not family friendly . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||The Vaults is a cheap family friendly restaurant . \nname : The Vaults | food : Fast food | price : cheap | family friendly : yes||The Vaults is a family friendly fast food restaurant offering cheap food . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a fast food place in the riverside . It has a moderate price range and customer rating of 1 out of 5 . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice is a moderate priced restaurant located in riverside . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid - friendly place that serves English food . It is located in Riverside and has a moderate price range . It has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a kid friendly French restaurant . \nname : The Phoenix | food : Chinese | customer rating : low | area : city centre||The Phoenix is a Chinese restaurant located in the city centre with a low customer rating . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is an Italian coffee Shop near The Ranch serving high priced food . It has a rating of 5 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge is a moderate priced restaurant with a 1 out of 5 customer rating . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||The Blue Spice coffee shop , near Avalon on the riverside , may have a low customer rating but it is known for being kid friendly . Price range is greater than £ 30 . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice is located near the river is a cheap Italian restaurant \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves English style food near Café Rouge . It is child friendly and has an average consumer rating . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a cheap restaurant called The Rice Boat located near the city centre . It is children friendly , has a price range more than 3 pounds , with a 5 out of 5 rating . It is located near Express by Holiday Inn . \nname : Bibimbap House | food : Indian | price : £ 20 - 25 | area : riverside | near : Clare Hall||In riverside , near Clare Hall , is an Indian restaurant named Bibimbap House , it has a price range of 20 - 25 pounds . \nname : Strada | Type : pub | food : Indian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada Indian Pub is near Yippee Noodle Bar . It has a 5 out of 5 customer rating . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : riverside||The Phoenix serves cheap Chinese food with average customer ratings in the riverside area . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a riverside Italian restaurant rated 1 out 5 . But don 't let that scare you away as we have a moderate price range located near Yippee Noodle Bar . \nname : Blue Spice | price : high | area : riverside||Blue Spice is high price range in riverside . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family - friendly pub with prices less than £ 20 . It has a low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop . It has a moderate price range and it sells French food . It is kids friendly and has a 1 out of 5 rating . It is in the city centre near Burger King . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a cheap restaurant called , Fitzbillies coffee Shop that offers burgers . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||When you are in Ranch , be sure to stop in at Wildwood , an inexpensive coffee shop that had great food offerings as well . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||At The Dumpling Tree you can eat in or drink at the pub but yes it is family friendly that serves Italian food near The Portland Arms \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a wine tasting restaurant located near The Sorrento . It does not provide a family - friendly environment . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside area is The Waterman which serves Indian food . It isn 't kid friendly and also has a low customer rating . \nname : The Rice Boat | food : Indian | area : city centre||The Rice Boat provides Indian food in the city centre . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a non kids friendly Indian restaurant that is moderately - priced and is located in the riverside area near the All Bar One . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||The Wildwood coffee shop is a French food themed establishment in a price range below £ 20 . It is located near the Ranch . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : city centre||Clowns is a pub located in the city centre with a low customer rating and a lower than average price range . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter , a family friendly 5 - star burger and coffee shop at a fair price , located near Café Sicilia . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub located in the city centre serving French food at a moderate price . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the riverside area near the Express by Holiday Inn . It is children friendly and offers Chinese food at a high price range with an average customer rating . \nname : The Punter | food : Fast food | price : moderate||The Punter has a moderate price range and serves fast food . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||A child friendly pub Cocum is rated good by customers with food moderately priced . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Near Burger King , at Riverside , there 's a coffee shop that serves French food named The Eagle . It has a low customer rating , is not child - friendly , and it costs more than £ 30 to eat there . \nname : The Rice Boat | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the Riverside area with a customer rating of 3 out or 5 is a very kids friendly Italian food location called The Rice Boat \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderate priced Fast food coffee shop in riverside near Raja Indian Cuisine . It is kid friendly . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a child friendly restaurant situated near the Crown Plaza Hotel . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop is serving pasta in the City centre area . Rated 1 out of 5 with a high priced average meal . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a cheap coffee shop in the city centre . It offers French food and is family - friendly with a 5 out of 5 rating . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||There is family friendly , high priced restaurant in the City centre called Blue Spice . It has a one star rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing family - style dining in the low price range . It is located close to the Café Sicilia . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||A coffee shop that is cheaply priced and highly rated by customers of 5 out of 5 is Blue Spice . It is located in the center of the city near Avalon but is not kid friendly . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two has a customer rating of 5 out of 5 , is is family friendly and is cheap . It is near The Rice Boat in the riverside area . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : city centre||The Phoenix is located in the city centre and has decent reviews for it 's higher priced fast food . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Located along the riverside , near The Sorrento , is Japanese venue Browns Cambridge , which also offers a kid friendly environment . \nname : Midsummer House | food : Chinese | price : high | customer rating : average | near : All Bar One||There is a Chinese restaurant called Midsummer House that is rated average by customers . It is near All Bar One and has a high price range . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||Located on the riverside , Zizzi is a restaurant with prices typically more than £ 30 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian food . The price range is cheap . The customer rating is 5 out of 5 . It is located in the city centre near Express by Holiday Inn . It is family friendly \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||5 star budget Fitzbillies family friendly venue located near the Express by Holiday Inn . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a sushi restaurant with a 5 out of 5 star rating . The price range is high . \nname : The Vaults | food : Chinese | price : high | family friendly : yes||An expensive but child friendly place named The Vaults serves Chinese food . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Italian restaurant , The Wrestlers , is moderately priced , not good for kids and get 3 out of 5 stars . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||For more than £ 30 , near The Portland Arms , in the riverside , there is a coffee shop that offers French food . It 's called Cotto and its customer rating is low \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is a riverside Italian restaurant , it is cheap in price but not child friendly . Available customer reviews rate The Waterman as average . \nname : The Golden Curry | food : Indian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||If you 're in near The Bakers with you 're kids and are looking for a place to spend £ 20 - 25 on Indian food , The Golden Curry is an option . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Near Burger King is a Japanese coffee shop called The Eagle by the riverside which is family friendly and is less than £ 20 with an average customer rating \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||If you are looking for a family friendly Indian place in riverside , with a price range of less than £ 20 , go near All Bar One and check out Green Man . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man provides Indian food in the high price range . It is located in the city centre . It is near All Bar One . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||Located near The Bakers is Giraffe , a family friendly coffee shop . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : city centre||In the city centre is The Phoenix . It offers cheap English food and has an average rating . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a family restaurant with only 1 star rating and very expensive . It 's near to Rainbow Vegetarian Café . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a Chinese restaurant called The Rice Boat which has high customer rating and it 's price range is more than £ 30 . This restaurant is children friendly and it is located in the city center which is near Express by Holiday Inn . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||The pub Zizzi has French food for sale however the customer rating low but is it children friendly yes . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||In Riverside there is a area pub , called The Twenty Two , located near Café Sicilia and is rated 1 out of 5 \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||No , Zizzi coffee shop in the riverside its not high price range but only £ 20 - 25 \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a French restaurant in the low price range . Is is located in The Bakers . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee shop and can eat Italian food . It is located in area of Riverside , near The Sorrento . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||The Mill is a Fast food coffee shop located in riverside area , near The Sorrento . its price range is high . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Italian food in the riverside area near the Express by Holiday Inn . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||There is a pub , The Plough , serving English food near Café Rouge that is not children friendly with prices less than £ 20 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil . It is in riverside area . Customers rate is 1 out of 5 and price range is high . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies has a price range of more than £ 30 , but a 5 out of 5 customer rating and is near The Express by Holiday Inn \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Receiving a customer rating of 3 out of 5 , this restaurant is found in the Riverside area . The coffee shop is not family - friendly , price range is between £ 20 - 25 and is named Fitzbillies , serving French cuisine . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that also serves fast food . With an average customer rating , it is located near The Portland Arms and is not family - friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no||Cocum is an Indian coffee shop . It is not family friendly , but it has a cheap price range and an average customer rating . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree pub is not family - friendly . It offers Japanese food and is located near The Portland Arms . \nname : Bibimbap House | food : Indian | area : city centre | near : The Rice Boat||Bibimbap House is an Indian restaurant in the city centre , located near to The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a restaurant that serves breakfast food and is family friendly . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||If your looking for a moderately priced place to eat , Browns Cambridge has average ratings . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge welcomes you to come check out their average rating Italian coffee shop , found near Crowne Plaza Hotel at thee riverside . A really family friendly place to be . \nname : The Punter | food : English | price : cheap||The Punter has English food for a cheap price . \nname : The Vaults | Type : restaurant | food : Italian||The Vaults restaurant has Italian food . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a Japanese coffee shop which is not child friendly . It has a customer rating of 3 out of 5 . The price range is high . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : city centre | near : Clare Hall||Clowns is located at the city centre near Clare Hall . It is a coffee shop that serves Italian food with a low customer rating . \nname : The Vaults | food : French | price : high | family friendly : yes||The Vaults provides French food at a high price range . It is also children friendly . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Find low cost English food at The Wrestlers a place for family 's with the best ratings . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is located near Rainbow Vegetarian Café and provides deals at a price range of £ 20 - 25 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue , located near Café Brazil , is a pub with prices ranging less than £ 20 . It serves Japanese food . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a family friendly restaurant that serves high rated , £ 20 - 25 Chinese food in the city centre . \nname : The Phoenix | food : Indian | customer rating : low | area : city centre||By the city centre there is a lowly rated Indian restaurant named The Phoenix . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is in the riverside area is family friendly and serves French food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is the new Italian coffee shop in the city centre , providing upscale products and service for a higher price and great customer satisfaction . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family friendly Italian restaurant . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Taste of Cambridge is not a family - friendly pub . It is situated near The Sorrento at the riverside . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||By the riverside is a child friendly coffee shop called Zizzi . Customers have rated the coffee shop as 3 out of 5 and has a high price range . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||A family friendly Japanese restaurant , The Vaults , offers food for less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There is an Italian coffee shop called The Eagle in riverside , near the Burger King . It has a high customer rating with a price range of more than £ 30 and it is not children friendly . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a Japanese restaurant located at riverside . It is not family - friendly , has a price range greater than 30 , and is rated 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||For a child friendly coffee shop in the riverside area , Zizzi is an option . They have a high customer rating and a menu of items greater than £ 30 . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 3 out of 5||Wildwood is a moderate price Range pub , with 3 out of 5 customer Rating , that serves Indian food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Riverside has a cheap fast food coffee shop near Raja Indian Cuisine named The Wrestlers . It 's family - friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar in the riverside area is Alimentum serving Japanese food . With prices less than £ 20 and a low customer rating . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Chinese food It is located in the riverside . It is near Café Rouge . Its customer rating is 3 out of 5 . \nname : The Twenty Two | food : French | family friendly : no||The Twenty Two offers French food and is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is our new Italian coffee shop in the riverside area . High customer ratings and a price range of 20 - 25 make this place hard to pass up . \nname : Strada | food : English | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada has an average customer rating and is not children friendly . It serves English food at a high price range and is located near the Rainbow Vegetarian Café . \nname : Wildwood | Type : restaurant | family friendly : yes||A good family restaurant is Wildwood . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Kid friendly , The Wrestlers serves English food with a moderate price range and a customer rating of 3 out of 5 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is not kid friendly . It serves Japanese food . It is near riverside . It is not kid friendly . It has a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a kid friendly French coffee shop with moderate prices , and a moderate rating . Located in riverside , near Burger King . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman offers Italian food with a price range less than £ 20 . It has low customer rating and there is no family area . It is located in city centre . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||There is a Japanese coffee shop located near The Portland Arms called The Cricketers which is children friendly and rated 3 out of 5 \nname : Midsummer House | food : Japanese | customer rating : 1 out of 5 | near : Café Rouge||The Midsummer House is a Japanese place near Café Rouge . It only has a 1 out of 5 customer rating . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman has received low customer ratings for its expensive Indian food in the city centre . It is not child friendly . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough , near Café Rouge , is an English pub for adults and offers low prices . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : city centre||The city centre has an average restaurant called The Golden Palace . \nname : Browns Cambridge | food : English | price : high | customer rating : average||An expensive , three star rated restaurant that serves breakfast is Browns Cambridge . \nname : Bibimbap House | food : Chinese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Near Clare Hall , in the riverside area , is Bibimbap House which sells Chinese food in the £ 20- £ 25 price range \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||An Indian coffee shop in riverside with a high customer rating , The Eagle , is located near Burger King . The price range is more than 30 pounds and is not child friendly . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a low price restaurant located close to All Bar One . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a one star rated pub that is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||An Italian restaurant called The Wrestlers is a coffee shop in the area of riverside located near Raja Indian Cuisine . It is a children friendly place with a high price range of more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A coffee shop called Fitzbillies is cheap and rated one star and is family friendly \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||There is a lowly - ranked fast food restaurant near The Rice Boat in the riverside area called Loch Fyne . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||Near the riverside is a high rated restaurant . Prices range from £ 20 - 25 . It is called The Phoenix and it serves Fast food . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough , a child - friendly pub near Café Rouge , offers Japanese food with a price range of £ 20- £ 25 . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||It costs between 20 and 25 pounds to eat at the fast food place Browns Cambridge . It received 3 out of 5 stars . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||For an Italian restaurant , try The Cricketers , near All Bar One . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a family friendly Chinese . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||The Waterman has a price range of £ 20 - 25 and is kid friendly yes . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : no||A pub in city centre is called The Olive Grove . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||The Wildwood , a high - rated pub which serves Japanese food , offers its meals at the average price range of £ 20 to £ 25 . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a kid - friendly place near The Rice Boat in riverside . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers , a cheap French Café , is family friendly with 5 out of 5 customer ratings . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||Not Family - friendly , The Golden Curry is a cheap Japanese restaurant located near The Bakers . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is a French restaurant with a family setting and perfect on the wallet . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia is a coffee shop where families can go called The Punter . The Punter is moderately priced . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a low customer rating family - friendly Japanese restaurant in Riverside near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre||The high priced Indian coffee shop The Golden Palace has average ratings and is in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||A one star rated restaurant called The Cambridge Blue is a great place to go for a quick bite to eat . \nname : The Vaults | food : French | price : moderate | family friendly : no||There 's a cheap restaurant in the centre of the city called The Vaults . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is an Indian venue with a price range of £ 20 - 25 located near Express by Holiday Inn in riverside . It is not kid friendly , has a high customer rating and is called The Rice Boat . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Midsummer House , located near All Bar One , is a high priced , moderately rated , fast food venue . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a moderately cheap coffee shop in Riverside near the Raja Indian Cuisine called The Wrestlers . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||A Chinese food restaurant with a customer rating of 3 out of 5 and is kids friendly in the riverside area near Express by Holiday Inn is The Rice Boat , which has a moderate price . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man , located on the riverside near All Bar One , serves expensive , but excellent English food . Families with children are welcome . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a fast food restaurant located near Café Rouge . It has a 5 out of 5 rating and is not family - friendly . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House is a three star restaurant that is located near Café Rouge . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The riverside Italian restaurant The Golden Curry located near Café Rouge is kid friendly and has a 3 out 5 star rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||There is a restaurant Zizzi that is a five star pub and Family - Oriented . \nname : Strada | Type : restaurant | customer rating : high||People like the Strada restaurant . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a site where they sell coffee at an average price average , is located near Café Sicilia . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||The riverside pub Green Man serves Fast food . It is located near Café Rouge . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||The restaurant Alimentum is moderately priced located near Yippee Noodle Bar . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub at a moderate price range . It is located near Café Adriatic . It has a customer rating of 3 out of 5 . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is a cheap restaurant named Strada that has a 3 star rating . It is located less than a mile from Rainbow Vegetarian Café \nname : Midsummer House | food : Chinese | customer rating : low | near : Café Rouge||Located near Café Rouge is Midsummer House , which serves Chinese . It has a low customer rating . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop which provides Indian food . It has a price range which is moderate . It has a customer rating of 1 out of 5 . It is not kids friendly and it is near Café Sicilia . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Situated in the city centre near All Bar One , Green Man offers Japanese food priced at less than £ 20 . The restaurant is not family - friendly . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is an Italian restaurant in the riverside area with an average customer rating . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a child - friendly pub in the riverside district . It offers French cuisine at reasonable prices , typically between £ 20 to £ 25 . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : no | near : The Bakers||Near The Bakers is The Golden Curry . It serves Indian food with a moderate price range . It is not kid friendly . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||Although moderately priced and rated a 3 out of 5 , The Twenty Two is not kid friendly . It is located in riverside near The Rice Boat . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Food at the pub , Giraffe is family friendly and by the riverside . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop which sells mediocre sushi . It is located on the River near to Clare Hall \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap coffee shop called Zizzi , with a high rating . It is located in riverside , and is family friendly . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough serves moderately priced Italian food near Café Rouge . The pub is child friendly . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a adult pub providing French food for less than £ 20 near Café Rouge . \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Near The Six Bells is an Italian restaurant called Fitzbillies . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||A late night 1 star venue near The Rice Boat Riverside called The Twenty Two has an average price for its services . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Situated close to The Six Bells , Fitzbillies has average priced Japanese dishes . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue is a restaurant situated in town . With a one - star rating it sells full English breakfasts . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop with a 1 out of 5 rating that is kid - friendly and serves Japanese food . It is located near The Portland Arms . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||An expensive coffee shop that is family friendly is Cocum . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||Along the riverside , The Phoenix serves its French cuisine , at a reasonable price earning a high customer rating \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Blue Spice is a non - family - friendly establishment in the city centre with low customer ratings and a price range of less than £ 20 . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 out of 5 rated Chinese restaurant suitable for families and those looking for cheap food . \nname : The Punter | food : Fast food | price : moderate||A fast food joint that is not too expensive is The Punter \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap restaurant The Waterman located by the riverside that is family friendly and has a 5 out of 5 rating . \nname : The Golden Curry | food : Chinese | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry serves cheap Chinese food . It is family friendly and is near The Bakers . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a fast food establishment located near Café Rouge in the riverside area . It is child friendly and customers rate it 1 out of 5 \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||If you like Japanese food you might want to try Midsummer House near All Bar One . Keep in mind , though , that it has a low customer rating and is in the higher price range at more than £ 30 . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill is an English style pub that is moderately priced . The Mill is located North of the city center . and serves breakfast items . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House comes very recommended with a high customer Rating , even though the price range is more than £ 30 . They serve Italian food , and are conveniently located near All Bar One . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shot near Café Sicilia . It is highly priced and has fair customer reviews . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults offers fast food for less than 20 . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||A low priced family friendly restaurant The Plough is located near The Bakers . \nname : The Punter | food : Italian | price : high||The Punter serves expensive Italian food . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||The Blue Spice is a city centre coffee shop near Avalon . Customer reviews rate The Blue Spice low , but the price is generally less than twenty pounds . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Chinese food and has a high price range with a customer rating of 1 out of 5 . It is children Friendly and is located by a riverside near the Express by Holiday Inn . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Indian food is served here in this kid friendly environment located by a nearby Ranch , the name of this venue is Cotto and although it has a unique name the customer ratings its received are only a mere one out of five \nname : The Golden Curry | food : Fast food | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a fast food restaurant near The Bakers . The price range is over £ 30 and is also children friendly . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers offer a moderately priced Indian food experience for the whole family . Customers rated 3 out of 5 . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers English food restaurant has moderate prices is kid friendly a customer rating of 1 in 5 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Zizzi is coffee shop in the riverside with £ 20 - 25 , no high price range \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry a fast food restaurant is in the riverside area near Café Rouge . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a family restaurant for a low cost with a five star rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is coffee shop serving French food with price range more than £ 30 . It is children friendly and is located near Raja Indian Cuisine in the riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves Japanese food in The Portland Arms area . This shop in the Riverside area has prices in the high range and a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A child - friendly Indian coffee shop is located near Crowne Plaza Hotel . Its name is Browns Cambridge and it is rated high by customers . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves Fast food . It is placed in riverside area and customers rate it as average . The Rice Boat is children friendly place . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area , near the Burger King , there is a kid friendly coffee shop named The Eagle . It serves French food in the £ 20 - 25 price range and has a rating of 3 out of 5 . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : no | near : All Bar One||Located near All Bar One , Green Man is a high - priced riverside Italian eatery that provides an adult atmosphere . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In Riverside , there is a coffee shop offering fast food near the Crowne Plaza Hotel . It is called Taste of Cambridge and offers a children - friendly relaxed environment . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : 5 out of 5||Wildwood is a cheap - priced pub restaurant that serves Chinese food . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults is a kid Friendly restaurant offering French food in the moderate price range . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a restaurant in the £ 20 - 25 price range , called Blue Spice . It is located in the city centre and is not considered kid friendly . It has a customer rating of 3 out of 5 . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a one star restaurant located near Yippee Noodle Bar . It 's moderately - priced . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is near Rainbow Vegetarian Café that serves fast food they have a high customer rating . They are not kid friendly and have a price range of 20 - 25 euros . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||Riverside has a family - friendly fast food outlet called The Rice Boat that has a 5 out of 5 customer rating \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly Japanese coffee shop located near the Crown Plaza Hotel in riverside \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||There is an expensive , one star , coffee shop located near the river . It is called The Golden Palace . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||If you fancy a quick meal with the children or just a coffee for yourself in riverside setting try the Aromi ; fast food and coffee shop , it has received Average customer ratings \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||The Phoenix is a cheap Japanese eating experience located in City Centre . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Near the Café Sicilia , there is a children friendly coffee shop . It serves Italian food in the high price range . Its customer rating is average . It is called The Punter . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a low - cost , highly - rated fast food coffee shop near Café Sicilia . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice offers Japanese food for less than £ 20 . It is located in riverside . \nname : The Waterman | price : less than £ 20 | family friendly : no||With a price range less than 20 , The Waterman is not family - friendly . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||The child Friendly restaurant Cocum has a low customer Rating . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a Beautiful French coffee shop thats kid friendly , prices range from £ 20- £ 25 and its rated 3 - 5 by its customers . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : city centre||The Waterman is low rated French food pub in city centre . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a family friendly restaurant with an average rating of its customers . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||There is a one star restaurant Wildwood located near Café Rouge \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||Located in the Riverside area , The Twenty Two is a fast food restaurant with a kid friendly environment . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a family - friendly pub that serves French Food . The food is below £ 20 . located by the riverside . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||if you want best Japanese food just go to Bibimbap House price more than 30 £ near to Clare Hall area riverside \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns , a riverside pub , has both a higher than average price and a lower - than - average customer rating . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||Green Man in the riverside area is family - friendly and inexpensive . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||Located near Café Brazil , the moderately - priced ' The Cambridge Blue ' pub serves a range of fast - foods . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||There is an Italian restaurant named Browns Cambridge that is not family - friendly . It is located near The Sorrento by the riverside . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||High price range , Blue Spice serves French food in located in the riverside area . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers restaurant is a French restaurant . It is children friendly with a rating of 5 out of 5 . Most meals cost more than £ 30 . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Indian restaurant in the river side . It is cheap and rating is 5 out of 5 . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a children friendly French food restaurant located near The Riverside . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : city centre||The Waterman is an average Fast food pub in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately priced coffee shop selling fast food in the area riverside . It is child - friendly and has a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child - friendly coffee shop in the City Centre near Café Sicilia . Prices are slightly higher than average . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a fast food coffee shop near riverside and Crowne Plaza Hotel that is kid friendly . \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||A high priced restaurant called Browns Cambridge has a customer rating of 1 out of 5 . \nname : Green Man | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a reasonably priced Italian restaurant in the riverside area . Located near All Bar One and family friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Aromi coffee shop caters to children and serves Italian food . It is in the riverside area and has a customer rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||Highly priced and child friendly Fast food restaurant , The Waterman , is located in the city centre and has an average rating . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : city centre | near : The Sorrento||The Italian coffee shop nearby The Mill serves grub by The Sorrento it is in the city centre and at moderate cost . \nname : The Twenty Two | food : Italian | family friendly : yes||Italian children 's meals at The Twenty Two \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a child - friendly coffee shop , serving Japanese food . It is near to The Portland Arms and has a good customer rating . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||In the city center near Café Rouge , is a 3 star rated family friendly place called , The Golden Curry . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||For between £ 20 - 25 , try the Giraffe restaurant , near The Six Bells . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a Japanese restaurant located near The Bakers that is moderately priced and kid friendly . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves high rated Indian food in the riverside area near The Rice Boat . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a high price range restaurant near The Six Bells \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||An eat Type restaurant that is affordable and located riverside is Zizzi . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a Fast food coffee shop named The Cricketers . 5 out of 5 customers rate The Cricketers as family friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In the city centre , is a coffee shop called Aromi . It serves fast food , it has a 5 out of 5 customer rating , and it is family - friendly . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : yes | near : The Portland Arms||Near The Portland Arms in the city centre area is a children friendly restaurant named The Punter . The price range is more than 30 . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a riverside Indian coffee shop that can be found near to The Portland Arms . The food is averagely priced and the venue has a high customer satisfaction rating . \nname : Loch Fyne | food : Chinese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne , located in the city centre near The Rice Boat supplies Chinese food with a low customer rating . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||Near Café Rouge , in the city centre area , is family Friendly , The Golden Curry . It has Chinese food and an average customer Rating . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||There is a low customer rated French coffee shop with a price range of more than £ 30 located near The Portland Arms in riverside called Cotto \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||The restaurant Cotto serves Italian food . The restaurant is rated middle of the road . It is family friendly and located near Ranch . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||A customer - rated average Italian restaurant , the Cotto is children - friendly and is located near Ranch . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The kids friendly coffee shop , The Punter , offers moderately priced fast food with a customer rating of 3 out of 5 . It is near the Café Sicilian . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a reasonably priced Indian restaurant and coffee shop in riverside near Crowne Plaza Hotel . It receives average ratings and is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop is on the river , by Raja Indian Cuisine . No families . Medium priced \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue is an Italian restaurant with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||With a 3 out of 5 customer rating , this establishment is located in the Riverside area . This coffee shop is not family - friendly , has a price range of £ 20 - 25 and is called Fitzbillies , serving French food . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||A place for Indian food is the Alimentum . A meal price averages L20 . Although it receives low ratings , it is conveniently located next door to the Yippee Noodle Bar in the city center . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , an Italian coffee shop , is rated 3 out of 5 by customers and is kid friendly . It is located neat Burger King in the city centre . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is an adult - only establishment featuring moderately priced Indian cuisine . This establishment earned a customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||There is a fast food pub named The Olive Grove located near the riverside . It has a kid friendly environment at a high price . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : moderate||An Indian food place with a moderate price is The Dumpling Tree \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a mid ranged British restaurant with high customer rating service and is located by the riverside . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto , established close to Ranch , is a Chinese restaurant . It is both rated highly by customers and kid - friendly . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||There is a reasonably priced restaurant Browns Cambridge which is rated one star . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||If you are searching for a Japanese place to go that is not children friendly , The Wrestlers might be for you . It has a great customer rating of 5 out of 5 and a price range of £ 30 and over . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a cheap sushi restaurant . It is family friendly . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in the riverside area near Yippee Noodle Bar , Alimentum serves French food in the price range of £ 20 - 25 . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||For cheap Italian food in a family - friendly pub , look no further than The Plough near Café Rouge . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||The Bibimbap House has a price range of less than £ 20 that serves French food . It is near Clare Hall in the riverside area . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||Zizzi has a one star rating without toilets and serves Italian food . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||For a children Friendly Fast food restaurant check out Browns Cambridge located near The Sorrento in the riverside area \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||For high quality French food , without the kids , go to The Waterman . Its in riverside and costs about £ 20 - 25 . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Phoenix serving Chinese has a 5 out of 5 customer rating . It is in riverside . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides moderately priced Chinese food in the centre of the city . It has a poor customer rating and can be found near the Express by Holiday Inn . \nname : Alimentum | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||Located near the river , Alimentum offers Indian food at a reasonable price of around 20 to 25 pounds a plate . The restaurant is kid friendly . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||There 's a fast food restaurant on the riverside named Alimentum that is kid friendly and has an average price range of 20 to 25 pounds . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Cocum coffee shop is a low - priced restaurant that serves mediocre food to families with small children . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||Near The Rice Boat in riverside is The Twenty Two . It has low customer ratings , as well as cheap food and is not family - friendly . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||The fast food restaurant , Loch Fyne , has an average customer rating and is located on the riverside near The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located at the riverside , Fitzbillies is a kid friendly coffee shop that also serves Indian food . With a 3 out of 5 customer service rating , it is moderately priced . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop located at the riverside near to The Burger King . It is family - friendly with a budget menu but low ratings . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Fitzbillies near The Six Bells servers French food for less than £ 20 \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||Near Café Rouge is Midsummer House which serves English food and has low customer rating . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||In riverside close to The Portland Arms is , The Punter children friendly and items more than £ 30 . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Located in the city center near to the Rainbow Vegetarian Café , The Strada is a 5 star , family friendly mid price restaurant . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||A restaurant over £ 30 , Called Zizzi , is by the riverside \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no||The Olive Grove is a pub offering high priced Chinese cuisine . This establishment is adults - only . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||Pasta can be found at a moderate price at 1 - star rated Wildwood pub . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||With a customer rating of 5 out of 5 , The Rice Boat is a family - friendly Italian restaurant offering cheap food . It is located in the city centre near Express by Holiday Inn . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is a low - priced Indian restaurant in the city centre near Clare Hall \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Loch Fyne is an English food restaurant with cheap prices and a family friendly atmosphere . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap , highly rated , English restaurant , that is located in the city center near Yippee Noodle Bar . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat is a place near Rainbow Vegetarian Café with low customer rating and prices below £ 20 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a high priced coffee shop that is located by Ranch and has been rated 5 stars . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is an low rated Indian coffee shop in riverside near The Portland Arms . They have prices less than 20 pounds . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is s children - friendly pub that situated riverside that serves great English food \nname : The Eagle | food : French | customer rating : average||The Eagle primarily does wine tastings and pairings and is a three star restaurant . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi is an English pub . It is not family - friendly , and has a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : no | near : The Portland Arms||The Dumpling Tree is pub restaurant , it serves Chinese food , the people in the restaurant are not friendly with families , and its location is in The Portland Arms . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kid friendly , Italian restaurant located near The Sorrento in the Riverside area . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is family - Friendly . It has English food in riverside area but with a low customer rating \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub near Ranch . It has good customer ratings and a friendly atmosphere . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a low rated , moderate priced , kids - friendly , French restaurant near the Express by Holiday Inn , in the city centre called The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||A kids friendly Fast food restaurant in the average price range is Loch Fyne . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||Cotto coffee shop has inexpensive French food with average customer rating in the city centre near The Portland Arms \nname : Blue Spice | price : less than £ 20 | area : riverside||There is a food establishment located by the river . Blue Spice is perfect for those who wish to spend less on their food . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||with a price range of more than £ 30 near the Rainbow Vegetarian Café is The Rice Boat that has high customer ratings . \nname : The Golden Curry | food : Japanese | price : high | family friendly : yes | near : The Bakers||The Golden Curry has high prices . It is child friendly . It 's the Japanese place near The Bakers . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : no||There is a cheap Chinese restaurant that has average customer rating . It is called The Wrestlers and is not family friendly . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||An average priced Japanese restaurant named The Waterman in the riverside area boasts a high customer rating , but is not kid friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a lowly rated , non family friendly coffee shop near Café Sicilia . It serves Indian food for under £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The highly rated non - family friendly coffee shop , Browns Cambridge , near Crowne Plaza Hotel in the city centre offers Indian food . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Crowne Plaza Hotel is an Japanese coffee shop located in an area of Browns Cambridge called riverside . typically non family - friendly of average rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto located in the city centre near The Portland Arms is a highly rated average priced Fast food coffee shop \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a mid - price ranged Indian food restaurant . It has low customer rating and is located in the riverside area near the Yippee Noodle Bar . \nname : Strada | Type : restaurant | customer rating : low||Strada is a eating type of restaurant with a low customer rating \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Italian food and is rated 5 out of 5 . It is located in riverside near Café Rouge . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant that serves food less than 20 pounds . It unfortunately has a low customer rating , but makes up in other categories . It is located riverside , is family friendly , and is near the Express by Holiday Inn . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 5 out of 5||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is 5 out of 5 . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a low - priced family restaurant specializing in Italian fare . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a fast service coffee shop in Riverside . It is child friendly and is in the high price range . It is located near Burger King and has an average rating . \nname : The Olive Grove | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||On the riverside , there is a pub called The Olive Grove . It is friendly for kids and had a price range between £ 20 - 25 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Yes The Waterman is a children friendly eat out place located at the riverside with 5 out of 5 customer ratings and offers French food which cost more than 30 pounds \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a one star restaurant providing fast food for a high price . It is located near All Bar One . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||Taste of Cambridge is a moderately priced , three out of five star rated restaurant . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers has Indian food in the price range of more than 30 with a high customer rating and is children friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop with high prices , located near the river \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix is A restaurant serving food at a reduced price and is located near the river \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||There is a Browns Cambridge , with an average customer rating , that offers French food with a price range of less than £ 20 . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||A pub named Clowns has an average customer rating and a high price range . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat located in city centre serves Chinese food and is family friendly . It has a low customer rating . \nname : The Twenty Two | food : English | family friendly : no||The Twenty Two offers English food for adult dining . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||There is a fast food place called The Eagle with a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Near Burger King , The Eagle coffee shop offers low quality at low prices for your family \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is in the city centre that is 20 - 25 euros . They serve Japanese , with a customer rating of 3 out of 5 . They are kid friendly . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||There is a high priced Italian restaurant near The Six Bells called Fitzbillies \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter a French food coffee shop located near Café Sicilia . Customer rating 3 out of 5 has a high price range and is not children friendly . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||There is a friendly for family place called The Wrestlers . It is providing an Italian food in the high prices with 5 out of 5 customer rating . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a cheap place to eat near to the Express by Holiday Inn . It isn 't down as family - friendly but has a 5 out of 5 customer rating . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : no | near : All Bar One||Located near All Bar One in the riverside area , The Green Man , is serving Italian food . They are kid friendly and have a moderate price range . \nname : The Phoenix | food : Italian | customer rating : average | area : city centre||Located in the city centre , The Phoenix has an average customer rating for serving Italian food . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is a family friendly , cheap Indian restaurant . It has average customer rating and is located in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers eat at a coffee shop that is family - friendly with prince range less than £ 20 , serving Japanese cuisine , and located near Raja Indian Cuisine in city centre area . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Fitzbillies is a Japanese restaurant near The Six Bells with a moderate price range . \nname : The Punter | food : Indian | price : high||The Punter serves Indian food and is in the high price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There 's a Fitzbillies coffee shop on the river side , high - priced , good quality . A family place . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a moderate priced Indian food restaurant . Rated 3 out of 5 by customers , it is not a kids friendly establishment . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||High - priced fast food can be found a pub called The Mill located in City centre . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : no||Alimentum is a non kid friendly English food restaurant that is priced high and in the riverside area . \nname : Strada | Type : pub | food : Japanese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a low - rated pub near the Yippee Noodle Bar . It serves Japanese food . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is an Indian restaurant with a moderate price range . It has an average customer rating . It is in Riverside and is kid friendly . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Located near to Café Rouge is Midsummer House , an English restaurant with high customer ratings . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||There is a French coffee shop in the moderate price range named Cocum . Consumers rate it 1 out of 5 . It is not kid - friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : more than £ 30||The Dumpling Tree is an above £ 30 Italian restaurant . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||There is a child friendly restaurant called Loch Fyne \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : yes||English restaurant called Alimentum is a moderate pricing and is kids - friendly located in the city centre \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a one - star coffee shop that serves pasta . It is in the low - price range and is not a family venue . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||There is a cheap coffee shop near Café Sicilia called The Punter . It serves Fast food and has a customer rating of 5 out of 5 , but it is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the city centre . Its customer rating is low . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family restaurant in the high price range . \nname : The Plough | Type : pub | food : Italian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is an Italian pub near Café Rouge that is child friendly and the prices range over £ 30 . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a fast food restaurant called The Rice Boat in the city center , near the Express by Holiday Inn , which serves cheap fast food , it is not very family - friendly and has an average customer rating . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice in riverside is moderately priced \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||A three star restaurant close to The Rice Boat , is Loch Fyne . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||The Clowns coffee shop is a five - star coffee shop with quality Italian food . It is conveniently located on the river across from Clare Hall , outside of City centre . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a French coffee shop in the city centre that offers average prices and high reviews . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a children friendly French food establishment . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||In riverside , there is a family friendly Italian pub named Giraffe . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a average - priced restaurant near the Yippee Noodle Bar highly rated by customers . it serves Italian food . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : yes||There is a family friendly place serving Indian food in the centre of the city called The Twenty Two . \nname : Blue Spice | price : moderate | area : city centre||Blue Spice in the city centre has a moderate price range . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is located next to the river outside of the city centre . It serves higher - end fast food and is situated near to All Bar One \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||With the Ranch nearby , Wildwood coffee shop is serving 5 star burgers and fries at a bargain . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : city centre | near : Café Adriatic||Travellers Rest Beefeater located near city centre , near Café Adriatic is priced low . It has an average customer rating . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry , located near The Bakers , provides for less than £ 30 Japanese food . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies coffee shop is suitable for adults and young children alike , The food is also cheap . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop . This coffee shop is family friend and prices range less then 20 dollars . They offer different types of French food . The Eagle is located in Riverside near the Burger King . Our customer rating is low . \nname : Bibimbap House | food : French | price : more than £ 30 | area : city centre | near : Clare Hall||Bibimbap House , a French restaurant with pricing above £ 30 , is located in the city centre near Clare Hall . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Near Café Rouge is the Wildwood restaurant . It has average customer ratings . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||There is an Italian restaurant located in the city centre called The Waterman . It is not children friendly and has an average customer rating . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada restaurant providing breakfast is located near Rainbow Vegetarian Café . It is family friendly , medium priced and has a 3 star rating . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that serves Japanese food and welcomes family 's . Customers rated 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||in the riverside area there is a coffee shop called The Golden Palace which does Fast food with a 5 out of 5 customer rating \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||City centre has a coffee shop that serves Japanese food named Fitzbillies ; it is not kids friendly and has a high customer rating at a price range of £ 20 - 25 . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi , a Indian food serving pub , has a customer rating of 1 out of 5 and is child friendly . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a high rated attraction for only £ 20 - 25 \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||For a reasonably - priced French meal , try Fitzbillies near The Six Bells . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Italian restaurant Green Man , located in riverside near All Bar One , offer family - friendly fare for less than 20 pounds . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a highly rated , value for money , Japanese coffee shop found in the city centre near Burger King . Families are welcome . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers offers Japanese food in a low price range . However , they are not family - friendly and have a low customer rating . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||All Bar One and Green Man is a full service restaurant , family friendly , and located north of the City center . \nname : Cotto | price : more than £ 30 | area : city centre | near : All Bar One||You will find Cotto at the city centre , near All Bar One . The price range is more than £ 30 . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Italian restaurant near Rainbow Vegetarian Café that is not kids friendly with a moderate price range and a customer rating of 1 out of 5 . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||There is a cheap French restaurant located outside of the City centre called Alimentum . It is close to Yippee Noodle Bar and offers a one star dining experience . \nname : The Phoenix | food : Indian | customer rating : high | area : riverside||The Phoenix provides Indian food It is located in the riverside . Its customer rating is high . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is located in Riverside . It is an Italian pub that is family friendly and has a price range of less than £ 20 . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Café Sicilia is kid friendly , has Clowns and all for about £ 20 - 25 . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Indian food in the less than £ 20 price range . It is near Rainbow Vegetarian Café . Its customer rating is low . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||Located at the edge of the river , The Rice Boat offers a three star family friendly atmosphere with a good choice of food and drinks . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Fitzbillies located at The Six Bells offers good meal deals at affordable prices . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||The Japanese restaurant named Alimentum has a customer rating of 3 out of 5 . It 's in the high price range and located in the riverside area near the Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle in city centre has an average rating and serves coffee and fast food with a high price range near Burger King and is not child friendly . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||there 's a kids friendly Japanese food restaurant called The Rice Boat near Express by Holiday Inn , in the moderate price range with a high customer rating \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||A coffee shop with three stars . The Golden Palace has a three star rating . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||A cheap , English restaurant that is kid - friendly is Loch Fyne . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is a high priced riverside pub rated average by customers . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a moderately priced coffee shop with Indian food . They are rated a 1 out of 5 and children are permitted . The can be located in riverside near Burger King . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies is a Japanese restaurant near The Six Bells . Prices start at £ 30 . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||Highly rated £ 20 - 25 range The Eagle is by the riverside . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub near Ranch with a 5 out of 5 rating . It is family friendly . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||Cotto is a low - rated Sushi bar located near Ranch . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace , located in Riverside , has poor customer reviews . It is an Indian coffee shop with moderate prices . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||With prices under £ 20.00 , The Cambridge Blue is a pub located near Café Brazil and serves French food . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia is a cheap , non - family - friendly Italian coffee shop named The Punter that has a customer rating of 5 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is a high priced kid friendly restaurant called The Waterman serving English food with a customer rating of 1 out of 5 . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||There is a place to eat in riverside that offers French food at a price of more then £ 30 . It is named Blue Spice . \nname : The Rice Boat | food : Fast food | area : riverside||In riverside there is a restaurant called The Rice Boat that serves Fast food . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is an Indian restaurant in the moderate price range . It is not kid friendly and has a customer rating of 1 out of 5 . \nname : Blue Spice | price : less than £ 20 | area : city centre||Blue Spice in in the city centre and has as price range under £ 20 . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||The Giraffe is a kid friendly pub that serves French food in the riverside area . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||A Japanese restaurant that has a price range of £ 20 - 25 in riverside is Bibimbap House . It is located near Clare Hall . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||Near the riverside Bibimbap House near Clare Hall has Italian food at a relatively cheap price . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a moderately priced French restaurant near The Bakers that caters for adults . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||Looking for a cheap coffee in the Riverside area then look no further than The Vaults . Customers are pleased with its products and location , right by the Café Brazil . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is a pub that offers Sushi . Located on the river and pricey . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Average - rated Italian dining at Loch Fyne , located in close proximity to The Rice Boat in riverside . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers provides Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||Midsummer House is a cheap , average rated , Italian restaurant located near All Bar One . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly Fast food coffee shop with a high customer rating in the riverside area near Crowne Plaza Hotel . \nname : The Plough | Type : pub | food : Japanese | price : cheap | family friendly : yes | near : Café Rouge||The Plough is near Café Rouge , and it is a cheap , family friendly pub that serves Japanese food . \nname : The Waterman | food : Indian | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , The Waterman serves Indian food not family friendly . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||For a customer rated 5 out of 5 affordable and family friendly , coffee shop , look for Blue Spice in Avalon beside the river . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a family - friendly Riverside area pub with a low customer rating . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Having a poor customer rating of 1 out of 5 , Strada is a restaurant . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies is located close to the Rainbow Vegetarian Café with a price range of more than £ 30 . \nname : The Eagle | food : Fast food | customer rating : high||If you want fast food with a high customer rating , try The Eagle . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French cuisine restaurant located near Rainbow Vegetarian Café . The price range is moderate , with a low 1 out of 5 customer service rating , including the fact that it is not kid friendly . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Blue Spice is not kids friendly . It is in the city centre and rated 1 out of 5 , but it is a moderate range . \nname : The Twenty Two | food : French | family friendly : yes||Yes , French food at The Twenty Two is the best . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat is located on the riverside and serves English food . It is not family - friendly and customers have given it a low rating . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill coffee shop is near the riverside The Sorrento . It serves Japanese food and its price range is £ 20 - 25 . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults is a cheap , family friendly restaurant that serves Italian food . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a coffee shop in the river side area that is Japanese child friendly and is rated 3 out of 5 . It is named Aromi . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||The Japanese pub called Wildwood has an average rating with prices less than 20 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers French food in the city centre , close to Express by Holiday Inn . Prices are typically over thirty pounds but it is child friendly and customers rate it at 5 out of 5 . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House is near The Rice Boat in the riverside area and serves French food . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub located near Ranch . The pub boats a customer rating of 3 out of 5 and is children friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn , offers French food in the £ 20- £ 25 range , 3 out of 5 customer rating , not family - friendly . \nname : Fitzbillies | food : Indian | price : more than £ 30 | near : The Six Bells||Fitzbillies serves Indian near The Six Bells and cost more then thirty dollars . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms offering cheap wine and cheese . This coffee shops is rated 3 starts . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Next to the river and Burger King is a coffee shop called The Eagle . It is suitable for families and offers medium prices for a one star venue . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a kids friendly Japanese pub restaurant riverside located \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , a high - priced restaurant near The Rice Boat , offers a riverside view , a 3 out of 5 customer rating , and a child - friendly environment . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop that is located near the Crowne Plaza Hotel in the city centre . It is family - friendly but has low customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is in the city centre , it is a coffee shop which serves Japanese food . It is family - friendly and prices range from £ 20- £ 25 . The customer rating is high . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : city centre||Fast food is served at The Mill which is in the moderate price range . It is a pub in the city centre . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi coffee shop is family oriented and is close to the river . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||English food is sold at The Loch Fyne by the riverside near The Rice Boat has a customer Rating of 5 out of 5 . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice is located at the riverside in the moderate price range . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre||In the area of city centre is a pub called The Mill . It has moderately priced English food . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||Cheap family friendly English food at The Plough pub located near Café Rouge . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||Situated in riverside The Twenty Two is a Fast food children - friendly restaurant . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry highly - rated , fast food and is children friendly . It is located near Café Rouge in the riverside area . \nname : Strada | Type : pub | food : Fast food | customer rating : 5 out of 5 | near : Yippee Noodle Bar||with a rating of 5 out of 5 Strada Fast food pub is located near Yippee Noodle Bar \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||There is a restaurant called Midsummer House near All Bar One , it 's high priced and has an average customer rating . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||French restaurant The Phoenix is located by the river . its price range is over 30 pounds and customer rating is low . \nname : The Eagle | food : Chinese | customer rating : 5 out of 5||The Eagle has Chinese food with a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||There is a pub near The Portland Arms that is children friendly and offers Japanese food , called The Dumpling Tree . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a high priced English restaurant in the city centre . It is not children friendly and is rated 1 out of 5 . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : average||Wildwood is an Indian food pub with a high price range and average customer rating . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Near The Six Bells is a Japanese restaurant Fitzbillies , which offers moderate prices . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||There is a high priced venue with a customer rating of 3 out of 5 in the city centre near to Café Adriatic called Travellers Rest Beefeater \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry is a family friendly , three star pasta restaurant . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is a average customer rating that serves fast food that is near The Rice Boat on the riverside \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||Loch Fyne is a fairly priced adult Italian restaurant \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||Located on the riverside with a customer rating of 3 out of 5 is a fast food establishment called The Phoenix . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||There is a cheap restaurant with a customer rating of 5 out of 5 in city centre near Avalon named Blue Spice coffee shop which also a family - friendly \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop with a £ 20 - 25 price range . It is located in the city centre . Zizzi is not kids friendly and it has a 3 out of 5 rating . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||There 's a children friendly place called Fitzbillies . Its near Express by Holiday Inn it has a price range of over £ 30 with a high customer rating . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Chinese food at a moderate price range , a 3 out of 5 service rating , located in Riverside , it 's kid friendly nearby Express by Holiday Inn \nname : The Golden Curry | food : French | customer rating : average | family friendly : no||The Golden Curry serves French Food that is rated average and family - friendly . \nname : The Golden Curry | food : Indian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry offers Indian food . They are price ranged £ 20 - 25 . They are kids friendly and are located near The Bakers . \nname : Midsummer House | food : Chinese | customer rating : 1 out of 5 | near : Café Rouge||The Midsummer House Steve 's Chinese cuisine , has earned a 1 out of 5 customer rating and can be found near Café Rouge . \nname : Cotto | price : high | area : riverside | near : All Bar One||At riverside is am expensive restaurant next to the All Bar One called Cotto . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre sells English food at cheap price with average rating but not family - friendly . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||A kid friendly Japanese restaurant is The Golden Curry . its customer rating is 1 out of 5 \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||Loch Fyne is an adult Japanese style restaurant . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a child - friendly Japanese restaurant in the riverside area - I can certainly recommend it . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a 5 star , family friendly coffee shop located next to the Café Sicilia that provides pasta . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||There is a Japanese coffee shop on the riverside area , near The Sorrento . It is called The Mill and is priced at more than 30GBP . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : no||Fast food can be found at The Rice Boat . Low ratings but city centre location means its good for adults . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that serves French food . They are not family - friendly . They are located near The Portland Arms . The customer rating is 5 out of 5 . \nname : Aromi | Type : restaurant | food : English | area : riverside||Aromi is a restaurant in the riverside area which serves English food . \nname : The Phoenix | food : English | customer rating : high | area : riverside||The Phoenix serves high quality English food in Riverside . \nname : Green Man | Type : pub | food : Chinese | area : city centre | near : Café Rouge||located in city centre near Café Rouge , is a Chinese pub called Green Man \nname : The Vaults | food : Indian | price : moderate | family friendly : no||The Vaults is an Indian restaurant that is kid friendly with moderately priced meals . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : average | near : Ranch||There is an expensive coffee shop Wildwood near Ranch that provides Indian food which has average customer ratings , \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||coffee shop and Indian food , Aromi , in Riverside . Customer rating 5 out of 5 . No children . \nname : The Waterman | price : moderate | family friendly : no||The Waterman is a moderately priced place for adults only . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||a restaurant supplies Indian food on a beautiful riverside site and children friendly stuff make its price cheap its called Fitzbillies \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice in riverside has a 1 out of 5 customer rating , moderate price range and is not kid friendly . \nname : The Mill | Type : pub | food : French | price : high | area : riverside||The Mill is a high price French pub in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||There is a Japanese coffee shop with an average rating called The Golden Palace in Riverside , which costs less than £ 20 . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||The Alimentum is a high customer rated restaurant serving £ 20 - 25 price range Chinese food . It is located near the Yippee Noodle Bar and City Centre . \nname : Strada | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a low priced , family friendly , French restaurant located near the Rainbow Vegetarian Café . It has a rating of 5 stars out of 5 . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||With an average price range and a customer rating of 3 out of 5 stars , The Eagle is located along the riverside . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a Japanese restaurant with a 5 out of 5 rating in the city centre and is family - friendly . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||The Bibimbap House is a lower priced restaurant near Clare Hall near the city centre . \nname : The Phoenix | food : English | customer rating : low | area : city centre||Offering English style food in the city centre , The Phoenix has low customer ratings . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a children friendly Japanese restaurant , located by the riverside . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Cocum is a 5 star coffee shop . It is family friendly but high priced . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two serves English food at the riverside in a non - family - friendly environment . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||For Indian food visit The Rice Boat located in city centre near Express by Holiday Inn . With a high price range , average customer rating and no , is not children friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving fast food in the price range of £ 20 - 25 . Its customer rating is high and it is located in Riverside near The Portland Arms . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : no||Although non - child friendly , fast food restaurant Alimentum can be found in the city centre with a moderate price range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle , is a coffee shop located in the centre of the city near Burger King ; serving Fast food in the high price range . Is not child - friendly venue and customer ratings are average . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a low - priced Chinese pub by the riverside thats family friendly . \nname : Aromi | Type : restaurant | food : English | area : riverside||Aromi is a traditional English restaurant located on the river and offering up breakfast . \nname : The Twenty Two | food : Fast food | family friendly : yes||For fast food and a family friendly environment , try The Twenty Two \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||There is a one - star coffee shop in the low - price range called Cocum . It serves pasta and is inappropriate for families . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no||In the city center is a French coffee shop called Aromi . Don 't bring your kids . Their customer service is excellent . \nname : Loch Fyne | Type : restaurant | food : Italian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a child - friendly restaurant providing Italian food within the £ 20 - £ 25 price range . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||The Phoenix is an Italian restaurant located in Riverside whose rating is high . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||Highly rated Fast food at The Cambridge Blue restaurant . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||a restaurant with a 5 out 5 rating is Strada \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a customer rating of 3 out of 5 with prices ranging £ 20 - 25 . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : no||Offering French food the Alimentum has dishes starting at £ 30 , it is located in the town centre . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 1 out of 5||The Cambridge Blue restaurant has a customer rating of 1 out of 5 . It specializes in Japanese food . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman in the city centre has a rating of 5 out of 5 , English food , isn 't family - friendly and cheap . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Visit Cotto , an Italian restaurant and coffee shop located near The Portland Arms right down by the river . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||There is a French restaurant called The Cricketers and it is located near All Bar One . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | near : Café Brazil||Low priced , average rated coffee shop The Vaults can be found in the city centre close to Café Brazil . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a average priced adult fast food restaurant located in the city centre near the Express by Holiday Inn with high customer ratings . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a coffee shop with a 5 out of 5 customer rating . It is not family - friendly . It serves cheap Italian food . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||Highly rated Fast food is available in the city centre at The Phoenix . The price is cheap . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||Japanese food can be found in a family friendly atmosphere in The Waterman near the Crown Plaza Hotel . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in Riverside near Express by Holiday Inn , is child - friendly , serves English food , has a star rating of 1 to 5 , has a high price range . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||The Italian restaurant , Alimentum , offers food at prices less than 20 . It is located in the city centre and is not family - friendly . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : average||Average pub , the Wildwood , serving cheap Indian food . \nname : The Eagle | food : Indian | customer rating : 3 out of 5||The Eagle provides Indian food Its customer rating is 3 out of 5 . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man offers moderately priced French food in the riverside area . It is kid friendly and located near All Bar One . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn in the city centre . It serves French food . The customer rating is 5 out of 5 . It is child friendly Prices are over £ 30 . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two and offers family area . It has a price range less than £ 20 but with an average customer rating . It is located in the city centre , near to The Rice Boat . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a reasonably - priced coffee shop located near Ranch . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||An expensive and highly rated fast food coffee shop called Wildwood is situated near to Ranch \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto in riverside near All Bar One has a moderate price range . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family restaurant located on the riverside near The Sorrento . They serve French food \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : £ 20 - 25||The Dumpling Tree is a restaurant that serves Chinese food . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : no||Loch Fyne is a restaurant offering moderately priced English food in a child free atmosphere . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is a sushi restaurant in the high price range . It is located near Clare Hall . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly rated Indian food establishment located in Riverside near the Express by Holiday Inn . Children are welcome . Price range £ 20 - 25 . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||Giraffe , a non family - friendly coffee shop with a cheap price range is located near The Bakers and has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||For a non - family English food experience find The Golden Curry near Café Rouge in the city centre . The Golden Curry is rated average by customers . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is an Italian coffee shop with a low customer rating and prices less than £ 20 . It isn 't family - friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family friendly low price coffee shop located close to Café Sicilia . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||hello and welcome to The Eagle , we serve the finest Italian food around and have an average customer rating this is very good for a coffee shop we are near Burger King and our area is the riverside our price range is very cheap for such good food at the moment we are not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Dumpling Tree diner is located at the red pointer . Its fairly priced with good food . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||Higher priced and not child friendly , The Punter is a Japanese coffee shop that gets average ratings . It is located near Café Sicilia . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a pub serving inexpensive food . It is not family - friendly but has a customer rating of 5 out of 5 . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Food , is family - friendly , The Waterman , Cheap , Riverside , 5 out of 5 . \nname : Bibimbap House | food : Chinese | price : high | area : riverside | near : Clare Hall||Bibimbap House , in the riverside area near Clare Hall , offers Chinese food in the higher prices range . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman located city center offers children friendly average Fast food in the high price range . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Average priced pub with an average customer rating Clowns situated riverside \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is kids friendly and serves Indian food in riverside . It is located near Café Rouge and has customer rating of 1 out of 5 . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a child friendly pub in Riverside with a rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers offers Fast food and coffee shop with expensive price near Raja Indian Cuisine . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a fairly inexpensive family friendly place . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a restaurant in the low price range . It is located in the city center . It has really good reviews . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada , restaurant is located next door to ' Rainbow Vegetarian Café ' . \nname : Bibimbap House | food : French | price : cheap | area : riverside | near : Clare Hall||Near Clare Hall , in the riverside area , Bibimbap House serves French food in the price range cheap . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a Indian restaurant with a 5 out of 5 customer rating . It 's located in city center and is near The Rice Boat . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||By the riverside , near Crowne Plaza Hotel , there is a child - friendly coffee shop called Taste of Cambridge that serves Fast food . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||The Waterman is a low rated pub that sells English food , it is at the riverside \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop located within the city centre offering French food at a moderate price . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Express by Holiday Inn with high customer rating located in the centre city that provides French food \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is high - priced family restaurant located on the outskirts of the city . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is a restaurant located in the city centre near Café Adriatic . It has an average rating with meals costing less than 20 pounds . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||At the riverside , The Waterman is a high rated Fast food restaurant that is more than £ 30 and not children friendly . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant offering Chinese food at a moderate price . Customer rating is 1 out o 5 and it is located near Yippee Noodle Bar in Riverside . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a five star coffee shop that welcomes families . It is located near to the Crowne Plaza Hotel . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House is close to Clare Hall in riverside . It is priced high and serves Italian food . \nname : Strada | Type : pub | food : French | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a 5 out of 5 customer rated pub near Yippee Noodle Bar serving French food . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a venue offering Italian food which is child friendly . its customer rating is 1 out of 5 . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is moderate priced serving Italian in the city centre area . They have a customer rating of 3 out of 5 and are not kid friendly . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Located close to Café Rouge , Wildwood restaurant has a 3 out of 5 rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||Located in the city center , The Golden Palace coffee shop has a high rating with a price range of £ 20 - 25 , serving Indian foods . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||A French restaurant with a 3 out of 5 customer rating is called Loch Fyne . They are in the riverside area near The Rice Boat . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge serves Chinese food in riverside near The Sorrento , but is not family friendly . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : no||There is a non - family - friendly pub , Giraffe , which serves Japanese food and is located in the city centre . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||There is a cheap restaurant called The Golden Curry , next to The Bakers , however , it is not recommended for families . \nname : The Punter | food : Fast food | price : cheap||The Punter has cheap Fast food . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a Chinese restaurant with an average price of 20 - 25 . Customers have given this restaurant high ratings and it is located in the riverside area . It is not kid friendly . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is an Indian restaurant located in the riverside area near Clare Hall . The price range is less than 20 pounds . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | near : The Sorrento||The Mill restaurant is a coffee shop that services Japanese food that costs more than £ 30 that is in the City Centre near The Sorrento \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum has Fast food , is riverside , has a high price range , and children friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||With a high customer rating the Japanese coffee shop called The Golden Palace has a price range of £ 20 - 25 . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : yes||Alimentum is a child - friendly , moderately priced restaurant serving Italian food . Located in the city centre area . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Fast food coffee shop in riverside near Raja Indian Cuisine . It is kid friendly and moderate priced . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : no||Not family - friendly , The Golden Curry offers English food with a 5 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||The restaurant Loch Fyne provides a kid friendly environment , serves English food and is moderately priced . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop that serves Japanese food . It is not kid friendly . It has a customer rating of 3 out of 5 and prices range from £ 20 - 25 . \nname : Cotto | food : French | customer rating : average | family friendly : yes | near : Ranch||There is a family friendly French food venue with average customer ratings near Ranch , named Cotto . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||The whole family gave the restaurant Cocum a lower rating at our last visit . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||The Wildwood is a low priced coffee shop next to the Ranch . It delivers fast food and the costumer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop is located north of the city center . This coffee shop is family friendly and low cost , with a rating of 3 out of 5 stars . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : yes||The Giraffe is a family friendly pub serving Chinese food in the city centre . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Near The Bakers with a 1 out of 5 rating , Giraffe is a moderate priced kid friendly coffee shop \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman offers Chinese food that is moderate in price , rated 3 out of 5 , is not kid friendly , and is located near the city centre . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no||low customer rating adults only Japanese food at Aromi coffee shop \nname : The Vaults | food : Chinese | price : high | family friendly : no||The Vaults serves high - priced Chinese food . It is not child friendly . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a reasonably priced one star restaurant . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi in Riverside is a child friendly pub with a great menu , it currently has a customer rating of 3 out of 5 . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough restaurant is located near the Express by Holiday Inn and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||There is a coffee shop called Fitzbillies that serves Indian food . It has a average customer rating with a high price range . Fitzbillies is on a riverside and is not child friendly . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly English restaurant located near Café Rouge in the city centre . It has an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The riverside Japanese coffee shop , The Wrestlers , is located near Raja Indian Cuisine and offers a family friendly environment with an under £ 20 price range . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum restaurant serves fast food with a customer rating of 3 out of 5 . It is located near the Yippee Noodle Bar in the Riverside area . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||French restaurant Wildwood , is a greatly rated place to eat . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : no||The Vaults is a Chinese food restaurant , it cost less than £ 20 . It is not family friendly . \nname : Cotto | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a kid friendly , 3 out of 5 customer rated restaurant near Ranch that serves Chinese food . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue is a moderately priced English pub close to Café Brazil . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is a Fast food coffee shop in riverside near Clare Hall . It has an average user rating . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Eat at the Giraffe coffee shop , It is located near The Bakers . With a kids friendly environment and a high customer rating of high . It is a great place to go to with a price range of £ 20 - 25 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a low - priced Japanese restaurant near Express by Holiday Inn . It has a low customer rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no||The Olive Grove is a public moderate Fast food restaurant located in riverside , for all \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The Mill is a cheap Italian pub by the riverside . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine is a Japanese restaurant and coffee shop named The Wrestlers . It has a price range of more than £ 30 and is kid - friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman pub in riverside Japanese food 5 out of 5 \nname : The Phoenix | food : English | customer rating : low | area : riverside||In Riverside The Phoenix has a low customer rating . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||There is an average rated Italian place near Café Rouge . It is called Midsummer House . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers , a coffee shop serving Japanese cuisine , is located near The Portland Arms . This establishment is kid friendly and has a customer Rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||There is a moderately - priced coffee shop Cotto located in the centre of the city near The Portland Arms that serves French food . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat in Riverside is family friendly , serves Italian food has a rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a low priced Indian food coffee shop in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill is a Japanese coffee shop , located near The Sorrento in the riverside area , has a moderate price range . \nname : The Waterman | price : cheap | family friendly : yes||The Waterman is a cheap place to eat . Yes it is family friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||A coffee shop where the price range is more than £ 30 is rated highly among customers . It is called The Golden Palace and serves Italian food in the city centre . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Near Café Adriatic , the prices are high , the customer rating is about average , its near the riverside , its name is Travellers Rest Beefeater . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||£ 20 - 25 is how much a meal goes for at the restaurant The Golden Palace . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||The Cambridge Blue is a fast food restaurant with an average customer rating . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood French coffee Shop near the Ranch has a price range of more than £ 30 and has a customer rating of 5 out of 5 . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Family friendly , low priced , British restaurant Strada scores 3 out of 5 stars and is located near the Rainbow Vegetarian Café . \nname : Green Man | food : French | price : cheap | area : riverside | family friendly : yes | near : All Bar One||There is a family friendly place that is cheap called Green Man close to All Bar One . They are located by the riverside and provide French . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum is a great place for a coffee for the whole family \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Get your authentic Indian cuisine at The Golden Curry . It is kid friendly . This restaurant is located in Riverside near Café Rouge . The customers rate it 1 out of 5 . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a fast food place with moderate pricing . They are in the riverside area and have a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee Shop which is near Burger King by riverside . It is in the high price range and has a customer rating of 3 out of 5 . The Eagle is not child friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly restaurant that serves Indiana food priced between £ 20 - 25 . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no | near : Café Sicilia||A coffee shop that serves higher priced fast food near Café Sicilia is The Punter . The adult oriented location has an average customer rating . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry is family friendly restaurant . It serves English food . Customers rating for The Golden Curry is low . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne , a Japanese restaurant with a children friendly environment . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||There is a French food restaurant called The Vaults whose prices exceed £ 30 . At this place children are always welcome . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||There is a restaurant close to The Baker called The Wrestlers , which is cheap and suitable for families . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is an Indian coffee shop that is moderately priced but with poor customer ratings located in the city centre . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a high - priced pub that provides Italian food which is children friendly . It is located near Café Rouge . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||For an high price average children - friendly coffee shop near The Bakers check out Giraffe . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop that is in the riverside area near Avalon that gets great customer ratings , is priced moderately , but is not very kid friendly . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum offers cheap Indian food in the city centre , near the Yippee Noodle Bar . It has an average rating by customers . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , a highly rated children friendly restaurant , is located near The Rice Boat , on the riverside . It costs more than £ 30 . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||A low rated cheap Indian coffee shop in Riverside near The Portland Arms is called Cotto . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a medium priced sushi restaurant . It is not family - friendly and can be found near the Express by Holiday Inn along the river . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a French restaurant that is family friendly located in riverside . 5 our of 5 customer ratings . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||there is a nice fast food place that has a 5 out of 5 rating called the Midsummer House which is near the Café Rouge \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is an Indian pub near Café Rouge . Their price range is moderate , and they are kid friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Japanese food . It is located near Burger King , on the riverside . Customer rating is average and yes , it is family friendly . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||in the riverside area near The Rice Boat the Bibimbap House serves Japanese food \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||The Golden Curry has a low rating and isn 't family friendly . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serves English food in the city center . They are moderately priced , not kid friendly , and have a rating of 1 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 1 out of 5||The Cambridge Blue has a customer rating 1 out of 5 , It is a Italian restaurant . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop near The Bakers . It has a high price range and a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a 5 star high priced coffee shop located next to Ranch . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : yes||The Olive Grove restaurant is located at the city centre and is family - friendly . \nname : The Mill | Type : pub | food : Italian | price : high | area : city centre||The Mill Pub , located in the city centre , serves expensive Italian dishes . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a fast food restaurant with a customer rating of 3 out of 5 that is kid friendly . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Green Man is a Italian pub located in riverside near Café Rouge \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a child - friendly French pub named The Dumpling Tree . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman offers Italian food in a family - friendly riverside setting at very reasonable prices . Please note that customers ' reviews have rated it as ' low ' . \nname : The Mill | Type : pub | food : Indian | price : high | area : riverside||In Riverside there is a pub called The Mill that sells Indian food for high prices . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry , located next to The Bakers , is a great and inexpensive get - a - way for the family . \nname : The Vaults | food : French | price : cheap | family friendly : yes||The Vaults is family friendly and serves cheap French food \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||Wildwood is a pub that serves Italian food . They have a 1 out of 5 customer rating , and a high price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city centre there is a coffee shop serving Japanese food called The Eagle . It costs more than £ 30 but has a customer rating of 5 out of 5 . This establishment is not child friendly . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||Alimentum sells Chinese food in the price range of less than £ 20 . Located in the city centre and it is not family friendly \nname : The Olive Grove | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove in the riverside area provides kid friendly pub food with a reasonable price tag \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that has average customer reviews , and they are kid friendly . The Punter is located near Café Sicilia . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi coffee shop is a restaurant offering food and drink . It is rated 5 stars and is family friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||The Dumpling Tree is a restaurant offering English cuisine at a moderate price . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||Chinese food can be found in The Phoenix at a cheap price range , the customers rated it a five out of five and is located by the riverside . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||Low rated and not family - friendly The Golden Curry serves Italian . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Families are welcome at The Wrestlers . Low cost , and 5 - star ! \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a family friendly restaurant that serves Japanese food . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||For family - friendly Indian pub food , check out The Dumpling Tree near The Portland Arms . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is low - priced and provides sushi near the River . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge Japanese coffee shop is family friendly . It is along the riverside near the Crown Plaza Hotel . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice , near the river , is an expensive , family friendly place north of the city . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||The Browns Cambridge is a 1 star restaurant with fair prices . \nname : Cotto | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is an Italian restaurant located near the Ranch . It has a customer rating of 5 out of 5 and it 's family friendly . \nname : Fitzbillies | food : Italian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is located near The Six Bells . Fitzbillies offers Italian food for a moderate price . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue is a pub that serves Italian food . It is located near the Café Brazil and is more highly priced . \nname : The Rice Boat | food : English | area : city centre||In the city centre there is a place named The Rice Boat that serves English food . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the moderate price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 3 out of 5 . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly French coffee shop located on the riverside near Crowne Plaza Hotel . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Strada is children friendly high price rage and as a customer rating of 3 out of 5 \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers serves cheap French food . It is family - friendly and has a customer rating of 3 out of 5 . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||Near Café Sicilia The Twenty Two pub which has a rating of 3 out of 5 and runs along the riverside . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||In the high price range with a customer rating of 1 out of 5 The Phoenix serves English food located in the riverside area \nname : The Punter | price : moderate | area : city centre | family friendly : no | near : The Portland Arms||The Punter is a non - kid friendly and near The Portland Arms and the city center in the moderate price range . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||Next to the Café Brazil is The Cambridge Blue which is a low priced pub that specializes in cheese , wine , and grapes . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry serves reasonably priced , delicious Indian food near The Bakers . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove , a kid friendly , French pub , located riverside , has a price range of £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle , located in the city centre , is a small and authentic Indian coffee shop . The Eagle is mediocre shop but it offers fast , cheap food . It is across from Burger King and is not family friendly . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a French restaurant located in riverside near Express by Holiday Inn called The Rice Boat . \nname : The Punter | food : French | price : cheap||The Punter sells cheap French food \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a one star pub near the Ranch . It is not family friendly . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a Japanese place with outstanding ratings . They are not kid friendly , priced high and located in riverside . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||There is a low - priced restaurant named Midsummer House after All Bar One that providing high - quality foods . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House is a Fast Food restaurant with a high price range . It is located in riverside near to Clare Hall . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a Chinese restaurant located near the Café Brazil , with food costing more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop in the Riverside area , unsuitable for children , which serves average rated Indian food at the higher end of the price spectrum \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced , fast - food restaurant , located on the riverside close to the Express by Holiday Inn . It is kid - friendly and has a customer rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : city centre | near : Clare Hall||If you are in the city centre , near Clare Hall , you will find the Clowns . It is a coffee shop that serves Indian food , but its customer rating is rather low . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap coffee shop that serves Japanese cuisine and is family - friendly . It has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a restaurant that provides Indian food at a low price and has a customer rating of five stars . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix , that received a high customer rating , offers fast food at a moderate price . It is located in city centre . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a price range of £ 20 - 25 , The Waterman is a kid - friendly Japanese restaurant in riverside with a customer rating of 3 out of 5 . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman serves high priced Chinese . It is in the riverside are with average ratings and is kid friendly . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a mid - priced restaurant by the river serving fast food with a one star rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 1 out of 5||The Cambridge Blue is a Japanese restaurant with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||Located in Riverside near Café Rouge , The Golden Curry is a French restaurant with a low customer rating . It is not a family restaurant . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||in the riverside is a family friendly French coffee shop named The Eagle with a price range of less than £ 20 near Burger King has an average customer rating . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||The Phoenix is located in the riverside area . It serves Fast food and has an average rating . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||There is a family friendly restaurant called The Vaults that is within the price range of £ 20 . They serve Japanese food . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge has a low price range and is rated 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is located near The Sorrento , with a high price range . We are an Italian inspired coffee shop in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is located in the city centre , this French coffee shop is in the more than £ 30 range and is not child friendly . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kids friendly pub in riverside . It has a customer rating of 1 out of 5 . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto , serves French near Ranch , is kids - friendly and 3 out of 5 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Phoenix is a low priced restaurant that is in the center of the city with a fair rating . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge has a low customer rating and prices range from £ 30 and more . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada is a kid friendly venue with a high customer rating and an average price range . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In a moderate price range is The Rice Boat Fast food restaurant , located near Express by Holiday Inn in the city centre . It has a customer rating of 1 out of 5 , so not good , and is not family - friendly , so no kids \nname : Strada | Type : pub | food : Chinese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||The Strada is a pub serving Chinese food . It has a customer rating of 3 out of 5 and is located near the Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in the low price range serving fast food located near Burger King on the riverside . It is not family - friendly and has a low customer rating . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||There is an Indian restaurant near Rainbow Vegetarian Café with a high rating that is kid friendly priced £ 20 - 25 . It is called Strada . \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : 5 out of 5||Wildwood is a pub that serves cheap Indian food and has a customer rating of five out of five stars . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child - friendly restaurant , located near Rainbow Vegetarian Café , serves Japanese food , has a high price range , and was rated 3 out of 5 by customers . \nname : The Eagle | food : Chinese | customer rating : low||The Eagle is a Chinese restaurant with low customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a Chinese pub is by the river which caters to children and costs more than £ 30 per meal . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a children friendly Japanese restaurant in the city centre with a price range of more than £ 30 and a low customer rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : 3 out of 5 | area : riverside||Enjoy some Indian food at The Waterman pub located in Riverside rated 3 out of 5 by customers . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||Located near Café Adriatic , The Vaults is a cheap pub with an average customer rating . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kid friendly restaurant that offers Chinese food . It is moderately priced and located near All Bar One . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Japanese restaurant , The Twenty Two , is family friendly and located riverside . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop selling fast food at a high price range , although Cocum is not child friendly , it does receive an average customer rating . \nname : Browns Cambridge | food : Chinese | price : less than £ 20 | customer rating : low||Browns Cambridge provides Chinese food in the less than £ 20 price range . Its customer rating is low . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers , a child friendly restaurant , serves English food . It is highly priced , and has a 1 star rating . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||A coffee shoppe that serves Italian food located at Riverside near Crowne Plaza Hotel and is not kid friendly is Taste of Cambridge . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Located at the riverside near Clare Hall , Bibimbap House serves English food with high priced range . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the high price range . It is located at the riverside , near Burger King . The customer rating is 1 out of 5 and it is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a cheap fast food coffee shop in the city centre . Its rating is average and it is not family - friendly . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is an English restaurant providing food in the low price range . It is not family - friendly and is located near The Bakers . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne , located on the riverside near The Rice Boat , has Italian food with a 1 out of 5 customer rating . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a moderately priced restaurant rated one out of five stars in the Riverside Area \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Kids friendly Browns Cambridge serves Fast food in the riverside area near The Sorrento . \nname : Cotto | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , Cotto serves fast food , has a customer rating of 3 out of 5 and is kid friendly . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||If you want English Food then go and get it from Browns Cambridge which offers food for more than £ 30 and has a high customer rating \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||The Loch Fyne is a moderate priced family restaurant . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The family friendly Indian restaurant , The Golden Curry , is in the riverside area near the Café Rouge and has a high customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no||There is a Japanese coffee shop in City Centre with an average rating called Aromi that is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a Japanese coffee shop with low prices and low customer ratings , located in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||A restaurant with Italian food is The Dumpling Tree . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Cheap food and a family friendly atmosphere at The Wrestlers coffee shop . Situated riverside near the Raja Indian Cuisine . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman has Chinese food . It is in the high price range and has an average customer rating . It is not children friendly . It is located by the riverside . \nname : The Phoenix | food : Indian | customer rating : average | area : city centre||In the centre of this city there is an Indian restaurant named The Phoenix with an average customer rating . \nname : The Phoenix | food : English | customer rating : 3 out of 5 | area : riverside||The Phoenix restaurant is in the riverside area , offering English food . It has a 3 out of 5 rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves Indian food for less than £ 20 . It is located near Raja Indian Cuisine , in the city centre . Not family friendly . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is a high price range , children - friendly , located near the Café Rouge Fast food place to eat . \nname : Loch Fyne | food : English | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant located in the riverside , is near The Rice Boat and its specialized in English food . Customers rate it 3 out of 5 \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a kid friendly Fast food restaurant named Strada near Rainbow Vegetarian Café , Strada has a moderate price range with 3 out of 5 customer rating . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a child - friendly fast - food restaurant called The Waterman , It is by the riverside and has been highly rated by customers with an average price range of £ 20 - 25 . \nname : Strada | food : English | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||The Strada , near Rainbow Vegetarian Café serves English food . Its prices are high , and has only an average customer rating . Also , it 's a no children restaurant . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is an expensive establishment near Express by Holiday Inn with a customer rating of 3 out of 5 . It is not child friendly . \nname : Aromi | Type : restaurant | food : Japanese | area : city centre||The Japanese restaurant ' Aromi ' is located in the city centre . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is an English restaurant with average prices and a 5 - star rating . It 's near All Bar One . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers serves fast food , cheap price , family friendly , with a average customer rating . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||Near the City Centre is The Phoenix , they have pretty good food \nname : The Cambridge Blue | Type : pub | food : Indian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is an average price Indian restaurant near Café Brazil \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||If you want Chinese for dinner or lunch , The Strada , near the Rainbow Vegetarian Café serves you for a moderate price . With a rate of one out of five , it is also kid friendly . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||The Waterman is a pub in the riverside area serving English food . Customer rating is low . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly , coffee shop near Raja Indian Cuisine . It serves French food for less that 20GBP . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is an expensive pub , where children are welcome . It 's not rated highly . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||There is a cheap coffee shop Cotto also providing Italian food . It is near The Portland Arms in the city centre . It is rated average by the customers . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Zizzi is a cheap restaurant in riverside \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove , an adult friendly pub , offers food and beverages at a reasonable price . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman serves English food that has a high customer rating . It price range costs more than £ 30 . It is located in the city centre and has a children friendly atmosphere . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man is a high price range children friendly venue on the riverside . \nname : The Vaults | food : English | price : cheap | family friendly : yes||English food is served at The Vaults . It is low - priced and family friendly . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : riverside||The Mill is moderately priced Chinese food pub in Riverside . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||There is a 5 out of 5 rated place near The Rice Boat in the riverside area named Loch Fyne that serves Chinese . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : yes||The low customer rated , family friendly restaurant , The Golden Curry , offers a variety of Chinese food . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced , child friendly fast food restaurant located near the Café Rouge . \nname : Midsummer House | food : Japanese | customer rating : high | near : Café Rouge||Midsummer House is a highly rated Japanese place near Café Rouge . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||Bargain food at a family friendly pub at The Olive Grove which is situated near the river . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||The Twenty Two is a sushi restaurant in City centre . It is not family friendly . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : city centre||The Phoenix is a popular Fast food restaurant located in city center . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre||The Golden Palace is a cheap Italian coffee shop with an average customer rating located in city centre . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is a restaurant serving English Food . It has received an average rating from previous customers . \nname : The Eagle | food : English | customer rating : 5 out of 5||The Eagle is a 5 star restaurant . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is a 3 star family friendly pub which serves Italian food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high end coffee shop north of the city centre and nearby Raja Indian Cuisine . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside near the Crowne Plaza Hotel is a family friendly coffee shop style restaurant called Taste of Cambridge . They serve fast food type items . \nname : The Phoenix | food : Chinese | customer rating : low | area : riverside||There is a lowly rated Chinese restaurant in riverside , called The Phoenix . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a Japanese coffee shop located near Café Sicilia . It is expensive yet five star rated with family amenities \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||High - cost and average rated British food is offered at The Wrestlers , which boasts a family - friendly atmosphere . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub near The Portland Arms , that serves Japanese food and is child friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , The Wrestlers is an adult only coffee shop , that is low cost . \nname : Aromi | Type : restaurant | food : Fast food | area : city centre||Aromi is a fast - food restaurant located in the city centre area . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies , a moderate priced coffee shop in the city centre , is a kid friendly Japanese food place with a 1 out of 5 rating . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry serves English food , is adult only , is in the city centre , is adult only , has a customer rating of 5 out 5 and is near the Café Rouge . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum providing Japanese Food . It is located in city center near Yippee Noodle Bar . 3 out of 5 Costumer rating and high price range . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has Italian Food , is kid friendly with a high customer rating and can be found in the riverside area near Café Rouge . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Located at riverside , Clowns is a average pub serving at the good role usual prices . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers 3out of 5 rated French food at high price at Rainbow Vegetarian Café \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Next to The Six Bells , is the low - cost restaurant the Fitzbillies . They serves a light menu of British style food along with alcohol . \nname : Green Man | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||There is a kid friendly restaurant called the Green Man near All Bar One that sells fast food for about 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : English | price : more than £ 30 | family friendly : yes||Loch Fyne , a children friendly English restaurant at a price range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||A Family friendly coffee shop The Eagle serves Japanese food with a high price tag and a low customer rating . Located in the riverside area , close to Burger King . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a poorly rated moderate priced kid friendly coffee shop that offers Italian fare . It is located in the city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum , a family friendly Japanese coffee shop , has moderate prices and low ratings . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Family friendly , Blue Spice , is a low rated coffee shop . The expensive coffee shop is located near Avalon by the riverside . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Located near The Rice Boat in the riverside area , Loch Fyne is an Italian restaurant with a 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Near Burger King in the city centre is a coffee shop named The Eagle , which serves Italian at a price range of more than £ 30 and it has a high customer rating . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||The Dumpling Tree is a restaurant English with cheap price \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||Rated 1 out of 5 , Wildwood is a restaurant close to Café Rouge . \nname : Cotto | food : Italian | near : Café Rouge||An Italian restaurant near Café Rouge is Cotto . \nname : The Rice Boat | food : French | area : riverside||For a riverside restaurant serving French cuisine , try The Rice Boat . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||An Italian restaurant called Alimentum has a high customer rating . It is located near Yippee Noodle Bar . It is averagely priced . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||The Vaults is a pub with low customer ratings that is near Café Adriatic . The price range at The Vaults is more than 30 Euros . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The moderate pricing and a 3 out 5 rating , The Rice Boat serves Chinese food in the city centre near Express by Holiday Inn , and they are kids friendly . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||The cheap , low rated pub near Café Adriatic , is called The Vaults \nname : The Vaults | food : Italian | price : high | family friendly : yes||An expensive child friendly Italian restaurant is The Vaults . \nname : The Vaults | food : Chinese | price : moderate | family friendly : no||The Vaults is a moderately priced Chinese restaurant that is not family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low - cost , fast food , 5 - star , coffee shop located near the Burger King by the river . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||For more than £ 30 , the coffee shop Cocum serves Japanese food in a children friendly atmosphere . The hold a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||In the riverside area there is a family friendly coffee shop named Fitzbillies . It has a low customer rating , and the price rage is less than 20 . It serves French food . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||For moderately priced fast food , you could try a family - friendly establishment called The Rice Boat , it can be found in the city centre near Express by Holiday Inn but it has a poor customer rating . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree , located near The Portland Arms , serves Italian and is also child friendly . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Browns Cambridge is a high priced Italian restaurant . It is was rated average among customers . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Low rated Strada offers family friendly food for less than 20 . \nname : Bibimbap House | food : Chinese | price : moderate | area : riverside | near : Clare Hall||Moderately priced Chinese food in the riverside area Bibimbap House is near Clare Hall \nname : The Mill | Type : pub | food : English | price : £ 20 - 25 | area : riverside||The Mill , a pub with English food with a price range of £ 20 - 25 in the riverside \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum is a kids friendly coffee shop with average customer service . It serves fast food in the high price range . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers coffee Shop , located in near The Portland Arms . The Cricketers is children friendly . It have high customer rating fast food coffee Shop . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||In the city centre is a fast food coffee shop with a high customer rating and a price range of more than £ 30 , it is called The Golden Palace . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Italian restaurant in the city centre on side Express by Holiday Inn with low rank no less than £ 20 \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : yes||The Wrestlers provides Chinese food in the high price range . Its customer rating is average . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||A 3 out of 5 rating and a riverside drink at The Vaults coffee shop . Prices range between £ 20- £ 25 located near the Café Brazil . \nname : The Twenty Two | food : French | family friendly : no||The Twenty Two is a French restaurant that is non - family - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||Near Burger King is an expensive Indian coffee shop called The Eagle . It is not child friendly and is in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Beside Raja Indian Cuisine in riverside there is a child friendly high priced fast food and coffee shop called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 25 The Wrestlers offers a kid friendly coffee shop serving fast food located in riverside near Raja Indian Cuisine \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop providing Indian food in the high price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a family - Friendly restaurant with a customer rating of low . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing French food , and is very close of Café Sicilia \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a British feel to it , The Waterman will sell you a full English breakfast . Situated next to the river you can bring your children and babies . They have earned three stars and are in the mid - price range . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is 5 out of 5 . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is located down by the riverside of Cambridge . It serves Indian cuisine and customers say it 's a 1 out of 5 . Child friendly atmosphere makes for great family stop . \nname : The Waterman | price : cheap | family friendly : yes||For a cheap family friendly pub try The Waterman . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||By the river is a Japanese restaurant called Alimentum with discount prices for families . \nname : The Rice Boat | food : Chinese | area : riverside||The Rice Boat is a Chinese restaurant in the area of Riverside . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Dumpling Tree is a restaurant that serves fast food for less than £ 20 . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle is a fast - food burger and fries restaurant with a 3 star rating . \nname : Zizzi | Type : restaurant | price : high | area : riverside||For a high priced restaurant in the riverside area try Zizzi . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||A fast food restaurant , called Loch Fyne , is children friendly . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is child friendly near a Ranch and has a Low customer rating \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Japanese venue Bibimbap House . Price range £ 20 - 25 . Located near Clare Hall in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside||The Golden Palace is an averagely rated Indian coffee shop that serves cheap food in Riverside . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry , a family friendly restaurant , is located near The Bakers and has a variety of Indian food at cheap prices . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||An adult establishment serving Italian food is The Wrestlers . It has a customer rating of 1 out of 5 and a high price range . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a French eatery located in the city centre . They have high customer ratings and cost between £ 20 - 25 but are not child friendly . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man eatery provides Japanese food in the moderate price range . It is located in the riverside area near All Bar One adults only \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||freshly prepared ethnic plates Fitzbillies coffee shop overlooks the river . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Chinese place is near Express by Holiday Inn in the city centre . It is children friendly with average customer ratings . It 's price range is high . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||If you want cheap Italian food then go to the restaurant called Loch Fyne it is very family friendly too . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a 3 star Japanese sushi restaurant in the higher price range , located near All Bar One . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low priced family friendly Italian restaurant with a three of five star rating . It is located in the city centre near Express by Holiday Inn . \nname : Midsummer House | food : English | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a fairly cheap restaurant located near Café Rouge , they are currently offering English food . The customer rating is 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the less than £ 20 price range . It is located in the city centre . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is an inexpensive , family - friendly restaurant called The Rice Boat in the riverside area near Express by Holiday Inn . This restaurant serves English food and has received a customer rating of 5 out of 5 . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada children Friendly restaurant receives low customer Rating with a price Range of more than 30 . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a family friendly , expensive pub situated on the river . \nname : The Vaults | food : Indian | price : £ 20 - 25 | family friendly : yes||The Vaults is an Indian food restaurant with a price range of £ 20 - 25 and is kid friendly . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers provides Chinese food in the moderate price range . Its customer rating is 3 out of 5 . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||The Clowns in riverside is a pub and the price Range is high but has a customer Rating of 3 out of 5 \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||There is a cheap fast food restaurant near Yippee Noodle Bar in the city centre . It is called Alimentum and it is cheap with an average customer rating . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant located in the Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a 1 - star coffee shop providing fast food in the low price range . It is located beside Café Sicilia and not suitable for families . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : city centre||The Mill pub serves French food , have a price range of more than £ 30 and are located in city centre . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two has a customer rating of 3 out of 5 . It is kids - friendly and has a price range of £ 20 - 25 . Its near The Rice Boat in riverside area . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||There is a coffee shop , named Wildwood , located near Ranch , its price range is on the higher side being more than £ 30 , it serves fast food and has a high customer rating . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a pub that serves fine seafood cuisine at a moderate cost located conveniently next to Café Brazil come check us out . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Clowns is a pub providing refreshments in the low price range . It is located to the north of the city centre . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat at Express by Holiday Inn offers good complete meal deals at very affordable prices . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an Indian restaurant in the cheap price range with a customer rating of 5 out of 5 . It is located in the city centre near Yippee Noodle Bar . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : average | near : All Bar One||There is a low - priced restaurant , Midsummer House located near All Bar One which has an average customer rating . \nname : Browns Cambridge | price : high | customer rating : average||Browns Cambridge have an average customer rating with a high price range . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||There is a place that serves Japanese food that is family friendly for less than 20 pounds but has a low customer rating . It is called The Wrestlers . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is located near the Yippee Noodle Bar north of the city center . Alimentum is a higher priced dining place that features wine and cheese . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||The Waterman , a French cuisine pub in the riverside area with outstanding ratings . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi coffee shop serves Indian cuisine and is highly rated it is by the riverside and is family friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a cheap , Italian coffee shop in city centre , near The Portland Arms . They have a customer rating of 5 out of 5 . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant providing English foods and located near Express by Holiday Inn in city centre with rating of 1 out of 5 . It is not kids - friendly . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Located riverside near Yippee Noodle Bar , English venue Alimentum has prices below £ 20 but a low customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is located in the riverside area and is considered child friendly . It is a coffee shop and provides Japanese food . It has a customer rating of 3 out of 5 . \nname : The Punter | food : English | price : moderate||The Punter serves English food and is reasonably priced . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Kids love the Giraffe , English riverside pub . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||There is this place named The Rice Boat that provides Indian food in a cheap price range and has an average customer Rating but is not family Friendly . It 's located in the riverside near Express by Holiday Inn . \nname : Loch Fyne | food : Indian | customer rating : average | area : city centre | near : The Rice Boat||Located near The Rice Boat in the city centre is an Indian restaurant called Loch Fyne , with average customer reviews \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre near the Crowne Plaza Hotel , is a not family - friendly French coffee shop that is rated 5 out of 5 . It is Browns Cambridge . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an oriental sushi bar located on the riverside , offering a family - friendly environment and high quality food in the high price range . Rated 3 stars . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap coffee shop and it 's family friendly . It serves Japanese food and its customer rating is 5 out of 5 . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers serves cheap French food . It is not family - friendly , but customers rate it as a 5 out of 5 stars . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat in riverside near Express by Holiday Inn serves Indian food costing more than 30 pounds . They have a high rating , but are not kid friendly . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is an Indian food place with a price range of 20 - 25 pounds . It has a high customer rating and is located in the city centre . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee shop , on the riverside near The Portland Arms , serves moderately - priced , good French food . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove is a high priced fast - food pub in riverside that is child friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is a Japanese coffee shop called The Eagle located near Burger King in the riverside area . It has a price range of less than 20 pounds and a low customer rating . It is also family - friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a place that does Japanese food in the £ 20 price range with average customer ratings that is not child friendly in the city centre near the Express by Holiday Inn \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : city centre | near : Café Sicilia||There is a pub in the city centre called The Twenty Two located near Café Sicilia that has a 5 out of 5 customer rating . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||Child friendly restaurant called The Waterman that has reasonably priced meals for around £ 20- £ 25 . \nname : The Punter | food : English | price : high||The Punter serves English food . It has a high price range . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop located near Crown Plaza Hotel . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||I heard of this coffee shop called The Vaults near Café Brazil in riverside , its moderately priced but only has a 1 star customer rating . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns pub style diner in Riverside has an average customer rating with high prices . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto coffee shop serves above average food with prices starting at more than £ 30 . Cotto coffee shop is located near The Portland Arms in the riverside area . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves cheap English food and has a 5 out of 5 rating , it 's located in the city center near Express by Holiday Inn . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children friendly coffee shop on the riverside , near the Crowne Plaza Hotel , that offers fast food . \nname : The Plough | Type : pub | food : Japanese | price : high | family friendly : yes | near : Café Rouge||The high priced children friendly pub , The Plough , offers Japanese food and is located near Café Rouge \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Chinese food in the moderate price range . Its customer rating is 1 out of 5 . \nname : Cotto | food : Japanese | customer rating : average | family friendly : no | near : Ranch||Near Ranch , is a Cotto , a Japanese eatery , which isn 't family - friendly and has average customer ratings \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||For Italian food on the riverside , try The Waterman . The Waterman is highly rated , and with reasonable prices - though it 's not child friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||Not viewed as child friendly , average rated coffee Shop , The Punter , serves Italian food and it is a highly priced alternative to Café Sicilia which sits nearby . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers coffee shop , near The Portland Arms serves Japanese food . It has a low customer rating and is not family - friendly . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||The riverside pub Clowns should cost less than £ 20 and has an average customer rating . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Wildwood is a pub that serves Japanese food . It is highly rated and offers an average priced menu . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is an inexpensive Italian restaurant rated 5 out of 5 stars . It is located near All Bar One . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly fast food place that has a price range less than £ 20 and located in the riverside area . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto is a moderately priced establishment found in riverside near All Bar One . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||For a high priced 1 star pub Wildwood is the place to go . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||Located in the city centre near Burger King , The Eagle is family - friendly with a low rating . It 's in the less than £ 20 price range and serves Italian food . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a high priced coffee shop but does offer facilities for families \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop providing family - style dining .. It is located close to the city center and has a superb view across the river . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove pub providing Japanese Food . It is located in riverside area . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The riverside fast food restaurant , The Rice Boat , is an okay children friendly place to eat with customer ratings of 1 out of 5 . \nname : The Plough | Type : pub | food : Indian | price : more than £ 30 | family friendly : yes | near : Café Rouge||If you want Indian food with a price range of around £ 30 , then The Plough is a good choice . It is children - friendly pub located near Café Rouge . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman having Indian food in less than £ 20 , with low customer rating , located in city centre but no family friendly . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The restaurant Alimentum is a high range Chinese joint . Customer ratings is 1 out of 5 and this restaurant is located near the city centre near the Yippee Noodle Bar \nname : Blue Spice | price : cheap | area : riverside||A cheap restaurant called Blue Spice is located in the area of riverside . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum offers Chinese food at low prices . You can find it in the city centre and it is family friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 1 out of 5||There is a fast - food restaurant with a customer rating of 1 out of 5 called The Cambridge Blue . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a cheap , family friendly Fast food and coffee shop in the Riverside area . it has a rating of 5 out of 5 . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers Chinese restaurant , cheap prices , child friendly , 5 out of 5 customer ratings \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a kids Friendly Fast food restaurant with moderate price range . It has customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | near : The Portland Arms||In the city centre , there is a highly priced and averagely rated coffee shop . It is located near The Portland Arms and it provides Italian food . Its name is Cotto . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a restaurant with a 5 out of 5 rating that serves low - priced Japanese food . It 's near All Bar One . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||There is an inexpensive restaurant called Zizzi located near the river . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a low - priced coffee shop north of the city centre and neat the river . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the moderate price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 1 out of 5 . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||Far from the city center and by the river is the 3 star quality The Phoenix restaurant \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers which serves English food in price range of more than £ 30 , it is not children friendly and has a high customer rating . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 5 - star rated , inexpensive sushi restaurant near Express by Holiday Inn . Children are welcomed . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||the Alimentum at riverside is kids friendly and serves French food costing £ 20 - £ 25 \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is Japanese food near The Bakers , is kids friendly and only costs £ 20 - 25 . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers serves moderately priced Chinese food . It has average customer ratings and is not kid friendly . \nname : The Punter | food : Indian | price : £ 20 - 25||The Punter provides Indian food in the £ 20 - 25 price range . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry offers Italian food and has an average customer rating . Children welcome . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||Italian food restaurant at The Dumpling Tree in the moderate price range \nname : Cotto | food : Indian | customer rating : low | family friendly : yes | near : Ranch||Cotto serves Indian food near Ranch . It is family friendly and has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : no||Loch Fyne is a high - priced Indian food restaurant that is not children friendly . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : yes||Alimentum serves Indian food and has a moderate price range . It is in riverside and is kid friendly . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Avalon||Blue Spice is an averagely priced coffee shop located in the riverside area near Avalon . It is not child friendly but it does have high customer ratings . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a Japanese pub near Café Rouge . Their prices are less than £ 20 and they are family friendly . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||At the riverside close to Café Rouge is situated kids - friendly Italian food restaurant rated 1 out of 5 named The Golden Curry . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop located in Riverside near The Portland Arms . It serves fast food in the price range of £ 20 - 25 . Its customer rating is high . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||Though not kids friendly , The Wrestlers has a high customer rating , French food and has a £ 20 - 25 price range . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge is a low - prices restaurant that provides high quality foods . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||Family friendly coffee shop The Cricketers has a low customer rating . It is located near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||there is a children friendly coffee shop in the town centre called Fitzbillies . it serves Italian food for more than £ 30 and is highly rated \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix , located in the riverside area , has a low customer rating , but sells English food in the low price range . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is an Indian food coffee shop . It is high priced , average customer rating and is not kid friendly . It is located near Café Sicilia . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Strada has low customer ratings . Their prices range less than 20 , and they are family friendly . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is an English restaurant in the city centre , such a great place for family \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an expensive Italian coffee shop in the riverside area . It is children - friendly and has an average customer rating . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : city centre | near : Clare Hall||Clowns is a cheap coffee shop , located in city center near Clare Hall that offers Indian food . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman located near the Crowne Plaza Hotel serves Italian food in a family Friendly environment . \nname : Green Man | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||The Green Man , which is near riverside and the All Bar One , is a kid friendly fast food place for L20 - 25 . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Near Café Rouge is Midsummer House , offering burgers \nname : The Phoenix | food : Chinese | customer rating : high | area : riverside||The Phoenix is a high rated Chinese restaurant located riverside . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||There is a fast food place near the Rainbow Vegetarian Café called Strada . It is kid friendly . The customer rating is high . The price range is £ 20 - 25 . \nname : The Plough | Type : pub | food : Indian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap family friendly Indian pub near Café Rouge . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Japanese restaurant Strada is located near the Rainbow Vegetarian Café . It usually cost less than £ 20 per person and it 's kids friendly . The ratings for this restaurant are average . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||A French pub , called The Waterman , has a high customer rating of a 5 out of 5 , and is located in the riverside area . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn in the city centre , has a high customer rating and offers French food in the £ 20 - 25 price range , however is not child friendly . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto is a family friendly Indian restaurant with average ratings near Ranch . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle is a French restaurant with a customer rating of 5 out of 5 . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a 3 star restaurant that is cheap . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fast food restaurant The Waterman is family - friendly and located in town , rated at 3 out of 5 with a moderate price of food . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no||Conveniently located in the city center is The Olive Grove . It features English food , average prices , and a pub atmosphere . It is not family - friendly . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||In riverside please find The Twenty Two serving Japanese food . It is family friendly \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an expensive place located on the rivers banks that is fun for the family . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||Poorly rated Fast food store in riverside is The Rice Boat . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the city centre is , Alimentum . Serving Chinese with a moderate price range that has a 1 out of 5 customer rating . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a highly rated , kid - friendly Italian restaurant in the city centre . It has a price range of L20 - 25 . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Children friendly restaurant Strada with a price range of more than £ 30 has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||At the Loch Fyne restaurant , you can find English foods and a kid - friendly atmosphere . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is a children - friendly Italian restaurant . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Near Café Rouge is a poorly rated fast food place called Midsummer House . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||The Dumpling Tree is an adult only pub near The Portland Arms . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a 3 star place located next to The Rice Boat and is high priced and family friendly . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns pub has a high price range and an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||There is a coffee shop called The Cricketers serving fast food near The Portland Arms . It is rated highly by its customers and is child friendly . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is family friendly and is riverside near Café Rouge . They serve English food and are customer rated as low . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||With a 1 out of 5 customer rating The Cricketers pub is children friendly is by the Ranch \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||near the Rainbow Vegetarian Café is a cheap family friendly Café serving British food with a 5 out of 5 rating called Strada \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||High priced coffee shop Giraffe , is a family friendly venue located next to The Bakers . It scores 1 out of 5 stars . \nname : The Golden Curry | food : French | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap , family friendly restaurant near The Bakers that serves French food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a Japanese no kids friendly coffee shop with a 3 out of 5 rating and priced at £ 20 - 25 located by the riverside . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle is a sushi restaurant with a one star rating . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||located in the riverside area near The Rice Boat The Twenty Two has a customer rating of 3 out of 5 , a high price range and is kid friendly \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne near The Rice Boat is English food with a low rating in riverside . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||Strada is located near the Yippee Noodle Bar . It is a French pub with a low customer rating . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is a quiet riverside pub offering quality meals . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Near The Yippee Noodle Bar is a high priced eatery called The Alimentum . It is near the city centre . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House serves Chinese food for less than £ 20 in the city centre near Clare Hall . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The Cambridge Blue 5 start restaurant is a great place to eat . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is near Crowne Plaza Hotel and riverside . It is a coffee shop that provides Japanese food , and is family friendly . \nname : Alimentum | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||Find superb English food down at riverside at the Alimentum . For between £ 20- £ 25 you can feed the whole family . kids - friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a Chinese pub in the city centre that normally costs less than £ 20 . It is not family friendly . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serving Chinese food is a place to take the family . It 's located in the riverside area near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue pub serves Japanese food with average prices and located near Café Brazil . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||Wildwood is a high quality , low priced pub \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||There is a French coffee shop called Wildwood , with a price range of more than £ 30 and has received a customer rating of 5 out of 5 , it can be found near Ranch . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Mid - cost and highly rated Italian food can be found at Fitzbillies coffee shop . It is family - friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||In riverside there is a coffee shop named Zizzi that has a rating of 3 out of 5 , price range of 20 - 25 , and is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a low price Fast food near the Burger King with low customer rating . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a family friendly pub in the riverside area serving Italian food . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice is a 5 out of 5 rated restaurant in the riverside area . It has prices above £ 30 and isn 't child friendly . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : city centre||The Mill is a Japanese pub located in the city centre with a price range that is more than £ 30 . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove pub providing Japanese Food . It is located in riverside area . more than £ 30 price range . \nname : The Golden Palace | Type : restaurant | price : high||A high priced restaurant is The Golden Palace . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Browns Cambridge is centrally located on the map . \nname : Browns Cambridge | food : English | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly restaurant offering English food in the city centre near The Sorrento . \nname : The Vaults | Type : restaurant | food : Japanese||The Vaults restaurant serves Japanese food . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The family friendly restaurant Loch Fyne serves English food . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant providing low quality food and family services in the average price range . It is located in the north of the city \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is an expensive , three star restaurant , located near the river . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Located next to Café Sicilia , The Punter coffee shop , family friendly three star Café \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant located in City Centre near The Rice Boat . 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced coffee shop that is family friendly . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||A low - rated coffee shop near The Bakers is Giraffe , which is kids - friendly and priced highly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop that serves both coffee and fast food . The price range is a bit higher than average , but it also has a high customer rating . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||One kid friendly pub serving fast food in the vicinity of The Portland Arms is The Dumpling Tree . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice has a cheap price range and a customer rating 5 out of 5 ; it is a coffee shop near Avalon in the city centre area with family - friendly service . \nname : Blue Spice | price : less than £ 20 | area : city centre||In the centre of the city is Blue Spice . It has average prices . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||In the city center is a Japanese restaurant named The Golden Curry located near Café Rouge . The Golden Curry is family - friendly and has an average rating . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is this place called The Waterman that provides Chinese food that has a price Range of £ 20 - 25 and has a high customer rating but is not kids friendly . It is located in the riverside \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a very expensive dine in restaurant located near the Yippee Noodle Bar that has terrible reviews . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a Chinese restaurant in the moderate price range . It is located near The Bakers and is not kid friendly . \nname : The Eagle | food : French | customer rating : average||The Eagle serves French cuisine that is rated as average \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix is an expensive Japanese restaurant with low customer ratings located by the riverside . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in the riverside area is an English restaurant called The Rice Boat . It has a customer rating of 5 out of 5 and has a cheap price range but is not kid - friendly . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop with a high customer rating . It serves Indian food for between £ 20 and £ 25 . It is in the city centre near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop located in Riverside near Burger King . They serve moderately priced Japanese food and received a 1 out of 5 customer rating . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry is located near to The Six Bells . They do not presently cater for families with small children . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||Find English food at a price range of less than £ 20 on the riverside at The Olive Grove Pub . it not a family - friendly pub . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter , is a fast food coffee shop . They have a high customer rating but the prices are fairly expensive . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The coffee shop Zizzi has a customer rating of 5 out of 5 . The coffee shop is not conducive for children . They are located in the city centre and the prices are more than £ 30 . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : riverside||The Mill is a pub that provides Chinese food at a moderate price range in Riverside . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||There is a high - priced restaurant Loch Fyne that provides cheeses , wine , fruits and desserts . It is suitable for families . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , a restaurant offering Italian cuisine , is located near the Rainbow Vegetarian Café . It has a low rating of only 1 out of 5 , but the price range is moderate and is kid - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a non family - friendly Italian coffee shop located in the city centre , near the Crowne Plaza Hotel . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Chinese food at a moderate price range . The rating given to this venue by the city centre was a three out of five . It is child friendly and is nearby the Express by Holiday Inn \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly coffee shop in the city center . The Eagle is a high priced , Italian place is near Burger King . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe welcomes kids and offers English pub food near riverside . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a pub providing English food in the high price range and located near Café Brazil . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||Serving Japanese food at high prices , and a child friendly atmosphere , The Olive Grove is located in the city centre . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix offers Italian food for less than £ 20 in the riverside area . It has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle has moderately priced fast food . It 's not kind friendly . It rates 1 out of 5 and is located neat Burger King at Riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is based in the riverside area near Burger King . It offers fast food . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a Sushi bar . The prices are low and it is family friendly . It is near The Bakers . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : city centre||For an English restaurant in the city centre that has an excellent rating of 5 out of 5 , The Phoenix is a lovely place to go \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||A fast food coffee shop that serves food for less that 20 pounds is The Mill in the riverside area near The Sorrento . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a non children friendly coffee shop in riverside , with high priced Japanese food . There costumer rating is 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies , is a coffee shop near the centre of the city offering great food at competitive prices . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a restaurant where the price range is £ 20 and under and is located near The Six Bells \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Near the river , and close to Café Adriatic , is The Travellers Rest Beefeater , serving mid price range food . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Children friendly , The Dumpling Tree , is a pub that serves Japanese food and is found near The Portland Arms . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix sells food for an expensive price . It received a one - star rating . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a low - priced restaurant that serves sushi . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family friendly coffee shop called Browns Cambridge which serves fast food is located near Crowne Plaza Hotel on the riverside . It 's rated average . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves fast food at a higher price range . It is located near Café Sicilia . It has an average customer rating and is not child friendly . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood pub is a rather cheap French food restaurant with a low customer rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a restaurant 5of5located near The Rice Boat in the centre of the city , serves dishes from £ 30 \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House , which was rated 5 out of 5 , serves French food near Café Rouge . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum coffee shop offers cheap food and beverage options in a family - friendly environment . It has a 3 of 5 star review . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 3 out of 5||Browns Cambridge provides Indian food in the moderate price range . Its customer rating is 3 out of 5 . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||There is a location moderate priced , average - rated and kid friendly called Fitzbillies located near Express by Holiday Inn \nname : The Golden Palace | Type : restaurant | price : less than £ 20||A restaurant named The Golden Palace has a price range of less than £ 20 . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a high priced children friendly fast food restaurant with an average rating in the city centre . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||A high priced French restaurant that customers rated 3 out of 5 is called The Waterman . It 's in the city centre and it is children friendly . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : yes||The family friendly Giraffe pup has Chinese food and is located in the city centre . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop that serves Indian food . It is in riverside , family friendly and has low customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap French coffee shop in riverside . it is family friendly and located by Raja Indian Cuisine . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a child - friendly fast food restaurant with moderate food prices . The Waterman is moderately priced and has customer ratings of 3 out of 5 . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House serves Japanese food , located near Café Rouge . Rated 3 out of 5 \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Chinese food in the moderate price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a well - known , pricey place by the Express by Holiday Inn . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||In the city centre , there is a one star , not kid friendly , restaurant called The Golden Curry . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman , is a Fast food restaurant located in riverside . It has average customer ratings , high price rand and is not children friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||Loch Fyne is a child friendly Japanese restaurant with a moderate price range . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||Loch Fyne is an Italian restaurant . Low priced but not family friendly . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is located near The Sorrento in the city centre . It welcomes young and old to feast on its Chinese cuisine . \nname : The Eagle | food : Fast food | customer rating : 1 out of 5||With a customer rating of 1 out of 5 The Eagle serves fast food . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a family - friendly restaurant The Rice Boat located near Express by Holiday Inn that provides French food . Its price is less than £ 20 and low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||The Cambridge Blue is a Fast food restaurant that customers rated a 3 out of 5 . \nname : The Mill | Type : pub | food : Chinese | price : high | area : city centre||The Mill is a high - priced Chinese pub in the city centre . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Located next to All Bar One , Midsummer House serves medium priced British food . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||There is a low - priced restaurant , Browns Cambridge , that provides high quality foods . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a coffee shop offering Italian food , rated highly by customers . It is not suitable for children \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant providing take - away deliveries in the less than £ 20 price range . It is located in the city centre near Express by Holiday Inn . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Chinese restaurant in the less than £ 20 price range with a low customer rating . it is not family friendly and is located near Rainbow Vegetarian Café . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes||The Olive Grove is located city center offering a children friendly Italian pub setting . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Wildwood is a expensive pup located in the city centre . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is an Italian good restaurant located in the riverside area . It has a 1 out of 5 rating and high - priced . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults is a restaurant serving fast food . \nname : The Eagle | food : Italian | customer rating : high||Italian food is served at The Eagle and customers rate it highly . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family amicable eatery close by Rainbow Vegetarian Café that offers Italian sustenance and has extremely modest costs . Strada additionally has a 5 out of 5 client rating . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a Fast food restaurant near The Six Bells . The average price range is £ 20 - 25 . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||A moderately priced pub The Olive Grove in riverside is kids friendly . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat serves fast food by the riverside . It is not kid - friendly and has a 5 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family - friendly coffee shop near Café Sicilia that serves fast food . It is moderately priced and has a customer rating of one out of five . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||In riverside there is a coffee shop named Aromi that serves French food . They are not family - friendly and have a low customer rating . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an English restaurant that serves high - priced cuisine . It is located near Rainbow Vegetarian Café and is child - friendly . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is Chinese food that is less that twenty pounds in the city center that is family friendly . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a typical fast food restaurant located on the riverside near The Rice Boat . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle which is located at riverside is a favorite among customers . With a customer rating of 3 out of 5 and an average price of £ 20 - 25 \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a Japanese coffee shop with a low rating . It 's very pricey , family friendly , and located near Café Sicilia . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Clare Hall is located near a full service restaurant Bibimbap House restaurant located north of the City center . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat in the city centre area serves Indian food . It is family friendly and has a low customer rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Near the city centre area is a French food restaurant named The Waterman . It is child - friendly and has a low customer rating in which customers should be prepared to pay £ 30 . \nname : Alimentum | food : Japanese | price : cheap | area : riverside | family friendly : yes||Alimentum provides cheap Japanese style food in a family friendly environment in the Riverside area . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre||The Golden Palace is an expensive restaurant that has an average customer rating that is a coffee shop in City center that services Italian food . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is low . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne is a fast food restaurant . It is a family friendly restaurant with dishes costing less than £ 20 . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||Alimentum is a place with a moderate price range that serves French food , is kid friendly , and is located in riverside . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop is located near Raja Indian Cuisine by the river . They are a reasonably priced restaurant that is family friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree is a French restaurant with a moderate price range . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly , 3 - star coffee shop next to Crowne Plaza Hotel . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : average||There is a restaurant , The Cambridge Blue that has an average customer rating and serves Indian food \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers coffee shop serves Japanese food for adults only average customer rating near The Portland Arms \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly Fast food restaurant in the riverside area near the Café Rouge with a customer rating of 1 out of 5 \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is more than 30 euros with a low customer rating . It is located in the city centre near Café Adriatic . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||the Alimentum is a Indian restaurant with a poor customer rating of 1 out of 5 , in the riverside area near Yippee Noodle Bar . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is Taste of Cambridge , a children friendly coffee shop that serves Italian food . It is located by the riverside . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Japanese food for less than £ 20 at Browns Cambridge . Low customer rating . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||For a moderate price , a family can enjoy an English meal near Express by Holiday Inn , across from the river . The Rice Boat has a customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serving Japanese cuisine is located close to the city centre it has a customer review rating of 1 out of 5 but has a moderate price list . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is not a family - friendly pub . It serves fast food for less than £ 20 and is situated near Café Rouge . \nname : The Golden Curry | food : English | customer rating : average | family friendly : no||The Golden Curry is an average rated adult only English eatery \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a high - priced Italian pub near Café Rouge that is kid - friendly . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : no||The Rice Boat is a family - friendly , Japanese restaurant located in the city centre with an average customer rating . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a moderately priced , 3 - star coffee shop located riverside near Café Brazil . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant near Express by Holiday Inn . It is moderately priced and not kid friendly . It is located on the riverside and received a 1 out of 5 rating . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is an establishment with a high customer rating with a price range of more than £ 30 . it is near the riverside and yes it is children friendly \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto serves Chinese food near Ranch , they have a high customer Rating and are children friendly . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub in riverside with prices between £ 20 - 25 . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is in the high price range , it is located in the riverside area near The Rice Boat . It is child friendly and has an average customer rating . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a restaurant in Riverside with low customer ratings . It 's not kid friendly but is considered moderate priced fast food . \nname : Midsummer House | food : Fast food | customer rating : high | near : Café Rouge||Café Rouge is a fast food restaurant near Midsummer House with a high rating . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix makes less than £ 20 an hour . They are located in city centre and sell Japanese food . They recently scored a low rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : city centre||There 's an Italian pub The Waterman with a customer rating of 5 out of 5 in city centre . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||There is a riverside pub offering fast food in a child friendly venue called Giraffe . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : no | near : The Sorrento||There is a Chinese venue in the city centre called Browns Cambridge that is not family friendly . It is near The Sorrento . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace located in Riverside , is a coffee shop , which also serves Italian food . The price range is moderate and customer rating is 3 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an Italian place in riverside . It 's near Café Rouge and is kid - friendly , but it only has a 1 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies coffee shop that offers Italian food . is not a family - friendly prices are between £ 20 - 25. it is near The Portland Arms . Customer ratings are low . It is located in the riverside \nname : The Mill | Type : pub | food : Italian | price : more than £ 30 | area : riverside||If you are looking for Italian food priced around £ 30 , or a bit more , down by the riverside , I would recommend The Mill . It has a pub atmosphere , so it is a relaxing place to be and eat . \nname : The Plough | Type : pub | food : Indian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub located near Café Rouge . They offer Indian food at a price range over £ 30 and they are children friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn by a riverside and it is kids friendly with a moderate price range . Customers have given it a 3 out of 5 rating . \nname : The Eagle | food : Japanese | customer rating : high||The Japanese food , The Eagle , has a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The coffee shop named Fitzbillies located in the city center was rated 1 out of 5 by customers . The children were friendly despite the high prices there . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , Strada English restaurant features a moderate price range with a customer rating of 3 out of 5 . We are not kid friendly . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is an adult only Indian restaurant located in the city centre , they are rated 3 out of 5 and have moderate prices . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the city centre , offers Italian food and cheap prices . It is family - friendly and has an average customer rating . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||We are a Japanese restaurant called Alimentum and can be found in the Riverside area of Cambridge , near to the Yippee Noodle Bar . Our customer rating is high and our average price for a meal is £ 20 - 25 . Please come and see what we are all about . \nname : The Eagle | food : English | customer rating : 1 out of 5||The Eagle has English food with a 1 out of 5 customer rating . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is near Rainbow Vegetarian Café with an average rating , priced less than £ 20 \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||There is a family friendly restaurant in your price range of less than £ 20 called Travellers Rest Beefeater . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a high end coffee shop in the city centre of Avalon customers rate it 3 out of 5 as it isn 't children friendly \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a French restaurant in riverside that is near The Sorrento with children friendly service . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||Zizzi is a family - friendly pub offering British food . It has a one - star rating . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is located in the city centre of Avalon . It is expensive and has bathrooms . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a riverside restaurant providing English food . It is family friendly . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is an Italian restaurant with a moderate price range that is kid friendly . It is located near The Bakers . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is a pub offering Italian food . It is cheaply priced and is rated 1 star . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||The family friendly Italian pub called The Plough is cheap and near Café Rouge . \nname : The Phoenix | food : Japanese | customer rating : 1 out of 5 | area : riverside||The Phoenix is a Japanese restaurant in Riverside with a 1 out of 5 customer satisfaction score . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||A pub of Japanese food is Zizzi that has a low customer rating and family friendly . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a children friendly pub The Dumpling Tree near The Portland Arms that has Fast food . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||By the riverside , near Crown Plaza Hotel , there is a family friendly French coffee shop , Browns Cambridge with low customer rating . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||The Vaults pub near Café Adriatic sells high priced food and has an average customer rating . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||A restaurant called Blue Spice is located in the city centre area and is not family - friendly . It has a low customer rating with a price range of less then £ 20 . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||Near the river , The Phoenix serves fast food . They have a high customer rating and a high price range . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : no||The Golden Curry has a low customer rating and is not family friendly , but they are another place where you can get Indian food . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||With a high customer rating , The Rice Boat is child friendly . They serve Indian food at a price range of £ 20 - 25 . It is located in the city centre near the Express by Holiday Inn \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop serving Fast food in the moderate price range . It is not kid friendly and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop located near Burger King in the city centre which offers good food at a premium price . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||A child friendly Fast food place called The Olive Grove is a high priced pub on the riverside \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers provides Indian food in the less than £ 20 price range . Its customer rating is low . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Italian restaurant located in the riverside near Yippee Noodle Bar , it has a customer rating of 1 out of 5 and a high price range . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||At the All Bar One near riverside is the Green Man . The food is Japanese and is less than £ 20 . yes it is family friendly . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Near Café Adriatic is Travellers Rest Beefeater , a high priced riverside restaurant rated 3 out of 5 stars . \nname : The Phoenix | food : Chinese | customer rating : average | area : city centre||The Phoenix is providing Chinese food in the price range . It is located in the city centre . Its customer rating is average . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two has a moderate price range and is child friendly . It is located by the riverside , near The Rice Boat . It has a customer Rating of 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a pub providing English food in the high price range and located near Café Brazil . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : no||The Rice Boat is an English food establishment in the city centre with a low customer rating . It isn 't family - friendly . \nname : Midsummer House | food : Indian | price : high | customer rating : average | near : All Bar One||Midsummer House is a restaurant located in All Bar One that serves Indian food . \nname : Fitzbillies | food : Fast food | price : cheap | near : The Six Bells||Fitzbillies near to The Six Bells serves cheap and Fast food . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry with a customer rating of 1 out of 5 serves French food . It is kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Indian food in the riverside near the Crowne Plaza Hotel . It is a kid friendly venue with a high customer rating . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Yippee Noodle Bar is in the city centre near to Alimentum Fast food and has a customer rating of 1 out of 5 with a high price range . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : no||Alimentum is an English restaurant by riverside . It has a high price range and is not kid - friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||5 star coffee shop offering Japanese food , The Punter , is worth the money for a night out . Located near Café Sicilia , it is not a place to bring your kids . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers sells Japanese food for £ 20 - 25 . It 's a coffee shop near Raja Indian Cuisine by riverside . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Moderately priced Chinese restaurant on the riverside , The Waterman has a 1 out of 5 customer rating and is child friendly . \nname : Clowns | Type : restaurant | near : The Portland Arms||Near to The Portland Arms there is a restaurant called Clowns . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Indian food in the less than £ 20 price range . It is near Rainbow Vegetarian Café . Its customer rating is low . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is an expensive coffee and Italian food shop located by the riverside , customers don 't love it . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||At the riverside , Clowns is a excellent , but cheap pub . \nname : The Golden Palace | Type : restaurant | price : high||The Golden Palace is a high priced restaurant . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||The Vaults has a low customer rating with a price range below L20 . It is located near Café Adriatic . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located near Yippee Noodle Bar by the riverside . It offers French food at a cheap price range and has a customer rating of 5 out of 5 . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a kid friendly moderately priced 1 out of 5 rated restaurant near The Rice Boat on the riverside . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman serves Italian food , for a moderate price and a kid friendly atmosphere in Riverside . Customer rating is 5 . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||The Golden Palace at Riverside restaurant average rating \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The average - priced Italian coffee shop in the riverside area is named Fitzbillies . They serve adults and have average reviews . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||Located in the riverside area near The Portland Arms , Cotto is a high - priced fast food coffee shop with an average customer rating . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Cheap Indian food is served at the The Waterman located near city centre . Rated 5 out of 5 and no , it is not family friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the moderate price range . It is located in the city centre . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||The Waterman is child friendly and prices range from £ 20- £ 25 . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||There is a cheap coffee shop near Café Sicilia . The Punter serves French food and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a restaurant providing in the cheap price range and people rating 5 out of 5 \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly Chinese restaurant that has a high price range , It is rated average by customers and near the Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a kids friendly pub that serves fast food at a moderate price range in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||There 's a family - friendly Italian restaurant called The Loch Fyne , with a price range less than £ 20 \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves French food and has a low customer rating . It is located riverside near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies offers French food in a coffee shop setting in the riverside area . They offer a price range of £ 20 - 25 with a high customer rating . They are not kid friendly . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies is a moderately priced Italian restaurant located near The Six Bells . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Chinese food restaurant located in the city centre near Café Rouge . It received a customer rating of 5 out of 5 . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||There is a place called The Strada that is kid friendly and cheap . It is near Rainbow Vegetarian Café and has low ratings . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a poorly rated expensive Italian food restaurant that is not child friendly . It is located in the city centre near Express by Holiday Inn . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a fast food coffee shop located in the riverside area . It is called Aromi , has a customer rating of 1 out of 5 and children are welcome there . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a restaurant near The Six Bells offering fast food within the £ 20 - 25 range . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||located in the riverside area is the kid friendly Fast food pub Giraffe \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Close to Rainbow Vegetarian Café , Strada low cost low quality no time family friendly \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Located near All Bar One is the 5 star Midsummer House which offers affordable dining . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : yes||Alimentum is a moderate - priced restaurant in the city centre that allows children to enjoy a Chinese dinner . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , is an Italian restaurant called the Strada . The price range is less than £ 20 , the customer ratings are low and it is not family - friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub that serves moderately priced fast food in riverside . It is not child friendly . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man has Indian food and is located in riverside near All Bar One . It has high - range pricing and is not kid - friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||coffee Shop , The Wrestlers , is reasonably priced . Located near Raja Indian Cuisine , it 's not considered family friendly . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||French food is available at the Wildwood pub at an average price of £ 20- £ 25 . Customer rating 3 out of 5 . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a moderately priced , family friendly pub near the Café Rouge . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||There is a fast food . restaurant near The Rice Boat on the riverside . It is named Loch Fyne and has a low customer rating . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two offers Indian food in the Riverside area with a child friendly atmosphere . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada has a moderate price range with 3 out of 5 customer rating they are a kid friendly Fast food restaurant near Rainbow Vegetarian Café . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace serves fast food in a coffee shop , located in the city centre . Despite low ratings it has low prices . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||The Midsummer House serves expensive English food near All Bar One with an average customer rating . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located near the Express by Holiday Inn in riverside , The Rice Boat serves highly rated and cheap Indian food , however , it is not kid friendly . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : riverside||Blue Spice is a Chinese restaurant in the riverside area where you can eat for less than £ 20 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge offers an exclusive riverside view near The Sorrento ; fine French cuisine and family friendly environment perfect for all your getaway needs . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : city centre||For less than £ 20 you can eat at the city centre Indian restaurant Blue Spice . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a 3 star coffee shop across from The Portland Arms with decent prices . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food . The price range is less than £ 20 and it has a low customer rating . It is in the city centre and it is family friendly . It is near the Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||The restaurant Loch Fyne serves Japanese food , but is not family - friendly . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a French restaurant in the riverside area near Yippee Noodle Bar . Customers rated this restaurant at 5 out of 5 , but Alimentum prices are a bit high . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix serving French food by the riverside , has a cheap price range and customer rating 5 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||For a restaurant in the cheap price range with a customer rating of 5 out of 5 , try Taste of Cambridge \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is a kid friendly restaurant that serves English food called The Waterman . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is located at the riverside near Clare Hall with a cheap price range . They serve Italian food \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop that is averagely priced . They serve sushi and they have a 3 out of 5 rating . They are located in the city centre . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||located near Café Sicilia a coffee shop named The Punter serves Japanese food , has a rating of 3 out of 5 , prices range from £ 20- £ 25 and is kids Friendly \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry , located near Café Rouge in the city centre , is an average customer rated eatery serving Japanese food . Yes , it is family - friendly . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||A restaurant with Japanese food is The Loch Fyne which is near The Rice Boat . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||Located near The Bakers is a child friendly restaurant called The Plough . It has a price range of more than £ 30 . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly , Italian restaurant near the Café Rouge in the riverside area , with a low customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is a popular coffee shop located near Café Brazil in the city centre . Its price range is above average . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is an excellent rating restaurant in The Rice Boat that offers breakfast meals \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop named Browns Cambridge near Crowne Plaza Hotel , in the riverside area . This establishment offers Indian good , is family friendly , and has an average customer rating . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||There is an above average price range restaurant in the city that serves French food The Wrestlers . They are family friendly and they have average customer ratings . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is an inexpensive coffee shop that is unfortunately not family friendly . Located north of the city center . beside the river , their 1 - star fast food is competing against the close by Burger King . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant located near Rainbow Vegetarian Café with moderately priced food . \nname : Strada | Type : pub | food : Fast food | customer rating : low | near : Yippee Noodle Bar||Fast food pub restaurant Strada holds a low customer rating and is located near Yippee Noodle Bar \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle has a customer rating of 1 out of 5 and serves Italian food . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : The Rice Boat||This place has been rated high by customers and it is near the city centre . The Twenty Two is near The Rice Boat . It is a kids friendly eatery and the price range is from 20 to 25 pounds . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located in the City Centre , near the Express by Holiday Inn , offers Chinese food at a high price range . It is child friendly , however has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Looking for a family - friendly place in the city center area , with English food less than £ 20 , well then The Rice Boat is that place . It is located near Express by Holiday Inn and has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne restaurant provides a mature British dining experience . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub , near Café Brazil , with a price range of less then £ 20 that server Italian food \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne is a restaurant offering British cuisine in the city centre . IT is not family friendly . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : city centre||The Phoenix is a popular , fancy Indian restaurant near the city centre . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||The Cambridge Blue restaurant does Japanese food . Has a very low rating though . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a English restaurant located by the riverside near Express by Holiday Inn . This is a family friendly restaurant with an average customer rating and a cheap price range . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a high priced restaurant by the riverside that serves Italian food . It has a customer rating of 1 out of 5 and children are not allowed . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , serving moderately - priced Chinese food , is located in the city centre near Express by Holiday Inn . It is not kid - friendly and has a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||In Riverside there is a 5 out of 5 customer rated restaurant called The Golden Palace . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||There is a 5 out of 5 , child friendly Fast food restaurant called The Golden Curry \nname : The Phoenix | food : Italian | customer rating : 3 out of 5 | area : riverside||The Phoenix in riverside offers Italian food with a 3 out of 5 rating . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||For 30 pounds you can get children high at Cocum , a pub . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill serves Japanese food for less than £ 20 in a coffee shop . The Sorrento in riverside . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , a French coffee shop near Café Sicilia is a family friendly venue , rated average by customers with a price range of less than £ 20 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family - friendly pub . It is located near The Portland Arms . It serves Japanese food . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix features Japanese food . It has average customer ratings and is on the riverside . It has a price range of less than 20 . \nname : The Plough | Type : pub | food : Indian | price : cheap | family friendly : yes | near : Café Rouge||A cheap family friendly Indian pub called The Plough is near Café Rouge . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap fast - food , pub restaurant . It is family friendly and is located near Café Rouge . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||A child - friendly restaurant that is located in the riverside area is Green Man . The price range is slightly above average . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||The Italian food place the Giraffe is a kid friendly pub in riverside \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Situated close to all public transport , Loch Fyne is a family friendly restaurant catering for all tastes , and good value for money . \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||Wildwood with good food French its a restaurant \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If your looking for something in the price range of 20 - 25 , then you want the Zizzi , a kid friendly coffee shop with a customer rating of 3 out of 5 , and is in the area of the riverside . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Near Clare Hall on the riverside is a moderately priced fast food restaurant call Bibimbap House \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is on the riverside near Café Adriatic . It has an average customer rating and a price that is less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a low priced , low rated coffee shop near City centre called Fitzbillies . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a restaurant that is located in the city center that offers the best affordable meals for families with young children . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children friendly pub serving Japanese food near The Portland Arms . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : high | near : Café Brazil||The Cambridge Blue is a pub that provides Chinese food in the high price range . It is near Café Brazil . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Italian restaurant The Vaults is a place that fits with the whole family 's lower end budget for eating out . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||High rating , The Wrestlers has a price range of £ 20 - 25 , serving Indian foods , not kid friendly . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two , located near The Rice Boat in riverside , is not children friendly , but has a customer rating of 5 out of 5 and the price range is more than 30 . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||Family friendly with great reviews The Cocum coffee shop has a higher price point \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Fitzbillies offers sushi at mid - price and is located near The Six Bells \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman , rated 3 out of 5 . Child friendly in the city centre , serving high priced Japanese food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies , the cheap Italian coffee shop at the riverside is cheap with a customer rating of 5 out of 5 . It is not family - friendly . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family restaurant near the Express by Holiday Inn ranked 1 star . Serves wine near City centre \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderately priced Indian coffee shop that is located in the city centre , customers have rated it 3 out of 5 and it is kid friendly \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Italian food , is located in the city centre . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a 5 - star coffee shop alongside the river offering a fun family experience of Italian cuisine . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Japanese restaurant in the city centre near to Café Rouge . It has a top customer rating but is not family - friendly . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is serves French food and is kid friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Near the river , there 's a family - friendly coffee shop called Aromi , which serves pasta . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There is a kid friendly coffee shop that is highly rated . It serves Italian Food more than 30 pounds located near Burger King called The Eagle in Riverside . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Clowns is a pub located in the riverside area . They have an average customer rating and fall in the less than £ 20 price range . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||The Vaults is a city centre family friendly restaurant serving fast food at reasonable prices . \nname : The Golden Palace | Type : restaurant | price : cheap||A cheap restaurant is The Golden Palace \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a restaurant that serves French food and is kid friendly . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Near the river , there is an inexpensive , family - friendly pub called The Olive Grove . It serves wine and cheese . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes||There is a pub named The Olive Grove that sells moderate price Japanese food . It is kid friendly and is in the city centre . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : no | near : Café Rouge||The Plough is a French pub near Café Rouge . It 's not kid friendly but costs more than 30 . \nname : The Olive Grove | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a pub which serves Japanese food . It is family friendly and cheap , and is located in Riverside . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||There is a pub called Wildwood which serves English food . It typically charges less than £ 20 , and has a low customer rating . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry provides Chinese food on the river near Café Rouge . It has an average rating and is not family friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a sushi restaurant located next to Café Brazil and is in the moderate price range . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||For a moderate priced pub serving French food , try Wildwood , which had a 1 out of 5 customer rating . \nname : Green Man | food : Indian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Low - priced Indian food can be found at Green Man , It is family - friendly and located near riverside and All Bar One . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is an Indian restaurant , that provides good food and is even child - friendly . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||a child friendly moderate priced pub would be The Olive Grove in the riverside area . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The Twenty Two pub near Café Sicilia in riverside rated average . \nname : The Waterman | Type : pub | food : Italian | customer rating : 3 out of 5 | area : riverside||For a 3 star Italian experience try The Waterman , Riverside . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||Japanese restaurant , Alimentum , is not child friendly . It is located in the city centre and prices are more than £ 30 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Fast food is served at The Rice Boat , with a customer rating 1 out of 5 and an expensive price . This venue is not child friendly and can be found near to Express by Holiday Inn in the city centre area . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Near The Six Bells you can find fast food at Fitzbillies for a price range of 30 pounds or more . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : riverside||Located near the river , The Phoenix is a highly recommended restaurant in the area . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : no | near : All Bar One||The All Bar One , The Green Man on the riverside sells high priced fast food and is not family - friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||A child friendly Italian pub , the Zizzi , has an average customer rating \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A French coffee shop in the riverside area is Taste of Cambridge . It is family friendly and located near Crowne Plaza Hotel . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Italian food near The Portland Arms , yes they are child friendly and rated 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a high priced Indian coffee shop with an average customer rated located in City Centre . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||There is a High priced English food in riverside , Near Clare Hall , Bibimbap House . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a moderately priced French restaurant near All Bar One . It has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop near Burger King that is family friendly and three star rated . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a sushi bar near All Bar One that offers cheap , one star rated food . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter offers Italian food and yes has a children area . It is for high rating customers with a price more than £ 30 and is located near to coffee shop Café Sicilia . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||You can find a coffee shop called The Vaults in the city centre near Café Brazil . Prices are more than £ 30 but it does have a rating of 5 out of 5 . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne by the riverside near The Rice Boat sells English food and has a customer Rating of 5 out of 5 . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||A popular Japanese choice is The Phoenix , found on the riverside . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue restaurant offers French style food with a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||Not family - friendly , The Dumpling Tree is a pub near The Portland Arms offering French food . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||The Waterman is a Fast food pub in the riverside area with a high customer rating \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Located next to Yippee Noodle Bar , Alimentum , a reasonably dear 1 star restaurant \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese food restaurant in Riverside located near Café Rouge and has an average customer rating . It is not rated as family friendly . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||There is a cheap family friendly coffee shop named Blue Spice with an average customer rating . It is located near Avalon in the area of riverside . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater in riverside near the Café Adriatic is good and the price is low . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Located near Clare Hall the Italian coffee shop Clowns in riverside has a 3 out of 5 customer rating \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||Affordable burgers at The Cambridge Blue restaurant near the city center . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||There is a cheap fast food restaurant The Phoenix located in City Centre . \nname : The Twenty Two | food : Japanese | family friendly : no||The Twenty Two is a restaurant providing Japanese food . \nname : Fitzbillies | food : Italian | price : £ 20 - 25 | near : The Six Bells||For Italian food , Fitzbillies offers average prices and is located near The Six Bells . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers it is a 1 star coffee shop , It is not for the whole family , It is next to The Portland Arms \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub near Café Rouge . The food is cheap . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | family friendly : yes||A kid friendly restaurant serving French food is called The Golden Curry . They have a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a low - price coffee Shop that is located in City centre \nname : The Golden Curry | food : Japanese | customer rating : high | family friendly : yes||The Golden Curry is a kid - friendly place with a high customer rating . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||Browns Cambridge is an average price restaurant . It has an excellent rating . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||By the riverside near Crowne Plaza Hotel , Taste of Cambridge is a coffee shop providing fast food for you and the kids . \nname : The Punter | food : Italian | price : £ 20 - 25||The Punter serves Italian food and usually costs between £ 20 - 25 . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||A mid - priced pub called Wildwood is a highly recommended restaurant . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Serving Italian in the city centre area is the moderate price The Waterman . They are not a kid friendly environment . They have a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : Indian | price : less than £ 20 | customer rating : low||Browns Cambridge is a restaurant that provides affordable Indian food , though it has a low customer rating . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside , near Express by Holiday Inn , is located The Rice Boat a French food rating in 5of5 restaurant \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly , Italian restaurant . Though the ratings are low , it is in the center of the city , close to Café Rouge . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||Located in the city centre is a moderately priced English restaurant called The Phoenix . It is not popular with customers . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry offers Japanese food . It is family - friendly . Customer Ratings are average . it is near Café Rouge . It is located in the city center \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : city centre||Zizzi restaurant in the city centre offers a reasonably priced menu . \nname : Blue Spice | food : English | price : more than £ 30 | area : riverside||Blue Spice has English food , a price range of over £ 30 and located on a riverside . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||Alimentum is a restaurant food in the average price range . It is located in the north of city \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop in the riverside district , located near The Sorrento . Her you can get fast food for less than £ 20 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves Japanese food and is located beside the river . It is not kid friendly and has a price range of £ 20 - 25 . It has a customer rating of 3 out of 5 . \nname : The Punter | food : French | price : cheap||The Punter is a cheap French place . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||An Italian coffee shop near city centre is called Fitzbillies . It is kids friendly and is rated highly by customers . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||There 's a restaurant called Zizzi by the riverside . It costs less than twenty pounds . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop serving Japanese food is located near Raja Indian Cuisine by the riverside . You can eat there for average price , and children are welcome . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There 's a cheap Indian in the riverside area called The Waterman , its not got the best rating and is not family friendly . \nname : Midsummer House | food : Chinese | customer rating : high | near : Café Rouge||Well regarded Midsummer House offers Chinese food and can be found near to Café Rouge . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two Italian is child friendly and on the riverside . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough pub is located near the city centre , with Café Rouge located nearby . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Japanese restaurant found in the city centre . It is kids friendly and has a high customer rating . Food is priced in the range of £ 20 - 25 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||The Cambridge Blue is a 5 out of 5 rated Italian restaurant . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle , with a customer rating of 5 out of 5 serves Japanese food . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||Located in city centre near Café Rouge , The Golden Curry which has an average customer rating and is not family - friendly provides English food . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers is not family - friendly but offers Japanese food for less than 20 . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Wine and dine at Midsummer House . Located near the All Bar One .. 3 star rating . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults with a amazing 5 out of 5 customer rating , is a pub near the Café Adriatic . Menu price are more than £ 30 per item . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||A highly rated coffee shop near Café Brazil in riverside is The Vaults , prices are more than £ 30 . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A family friendly pub near the riverside with a customer rating of five out of five called Aromi . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a pub with 1 out of 5 ratings and is high priced range but is child friendly \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant , providing Italian food , near Rainbow Vegetarian Café , with a average customer rating , and it 's Family Friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is an inexpensive restaurant featuring Asian cuisine , located near the Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : no||Located in the city centre is a moderately priced adult pub called The Olive Grove . This pub serves English food . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers offers family friendly French dining . Prices £ 20 - 25 . Ratings 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop that serves Indian food , has a price range of more than £ 30 , has a high customer rating , and is near Ranch . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||If you are looking for a place to eat in riverside , try The Mill . It can be found near The Rice Boat . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace serves Japanese food and is located in the city centre . Has a customer rating of 5 out of 5 . It is a coffee shop and has a price range of more then 30 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||A restaurant providing Japanese food in the average price range . It is located near Café Sicilia and has been rated average by customers is called The Punter . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||There is a kid friendly French restaurant called Loch Fyne . that costs 20 - 25 . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||There is a coffee shop called Cocum providing Indian food with 3 out of 5 customer rating and it 's price range is moderate and also it is kids friendly . \nname : The Rice Boat | food : French | area : city centre||There is a French restaurant in the city centre called The Rice Boat . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly place serving highly rated Indian food . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||A restaurant with a customer rating of 1 out of 5 and yes has kids area is called Cocum . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||Family friendly The Golden Curry serves Chinese foods , low rating , located near Café Rouge in the city center . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Close to Clare Hall on the riverside , you will find highly rated Italian coffee shop Clowns \nname : The Twenty Two | food : Japanese | family friendly : no||The Twenty Two serves Japanese food and is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap coffee shop that offers Indian food . It has a 5 out of 5 customer rating , is cheap and is located in the riverside area . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The French food serving The Phoenix is situated in the riverside area and has a price range of £ 20 - 25 . Customers rated the Phoenix average . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||You can get Chinese food for less than £ 20 at The Wrestlers . It has a low customer rating but is very family friendly . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||There a English place called Cotto . Cotto is near the Ranch and children friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter , a Japanese coffee shop , is located near Café Sicilia . Although expensive , they received a 5 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is an expensive coffee shop with a five star rating located near The Portland Arms . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Family - friendly coffee shop and Indian , Aromi , is in Riverside . Customer rating is average . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap Italian coffee shop with high customer ratings located near the riverside . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||The Cotto is low rated , non - family - friendly . It serves Japanese food and is located near the Ranch . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill , located near The Sorrento , is a coffee shop which offers sushi at a medium price range . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a cheap , family - Friendly coffee shop , located riverside . It has a low customer rating . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a 5 - star sushi restaurant just down the road from Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a child friendly , Indian coffee shop in the riverside area near Crowne Plaza Hotel . It is rated 1 out of 5 stars . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two in riverside is located near The Rice Boat . its priced more than £ 30 , has a low customer rating and is children friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies , a Japanese coffee shop in the area of riverside , offers a price range of less than £ 20 , but is not family - friendly and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with a customer Rating 3 out of 5 and provides Indian food . It is kid friendly and is located in riverside area near Crowne Plaza Hotel . \nname : Bibimbap House | food : Chinese | area : riverside | near : The Rice Boat||Bibimbap House is a Chinese restaurant near The Rice Boat in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : no||Loch Fyne is a Japanese restaurant that is not children friendly and is the price range of more than £ 30 . \nname : Green Man | Type : pub | food : French | area : city centre | near : Café Rouge||Green Man is a pub serving French food , located in the city centre near Café Rouge . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Browns Cambridge , a French restaurant , offers food for less than £ 20 , but has a low rating . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop with reasonable prices in the city centre . It is not kid friendly , but it 's near Café Sicilia . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry provides Chinese food It is located in the riverside . It is near Café Rouge . Its customer rating is 5 out of 5 . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : city centre||Clowns is a pub located in the city centre with a high customer rating . Their prices are between £ 20 - 25 . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is an English restaurant located in the city centre near Café Rouge . It has a high customer rating but is not family - friendly . \nname : Strada | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant near Rainbow Vegetarian Café that serves inexpensive Indian food in an environment that leaves much to be desired . This is not a place to bring the family . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Riverside 's coffee shop named Fitzbillies has a high price range , it is non children friendly and they have Japanese food . There costumer rating is 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | near : Clare Hall||There is a Japanese coffee shop named Clowns over by Clare Hall in city centre , but it is not rated very highly . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers Indian food is moderate in pricing with customer service rated 3 out of 5 perhaps as a result of t not being kid friendly . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||Located in the riverside area near to Café Brazil is the coffee shop The Vaults , which only has average ratings from customers \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||The child friendly Alimentum is a moderately priced fast food restaurant in the riverside area \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Japanese restaurant The Golden Curry is high priced . They are kid friendly and located near The Bakers . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers offers medium priced food in a family friendly atmosphere and scores 3 out of 5 stars . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : yes||The Alimentum is a moderately priced Chinese restaurant in the riverside area that is family friendly . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||A riverside family - friendly restaurant is The Olive Grove . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||With higher than average prices is The Rice Boat . It is located close - by to the Rainbow Vegetarian Café , and has high customer satisfaction ratings . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop that serves Indian food in the low price range . Customer ratings are low with lots of great families . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge its a restaurant of French food \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop near the Burger King in the city centre offers highly rated , mid - priced Italian food and a kid friendly environment . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a English restaurant located at the city centre , near the Express by Holiday Inn . The prices are expensive and the restaurant rated 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||A coffee shop by the riverside is The Vaults . It is near Café Brazil and serves highly - rated food at higher - than - average prices . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The coffee shop The Punter , located near Café Sicilia serves fast food in the moderate price range . It is not family friend and has a 1 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Located in the riverside area is a child friendly pub serving French food . The Olive Grove is expensive with meals costing more than £ 30.00 . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The family friendly The Waterman in the city centre provides low priced food with a high customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Indian | price : more than £ 30 | family friendly : yes||Though Loch Fyne is children friendly , it costs more than £ 30 . However , it is a nice Indian restaurant . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a decent coffee shop that offers meals at a affordable prices . It is located next to Ranch . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||In the city centre near The Rice Boat there is a restaurant called The Twenty Two with a customer rating of 3 out of 5 . The price range is an average £ 20- £ 25 and it is not kids - friendly . \nname : The Waterman | price : less than £ 20 | family friendly : yes||The Waterman is a family favorable eatery that has pleasing value ranges . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a medium priced coffee shop Fitzbillies in city centre that is one star rating . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||If you are a fast food fan , try out Browns Cambridge . The price range is above 30 pounds and it has a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi is a family - friendly coffee shop with decent ratings . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice is Italian located by the riverside with cheap food less then 20 euros \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||The Mill is a high priced coffee shop with fast food . It is located in Riverside near The Sorrento . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||There is a 3 out of 5 customer rated kid friendly coffee shop with a moderate price range located near The Bakers called Giraffe . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||With a three out of five rating , Fitzbillies is a kid friendly coffee shop in the £ 20 - 25 price range . Located in the city centre , it offers Japanese food . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||There is a high - rated Indian pub named Zizzi that is kid friendly . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers serves Japanese food for less than £ 20 with a family friendly theme and an average customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge provides Italian food in the riverside area near to The Sorrento . It is friendly for kids . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi , located on the riverside , is a coffee shop with an average rating . It is children friendly and the price of its beverages is high \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has wine tasting for the family , its rated 3 stars and is located near Café Rouge in the city center . \nname : The Cambridge Blue | Type : pub | food : Indian | price : moderate | near : Café Brazil||The Cambridge Blue is a pub , sells Indian food , moderate price range , located near Café Brazil \nname : The Golden Curry | food : Italian | price : high | family friendly : no | near : The Bakers||The Golden Curry is a high prices establishment serving Italian food . They are near The Bakers and are not kid friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a moderately priced coffee shop that serves Italian food in a non kid friendly environment with a customer rating of 1 out of 5 . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||for French food in a price range of more than £ 30 , Midsummer House near All Bar One has a low customer Rating \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||A coffee shop named Wildwood is a fast food restaurant that is near a Ranch . The menu is moderately priced with a customer rating or 1 out of 5 . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is a moderately priced restaurant is not kid friendly . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves Italian food in the riverside area . It is highly rated and can be found near Clare Hall . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Located in riverside area and customer high rated has price range of more than £ 30 and children friendly is Blue Spice . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is a restaurant and provides Italian food and as high price range \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is an Italian coffee shop near The Portland Arms in the city centre . It has a customer rating 3 out of 5 and moderate price range . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly Japanese restaurant in the city centre . It has a low customer rating with a price range of less than £ 20 . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located in the city centre near the Crowne Plaza Hotel . It offers French cuisine with a family - friendly atmosphere . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice has a high customer rating and costs more than 30 pounds . It is children friendly located near Avalon in riverside . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||With a average price rating , Bibimbap House is a Japanese restaurant near Clare Hall by a riverside in the City centre . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a restaurant with low pricing . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a moderately priced restaurant near The Bakers that is also kid - friendly . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||There is a family friendly restaurant on the river called The Rice Boat . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||The restaurant named Travellers Rest Beefeater has a price range of £ 20 - 25 and is kid friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi pub has Chinese food and is kids friendly with a high customer rating . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The Plough family restaurant has a price range less than 20 pounds and is located near The Bakers . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||For reasonably priced English food , Loch Fyne could be considered , however they do not welcome children . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix serving up English food with a medium price but has an excellent customer rating located by the riverside . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop , offering a family - friendly atmosphere and serving fast food based in the city centre . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Families can dine at The Rice Boat . It is a highly recommended restaurant in the City centre . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||Located near Café Adriatic , there is a pub style restaurant named The Vaults . It has an average customer rating and cheap prices \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne which rates 5 out of 5 , serves Japaneses food and is in the riverside area near The Rice Boat . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There 's an Indian by the riverside that 's less than £ 20 . It 's called The Waterman but isn 't family friendly and has a low customer rating . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kid friendly , Indian coffee shop . It is mid priced and rated 1 out 5 . \nname : Alimentum | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||For a slightly more expensive Indian in the riverside area that is family friendly go to Alimentum . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap , family - friendly , Italian coffee shop near Burger King , in riverside . It has an average customer rating . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | family friendly : yes||There is a kids friendly restaurant offering a variety of native foods caked The Golden Curry . It has consistently offered satisfactory service to is customers . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge , has high quality food at low prices and tastes great . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low - priced restaurant for adults that serves French cuisine for less than 20 pounds . It has an average customer rating and is located near the Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||There is a coffee shop named Wildwood near Ranch that serves Japanese food . They have average prices and customers give them high ratings . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||In riverside The Phoenix serves French food with a customer rating of 3 out of 5 . \nname : Blue Spice | food : Fast food | price : moderate | area : city centre||Blue Spice has moderately priced fast food located in the city centre . \nname : Midsummer House | food : French | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House has a rating of 1 out of 5 and serves French food near Café Rouge . \nname : The Golden Curry | food : Chinese | price : high | family friendly : no | near : The Bakers||Chinese food suppliers , The Golden Curry , located near The Bakers provides meals at high price range . It is not child friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap Italian coffee shop near Burger King in the city center , we are no a family - friendly coffee shop with a great customer Rating of 5 out of 5 . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||I love eating at The Punter . The prices of £ 20 - 25 are just right and the kids can run around by the riverside , while we are waiting for our table . After we are finished , we can scroll down near The Portland Arms for a walk . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves English food in the moderate price range . Its customer rating is 3 out of 5 , it is not kid friendly , and it is located near the Rainbow Vegetarian Café . \nname : The Waterman | price : moderate | family friendly : yes||The Waterman is a child friendly restaurant with a moderate price range . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||In the riverside area there is a coffee shop The Golden Palace in the £ 20 - 25 price range . It rates 3 out of 5 and it serves French food . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a poorly rated mid price dine in restaurant located near All Bar One . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||Cotto is located near Ranch . It is a kid - friendly restaurant . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is a children - friendly restaurant of French food where the prices surpass £ 30 . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is an expensive , child friendly , Italian pub located by the riverside . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a moderately priced restaurant near The Bakers . It is kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is average priced with low customer rating , is family Friendly located in the Riverside area near Burger King . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||While visiting the city centre , check out Cotto , a coffee shop near The Portland Arms . Serving moderately priced Fast food , customers have rated it 3 out of 5 . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies with a high price range is not children friendly . They are near Express by Holiday Inn and have a customer rating 3 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||With an average customer rating , Taste of Cambridge is a high priced restaurant . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : yes||The Vaults family friendly restaurant has Indian food with a price range of less than 20 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is located near The Portland Arms and offers fast food with a high customer rating . It is kid - friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop in the riverside are that is kids friendly . It serves French food and is rated 3 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||There is a French coffee shop called Clowns that is rated 5 out of 5 by customers . It is located in the city center near Clare Hall . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man French restaurant is located in Riverside near the All Bar One . It is not family - friendly , but the price range is less than 20 pounds . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a high - priced Chinese restaurant in Riverside . The Phoenix has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is located near The Sorrento in the city centre . It serves Italian and is not family - friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderate pub in the city centre near of Café Sicilia that delivers Fast food . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The restaurant , The Golden Curry , is a family friendly , all - day breakfast restaurant right next to The Bakers , \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House offers French food in the riverside area near The Rice Boat . \nname : The Phoenix | food : Indian | customer rating : high | area : riverside||The Phoenix , located in riverside , serves highly rated Indian food . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly eatery with average costing plates . However , it is only rated 1 of 5 stars . It is located near Express by Holiday Inn . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||The Phoenix French food in the riverside area and a 3 out of 5 customer rating \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a moderately priced Indian pub . It 's riverside and it is kid friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||A kid friendly Italian restaurant is the Loch Fyne . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||The Wildwood coffee shop is an average - priced location that serves a light menu of food and alcohol . Located near the Ranch , customers give this location a 1 out of 5 stars . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum coffee shop is a low cost , family friendly establishment that sells cheese and wine . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||The Wildwood is located near Ranch . It is a high priced coffee shop with Fast food and a customer rating of 1 out of 5 . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is family friendly , and serves French food . They are located in riverside , and have received an average customer rating . \nname : Loch Fyne | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is 3 out of 5 . \nname : Loch Fyne | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||The Fast food place near The Rice Boat at the riverside is named Loch Fyne and has a customer rating of 3 out of 5 \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the city centre there is a low - priced coffee shop Fitzbillies of 5 stars where there are delicious hamburgers for the family . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Expensive sushi can be found at Loch Fyne , where you can dine with your children . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : city centre||restaurant in city centre called The Golden Palace has an average customer rating \nname : Alimentum | food : English | price : high | area : city centre | family friendly : no||Alimentum serves English food in a high price range in the city centre . They are not child friendly . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||For a cheap but low rated meal , try Midsummer House , near All Bar One \nname : Wildwood | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | near : Ranch||There is a low rated coffee shop near the Ranch named Wildwood . \nname : The Eagle | food : Chinese | customer rating : high||Highly rated Chinese food can be found at The Eagle . \nname : The Waterman | price : more than £ 30 | family friendly : yes||A kid friendly location falling into the more than £ 30 is The Waterman . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||For a moderate price , English food is available at Browns Cambridge . 1 out of 5 would recommend . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||There is a restaurant that is locate near Café Brazil , The Cambridge Blue pub , that provides average - priced foods . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a Japanese restaurant and coffee shop . It is located near The Portland Arms . Customer rating 5 out of 5 . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum has a low customer rating . They are a family friendly restaurant . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is restaurant Italian in the moderate range , no rank 1 out of 5 , its restaurant located in the city centre on the side Express by Holiday Inn \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Chinese food served at Strada is ideal for adults with a bigger budget . It can be found nearby Rainbow Vegetarian Café . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly coffee shop that serves fast food and has a price range of more than L30 . It is by the riverside near Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the high price range . It is located in the city centre . Its customer rating is average . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is a high priced restaurant in the City centre \nname : The Punter | price : moderate | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is a restaurant with a kid friendly nature in city centre near The Portland Arms with a moderate price range . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : yes | near : Café Sicilia||Near Café Sicilia in the city center is The Dumpling Tree . A family - friendly coffee shop it has prices under £ 20 . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is located by All Bar One and is a high priced , 1 star restaurant . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Riverside has a low - priced French coffee shop called Fitzbillies , that has average customer ratings and isn 't family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Upscale coffee shop , Fitzbillies is a great place to grab a quick bite and enjoy the riverside views . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is a coffee shop providing wine and cheese in the low price range . It is located near Ranch . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that sells Indian food , price range cheap , average customer service rating , located in City Centre , family friendly \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant that is cheap . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is located near Raja Indian Cuisine that has expensive , family friendly take out . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a cheap pub near Café Rouge . It is not family friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : no||Zizzi is a pub that serves Indian cuisine . The customer rating is low and not so much a family friendly environment . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||The pub , Zizzi , serves French food . It has a low customer rating and isn 't family - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves Indian food for a high price range . It has an average customer rating and is located near Burger King in the city centre , It is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves coffee and Indian food for less that £ 20 . It is near Raja Indian Cuisine in Riverside . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum , near Yippee Noodle Bar , is a place selling French food by riverside . It 's got an average rating and the prices are modest , less than £ 20 \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Near The Six Bells with a price range of £ 20 - 25 is a restaurant called Fitzbillies that offers Fast food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a family friendly Fast food pub on the riverside . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||For a low priced coffee shop try Giraffe near The Bakers with a customer rating of 5 out of 5 . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a Chinese restaurant located in the riverside area . Moderate prices and a non - kid friendly atmosphere has earned this establishment a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family Japanese restaurant next to Café Rouge . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a high priced , 1 star restaurant , located next to All Bar One . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is a restaurant food English in the high price range children friendly yes \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There 's a coffee shop that serves Japanese food at Riverside called The Eagle . It 's near Burger King . The price range is about £ 20 - 25 and it 's not kids - friendly , but the customer Rating is high . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||There is a cheap family friendly restaurant called Travellers Rest Beefeater . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop located north of the City center and there is another near by called Café Brazil . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which sells fine foods at moderate prices . They welcome families and are just east of Raja Indian Cuisine on the River \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no||Aromi is a Indian coffee shop in the city centre . Rating is average and no family friendly . \nname : Aromi | Type : restaurant | food : French | area : city centre||In the centre of the city you 'll find the French restaurant , Aromi \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||American food is served at Bibimbap House , located near The Rice Boat on the riverside . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||Found this place called Midsummer House . Has wonderful Italian food even though its high priced . Its a pretty average spot located near All Bar One . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : city centre||The Mill is an expensive city centre pub which serves French food . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers Tucson furniture in the more than 30 pound and people rating high family friendly yes \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Located in the riverside , The Twenty Two provides Japanese food in a family - Friendly environment . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located by the riverside near the Crowne Plaza Hotel , Taste of Cambridge is a Japanese coffee shop that is not family friendly . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , located near All Bar One , serves British Food for low cost . 1 star rated \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman Fast food restaurant build near Crowne Plaza Hotel . \nname : Strada | Type : pub | food : Indian | customer rating : average | near : Yippee Noodle Bar||Strada pub is averagely rated and serves Italian food , it is located near Yippee Noodle Bar . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||The family - friendly Blue Spice is a coffee shop with a cheap price range located near Avalon in the city centre area . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in riverside . it has a moderate price range and customer rating of 3 out of 5 . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers has a moderate price range . They are not kids friendly . They serve English food . They have a customer rating 3 out of 5 . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||In the riverside area is an average rated coffee shop called The Vaults , with a price range of less than £ 20 . It is located near to Café Brazil . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is located near The Rice Boat in the riverside area . It is mid - priced , not child friendly , and gets a 3 out of 5 rating . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Located north of the City centre is Blue Spice , a low - cost , family friendly , 3 - star restaurant . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is in riverside , serves cheap Indian food , is kid friendly , and has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a coffee shop with a sushi bar . It has a three star rating and cheap prices . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||There is a kid free French restaurant near Rainbow Vegetarian Café with a high customer rating and a price range of £ 20 - 25 called Strada . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||There is a highly rated , highly priced , adult only restaurant in the city centre called Fitzbillies . It serves coffee and Indian food . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Yes , Blue Spice is located in the Riverside area providing meals at an average price of less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||Located on the river side , The Golden Palace is a coffee shop with a one star rating and low prices . \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter serves Japanese food with a price range of 20 - 25 \nname : The Mill | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | near : The Sorrento||Located near The Sorrento in Riverside , The Mill is a Fast food serving coffee shop with a price range of 20 - 25 pounds . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||There is a kids friendly restaurant , located along the riverside , near to All Bar One , called Green Man . It provides Japanese food within a price range of £ 20 - 25 . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is child friendly and serves English food . It is by the riverside . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice restaurant is located on the river . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a moderately priced restaurant rated 1 out of 5 stars . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a pub with a customer rating of 3 out of 5 . The price range is 20 - 25 and it is children friendly . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter is a fast food restaurant with a price range more than 30 Pounds . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers is a Fast food average rated high price range children friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||A 5 out of 5 rated , cheap Japanese coffee shop is called The Eagle . It is in the riverside area near Burger King and isn 't family - friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Check out Loch Fyne , a family friendly restaurant . It is fast food . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||There is a Japanese , non family - friendly coffee shop named The Punter near Café Sicilia with an average customer rating and a price range less than 20 . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The kid friendly pub Zizzi has a 1 out of 5 rating . They serve Italian food . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside||The Golden Palace is a coffee shop it serves cheap Indian coffee and on the riverside \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults is a pub that is cheaper than 20 dollars and it is close by to the Café Adriatic that is average rating . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||Rated 5 star by diners , The Vaults offers Pub fair near Café Adriatic . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a moderately priced coffee shop that is family friendly . It is located near Café Sicilia . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The Alimentum is near the Yippee Noodle Bar by the riverside . It is highly rated for selling fast food . The price ranges from £ 20 to £ 25 . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , near Café Rouge on the riverside , serves Chinese food and is rated 5 out of 5 by customers . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a family friendly Indian coffee shop located in the center of the city with a 5 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||Loch Fyne is a restaurant providing Japanese Food . It is located in City center . Not Friend Family . \nname : The Waterman | price : moderate | family friendly : no||The Waterman is an affordable restaurant that does not cater for families . \nname : Loch Fyne | food : English | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||In riverside near The Rice Boat you will find Loch Fyne . It 's an average English eatery . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Between the Café Rouge and The Golden Curry is a child friendly fast food place with average ratings . \nname : Bibimbap House | food : Italian | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House sells Italian food located riverside near Clare Hall with a price range of £ 30 plus . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum a Chinese restaurant with cheap food and an average customer rating is located in the riverside area close to the Yippee Noodle Bar . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is located in the city centre and serves Italian food . It is family - friendly and cheap . It has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Browns Cambridge offers Italian food at the higher end of the price scale \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||The Wildwood is a coffee shop located near Ranch offering low priced fast food . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Moderately priced fast food , The Rice Boat is located at the riverside near Express by Holiday Inn . \nname : The Plough | Type : pub | food : French | price : high | family friendly : yes | near : Café Rouge||Located near Café Rouge , The Plough is an expensive pub that serves French food . It is child - friendly . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Next to The Rice Boat , Three star restaurant Loch Fyne \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||In the riverside area is The Twenty Two , which is child friendly and serves French Food \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in the riverside area near Express by Holiday Inn . Meal prices are less than 20 pounds and it is family friendly . It has a low customer rating . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : no||Customers give Indian eatery The Wrestlers an average rating for it 's high priced and adults only restaurant . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop serving fast food near The Portland Arms but the customer rating is low \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||The named The Olive Grove in riverside has children friendly service and a high price range . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a high rated Italian place . It is not only kid friendly but in the city center with a price range of 20 - 25 . \nname : The Olive Grove | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a family friendly Chinese food pub , higher priced at more than £ 30 . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a restaurant serving Chinese food in a riverside area . It is moderately priced and has a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop which serves Indian food . It has an average customer rating , and is located at the riverside , near Clare Hall . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a five star Italian restaurant that is family friendly located in City Centre next to Café Rouge . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly coffee shop . They also serve Indian food . It is located in the riverside area near Crowne Plaza Hotel . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , near the Rainbow Vegetarian Café serves inexpensive Indian food , is family friendly and excellently rated by its customers . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a cheap , family friendly Indian restaurant with an average rating . \nname : The Eagle | food : English | customer rating : average||The Eagle serves English food and is rated as average . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a moderately priced pub serving Fast food in the city centre in a kid friendly environment . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a family friendly coffee shop near Café Sicilia called The Punter that serves Italian food priced high with a customer rating of 1 out of 5 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||You can find English delectables at The Waterman , with for children and family located close to Crowne Plaza Hotel \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults is a fast food - type restaurant . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat providing French Food . It is located in riverside area near Express by Holiday Inn . Start from low price and family - friendly . Have 3 out of 5 costumer rating . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Receiving 1 out of 5 stars , The Wrestlers , serves sushi at a low price to adults . It is located near The Bakers . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : city centre | near : Clare Hall||Clowns serves Indian food . It has an average customer rating and is a coffee shop located near Clare Hall in the city centre . \nname : Bibimbap House | food : Chinese | price : more than £ 30 | area : riverside | near : Clare Hall||For more than £ 30 you can eat Chinese at Bibimbap House located near Clare Hall in riverside . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||In the heart of the city near Clare Hall is a Japanese coffee shop called Clowns that has a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no||Located in the riverside area is an adult fast food coffee shop named Aromi . Customer rating for Aromi is average . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||For a highly recommended place around riverside at an average cost , choose The Eagle . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a child friendly restaurant serving Italian cuisine . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Loch Fyne is a cheap and family friendly restaurant that provides English food . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop and yes , it is less than £ 20 for the French food with a river side view but the ratings are low . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Midsummer House offers decent French food . It is located near Café Rouge . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes||Cocum is a coffee shop providing Indian in the cheap price . It is located in the city centre . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||A children friendly coffee shop , The Punter , near Café Sicilia , serves French food costing more than £ 30 , and has an average customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop is a mediocre establishment which sells sushi on the river . It is located just east of Clare Hall . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Having an average price of more than £ 30 , The Rice Boat is not a place for children even though it serves Fast food . It can be found in the city centre area near Express by Holiday Inn and has a high customer rating . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Italian food in the riverside area near Café Rouge . It has a low customer rating and is not family - friendly . \nname : The Eagle | food : English | customer rating : average||The 3 star rated restaurant The Eagle provides breakfast . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Chinese children friendly restaurant The Wrestlers is expensive for the low rating \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||For a pub near Café Sicilia in Riverside , check out the The Twenty Two . its customer rating is 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||Near Café Rouge is a family - friendly restaurant named The Golden Curry . It has an average customer rating . It is near the Café Rouge and in the city centre area . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||Wines and cheese are a specialty of The Dumpling Tree restaurant . It is a low priced eatery . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||The Waterman is a 1 - star pub , offering Italian fare and wine , located north of the city centre on the river . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Portland Arms serves Italian food near the riverside . The Cotto ranges between twenty and twenty - five dollars with a high customer rating . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||Wildwood , is restaurant pub yes French £ 20 - 25 \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is located in the city centre and the price is moderate . It has a customer rating of 1 out of 5 . It is not kids friendly . The Waterman sells Chinese food . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a children friendly riverside coffee shop . It is in the high price range and has a customer rating of 1 out of 5 \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat is located close to the river . It is one star rated . It offers a full English breakfast . It is not family friendly . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : no||Zizzi is an adult oriented , highly rated pub serving French food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low priced coffee shop on the river located near Raja Indian Cuisine \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The coffee shop , The Wrestlers , is not kid friendly , considered fast food and has a high price range . Though not kid friendly , it is near Raja Indian Cuisine and river side . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum a coffee shop with a low customer rating is family friendly and serves French food under £ 20 \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood restaurant is child friendly \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns is a cheap restaurant located near Café Sicilia offering family - friendly fare . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a mid - range coffee shop and family restaurant near The Portland Arms . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately priced , kids friendly fast food restaurant , rated 3 out of 5 . It is located near Rainbow Vegetarian Café . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | near : Clare Hall||Clowns is a Fast food coffee shop located in the city centre , near Clare Hall . It is not popular with customers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an expensive child - friendly Japanese coffee shop located in the city centre , near Burger King . It receives low customer ratings . \nname : The Golden Curry | food : Fast food | price : high | family friendly : no | near : The Bakers||The Golden Curry has hight price range for begin Fast food , also they are not child friendly you can find them near The Bakers . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice is a restaurant Italian in the riverside with moderate price \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a family friendly French coffee shop , located in Riverside . Good customer service . Good prices . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||Rated 1 out of 5 by customers , Browns Cambridge serves low - priced English food . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a child friendly establishment located near The Rice Boat in the riverside area . It is in the high price range with an average customer rating . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||There is a coffee shop called The Vaults near Café Brazil and the river . The Vaults is not cheap and its customer rating is low . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is a pub in the riverside area serving expensive Italian food . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||low customer rated Zizzi , the family friendly Italian pub . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||If you 're looking for an inexpensive Japanese pub , give Wildwood a try . Rated 3 out of 5 . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop has a moderate price range . They are near The Sorrento and serve food . \nname : The Waterman | Type : pub | food : Indian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub that features Indian cuisine . This establishment is located in riverside and earned a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a fast - food restaurant situated near Café Sicilia , offering low - priced food . 1 star rating and not family - friendly . \nname : Zizzi | Type : restaurant | price : high | area : riverside||Zizzi is located in the riverside area . It is a restaurant with a high price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a family - friendly coffee shop that offers high - cost and highly - rated pasta . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||5 Star oriental cuisine . Family dining near the river . Aromi coffee shop . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Chinese food restaurant where prices range more than £ 30 . Strada is not children friendly , but they have a high customer rating . You can find Strada near Rainbow Vegetarian Café . \nname : The Phoenix | food : Fast food | customer rating : average | area : city centre||The Phoenix is an averagely rated fast food establishment in the city centre . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman serves Chinese food in the high price range , It is children - friendly and has a customer rating of 1 out of 5 . It is located in Riverside . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : city centre||The Phoenix is a cheap restaurant , located in the city centre , that serves Indian food and has an average customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi coffee shop in the riverside area offers French food rated 5 out of 5 by customers , and an adult dining experience . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||For a cheap , family - friendly , average restaurant located in the city centre , visit The Waterman . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near the Express by Holiday Inn and it 's family friendly . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers is a restaurant that serves British cuisine , it is situated next to All Bar One . \nname : The Eagle | food : English | customer rating : average||With an average customer rating The Eagle Serves English food \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||The Plough is a child Friendly restaurant near to The Bakers . A meal here will cost more than £ 30 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese eatery located near the Express by Holiday Inn in the city centre . Their prices are less than £ 20 but have low customer ratings and are not family - friendly . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is an English restaurant that is located near All Bar One with prices under 20 pounds and low customer rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no||The Olive Grove serves Fast food in a pub . Priced moderate . Not kid friendly and located in riverside . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||The Plough is an inexpensive family friendly pub that serves English food . It is located next to Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace coffee shop is a 3 - star place in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop . It is rated 5 out of 5 and is located in the city centre not far from the Crowne Plaza Hotel . However , it is not really family - friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Located near Burger King in the city centre is a highly rated coffee shop called The Eagle . The Eagle is not conducive for kids . They serve Italian food with a price range of £ 20 - 25 . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is Pub in the riverside area . Have 1 out of 5 rating . Have moderate price range \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A kids friendly coffee shop moderately priced with a customer rating of 3 out of 5Located in the riverside area is Zizzi \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue is an English food restaurant and has a low customer rating of 1 out of 5 . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside near Express by Holiday Inn is an Indian restaurant named The Rice Boat . It has a high price range , average customer rating , and is not children friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Located near The Portland Arms , Cotto is a low customer rated coffee shop that also offers Italian food . It has a price range of less than £ 20 and is in riverside . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : no||In riverside there is The Olive Grove that is an Indian pub \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||Rated 1 out of 5 , Wildwood restaurant is near Café Rouge . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto coffee shop serves above average food with prices starting at more than £ 30 . Cotto coffee shop is located in the riverside area near The Portland Arms . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults is a family friendly restaurant serving an array of wines , cheeses , and Italian tapas . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is on the riverside near Avalon . It is kid friendly with a price range of £ 20 - 25 and highly recommended by customers . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop offers cheap Indian cuisine . Has an average customer rating . Located by the riverside near Burger King . It is not family friendly . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||A family friendly restaurant in riverside is The Olive Grove . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||There is a riverside French food place , named The Phoenix , with a high customer rating , and prices in the £ 20 - 25 range . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop that serves Italian food , located in City Centre . It 's very pricey , but also has a 5 - star rating . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||Alimentum is a sushi restaurant . It is medium priced and family friendly . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub with a high price range and have a customer rating of 3 out of 5. they are located near the Café Adriatic . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||By the riverside near to the Café Brazil is The Vaults . It is an expensive coffee shop with an average customer rating . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman serves fast food near the Crowne Plaza Hotel . It is not family - friendly . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||The family friendly The Olive Grove is an inexpensive pub located in the riverside area . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is a cheap place near All Bar One in the riverside area \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two is an Italian restaurant that does not cater to families . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||The Mill is a riverside pub with average prices \nname : Loch Fyne | Type : restaurant | food : French | price : cheap | family friendly : yes||Loch Fyne is a family friendly restaurant with a cheap price range and French food . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a family friendly coffee shop that serves French food . It has an average customer rating but also caters to low price ranges . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a child - friendly Japanese restaurant by the river . Its rating is 3 out of 5 . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : city centre||Clowns is an ok pub located in the city centre where you can get cheap food \nname : Fitzbillies | food : Chinese | price : high | near : The Six Bells||Chinese - serving Fitzbillies has a high price range and is located close to The Six Bells . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||with a customer rating of 5 out of 5 The Golden Curry serves French food and is kid friendly \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||High Price and rating 1 out of 5 , children - friendly Blue Spice is by riverside \nname : The Olive Grove | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap , family friendly pub located in Riverside which serves Japanese food . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a restaurant kids friendly and as a customer rating of 3 out of 5 \nname : The Twenty Two | Type : pub | customer rating : low | area : city centre | near : Café Sicilia||There is a pub near Café Sicilia in the city centre called The Twenty Two , and it has a low customer rating . \nname : Midsummer House | food : Japanese | customer rating : 1 out of 5 | near : Café Rouge||There is a Japanese spot with a low rating near Café Rouge named Midsummer House . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||A Chinese restaurant with a cheap price range and a customer rating of 5 out of 5 is located on a riverside . It is called The Waterman and is not family friendly . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high rated , high priced French restaurant located on the riverside by Yippee Noodle Bar . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is a low - priced pub that 's located just outside of the city centre . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced Indian coffee shop in the city centre . It is not kid friendly and is rated 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum serves moderately priced Indian food and coffee . Rated 3 of 5 , not kid friendly . \nname : The Mill | Type : pub | food : Italian | price : high | area : city centre||The Mill is a high end Italian pub located in the City Centre . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms is an Italian coffee shop called Cotto . It has a high price range and was given a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry has a terrible rating , Italian food is served and kids are welcome . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||The Zizzi is a one star , family friendly pub \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fast food family friendly place with high prices and only 1 star out of 5 and is near Rainbow Vegetarian Café \nname : The Waterman | Type : pub | food : English | customer rating : average | area : city centre||The Waterman in city center serves English food . \nname : Alimentum | food : Chinese | price : cheap | area : riverside | family friendly : yes||Alimentum offers cheap Chinese food in a family atmosphere of the riverside area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||there is a Japanese coffee shop called The Eagle with a price range of 20 - 25 pounds in Riverside near Burger King \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Located near The Six Bells is Fitzbillies , which offers low - cost British dishes . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults in Café Adriatic is a great 5 stars pub with middle prices . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop serving French food near Clare Hall in the city centre . It has a low customer rating . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Located in city centre , Alimentum , near Yippee Noodle Bar provides Chinese food with a moderate price range , and customer rating 3 out of 5 . \nname : Green Man | Type : pub | food : Chinese | area : riverside | near : Café Rouge||Green Man is a pub that serves Chinese food located in the riverside near Café Rouge \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers a family friendly , cheap , French style place has a consistent 5 out of 5 rating from customers . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Children Friendly French Food place has a high price range and a customer rating 3 out of 5 , the name is The Waterman and is located in city centre . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : no||In the city centre is a French food restaurant called Alimentum . It is non family - friendly and it is in the less than £ 20 price range \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Fitzbillies is an English based food place located near The Six Bells . Their food is generally less than £ 20 . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice is a moderately priced restaurant , situated on the riverside . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Scoring 3 out of 5 stars , the family friendly The Waterman is a highly priced riverside Sushi Bar . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : no||Let 's go to , Alimentum , at the riverside , they aren 't kid friendly , it 's fast food , and the price is moderate . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Strada is a restaurant with a customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||Wildwood is a British pub with a one star rating and a high price point . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman provides fast food in the city centre area . It has a high price range and an average customer rating . It does not provide a children friendly environment . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the city centre is Alimentum , a high priced restaurant serving Italian food with one star . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||Eat low cost Japanese food in The Dumpling Tree for all \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a kid Friendly Japanese restaurant . \nname : Loch Fyne | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Located in the Riverside area , neighboring The Rice Boat , Loch Fyne is a Chinese restaurant that has received low customer ratings . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||An inexpensive Italian restaurant is The Dumpling Tree . \nname : The Cricketers | Type : restaurant | food : Indian | near : All Bar One||The Cricketers is a restaurant providing Indian food It is near All Bar One . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||5 out of 5 restaurant called The Golden Palace in the riverside \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a family restaurant , the prices are reasonable for 5 stars \nname : The Eagle | food : Indian | customer rating : 1 out of 5||The Eagle , serving Indian food , is rated 1 out of 5 . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||cheese pasta at the riverside Alimentum has a very low customer rating with a high price range near the Yippee Noodle Bar . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||A pub near Café Adriatic named The Vaults has a low customer rating and has a price range of more than £ 30 \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge an Indian coffee shop in the city centre area near Crowne Plaza Hotel has a 5 of 5 rating and is family friendly . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Clowns is a pub with moderate prices and a 3 out of 5 customer rating . It is located in the riverside area . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheaply priced Italian restaurant in the center of the city near Yippee Noodle Bar that has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a child friendly Japanese restaurant . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a mid priced range restaurant called The Phoenix near the river . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry has Italian food and is children friendly . It has an average customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||There is a child friendly restaurant located near The Sorrento by the name of Browns Cambridge . It is situated on the riverside and serves Italian food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Japanese food and is located near Raja Indian Cuisine and the city center . It is non - family - friendly and is less than 20 pounds in price range . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||The Cambridge Blue is a 3 out of 5 restaurant for Japanese food . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||A restaurant with a high price range is called the Taste of Cambridge . It gets 3 out of 5 for ratings . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge in the riverside area offers Japanese food in a family - friendly environment and has an average customer rating . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is an average priced Indian food restaurant , with a high customer rating , located in the city centre . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : yes||For a high priced city centre children friendly fast food restaurant go to Alimentum \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||Moderate priced French food and coffee at the coffee shop near The Sorrento , called The Mill . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Serving Italian food with a high price point , adults - only Strada is located near Rainbow Vegetarian Café and has a customer rating of 1 out of 5 . \nname : Fitzbillies | food : French | price : high | near : The Six Bells||Fitzbillies is a high end French restaurant located near to The Six Bells . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||For Japanese food , try Aromi . It is a restaurant down at the Riverside . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap , family friendly coffee shop near Avalon . It is in the area of riverside and has an average customer rating . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers serves French food with a price range of less than £ 20 . It is family friendly but has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a Japanese coffee shop located on the riverside . It is rated 5 out of five and is priced over 30 . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Near the Ranch is a mid - priced coffee shop called Wildwood providing food and drink . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||In the higher price range is the child friendly establishment The Punter . It is located at the riverside near The Portland Arms . \nname : Cotto | food : Fast food | customer rating : low | family friendly : yes | near : Ranch||Cotto is located near Ranch and it is a low ratings . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is , yes , a family friendly coffee shop located near The Bakers that has a low customer rating and has a price range of less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||Our moderate price range here at Loch Fyne Japanese restaurant provides an enjoyable place for most , as we are kid friendly . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : more than £ 30 | near : Café Brazil||With a price range of over 30 euros , The Cambridge Blue is a pub located near Café Brazil . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | near : The Sorrento||Close to The Sorrento in riverside The Mill coffee shop offers an Italian menu at a cost of less than £ 20 . \nname : Green Man | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man Chinese is in riverside near All Bar One , they are children friendly , prices are more than 30 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||A family safe mid priced restaurant is Loch Fyne . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre||A cheap Indian coffee shop with an average customer rating can be found in the city center in the form of The Golden Palace \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||Close to the Crowne Plaza Hotel is The Waterman restaurant \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat near the Express by Holiday Inn , serves Italian food , is riverside and costs less than £ 20 ; however it is not family - friendly , and has a low customer rating . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant located near Rainbow Vegetarian Café . It has low prices and a customer rating of 5 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a 1 star low cost family friendly coffee shop with healthy food and wine . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||A family friendly restaurant named The Punter is located near Café Sicilia . It has low prices and is rated 3 out of 5 . \nname : The Vaults | food : English | price : moderate | family friendly : no||No kids are welcome at The Vaults , an English restaurant with moderate priced food . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada offers a five star rating and fine Japanese food near the Rainbow Vegetarian Café - just leave the kids at home . \nname : The Olive Grove | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||If you want to go out as a family to eat good Italian food in a friendly riverside pub then try the The Olive Grove . The meal will cost above average at over £ 30 but the children will be made welcome \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Wildwood is near Ranch and has a average rating . It is a cheap coffee shop offering Fast food . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||Japanese restaurant , The Cambridge Blue is a 3 out 5 recommended restaurant . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : no||The Olive Grove is a moderately priced adult only pub serving French food located in the city centre \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||Near Burger King , The Eagle , is a fast food coffee shop - not child friendly , with a high price range and average customer rating in the Riverside area , \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||There is a moderate priced pub The Mill located in riverside that serves French food . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn . The establishment is cheap , but not family - friendly . Rated 5 out of 5 . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||The Wildwood pub is an English food restaurant . It is in the expensive price bracket with a three star rating . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : no | near : The Portland Arms||Just along from The Portland Arms , The Dumpling Tree public house offers English Food , without the kids . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is an Italian restaurant . It has been highly rated with meals costing more than £ 30 . It is not children friendly . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Mid priced Indian restaurant , The Rice Boat is a family friendly restaurant with a high customer rating . Situated near Express by Holiday Inn . \nname : Loch Fyne | food : Chinese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne serves Chinese food and is located in the riverside area near The Rice Boat . It has an average customer rating . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman is a low rated French pub in riverside . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a cheap , Italian shop in riverside . It is not a child friendly zone with a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||There is a sushi restaurant called The Golden Curry , near Café Rouge , and by the river . It isn 't family friendly and only has one star though . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||in riverside near Café Brazil there is a coffee shop The Vaults with a price range of £ 20 - 25 and high customer rating . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Visit Cocum with your kids if you want a highly rated Indian coffee shop without spending the earth . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop which offers fast food at a high price point suitable for families . It is located near Café Sicilia and is rated 1 star . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||Cocum is a Japanese coffee shop and eatery . While it is not family - friendly and customers rate it average , typical costs are below twenty pounds . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove is a kid friendly restaurant in riverside \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that is family - friendly . Prices range less than £ 20 . It offers Japanese food and is located in the city centre near Burger King . It has a low customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi coffee Shop is located in city center providing Italian food . Have 5 out of 5 costumer rating and family - friendly too . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||There is a coffee shop called The Mill serving fast food at the riverside near The Sorrento . The price range is high . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is an Indian coffee shop near The Portland Arms in the city centre . They have a price range more than £ 30 and have a high customer rating \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||The Waterman restaurant pub is right off the river . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : city centre||The Waterman is a low rated English pub in the city centre . \nname : Zizzi | Type : pub | food : Japanese | customer rating : high | family friendly : yes||Zizzi is a kids friendly Japanese pub with high ratings . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree is an expansive English food restaurant . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||coffee shop fast food moderate price range area riverside eat type fast food The Mill The Sorrento \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||There is a mid - priced pub The Plough located near Café Rouge that provides mid - priced fast food and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies a low cost family - friendly Italian coffee shop with an average rating located in the city . \nname : The Eagle | food : Italian | customer rating : high||The Eagle offers Italian food . The Eagles is rated high . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento in riverside is a family friendly place called Browns Cambridge that serves Italian food . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kid friendly riverside coffee shop near Avalon . It has a moderate price range of 20 to 25 pounds and is highly rated . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a city centre coffee shop offering fast food . Prices are high and children are not permitted . \nname : The Twenty Two | food : Fast food | family friendly : no||The Twenty Two is not family - friendly and offers fast food . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle is in the riverside area and it has a price range of less than £ 20 and an average customer rating . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman provides Chinese food It is near Crowne Plaza Hotel . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a fast food restaurant that is kid friendly . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||An English restaurant near the Rainbow Vegetarian Café with a high customer rating is Strada . The price range is more than £ 30 and the restaurant is not friendly to children . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Although not considered family - friendly , highly rated The Golden Curry serves a French menu and sits on the Riverside near Café Rouge . \nname : Midsummer House | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a Japanese restaurant with a moderate price range . It is poorly rated , having received 1 out of 5 . It is near All Bar One . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter , found near Café Sicilia , is a family friendly coffee shop . It serves sushi in the high price range . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||At the riverside there is a high customer rated English food place called Alimentum , which serves food for more that £ 30 , it is located near Yippee Noodle Bar . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||For a children Friendly and a rating of 1 out of 5 , visit The Waterman located in riverside . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly Chinese restaurant . Food costs less than £ 20 . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||Located in the City centre , is The Phoenix British restaurant . High prices and a 3 out of 5 star rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre||Located in the city centre is The Golden Palace coffee shop . It serves Indian food at a reasonable price and has average customer ratings . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||With a1out of 5 customer rating , Cocum serves moderately priced Japanese fare in a kid friendly environment . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||In riverside , The Punter located near The Portland Arms has a price range of more than £ 30 and is child friendly . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman , a Japanese restaurant , is located in city centre . It is family - friendly with price range less than £ 20 , and has low customer ratings . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||If you are enjoying walking riverside be sure to stop in The Dumpling Tree . You will find this higher priced , child friendly , coffee shop near Café Sicilia \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is not children friendly and is located in riverside . It has a price range of more than £ 30 , a customer rating of 5 out of 5 , and serves French food . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee shop offers Italian food . The price is low . Customer rating is average . Near The Portland Arms \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop named Browns Cambridge that is kid friendly and serves Japanese food that is located in Riverside near Crowne Plaza Hotel . The customer rating is a 3 - 5 . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix is a fast food place in riverside that has high customer ratings . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The Cambridge Blue is a 5 star British style restaurant . \nname : Alimentum | food : Japanese | price : cheap | area : riverside | family friendly : yes||Alimentum serves Japanese food for a cheap price range . It is family friendly and located in the riverside area . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat a family friendly eatery up the road from the Express by Holiday Inn . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||Highly rated Italian restaurant The Phoenix is located in City center and has low prices . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||A restaurant near The Six Bells called Giraffe sells food ranging from £ 20 - 25 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is an Italian coffee shop that has an average customer rating , is in the riverside area and is child friendly \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||Browns Cambridge provides English food for more than £ 30 , it also has a high customer rating \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a low rated expensive Chinese in the city centre but is family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is an adults - only coffee shop serving Japanese food . It has good reviews however it is quite expensive . It is located near Burger King in the city centre . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||For cheap food , try Fitzbillies , just up from The Six Bells \nname : The Waterman | food : Indian | family friendly : no | near : Crowne Plaza Hotel||The Waterman serves Indian cuisine and is located near Crowne Plaza Hotel . Sorry , no family 's are allowed . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man provides Indian food in the moderate price range . It is located in the city centre . It is near All Bar One . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 3 out of 5||The Cambridge Blue is a restaurant serving Chines food . It has a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , the family friendly pub named The Dumpling Tree serves delicious Italian food . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman pub is located near the river and offers a wide variety to choose from . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Cocum offers pub type food and it is child friendly but it is expensive and consumers rate it average . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||Aromi coffee shop is a low rated , non family family restaurant in the city centre . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a low - priced restaurant near Yippee Noodle Bar that offers Chinese food . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The Eagle has a low customer rating of 3 out of 5 . It is located in the area of riverside and has a moderate price range . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a 1 star pub that is not family oriented . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kid friendly , moderately priced , French restaurant in Riverside near All Bar One . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced restaurant in riverside near Express by Holiday Inn . The restaurant serves Japanese food and has low customer rating . \nname : Bibimbap House | food : French | price : cheap | area : riverside | near : Clare Hall||Bibimbap House , which is in the riverside area near Clare Hall , serves French food in the price range of cheap . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is an expensive place where children are welcome , located near the Café Sicilia . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a restaurant near Café Rouge in the city centre . It serves Italian food and is not family - friendly . It has a low customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the high price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix restaurant for Italian suitable prices food located in riverside . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman serves French food at the riverside . Its price range is more than £ 30 , but it has a 5 out 5 rating and is friendly to children . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : no | near : All Bar One||There is an Indian restaurant called Green Man in the city centre . The price range is bearable but it is not child friendly . It is also located near All Bar One . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : high | area : riverside | near : Clare Hall||There is a coffee shops called Clowns that provides Indian food . It has a high customer rating and is located near Clare Hall by the riverside \nname : The Punter | food : Fast food | price : high||There is a high - priced place The Punter \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no | near : Café Sicilia||There is a non children friendly coffee shop near Café Sicilia that has a high price range and an average customer rating named The Punter . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Located close to The Portland Arms , The Cricketers is a highly rated coffee shop which sells Indian food and is family friendly . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is a restaurant in the medium price range and is family - friendly . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a restaurant called Strada . Although this Italian restaurant is highly priced , it is rated five stars and is family friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a high priced restaurant which serves pasta . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : no||Zizzi doesn 't allow children and has a low rating . It is a Chinese pub . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a French coffee shop called The Eagle that has a low customer rating but is child friendly and is more than 30 dollars and is located in the riverside area near Burger King . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : no||You shouldn 't bring your kids to the highly rated pub Cocum . You can expect to spend between £ 20 - 25 . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is where you can eat the best English Food with all you family , a really good choice in the riverside \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers , rating 3 out of 5 , provides a moderately priced Fast food meal that is not kids friendly . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an upscale children friendly Italian restaurant located near Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter - located near Café Sicilia - is an expensive , family friendly coffee shop that serves Japanese food . It received a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap , family friendly , Japanese pub in Riverside . \nname : Zizzi | Type : pub | food : French | customer rating : high | family friendly : yes||Zizzi French cuisine pub has a high customer rating . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||Strada is a 5 out of 5 rated restaurant . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : no||The Rice Boat is a fast food restaurant near the riverside . The Rice Boat has average customer ratings and has no special amenities for children . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Fitzbillies is an average coffee shop with prices less than £ 20 . Not suitable for children . Located in the city center . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Strada is an overpriced , child - friendly , low - rated place . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||In the riverside area there is a highly priced Fast food place called The Phoenix , it only has a 1 out of 5 rating . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Taste of Cambridge restaurant received 5 out of 5 star score . The place offers dishes for more than 30L . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn . It is cheap , family friendly and has a customer Rating of 5 out 5 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly , cheap Italian eatery , located by the riverside Express by Holiday Inn , and has received an average customer rating . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : no||Located in the city centre , the pub Aromi is not family - friendly and has an average customer rating . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||If you 're looking for something quick by riverside , try Blue Spice . It 's fast food , but it is pricey . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant with an average customer rating near Express by Holiday Inn . It has a cheap price range . It has a bad family - friendly atmosphere . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is 20 to 25 £ pub at the riverside . Also its a kids Friendly place . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||For French cuisine , there is Bibimbap House , near The Rice Boat in riverside . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Loch Fyne is a low priced English family friendly restaurant . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a low price range pub located just north of the City Centre that serves traditional English meals . No public restrooms available . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix , serving Chinese food over £ 30 in the city centre has a high customer rating . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||There is a cheap but 5 - star restaurant Midsummer House located beside All Bar One that provides spaghetti and various drinks . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low rated fast food restaurant and coffee shop . It is reasonably priced and can be found close to Café Sicilia . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a moderately - priced restaurant near The Six Bells . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||For a family friendly Japanese food , head to Browns Cambridge . It can be found near The Sorrento , located in the riverside area . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||In the riverside area , near The Rice Boat , there is a low - rated Japanese food place called Loch Fyne . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a averaged rated restaurant . They are located in City centre , near The Rice Boat . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : no||There is a average customer rating , not family - friendly restaurant called Cocum . \nname : The Punter | food : Indian | price : moderate||The Punter serves Indian food at a moderate price range . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||The Loch Fyne is located next the The Rice Boat and it provides fast food . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that serves Chinese food . It is located near The Portland Arms and is children friendly . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in riverside . It is located near Express by Holiday Inn . It has a high customer rating and is in the price range of £ 20 - 25 . It is kids friendly . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman provides Indian food in the high price range . It is by the riverside , not children friendly , and rated by customers 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cheap Japanese food can be found at the family - friendly and highly rated coffee shop called Cocum . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a cheap - priced coffee shop that provides Indian food and is located in the city centre near Burger King . It is family friendly and the customer rating is 5 out of 5 . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Strada is rated 3 out of 5 by customers for its average price range and adult atmosphere . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter is a sushi restaurant located in the city , offering a higher price range . \nname : Midsummer House | food : Fast food | customer rating : high | near : Café Rouge||Near Café Rouge there is the Midsummer House that has a high customer rating . It serves fast food . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice on the river offers meals at a low cost . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : no||Travellers Rest Beefeater is a restaurant with a price range of more than £ 30 . It isn 't children - friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : cheap | area : riverside | family friendly : yes||The Olive Grove , located by the riverside , is a low - priced pub serving Japanese food in a family friendly atmosphere . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : yes||French food place Alimentum has a price range less than £ 20 and is located in city centre . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family coffee shop , with delicious food located near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne offers Japanese food ranging from £ 20 - 25 and is kid friendly . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||By the Rainbow Vegetarian Café , near the river , there 's a pub called The Golden Palace that 's normally under twenty quid . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||The Phoenix It provides fast foods at a reduced price and is located near the river \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||kid friendly named The Twenty Two by the riverside serves French food \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : city centre | near : The Sorrento||While in the city centre , look for the high priced Indian restaurant The Mill . The Sorrento is just near by . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that has a customer rating of 1 out of 5 . They serve moderately priced Indian food and are kid friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a Japanese coffee shop that is kid friendly , has a 5 out of 5 customer rating , and is located in riverside . \nname : Alimentum | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||there are many places child friendly yes . The price range is also manageable more than £ 30 . The name of the place is Alimentum . the type of food is Italian . and finally it is near the riverside \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||In Riverside , Zizzi is a kid - friendly , moderately - priced coffee shop with a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||In the city centre , near Avalon is Blue Spice . It is a cheap , family - friendly coffee shop . its customer rating is low however . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : no||The Golden Curry Chinese food restaurant has an average customer rating and is not family friendly . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a French coffee shop located near The Sorrento in Riverside . The Mill average price range is £ 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||Loch Fyne is a kids friendly English restaurant . It has a moderate price range . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Five star restaurant , The Golden Curry , is located in City centre near Café Rouge . It has a family friendly atmosphere . \nname : The Golden Curry | food : Chinese | price : high | family friendly : no | near : The Bakers||The Golden Curry offers Chinese for a high price , its near The Bakers . it is not children friendly \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a good place to go for a Japanese meal especially if you have kids because of the family friendly ambiance . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly restaurant named The Waterman . It serves Italian cuisine at less than £ 20 and can be found in the city centre . \nname : The Golden Curry | food : Japanese | customer rating : high | family friendly : yes||The Golden Curry is a child friendly Japanese restaurant with an excellent customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is an expensive , Indian coffee shop in the city centre near The Portland Arms . However , it 's pretty average . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||If you 've got £ 30 in your pocket , try Blue Spice . It is a Japanese restaurant located in Riverside . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada a low price Located near Rainbow Vegetarian Café serving Italian Food no family - friendly with average customer rating \nname : The Plough | Type : pub | food : French | price : cheap | family friendly : yes | near : Café Rouge||With cheap prices , The Plough is a family friendly pub that serves French food . It is located near Café Rouge . \nname : The Phoenix | food : Chinese | customer rating : high | area : riverside||There is a high rated Chinese restaurant called The Phoenix located riverside . \nname : The Waterman | price : cheap | family friendly : yes||The Waterman is a cheap family friendly place . \nname : The Olive Grove | Type : pub | food : French | price : high | area : riverside | family friendly : yes||The children friendly pub called The Olive Grove serves French food and has a high price range . It is located in the riverside area . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||If you are looking for a coffee shop in the riverside area try The Eagle . Also serving low priced French food it is located close to Burger King . It is not family - friendly but has customer ratings of 5 out of 5 . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||Browns Cambridge has a high customer rating priced at more than £ 30 \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||In the moderate price range is the Giraffe which is kids friendly and is near The Bakers . It has a customer rating of 1 out of 5 \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a low cost family eatery near the City centre . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||A French coffee shop called Cocum has a customer rating of 5 out of 5 but its prices are more than £ 30 and it isn 't children friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop that offers Fast Food with a cheap price range . It has a customer rating 5 out of 5 , there is no family area and is is located in the city centre . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is not near the city centre . It serves American food and it is affordable . \nname : The Punter | food : English | price : £ 20 - 25||English food is being served at The Punter , prices start from £ 20- £ 25 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers serves fast food . It is also a coffee shop . The price range is moderate . It is kids friendly . It is in the riverside area near Raja Indian Cuisine . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Near Avalon there is a children - friendly coffee shop names the Blue Spice . It is located at the riverside and has a high price range . its customer rating is 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that provides Indian food at a higher cost . They are located in the center of the city near Raja Indian Cuisine and do not allow children . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an adult French restaurant in riverside located near Express by Holiday Inn . The cost ranges from 20 - 25 and has a rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman near the riverside is a pub that serves Japanese food with a customer rating of 3 out of 5 \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a family friendly restaurant providing meals in the low price range . It is located near the city centre . \nname : The Punter | food : Chinese | price : high||The Punter is an expensive establishment serving Chinese food . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||The Golden Palace are a 1 out of 5 rated restaurant located on the riverside \nname : The Eagle | food : French | customer rating : high||The Eagle has the best French food \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : high||Browns Cambridge provides Japanese food high price range of £ 25 - 25 and as a high customer rating \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides cheap Chinese food in the city centre . It is near to Express by Holiday Inn . It is not family friendly . It has a low customer rating . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry serves French food and is kid friendly and received a customer rating of 5 out of 5 \nname : Loch Fyne | food : Japanese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a highly rated Japanese restaurant near The Rice Boat at the riverside . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Strada is a restaurant with a one out of five rating . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||On the riverside , near All Bar One , is the fast food joint Green Man . It is expensive , but child friendly . \nname : The Punter | food : Chinese | price : cheap||The Punter offers cheap Chinese food . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a expensive coffee shop located close to The Portland Arms . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||With a customer rating of 5 out of 5 , the French coffee shop , The Punter , is child friendly and located near Café Sicilia . Prices are more than £ 30 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The ratings for The Waterman restaurant located near the riverside are 3 out of 5 . It helps that it is a kid friendly restaurant . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||There is an average - priced pub named The Cambridge Blue , providing Japanese food it is located near Café Brazil . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly French restaurant located near Café Rouge in the riverside area , and has a great rating of 5 out of 5 . \nname : Browns Cambridge | food : Chinese | price : less than £ 20 | customer rating : low||Chinese food is featured at the Browns Cambridge . Prices for meals are less than 20 pounds . It has a low customer rating . \nname : Green Man | food : English | price : high | area : riverside | family friendly : no | near : All Bar One||Welcome to the Green Man . We are not children friendly . Our food is English , and we are located on the riverside near the All Bar One . Our price range is high . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada is a family friendly venue providing average food in a cheap price range \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||There is a kid friendly restaurant in riverside called The Olive Grove . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly restaurant , that serves a wide range of French dishes for £ 20 or less . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||Near Café Sicilia there is a pub with a customer rating of 3 out of 5 . It is on the riverside and is called The Twenty Two \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||There is a Fast food restaurant with a low customer rating called Midsummer House . It is near Café Rouge . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is in the city centre near All Bar One with a moderate price range . It serves Japanese and is kid friendly . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||There is an Italian restaurant near All Bar One called The Cricketers . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada has an average customer rating , a price range of less than £ 20 and is family friendly . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high - priced , three - star restaurant located along the riverside near the Yippee Noodle Bar . They serve wine and hors d 'oeuvres . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne is a non - family - friendly French restaurant . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : average||The Cambridge Blue , a Chinese restaurant , has an average customer rating . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||A fast food pub with a high customer rating is Wildwood . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a Chinese restaurant located riverside . Family friendly , moderately priced , customer rated 3 out of 5 . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||Come to The Golden Curry restaurant for some luxurious pasta that your entire family will love , just right outside The Bakers \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Cheap coffee shop , Fitzbillies serves cheap fast food . It has a customer rating of 5 out of 5 and is near the riverside . It is not family - friendly . \nname : The Phoenix | food : Japanese | customer rating : high | area : riverside||The Phoenix serves highly rated Japanese food in the Riverside area . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Rated average and family - friendly , Fitzbillies coffee shop offers low prices on Italian food and is located in the city centre . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a family friendly moderately priced pub located near the river . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn is kid friendly , has French food , a customer rating of 3 out of 5 and a price range of 20 - 25 euros . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn there is moderately priced 1 star restaurant called Fitzbillies that is not family friendly . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||In the riverside a no family friendly restaurant with Chinese food sell less than £ 20 The Alimentum \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||Near Ranch you will find The Cotto , a family friendly restaurant serving lower end French food . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle near Burger King in the heart of the city centre . Is an Italian food and coffee shop which children friendly and a customer rating of high standard . The price range more than £ 30 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant with low prices and is family friendly located in riverside near Express by Holiday Inn . High customer rating . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers coffee Shop . It is located in City center near The Portland Arms . Have 3 out of 5 costumer rating and family - friendly . \nname : The Plough | Type : pub | food : Chinese | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge , providing cheap price range Chinese food in a family friendly environment . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : no||Zizzi is a Chinese pub that doesn 't allow children and has a low rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||If you like Japanese food you will love The Cambridge Blue our fantastic 3 star restaurant . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Highly rated Strada , located near Rainbow Vegetarian Café is both cheap and family Friendly . It caters to English food . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||Near the Café Brazil , in the riverside area , is a coffee shop named The Vaults that has an average rating and very affordable . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||The Dumpling Tree has French food and is a restaurant with a price range of £ 20 - 25 . \nname : The Rice Boat | food : Japanese | area : city centre||The Rice Boat offers Japanese cuisine in the city centre . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a average restaurant in the city centre that serves Japanese food . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Located near the river , Green Man is a family friendly place that offers cheap sushi . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||There is a Japanese restaurant called The Rice Boat with an average customer rating and is family friendly located at riverside . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Italian food in a high price range in a children - friendly setting . At the riverside , it is situated near Express by Holiday Inn and has an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue is a 5 stars restaurant , with a delicious sushi . \nname : The Rice Boat | food : Japanese | area : riverside||The Rice Boat is in the riverside area and is a sushi bar . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman , a Japanese non children Friendly restaurant in the riverside area has a high price range and a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||In Riverside , there is an average priced restaurant serving Chinese food in a pub called The Olive Grove . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is Italian food in the city centre with price moderate and rank 1 out of 5 \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a highly rated , children friendly coffee shop offering Italian selections over £ 30 . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is not kid friendly . It is located near Burger King in city centre . It is a French coffee shop that has a 1 out of 5 rating . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill coffee shop is near The Sorrento and caters for people with a higher budget . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is an inexpensive location offering typical American fare that is located near Yippee Noodle Bar on the river . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a cheap coffee shop The Punter located near the Café Sicilia that provides sushi in the low price range \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is at the riverside and the price range is less than £ 20 . It is a pub and the customer rating is low , \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The family friendly restaurant costs about less than 20 pounds . The Golden Curry is a fast food restaurant near The Bakers . \nname : The Olive Grove | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||The riverside area has a kids friendly fast food pub between £ 20- £ 25 price range called The Olive Grove . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||The Waterman pub , Is located near Riverside that serves Italian food and has a customer rating of 5 - 5 . \nname : Loch Fyne | food : Chinese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is a Chinese restaurant near The Rice Boat in the city centre that has received average customer response . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is an average English food restaurant located in the city centre that is cheap and family - friendly . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a medium priced restaurant near The Bakers \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a well rated restaurant and a cheap one . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is located near Clare Hall in the riverside area which offers fast food at moderate prices . \nname : Bibimbap House | food : Chinese | area : riverside | near : The Rice Boat||Bibimbap House provides Chinese food It is located in the riverside . It is near The Rice Boat . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Cotto , located near The Portland Arms in the city centre , is a low rated Japanese coffee shop that offers prices in the more than L30 range . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop that serves French food . It is near the city center and Clare Hall and the customer rating are average . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||If you 've got kids in tow with a curious palate , why not try The Wrestlers , a French style coffee shop in the city centre - near Raja Indian Cuisine . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a restaurant near The Six Bells with food less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Indian food in the mid - price range . it is in the city centre near Burger King , is kid friendly and has a high customer rating . \nname : Bibimbap House | food : Italian | area : city centre | near : The Rice Boat||Bibimbap House is an Italian restaurant located near The Rice Boat in city centre \nname : Loch Fyne | Type : restaurant | food : Japanese | price : cheap | family friendly : yes||Loch Fyne is an inexpensive Japanese restaurant that is kid friendly . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Fitzbillies is an English restaurant near The Six Bells . It has a moderate price range . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||If you are in the riverside area be sure to look for the great coffee shop , The Vaults . You will find it near Café Brazil . The prices are in the higher range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle , located near the Burger King , is an upscale , family - friendly coffee shop offering tasty burgers and fries . It is several blocks from the city center . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||Taste of Cambridge is a cheap price range restaurant with a customer rating of 5 out of 5 . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||A venue in the riverside area with prices under £ 20 is The Eagle , it has a low customer rating . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill is a moderately priced Italian coffee shop located near The Sorrento in riverside . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||With a rating of 3 out of 5 , the children friendly Blue Spice is near the city centre and has a high price range . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||There is a high - priced fast food restaurant The Phoenix located in City Centre . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a one - star restaurant in the high price range . It is located near the river . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : no||There 's a 5 out of 5 customer rated Chinese pub called Zizzi . It isn 't family friendly though . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A Family Friendly pub with a customer rating of 5 out of 5 in the riverside area is Aromi . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a children friendly restaurant in the high price range . It is near Express by Holiday Inn and has a customer rating of 1 out of 5 . \nname : The Mill | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | near : The Sorrento||A coffee shop , The Mill , serves Indian food and is located near The Sorrento . Prices at The Mill range above 30 pounds . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Eagle is a Japanese restaurant rated 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||There is a Japanese coffee shop with a low customer rating near Café Sicilia . They serve food in the less than £ 20 range and are family friendly , look for The Punter . \nname : Strada | Type : pub | food : Chinese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a Chinese pub , near Yippee Noodle Bar , with a customer rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes||Giraffe is a family - friendly pub that serves fast food in the city centre . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Green Man is a pub on a riverside that is near Café Rouge . They serve French food . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a moderate priced coffee shop with s price range of more than £ 30 which is child friendly has a rating of 5 out of 5 and is in riverside . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a family friendly Chinese restaurant . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||A restaurant that costs more than £ 30 is on the riverside called Zizzi \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Fast food with moderate prices is served in The Rice Boat in city centre near Express by Holiday Inn . It is kids friendly and customer rated 1 out of 5 . \nname : The Waterman | price : less than £ 20 | family friendly : yes||The Waterman is inexpensive and family - Friendly . \nname : The Vaults | food : Chinese | price : high | family friendly : no||There is an expensive Chinese restaurant called The Vaults that is not child friendly . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : city centre | near : Clare Hall||For less than £ 20 you can pick up some fast food in the city centre near Clare Hall from a food venue called Bibimbap House . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is high . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a pub that is children friendly and has an average customer rating near Ranch . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an expensive coffee shop near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian restaurant and is also children friendly . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : no||There is a non - family - friendly pub Aromi located in the city centre with a low customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The coffee shop , The Vaults , is a highly rated coffee shop near Café Brazil and at the riverside , and its prices range above £ 30 . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is located near the Rainbow Vegetarian Café and it is family friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub serving Italian food near The Portland Arms . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly pub that has a price range less than £ 20 and has a low customer rating \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is located near All Bar One , in the city centre . The English restaurant is inexpensive , but not family friendly . \nname : The Mill | Type : pub | food : Chinese | price : cheap | area : riverside||The Mill is a pub that provides Chinese food in the cheap price range . It is located in the riverside . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly Indian restaurant located near Café Rouge within Riverside . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a Japanese restaurant . It is riverside , located next to The Sorrento , and the range of price is between £ 20 and £ 25 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that welcomes the entire family to come enjoy the Japanese food on the riverside while only spending a moderate amount . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||In the riverside area you will the pub , Giraffe . Here you will experience an adult only atmosphere , while your food is served quickly . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman eats French food near Crown Plaza Hotel . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||There is an Italian restaurant in the city centre named Alimentum . It 's near the Yippee Noodle Bar . The food is high priced , but customers have only given it average ratings . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is an adults only Indian coffee shop located near riverside . The prices are moderate and the customer ranking is 1 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||An Italian kid - friendly restaurant called The Rice Boat near the river has received a low customer rating . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub in the riverside area with a customer rating 1 out of 5 . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||It has high customer rating with food within £ 20 to £ 25 . Browns Cambridge serves Italian food . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The 5 out of 5 rated coffee shop , The Eagle , is located in the city centre near the Burger King . It is not family friendly , with cheap Indian food being served . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a mid - priced , family friendly restaurant , The Wrestlers coffee Shop , that offers take - out or deliveries . It is located in city centre just east of Raja Indian Cuisine . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat , Riverside , The Twenty Two is a kid friendly establishment , moderately priced , with a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||In the riverside area , near Café Adriatic , is Travellers Rest Beefeater . It has a 5 out 5 customer rating and a price range of more than £ 30 . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : yes||Giraffe is a pub located in the city centre that servers English dishes . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||In the Riverside area near The Rice Boat , The Twenty Two offers a family friendly environment with pricing less than 20 but a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The coffee shop named The Golden Palace has Italian food and is along the riverside . The price range is moderate and has a customer rating of 1 out of 5 . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||There is a recommended five star sushi restaurant Strada located close by the Yippee Noodle Bar \nname : The Eagle | food : Fast food | customer rating : low||There is a fast food with low customer rating The Eagle . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||Family Friendly located in the riverside area with a cheap price Range is Green Man \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||At the riverside area is The Golden Curry , with a rating of 5 out of 5 . It is family friendly , serves English food , and can be found near Café Rouge . \nname : The Rice Boat | food : Japanese | area : city centre||Delicious Japanese food sold in the city centre at The Rice Boat . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry serves Chinese food , isn 't child friendly and has a low customer rating . It is near Café Rouge and the city centre . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is an Indian restaurant near riverside with a customer rating of 3 out of 5 . It has a moderate price range . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is located on the river and is family friendly . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is a pub on the riverside which serves Japanese food in the less than £ 20 price range . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : yes | near : Café Sicilia||There is a cheap and family - friendly coffee shop The Dumpling Tree located in city centre in the price range less than £ 20 . It is near the Café Sicilia . \nname : Loch Fyne | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat there 's a Fast food place at the riverside named Loch Fyne that has a customer rating of 3 out of 5 \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French food . Located near Express by Holiday Inn in the city centre area . Relatively cheap . and family - friendly . \nname : The Twenty Two | food : Italian | family friendly : yes||Child friendly restaurant , The Twenty Two , provides Italian meals also . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi is a child friendly pub , which an average customer rating which serves English food . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||The price range is high , the customer ratings are 1 out of 5 stars , which is low ; nevertheless , the Wildwood pub is a fast food chain enjoyable to everyone . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||Within a moderate price range the outstanding French food available at The Golden Palace , provides a 1 out of 5 customer rated coffee shop style venue on the riverside \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves Japanese food in a family friendly atmosphere . It is located near The Sorrento on the riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a Japanese food and coffee shop located at riverside , with a price range of £ 20 - 25 . Customers rated it as high , but it is not kid - friendly . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||The Phoenix is a restaurant located in City Centre . 1 out of 5 customer rating . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater located near the Café Adriatic , is an expensive one star restaurant . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : riverside||The Mill is an inexpensive Indian pub in riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle Is a restaurant located next to Burger King , in the low price range \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a cheap coffee shop that sells French food . its has been rated 5 out of 5 by customers , however it isn 't family - friendly \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||A restaurant with Japanese food named The Waterman is not family - friendly and is located in the city centre . It has a customer rating of 5 out of 5 and a price range more then £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The Golden Curry offers fast food in a family - friendly setting . Reviews rate it as ' average ' . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a Chinese joint . It is near The Bakers , and is a less than £ 20 and family friendly . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside area near the Express by Holiday Inn is The Rice Boat . It serves fast food and has a high customer rating . The price range is £ 20 to £ 25 . It is not child friendly . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle , a Japanese restaurant with a customer rating of 5 out of 5 . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||The Fitzbillies is a place that is not kid friendly having a price range of 20 - 25 with a customer rating of 3 out of 5 is located near the Express by Holiday Inn \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||A family friendly Italian restaurant located in the City center . and its called The Wrestlers . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||The restaurant Midsummer House located next to All Bar One is in the low price range \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese restaurant located in the city centre near Café Rouge . The Golden Curry is not family friendly and has a low customer rating . \nname : Bibimbap House | food : Japanese | price : high | area : riverside | near : Clare Hall||Bibimbap House , a Japanese restaurant near Clare Hall on the riverside , has a high price range . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum , an English food place with a high customer rating and a price range of over £ 30 which is near Yippee Noodle Bar at the riverside . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a moderately priced fast food outlet in the city centre near to All Bar One . Children are welcome . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman , located on the riverside , serves Japanese food and is not family - friendly . The reviews aren 't great but the prices are low . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||For Fast food in the riverside area , The Phoenix is pretty average . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive fast - food restaurant with a low star rating . It is located near to Yippee Noodle Bar . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Wildwood server English pub food at a moderate price \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is a pub in Riverside offering high priced Italian cuisine . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is an Indian coffee shop with high ratings . This restaurant located near The Portland Arms has a high rating and is friendly to children . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||There is an expensive low rated kid friendly coffee shop near The Bakers called Giraffe . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a Chinese food restaurant with a 1 out of 5 customer rating , and it is child friendly near a Ranch . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Highly rated ; The Phoenix is a high priced Japanese food restaurant near city centre . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||the Pub at riverside called Clowns has a high price range and is rated 3 out of 5 \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop offers food and drink . It is located near Café Sicilia . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||A kid friendly pub that has a customer rating of 3 out of 5 is Cocum . It is in the moderate price range . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 1 star restaurant that is medium priced for families near Express by Holiday Inn . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : riverside||There is a pub The Waterman serving Chinese rated low by customer in riverside . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near the Rainbow Vegetarian Café , it costs more than £ 30 but it has a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue pub is a restaurant that provides a average - priced food . It is located near Café Brazil . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop has the best meals at good prices . It is rated one star and is located at Ranch . \nname : Loch Fyne | food : Indian | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne provides Indian food It is located in the riverside . It is near The Rice Boat . Its customer rating is average . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum has a three - star rating and is located near Yippee Noodle Bar . It 's near the riverside area with a moderate price range . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||Low price The Golden Curry is family friendly located near The Bakers . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a high priced coffee shop providing a children Friendly environment located in riverside . They have a 5 out of 5 customer rating . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a pricey kid friendly coffee shop near The Bakers ; rated 5 out of 5 \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Even though Strada has a low customer rating , it is family friendly and offers selections for less than £ 20 . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix serves Japanese food in the city centre with high prices and low customer ratings \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Earning a customer rating of 5 out of 5 , The Golden Curry is a fast food restaurant that is not family - friendly . \nname : Browns Cambridge | price : high | customer rating : average||Browns Cambridge is a high class restaurant . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||Located on the riverside near The Rice Boat , Bibimbap House is an English venue . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a pasta restaurant with a family friendly environment . It is in the high price range , has one star , and can be found by Express by Holiday Inn . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||The Giraffe , a coffee shop , is located near The Bakers . It is kid Friendly , has a moderate price range and has a customer rating of 3 out of 5 . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a cheap , poorly rated burger place called The Waterman just outside of City centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , moderately priced coffee shop near Burger King in the Riverside area , not kid friendly , 1 out of 5 rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||There is an expensive restaurant called Loch Fyne which provides a family friendly , sit - down environment . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Near Café Rouge in riverside is a restaurant called The Golden Curry that serves fast food . It has a 5 out of 5 rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves French food in a family friendly coffee shop and is situated near Raja Indian Cuisine \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree coffee shop located in the riverside area near Café Sicilia family friendly with moderate prices \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop that also sells fast food , with a very high customer rating while located riverside next to Clare Hall . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The Phoenix is a French restaurant with a 5 out of 5 rating situated in the riverside area . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||for a restaurant with customer Rating 5 out of 5 , the Taste of Cambridge offers meals in the more than £ 30 price Range \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : yes | near : The Sorrento||The family friendly restaurant near The Sorrento is called Browns Cambridge . It serves Chinese . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a low customer rated coffee shop that is called the Browns Cambridge that serves French food and is family friendly near Crown Plaza Hotel on the riverside . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is an Italian restaurant on the riverside which is family friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a child friendly pub , serving Italian food near The Portland Arms . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||Averagely rated and riverside , The Rice Boat serves French food and is family friendly . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||The Browns Cambridge is an Italian restaurant with a customer rating of 1 out of 5 with a moderate price range . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a pub which is family friendly . The price range is less than £ 20 and English food is served . It is at the riverside . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves Indian food with a cheap price range and average customer rating in riverside near Yippee Noodle Bar . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kid friendly pub near the Ranch with a customer rating of 1 out of 5 . \nname : The Waterman | price : less than £ 20 | family friendly : yes||The Waterman is family - Friendly place with prices less than £ 20 . \nname : Bibimbap House | food : English | price : more than £ 30 | area : riverside | near : Clare Hall||The Bibimbap House is a restaurant providing English food in the mid to high price range . It is located by the riverside near Clare Hall . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a high priced restaurant who received on star and is family - friendly . They are located on the river near The Rice Boat . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two is not family - friendly with English food in Riverside area . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an averagely establishment serving Italian food . It is located near Express by Holiday Inn in the city centre . The Rice Boat is not family - friendly . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix is an Chinese restaurant located North of the City centre by the river . It is a low cost restaurant and has been rated 3 out of 5 stars by its customers . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry in riverside , near Café Rouge serves Indian food . It has a rating of 5 out of 5 and is family friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||If you are looking for a kid friendly restaurant serving French food , try Browns Cambridge , located riverside near The Sorrento . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a French restaurant with 5 out 5 customer ratings that served affordable dishes is located in Riverside near Yippee Noodle Bar . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is in the riverside area near The Sorrento . It is family friendly and serves Japanese food . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||In riverside , near The Rice Boat , there is an average rated fast food chain named Loch Fyne . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a three star rating and serves fast food at mid range prices . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry has a customer rating of 1 out of 5 . It caters to children and serves English food . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||There a restaurant in the riverside area called The Twenty Two its family friendly and right by The Rice Boat . The prices are very low . \nname : The Eagle | food : French | customer rating : low||The Eagle has a low customer rating and serves French food . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||On riverside is The Twenty Two a child friendly establishment serving Japanese food \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is an English , family - friendly restaurant with super low prices . It is located near The Bakers . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop that sells Japanese food . It is poorly rated and located on the riverside by Clare Hall . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man offers inexpensive American fare in a family friendly environment and is located close to All Bar One . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||In the city center near Avalon there is a coffee shop called ' Blue Spice ' . The prices are reasonable and the customer reviews are average . It is not recommended for children . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||There is a cheap Indian coffee shop , Cocum , which is not family friendly and has 5 out of 5 customer rating . \nname : The Eagle | food : English | customer rating : low||The Eagle is a restaurant with 1 Star . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a cheap 1 out of 5 rated location . It is not family friendly and is by Express by Holiday Inn . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice is serving French food in the riverside area for less than 20 £ . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is providing Italian food near Express by Holiday Inn in the riverside \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : city centre||The Waterman is an Indian pub with a customer rating of 5 out of 5 in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||The Dumpling Tree is an English restaurant with a cheap menu . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : yes||The Vaults is a cheap Chinese eatery for the whole family . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne is a restaurant providing sea food and grills in the average price range . It is located in the city centre \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 5 - star restaurant located north of the city center . by the river , known for their British cuisine . If you 're staying at the Express by Holiday Inn with your family , this expensive , but highly reviewed restaurant is very close by . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||The Taste of Cambridge is an over- expensive restaurant that isn 't very good . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is expensive and located near Clare Hall \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||There is a cheap pub The Plough located beside Café Rouge that provides fine dine . It is suitable for families . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Located in the centre of the city The Waterman sell Indian food with a high - priced range , the rate is 1 out of 5 because Isn 't friendly with children . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||The restaurant , Cotto , located near Ranch , serves French food , is family friendly , and has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop offering Indian food at a reasonable price . Located in the riverside area , customer give it a three out of five rating . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Midsummer House is located near Café Rouge . It has a three - star rating and offers sushi . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Rated 5 out of 5 , Fitzbillies is a French coffee shop by riverside . It is not children friendly and cost more than 30 . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House is a high price restaurant located near Clare Hall . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a kid friendly pub with high customer ratings . Prices range from £ 20 - 25 . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||For a coffee shop which is family friendly , has a 5 out of 5 rating , serves Japanese food and is under £ 30 you should visit The Punter near Café Sicilia \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A family friendly restaurant located in Riverside that is rated 5 out of 5 is called The Waterman . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre||In the city centre , there is a high - priced French coffee shop named The Golden Palace . Customers rated it 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies Indian coffee shop in the city centre , rated 5 out of 5 by customers , is adult oriented and priced cheap , \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree ; A French Food restaurant , their prices are slightly higher than your average restaurant at £ 30 \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a cheap coffee shop serving fast food . It is rated 5 out of 5 by customers but it is not family - friendly . \nname : The Plough | Type : pub | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||There is a kid friendly pub called The Plough that is located near Café Rouge . Its food is priced between £ 20 - 25 . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is one star rated and in the low price range . It offers a full English breakfast . It is located close to Express by Holiday Inn . It is not family friendly . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers serve French food at their kid - friendly venue . The food is of moderate price and they have a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||There is a Chinese food place named The Golden Curry that has an average customer rating and is family friendly . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers a full English breakfast . It has a one star rating and is in the low price range . It is located near to the Express by Holiday Inn . It is not family friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an Indian coffee shop with moderate prices . Located near Café Sicilia , the shop is kid friendly and has a customer rating of 1 out of 5 . \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||The Green Man located in the city centre , which is near All Bar One , is not children friendly , and has a price range that is more than 30 pounds . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a Mid priced , Japanese restaurant , that offers family dining . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice is a restaurant providing pasta in the low price range . It 's located by the margin of the river . \nname : Wildwood | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | near : Ranch||Located near the Ranch , the Indian coffee shop Wildwood , has a low customer rating but a very cheap price range of less than £ 20 . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : no||The Rice Boat is an English food serving place located in the city center that is not family - friendly and has an average customer rating . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre you will find The Rice Boat which is a highly rated child friendly Italian restaurant . It has prices more than £ 30 and is located near Express by Holiday Inn . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||In city center , The Waterman providing Indian food in less then £ 20 . Customer rating is low and marked as no family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop . for burger and chips , for all the family . Near Crown Plaza Hotel . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Fitzbillies has English food and a moderate price range and is located near The Six Bells . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a restaurant providing food in the low price range . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||With a perfect customer rating , The Golden Curry is family friendly and located near Café Rouge in City center . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||There is a one - star coffee shop named The Golden Palace has high prices which is located by the rive . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : yes||Giraffe is a family - friendly pub providing English dishes . It is located in the city centre . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Riverside includes the French family restaurant , The Rice Boat , rated 3 stars . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||Located in city center , fast food coffee shop Fitzbillies has an average customer rating with a cheap price range . It is not family - friendly . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||An exceptional child and budget friendly eatery near the river is Blue Spice . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Green Man is a pub offering French food . It is located near Café Rouge in the riverside area . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||Zizzi is rated the number 1 place to eat in Cambridge city . The mouth watering English food and the child friendly options give the place a number 1 rating . We highly recommend Zizzis to you \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||In the city centre is The Golden Palace . It is a coffee shop that serves Japanese food and has 3 out of 5 stars . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat Italian restaurant in the city centre near Express by Holiday Inn has a low customer rating , it is not family - friendly , and the price range is less than 20 pounds . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Blue Spice located in the center of the city , is an average family restaurant priced less than 20 . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman providing Fast food , and cheap price range . It is located in city center , have 5 out of 5 costumer rating and family - friendly too . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a Family Friendly Fast food coffee shop , near The Portland Arms customers give it a average rating . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is serving English food with a high customer rating and is located near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop located in the city centre which offers top quality food at a moderate price . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Why not head on down to The Plough . Near Café Rouge , this local pub serves Chinese food between £ 20 - £ 25 and is kid friendly \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is located near Café Sicilia . It is child friendly with a high price range . \nname : Browns Cambridge | food : Chinese | price : more than £ 30 | customer rating : high||Browns Cambridge , highly rated , service Chinese food . Their price range is more than £ 30 per person . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a nice place near The Rice Boat in the Riverside area , with a nice family atmosphere with prices between 20 and 25 £ and pleasant clentele \nname : Blue Spice | food : Japanese | price : moderate | area : city centre||For moderately priced Japanese food , go to Blue Spice in City Centre \nname : The Cambridge Blue | Type : pub | food : Chinese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a Chinese food Pub for less than £ 20 . It is near Café Brazil \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a lowly rated coffee shop that serves Indian food . It is child friendly and moderately priced . \nname : Strada | Type : pub | food : Japanese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub serving Japanese food which has been rated one out of five by customers . It is located near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a highly respected coffee shop in the city centre that serves inexpensive Indian food . Great as it is , Fitzbillies does not offer cuisine the kids would be crazy about . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||The English pub Wildwood is in the high price range but has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : French | area : riverside||The Rice Boat restaurant in the riverside area offers French food . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Strada receives a 3 out of 5 rating from customers . It has high prices and is child friendly . The Dumpling Tree is a kid friendly pub serving fast food near The Portland Arms . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Cocum serves Italian food . Cocum is a child friendly coffee shop with a high customer rating costing more than £ 30 . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is average . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : no | near : Café Rouge||The Plough is a pub near the Café Rouge that serves expensive Chinese food and is not family - friendly . \nname : Bibimbap House | food : Italian | price : high | area : city centre | near : Clare Hall||Bibimbap House , located near Clare Hall in the city centre , serves Italian food with a high price range . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop in riverside by The Sorrento . For less than £ 20 you can enjoy French cuisine . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is located in the riverside . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a moderate price range Italian pub that is located in the city centre . It has a moderate price range is kid friendly . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Japanese food that is less than £ 20 is served at The Wrestlers which is family friendly and has an average customer rating . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix provides Indian food in a moderate price range . It is located in riverside . It has a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is where you get dinner and drinks on a budget just outside the city center . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||You 'll find the Loch Fyne , rated 1 out of 5 by customers , serving fast food on the river side , near The Rice Boat . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||The Twenty Two is a Japanese eatery located on riverside . It is not family - friendly . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||The Cotto coffee shop is mid price ranged near to The Portland Arms in the city centre serving French food but has a bad customer rating . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : no||Head to Alimentum in the city centre for expensive Chinese food , but stay away if you have children . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle near Burger King is a Japanese coffee shop in riverside . It has a low rating and is more than £ 30 . It is not child friendly . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : no||Zizzi serves English food and is a pub that is not family - friendly . It is rated average . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The kid friendly , moderate pricing Italian restaurant Strada , is located near Rainbow Vegetarian Café and has a rating of 1 out of 5 . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located near the Café Rouge . They offer French food for a price of less than £ 20 . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing breakfast . It is family friendly , high priced and has a 5 star rating . It is located near Café Sicilia . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a low cost family friendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a city centre based , children friendly coffee shop within a high price range serving French food at a customer rating of 3 out of 5 \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Cocum , is a coffee shop that offers low - priced food and beverage products . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop with low prices and a 5 out of 5 rating . It serves fast food and is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the riverside area is a child friendly coffee shop called Browns Cambridge , which serves Japanese food and has a customer rating of 5 out of 5 \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a highly rated middle priced restaurant serving American food . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge is an English restaurant . It is moderately priced with a rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||Wildwood is a low price pub with a rating of one star . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : city centre | near : Clare Hall||In the town centre near Clare Hall is Bibimbap House which is a low priced Italian restaurant \nname : The Mill | Type : coffee shop | food : French | price : high | area : riverside | near : The Sorrento||In riverside near The Sorrento there is a coffee shop named The Mill who is a little expensive and serves French food . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant providing Indian food in the moderate price range , and yes it is kids friendly , also located near The Bakers . \nname : The Eagle | food : Fast food | customer rating : high||Fast food outlet The Eagle , has a high customer rating . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a sushi restaurant called The Golden Curry near The Bakers . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is an averagely rated adults only coffee shop offering fast food at mid - range prices , located in Luton . \nname : The Punter | food : Japanese | price : less than £ 20||Japanese restaurant , The Punter , has a price range of less than £ 20 . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||Come check out the Wildwood pub serving fine cuisine . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove is a pub offering a childless atmosphere serving Japanese food in the city centre with high prices . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : no | near : The Bakers||The Plough is found close to The Bakers . It 's an expensive restaurant and not recommended for kids . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : more than £ 30||Italian restaurant named The Dumpling Tree in the £ 30 price range . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||When great Fast food is a must the kids will love Zizzi . It 's a highly recommended pub . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop located in the city center . They serve Japanese food , are not family - friendly , and have a rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Portland Arms The Dumpling Tree English family friendly pub \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly Japanese restaurant near the Express by Holiday Inn in city center that has an excellent customer rating but is in the higher price range . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , near The Sorrento in the riverside area , offers a family - friendly Italian menu . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge is over priced for what it is . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a French coffee shop in riverside called Taste of Cambridge . It is child friendly and located near the Crowne Plaza Hotel \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located in city centre near Express by Holiday Inn , is a French restaurant called The Rice Boat . It is kid friendly , has high customer ratings and has a price range of £ 20 - 25 . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a family friendly Indian restaurant located in the city centre with 5 out of 5 rating . \nname : The Punter | food : Fast food | price : £ 20 - 25||With a £ 20 - 25 price range The Punter providing Fast food . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is a low rating restaurant that is for the whole family and offers French foods \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers located near a Ranch is child friendly and has a Low customer rating \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a city centre coffee shop offering meals in the £ 20 to £ 25 range . It is child friendly and has a customer rating of 3 out of 5 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||There is a high price range coffee shop called The Vaults near Café Brazil in riverside area . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry fast food restaurant is in the City center near the Café Rouge . It is not family - friendly , and the customer rating is very poor . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||There is a moderate priced restaurant called Midsummer House that serves Indian food . It is near All Bar One and has a rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||a low rating Japanese coffee shop would be the family Friendly The Cricketers near The Portland Arms \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is kids - friendly Fast food city centre coffee shop thats moderate priced and a customer rating of 3 out of 5 \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace is located in City centre . They are an inexpensive coffee shop with a 3 star rating . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||A child friendly restaurant , The Travellers Rest Beefeater , is in the high price range . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located on the river next to Raja Indian Cuisine , north of the City centre , is a low - priced , family friendly coffee shop offering burgers and fries as well . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly , high priced , Fast food restaurant near All Bar One in the riverside area . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located in city centre near Crowne Plaza Hotel , Taste of Cambridge is a family - friendly coffee shop serving fast food . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||There is a pub by the riverside called Clowns . It has a customer rating of 5 out of 5 and the price range is typically more than £ 30 . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a none family - friendly restaurant located in riverside near The Rice Boat . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant that serves moderately priced fast food and it is located near Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a 3 - star coffee shop offering sushi for a low cost . North of the city , near the river . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||There is a restaurant Loch Fyne located in City Centre near The Rice Boat . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Riverside , near All Bar One , the Green Man is a low - priced , family friendly , fast food restaurant . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||You can get French food for less than £ 20 at The Golden Curry , it 's near The Bakers and it 's family friendly \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly French coffee shop in riverside called The Wrestlers . They are located near Raja Indian Cuisine and the price range is £ 20 - 25 . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub offering French food . It isn 't family - friendly but is customer rated 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a restaurant providing Indian food \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two at Riverside serves Italian food and is family friendly \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 1 out of 5||Browns Cambridge provides Indian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||The family friendly Browns Cambridge serves French food . It is located on the riverside near The Sorrento . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a coffee shop called The Wrestlers located near Raja Indian Cuisine in the city centre that provides coffee and tea . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia that serves French food , but it has a low customer rating , prices are more than 30 , and they are not kid friendly \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man , located near All Bar One at the riverside , is a French venue , costing more than £ 30 and is not child friendly . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto serves Indian food near Ranch and has an average customer rating and is family friendly . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : no | near : All Bar One||Near All Bar One in the riverside area is this place called the Green Man . It serves expensive Chinese food and it isn 't suitable for children . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||French food is a 5 out of 5 at the riverside The Phoenix \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix Indian restaurant offers high - end dining in the riverside area . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Eagle located in the city centre is rated 3 out of 5 with a price range of 20 - 25 \nname : The Phoenix | food : English | customer rating : low | area : city centre||The Phoenix offers English food in the city centre and has low customer ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the city centre . It is near Burger King . Its customer rating is high . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Indian food in the high price range . It 's child friendly and in city centre near Raja Indian Cuisine . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , located in the riverside area , near Café Rouge , offers Indian food . It is family Friendly with a Rating 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low - priced Italian coffee shop located near Café Sicilia . It is family - friendly and has a 5 out of 5 customer rating . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||A classy Indian dinner for the whole family . Strada is located near the Rainbow Vegetarian Café and has received average ratings . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The kid friendly Blue Spice in the city centre has a customer rating of 3 out of 5 . The price range is £ 20 - 25 . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced restaurant that is family friendly next to Express by Holiday Inn . \nname : The Rice Boat | food : Fast food | area : city centre||The Rice Boat is a fast food restaurant located in the city centre . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is an average rated Italian restaurant . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man , located in the riverside area , near All Bar One , is kid friendly , and offers Japanese cuisine for upwards of £ 30 . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a low priced family friendly restaurant near Café Sicilia . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a sushi restaurant that is not family friendly . Rainbow Vegetarian Café is located near the Strada in the City center . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : high||The Dumpling Tree is a restaurant providing high price Indian food . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Near All Bar One is a moderately priced Japanese restaurant , Green Man , which mostly caters to adults in the riverside area . \nname : Blue Spice | food : Indian | price : more than £ 30 | area : riverside||Blue Spice is a Indian that is more than £ 30 in the riverside area \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a service of Fast food with a price range of £ 20 - 25 \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Close to The Portland Arms is a coffee shop called Cotto by the riverside with a high customer rating has a price range of £ 20 - 25 and provides Italian . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill , is a cheap coffee shop located near The Sorrento . \nname : The Twenty Two | food : Fast food | family friendly : yes||Fast food restaurant The Twenty Two is child friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a Italian restaurant . It is family friendly . \nname : Blue Spice | food : Japanese | price : cheap | area : riverside||Blue Spice is a cheap Japanese restaurant at riverside . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant near Yippee Noodle Bar in the city centre . Food has been rated 5 out of 5 and is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop that serves Japanese food . It as an average customer rating with a price range of less than 20 euros . It is located in the center of the city and not kid friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is rated 3 out of 5 stars for its family friendly coffee shop . It 's also moderately expensive . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a low - rated Chinese eatery in the city centre that doesn 't serve children . \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is an expensive 5 star fast food restaurant with a coffee shop as well . It is above the Ranch . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix Italian restaurant costs more than £ 30 . It is located in the city centre , and has a high customer rating . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||Alimentum serves Japanese food in high prices . It is located at the riverside and is not a children friendly establishment . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside is located a coffee shop named Fitzbillies that offers Fast Food with a moderate price and a customer rating 1 out of 5 . There is no kids area . \nname : The Golden Curry | food : Chinese | price : high | family friendly : no | near : The Bakers||The Golden Curry provides Chinese food in the high price range . It is near The Bakers . \nname : Bibimbap House | food : Chinese | area : riverside | near : The Rice Boat||There is a Chinese restaurant in the riverside area near The Rice Boat named Bibimbap House . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a child friendly fast food takeaway . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||Rainbow Vegetarian Café has a place nearby with cheap prices and an average customer rating , which is called The Rice Boat . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix has English food on the riverside with a high customer rating and a price range of 20 - 25 . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a no families coffee shop serving French food at competitive prices of less than £ 20 . It has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop selling Japanese Food in a family Friendly Environment near The Portland Arms with a low rating \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the high price range in riverside . They are also children friendly . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The Wrestlers offers Chinese food at a cheap price . The venue has an average customer rating and a family friendly atmosphere . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter is a Fast food place where you can spend less the £ 20 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : no||By the riverside there is a restaurant , named The Twenty Two . It serves Indian Food and is not family friendly . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||In the riverside area there is a pub called The Mill . It serves Japanese food and the price range is 20 - 25 pounds . \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||Italian venue The Waterman can be found near Crowne Plaza Hotel . Not family - friendly . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||There is a moderately priced Italian restaurant in the riverside area called Blue Spice . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a moderate price range kid friendly restaurant in the riverside area . They have a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||If you 're looking for a restaurant in the riverside area then you could try The Golden Palace . However it only has a 1 out of 5 customer rating . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Located on the riverside near Clare Hall is Bibimbap House , a moderately priced Italian . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe , and Italian pub in the riverside area , is child - friendly . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a pub with a moderate price range , a customer rating of 1 out of 5 , and is located at riverside . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a highly acclaimed child friendly coffee shop offering English style food and beverage items priced at the £ 30 and upper range . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Located north of the city centre near All Bar One , the Green Man is a moderately priced family restaurant . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill is a French pub on the riverside that has a price range of more than £ 30 . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kids friendly pub near Ranch that has mid range customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a French Café located in city centre with a customer rating of 5 out of 5 . \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man is a kid friendly restaurant in the moderate price range which is located in the riverside area . \nname : The Vaults | food : Indian | price : more than £ 30 | family friendly : yes||The Vaults serves Indian food for more than £ 30 and is child friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low - priced coffee shop serving Japanese food . It has a high customer rating , is family friendly and is located near Café Sicilia . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family safe , high priced , 5 star coffee shop , located next to Burger King . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is an affordable American restaurant not near the city centre . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||The Wildwood pub has a high rating . It is also in the high price range . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a top rated pub in Riverside that is also child friendly . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||There is a child friendly Japanese place for food named Cotto , with a low customer rating near Ranch . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||If you are looking for a sushi or oriental restaurant in Cambridge , then try The Wrestlers , just north of The Bakers . It 's not recommended for families , though . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A family - friendly Italian coffee shop is The Wrestlers . It has prices less than £ 20 and is located near Raja Indian Cuisine , in city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is coffee Shop with good Italian food and price is less then 20 euros . Located in City Centre near by Burger King . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||For a kids - friendly Japanese restaurant , try Loch Fyne . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a low - priced fast food restaurant located in the city centre . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix has a high customer rating and a price range of more than £ 30 . It serves Italian food and can be found in the riverside area . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a 3 star family place in the City Centre . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids friendly pub serving Japanese food . It is located near The Portland Arms . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||Near Café Rouge is a pub called The Plough . it is mid - priced and not family friendly . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||Wildwood is a pub that provides 5 star mid - range food . \nname : Cotto | food : French | near : Café Rouge||Cotto serves French food near Café Rouge . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : no||The Wrestlers serves high price Italian food and has a average customer rating and is for adults . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : no | near : All Bar One||An Indian restaurant in the riverside area Green Man serves high price ranged food in a non child friendly environment near All Bar One \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a highly rated sushi restaurant close to Ranch . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||Near the river , The Phoenix is highly rated . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is both a coffee and sushi shop . It is an expensive establishment with a fair , 3 star rating . The restaurant is near The Portland Arms . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant with reasonable prices , located near the Rainbow Vegetarian Café with fast food . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no||Aromi has a low customer rating and is for adults . It is a coffee shop in the city centre that serves French food . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||This child friendly pub called The Dumpling Tree , serves Chinese food is located near The Portland Arms . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||In the riverside area and near Café Rouge is a French restaurant called The Golden Curry . It is not family - friendly and boasts a 5 out of 5 customer rating . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||At the riverside is a pub called Green Man . It is near Café Rouge and serves English food . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto , a fast food place near the Ranch , is rated at a 4.5 and is children friendly . \nname : Cotto | food : Indian | near : Café Rouge||Cotto provides Indian food . It is near Café Rouge . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||If you are looking for a Japanese style place to eat , try The Wrestlers . Its customer rating is 3 out of 5 , but it is not children friendly and its prince range is high . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||In the riverside area , there is a pub that serves Japanese food called the Giraffe . It is not a family - friendly location . \nname : Cotto | price : moderate | area : city centre | near : All Bar One||Cotto is located near All Bar One in city centre and has moderate prices . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is an Italian coffee shop in the riverside area . It is family friendly with an average customer rating . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House has English food at a moderate price range . It is near All Bar One . It has a customer rating of 1 out of 5 . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||The Vaults is a child friendly fast food place with a range between 20 and 25 euros . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop and dine in restaurant that is fairly expensive near Ranch and it has decent reviews . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is on the riverside , near Clare Hall . It provides mid priced fast food . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : city centre||The Waterman is an English pub located in the city centre . It has a customer rating of 5 out of 5 . \nname : Cotto | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a highly - rated place to eat fast food . It 's a family - friendly venue , and is near to Ranch . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||Located in the city centre , Alimentum is a child friendly establishment serving mid - priced Japanese cuisine . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop sells a range of cheeses , fresh fruit , fondues , wine and spirits , among its delicacies . In the mid - price range it has earned a three - star rating . They are close to the river . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Avalon||There is a moderately priced coffee shop called Blue Spice in the city centre near Avalon . It is kid friendly and it has high customer ratings . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||There is an Indian coffee shop called Aromi in Riverside . It is kid - friendly and highly rated . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Next to All Bar One is Midsummer House . Rated five stars , Midsummer House serves high priced meals . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low - priced coffee shop , located near the river . Raja Indian Cuisine is nearby . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Families with children are welcome at The Green Man , located near All Bar One on the riverside . Prices are high , but their English food is excellent . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : city centre||For average yet cheap French food , check out The Phoenix in centre city . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto , near Ranch serves Indian food and has high customer rating . It is also children friendly \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||With a customer rating of 3 out of 5 , the Wildwood is Japanese type coffee shop which can be found near Ranch . It is classed to have a high price range . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada restaurant has a 5 out of 5 customer rating in the more than £ 30 price range . It is kid friendly \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat restaurant down by the riverside the is near the Express by Holiday Inn . It offers cheap Italian food and has an average customer rating but is not family - friendly \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Near All Bar One you can find an expensive , low grade , French restaurant named Midsummer House . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Phoenix is a decent Japanese restaurant near the riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop is a greatly rated and low cost restaurant located near Café Sicilia \nname : The Punter | food : Chinese | price : £ 20 - 25||The Punter is a Chinese restaurant that averages 20 - 25 pounds . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop serves moderately priced Indian food . Located near The Sorrento in the riverside area . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman serves Japanese food to adults only located in the city centre . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The coffee shop is a Fast food restaurant with high ratings . The Punter is across the street from Café Sicilia . It has a great wide variety menu with prices ranging from £ 20 - 25 . Yes , the kids will enjoy it the lovely scenery . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Looking for a place that offers Chines food in the under £ 20 price range in the city centre with a low customer rating but is not family friendly , then look at The Waterman . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||There is a cheap restaurant that is family friendly Travellers Rest Beefeater . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a cheap fast food family restaurant located near Café Rouge . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a child friendly , Japanese pub near Café Rouge which is higher priced . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry , located near The Bakers , is family friendly and serves French food in the less than £ 20 range . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop in Riverside near Avalon . It has a customer rating of 3 out of 5 and is not kids friendly . The price range is £ 20 to £ 25 . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , in the city centre , serves Italian food for an average price . It is near Express by Holiday Inn and is child friendly . It has been highly rated by customers . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a medium priced restaurant that may serve British food . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix restaurant has a 3 star rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a Japanese coffee shop . It is not family - friendly . It is in the riverside area near Burger King . The customer rating is low . The price range is less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a cheap , family - friendly Japanese cuisine coffee shop located in the city centre with a 5 out of 5 rating . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||The Taste of Cambridge , a moderately priced restaurant , is a great place to eat if you are looking for a regular meal . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace coffee shop offers fast food with a cheap price range . Located in the city centre area with a customer rating of 5 out of 5 . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : no||The Rice Boat has English food in the city centre and is adult only with low customer rating \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant located in riverside neat Express by Holiday Inn . It is not kid friendly but has a price range of £ 20 - 25 . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman , has great eats and cool treats at low prices and is located near Crowne Plaza Hotel . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is an adult - oriented restaurant serving high priced Chinese cuisine with a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop located in the city centre , near Burger King . this coffee shop is not a child friendly zone and it has a high price range . \nname : Bibimbap House | food : French | price : more than £ 30 | area : city centre | near : Clare Hall||Downtown , there is a French restaurant named Bibimbap House located near Clare Hall where meals average more than f30 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe , located near The Bakers , is high priced and kid friendly . \nname : Blue Spice | price : cheap | area : riverside||Blue Spice is a cheap range establishment on the riverside . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a restaurant providing Italian food . Is is located in the city centre . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||The cheap restaurant in the riverside area with the perfect customer service rating is called The Eagle \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a child - friendly restaurant specializing in English food . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman , rated 5 out of 5 by patrons , is a low - priced , family - friendly Japanese restaurant located in the city centre . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two serves Indian food and is kid friendly . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||The Bibimbap House near The Rice Boat in riverside has English food . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop in the city centre that is children friendly . The price range is more than £ 30 but it has a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : no||Loch Fyne - an English restaurant - is highly priced , and not child friendly . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||There is a child friendly , highly priced , Italian venue called Green Man located near All Bar One at the riverside \nname : The Rice Boat | food : Indian | area : city centre||The Rice Boat is located in the city centre and serves Indian food . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry Italian food is restaurant with an average customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults coffee shop price range is high with a low customer rating . It is located near Café Brazil . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is in riverside near All Bar One and has high prices . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is Italian restaurant . It is located by The Rice Boat in Riverside . Their rating is low \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||The Sorrento is a kid friendly Japanese restaurant near the riverside area of Browns Cambridge \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a family friendly pub , serving English food , known as The Dumpling Tree . \nname : The Punter | food : Italian | price : moderate||The Punter offers moderately priced Italian fare . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is French restaurant with no coffee Shop on side Burger King in the city centre with low rank and price less than £ 20 \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : no||Near City Centre there is a no family - friendly , Japanese food with low customer rating that 's called The Rice Boat . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , near the Crowne Plaza Hotel has kid friendly Japanese food . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a Japanese restaurant near Ranch that is children friendly with a low customer rating . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Near Café Sicilia is a pub named The Twenty Two . This pub has a low customer rating . \nname : The Waterman | price : moderate | family friendly : yes||If you are seeking a moderate priced , child friendly venue then check out The Waterman . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||The Mill in Riverside is a pub which serves Fast - food and the price range is cheap . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub in the riverside area with a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop in the riverside area where you can get fast food for under L20 but , it has a low customer rating . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi , a children - friendly French pub , has a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is a children friendly fast food restaurant that is more than £ 30 . \nname : The Phoenix | food : Chinese | customer rating : high | area : riverside||The Phoenix is a highly rated restaurant that serves Chinese food in the riverside area . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese food in the higher price range . It is located close to Express by Holiday Inn in riverside . It has a high customer rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Zizzi , with a customer rating of 3 out of 5 , is a non - friendly coffee ship £ 20 - 25 by riverside . \nname : Aromi | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes||Visit Aromi , A Beautiful riverside coffee shop , perfect if your looking for great French food , kid Friendly environment , high customer rating and lovely view . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is the place to eat when on a budget ; with their items being priced at less than £ 20 . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Strada is a pub that serves English food . It is near Yippee Noodle Bar an has a high customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a medium - priced coffee shop near Café Sicilia . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub that provides Japanese food located in riverside . It is in the moderate price range and is not kids friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||A child friendly Chinese restaurant called The Golden Curry has an average customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||With a price range above £ 30 , The Eagle is a venue with a high customer rating located in riverside . \nname : The Waterman | price : less than £ 20 | family friendly : no||The Waterman is a non - family - friendly place with a price range of less than £ 20 . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||A coffee shop called The Punter has Italian food and is located near Café Sicilia . It is not children friendly and has a high price range with ratings of 1 out of 5 . \nname : The Rice Boat | food : English | area : riverside||In riverside , The Rice Boat serves English food . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a child friendly establishment serving French food in a child friendly atmosphere near the Crown Plaza Hotel . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||Near Café Rouge is a highly rated Italian restaurant called Midsummer House . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||The Giraffe is a coffee shop with a 1 out of 5 rating . It is located near The Bakers , high priced and child friendly . \nname : Wildwood | Type : restaurant | family friendly : yes||The restaurant Wildwood is kid friendly . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is French restaurant in the high price range . It is located in riverside near Yippee Noodle Bar . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Reasonably priced Fast food can be found in the riverside area at Alimentum near Yippee Noodle Bar . If has a 3 star customer rating . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A family friendly , five star , low priced restaurant that serves pasta is Strada . It is located close to Rainbow Vegetarian Café . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves French food by the riverside . It is averagely rated and family friendly . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Browns Cambridge has food and drink at a low cost . \nname : The Wrestlers | Type : coffee shop | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , lies a French coffee shop called The Wrestlers , known for being a cheap family friendly pub in riverside \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||For less than £ 20 you can pick up some food from a coffee shop called The Punter near Café Sicilia , it is not child friendly and has a low customer rating . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||There is a pub called Green Man near Café Rouge on the Riverside . It serves fast food . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : city centre||High priced and with high customer ratings , The Eagle is located at the city centre . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||There is a cheap restaurant on the riverside named Zizzi . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is moderate price Fast food Located in city center near Yippee Noodle Bar with a high customer rating \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop offers Indian food with a customer rating of 5 out of 5 at riverside , is family friendly and is near Crowne Plaza Hotel . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Cotto is a highly rated children friendly Italian restaurant located in Ranch . \nname : Clowns | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns near Clare Hall in riverside is a coffee Shop that serves French food and has a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is 1 out of 5 . \nname : The Vaults | food : Fast food | price : high | family friendly : yes||The Vaults serves fast food at a high price but it is child friendly . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry serves French food , it is children friendly and customers gave it 3 out of 5 rating . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly fast food restaurant that is moderately priced . It is located near Express by Holiday Inn in the city centre and gets poor ratings . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman , located in the city centre , is a French restaurant offering highly rated meals in the £ 20 to £ 25 range . The restaurant is not child friendly . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : no||Enjoy a quiet Indian lunch at The Rice Boat in city centre . Expect average service . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum has a high customer rating . It is a child friendly pub with a price range of more than £ 30 . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue is near the pub Café Brazil that sells moderate priced fast food . \nname : Bibimbap House | food : French | price : high | area : riverside | near : Clare Hall||Bibimbap House serves high priced French food by the riverside near Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The highly rated French coffee shop , The Golden Palace , offers average prices and is located in the city centre . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop serving Indian food in the moderate price range . It is kid - friendly and has a low customer rating of 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The Vaults is typical average place to grab a quick cheap coffee . Come check it out in the Riverside area near the popular Café Brazil . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada located near the Rainbow Vegetarian Café serves Japanese food to adults only . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is not children friendly and has a high price range , but it is an Indian food place with a high customer rating , located in the city centre . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Wildwood pub offers fast food . It has average prices and low consumer ratings \nname : The Phoenix | food : Japanese | customer rating : average | area : city centre||The city centre contains The Phoenix . An average Japanese restaurant . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly Italian coffee shop near The Portland Arms with a low customer rating . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat provides Chinese food It is located in the city centre . Its customer rating is average . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||The Golden Palace is an upscale shop offering food and beverage options sure to please discriminating palates . The Golden Palace is located a short distance from St. John 's College near the river . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Zizzi is a non - children friendly coffee shop located in the city centre with a price range of £ 20 - 25 and has a high customer rating . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly sushi restaurant that has poor reviews and is located next to The Bakers . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||Green Man is a French restaurant located in the city centre , near All Bar One . It is not child friendly and costs more than 30 pounds . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||With a customer rating 1 out of 5 and non kids friendly food service , Strada serves fast food near Rainbow Vegetarian Café at moderate price range . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman provides Chinese food in the £ 20 - 25 price range . It is located in the city centre . Its customer rating is high . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes||Aromi is an average Japanese coffee shop near the city center and yes , we welcome children . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||Taste of Cambridge is a high priced restaurant that has a customer rating of 1 of of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly Fast food pub in the riverside area that sells food for less than £ 20 \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||Located in the riverside area , The Eagle is a moderately priced and rated 1 out of 5 by customers . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a French restaurant that offers family friendly service at an inexpensive rate . It has an overall rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are in the mood for French food in the more than £ 30 price range , try The Wrestlers . It is a children Friendly coffee shop located in the riverside area near Raja Indian Cuisine . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is family Friendly near Burger King in the Riverside area that serves French food it is average priced and a low customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop located near Burger King in the city that provides Indian food . \nname : The Twenty Two | Type : pub | customer rating : average | area : city centre | near : Café Sicilia||The Twenty Two , located near Café Sicilia at the city 's centre , was given an average rating by customers of this pub . \nname : Strada | Type : pub | food : Fast food | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Not many pubs get a 5 out of 5 rating by customers . However , Strada which serves Fast food has done very well and gained 5 out of 5 stars . If you want to find Strada it is near the Yippee Noodle Bar \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Located near Yippee Noodle Bar , Alimentum , an Indian food establishment is located in the city center . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Express by Holiday Inn named the Rice Boat in the city centre is not family - friendly , high in price and has a 1 out of 5 rating but does sell English food . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that also offers Indian food , located in the city centre near Crowne Plaza Hotel . But it is not family friendly and customers don 't rate it highly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Blue Spice is near the riverside . The customer rating is high . It is not kid friendly . Prices range from £ 20- £ 25 . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : no||Indian food can be found in the riverside area at the non - family friendly restaurant called The Rice Boat . It has an average customer rating . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a Fast food type restaurant , which is not kid friendly . It also has a moderate price range and is near All Bar One located in city centre . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||At Browns Cambridge you will get a price range of more than £ 30 with 5 out of 5 customer rating \nname : The Cambridge Blue | Type : pub | food : Fast food | price : £ 20 - 25 | near : Café Brazil||Near Café Brazil is The Cambridge Blue pub , serving fast food for £ 20 - 25 . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kids Friendly Fast food restaurant with a high customer Rating , near the Café Rouge in the riverside area . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue pub has high priced English food . It is near Café Brazil . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre||The Mill is an English pub in the City Centre with prices in the moderate range . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Bibimbap House is a Fast food place at the riverside near The Rice Boat \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kid friendly French pub near The Portland Arms . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The restaurant Strada has a customer rating of 3 out of 5 that is expensive and is not children friendly . It is near Rainbow Vegetarian Café that serves French food . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a moderate priced coffee shop in the area of riverside . It is kids friendly , has a low customer rating and is located near the Avalon . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter received an outstanding customer rater , the French coffee shop . Located near Café Sicilia which is cheap for all the family \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kid friendly place to visit near the Express by Holiday Inn with a moderate price range and a 1 out of 5 customer rating . \nname : The Mill | Type : pub | food : Fast food | price : more than £ 30 | area : riverside||There is a high priced pub called The Mill in riverside . It is fast food . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a family - friendly French restaurant called The Waterman . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is a pub which offers Indian food . It is children friendly and is located in riverside \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : riverside||Check out The Mill on the Riverside for fast food under £ 20 \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is an expensive coffee shop where you can eat Italian food . It is located at the riverside area , near The Sorrento . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Chinese food It is located in the riverside . It is near Café Rouge . Its customer rating is 3 out of 5 . \nname : Bibimbap House | food : English | price : high | area : city centre | near : Clare Hall||Bibimbap House serves English food at a high price range . It is near Clare Hall in the city centre . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves Indian food . The rating is 5 out of 5 , cheap , family friendly , near Café Sicilia . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is close to the Express by Holiday Inn . It 's pretty well liked , family friendly and normally runs less than 20 pounds . \nname : The Dumpling Tree | Type : restaurant | food : French | price : cheap||A cheap French restaurant is The Dumpling Tree . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Japanese food can be found at the Wildwood pub and purchased for £ 30 or more . This venue is rated 5 of out 5 . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : no||The Olive Grove is a high end pub style restaurant in the city centre area . This location is not child friendly . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a moderately priced venue called The Waterman located in riverside . It is kid friendly , has a customer rating of 1 out of 5 , and provides Indian food . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 3 out of 5||The Cambridge Blue is a restaurant that serves Italian food and is rated 3 out of 5 . \nname : The Eagle | food : French | customer rating : low||The Eagle is a one - star restaurant serving cheese , wine , and soup , among other dishes . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi in riverside is a child friendly fast food shop with an adjourning coffee shop . Average rating . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a moderately priced 5 star French restaurant . \nname : The Punter | food : French | price : less than £ 20||French restaurant , The Punter , offers food for less than 20 . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||The Strada pub is near the Yippee Noodle Bar . It has an average customer rating and sells French food . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant with moderate pricing and a customer rating of 1 out of 5 . It is located near Yippee Noodle Bar in the city centre . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||Midsummer House is a low priced restaurant located near All Bar One . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||A 3 out of 5 rated kid friendly Fast food pub is called Zizzi \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap restaurant Strada located near the Rainbow Vegetarian Café that provides fast food . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a British style restaurant serving middle price range food . It is a family oriented three star restaurant . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||In the riverside , near Burger King , there is The Eagle , a cheap highly rated non - kids friendly coffee shop . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||There is a cheap restaurant Midsummer House located in the All Bar One . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in the city centre near the Express by Holiday Inn , The Rice Boat is an adult restaurant with average prices and high customer satisfaction . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||High customer rating Fast food named Loch Fyne in riverside , located near The Rice Boat . \nname : The Eagle | food : Fast food | customer rating : average||There is a fast food restaurant called The Eagle which has moderate reviews . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food and the price is cheap . It has an average customer rating and is located near the riverside near Yippee Noodle Bar . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe . What is it you ask , well we are restaurant located near The Six Bells with meals less then £ 20 . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a moderately priced Indian restaurant Alimentum , rated 3 out of 5 by customers , near Yippee Noodle Bar in Riverside . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving high priced French food that is located near Burger King on the riverside . It is child friendly and has customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a moderately priced coffee shop that serves Japanese food . Kids are not allowed . Rated 1 out of 5 and located in the riverside are near Burger King . \nname : The Vaults | food : English | price : £ 20 - 25 | family friendly : yes||The Vaults serves English food is kids friendly the price range of £ 20 - 25 \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||Located near The Bakers , Giraffe is a coffee shop with a price range less than £ 20 . It has a low customer rating and is not family - friendly . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||Located in the city centre , The Phoenix serves moderately priced fast food even though it has a low customer rating . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has 3 out of 5 customer rating and it offers prices between £ 20 - 25 . It is located near to the Rainbow Vegetarian Café . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is a children friendly place near Café Sicilia that is expensive . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The Cotto is a coffee shop which provides Indian food . Its price range is cheap and it has a customer rating of 5 out of 5 . It is in the riverside area near The Portland Arms . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||In the riverside area there is a low customer rated restaurant called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a riverside coffee shop that serves Italian food and has a high price range . The Golden Palace has a 1 out of 5 customer rating . \nname : Midsummer House | food : Chinese | customer rating : average | near : Café Rouge||Near Café Rouge , there is an average - rate Chinese restaurant named Midsummer House . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||Serving French food , The Rice Boat is adult only in the riverside area that has low ratings . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a kids friendly Chinese restaurant with a rating of 1out of 5 . It is near the Ranch . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||There is a kid - friendly pub called Cocum in the medium price range with a customer rating of three out of five . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||Located near Café Sicilia is The Dumpling Tree . It is a riverside coffee shop and its price range is £ 20 - 25 . It 's kids friendly . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum , a restaurant in city centre near Yippee Noodle Bar , serves decent food for less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located near Raja Indian Cuisine near riverside . It serves Indian food with high - priced menu . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a moderate price range Chinese restaurant with low customer rating and not child friendly . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located riverside , is a kid friendly place called The Rice Boat . It serves French and has a customer rating of 3 out of 5 . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||By the river side is the adult sushi restaurant The Twenty Two \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : yes||In the city centre there is the children friendly fast food restaurant called Alimentum . It is in the high price bracket . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||There is an Italian restaurant with a cheap price range called The Dumpling Tree \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||The Strada restaurant provides high rated Indian food in the average price range . The venue offers a kid friendly atmosphere and is located near the Rainbow Vegetarian Café . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The coffee shop , Cocum , is a family friendly spot for everyone to enjoy delicious coffees and non Caféinated beverages \nname : Green Man | price : cheap | area : riverside | family friendly : yes||For a family friendly fun go to the affordable Green Man on the riverside . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is an affordable 5 - star Italian restaurant outside the city centre . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Green Man is a pub in the riverside area near Café Rouge offering Italian cuisine . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi is a family - friendly coffee shop in the riverside area . It serves fast food . Customers gave Aromi an average rating . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly restaurant in the riverside area that sells Italian food . The price range for this restaurant is average . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a non - children friendly French Rainbow Vegetarian Café . They are in the high - price range and have a customer rating of 3 out of 5 . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a 5 - star Japanese restaurant located near Yippee Noodle Bar on the river to the north of the City centre serving moderately - priced fare . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||On the river near the Yippee Noodle Bar , there is a low - priced , three star restaurant named Alimentum . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a moderate priced average restaurant The Waterman that offers English food in the city centre . It is not child friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre||The Golden Palace is a fairly cheap coffee shop that serves Italian food down at the city centre , and it have a pretty average rating \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||There is a venue called Fitzbillies in Cambridge , it is in the riverside area . It is a coffee shop also offering fast food , it is in the higher price range but is not child friendly . Customers have rated it as average . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving Japanese food . It is located near Crown Plaza Hotel in the riverside area , and is child friendly \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House is providing English food near Café Rouge with average customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop located at Burger King , offers the best sushi and stake at affordable prices . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : no||Green Man is not kids friendly and is located in the city centre area . It has a price range of less then £ 20 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge serves Fast food and is kids - friendly . It is a coffee shop in the area of riverside and is near Crowne Plaza Hotel \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||family friendly Japanese pub called The Dumpling Tree is near The Portland Arms . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two serves Chinese food , is riverside , and family friendly . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||down the road from Café Adriatic is a 3 - star cheap restaurant named Travellers Rest Beefeater \nname : Browns Cambridge | food : Indian | price : £ 20 - 25 | customer rating : high||Within the price range of £ 20 - 25 , Browns Cambridge is a great place to enjoy some wonderful Indian food . This restaurant is given a high rating by customers . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is in the high price range has a rating of 1 out of 5 , is child friendly , in the riverside area near The Rice Boat \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : no | near : All Bar One||The Green Man , serving Italian food , is located near All Bar One . They have a moderate price range and are in the riverside area . They are also kid friendly . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Family friendly pub on the riverside , The Giraffe serves Indian cuisine . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||A child friendly restaurant is located in the riverside area . It 's name is The Olive Grove . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a Fast - food with a customer rating of 1 out of 5 . It is children friendly and is at riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It is cheap , poorly rated , and not family friendly . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater offers the usual menu for those willing to spend a bit more . located close to Café Adriatic on riverside . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is a pub that is in the riverside area . It has an customer rating of average and the price range is high . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap Asian inspired place located in the city centre . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||There is a child friendly Indian food restaurant in the riverside area called The Twenty Two . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family - friendly coffee shop in the city center called Aromi . It serves fast food and has a 5 out of 5 rating . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : average||The Cambridge Blue is a Chinese restaurant with an average customer rating . \nname : Loch Fyne | food : Japanese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a poorly rated and offers Japanese food . It is located in the city centre near The Rice Boat . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter coffee shop is not children friendly with a high customer rating . It offers Italian food with a price range of more than £ 30 . It is located near Café Sicilia . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Located near Ranch . Cotto is a family friendly , French establishment with a 5 out of 5 rating . \nname : The Vaults | food : Italian | price : moderate | family friendly : no||For non - kid friendly fun , enjoy Italian cuisine at reasonable prices at The Vaults . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : city centre | near : Clare Hall||Clowns , a coffee shop near Clare Hall in the city centre area sells Indian food for cheap has an average customer rating \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||Alimentum , a Fast food restaurant , is not family - friendly and offers food less than 20 in the riverside area . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a cheap and low quality Italian foods place . It is highly recommended for families . It is located by the riverside . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Near Yippee Noodle Bar is the highly rated Strada pub serving English fare . \nname : Fitzbillies | food : Chinese | price : cheap | near : The Six Bells||Fitzbillies provides Chinese food in the cheap price range . It is near The Six Bells . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||There is an Italian restaurant called Green Man located near All Bar One in city centre . The price range is less than £ 20 and is family - friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||Next to The Portland Arms , The Cricketers coffee shop is family friendly with poor food and service \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge has low customer ratings and is a low - priced restaurant . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||If you are looking for kid friendly Italian food , The Wrestlers is a great choice with an average of 3 out of 5 customer rating . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is an Indian food restaurant for the whole family . The prices are moderate with a rating of 3 out of 5 . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum located next to river 5 star , reasonably dear family restaurant , \nname : Loch Fyne | Type : restaurant | food : Indian | price : more than £ 30 | family friendly : yes||Loch Fyne is an Indian restaurant , which is children friendly and serves Indian food . The price range is generally more than £ 30 . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is an average rated , family oriented , and affordable place to dine on Japanese cuisine . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||Located in city centre , near The Rice Boat is The Twenty Two . It is children friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice , located in the city centre , is a high rated , high priced restaurant that is kid friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant that serves Indian food , and is no children Friendly , located in riverside near Express by Holiday Inn . With high price Range and 1 out of 5 customer Rating . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||Located outside of the City centre is a high cost three star wine and cheese shop called The Phoenix . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : city centre||Located in city centre , Blue Spice is a fast food restaurant with a price range of more than 30 . \nname : The Mill | Type : pub | food : Chinese | price : high | area : riverside||In the riverside area , The Mill is a Chinese pub with a high price range . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns are kid friendly and moderately priced near Café Sicilia . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a one - star coffee shop at high prices by the river . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||For a kid friendly Italian restaurant on the riverside , try The Rice Boat near the Express by Holiday Inn . The customer rating is 1 out of 5 and the price range is moderate . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge is the Midsummer House . They serve Italian food with a 1 out of 5 customer rating . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||The pub , Wildwood has a low customer rating range of less than 20 and provides English food . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is a restaurant in the moderate price range that is not kids - friendly . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||A highly rated restaurant , Midsummer House , located near All Bar One , serves English food in the more than £ 30 price range . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Japanese eatery along the riverside , rated with a 5 out of 5 with a higher price range . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a family friendly restaurant with amazing food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a high price range coffee shop Fitzbillies located in the riverside area poor customer rating for adult only \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Let 's go to , The Waterman , it 's a Japanese restaurant and although it isn 't a kid friendly place , it 's right in the center of the city , it 's highly rated by customers , and they have an average price range of £ 20 - 25 . \nname : Blue Spice | food : Italian | price : high | area : riverside||There is an expensive Italian restaurant named Blue Spice in the riverside area . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Visit The Punter near Café Sicilia for a coffee shop which is family friendly , has a 5 out of 5 rating , serves Japanese food and is under £ 30 you should \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults is a kid friendly restaurant that serves French food at a moderate price . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : average||Wildwood pub has an average customer rating for their expensive Chinese food . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Japanese food and is highly rated by its customers with an average price range of £ 20 - 25 . It is located in the city centre near Express by Holiday Inn and is an adult establishment \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil . It is in riverside area . Customers rate is 1 out of 5 and price range is high . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||The restaurant Wildwood is a a moderate priced English style pub that has a customer rating of 3 out of 5 \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a high priced and high rated coffee shop . Located near Café Sicilia , it 's kid friendly and considered to be fast food . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , in a riverside setting , The Golden Palace offers cheap pub style food . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Located near the riverside , The Waterman is a French restaurant that has a price range of £ 20- £ 25 and has a customer rating of 3 out of 5 . This isn 't a kid friendly restaurant . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a fast food coffee shop located along the riverside near Burger King . It is kid friendly with moderate prices and has a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is a French coffee shop located near Ranch , it has a price range of more than £ 30 and a customer rating of 5 out of 5 . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a kids friendly pub located in the riverside with excellent customer ratings . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is high . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children friendly pub serving fine Japanese cuisine near The Portland Arms . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||The Italian coffee shop ' Cocum ' is an adult - friendly , expensive and poorly reviewed place . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It has a low customer service rating , and it is not family - friendly . It offers Japanese food for less than £ 20 . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House , near All Bar One , is a cheap French restaurant . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix , located near the river , is a lower priced restaurant with a one star rating . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a restaurant providing Chinese food in the moderate price range . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||A good family friendly restaurant is Browns Cambridge , it is in the riverside area near The Sorrento , and offers Japanese food . \nname : Wildwood | Type : restaurant | family friendly : yes||The restaurant Wildwood is kid friendly . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is kid friendly , located near the Express by Holiday Inn . The price range is moderate but the customer rating is only 1 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , near Yippee Noodle Bar in city centre , is a fast food store . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In the City Centre there is a Italian restaurant called Aromi with a 5 out of 5 rating that is family - friendly . It is laid out like a coffee shop . \nname : Bibimbap House | food : Indian | price : moderate | area : riverside | near : Clare Hall||There is a place near Clare Hall by the river which serves moderately priced Indian food . Its name is Bibimbap House . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||For highly rated Italian food between £ 20 - 25 , in a kid friendly establishment , come eat at The Wrestlers . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge is a English food restaurant . It is a high priced location with an average rating by its customers . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Near Ranch with an average customer rating Cotto is family friendly serving Indian food . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||The coffee shop named Blue Spice in riverside is near Avalon and has a price range of more than £ 30 and a customer rating of high . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||There is a somewhat expensive French coffee shop near Café Sicilia that is child friendly , but has a low customer rating . It is called The Punter . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Located outside Cambridge City Centre there is Alimentum . This is a low price , 1 star Yippee Noodle Bar . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice , is a kid friendly coffee shop located in city centre near Avalon . It has a moderate price range and customer ratings of 1 out of 5 . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Family friendly and cheap Fitzbillies near Express by Holiday Inn has an average customer rating . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||1 out of 5 stars for the moderately priced Italian restaurant , Alimentum , located in the city centre by Yippee Noodle Bar \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies is fast food offered at a 30 pound price range near The Six Bells . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||A high price range placed , rated 1 out of 5 , is Travellers Rest Beefeater is located in Riverside near Café Adriatic . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil , in the riverside area , with an average customer rating and high price range . \nname : The Vaults | food : English | price : moderate | family friendly : no||Moderately priced English food in a non - kid friendly environment can be found at The Vaults . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum is a coffee shop selling Japanese food . The price range is high but it has a rating of 3 out of 5 . It is children friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a 1 - star rated Japanese coffee shop near Crowne Plaza Hotel , in City centre , and is not family friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop , sells Indian food , price range more than 30 , high customer service , child friendly , located near Café Sicilia \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||There is a pub Wildwood of 3 stars where there are tasty meat at low prices . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , located near the Crowne Plaza Hotel in the city centre , is a family - friendly coffee shop that is fast with average ratings . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers has a customer satisfaction rating of 5 out of 5 . It is a family friendly pub near Ranch . \nname : The Mill | Type : coffee shop | food : Indian | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Indian food for a cheap price . They are located in he riverside area near The Sorrento . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly Fast food restaurant near Rainbow Vegetarian Café . It is in the higher price range with average customer ratings . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a coffee shop that offers food and drink with a nice family atmosphere . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults offers English food and price ranges less than £ 20 . It is not family - friendly . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sells Fast food . It is rated 5 out of 5 and it is family - friendly . It is near Express by Holiday Inn in the city center and it is very cheap . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||The Giraffe family friendly pub serving Indian food on the riverside . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum offers a child friendly , upscale Italian dining experience in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||A coffee shop with a low customer rating is Fitzbillies in riverside They serve French food , and are not child friendly . \nname : The Rice Boat | food : French | area : riverside||The Rice Boat in Riverside offers French food . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | near : Café Brazil||The Vaults coffee shop can be found close to Café Brazil in the city centre . It is cheaply priced and has an average customer rating . \nname : The Phoenix | food : Japanese | customer rating : low | area : city centre||The Phoenix is Japanese restaurant in the city centre with low rank \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There is a coffee shop in the riverside area near Burger King called The Eagle . It serves high rating Indian food at a high price range . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||Near Café Sicilia in the riverside area , is a pub called The Twenty Two , and has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a pub for eat Italian food . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada restaurant is located near Rainbow Vegetarian Café this highly rated restaurant provides a kid friendly atmosphere with low priced food . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Indian food at high prices . It earned an average customer rating , and is not children friendly . It is located riverside near Express by Holiday Inn . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub which offers Italian cuisine . It is family friendly and has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a child friendly restaurant that serves French food by the riverside . \nname : The Eagle | food : Fast food | customer rating : 1 out of 5||The Eagle , food as fast as a bird \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a family - friendly restaurant serving English food . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop in the low price range . It is located close to the Crowne Plaza Hotel and has a superb view across the river . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Near Burger King in Riverside there is an Indian coffee shop called The Eagle . It is not kid friendly , has a price range of 20 - 25 and has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves high priced fast food . Near Burger King in City Centre , the place is children friendly and the customers rate it average . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is an expensive , three star , coffee shop located near the river called Fitzbillies . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||That fast food restaurant down by Crown Plaza Hotel , The Waterman , is kid - friendly . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is family friendly , less than £ 20 , and near The Bakers . \nname : The Phoenix | food : Indian | customer rating : 3 out of 5 | area : riverside||The Phoenix is an Indian restaurant located near riverside is rated 3 out of 5 stars . \nname : The Phoenix | food : Indian | customer rating : average | area : city centre||If you 're in the city centre and would like some Indian food , I would suggest The Phoenix to you . The customer ratings are average . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : no||Check out Zizzi if you 're looking for an Italian pub that is not family - friendly . Rated 5 out of 5 . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||For Fast food , Strada is rated average by customers . This pub is located near Yippee Noodle Bar . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||Receiving a high customer rating is a restaurant called The Golden Palace in the Riverside area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle offers Japanese food and coffee shop with cheap price near Burger King in riverside . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers moderate priced Japanese food in the city center near Express by Holiday Inn . This is not a family establishment with a rating of 1 out of 5 . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a French restaurant with a customer rating of 3 out of 5 and is family friendly . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Chinese food restaurant with high customer Rating and price Range more than £ 30 , near Rainbow Vegetarian Café , and is Children Friendly . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Located near Yippee Noodle Bar , Alimentum is an inexpensive , one star British restaurant . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman , a Japanese restaurant rated 5 out of 5 by customers , offers food at a cheap price in riverside , but is not family - friendly . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is a fast food restaurant located near Clare Hall in the city centre area with a price range of less than £ 20 \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||High priced English pub food at the Wildwood has an average customer rating \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice sells fast food for over £ 30 in riverside . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto , an Italian restaurant , has a customer rating of one out of five nearby the Ranch . \nname : The Punter | food : English | price : £ 20 - 25||The Punter are serving English food , prices range from £ 20- £ 25 . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge in Riverside near The Sorrento serves Indian cuisine in family friendly environment . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an inexpensive , family friendly coffee shop in riverside serving Indian food . You can find it near Raja Indian Cuisine . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||Loch Fyne is a non family welcome restaurant that offer food at a good price . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a child friendly Indian food restaurant located in the riverside area . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub found near Ranch , however it does have a poor customer rating . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a mid - priced venue found next to All Bar One . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Right by The Rice Boat is a restaurant called the Loch Fyne with 3 stars . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is located near Café Sicilia and is a moderately priced coffee shop offering your family a choice of food and beverages pleasing to all ages . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is an Italian coffee shop rated 3 out of 5 in riverside . It is not kids friendly but has a moderate price range . \nname : Blue Spice | food : Japanese | price : high | area : riverside||Blue Spice is a Japanese restaurant at riverside that is expensive . \nname : The Punter | food : English | price : less than £ 20||Low priced meals are served by The Punter . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly Japanese pub near The Portland Arms . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a low - priced restaurant located next to Yippee Noodle Bar . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Indian food for more than £ 30 . It has a high customer rating and it is located in the city centre near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne restaurant serves Chinese food in a family friendly atmosphere . \nname : The Golden Curry | food : French | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a French restaurant located near The Bakers . It is a family friendly environment and high priced entrees . \nname : Loch Fyne | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat is a Japanese place along the riverside called Loch Fyne , it has a customer rating 1 of 5 . \nname : Green Man | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||A Chinese food restaurant for more than £ 30 in the riverside area near All Bar One is the Green Man . It is children friendly . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub located near the Ranch . It has a low customer rating . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is a family friendly place to eat in the low price range . Customers have rated it average . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a Japanese coffee shop which is good for families . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Indian restaurant Strada is rated 5 out of 5 and is perfect for a romantic dinner that won 't break the bank . Located near the Rainbow Vegetarian Café . \nname : The Punter | food : French | price : £ 20 - 25||The Punter is a French restaurant with an average price range . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace offers Japanese food in a coffee shop with low prices located in the riverside area with good customer ratings . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||There is a coffee shop with low priced fast food near Ranch called Wildwood . \nname : Blue Spice | food : French | price : cheap | area : riverside||Blue Spice is a cheap restaurant , providing French food , located in the riverside area . \nname : Bibimbap House | food : Chinese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House serves Chinese food at average prices , and is situated in the riverside area near Clare Hall \nname : Strada | Type : pub | food : French | customer rating : 5 out of 5 | near : Yippee Noodle Bar||The Strada is a Pub which can be found close to the Yippee Noodle Bar . its customer Rating of it 's French food is 5 out of 5 . \nname : Bibimbap House | food : Fast food | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is a Fast food place that has a price range higher than £ 30 , is near Clare Hall , and Riverside \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||Located in the city centre Zizzi is a cheap pub serving fast food . It has a low customer rating but is family friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub that serves Indian food at a price range of £ 20 - 25 and its near Café Brazil . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||For a low - priced British pub , Wildwood is the place to go . \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a French pub which is kid friendly and has an average customer rating of 3 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Indian restaurant on the riverside . Rated 5 out of 5 by customers , this restaurant can be found near Café Rouge . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||Located in the riverside area , The Phoenix is a Japanese restaurant rated 3 out of 5 by customers . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree coffee shop is not family - friendly , the price range is less than £ 20 , and is located near Café Sicilia in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a 3 - star Caféteria located in the city center \nname : The Cricketers | Type : restaurant | food : Indian | near : All Bar One||The Cricketers is a restaurant providing Indian food It is near All Bar One . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes||The Olive Grove serves high priced Fast food in the city center . This pub welcomes children . \nname : The Plough | Type : pub | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a kid friendly pub . Near the Café Rouge for a reasonable price of 20 - 25 L. \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman in the riverside area offers cheap Fast food , it has an average rating but is not family - friendly . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a perfect rated pub which is family - friendly in the city centre called Aromi . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||The coffee shop Aromi is located in Riverside . Customers give it low ratings though , claiming it is more like Fast food and is not family - friendly . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a moderately priced restaurant serving fast food in the city centre . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a child friendly Indian located near the city centre . It has a 1 out of 5 customer rating and in the high price range . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||In the city center The Phoenix offers moderately priced fast food but has a customer rating of 1 out of 5 \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||A restaurant called Giraffe has a price range of more than £ 30 and can be found near The Six Bells . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Midsummer House is an English restaurant serving breakfast food in the low price range . It is located near All Bar One and has a three - star customer rating . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix on the waterfront , Offering 3 star service , and food , wine , and spirits , at an affordable price . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is and Indian coffee shop with an average rating . It is in riverside and is kid friendly . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||A Japanese restaurant near All Bar One is The Cricketers . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a low - rated family - friendly , fast food restaurant near Café Rouge in the city center . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a restaurant with a price range of £ 20 - 25 with a 3 out of 5 customer rating . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||There is a cheap pub that serves food and beverages , it is called The Mill . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a Fast food coffee shop near Clare Hall in the city centre . It has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||With a rating of 1 out of 5 , The Golden Curry is located in riverside near Café Rouge . It is kids friendly and serves Indian . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||Chinese restaurant , The Waterman , in the City Centre , has an average customer rating , with a high price range . Child - friendly . \nname : The Eagle | food : English | customer rating : 1 out of 5||The Eagle has a customer rating of 1 out of 5 and serves English food . \nname : The Dumpling Tree | Type : restaurant | food : English | price : £ 20 - 25||The Dumpling Tree serves English food and is an average priced restaurant . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is an average , cheap and family - friendly restaurant that specializes Indian food . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||Even though it has a low customer rating and is not family - friendly , the The Golden Curry is a French restaurant to see . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Green Man pub serves fast food . It is near Café Rouge in the riverside area . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a kid friendly , fast food pub in the riverside area . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The family - friendly Italian restaurant that is in the centre of the city , Alimentum is less than £ 20 and family - friendly . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||The Plough is a cheap family Friendly restaurant in The Bakers Area \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||On the riverside there is a Fast food venue The Phoenix . This venue has prices above average with an average customer rating . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly pub in the city centre with a low rating . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : no | near : Café Rouge||The Plough is a pub serving Japanese food at a price a little higher than average . It is near to Café Rouge and is not child friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a moderately priced restaurant that provides its customers with fast food . Although it has a customer rating of 3 out of 5 , it is a kid - friendly environment conveniently located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop near to the river , three star food and family friendly for low prices . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Japanese food . Pricing ranges less than 20 euros . It is centrally located in the city near The Portland Arms . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a French restaurant located in the area of Riverside . This restaurant is children Friendly and has a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an average price range coffee shop that offers French food in a kids friendly place . Its customer rating is 3 out of 5 and it is located near to the Café Sicilia . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||The five - star restaurant , Midsummer House , located near to All Bar One in Cambridge , has an affordable menu that includes cheeses , soups and alcohol . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a high rated Indian restaurant on riverside that is not child friendly , with a price range of £ 20 - 25 . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an affordable , top - rated fast - food restaurant located riverside near Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove offers Italian food costing more than £ 30 . It is children friendly and near the riverside . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is an Indian pub located near The Portland Arms and it is child friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an amazing low - cost , family friendly coffee shop that serves food fast . It is located near the Burger King by the river . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||A moderately rated Japanese restaurant in the Riverside area is called Loch Fyne . They are located near The Rice Boat . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||In the area of riverside you will find an Indian restaurant called The Waterman . It has a high customer rating . It is not a kids friendly restaurant . It isn 't really in a low price range , the price range is between £ 20 and £ 25 . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop . It is located in riverside , near Burger King . It has low customer rating since it is not family - friendly , but offer dishes for less than £ 20 . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge is a family - friendly , 5 out of 5 customer rated French restaurant in the city centre . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee Shop , restaurant is located next door to the ' Café Sicilia ' . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a low - cost option for burgers and fries . It has a low rating . \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||Green Man is located near All Bar One and in city centre . It has Japanese food , price range is more than £ 30 , and is not kid friendly . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge offers moderately priced Italian food , and received a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian , kid friendly , restaurant . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a fast food coffee shop , with moderate prices , that is not kid friendly and low customer ratings . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : no||The Vaults serves Indian food . The price range is less than £ 20 . It is not family friendly \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is an affordable Japanese restaurant with prices ranging from 20 - 25 pounds . Although it is not kid friendly , it has a high customer rating and is conveniently located in the city centre . \nname : The Vaults | food : Indian | price : cheap | family friendly : yes||The Vaults provides Indian food in the cheap price range and is family friendly . \nname : Loch Fyne | food : English | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is an English restaurant with low customer ratings located in the city centre near The Rice Boat . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||Alimentum is a restaurant food in the average price range . It is located in the north of city \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a reasonably priced coffee shop . it is rated three stars . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Family friendly French pub called The Dumpling Tree is near The Portland Arms \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a cheap range restaurant suitable for families , close the The Bakers \nname : The Cambridge Blue | Type : pub | food : Chinese | price : cheap | near : Café Brazil||The Cambridge Blue is a Chinese pub that is cheap and near Café Brazil . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has high customer ratings and a moderate price range . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||The Wrestlers is a family friendly diner that is rated three stars . It is expensive however . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : no||The Green Man is an adult oriented highly priced restaurant in the city centre . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a cheap coffee shop in Riverside near Burger King that serves Indian food called The Eagle . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a child - friendly restaurant with a low customer rating . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||The Phoenix is an expensive yet average Italian restaurant on the riverside . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : less than £ 20 | near : Café Brazil||Located near Café Brazil is The Cambridge Blue . It is an average priced Chinese pub . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||Along the riverside is an English pub called The Waterman . It has a low customer rating . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||If you 're looking for cheap French food , you can 't do better than The Phoenix . Located at the city centre , customers have rated it 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King , there is a children friendly coffee shop called The Eagle . Located in the riverside area , it serves Japanese food , has a customer rating of 3 out of 5 and is in a higher price range . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry is a 3 star family friendly restaurant that serves English food . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a fairly low priced Chinese food restaurant in the Riverside area . Not family friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A Children Friendly Italian restaurant located near Raja Indian Cuisine in the centre of the city named The Wrestlers has high price range for a coffee shop \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : city centre||A high rated restaurant in the city center is called The Golden Palace . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderate price ranged , kids - friendly French food restaurant , located near the Express by Holiday Inn , in the city centre wit a rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King , you 'll find The Eagle , a family coffee shop that sells sushi . It is moderately expensive and has poor ratings . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||If you 're looking to get away from the family , Browns Cambridge is a highly rated Italian style coffee shop . Located on the riverside , near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||in riverside near Crowne Plaza Hotel is Taste of Cambridge , a family - Friendly French coffee shop . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderate pub in the city centre near of Café Sicilia that delivers Japanese food . \nname : Strada | Type : pub | food : Fast food | customer rating : low | near : Yippee Noodle Bar||Located near the Yippee Noodle Bar with a low customer rating is a fast food pub names Strada . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant located near the Express by Holiday Inn in the city centre . It is inexpensive , but receives low customer ratings and is not family friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is near Café Sicilia and is a non friendly coffee shop serving Japanese food . They have a high price range and a customer rating of 3 out of 5 . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||A new customer rating site rated Clowns the new pub by the riverside as an average , this place has a price range less than 20 £ . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman , found in the city center , is a non children friendly English food restaurant with a price range of more than 30 and a high customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree is a Japanese restaurant serving meals for less than £ 20 . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Near Café Rouge , by the riverside , there is a pub which serves French food called Green Man . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Yes there is a kids - friendly coffee shop riverside . The Blue Spice is near Avalon , it has a moderate price range and a 3 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia is a coffee shop that serves Japanese food at a price range of £ 20 - 25 called The Punter . It is not kids friendly and has a customer rating of 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Avalon||In city centre near Avalon You can visit coffee shop called Blue Spice . The place is kids friendly , within price range Of £ 20 - 25 , customer high rate . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||Zizzi is a child friendly pub serving English food and highly rated . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers offers the best Indian food around and is children friendly . The Wrestlers has a customer rating of 1 out of 5 and is in the high price range . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Strada is rated 3 out of 5 with a high price range and child friendly . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Blue Spice is a great place with good rating in the city centre \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : yes||Pub called The Olive Grove is a pub located in city centre . It is children friendly place with prices range of more than £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry provides fast food in a family friendly environment . \nname : The Mill | Type : pub | food : English | price : £ 20 - 25 | area : riverside||You can find The Mill , a medium priced pub , serving English food , in the riverside area . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is located near Clare Hall in the riverside area . It has a customer average rating and serves Fast food . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no||Cocum is a coffee shop that serves French food . It is not child - friendly , which is why it receives a low customer rating . Average price range is £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 3 out of 5||The Cambridge Blue , has a 3 out of 5 star rating , that serves English food . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Close to Café Rouge , there is an Italian eatery called Midsummer House ; however , it has a low customer satisfaction rating . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||The Giraffe coffee shop is ranked 3 stars in the area and is also next to The Bakers . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A low cost Japanese coffee shop can be found near the riverside . Fitzbillies is a low cost , low rated family friending establishment . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a medium priced restaurant . Located near All Bar One . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||One can buy Fast food at Browns Cambridge which is a kid friendly restaurant located on the riverside near The Sorrento . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||The Vaults serves fast food in a child friendly atmosphere . Price range - moderate . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no||Aromi is an Indian coffee shop , its has average ratings and in the city centre . my advice no family meet up there . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a restaurant in the city center that served moderately priced Italian food , and it has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||A place to get fast food is the Loch Fyne and it costs less than £ 20 . It is not a family - friendly place . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms is located Cotto , a low - cost Japanese food 5of5 starts \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The family - friendly Fitzbillies coffee shop , situated in the city centre , has received high customer rating . It offers cheap fast food . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||The Travellers Rest Beefeater is an economic family friendly restaurant . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high quality , family friendly British restaurant that has high prices . it is located near the Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is a child friendly pub that sells Indian food near the riverside . \nname : The Dumpling Tree | Type : restaurant | food : English | price : £ 20 - 25||The average priced restaurant The Dumpling Tree serves English food . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum serves highly priced fast food in a riverside area . It has a child - friendly atmosphere . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House , is an English food place , with a customer rating 1 out of 5 , near Café Rouge . \nname : The Rice Boat | food : Fast food | area : riverside||You can buy fast food at The Rice Boat , which is situated on the riverside . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : no||The Rice Boat is a restaurant in the city centre that serves Indian food . It is not family friendly and has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is a French family friendly restaurant catering to a budget of below £ 20 . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a charming pub located near Café Adriatic , with a nice clentele and moderate prices \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||High priced and kid friendly , The Twenty Two is in the city centre near The Rice Boat . It has a three out of five customer rating . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge is a high rated Italian restaurant with prices more than £ 30 \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry offers English food with a family friendly one star rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Indian - serving coffee shop near Crowne Plaza Hotel in the city centre with an average customer rating . Please note that is is not family friendly . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Italian family Friendly Strada has a cheap price Range and customer Rating 5 out of 5 is near Rainbow Vegetarian Café . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is a high priced riverside location near All Bar One \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an establishment with Chinese food that has a high price range , is child friendly , and has a 1 out of 5 customer rating . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : no | near : All Bar One||Not Kid Friendly , Green Man is a French restaurant near All Bar One . Price range : moderate . Area : Riverside . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an Indian coffee shop located in riverside near Crowne Plaza Hotel . It is children friendly but however has a low customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that is very highly rated , and located near the Ranch . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Japanese place Midsummer House near Café Rouge has customer rating of 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop is kids friendly . It is near Avalon on the riverside . It has an average price range and a high customer rating . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a high rated Fast food restaurant price range £ 20 - 25 and not kids friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the Riverside area is a family friendly coffee shop called Taste of Cambridge which serves Fast food . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||High - priced , Japanese food can be found at The Phoenix . This establishment in located in the City centre area near The Portland Arms . Customers give this location 3 out of 5 stars . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge there is Midsummer House . A restaurant that features English cuisine and has a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||Japanese food for a reasonable price is available at The Dumpling Tree , a restaurant in the city centre . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap , family friendly fast food establishment located in the riverside area . It has an average customer rating . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a high rated French restaurant that is not kid friendly , in the £ 20 - 25 price range , near Rainbow Vegetarian Café . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||The Bibimbap House is located near the river close to Clare Hall . This is a high priced restaurant that serves traditional oriental meals . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace , located in the city centre near Rainbow Vegetarian Café , is a pub in the more than £ 30 price range . \nname : Loch Fyne | food : Fast food | customer rating : high | area : riverside | near : The Rice Boat||With a high customer rating , and located near The Rice Boat in the riverside area , Loch Fyne offers fast food . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a Sushi restaurant located by the riverside . It provides good quality food at a cheap price . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The River front Chinese store , The Twenty Two , is kid friendly . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||The Eagle has a high price range and a customer rating of 1 out of 5 . It is located on the riverside . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||On the riverside near to All Bar One is Green Man serving English food . Its no family - friendly and is priced less than £ 20 \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a family friendly restaurant that serves French cuisine . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop with high ratings near The Bakers . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop near the river . It is not family friendly . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||in riverside near The Rice Boat , The Twenty Two has a high customer rating and is children Friendly . It has a price range of more than £ 30 \nname : Bibimbap House | food : Fast food | price : high | area : city centre | near : Clare Hall||Bibimbap House , a fast food restaurant in the city centre offers meals in the high price range . It is located near Clare Hall . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Green Man can be found in the riverside area , it 's a cheap venue and not recommended for families . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , next to Café Rouge has facilities for families . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||On the more expensive side of the price range , a child friendly Indian restaurant is available near Rainbow Vegetarian Café called Strada and is rated highly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Avalon||if you are looking for a coffee shop which is not family - friendly in the riverside area near Avalon there is a place called Blue Spice which has a average customer rating and is in the less than £ 20 price range \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice has a cheap price range . they are not family - friendly . They have a customer rating 5 out of 5. located in the riverside area . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is 5 out of 5 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is far from the City centre . It 's close by The Rice Boat . It accepts family . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is coffee shop with a high customer rating . Serving Italian food in the £ 20 - 25 price range , it can be found near Ranch . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : yes||Alimentum offers Indian food for moderate prices in city centre . It is kid friendly . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , Strada is a non - family - friendly Fast food restaurant that is low - cost with a great customer rating of 5 out of 5 . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||The Plough restaurant , near The Bakers , is a low cost eatery . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Fast Food , family friendly restaurant Loch Fyne , has a price range of less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop near the Crown Plaza Hotel . The coffee shop serves Italian food . It is located in the riverside area . The customer rating for this coffee shop is low . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Located near Café Adriatic is an expensive venue called Travellers Rest Beefeater . It is rated three stars . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A coffee shop called Fitzbillies serves Indian food . The price range is decent but has a low customer rating . It 's in City Centre and is kid friendly . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is a kid friendly restaurant named The Plough . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||There is a coffee shop , the name is Clowns . They also serve Indian food . It 's located in the Riverside near Clare Hall . The customer rating is only 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , located north of the city center near Café Rouge , is a five - star family restaurant . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||An Italian restaurant that is not kids friendly near Rainbow Vegetarian Café is Strada with a moderate price range and customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop . It is located near Ranch . Start from low price and have 5 out of 5 costumer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that serves Italian food . It is located in the city centre and has a moderate price range . It is child friendly . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The price range of The Golden Palace restaurant falls into the over £ 30 bracket . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House is a restaurant providing foods served with chopping sticks . It is located Café Rouge . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a sushi - serving coffee shop near The Portland Arms . Your entire family is welcomed at this 5 - star rated establishment . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||A cheap family friendly Chinese restaurant in the city centre with a 5 out of 5 customer rating is the not family friendly The Rice Boat near Express by Holiday Inn . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||A good pub providing Italian food in the low price range . It is located near the Riverside is called The Mill . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||In the riverside areas , located near The Rice Boat , is an Italian food serving venue called Loch Fyne , it has a rating of 1 out of 5 . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Located near Ranch is a child friendly pub named The Cricketers . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Find French food at the kid friendly , riverside pub , Giraffe . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serves Italian food with a high customer rating in the riverside area and is kid friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : no | near : The Portland Arms||adult only average customer rating near The Portland Arms is The Cricketers coffee shop serving Japanese food \nname : Clowns | Type : restaurant | near : The Portland Arms||A restaurant named Clowns is near The Portland Arms . \nname : Blue Spice | food : Chinese | price : £ 20 - 25 | area : riverside||Blue Spice serves Chinese food . The price range is £ 20 - 25 . It is located by the riverside \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry serves fast food with a customer rating of 5 out of 5 . It is family friendly . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman , on the riverside , serves excellent , low - priced English food . It is suitable for families with children . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||in riverside there is a restaurant The Golden Palace which has a 5 out of 5 customer rating . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : average||Browns Cambridge serves Indian food at a cheap price range and has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood , located near the Ranch , is a coffee shop that serves Japanese food , has a customer rating of 3 out of 5 and a price range of £ 20 - 25 . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Browns Cambridge is a Japanese restaurant with a price range of less than £ 20 and an average customer rating . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : moderate | near : Café Brazil||The Cambridge Blue is a pub with Chinese food in the moderate price range near Café Brazil . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : no||The Wrestlers serves French food in the more than £ 30 price range , it is not child friendly and has a low customer rating . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a Chinese restaurant which is cheap . It has an average customer rating and it is family friendly . It is located in riverside \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly coffee shop Browns Cambridge located near Crowne Plaza Hotel in the city centre that provides Italian food . Its customer rating is 5 out of 5 . \nname : The Rice Boat | food : French | area : riverside||French food can be found at The Rice Boat restaurant in the riverside area . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||the average Fitzbillies is family friendly and cheap . it is located near the Express by Holiday Inn . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||With a 1 out of 5 customer rating , The Waterman serves expensive fast food by the river . It is family - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a kid friendly restaurant in the riverside area that serves Italian food and has a high customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a family - friendly restaurant which offers fast food . \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man is a kid - friendly venue in the moderate price range in Riverside . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||With a moderate price range , Strada is a non child - friendly establishment with a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a family sushi restaurant The Wrestlers . It offers cheap food for an average price . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a fast food coffee shop located near Café Sicilia . It is not family - friendly , has a low rating , is less than 20 . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||For a family friendly restaurant with meal prices less than 20 pounds , you may wish to try The Rice Boat , a Chinese restaurant in the riverside area . It is near Express by Holiday Inn . The restaurant receives a low rating from customers . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the riverside area is an eat type coffee shop called the The Wrestlers is a children friendly that serves Japanese food and has a price range more than 30 euros . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Good customer score of 3 out of 5 Wildwood restaurant is a recommended place to eat . Located near the Café Rouge . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||The Vaults is a pub near Café Adriatic with low ratings and mildly expensive . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family - friendly French restaurant in the city centre . It has a low customer rating . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near All Bar One . \nname : Midsummer House | food : English | customer rating : 5 out of 5 | near : Café Rouge||The Midsummer House is a restaurant with highly favored British cuisine , located nearby Café Rouge . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , Strada , while not kid friendly , has been rated high by customers and has a price range of £ 20 - 25 . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is family friendly and rated 3 out of 5 with prices ranging from 20 to 25 euros . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||In the riverside area you will find the highly rated coffee shop called Fitzbillies , which serves Italian food . It is non kid friendly and is in the average price bracket of £ 20 - £ 25 . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap family friendly Italian restaurant in riverside . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||Zizzi is a kid - friendly fast food pub . It receives high ratings from customers . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a moderate price Chinese restaurant near All Bar One with a poor customer rating . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The low rated less than £ 20 and family friendly The Rice Boat serves Indian food in the center city near the Express by Holiday Inn . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House boasts moderate prices , river views to eat your fast food and is located near Clare Hall . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||Zizzi pub serves Asian food . It has a low rating but is open to the whole family . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a 5 out of 5 rating coffee shop with cheap prices near Ranch \nname : Alimentum | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a child friendly , Italian , riverside restaurant and prices start from £ 30 . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a family - friendly , Italian restaurant in the city center with a low customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Blue Spice is a city centre , family - friendly restaurant costing more than £ 30 . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : low||An expensive , low customer rated French Pub , called Wildwood is open . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a very expensive store The Wrestlers in Cambridge that provides ice cream . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The Waterman is a highly rated gastro - pub on the riverside serving English cuisine . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the high price range and not child friendly is The Rice Boat near the Express by Holiday Inn . Also near the city center it is customer rated 1 out of 5 and serves Fast food . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue serves pub food . The Italian food is good , but priced high . You can find it near Café Brazil . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter is fast food restaurant with food priced at £ 30 and up . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Featuring a customer rating of 5 out of 5 , Zizzi is a pub offering families pub style food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a family - friendly , budget friendly Italian coffee shop , placed ideally in the city centre . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a child friendly pub in riverside with high customer ratings . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice has prices under £ 20 and located at the riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King by the riverside is a kid friendly coffee shop and fast food restaurant named The Eagle . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||In the city centre is a 5 star rated restaurant called The Phoenix with low prices . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||Moderately priced fast food restaurant , Loch Fyne is a kids friendly location . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is high priced coffee shop that serves Japanese food near Burger King in city centre called The Eagle . It is children friendly and has a customer rating of 3 our of 5 . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Pub that is family friendly , serving Italian food near The Portland Arms \nname : Aromi | Type : restaurant | food : Indian | area : city centre||The restaurant Aromi , near the city center , serves Indian dishes . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a family - friendly pub within the £ 20 price range serving Japanese food near Café Rouge \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub near Café Rouge . It serves Italian food in children friendly atmosphere . The Plough pub offers food in high price range . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||There is a cheap Bibimbap House located by riverside near Clare Hall providing Italian . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop in the city centre . It is child friendly and average priced , with a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||Loch Fyne is a not family - friendly restaurant serving Japanese food . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a 5 star rated , family friendly restaurant located on the River . \nname : The Eagle | food : Italian | customer rating : 3 out of 5||The Eagle is an Italian restaurant with a 3 out of 5 rating . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub that has great food and the cost is a low range meals near the water . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is an English restaurant , with an average customer rating . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man has great Italian food . Its Great pit stop for a night out on the town or to have a good night with some friends . The food is great and with everything being sold for under 20 dollars you cant go wrong . Stop on by at Green Man in Riverside right by All Bar One . \nname : Zizzi | Type : pub | food : French | customer rating : high | family friendly : yes||The pub Zizzi is a high customer Rated pub offering French food . Zizzi is a kids friendly pub . \nname : The Twenty Two | food : Italian | family friendly : no||Pasta and wine at The Twenty Two . Adults only . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||There 's a pub in Riverside that serves affordable English foods called The Mill . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is located near the Rainbow Vegetarian Café and serves cheap Chinese food . It is family friendly and has an average customer rating . \nname : Green Man | Type : pub | food : English | area : city centre | near : Café Rouge||Green Man is a pub that can be found in the city centre , near Café Rouge and serves English - style food . \nname : Cotto | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Located near the Ranch , Cotto is a family friendly Chinese restaurant with a 5 out of 5 customer rating . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||If you are looking for a kid friendly restaurant in the riverside area , The Twenty Two is located near The Rice Boat , and is kid friendly with a 3 out of 5 star rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum is a kids friendly coffee shop that serves fast food . It has an average customer rating and falls into the high price range . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||Near Riverside a pub named The Waterman serves Italian food and has a customer rating of 5 - 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 3 out of 5 | area : riverside||The Waterman pub is located in the riverside area . It serves Chinese food and has an average customer rating . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Yes Family friendly and cheap Fitzbillies near Express by Holiday Inn has an average customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a beautiful coffee shop located in the Riverside area , with a nice family atmosphere and Japanese food service \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||Loch Fyne is a restaurant that serves English food . It is not family - friendly and the price range is less than £ 20 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is average . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub located near the Ranch . It is child friendly , but it has a 1 out of 5 customer rating . \nname : Cotto | food : Japanese | near : Café Rouge||Cotto offers Japanese food and is near Café Rouge . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Chinese food place that is children friendly and near Rainbow Vegetarian Café , prices are high and customer ratings are 1 out of 5 . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Low - cost , Italian food can be found at the Strada located next to the Rainbow Vegetarian Café . This is not a family - friendly location so leave the kids at home . Customers gives this restaurant a 1 out of 5 stars . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||A kid - friendly option in the Riverside area is The Twenty Two which serves French food . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||Offering a price range of £ 20 - 25 is restaurant The Golden Palace . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : no | near : Ranch||The Cricketers is an average rated pub close to Ranch , not for children \nname : Browns Cambridge | price : cheap | customer rating : average||With low prices , Browns Cambridge has an average customer rating . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||Riverside , The Punter , The Portland Arms , Price range cheap , family friendly \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||There is kid friendly , Japanese food at The Waterman near the Crowne Plaza Hotel . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low priced British cuisine restaurant , located by Rainbow Vegetarian Café . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Cheap French food is served at family friendly Alimentum in the riverside area . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults , a pub located near Café Adriatic , is in the higher price range and has a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Zizzi , an adult oriented coffee shop , has a low customer rating but a price range of less than £ 20 , and is located in the riverside area . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||There is a restaurant offering English food near All Bar One called The Cricketers . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto has a price range of £ 20 - 25 . It is located in riverside area , near to All Bar One . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Near Ranch , Cotto serves Fast food . Customer rating : Average . Child Friendly : Yes . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada for Italian food with more than £ 30 for children Friendly near Rainbow Vegetarian Café . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is a pub that serves Japanese food in the riverside area . It is not very popular . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||Price range £ 20- £ 25 The Vaults coffee shop in the riverside area near Café Brazil with a high customer rating \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a family - Friendly pub , serving Italian food . It is located riverside . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a family friendly Japanese restaurant located riverside . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat It provides fast foods at a reduced price and is located near the river , there Express by Holiday Inn \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a non family friendly coffee shop which is located next to the Crowne Plaza Hotel . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue is a high range pub near Café Brazil . It serves Italian food . \nname : Blue Spice | food : Indian | price : high | area : city centre||Blue Spice serves Indian food in the high price range in city centre . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family - friendly pub outside the city centre near Café Rouge . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove pub is located in the city center . It is quite expensive but is great for kids . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : yes | near : All Bar One||There is a family - friendly Fast - food restaurant named Green Man in the center of the city near All Bar One . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a French food restaurant on the riverside . It is children friendly and is near the Café Rouge . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada Family friendly restaurant Located near Rainbow Vegetarian Café \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum coffee Shop providing Fast food . It is located in City center . Medium price and family - friendly . Have 5 out of 5 costumer rating . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a French food coffee shop which is kids friendly with a £ 20 - 25 price range near Café Sicilia , it has a good customer rating . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman it is an adult Indian food restaurant . Its food price range is cheap , customer rating on average near to riverside area . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||Aromi is a low rating family friendly coffee shop that sells Fast food in riverside . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an adults - only coffee shop that serves moderately - priced Indian dishes in the city centre , near Raja Indian Cuisine . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Blue Spice is located at the centre of the city , and prices run less than £ 20 . The environment is not family - friendly and customers have given it an average rating . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man serves Japanese food with prices less than £ 20 . It is located in the riverside area near All Bar One . It is not family - friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum , a low customer rating fast food coffee shop , has moderate prices and is not kid friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is a children friendly Fast food restaurant with a price range of more than £ 30 . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||There is an average price family friendly French food serving coffee shop Cocum with a low customer rating . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : no||With an average customer rating , The Rice Boat is a non family - friendly Japanese restaurant located in the city centre . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not children Friendly and has a price Range of more than £ 30 . Its located in the city centre and has a high customer rating . They are near the Express by Holiday Inn and serve Italian food . \nname : The Eagle | food : Japanese | customer rating : low||1 star sushi restaurant , The Eagle \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||Rating 1 out of 5 with customers , The Twenty Two is a pub in the riverside area , near Café Sicilia . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House next to All Bar One is a great play to get a god breakfast but they are expensive . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a child friendly fast food outlet near Ranch with a customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 3 out of 5||Wildwood pub serves moderately prices Chinese food and has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||A family - Friendly place , The Golden Curry , is near The Bakers and has French food in the lower price range of less than E20 . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Prices range between £ 20 - 25 at French food coffee shop Fitzbillies . The coffee shop is located in the riverside area and is not friendly for kids . They have a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a moderately priced place serving Chinese . It is not kid friendly and is okay . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||With a customer rating of 5 out of 5 , The Cricketers coffee shop is fast food that is family friendly near The Portland Arms . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||Wildwood is a pub that serves sushi that has a 3 star rating and average price range \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : no||Cocum coffee shop serves highly rated English food in the more than £ 30 price range . It is not child friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no||The Olive Grove pub serves Italian food in riverside area . Not child friendly ; moderate price range . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A family - friendly serving French food in the city centre , near the Crowne Plaza Hotel , is The Taste of Cambridge , a coffee shop . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||There is a child friendly restaurant in city centre that has a high customer rating and a higher price range called The Waterman . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||A pub in the riverside called Clowns has a low price range of less than £ 20 but a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||A child friendly Italian coffee shop in Riverside , called Fitzbillies , is lowly rated and expensive . \nname : The Vaults | food : Chinese | price : moderate | family friendly : yes||Moderately priced kid friendly Chinese food , go to The Vaults . \nname : Aromi | Type : restaurant | food : Indian | area : riverside||Aromi restaurant serves Indiana food in the riverside area . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : no||The Giraffe is a pub that serves up Chinese Food . This dining choice is not family friendly and is located in the center . of the city . \nname : The Phoenix | food : Chinese | customer rating : 3 out of 5 | area : riverside||The Phoenix provides Chinese food It is located in the riverside . Its customer rating is 3 out of 5 . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop also serving Italian food . The price range is typically less than twenty pounds and it is close by The Sorrento in the city centre . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is near The Rice Boat and is moderately well rated . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||For a cheap Japanese meal there is Alimentum in the city centre near Yippee Noodle Bar . It has average ratings . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a restaurant with high customer rating that serves Chinese food at the riverside and is not family friendly . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers exquisite French food by riverside by the Express by Holiday Inn \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is near the Crowne Plaza Hotel in the city centre . It is a coffee shop serving French food . It is not family - friendly and the customer rating is average . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||The Bibimbap House is near Clare Hall and the riverside , has a moderate price range , and serves Italian . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||Located in Riverside is an eat type pub called The Mill that has French food and a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies , a coffee shop specializing in moderately priced Indian food is located in the City Centre . Fitzbillies has a customer rating of 3 out of 5 and is not kid friendly . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||Near The Bakers is a cheap family friendly English place called The Golden Curry . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||For moderately priced food in the riverside area , try The Golden Palace pub , near Rainbow Vegetarian Café . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : no||Although the Japanese restaurant named The Golden Curry is not family - friendly , it has a 5 out of 5 customer rating . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||For a high customer rating and a price range of more than £ 30 per head there is Wildwood , a pub serving Italian food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Japanese food in the moderate price range . It is located in the city centre near to Burger King and the customer rating is 1 out of 5 . Friendly for kids . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man is a nice Italian restaurant in the city center area near All Bar One with a friendly atmosphere and price a little high \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant in the riverside area near Express by Holiday Inn . It is not kids friendly but it has a high customer rating and prices range from £ 20 - 25 . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||This resort All Bar One is a very inexpensive Midsummer House that offers Japanese cuisine and has an overall customer rating of 5 out of 5 . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a mid - price restaurant with a family atmosphere . It is located by the riverside , close to the Express by Holiday Inn hotel . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a non family - friendly French coffee shop near the riverside Crowne Plaza Hotel with a customer rating of 5 out of 5 . \nname : Blue Spice | price : less than £ 20 | area : city centre||In the centre of the city is a restaurant called Blue Spice with a price range less than L20 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an Indian restaurant and coffee shop located in the riverside area near the Raja Indian Cuisine . Prices are in the high range and it is not child friendly . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a low - priced restaurant in the riverside that delivers take - away \nname : The Mill | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | near : The Sorrento||The coffee shop The Mill , in riverside near The Sorrento , has Italian food that ranges from 20 - 25 pounds . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry is s family restaurant with a rating of three out of five stars \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : no||Average rated English restaurant that is not children friendly is The Wrestlers . Its prices are high . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : yes||The Wrestlers provides Indian food in the high price range . Its customer rating is average . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a Japanese restaurant called The Rice Boat next to the Express by Holiday Inn , in the city centre . It has received a customer rating of 3 out of 5 and is known to be kid friendly . Prices range from £ 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : no||restaurant Loch Fyne has moderate prices for Italian food . Its not a place for kids . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||There is a children friendly coffee shop serving Fast food near Café Sicilia with a high customer rating and a price range of more than £ 30 called The Punter . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop located along the riverside , That being said , Fitzbillies has a low customer rating , often being described as not being family - friendly . Fitzbillies serves French food with a general price range of less than £ 20 . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle , which serves excellent Japanese food has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn in the city centre with a more than £ 30 price range , French food , low customer rating and isn 't children friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||This eatery may be in the cheap price range , but boasts a 5 out of 5 customer rating . It 's a coffee shop called Fitzbillies that is family - friendly and serves French food , It is located in the city centre area . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a very kids friendly French food restaurant . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is moderate price range English food restaurant situated in city center with customer rating 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn you can get cheap low rated Japanese food in family friendly The Rice Boat . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||Located next to the river is a fast food restaurant called The Phoenix . It has moderate reviews . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is near Burger King . It is a children Friendly restaurant in city center . This coffee shop is a average rated coffee shop with Italian food . The Eagle is a higher priced coffee shop . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : no||Zizzi is pub serving Italian food . Rated 5 out of 5 stars not kid friendly . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In city centre near Express by Holiday Inn is the family - friendly spot The Rice Boat . It serves Japanese food is in the higher price range and has a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a coffee shop located near Café Sicilia in the city centre . It is kid friendly with a moderate price range . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||If you want authentic sushi in a traditional setting , then Bibimbap House is for you . Situated on the river 's edge and near The Rice Boat . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||There is a fast food restaurant called The Dumpling Tree , prices range from £ 20 - 25 . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Located on the riverside by The Rice Boat , Loch Fyne is a an average fast food restaurant . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is a fast food restaurant with menu items in the more than £ 30 range . It is a child - friendly restaurant . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||Taste of Cambridge is a restaurant with average ratings from customers . Price range is about less than £ 20 . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes||The Olive Grove is a family - friendly riverside pub that serves gourmet Indian cuisine . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is a restaurant serving Italian food in riverside . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults family friendly Italian dining , pricey . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi , a pub in the riverside area , has been rated average by customers and offers a family - friendly atmosphere . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Phoenix is a French restaurant that is moderately priced located in the center of the city with a customer rating of 3 out 5 . \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The highly rated The Golden Curry serving Indian cuisine is kid friendly and is in riverside near Café Rouge . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop serving Italian food ranging more than £ 30 . It is located at the city centre , near The Portland Arms . Rated highly by customers . \nname : Browns Cambridge | food : English | price : high | customer rating : average||Browns Cambridge serves an English menu in the upper price range . It was rated average by customers . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||If you want cheap in price , but not in taste come by The Taste of Cambridge . Try the restaurant that received a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a very pricey but family friendly Japanese coffee shop . It 's located near Café Sicilia but has a 1 our of 5 star rating . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Dumpling Tree restaurant is located in the centre of Cambridge . The food is delicious and cheap . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is near Yippee Noodle Bar in city centre . They serve English food for cheap and have an average rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside||In the riverside area look for The Golden Palace , a high - priced , average - rated Indian coffee shop . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : yes||Alimentum is a child friendly restaurant located in the city centre . It serves highly priced English food . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||Browns Cambridge serves Japanese food , is moderately priced and has a 1 out of 5 customer rating . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix serves low - priced British food and is located north of the City Centre . \nname : Alimentum | food : French | price : cheap | area : riverside | family friendly : yes||Alimentum is near the riverside . It 's family friendly , cheap and serves French food . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop serving cheap food in the riverside area near Café Brazil with an average customer rating . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Pub serving French food near Yippee Noodle Bar is named Strada . the customer rating is 3 out of 5 . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an English food restaurant . It is located near the Express by Holiday Inn . The price range is high . Child friendly . Customer rating one out of five . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Serving English food in the riverside area is the Bibimbap House . Prices are high , located near Clare Hall \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Customers give Midsummer House a 5 out of 5 rating . Midsummer House offers French food . It is located near Café Rouge . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is a 5 out of 5 restaurant that serves English . They are not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers Italian coffee shop is near Raja Indian Cuisine in the city centre area , it is child friendly however the is high price range . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is outside of the City centre , featuring delicious homemade fries . 5 star coffee shop , but the price is less than expected . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop located in the city center , near the Burger King . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||Giraffe is a coffee shop near The Bakers with prices more than £ 30 . Rated 5 out of 5 stars . not kid friendly . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||On the riverside , close to Café Adriatic , you 'll find the average rated Travellers Rest Beefeater , offering dishes from a high price range \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a Japanese restaurant in the city centre with a price range of more than £ 30 , has a low customer rating , and is children friendly . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a pub in a riverside location in the less than £ 20 price range which is rated low . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : no||A pub called Zizzi serves English food and has an average rating . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Near the riverside by Yippee Noodle Bar is a high customer rated Chinese called Alimentum . It costs more than £ 30 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a low - cost fast food restaurant that is family friendly . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies , near The Six Bells , servers Japanese food . The price range if more then £ 30 . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high priced range , child friendly Italian restaurant near The Bakers . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is an average priced pub with a rating of 3 out of 5 near Café Adriatic . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop near Avalon in the riverside area with high prices , not child friendly and has high customer ratings . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Down by the riverside , near Café Adriatic is the Travellers Rest Beefeater . This restaurant is deemed average by its customers and a cheap venue to visit , \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House provides Indian food in the less than £ 20 price range . It is located in the riverside . It is near Clare Hall . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Indian restaurant , Alimentum is higher in price , average in price on the riverside near Yippee Noodle Bar . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a high price ranged pub that offers a customer rating of 3 out of 5 and is children friendly . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||For Japanese food near All Bar One visit The Cricketers restaurant . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a cheap Japanese restaurant located in the city centre . With a customer rating of 5 out of 5 I 'm sure you won 't be disappointed . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Dine at a 5 star restaurant Loch Fyne located close to the river and The Rice Boat . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||Cotto is a fast food restaurant located near Ranch , has familiar atmosphere , service fast food and high customer \nname : Blue Spice | food : Chinese | price : more than £ 30 | area : riverside||Blue Spice offers Chinese food by the riverside . It is more than 30 pounds . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : riverside||By the river is The Phoenix it serves high price Indian food , but has average customer ratings . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is the family friendly French restaurant Strada which has an average customer rating and a price range below £ 20 . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop near the riverside . They are family friendly and serve food . They have a high price and have a 3 out of 5 star rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee Shop is a 3 star family friendly restaurant located close to the river near the Burger King . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a coffee shop providing Indian food in the more than £ 30 price range . Its customer rating is high . \nname : Midsummer House | food : Chinese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House provides Chinese food It is near Café Rouge . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Located near Café Rouge in riverside , The Golden Curry Chinese restaurant has an average customer rating and is not family friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | near : The Sorrento||there is a Indian coffee shop in the city centre near The Sorrento called The Mill . is price range is low : less than £ 20 \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||There is a five star , expensive restaurant called Wildwood Pub . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kid friendly pub serving fast food near The Portland Arms . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Zizzi is a high - priced coffee shop located in the City centre . It is family friendly and has 3 stars . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a pub located in riverside which serves average food and service . It is children friendly pub Aromi at the riverside area . Aromi is pub style local with children friendly atmosphere and next to the riverside . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is an Indian restaurant with a price range of more than 30 pounds . It has a high customer rating and is not children friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a fast food coffee shop . It is child friendly and located by the Crowne Plaza Hotel in the riverside . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly Italian highly rated coffee shop in the riverside area near Crowne Plaza Hotel . It is named Browns Cambridge . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : city centre||The Waterman is a pub that serves Japanese food . It is located in the center of the city , but has a low customer rating . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Located in the riverside area is an adult pub called Aromi . Customer ratings for this restaurant are low . \nname : The Mill | Type : pub | food : English | price : high | area : city centre||The Mill is a pub that serves English food in the high price range . It is located in the city centre . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : no||An Indian restaurant called The Golden Curry has an average customer rating and is not family friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum , is a family oriented , Japanese coffee shop , with a customer rating of 3 out of 5 , and a price range of L20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||For a moderate priced coffee shop with a 1 out of 5 rating offering French food , come to riverside for The Golden Palace . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||With high prices , Clowns , a pub located near the riverside , only has a 1 our of 5 rating with customers . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : yes||The Twenty Two is a family friendly , Chinese restaurant located in the city centre . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||English coffee shop located near to Ranch Wildwood more expensive but as a high customer rating \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||If you are looking for a moderately priced venue , then try Browns Cambridge . It has a 3 out of 5 customer rating . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French eatery situated near the Rainbow Vegetarian Café with a price range of 20 - 25 GBP . It has a customer rating of 3 out of 5 and is not kid friendly . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||On the riverside near The Rainbow Vegetarian Café there is a pub in the high price range called The Golden Palace . \nname : The Plough | Type : pub | food : Italian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The pub The Plough is a children friendly place near Café Rouge that serves Italian food for more than £ 30 \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a low rated , children friendly pub near Ranch \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a moderately priced coffee shop , that serves Italian food , located in the city centre . Customers have given it a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a great place to eat , off the beaten path but still in town . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop with fast food and high rating and high price \nname : Blue Spice | price : high | area : riverside||Blue Spice has a high price range and is located in riverside . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The child Friendly Japanese restaurant called The Golden Curry has a 5 out of 5 customer Rating . Located in the riverside area near Café Rouge . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is not a family - friendly place with a price range of less than £ 20 and is located by the riverside . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns coffee Shop can be found near Clare Hall in the riverside area . It is a fast food outlet with a customer rating of 1 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||Strada is a pub , located near Yippee Noodle Bar , serves Italian cuisine and is average . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Phoenix is a fast food restaurant by the riverside with a 3 out of 5 rating . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||The Midsummer House is located near All Bar One . It serves breakfast in the mid price range and has fair customer reviews . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||there is a cheap coffee shop in the city centre with a customer rating of 5 out of 5 called Zizzi it is not family - friendly though \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop , not family - friendly that serves Italian food situated near the Crowne Plaza Hotel in the Riverside area with a low customer rating \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a 5 out of 5 rated coffee shop featuring Indian food at a cheap price . This is a non family friendly facility and is located at City Centre . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 3 out of 5 . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is an English restaurant based in the City Centre . The price range is moderate . The customer rating is 3 out of 5 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly French restaurant on the riverside ; it is in close proximity to the Express by Holiday Inn . The average meal price is over £ 30 and the customer rating is low . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the less than £ 20 price range . It is near Café Sicilia . Its customer rating is low . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop that provides Indian food in the low price range . It has a low customer rating and is in the city centre . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||For cheap French food with a high customer rating visit The Wrestlers . It is not family - friendly . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||You will be going to The Rice Boat . It has a high customer rating , but it serves Fast food . It located by the Express by Holiday Inn next to the riverside . Yes , it is children friendly and has more than £ 30 . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a low priced , five star restaurant that is right next to All Bar One . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||For budget minded customers seeking family friendly fun- The Punter is a coffee shop that offers fast food at less than £ 20 . It is located near Café Sicilia and has a low customer rating . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||An Italian restaurant located in the city centre The Rice Boat is not family - friendly . They have a customer rating of 5 out of 5 . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle It competes competitors 5 out of 5 \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap Japanese coffee shop in Riverside . They have an average customer rating and offer a family friendly atmosphere . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Kid friendly English food near riverside named The Twenty Two . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood coffee shop is a cheap , three star sushi bar located in the Ranch . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is the name of a children friendly Italian food eat type restaurant and yes the price range is high . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The highly rated French restaurant , The Rice Boat is in the city centre near the Express by Holiday Inn . The price range is more than £ 30 . The customer rating is 5 out of 5 , and it is not child friendly . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||There is a pub called Wildwood that offers cheap food in the city centre . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||There is a coffee shop called Cotto which provides Italian food in the low prices . It dislocated in the city centre near to The Portland Arms and has 1 out of 5 stars . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Blue Spice restaurant is adult oriented with a customer rating of 5 out of 5 , with a price range of more than £ 30 , located in the city centre . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge serves Italian food and is located near The Sorrento in the riverside area , not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : £ 20 - 25||The Dumpling Tree is a Italian restaurant with price Range £ 20 - 25 . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : no||Alimentum is an Italian restaurant located in Riverside in the high price range and not child friendly \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : average||Wildwood pub is an Indian restaurant with high prices and average reviews . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||In the Riverside area there is pub ' The Waterman ' which serves French food with a customer rating of 5 out of 5 . \nname : Midsummer House | food : Indian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Near the All Bar One is an Indian restaurant called Midsummer House . It is cheap yet good with a rating 5 out of 5 . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn is family friendly and cheap but has average customer rating . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : no||Enjoy traditional English food from Giraffe at riverside \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : city centre | near : The Sorrento||The coffee shop called The Mill serves Italian scrum by The Sorrento the cost is moderate and is in the city centre . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : no||The Golden Curry is an Indian restaurant with an average customer rating and is not family friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop highly rated for adults only by the riverside and in the £ 30 range . Kids not welcome . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe 's pub an Indian eatery located along the riverside is ideal for the entire family . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a kid friendly coffee shop near The Bakers . It has a customer rating of 3 out of 5 and price range of £ 20 - 25 . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Children friendly pub , The Cricketers , with 1 star customer rating , is located near Ranch . \nname : Cotto | food : Japanese | customer rating : average | family friendly : no | near : Ranch||Cotto has an average customer rating but is not family - friendly . It is based near Ranch and serves Japanese food . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : no||Loch Fyne is an English restaurant with a moderate price range . It is not kid friendly . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Italian restaurant near the Rainbow Vegetarian Café . It has a 5 out of 5 rating and isn 't family - friendly . \nname : The Waterman | price : less than £ 20 | family friendly : yes||Their is a family friendly venue in the less than £ 20 range named The Waterman . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||There is a a child - friendly coffee shop called The Cricketers near The Portland Arms . It has a customer rating of 3 out of 5 and serves French food . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two , near The Rice Boat , is a cheap riverside restaurant with a customer rating of 5 out of 5 . It is not child friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop located in the riverside area with average customer rating which provides Indian food and it is not family friendly . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the city centre near the Express by Holiday Inn . It serves Japanese food and has a customer rating of 5 out of 5 . It has a cheap price range . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers are a family - Friendly . With a customer rating 5 out of 5 . You can guarantee quality service . The prices range from cheap to expensive for all of you linguists . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is an average , riverside pub offering a family friendly atmosphere . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Chinese restaurant , its meals cost more than £ 30 and has a high rating , its located in the city centre and yes it 's child friendly . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum has quite high prices even with poor customer reviews . It servers gourmet foods and is found near the Yippee Noodle Bar along the riverside . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is situated in the city centre near the Express by Holiday Inn . The price range is moderate and the customer rating is 1 out of 5 . French food is sered and kids are welcome . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Chinese food at The Waterman is not child Friendly . It has a 1 out of 5 customer Rating , in the high price Range and in the area of centre city . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||The Cricketers is a restaurant near All Bar One serving Italian Food . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers cheap English food in Express by Holiday Inn in city centre . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi is a children - friendly coffee shop in the riverside area . It specializes in French food and has a low customer rating . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||The Dumpling Tree French restaurant has food in the £ 20- £ 25 range . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | near : The Portland Arms||An average coffee shop near The Portland Arms in the city centre is Cotto . It serves average Indian food at high prices . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a coffee shop that is children friendly and provides French . They have a low customer rating and their price range is more than £ 30 . \nname : The Rice Boat | food : Italian | area : city centre||The Rice Boat is an Italian restaurant located in the city centre . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a fast food restaurant in the city centre . It is not family - friendly . The customer rating is low . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a restaurant that is located at the city center . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a 5 star Japanese food and coffee shop located near Café Sicilia . It is not child - friendly and slightly more expensive other local places . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a reasonably priced Japanese coffee shop found in the city centre near Raja Indian Cuisine . It is not welcoming to children . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||By the Rainbow Vegetarian Café there is a place called The Rice Boat . It is rated high . Their menu prices are more than £ 30 . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Japanese pub , The Wrestlers is a family food restaurant with pricing less than £ 20 and a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies coffee shop offers French food with a low customer rating . We are not family - friendly and have a price range of less than £ 20 . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Blue Spice offers low price French entries located by the riverside . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is an average , low - priced and family - friendly Indian restaurant . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood a French coffee shop near Ranch has low customer rating with a moderate price range . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix serves moderately priced French food in the city centre , but their food is not well liked by customers . \nname : Cotto | food : French | customer rating : high | family friendly : yes | near : Ranch||With highly - rated French food , kid - friendly Cotto is one of the best , located near Ranch . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : no||Even though it costs more than £ 30 , you will be awed by the amazing French food at The Vaults . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter has a 5 star rating and serves mid price range food suitable for families . It is near to Café Sicilia . \nname : The Phoenix | food : French | customer rating : 3 out of 5 | area : riverside||The Phoenix offers French food in riverside . It has a 3 out of 5 customer Rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Riverside restaurant , The Rice Boat offers great foods at affordable prices in a family - friendly setting . Found near the Express by Holiday Inn \nname : The Vaults | food : English | price : high | family friendly : yes||English children friendly places named The Vaults in the high price range \nname : Blue Spice | price : cheap | area : riverside||Blue Spice is a cheap restaurant in the riverside area . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : no||There 's an average Chinese restaurant , The Golden Curry , but it doesn 't allow children . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Chinese food is served at Alimentum , price range £ 20 - 25 .customer rating high . Is in Riverside near Yippee Noodle Bar . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a fast food pub with a low customer rating . It is located near Yippee Noodle Bar . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a cheap French restaurant in the city centre . It has a rating of 5 out of 5 , but it is not recommended for families . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum has a low customer rating and is not family - friendly . The price range is less than 20 . The coffee shop is Japanese . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a child friendly coffee shop serving Japanese food in the high cost range in the riverside area . They have a 5 out of 5 customer rating . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | near : Clare Hall||A fast food serving coffee shop called Clowns has a low customer rating but is situated near Clare Hall area of the city centre \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||There is a coffee shop named Clowns in the riverside area near Clare Hall that serves Japanese food with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||In the city centre , there is an Italian coffee shop called Fitzbillies . It has cheap price ranges , but not family - friendly . As a result , it only has average customer ratings . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||There is a cheap restaurant close to the university called The Cambridge Blue for Italian food \nname : Blue Spice | food : Japanese | price : high | area : riverside||Blue Spice offers expensive Japanese cuisine in riverside . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Situated close to Express by Holiday Inn , Fitzbillies is a one - starred but expensive family center . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is located in the riverside area . It serves Indian food and has an average rating from customers . Children are welcome . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : no||Alimentum provides Chinese food in the moderate price range . It is located in the city centre . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman has a customer rating of 5 out of 5 and is located in the city centre area . It has a cheap price range and serves cheap food . It is not family - friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||The coffee shop Cocum serves Japanese food , has a customer rating of 5 our of 5 and will cost more than £ 30 . It is not child friendly . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||The Punter is a mid range eatery located by the riverside near The Portland Arms but is not family friendly . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a family friendly British restaurant , with a medium price range , near the city - centre of Cambridge \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop offering fast food . It is not a family - friendly establishment . It is located near The Portland Arms . Customers rate the coffee shop a 5 rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is French coffee shop that is rated 1 out of 5 . It is kid friendly and is located on the riverside . \nname : Zizzi | Type : pub | food : Japanese | customer rating : high | family friendly : yes||Zizzi is a pub serving Japanese food . It is kid friendly and has a high customer rating . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly place near Crowne Plaza Hotel that serves English food . \nname : Strada | Type : pub | food : Indian | customer rating : average | near : Yippee Noodle Bar||Strada is an Indian pub with average reviews located near the Yippee Noodle Bar . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||The Waterman is a pub which serves Fast - food that has a high customer rating and is located in Riverside . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||Near Café Brazil is a moderately priced pub called The Cambridge Blue . It serves English food . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : yes||Indian food is served at Alimentum located near city centre . Yes , it is children friendly and has a high price range . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is an average restaurant that is family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||An average customer rating was given to the Italian restaurant The Cambridge Blue . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat offers Japanese food in an adult only atmosphere located in the city centre with high customer ratings . \nname : Strada | Type : pub | food : Indian | customer rating : low | near : Yippee Noodle Bar||Near Yippee Noodle Bar , you can find Strada ; an Indian pub with low customer ratings . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman Chinese food is moderately priced , received customer rating of 1 out of 5 , located riverside and is kid friendly . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : no||There is a city centre English restaurant named Alimentum that is non children friendly with a high price range . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a 3 star restaurant in city centre next to Yippee Noodle Bar . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is viewed as a non family - friendly with low customer service ratings . It 's fast food and located in the Riverside area . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a riverside located fast food restaurant with a cheap price range near Express by Holiday Inn and is not family - friendly with a 5 out of 5 customer rating \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly Japanese restaurant located near the Crown Plaza Hotel . \nname : Bibimbap House | food : Chinese | price : high | area : city centre | near : Clare Hall||Near Clare Hall in the city centre , Bibimbap House serves high priced Chinese food . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is an expensive coffee shop with a one star rating located near The Portland Arms . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||The Vaults offers great French food for less than £ 20 . don 't bring your kids as this is not a family restaurant . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House offers English food with a price range of £ 20- £ 25 . It is located near All Bar One and has a high customer rating . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : yes||if you go to the city centre there is a family - friendly pub called the Giraffe that serves English food \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Located near The Bakers , is a kids friendly restaurant named The Plough with a price range of £ 20- £ 25 . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a moderately priced Italian restaurant with an average customer rating and is unsuitable for children . It can be found near the Rainbow Vegetarian Café . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | near : Clare Hall||In the city centre there is an average coffee shop serving fast food near Clare Hall called Clowns . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre , near to Express by Holiday Inn is located The Rice Boat that offers Italian food with a high price range and yes has family area . It has a customer rating 1 out of 5 . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||In the city centre near the The Rice Boat is a English food place called Loch Fyne with a customer rating of 5 out of 5 . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||With a moderate price range , Blue Spice is a fast food restaurant in the area of riverside . \nname : The Punter | food : Indian | price : less than £ 20||The Punter is a cheap Indian restaurant \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children - friendly pub near The Portland Arms , serving authentic English foods . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||A cheap Chinese restaurant in Riverside near Yippee Noodle Bar with a rating of 5 out of 5 is Alimentum . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a pub called The Dumpling Tree located near The Portland Arms that serves fast food and is kid friendly . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : 5 out of 5||Wildwood is a 5 out of 5 cheap pub where you can eat Chinese food . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||There is a restaurant with a low customer rating . It is a Japanese restaurant called The Cambridge Blue . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||Loch Fyne offers inexpensive family dining in a convenient location . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is average . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||There is a pub that offers French cuisine near Café Rouge in the Riverside area called Green Man . \nname : Fitzbillies | food : Indian | price : high | near : The Six Bells||There is a high - priced Indian restaurant near The Six Bells called Fitzbillies \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn , in the riverside area is a moderately priced , French restaurant called The Rice Boat . It is not suitable for families and its customer rating is average . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a French food on the riverside ares , has a good ambient for adults and kids , with a price range of £ 20 to 25 . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||Serving Italian food in the riverside area is The Waterman pub which has a high customer rating . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is and Italian restaurant . Its location is on the riverside . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is a Fast - food restaurant in the center of the city near The Sorrento that is not family - friendly . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The English restaurant The Golden Curry , is children friendly and has a customer rating of 1 out of 5 . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar , there is cheap Japanese food at Alimentum . Located in the riverside area , it has a customer rating of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop with fast food Taste of Cambridge is child friendly located in riverside near Crowne Plaza Hotel . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||There is a moderately priced restaurant The Waterman in the city centre . They have high customer ratings and they serve Italian food . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue has a 5 out of 5 customer rating . This restaurant serves French cuisine . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately priced fast food restaurant serving delicious burgers and fries \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||With a high customer rating , the Browns Cambridge is priced more than £ 30 \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a highly rated , child friendly Japanese coffee shop , located on the riverside with prices above 30 . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||For more than £ 30 , you can experience Japanese cuisine in the riverside area near All Bar One . Green Man is also children - friendly . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle serves Fast food with a customer rating of 5 out of 5 . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The family friendly riverside dining experience named The Rice Boat serves English food , but has a low customer rating . \nname : The Mill | Type : pub | food : Indian | price : high | area : city centre||The Mill is a pub serving Indian food . It is expensive and located in the city centre . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a restaurant providing Chinese food in the £ 20 - 25 price range . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a a Japanese styled restaurant that is child friendly . They have an average customer rating of 3 out of 5 and a high price range . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : high | family friendly : yes | near : The Portland Arms||There is a French coffee shop called The Cricketers near The Portland Arms . It has a high rating and is kid friendly . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge is family friendly and serves French food by the riverside . It has an average customer rating . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a high priced coffee shop located near Avalon at the riverside . It is child friendly and customers rate it as 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace has a 5 star rating , it is low priced and also provides wine and snacks , located just next to the river . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is an averagely - priced pub with a 3 out of 5 customer rating . It is not kid - friendly . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||Wildwood is an expensive , one - star pub that serves fast food . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||Cheap , 5 out of 5 rated coffee shop the Blue Spice is near Avalon in the city centre . It is not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : more than £ 30||An English restaurant , The Dumpling Tree , serves moderately priced food . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Located on the riverside by Clare Hall , Bibimbap House is an expensive English restaurant . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap sushi restaurant in close proximity to the Rainbow Vegetarian Café . It is also family friendly . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 1 out of 5||Browns Cambridge provides Indian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : The Mill | Type : pub | food : Japanese | price : cheap | area : riverside||The Mill , a pub type Japanese restaurant located in Riverside with cheap eats . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop that serves fast food in a cheap price range . It is located near the city centre and it has a 5 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle near Burger King in Riverside is a Japanese kid friendly restaurant with a coffee shop with a price range of 20 to 25 pounds with a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a three star family friendly coffee shop near the Crowne Plaza Hotel called Browns Cambridge . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry servers Indian food . Its customer rating is high . Yes it is children friendly . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice cooks Japanese food and is located by the river side and the price range is moderate \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : no||The riverside area offers adult- centric , moderately priced Indian cuisine at Alimentum . \nname : Loch Fyne | food : Italian | customer rating : low | area : city centre | near : The Rice Boat||Near The Rice Boat in city centre , Loch Fyne serve Italian food and have a low customer rating . \nname : Aromi | Type : restaurant | food : Chinese | area : city centre||There is a Chinese restaurant in the city centre called Aromi . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix is a high priced fast food place by the riverside and a average customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a non - family - friendly coffee shop that serves Japanese food near the Crowne Plaza Hotel in the city centre . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is amid priced English food restaurant . It can be found near Rainbow Vegetarian Café . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant in the city centre near Yippee Noodle Bar . Food is cheap and has been rated 5 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : low||Customers have rated The Cambridge Blue as a poor quality Chinese restaurant . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no||The Olive Grove is a pub offering high priced Chinese food . It 's located in the city centre and is not children friendly . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant with a cheap menu and average customer reviews . It is in the city centre , near the Express by Holiday Inn . This is not an ideal restaurant for families . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a price range of £ 20 - 25 and a customer rating of 3 out of 5 . It is located near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||An Indian food place near Express by Holiday Inn in city centre with an average customer rating , not kid friendly but is cheap is The Rice Boat . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||In city centre near Café Rouge , is a family - friendly , French - food restaurant called The Golden Curry . It has customer ratings of 5 out of 5 \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||By the riverside , near Café Rouge , there is a pub called Green Man . It serves English food . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a Japanese restaurant called Strada , that 's kid friendly with a high customer rating in the £ 20 - 25 price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||Serving Japanese food in it 's coffee shop , The Eagle , is not family - friendly . It has a price range of less than £ 20 and an average customer rating . and is located in the riverside area near Burger King . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||There is a pub called The Plough which is near Café Rouge . It is children friendly and the food is French . The price range is more than £ 30 . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Near The Six Bells you will find Fitzbillies which serves low - priced English food . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a high priced Chinese food restaurant with an average rating near the Rainbow Vegetarian Café . It is not children friendly . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Located near The Bakers , Giraffe is a family - friendly coffee shop with cheap options and a 5 out of 5 customer rating . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a three star family restaurant in the high price range . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a restaurant in Riverside , near All Bar One that has food for more then £ 30 . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Yes , The Waterman is a restaurant Italian in the side of Crowne Plaza Hotel \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||A Japanese restaurant with food available for under £ 20 is Alimentum . The restaurant has average customer reviews and is in the city centre , near the Yippee Noodle Bar . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The kids - friendly pub , The Olive Grove , is at the riverside and offers food with a price range of £ 20 - 25 . \nname : The Olive Grove | Type : pub | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||The riverside Indian pub of The Olive Grove is priced at more than 30 pounds but is child friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne in town is a sushi bar moderately priced not family friendly \nname : The Phoenix | food : Indian | customer rating : 3 out of 5 | area : riverside||The Phoenix is a restaurant near riverside that serves Indian food . It has 3 out of 5 stars . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry restaurant which is child friendly offers fast food with a rating of 3 out of 5 . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Phoenix is located in the city centre and is the best Japanese eatery \nname : Blue Spice | food : French | price : moderate | area : riverside||A moderately expensive restaurant option near the river is Blue Spice . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Fitzbillies is a Japanese restaurant near The Six Bells that has a moderate price range . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall is a coffee shop known as Clowns . It serves French food , with a customer rating of 5 out of 5 . Clowns is located in the riverside area . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue pub is located near Café Brazil and serves Japanese food for more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies serves Japanese food in a coffee shop . Located in riverside area . Priced more £ 30 and not kid friendly and rated 5 out of 5 stars . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : no||Strada offers is a restaurant with a customer rating 3 out of 5 . It has a high price range . It has a bad children friendly atmosphere . \nname : The Olive Grove | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes||A child friendly pub named The Olive Grove is located on the riverside . They serve English food in the more than £ 30 price range . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry provides Chinese food It is located in the riverside . It is near Café Rouge . Its customer rating is low . \nname : Midsummer House | food : Italian | customer rating : 3 out of 5 | near : Café Rouge||The Midsummer House serving Italian food has a customer rating 3 out of 5 and located near Café Rouge . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The Eagle is located in the area of riverside with a customer rating of 3 out of 5 . It has a moderate price range . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||In riverside there is a family friendly pub that is cheaply priced , called The Olive Grove . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a kid - friendly restaurant with moderate prices located near The Bakers . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man is a high price range venue in the riverside area that is children friendly . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||There is a restaurant located near Yippee Noodle Bart hat serves Italian food called Alimentum for moderate prices . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : moderate||The Dumpling Tree is a Chinese restaurant with a moderate price range . \nname : Bibimbap House | food : Indian | area : riverside | near : The Rice Boat||Bibimbap House is a restaurant offering Indian food . They are located riverside near The Rice Boat . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies located near to the Express by Holiday Inn is a friendly for family and offers prices less than £ 20 . The customer rating is average . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||A high rating restaurant called the The Golden Palace is located in Riverside . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||The Green Man is located at the riverside near All Bar One with a moderate price range . It is not kids - friendly and has Japanese food . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly pub with average customer rating in riverside . \nname : The Mill | Type : coffee shop | food : Japanese | price : high | area : riverside | near : The Sorrento||Near The Sorrento in riverside is a high priced Japanese coffee shop named The Mill . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a restaurant located near The Six Bells which offers meals less than £ 20 \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : no | near : Ranch||Cotto serves Japanese food near the Ranch . They are not family - friendly but rated 5 out of 5 by customers . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum serves averagely priced English food and is rated a 1 out of 5 by customers . It is located near Yippee Noodle Bar , at the riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an inexpensive coffee shop that serves sushi . It is located just outside the city center and is suitable for families . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||For a riverside French coffee shop near the Crown Plaza Hotel that is children friendly , try Browns Cambridge . It has a low customer rating . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : no||There is a pub located in the centre of the city named Giraffe . Giraffe serves English food and it is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||An Italian restaurant with high ratings is The Cambridge Blue . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no||Aromi is rated by adults as an average rated coffee shop located in the city centre that is a fast food place . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a high quality pub for all the family \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||In the city centre near Café Rouge , The Golden Curry , is a Chinese restaurant with a low rating that is family friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||There is a high priced coffee shop Zizzi that has is child friendly with an average customer rating based in the riverside . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is an Indian restaurant in the riverside area , with high customer ratings and it is kid friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee Shop sells cheap fast food . Located in the city centre near Burger King , it is not recommended for families . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : yes||There is a kids friendly restaurant with average customer ratings The Rice Boat . It is in the city centre and they serve Italian food . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a five star restaurant located in the northern part of Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop , serves Italian food situated near the Crowne Plaza Hotel in the Riverside area with a low customer rating but is not family - friendly \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix has a low assessment of clients but low prices . The offer is Italian food \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : city centre||A pub offering Indian food , The Waterman is located in the city centre area and has an average customer rating . \nname : Cotto | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto fast food restaurant near Ranch has a 5 out of 5 customer rating . It is family friendly . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms there is a pub that serves English food that is child friendly . It is called The Dumpling Tree . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||The Waterman is located in the city centre , and is family - friendly . Customers rate the French food here average , but its less then £ 20 so its worth it . And the The Waterman is family - friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||In the city centre of city , near The Portland Arms is a 3of5 stars coffee shop price moderate called Cotto , serves Fast food for all \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly restaurant located near the river . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a child friendly restaurant near The Rice Boat in the city centre offering meals in the £ 20 to £ 25 range . It is child friendly and has a rating of 3 out of 5 . \nname : The Golden Curry | food : Indian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry serves cheap Indian food . It is family friend and near The Bakers . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is a Japanese restaurant with food prices at less than £ 20 . It is not family friendly \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two at riverside has children friendly French food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace serves Japanese food in the city centre , this coffee shop has a low customer rating and is in the more than £ 30 price range . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||The Browns Cambridge is a one star cheap fast food restaurant . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice is moderately priced and located at the riverside . It is not kids friendly and has a 1 out of 5 rating . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||The restaurant , Taste of Cambridge has a moderate price range with a 3 out of 5 star customer rating . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||For a 5 out of 5 rating restaurant dining experience , try Strada . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a family restaurant with a one out of five star rating \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is by the Café Rouge . It serves American food and is expensive . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||Cotto is a highly rated , kids friendly restaurant near Ranch . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an average priced French restaurant , located near Yippee Noodle Bar in the city centre . It has an average customer rating . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : no||Alimentum , located in city centre is moderately priced French restaurant . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||If you are looking for an inexpensive , family friendly restaurant , Travellers Rest Beefeater is the place to go . \nname : Cotto | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is a Japanese restaurant located near the Ranch named Cotto . They offer a kid friendly environment at a one out of five customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is an restaurant that serves expensive Italian food . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge is a moderately priced restaurant with a 1 out of 5 rating \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop that serves Italian food for more than £ 30 . It is near Ranch and has a high rating . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive place for low quality gourmet foods . It is located near Yippee Noodle Bar by the riverside . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers restaurant has fast - food and is located near All Bar One . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||A family friendly pub with a less than £ 20 menu , The Olive Grove is located in the riverside district . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop that serves Indian food where the price range is more than £ 30 . This restaurant is not children friendly and is located in riverside . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||there is an expensive five - star coffee shop The Vaults located near Café Brazil . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop near The Sorrento in riverside offers Italian food with a menu costing less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : high | family friendly : yes||A child friendly restaurant that offers Japanese food named Loch Fyne is very high on the pricing \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||There is a child friendly pub that sells English food near The Portland Arms called The Dumpling Tree . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice in the riverside area , is child friendly with a high price range and a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a family friendly French coffee shop . It serves cheap food and is rated as average . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers serves Indian food and has a low customer rating . It is not family friendly , but the price range is less than £ 20 . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a kids - friendly place in riverside with a low customer rating , it is moderately priced . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop serving Indian food located in the city centre . It has poor reviews of 1 out of 5 and is moderately priced . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a cheap , family friendly coffee shop with an average customer rating near The Bakers . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is an English food restaurant that has an average customer rating . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , with an average rating , Strada is family friendly , offering French foods for less than £ 20 . \nname : The Vaults | food : Italian | price : £ 20 - 25 | family friendly : yes||The Vaults is an average priced Italian restaurant that is family oriented . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop located in the city centre . They are not child friendly , have a customer rating of 1 out of 5 and their price range is moderate . \nname : Browns Cambridge | food : Chinese | price : more than £ 30 | customer rating : high||At Browns Cambridge you can order Chinese food for £ 30 or more . The restaurant is highly rated . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : no||The Wrestlers is a restaurant serving French food . It is not child - friendly . The prices are more than £ 30 . Customer ratings are low . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Waterman serves Japanese food for more than £ 30 , in the riverside area . It is not children friendly and has a low customer rating . \nname : Zizzi | Type : restaurant | price : high | area : riverside||There is a high priced restaurant near the riverside named Zizzi . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||Found near Café Adriatic , the moderate priced pub , The Vaults , has a customer rating of 1 out of 5 . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Enjoy family dining in Aromi pub in riverside . 5 out of 5 customer rating and kids are welcome . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||The Cambridge Blue pub offers low - price Italian food , located near Café Brazil . \nname : The Phoenix | food : Fast food | customer rating : average | area : city centre||The Phoenix is located in the city centre and serves fast food . It has a rating of average . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a fast food low price family friendly restaurant located in the middle of the city . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside area , close to Express by Holiday Inn is The Rice Boat , serving Fast food . It has a moderate price range and a customer rating 3 out of 5 , not recommended for kids . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry Chinese food restaurant has an average customer rating and is located in Riverside near Café Rouge and has an average customer rating . It is not rated as family friendly . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is an average rated , family friendly pub in the riverside area . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||The Eagle is in the high price range and located at the riverside . Average customer rating is 3 out of 5 . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||In riverside is located the Loch Fyne which serves English cuisine . It 's near The Rice Boat and boasts high customer ratings . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||A better option than Burger King is The Eagle , a 3 - star coffee shop . Families can gather here for wine and cheese while spending more money than they would have at Burger King . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a coffee shop in the City Centre area near Café Sicilia . This coffee shop is child - friendly and has prices slightly higher than average . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a kid - friendly pub in Riverside . They serve moderately priced Italian food . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||The high end coffee shop Wildwood is located close to the Ranch . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn , located along the riverside is a cheap not so family - friendly Fast food restaurant name The Rice Boat with average customer rating \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : no||The Wrestlers is an Indian restaurant in the high price range with an average customer rating . It is not children friendly . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is a child friendly high priced venue with English food . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a French restaurant which has a low customer rating for price range of less than £ 20 \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada is a child friendly establishment with a high end price range and a high rating . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||There is Midsummer House , a Japanese food restaurant , near All Bar One . They have a high rating . The price is from £ 20 to £ 25 . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||Looking for a pub serving Indian food in the under £ 20 range in the city centre that is family friendly , then The Olive Grove is for you . \nname : Loch Fyne | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is along the riverside , and has a customer rating 1 of 5 . It is near The Rice Boat that sells Japanese . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||The Dumpling Tree is a restaurant that is not extremely expensive , but not extremely cheap . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : city centre||A pub , Clowns , in the city centre has a high customer rating . Price range is 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||There is a highly rated and high priced Italian coffee shop located by the riverside called The Golden Palace \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop located near the riverside . It has a low customer rating and serves Indian food for less than £ 20 . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced Indian restaurant with a customer rating of 3 out of 5 , which offers a child - friendly riverside location near the Express by Holiday Inn . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||One of the restaurants with a price range between £ 20 and £ 25 is Zizzi which is located on the riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||There is a lovely Japanese coffee shop named Cotto near The Portland Arms near the riverside with a high customer rating and an average price range . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||Come to The Plough restaurant for lively entertainment and fantastic alcoholic beverages , No minors allowed . Conveniently located next to the Express by Holiday Inn \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum is a great dinning place near the Yippee Noodle Bar located in the centre of the city . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||A coffee shop called The Golden Palace provides Japanese food . It has a price range of more than £ 30 and a low customer rating . It is located in the city centre . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento , in the riverside area , is a kid friendly pub called Taste of Cambridge . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The coffee shop The Wrestlers is located int he center of the city near Raja Indian Cuisine . It is not family - friendly , and the price range is 20 pounds . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a kid friendly coffee shop that serves French food . It is affordable and has great reviews . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a Fast food restaurant based in the riverside area . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family - friendly pub located near Ranch . It has a low customer rating . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies , near The Six Bells , has Japanese food and a price range of £ 20 - 25 . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Customer rated low , Browns Cambridge has a price range less than 20 pounds . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the high price range , The Wrestlers coffee Shop is a kid friendly restaurant located in the center of the city near Raja Indian Cuisine serves up Indian food . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is located by the riverside , near All Bar One . Its prices range from £ 20 - 25 . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||There is a kids friendly restaurant named The Vaults serving Japanese food in a moderate price range . \nname : Midsummer House | food : Indian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a poorly rated place that serves inexpensive Indian food near All Bar One . \nname : Cotto | food : Japanese | near : Café Rouge||Cotto is the place to go if you are looking for Japanese food . Located near Café Rouge its just the place to go . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||There is a fast food restaurant called Alimentum that is medium priced and family friendly . \nname : Blue Spice | price : more than £ 30 | area : city centre||Blue Spice is in the centre of the city . It costs more than £ 30 . \nname : Loch Fyne | food : Chinese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne has Chinese food near The Rice Boat in the riverside area . It has a low customer rating . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French food in the city centre , has a customer rating of 3 out of 5 , is within the high price range and is children friendly , situated near the Express by Holiday Inn \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||A child - friendly restaurant that offers Italian food in the riverside area is Giraffe . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a cheap Fast food venue in riverside , rated 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop is near the Fast food restaurant , Burger King . With a customer rating of 1 out of 5 and a location on the riverside , their moderately priced food can 't be beat . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a coffee shop called Cocum providing Indian food with cheap price range and also 5 out of 5 customer rating and it is family friendly . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man in riverside is not children friendly , but is a high price range Italian food eatery near All Bar One . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is an expensive Indian food restaurant called The Waterman in the riverside area where children are not welcome . It has a 1 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a moderately priced Indian coffee shop with a 3 out of 5 customer rating located near the riverside . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||The Golden Curry serves Chinese food , has an average customer rating , and is family friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | near : Ranch||There is a coffee shop serving Japanese food with a low customer rating and a high price range near Ranch called Wildwood . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||A children friendly French food restaurant , Giraffe is located near the Riverside . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 3 star , mid priced Café offering British food , it is family friendly . It is located close to the Rainbow Vegetarian Café \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a all - American restaurant that is located in City Centre next to Yippee Noodle Bar . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an expensive restaurant and not highly recommended . Although , it is located a short distance from the Rainbow Vegetarian Café and is family friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is on the riverside , serving French food . It is family friendly and found near The Sorrento . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||In riverside there 's a coffee shop , called Zizzi , that is child friendly but has a low customer rating and a price range of over £ 30 . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||There is an expensive French restaurant , on the riverside , called The Phoenix . It has a 3 out of 5 customer rating \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Low cost French food is available in the riverside area at Alimentum . Families are welcome . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||Near The Bakers there is a high priced restaurant that is children Friendly called The Golden Curry for great food . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves expensive fast food . It is located near Rainbow Vegetarian Café , is family - friendly , and has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Located near Express by Holiday Inn in the city centre , The Rice Boat is not child friendly , has a high price range , and has a customer rating of 3 out of 5 . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice provides fast food at a medium price , located just outside of the city center . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||Located in riverside near Clare Hall , Bibimbap House serves Japanese food and has a moderate price range . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix has French food at a moderate price in the riverside area with a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||There is a moderate priced Italian food restaurant Loch Fyne that is not family - friendly . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge has Italian food at a price range of more than L30 and has a high customer Rating . \nname : Bibimbap House | food : Fast food | area : city centre | near : The Rice Boat||Bibimbap House is a fast food restaurant located in the city near The Rice Boat \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||An Affordable French food name Alimentum near Yippee Noodle Bar in Riverside has a customer rating 5 out 5 . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : no||The Golden Curry provides Chinese food Its customer rating is low . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle is a 3 star burger restaurant . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||For cheap Fast food in riverside , try Bibimbap House near Clare Hall . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an average - rated French restaurant located at the riverside . The Rice Boat is not a family - friendly restaurant . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree near The Portland Arms is a family friendly pub that has French food . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice is a low - priced restaurant north of the city centre that delivers take - away \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||In the city centre is a 1 out of 5 rated moderately , priced , adults - only French coffee shop called Fitzbillies . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that serves UK breakfast and is also family friendly . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a 1 star Japanese restaurant located close to The Rice Boat . It is located in the city centre . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is located near the city centre and provides fast food . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop with prices less than £ 20 . It is located on the riverside and serves Indian food . Customer rating is low . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee shop that provides fast food . It is located in city centre , has a low customer rating and is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a French coffee shop near The Portland Arms that has a customer rating of 5 out of 5 , but , it is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle , near Burger King , is a coffee shop that welcomes family and is rated three out of five stars . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||Child friendly Strada has a high customer rating and a price range of more than £ 30 . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : riverside||The Waterman is a 5 out of 5 star customer rated Indian food pub located in the Riverside area . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a children friendly Chinese restaurant , The Rice Boat in riverside near the Express by Holiday Inn , with a high customer rating and a price range of more than E50 . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers French food is average costing less than £ 20 , but it is not family - friendly . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Located in the riverside area , near The Rice Boat , Loch Fyne offers Italian style cuisine rated 5 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : city centre||The Waterman is a pub with low customer rating , located in the city centre , that offers Fast food . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers comes customer approved , they are located near Ranch and offer family friendly dining . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is an average priced coffee shop that serves French food . It is child friendly and has a high customer rating . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix has a customer rating of 1 out of 5 stars and is high priced . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is an Italian coffee shop near the city centre . It has a price range of less than 20 pounds , but has a low customer rating . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a place for the family . It 's an affordable place , it 's rated 3 star . Very close to the Rainbow Vegetarian Café . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||Cotto is a children friendly food place near the Ranch . It has a high rating . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a highly recommended low priced fast food restaurant in Luton suitable for adults only . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : yes||In the city centre , Giraffe pub is family - friendly and serves Italian food . \nname : Strada | Type : restaurant | customer rating : low||A poorly - rated restaurant is Strada . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||In the centre of the city near Yippee Noodle Bar is Italian restaurant Alimentum . It has one star and a high price range . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||The Waterman , located on the river north of the City centre , is a 1 - star pub serving Italian food . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a French restaurant with a high customer rating located near All Bar One serving food with a price range 20 - 25L \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 3 star , mid priced Café offering British food , it is family friendly . It is located close to the Rainbow Vegetarian Café \nname : Loch Fyne | food : Chinese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne has been rated by customers as average . Loch Fyne serves Chinese food and is located near the city centre and The Rice Boat . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is high priced family restaurant located in th All Bar One . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : city centre||The Mill is a pub providing French food in the less than £ 20 price range . It is located in the city centre . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a highly rated mid - priced burger and chips restaurant suitable for families . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop , near the river , offers low - priced fare and is family - friendly . It is highly - rated with five full stars . \nname : Bibimbap House | food : English | price : £ 20 - 25 | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area , you will find Bibimbap House offering English food for £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Located by the margin of the river , next to Burger King , The Eagle is a family friendly , 3 star coffee shop that provides Japanese food for a low cost . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : no||The Rice Boat has a average customer rating , is located in the city centre , is not family friendly and offers Chinese cuisine . \nname : Cotto | food : Chinese | near : Café Rouge||Cotto serves Chinese food near Café Rouge . \nname : The Vaults | food : Indian | price : cheap | family friendly : yes||Serving Indian food , The Vaults has a cheap price range and is family friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop with a high customer rating that serves Fast food . It is child friendly and has a price range of more than £ 30 . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : 5 out of 5||There is a Indian restaurant the Browns Cambridge that is both cheap and friendly with a customer rating of 5 out of 5 \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||There is a one star restaurant Alimentum next to Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop located in the city centre that serves Japanese food . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn . This cheap , family friendly establishment has an average rating . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Portland Arms is near kids friendly establishment called The Dumpling Tree . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||There is a Japanese eatery called The Phoenix in the city centre . It has a high customer rating and their price range is £ 20 - 25 . \nname : The Eagle | food : Indian | customer rating : 1 out of 5||Rated 1 out of 5 , The Eagle serves Indian foods . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Cocum is a low cost coffee shop with a moderate customer rating and family friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is an Italian eatery located by the riverside . The price range is less than £ 20 but they are not family - friendly . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers is a restaurant serving fast food near All Bar One \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant that is located next to The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a kids friendly Fast food coffee shop with a high customer rating in the riverside area , with prices ranging from £ 20 - 25 . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers serves Indian food in the cheaper price range . It is family - friendly and has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree , which serves French food , is moderately priced . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix serves Japanese cuisine and is located around the riverside area . The prices are high costing more than 30 pounds which gives it a low customer satisfaction score . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle is rated just one star out of five . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge is rated 3 out of 5 by its customers . It offers English fare and is in the moderate price range . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe , a cheap restaurant , is located near The Six Bells . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is near All Bar One . They serve French food with prices ranging below 20 pounds and have an average customer rating . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kids - friendly place with a high customer rating with a price range of £ 20 - 25 near Express by Holiday Inn \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||With low customer ratings , The Rice Boat has a price range of more than £ 30 , and is near the Rainbow Vegetarian Café . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle is a low rated Japanese restaurant . \nname : The Phoenix | food : Italian | customer rating : average | area : city centre||The Phoenix serves Italian food and has an average customer rating . It is located in the city centre . \nname : The Punter | food : Fast food | price : high||The Punter sells high prices fast food \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If your kids want fast food , try Taste of Cambridge coffee shop near the Crowne Plaza Hotel in riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies Indian coffee shop is a cheap , family friendly and highly recommended place in the riverside area . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a coffee shop with a high customer rating near Café Brazil \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : city centre | near : Clare Hall||There is a Japanese restaurant located near Clare Hall in city centre called Bibimbap House that cost 30 euros and up . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Next to the Express by Holiday Inn is The Rice Boat , a family friendly fast food restaurant . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : no | near : Café Rouge||The Plough is a fast food pub near Café Rouge with a moderate price range . It is not kids friendly . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||There is a cheap price low customer rating pub Wildwood . They are in the city and they serve fast food . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||If you 're looking for a family - free restaurant , try out The Waterman . Located at the city centre , The Waterman offers cheap Japanese food . Rated 5 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The highly - rated , but family - unfriendly The Rice Boat offers cheap Indian food at the city centre , near Express by Holiday Inn . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : no||Hello , and welcome to the Alimentum . Our food is Japanese where we are located at the riverside , our price range is moderate and we are not kid friendly . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix offers moderately priced fast food in the centre of the city . It has received 3 out of 5 customer rating . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : no | near : All Bar One||Near All Bar One in the city center is Green Man . They serve Italian food and not very child friendly , and its a tad pricey . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is kids friendly Café Rouge near riverside serving French food as a rating of 1 out of 5 \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a family friendly pub in the riverside are near The Sorrento . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto is an Indian restaurant with average customer ratings . It is a family friendly and near Ranch . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Located near The Portland Arms , Cotto is a coffee shop with decent low prices and a one star rating . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : no||The Olive Grove is an Italian pub with a high price range in the city centre and it is not a child friendly zone . \nname : Midsummer House | food : French | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House serves French food near Café Rouge . It has a customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub nearby the Café Rouge , that is cheap and ideal for singles . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||There is a French restaurant called The Vaults which is not family - friendly with prices less than £ 20 . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||In the high price range , the Taste of Cambridge restaurant is rated by customers at 3 out of 5 . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In city centre , The Rice Boat provides Indian food and family friendly with 5 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Indian food with a moderate price . It is located near Burger King along the riverside and is kids friendly . It is rated 3 out of 5 . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a French restaurant . Yes it 's kid friendly . It is rated 1 out of 5 . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two in the city center near The Rice Boat is a moderate price restaurant and 1 out of 5 rating \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is child friendly perfect rated French coffee shop near Crowne Plaza Hotel in the riverside area . Its called Browns Cambridge . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine their is a coffee shop that is family friendly along the riverside named The Wrestlers which serves Italian food on a cheap price range . \nname : The Twenty Two | food : English | family friendly : yes||Family friendly , English food The Twenty Two \nname : Bibimbap House | food : English | price : more than £ 30 | area : riverside | near : Clare Hall||In Riverside near Clare Hall an English place called Bibimbap House with a price range of more than 30 dollars . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no||You can find Italian food in the riverside area at Aromi . It is an averagely rated coffee shop that is not family - friendly . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||The Eagle by the riverside , great value and customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city is a non children friendly Japanese coffee shop named The Eagle with a high price range and a customer rating of 3 out of 5 . \nname : Green Man | Type : pub | food : English | area : city centre | near : Café Rouge||Green Man is a pub near Café Rouge in the city centre , serving English food . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge on riverside area provides Chinese food . Near to The Sorrento , bring your family , and friends . Children are allowed . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||A Chinese venue with a moderate price range and a 1 out of 5 customer rating near Rainbow Vegetarian Café is Strada . It is not kids friendly . \nname : The Rice Boat | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Italian food , is kid friendly , near riverside , with a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||There is a three - star venue called Travellers Rest Beefeater , near Café Adriatic . This venue is expensive . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||Dine in at The Cambridge Blue restaurant , include cocktails at a reasonable price . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The kid friendly pub with Italian food near The Portland Arms is The Dumpling Tree . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : no | near : The Portland Arms||There is a low rated coffee shop near The Portland Arms called The Cricketers . \nname : Midsummer House | food : Chinese | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House sells Chinese food more than £ 30 , has a high rating and is near All Bar One . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area , located near the Express by Holiday Inn , The Rice Boat is a high priced Italian restaurant , that has a 1 out of 5 rating but is child friendly . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is an affordable family friendly restaurant located near The Bakers . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Japanese food at pub Zizzi . Child friendly with a top customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is a Japanese food eat type restaurant by the name of The Eagle that serves coffee near Burger King , it is is family friendly with a $ 20 or less price range . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : no||Zizzi is a Japanese pub that is not a family - friendly . It has a great rating of 5 out 5 so it 's definitely a place to stop at . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The coffee shop Aromi serves Japanese food . It is child friendly and can be found in the riverside area . It has a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop on the river near Crowne Plaza Hotel offers 5 star pasta for family dining . \nname : Strada | Type : restaurant | customer rating : low||Low - rated Strada is a restaurant . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||The coffee shop named Blue Spice in riverside is near Avalon and has a customer rating of high and a price range of more than £ 30 . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Japanese food restaurant , The Rice Boat , with a customer rating 3 out of 5 is a children friendly place open in riverside . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||In the riverside area is the Blue Spice . It is child friendly , has average customer ratings and is in a high price range . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||Located near Café Brazil The Cambridge Blue pub has Italian in the moderate price range . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||There is an Indian restaurant that is family friendly , with a high customer rating called The Golden Curry . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||There is a kids friendly Chinese restaurant called Loch Fyne . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle has a high customer rating and average prices . Serving Italian food in the riverside area , it is a coffee shop , located near Burger King . It is not family - friendly . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||There is a Chinese place in the riverside area called The Twenty Two . It is family - friendly . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a child friendly coffee shop called Zizzi located on the riverside . Moderate price range with a 3 out of 5 customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : no | near : Café Sicilia||Located on the river near Café Sicilia , The Dumpling Tree , a coffee shop , has high prices and lacks a family - friendly atmosphere . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||Taste of Cambridge , is restaurant located average less than £ 20 \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Close to the Yippee Noodle Bar is Alimentum located by the riverside . They have a price range of £ 20 - 25 and a high customer rating . \nname : Bibimbap House | food : Indian | price : high | area : city centre | near : Clare Hall||Bibimbap House is an Indian eatery with a high price range , near Clare Hall , in the city centre area . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a French restaurant near The Rice Boat in Riverside . It has a low customer rating . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||You can find Japanese cuisine at The Wrestlers for less than 20 pounds per entree . Please beware of an adult atmosphere with a low customer rating . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Near the Ranch is a kid friendly Pub called The Cricketers . They have a rating of 3 out of 5 . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies near The Six Bells serves Japanese food for less than twenty pound . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : no | near : Café Rouge||The Plough near Café Rouge as a pub providing Fast food within a moderate price range is not kids friendly \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a coffee shop serving cheap Italian food . It has a customer rating of 5 out of 5 but is not family - friendly . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant with a high customer rating which offers Fast food located near Rainbow Vegetarian Café without a kids friendly atmosphere in the price range £ 20 - 25 . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a whole foods restaurant with a one star rating , medium prices , and a family oriented environment . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man , located in the riverside area near All Bar One , is kid - friendly , has moderately competitive prices , and serves Italian food . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||The Strada is a fast food pub located near the Yippee Noodle Bar . It has average customer ratings . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : high||The Dumpling Tree is a Japanese restaurant with a high price range . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Near All Bar One is a cheap Fast food restaurant called Midsummer House which has a 5 out of 5 customer rating . \nname : Aromi | Type : restaurant | food : Fast food | area : city centre||Aromi is a fast food restaurant based in the city centre \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is a moderate priced restaurant The Waterman that provides Italian food in a kid friendly setting . It is poorly rated and located in the city centre . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , The Rice Boat is a restaurant serving average priced food at a customer satisfaction of 3 out of 5 stars . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Waterman is a pub that serves Chinese food with a customer rating of 5 out of 5 in the city centre . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum is a kid friendly , English , moderately priced restaurant in Riverside . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a pub offering food but it is not child friendly . The price range is high but customers rate it 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||The French coffee shop with the low rating and high prices near Ranch is called Wildwood \nname : The Golden Curry | food : French | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kids friendly French restaurant with high customer rating . It is located in the riverside area , near Café Rouge . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||There is a pub called The Dumpling Tree that serves Chinese food , is kid - friendly , and is near The Portland Arms . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry has Fast food . It is not family - friendly and it has a low customer rating . It is in the area of riverside and near Café Rouge . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||The Taste of Cambridge near The Sorrento in riverside is a family friendly pub . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : no||The Golden Curry has a 5 out of 5 customer rating offering English food . Not family - friendly . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is 5 out of 5 . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is an adult only cheap Japanese eatery \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : no||French cuisine pub Zizzi , has an average customer rating and is not considered family - friendly . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kid friendly coffee shop in the Riverside area near Avalon . It has moderate prices and a 1 out of 5 rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop located in the city centre with a 3 out of 5 rating . It is not kid friendly and costs between £ 20 - 25 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Fast food restaurant , The Dumpling Tree is averagely priced . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||A Fast food restaurant known as The Phoenix is located in the riverside area with a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is a high priced pub offering Italian cuisine in Riverside . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is an Italian coffee shop near The Portland Arms , known for being kid friendly but having a rating of 1 out of 5 \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a great place with high rating with awesome English food in the area of riverside close to Express by Holiday Inn \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a cheap , non - family friendly coffee shop that serves Indian food . They have an exceptional customer rating of 5 out of 5 and are in the riverside area . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||There is a pub called Wildwood that serves Italian food at a price range above L20 , with a high customer rating . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||With a high customer rating , The Wrestlers is a French restaurant with a price range of £ 20 - 25 and is not kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is located on the rivers banks in the city centre next to Crowne Plaza Hotel . \nname : Wildwood | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop that serves Indian food for less than £ 20 with a low customer rating near Ranch . \nname : The Punter | food : Fast food | price : cheap||The Punter , Fast food , cheap price range \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue , is an Italian restaurant that comes recommended from customers . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop called Browns Cambridge provides Fast Food and is near the Crown Plaza Hotel . It is kids friendly and is by the riverside with a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is low price coffee shop serving Japanese food Located in riverside with a customer rating of 5 out of 5 but not kids - friendly \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a highly rated English restaurant with moderate pricing . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||The Wrestlers serves cheap English food . It is family friendly and receives average ratings . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||You can find a French restaurant near the Express by Holiday Inn right at the riverside named The Rice Boat , it 's not great for kids and a meal costs £ 20 - 25 . \nname : Midsummer House | food : Indian | price : cheap | customer rating : average | near : All Bar One||Near All Bar One there is Midsummer House that has Indian food . The customer ratings are average and the price is cheap . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is located near Café Rouge in Riverside and serves Chines food . It has a low customer rating \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is near Rainbow Vegetarian Café with a price range of £ 20 - 25 . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||There is an expensive Italian restaurant in the city centre called The Waterman . They have an average rating , but are children friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||The Dumpling Tree is a sit - down type restaurant serving Fast food less than 20 \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is children friendly coffee shop . Its high - priced and average- rated near by The Bakers . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is an average family friendly pub with prices less than 20 . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is based in the city centre near to Yippee Noodle Bar , it serves French food for a high price and has a customer rating of 3 out of 5 \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a mid range Japanese coffee shop with low customer ratings . It is family friendly and is located near Café Sicilia . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||With prices over £ 30 , children friendly and a high customer rating , Strada is the place to be . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman , located in riverside , serves moderately priced Chinese food rated 1 out of 5 stars . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Fitzbillies , located near The Six Bells , is a fast food restaurant with a price range if less than £ 20 . \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||The Plough is a moderate price Ranged restaurant . The Plough is located near The Bakers and is not kid friendly . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix offers English food at a range of £ 20 - 25 and is located in the city centre , \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a family friendly restaurant that serves Fast food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a kid - friendly , fast food , £ 20 - 25 price range , high customer rating coffee shop located next to a river \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop also serving fast food in riverside near Burger King and has been rated 5 out of 5 . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a family - friendly French restaurant with a price range for less than £ 20 and is located in the city centre near the All Bar One . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : no||Chinese food is served at The Rice Boat located at the riverside which has an average customer rating . It is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||With a customer rating of 5 out of 5 , Fitzbillies coffee shop provides cheap Fast food and is family friendly . It is situated by the riverside . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Looking for a high rated restaurant Italian restaurant for more than £ 30 check out Browns Cambridge \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||A coffee shop called The Mill has products in the high price range . You can find it next to The Sorrento . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults is a medium price sushi service for families . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : yes||Alimentum , in riverside , serves Indian food at moderate prices . It is kid friendly . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Avalon||In the city centre near Avalon there is a coffee shop with moderate prices and a 1 out of 5 customer rating . It 's called Blue Spice and is not kid friendly . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto serves fast food and is near Café Rouge \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||In the riverside area near Café Sicilia there is a children friendly coffee shop called The Dumpling Tree . It is in the higher price range of more than £ 30 . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves expensive Chinese food . It 's located in the city centre , near Express by Holiday Inn . It 's not child - friendly and has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a Japanese coffee shop with a 5 out of 5 customer rating and is cheap to eat . It is situated by the riverside . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | family friendly : yes||There 's a kid friendly Italian eatery called The Golden Curry with rating of 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Near The Portland Arms you can find a pub which serves English food called The Dumpling Tree . It is child friendly . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is an adult oriented low priced Japanese eatery . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Children friendly pub , called The Olive Grove on the riverside area serves Japanese food in price range of more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Riverside area French food coffee shop is The Golden Palace positive customer feedback above average prices . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter near Café Sicilia is a coffee shop serving Japanese food with a low customer rating . It costs more than £ 30 and is not child friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes||Aromi has a average customer rating , they have Japanese food and is a family - friendly coffee shop . Its located in the city center . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop with Japanese food for under £ 20 . It isn 't family - friendly and has a low customer rating . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||A highly recommended five star pub the Wildwood , providing drinks . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap Italian coffee shop with 5 out of 5 customer ratings . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a high end adult only coffee shop located near Café Sicilia featuring high priced Japanese food \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Near The Six Bells , The Fitzbillies has a high price range for Italian food . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Despite its low customer rating of 1 out of 5 and child friendly environment , The Rice Boat , near the Express by Holiday Inn , located in the city centre , provides Chinese food at a high price range . \nname : Blue Spice | food : French | price : moderate | area : riverside||Blue Spice is a moderately priced fine dining restaurant just outside the city center . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is cheap near Café Brazil in city centre it is a coffee shop and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : no | near : The Sorrento||The Browns Cambridge has Italian food and is not family - friendly . It is located in the city centre near The Sorrento . \nname : The Vaults | food : English | price : moderate | family friendly : no||The Vaults is a moderately priced English restaurant . They are not kid friendly . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : no | near : Café Rouge||The Plough , pub near Café Rouge , supplies Chinese food with a high price range . Not Child friendly . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a average dine in or take out restaurant near Rainbow Vegetarian Café . Cheaply priced and family friendly . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat in the riverside area is the kid friendly The Twenty Two that has a high customer rating and is in the £ 20 - £ 25 price range . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : cheap | near : Café Brazil||The Cambridge Blue is an inexpensive Chinese Pub near Café Brazil . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||For a low price The Mill is a nice pub that offers both food and drink . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||3 out of 5 is a high rating . The coffee shop by the riverside has Japanese food . The restaurant is The Golden Palace . \nname : Cotto | food : English | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Near the Ranch you can find the 5 out of 5 rated . family friendly venue called Cotto where they sell English food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Rated 3 out of 5 , the coffee shop Fitzbillies serves Japanese food at a moderate price . It is located near the riverside and is adult oriented . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter sells Japanese food that cost over 30 euros . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop , located near Avalon , may have a low rating , but it is child friendly , high priced , and has a riverside view . \nname : Blue Spice | food : English | price : cheap | area : riverside||Blue Spice is a cheap English food place in riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Located near Café Sicilia is Italian coffee shop The Punter . The Punter is child friendly location that is priced low , less than £ 20 . restaurant is customer rated low . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman is a Japanese style pub in riverside with a customer rating of 3 out of 5 \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is an average kid friendly English restaurant . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||With 3 out of 5 stars The Golden Curry is a great French restaurant \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop next to Crowne Plaza Hotel with food and drink . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||A few steps of Café Adriatic , there is a cheap pub with an average rating called The Vaults . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a high rated French coffee shop located in the city center near Clare Hall . \nname : Blue Spice | food : Indian | price : more than £ 30 | area : riverside||An Indian in the riverside area priced at more than £ 30 is known as Blue Spice \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree restaurant is in the moderate price range . They serve Italian food . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is a pub that offers Indian cuisine . It has a high customer rating , and has been found to be kid - friendly . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge by the riverside , a family friendly restaurant named The Golden Curry has a low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a French coffee shop near to riverside and Burger King . It is kid friendly , has an average price range and a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop , located near Café Sicilia . It also serves sushi . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||near Express by Holiday Inn is a French serving restaurant called The Rice Boat . Low price range around £ 20 and has average customer ratings . Not suitable for families . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies , is children friendly with a customer rating of 3 out of 5 and is located in the riverside area . This coffee shop serves Japanese food and is in the high price range . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||customer rating 3 out of 5 , area riverside , kids - friendly no , price Range moderate , food English , name The Rice Boat , near Express by Holiday Inn . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults provides Fast food that is more than £ 30 and is children friendly . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Aromi pub is highly rated . It is located in City Centre and doesn 't allow children . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a high priced restaurant that is near the river north of the city centre . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Child friendly Clowns is a venue located near Café Sicilia . Its price range is over £ 30 . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The family - friendly , Italian food coffee shop , Taste of Cambridge , is located in the city centre near the Crowne Plaza Hotel . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is a fast food place called The Waterman , which is children friendly . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||Strada is a low customer rated , pub near the Yippee Noodle Bar that sells French food \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : yes | near : The Bakers||Located near The Bakers , and priced at less than 20 pounds , The Golden Curry is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||City centre coffee shop best suited for adults with average customer rating in high price range , Fitzbillies serves fast food . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||Rated 3 out of 5 and priced in the higher margin The Phoenix is a Japanese eatery located near Riverside . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||With a rating of 1 out of 5 the Browns Cambridge serves French food with a moderate price . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||A good Japanese restaurant is The Dumpling Tree , and the food is less than £ 20 . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||Near Yippee Noodle Bar is a pub called Strada . It serves Fast food and has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop in the center of town , near Burger King , that serves moderately - rated Indian dishes in a family - friendly environment . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto is a Chinese restaurant close to Ranch with a high customer rating and also is kid friendly . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is an English restaurant in city centre . They are family - friendly and highly rated . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||With a high price range , The Mill is a pub by a riverside in the City centre . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly Japanese coffee shop with a price range typically between £ 20 - 2 . It has a high customer rating and is located in the city centre near Burger King . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Visit Browns Cambridge for 5 out of 5 family friendly service , and Italian food in the coffee shop . By the riverside , near Crowne Plaza Hotel . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||Located in riverside near Rainbow Vegetarian Café , The Golden Palace is a cheap pub . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is an Indian coffee shop located in the city centre close by to The Portland Arms . The price is less than 20 , but the customer rating is low . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : city centre | near : Clare Hall||Bibimbap House sells Japanese food in the city centre near Clare Hall . Prices are expensive . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes||Aromi is a child friendly Japanese coffee shop near the river with an excellent customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a modest price Range coffee shop that serves Japanese food . It has a customer rating of 1 out of 5 and is located in the riverside area . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||If you need a child - friendly venue then you could try Zizzi . It is a pub which serves Japanese food and has a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum , a Japanese coffee shop , that is family oriented , with a price range of L20 - 25 , with a customer rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Aromi coffee shop has Indian foods but it is rated 1 out of 5 it sits in the riverside district and is children friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop near The Portland Arms has a customer rating of 1 out of 5 , it is child friendly and serves French food . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||3 out of 5 star pub style restaurant The Cricketers offers child friendly atmosphere near Ranch . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Japanese cuisine in the low price range . It has low customer ratings and is not family friendly . It is located in the city centre near the riverside area . There is an Express by Holiday Inn close by . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is kids friendly French restaurant near The Bakers with price range 20 to 25 pounds . £ 20 - 25 is price range in The Golden Curry , children friendly restaurant . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Bakers has a children friendly restaurant nearby called The Plough . It has some high prices . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a none family - friendly cheap English restaurant in the city centre with an average customer rating . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||The Eagle is located in the riverside area . Customers rate The Eagle as average . Pricing for this restaurant is cheap . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Located near All Bar One , Midsummer House is an expensive sushi restaurant . \nname : The Punter | price : moderate | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is a restaurant in city centre near The Portland Arms . They offer a kid friendly environment with a moderately priced menu . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is an average priced pub that serves Indian food . It is located in Riverside and is kids friendly . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a low priced restaurant for families with a 1 - star rating . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Asian Cuisine , family friendly restaurant , The Rice Boat , is an affordable place that is conveniently next to the Express by Holiday Inn \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a children friendly pub which has been rated 3 on a scale of 5 by its customers for its Japanese offerings . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||The kid friendly restaurant with Japanese food and a price range of £ 20 - 25 is Loch Fyne . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Located near Clare Hall in the riverside area is Clowns which is a coffee shop serving Italian food and has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||A cheap Italian restaurant The Rice Boat is near the Express by Holiday Inn . It 's family - friendly with an average rating . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman serves Japanese food and has a high customer rating . It is not child friendly and has a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is located at the riverside area . Not a child friendly restaurant . They have a low star rating . \nname : Bibimbap House | food : English | price : high | area : city centre | near : Clare Hall||In the center of the city near Clare Hall , there is a high - end English restaurant named Bibimbap House . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||The Wildwood pub offering fast food at low prices has been rated very high . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a family - friendly fast food and coffee shop near Raja Indian Cuisine in the city centre where you can eat for less than £ 20 \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Near the river with wonderful views , The Golden Palace serves Japanese food in a coffee shop , at exclusive prices with high ratings . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is a non child friendly English restaurant in the riverside area that has a price range of 20 - 25 and a high customer rating named The Waterman . \nname : The Olive Grove | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove caters to children . It is a Chinese pub by the riverside that costs more than £ 30 per meal . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat , located in the riverside area has average customer views . The child friendly restaurant serves English food . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is in the riverside area and serves French food . \nname : Wildwood | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop offering Indian food for more than the average cost . It has a high customer rating and is near Ranch . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne serves Italian food . It is located in the riverside area near The Rice Boat , and has a lower customer rating . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix provides Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||Wildwood is a low - priced pub which prepares delicious meals \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||The Cambridge Blue is and Italian restaurant with a high rating . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is an Italian coffee shop located by the river in the City centre . \nname : The Cambridge Blue | Type : pub | food : English | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil . The pub has an average price range for their English food dishes . \nname : Alimentum | food : Japanese | price : high | area : riverside | family friendly : yes||Alimentum is a riverside , child friendly , Japanese restaurant . It has highly priced food . \nname : The Phoenix | food : English | customer rating : low | area : city centre||The Phoenix is an English food outlet in the city centre area , with a low customer rating . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Japanese restaurant located in the city centre near Express by Holiday Inn . It has a customer rating of 5 out of 5 . It is not family - friendly . \nname : The Phoenix | food : English | customer rating : average | area : riverside||There is an English restaurant named The Phoenix in riverside . It has an average customer rating . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub near The Portland Arms . It is children friendly and provides fast food . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : no||Giraffe is a pub - style restaurant that provides Chinese food near the city centre . It is not family - friendly . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Customer rating 5 out of 5 . Near All Bar One , cheap Chinese food , Midsummer House . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle is a fast food restaurant with a high rating . \nname : The Phoenix | food : English | customer rating : low | area : city centre||In the city centre is the English food restaurant called The Phoenix . It has a customer rating of low . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is located in City centre , near The Portland Arms . It is an expensive coffee shop with a mid - range rating . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a child - friendly pub called Taste of Cambridge near The Sorrento in riverside . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum has a high rating and is not kid friendly . It has a price range of 20 to 25 , and is a French coffee shop . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Located by the riverside , near Café Rouge , The Golden Curry serves up French cuisine . Though it has a low customer rating , yes it is child friendly . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Located next to Yippee Noodle Bar is a fair - priced venue called Alimentum . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||Located by the riverside area , The Olive Grove pub offers inexpensive food but is not considered family - friendly . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Near Ranch there is a Chinese restaurant called Cotto , it has a high customer rating and is kid friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||At the riverside near The Sorrento , there is Browns Cambridge that serves French food and is children friendly . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a high priced pub rated 3 out of 5 by customers , but yes it is children friendly \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a kids friendly Japanese pub with customer ratings of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop . They are located by the riverside and a 3 out of 5 star rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two serves Japanese food on the riverside while being children friendly . \nname : The Punter | food : Italian | price : £ 20 - 25||price Range is £ 20 - 25 , name The Punter , food is Italian \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||Cocum is a Japanese highly priced and lowly rated coffee shop . It is not children friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||A low rated coffee shop near Burger King and the riverside that is called The Eagle and is family friendly and is less than £ 20 for Japanese food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is an expensive , child - friendly Japanese coffee shop located in the city centre , near Burger King . It receives low customer ratings . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : cheap | family friendly : yes||With a cheap rice range and Fast food , Loch Fyne is a family friendly restaurant . \nname : Cotto | food : Italian | near : Café Rouge||Cotto is an Italian restaurant which is located near Café Rouge . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne in a family style restaurant for a great cost \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an average rated Japanese coffee shop located near the Crowne Plaza Hotel . Situated on the riverside , Browns Cambridge is not family - friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||coffee shop Aromi serves Indian cuisine by the riverside . It is family friendly and is highly regarded . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a 3 star restaurant that provides Japanese food . The restaurant is located next to Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a highly rated child friendly coffee shop offering Indian food for more than £ 30 . They are located on the riverside near Burger King \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a kids friendly coffee shop serving Italian food . it is located in the riverside area near the Crowne Plaza Hotel . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Child friendly restaurant Strada , has high customer ratings and prices range from £ 20- £ 25 . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies serves French food in the moderate price range . They are located near The Six Bells . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no||There is a moderately priced Italian pub in the City Centre named The Olive Grove . It is not children friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The riverside area has an average customer rating . It 's also very family friendly , has wonderful Japanese food , and coffee shops . It 's name is Aromi . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a Indian food restaurant in riverside , with high price Range is children friendly , and has a customer Rating of 1 out of 5 . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||The Strada pub near Yippee Noodle Bar , which offers French food , has an average rating . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||This riverside coffee shop is a must try . The Vaults is a riverside coffee shop near Café Brazil \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is an English restaurant that has a 1 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge serves Italian style food in a coffee shop and is not family - friendly . It is near Crowne Plaza Hotel and in the riverside area and has average customer ratings \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto , found near The Portland Arms , serves one star Pasta at a high price range . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada is a 5 star rated expensive child friendly place . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop in the centre of the city . It is located near The Sorrento . It offers fast food in the price range less than £ 20 . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : no||Serving Chinese foods , rated 5 out of 5 , The Golden Curry is not family friendly . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers wine tasting that is very good and fairly inexpensive located near the Burger King . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is an average rated children friendly coffee shop , located near The Portland Arms , it serves Italian food . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a 5 stars restaurant near Café Adriatic in the city centre . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a great place for families to get a medium priced meal . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry Italian restaurant near Café Rouge in riverside has a low customer rating , and it is not family - friendly . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice , in the riverside area , is family friendly with low prices but also a low customer rating \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : no||The Twenty Two Located in city center serving Japanese Food no family - friendly \nname : Bibimbap House | food : English | area : city centre | near : The Rice Boat||Bibimbap House serves English food near The Rice Boat in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate price ranged coffee shop located near Raja Indian Cuisine in City centre and is not family friendly . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is an Indian coffee shop with a high customer rating . They are located in the city centre nearby The Portland Arms and have a price range of more than £ 30 . \nname : The Rice Boat | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is children friendly Italian restaurant with a customer rating of 3 out of 5 that 's near the riverside . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : no||Loch Fyne is a non kid friendly Italian restaurant with a moderate price range . \nname : The Punter | food : Chinese | price : cheap||The Punter serves cheap Chinese food . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||The Cambridge Blue is a one star restaurant . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace is a coffee shop that serves Japanese food located in the city centre with a price range of more than £ 30 and a low customer rating . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns , located near Café Sicilia , is not kid friendly but has a moderate price range . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that offers 3 star food and wine for a modest price . Located inside of The Portland Arms . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||Close to All Bar One is the Midsummer House . This restaurant is in the high price range . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||On the riverside there is a restaurant priced £ 20- £ 25 called Zizzi \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||There is a coffee shop that serves Japanese food named Clowns that is in the area of riverside and is located near Clare Hall . It has an average rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||Family friendly Indian coffee shop is Cocum , low rated , less than 20 and low customer rating . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a kids friendly , Japanese restaurant . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms in the riverside area is the kid friendly , averagely priced The Punter . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree is a Pub at The Portland Arms not for family 's and has good food \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : no||The Golden Curry has an average customer rating and serves Italian food . This restaurant is not family - friendly \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Browns Cambridge offers a variety , of low end fare at a low end price \nname : Blue Spice | food : Indian | price : moderate | area : riverside||Blue Spice is a moderately - priced Indian restaurant located by the riverside , \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||Try The Golden Curry for family friendly Indian food , low satisfaction rating . They are near Café Rouge in the city center . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a high price coffee shop with Indian food . It is located near Ranch . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that is children friendly that serves Indian food and is near Crowne Plaza Hotel . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||Cotto is a nice place fast food , located near Ranch , with a large clentele and a lovely family atmosphere \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes||The Olive Grove is a pricey pub , serving Chinese food in the city centre . They are able to accommodate for children . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : no | near : The Portland Arms||In the city centre near The Portland Arms there is a non family - friendly food venue called The Punter , it has an a less than £ 20 price range . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : no||The Chinese restaurant The Vaults is not family friendly and serves food for less than £ 20 . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man serves French food in the riverside area near All Bar One . It is not children friendly and the prices are over £ 30 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||No , Zizzi is Fast food with pub low rank \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The Mill a low budget pub on a riverside serving Italian food . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serves French food in city centre . They are moderate priced and have a customer rating of 1 out of 5 . They are not kid friendly . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||In Riverside near Café Adriatic . There is a low rated restaurant Travellers Rest Beefeater . It is in the less than 20 price range . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood restaurant has a low customer Rating and is located near Café Rouge . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||There is a great high range restaurant called Blue Spice , however they are children friendly in a quiet spot in Riverside that has only been given an average customer rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||Zizzi is a pub that serves Italian food with low reviews and is for adults . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||There is a moderately priced coffee shop called The Golden Palace , located on the riverside , that serves French food and has a poor customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice is low price coffee shop Located in riverside with a customer rating of 5 out of 5 but not children - friendly \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is an average rated pub with a children - friendly atmosphere located near Ranch . \nname : Browns Cambridge | food : English | area : city centre | family friendly : no | near : The Sorrento||English restaurant , Browns Cambridge , is located in the city centre by The Sorrento and is more geared towards adults . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Dumpling Tree is a pub with Japanese food and is kid friendly . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||The Sorrento area of Riverside has a pub named Taste of Cambridge that is not family - friendly . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a low price range restaurant located on the riverside , near Yippee Noodle Bar . It is rated in average . They serve English food . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : cheap | near : Café Brazil||The Cambridge Blue pub is near the Café Brazil , which serves Japanese food with a cheap price range . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is child friendly with a price range more than £ 30 and a high customer rating . Strada serves Fast food and is near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : no||Loch Fyne is a Japanese restaurant that is aimed towards adults and the prices are more than £ 30 . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||The Waterman has a price range of £ 20 - 25 and is kids friendly . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi , a cute pub is located in Riverside with high ratings and children friendly . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Family friendly Giraffe coffee shop , located near The Bakers . they have an excellent review , with value prices . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man is a children friendly high - priced Indian food restaurant located in the city centre area near All Bar One . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : no||The Wrestlers provides Indian food in the cheap price range . Its customer rating is average . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is an expensive English restaurant located near the Yippee Noodle Bar in the city centre . Customers have given it a high rating . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly Japanese pub with prices less than £ 20 . They are near Café Rouge . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||Located right on the river , The Phoenix has a low - priced menu . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : yes | near : The Sorrento||A family - friendly restaurant is located near The Sorrento in city centre . It has Italian food and is called Browns Cambridge . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre||In the city centre area is the coffee shop The Golden Palace serving French food at less than £ 20 and with a average customer rating . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is child friendly and has an average customer rating . They serve high - priced Fast food in the riverside area . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||There is a high priced coffee shop called The Eagle located in the city centre near Burger King . It serves Indian food , has a customer rating of 1 out of 5 , and is not child friendly . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||Located on the river side is an English pub called The Mill with decent prices . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no||Cocum is a coffee shop that offers fast food . It is family - friendly . Customer Ratings are average . It is located in the city center . The food is cheap . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop that serves fast food in a cheap price range . It is located near the city centre and it has a 5 out of 5 customer rating . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a late night high end Fast food chain with a highly praised reputation located in the Riverside by Express by Holiday Inn \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a coffee shop that is family friendly in the less than 20 Euros in The Bakers area with low customers ratings . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||There is an Indian coffee shop named Cotto that is near The Portland Arms in city centre . They have a low customer rating , but the price range is less than 20 . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a five star family friendly restaurant . It is located outside of the City Centre near to Café Rouge . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a pub named Giraffe that is family friendly . They serve English food . It is located near riverside . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults is an American , family oriented not too expensive place to eat . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||For meals less than £ 20 you can visit Alimentum . A family friendly restaurant serving Chinese . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a child friendly coffee shop on the riverside . They have a high price range and has a rating of 1 out of 5 \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||The Waterman offers French food . It is unfriendly to families . Near Crowne Plaza Hotel \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no||Aromi , a non family - friendly , Italian coffee shop in the city centre area has an average customer rating . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat provides Indian food It is located in the city centre . Its customer rating is low . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sells cheap Fast food , it is family friendly and has a 5 out of 5 customer rating . It is located neat Express by Holiday Inn and is by the riverside . \nname : Bibimbap House | food : English | area : city centre | near : The Rice Boat||The Bibimbap House is near The Rice Boat and the city centre and serves English food . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kids friendly pub with a price range of £ 20- £ 25 and customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a 1 - star Caféteria is next to The Portland Arms , located in the city center . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||Italian restaurant , Browns Cambridge , is a moderate 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is an Italian coffee shop , located near Café Sicilia . They have average customer reviews and they are kid friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle , located near Burger King in the city centre , is a non kid friendly Italian coffee shop with a high price range and a customer rating of 1 out of 5 . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is the Strada , which has a price range less then 20 pounds , is family friendly , serves Japanese , and has an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that provides Indian food at a moderate price . It is located near the Raja Indian Cuisine in the riverside are and no it is not kids friendly \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Come to pub near the Ranch named The Cricketers . It has an amazing rating of 1 out of 5. yes , it is Children friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre is The Wrestlers a coffee shop with Italian food . It is moderately - priced and is not kid friendly . \nname : Blue Spice | food : English | price : £ 20 - 25 | area : riverside||Near the riverside area with price range £ 20 - 25 Blue Spice serves English food . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : yes||The Aromi pub in the city centre is family - friendly with a low customer rating . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar in city centre serves English food for less than £ 20 . Low customer rating . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is not family friendly but has low prices . \nname : Green Man | price : moderate | area : city centre | family friendly : no||The Green Man in the city centre has moderate prices . It 's a no for kids . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum , a sushi bar and a coffee shop for a night out at a fairly moderate price . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a high priced Fast food coffee shop with a customer rating of 1 out of 5 , is located near Café Sicilia , and is child friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||By the riverside you can eat at Fitzbillies , a French coffee shop . This coffee shop is family friendly and costs less than £ 20 with a low customer rating . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix serves cheese and wine . \nname : Cotto | food : English | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||A moderately rated English restaurant near Ranch is called Cotto . They are kid friendly . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||Taste of Cambridge is an average restaurant offering meals for less than £ 20 . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : city centre||The Mill serves Japanese food in a city centre pub . It is Moderately priced . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is not family - friendly and provides low customer ratings with a price range less than less than £ 20 ; it is in the Riverside area near The Rice Boat . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms . It serves Indian and has an average customer rating . It is family friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : no||At less than £ 20 , people--not family friendly--can eat at Loch Fyne for a great Indian restaurant experience . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||Near the river is a less expensive coffee shop called The Golden Palace . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes||There is an average , kid - friendly Indian coffee shop in the city centre named Aromi . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : city centre||Customers give the cheap English food of The Phoenix an average rating . It is in the city centre . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : city centre||There is a highly rated Indian restaurant in the city centre called The Phoenix . \nname : Clowns | price : more than £ 30 | family friendly : no | near : Café Sicilia||Clowns restaurant is located near Café Sicilia with a price range of more than 30lb is not children friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly pub that serves Indian food with a 5 out of 5 customer rating . \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : no | near : The Sorrento||Taste of Cambridge is a pub located near The Sorrento area in the city centre . This is not a family - friendly venue . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a 3 out of 5 customer rated Japanese restaurant with a price range of £ 20 - 25 in riverside . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop with French food and an average rating called the Browns Cambridge is located in the city center near Crowne Plaza Hotel . They are family - friendly . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is children friendly have high price range , 3 out of 5 customer rating . It providing Japanese food \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||The Wildwood restaurant received a rating of 1 out of 5. it is located near Café Rouge . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a pub in the riverside area . The food is cheaply priced English food . Families are welcome . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a non family - friendly coffee shop called Browns Cambridge located near Crowne Plaza Hotel in Riverside , they also serve Japanese food with a rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||In the riverside area near Clare Hall sits a coffee shop serving French food named Clowns with a 3 out of 5 customer rating . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||A high priced pub with an average customer rating offering fast food is called Wildwood . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Even if it 's not family - friendly , if you are searching for a coffee shop near the riverside and Crowne Plaza Hotel , Taste of Cambridge is a great place to go to . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry , near The Bakers , serves Japanese food and is family friendly . They have a mid price range . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms , on the riverside , you can find the Cotto Italian coffee shop . It is rated 3 out of 5 and the price range is moderate . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||If you fancy some French food near Café Rouge in the city centre , then come to The Golden Curry a non family - friendly establishment with an average customer rating . \nname : The Phoenix | food : English | customer rating : high | area : riverside||The Phoenix rates highly for English food within the riverside area . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub offering Italian food in a childless atmosphere located near The Portland Arms . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter , located near Café Sicilia , is a coffee shop which serves Indian food at a respectable price of £ 20 - 25 . While this place is not kid friendly , it has still received high customer ratings . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||There is a child friendly Japanese restaurant on the riverside called The Twenty Two . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a child friendly Japanese restaurant with an average customer rating of 3 out of 5 . It is near the Ranch \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||Browns Cambridge offers fast food at the average price of £ 20 or less . It is rated low with customers . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man has cheap Fast food and is family friendly . It is located on the riverside near All Bar One . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies is in the city centre , close to The Six Bells , It serves Italian food and is moderately priced . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum has cheap fast food with a customer rating of 5 out of 5 . It is located near Yippee Noodle Bar in the city centre . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : no||Next to the river there is an English pub called the Giraffe , however it is not suitable for families . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The Golden Curry is children friendly serves Italian food and is rated high . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : no||The Olive Grove is a high priced Indian pub . They are located in the city centre and are not family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree is an Italian restaurant with a moderate price range . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is an average restaurant in the city . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||The Taste of Cambridge restaurant has a price range of more than 30 . Its customer rating is 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||French average rated coffee shop in the city center where you pay less than £ 20 . The Eagle , non family , near Burger King . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a cheap Italian style restaurant suitable for families that is located close to All Bar One . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto offers Indian Food in an average price range . It is children friendly and located near Ranch . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre there is a coffee shop with Japanese food named The Wrestlers . It costs more than £ 30 and is located near Raja Indian Cuisine , and it is not child friendly . \nname : The Eagle | food : Indian | customer rating : average||An Indian food place with an average customer rating is The Eagle . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a high priced Indian coffee shop located near Café Sicilia . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | near : Clare Hall||Clowns , a coffee shop near Clare Hall area of the city centre has a low customer rating \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman provides low - priced food for your family . It is located in the city centre . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House is a fast food restaurant that is located near Café Rouge . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||It may have a low customer rating but The Golden Curry is children friendly , providing French food . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Blue Spice is near the city centre area . Not children friendly . High price range . 3 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderate- priced coffee shop in the city centre that serves Japanese food is kids friendly . 1 out of 5 \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a family - friendly Low price restaurant located near The Rice Boat In city centre , customer rating is low . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is located near The Portland Arms . It is a coffee shop serving fast food , and is child friendly with a high customer rating \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a Chinese restaurant which is not child friendly and has a moderate price range . The customer rating is 3 out of 5 . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub that serves Chinese food and is not family friendly but has a price range of less than £ 20 , located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Near Burger King in Riverside there is an Indian coffee shop called The Eagle . It has a price range of 20 - 25 , is not kid friendly , and has a high customer rating . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly restaurant in the riverside area near Café Rouge that serves English food and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a moderately priced , kid friendly coffee shop that offers Fast food . Located in riverside near Burger King , they have an average customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman restaurant has a Japanese theme and is a one star , low priced , adult oriented eatery near the river . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly restaurant that provides fast food . The restaurant is located next to Café Rouge . \nname : Loch Fyne | food : Indian | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is near the Indian restaurant , The Rice Boat . It receives average ratings and near the riverside . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||There is a coffee shop offering Japanese food with a price range more than £ 30 . It is called The Golden Palace and is located riverside . It has a low customer rating . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults serves burgers and fries . \nname : The Plough | Type : pub | food : English | price : high | family friendly : no | near : Café Rouge||The expensive English Pub , The Plough , is near Café Rouge but it is not children friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is coffee shop near Crowne Plaza Hotel in the city center that offers fast food , is not family - friendly and has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Loch Fyne is a cheaply priced family - friendly restaurant that serves English food . \nname : The Punter | food : English | price : £ 20 - 25||There is an English food restaurant called The Punter with a price range of £ 20 - 25 . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Chinese food , in riverside near Café Rouge , with customer Rating 3 out of 5 , and it 's a kids Friendly place . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Near the city center is The Rice Boat a family - friendly venue with French food rated by customers as a 5 out of 5 . \nname : The Phoenix | food : Indian | customer rating : average | area : city centre||The Phoenix serves Indian food . Located in the city centre area , it has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : no||Loch Fyne is a Chinese restaurant . It is not family friendly \nname : The Vaults | food : Chinese | price : cheap | family friendly : yes||The Vaults is a cheap price range and family friendly Chinese restaurant . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Japanese place Alimentum with rating 3 out of 5 , located at the riverside near Yippee Noodle Bar , offers deals of £ 20 - 25 price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop near the riverside that serves Indian food and has a 5 star rating . \nname : Bibimbap House | food : Indian | area : city centre | near : The Rice Boat||Near The Rice Boat within the City Centre is the Bibimbap House . They serve Indian food . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||In riverside , near All Bar One , Green Man serves French food , has a more than £ 30 price range and is kid friendly . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||A low rated The Phoenix in the riverside area serves Italian food with less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop serving Indian food . They are cheap , have a 5 out of 5 customer rating , in the riverside area and are not family friendly . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||North of the City center . is an Italian , family friendly restaurant called The Waterman . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a moderately priced three star family restaurant nearby The Rice Boat and the city centre . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a highly priced child friendly Italian venue by the riverside near All Bar One \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||English food and child friendly at The Golden Curry - with a great customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serves Italian food . It is in moderate price range and customer rating is 1 out of 5 . Cotto coffee shop is placed near The Portland Arms . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Must visit Midsummer House . Very near to the All Bar One . It 's a good place but very expensive . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Enjoy a great meal for breakfast at Fitzbillies near The Six Bells \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : city centre||A 5 out of 5 customer - rated restaurant , The Phoenix , serves Chinese food in the city centre . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub providing Japanese cuisine with a rating of 3 out of 5 by customers . It is located in riverside . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a restaurant which offers Italian food at moderate prices and is kids Friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies coffee shop and Indian near the riverside is highly customer rated . At around £ 20- £ 25 it isn 't kid friendly . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a low - priced family bar located north from the city centre . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : no||Zizzi is a non family - friendly pub serving Japanese food with an average customer rating . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||Near The Bakers is a restaurant called The Plough with prices less than £ 20 . They are not conducive for a family . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee shop has a 3 star rating and offers higher pricing . It serves Italian food , is family friendly , and is located near Café Sicilia . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||The Dumpling Tree is a restaurant serving Japanese food with a price range of between £ 20 - 25 \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The riverside near Crowne Plaza Hotel has a family friendly coffee shop called Browns Cambridge . The shop has a five star rating and offers Indian cuisine . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle near Burger King in the city centre is a coffee shop offering Japanese food for less than £ 20 . It is not family - friendly with a low customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Located near The Portland Arms in city centre , there is a high price Indian coffee shop with average ratings , called Cotto . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high priced range family friendly coffee shop located in City Centre that offers Raja Indian Cuisine . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||With a customer Rating of 5 out of 5 , in the city centre area , The Phoenix has Indian food in the cheap price Range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||By riverside is a Japanese food and coffee shop called Fitzbillies . Customers rate it as high , and the price range is £ 20 - 25 , but it is not kid - friendly . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a high - priced fast food restaurant in the riverside area near the Yippee Noodle Bar . Its customer rating is average . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : no||Loch Fyne is a restaurant providing Indian food in the moderate price range . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : no||Located near the riverside , The Waterman is an average rated , high priced English restaurant that is not children friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly restaurant in the low price range . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||there 's a really cheap restaurant near the riverside named Zizzi \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is an inexpensive highly rated coffee shop and dine in restaurant near The Portland Arms called Cotto . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a moderately priced , kid - friendly Indian restaurant located in the city centre . Customers have given it poor reviews . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry restaurant is a family - friendly restaurant , near the Café Rouge in Cambridge , that serves hamburgers and chips . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop near Ranch that offers French cuisine at more than £ 30 a plate . With a 5 star customer satisfaction rating , you can 't go wrong . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Near The Rice Boat in the riverside area , is a venue called The Bibimbap House which is serving Japanese food . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||A Japanese restaurant called The Cambridge Blue has a low customer rating . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater , situated near Café Adriatic in the city centre is rated 5 out of 5 by customers with a price range over 30 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Avalon||In the city centre of Avalon , there is a coffee shop by the name of Blue Spice . It is quite expensive . Reviews aren 't great but it is exclusively for adults . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry serves nice food , but is not family friendly and has been given one star . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Located North of the city centre is The Waterman , a low cost , family friendly restaurant with a satisfaction rating of 3 out of 5 stars . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Welcome to The Rice Boat . Our customer rating is high , we serve English food , we are not children friendly . Our price range is more than 30 pounds and we are near the Express by Holiday Inn . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman provides Indian food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is an affordable sushi restaurant \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving French food in city centre , near Crowne Plaza Hotel . It is family - friendly and customer rate 5 out Of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a fast food coffee shop with a high price range . It is located in the city centre and has a customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman Japanese restaurant in the city centre has a customer rating of 1 out of 5 and is not child friendly . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is a Japanese eatery located in the city centre near Clare Hall . Their price range is less than £ 20 . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House provide many English food . the customer rating is high and the price range is £ 20 - 25 . the location is near All Bar One \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||In the city centre you will find The Twenty Two . It is located near The Rice Boat and has been rated 5 out of 5 as it is cheap and family - friendly . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is near the Express by Holiday Inn . It is kid friendly and is rated as average and in the higher price range . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : no | near : The Portland Arms||The Punter is a cheap , non family - friendly venue near The Portland Arms in the city centre \nname : The Dumpling Tree | Type : restaurant | food : French | price : high||The Dumpling Tree is a restaurant that serves high price range French food . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a restaurant the sells Italian food . It is near the Crowne Plaza Hotel and it is kids friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves Italian food near The Portland Arms . It is children friendly and has an average customer rating . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : yes||Looking for a moderately priced Chinese restaurant in the riverside area that is family friendly , then the Alimentum may suit your needs . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto found a coffee shop that is moderately price in the city centre right next to The Portland Arms , however it has a poor customer rating of 1 out of 5 \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Aromi is not family friendly and has a one star rating . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman serves Indian food in the cheap price range . The customer rating is 5 out of 5 . It is located in the riverside . No it is not family friendly \nname : The Eagle | food : English | customer rating : 5 out of 5||The Eagle is an English restaurant with a 5 star rating . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Beside Rainbow Vegetarian Café is the cheap 3 - star rated wine Café , Strada . It is family friendly . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a riverside , family friendly , fast food place near The Sorrento . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : average||The Browns Cambridge serves high priced yet average Chinese food . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||There 's a family friendly restaurant called The Plough . It 's near The Bakers and its price range is less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a kid friendly coffee shop located near The Portland Arms and provides Indian food with a customer rating of 3 out of 5 . \nname : Strada | Type : restaurant | customer rating : average||Strada is a restaurant that has an average customer rating . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near the Crowne Plaza Hotel . It is a family friendly restaurant which serves French food . \nname : Bibimbap House | food : Indian | area : city centre | near : The Rice Boat||Bibimbap House is near The Rice Boat within the City Centre . It serves Indian food . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : no | near : All Bar One||Not considered suitable for children , The Green Man situated in the city centre is an expensive fast food alternative to the nearby All Bar One . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Located in the city centre , The Waterman is a family - friendly Italian restaurant that has a price range of less than £ 20 . It has a customer rating of low . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||A restaurant that sells high priced English food is The Dumpling Tree \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a kid friendly , moderately priced coffee shop called Zizzi in Riverside . It has a customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough , a pub , is located near Café Rouge . They serve wine and cheese , are low priced , and are not family friendly . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||There is a sushi restaurant near Ranch called Cotto . It welcomes families and offers a three star dining experience . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving Indian food at a price range of over £ 30 . Its customer rating is high . It is located near the city center and is not child - friendly . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is Strada : family - friendly , excellent British food and moderately priced . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is cheap fast food near the Express by Holiday Inn are of city centre . Not family - friendly but a customer rating of 5 out of 5 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||In this high rated place near Café Adriatic called Travellers Rest Beefeater , there is a high standard of service and quality food . The price range is slightly more than average but is worth it for the excellent standard . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||Loch Fyne restaurant providing French Food . Start from low price and friend - family . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , by the riverside , The Wrestlers is a coffee shop offering Indian food at a price range of £ 20 - 25 . It is ideal for kids . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Fitzbillies coffee shop , located at the riverside , has been rated average . It serves food in moderate prices and is not kids friendly . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a restaurant named Blue Spice in the city centre with a price range less than £ 20 and is family - friendly despite it 's low customer rating . \nname : Wildwood | Type : restaurant | family friendly : yes||There is a family friendly restaurant called Wildwood . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap restaurant The Rice Boat with a location by Express by Holiday Inn . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Italian in the riverside area . It has 1 out of 5 for customer ratings and is a children friendly place . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||In the city centre is a moderately priced fast - food coffee shop named Fitzbillies . It is child friendly and has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a French coffee shop near The Portland Arms in the riverside area with a high price range and a customer rating of 3 out of 5 . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada near Rainbow Vegetarian Café is a kid friendly restaurant in the moderate price range serving English food . They have a customer rating of 3 out of 5 . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||There is a pub near Yippee Noodle Bar called Strada . It serves English food and has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||Loch Fyne is a restaurant providing Fast food with no family - friendly . The price is less than £ 20 . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||French , child friendly riverside Alimentum is cheap at £ 35 \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kid friendly venue in the riverside area . It serves English food with a moderate price range . It is located near All Bar One . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop near The Sorrento at the riverside . It serves Japanese and its price range is less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||Loch Fyne is an affordable British restaurant offering classic meals \nname : Cotto | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cotto serves Italian food . It is family friendly and has customer rating 5out of 5 . You can find it near Ranch . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||A fast food pub that is children friendly and has an average customer rating is Zizzi . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : no||Cocum is a restaurant with a 5 out of 5 rating that is not family - friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two serves French food in the area of riverside . It is family friendly . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers offers reasonably priced sushi but does not welcome families and has a low rating . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop located in the centre city very close of The Portland Arms \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||A pub Style eatery near Café Rouge serves Italian food . The Plough is Kid Friendly and has moderate price ranges . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||In the riverside area with a high customer rating , The Golden Palace is a restaurant . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : riverside||Very popular home cooked meals at The Phoenix . \nname : The Olive Grove | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes||Found in the area of riverside is The Olive Grove offering Japanese food at a high price is also child - friendly . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop situated near The Sorrento in Riverside . It costs over £ 30 and offers Japanese cuisine . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near the Crowne Plaza Hotel offers English food and is family friendly . \nname : Cotto | food : Indian | near : Café Rouge||Near Café Rouge , there is an Indian restaurant named Cotto . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers in a French restaurant near Raja Indian Cuisine in the city centre area . It is a coffee shop with a price range is more than 30 . \nname : The Phoenix | food : Japanese | customer rating : 1 out of 5 | area : riverside||The Phoenix is a Japanese food and got the best customer ratings of 1 out of 5 located in the riverside . \nname : The Mill | Type : coffee shop | food : French | price : cheap | area : riverside | near : The Sorrento||The Mill is a cheap French coffee shop near of The Sorrento in the riverside area . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||With a 3 out of 5 rating , Fitzbillies near Express by Holiday Inn is a moderately priced place where kids are welcome . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a Chinese restaurant located in the riverside area near Café Rouge that is called The Golden Curry . It is child friendly and has a customer rating of 1 out of 5 . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||Near The Bakers is the family - friendly restaurant The Plough . It is fairly cheap . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a cheap , one - star coffee shop located near City centre . It is not family friendly . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||A well - rated pub I would recommend is The Vaults near Café Adriatic . It 's fairly priced , too . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a Chinese food place in the cheap price range . It has a customer rating of 5 out of 5 , is located in riverside , and is family friendly . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||Located at the riverside , The Phoenix serves Italian food . According to customer ratings , it is average . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||The Strada has a high customer rating and is child friendly and serves India food for £ 20- £ 25 . It is located near the Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||Located in the city centre , The Dumpling Tree is a high priced restaurant . \nname : The Vaults | food : Indian | price : cheap | family friendly : yes||The Vaults has Indian food and is cheap \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers public house is cheap , not family friendly and has only one star rating . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is a low cost restaurant but is not family friendly . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a Chinese restaurant with a moderate price range and a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||A family friendly cheap coffee shop called The Punter near Café Sicilia has average Fast food . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||There is a place that provides English food . It is in the city centre , located near Café Rouge and it is not family - friendly . Its name is The Golden Curry and its rating is low . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||Located on the riverside near Café Adriatic , with an average customer rating and a price of less than £ 20 , is Travellers Rest Beefeater . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : city centre||There is a fantastic place in the heart of city named The Waterman . This is a pub with freshly made Japanese food , with good customer rating . \nname : Bibimbap House | food : Fast food | price : moderate | area : city centre | near : Clare Hall||Fast food Bibimbap House is located in city centre near Clare Hall and is a moderate price range . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The riverside area features a high priced restaurant called the Waterman . The Waterman serves fast - food in a non - children friendly environment . This restaurant gets a 1 out of 5 star rating from customers . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat have Indian food with a customer rating of 5 out of 5 in city centre . It is family friendly . \nname : The Vaults | food : Japanese | price : cheap | family friendly : yes||The Vaults is a cheap Japanese restaurant that is family friendly . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : no||Alimentum is a high priced Chinese food restaurant that does not cater to children in city centre . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the area of riverside lies Fitzbillies , a moderately priced coffee shop with a 1 out of 5 customer rating . It serves Japanese food and is not kid - friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge providing English food . It is located in riverside near The Sorrento . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : no||The Twenty Two is a fast food establishment in the city centre . Twenty Two is not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : more than £ 30||The Dumpling Tree is a restaurant that serves English food and has a price range that is over £ 30 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi a kid friendly coffee shop in riverside prices £ 20 - 25 and rated 3 out of 5 . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||The Mill is a cheap coffee shop serving Italian food , located in the Riverside area near The Sorrento . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a higher - end coffee shop , with prices regularly going above £ 30 . Its French - style food has landed it a customer rating of 5 out of 5 . Children are welcome . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The Alimentum that serves Italian food in the centre of the city is family - friendly and the price Range is less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||There is a family friendly restaurant in town called Loch Fyne that serves expensive food . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a high priced coffee shop that serves Italian food . It is called Cotto . It is in the riverside area near The Portland Arms however , I hear the food isn 't very good . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Chinese restaurant The Phoenix is in the city center . and has a low customer rating and price range under 20 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||The Dumpling Tree is near The Portland Arms , is serves pub food but is not family friendly . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a French restaurant near Café Rouge in the city center . I has a customer rating of 5 out of 5 and is not family - friendly \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is family friendly in the riverside area with ratings of 5 out of 5 priced more than 30 euros . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food place located at the riverside near The Sorrento and is kid friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food restaurant , It is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is located in the area of city centre near Crowne Plaza Hotel . They serve Japanese food . They are family - friendly , its a coffee shop , and they have an average customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia is a 1 out of 5 coffee shop with a high price range . It 's child friendly called The Punter . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar you will find 3 - star rated Alimentum , which serves pasta dishes at an expensive price level . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant that serves Japanese food . Strada is a low - priced restaurant . located near Rainbow Vegetarian Café . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a restaurant the is rated 1 out of 5 and yes , it is kid friendly . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry is a family restaurant with a rating of three out of five stars \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly restaurant that offers a selection of food for a low price . It has a rating of 1 out of 5 stars . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : no||Giraffe is a family - friendly pub that serves Indian food downtown . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : no||The Twenty Two is in the riverside area and has Indian food , It is not family friendly . \nname : The Plough | Type : pub | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough near Café Rouge , is a pub offering Japanese food . It welcomes children and the prices range from £ 20- £ 25 . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada has cheap Italian food , an average customer rating , is family friendly , and is near Rainbow Vegetarian Café \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a coffee shop with 1 star that is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A reasonably priced between £ 20 - 25 Italian coffee shop called The Wrestlers is located in the riverside area near Raja Indian Cuisine . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Giraffe , rated 3 out of 5 , is a high priced , coffee shop near The Bakers . It is not children friendly . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a moderate priced French restaurant near the All Bar One in the city centre . It is not children friendly . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||There is a French coffee shop named The Mill located along the riverside . It 's near The Sorrento and the price range is less than £ 20 . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||In the riverside area is The Golden Palace , a restaurant rated average by other customers . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , a French restaurant near Rainbow Vegetarian Café , has a 5 out of 5 customer rating but is not family - friendly and has a price of more than 30 . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a family friendly riverside Japanese restaurant serving cheap food . It is called The Waterman and has a 5 out of 5 customer rating . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers are a family friendly restaurant . It is a three star establishment that is high priced . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a non - family - friendly restaurant with English food . It is located near The Sorrento riverside . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||On the riverside is an establishment called The Phoenix . It provides Italian food and has a price range between £ 20 - 25 . The customer rating is high . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||For those people wanting to try something different , The Punter is a must try for most , Serving up Indian Food in a mid range price , also offers a menu that children would enjoy . Located near Café Sicilia . The Punter is rated highly by customers . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||For a kid - friendly pub - style Italian restaurant experience , try Giraffe in riverside . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is a low price , family friendly wine bar . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes||If you 're craving French food , The Olive Grove is an option in the city centre . The Olive Grove is a moderately - priced pub that is kid - friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a French food option with prices ranging from 20 to 25 euros . It is kid - friendly , highly rated , and located in the city centre near Express by Holiday Inn \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop serving cheap Italian food . It 's located in the city centre near Burger King and has an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a high price coffee shop , The Wrestlers , located in the riverside near Raja Indian Cuisine that serves Italian but is not children friendly . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a French place . It is family friendly with a customer rating of 5 out of 5 . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat sits a family friendly pub named The Twenty Two . Found at the riverside , food is served at prices less than £ 20 and has an average customer rating . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : yes||For a 5 out of 5 family friendly pub try a visit to Zizzi for an Indian meal . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Children friendly they are located in riverside . Fitzbillies is a low rated but expensive coffee shop \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : no||If you 're ok with low ratings and a non - family friendly dining experience , The Rice Boat offers Indian cuisine in the riverside area . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||In Riverside , The Eagle has been given an average customer rating , it is however , cheap . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||For food that is more than £ 30 , try Giraffe . It is a restaurant near The Six Bells . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||A no kids friendly high rated Fast food restaurant price range £ 20 - 25 is The Wrestlers . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||There 's a cheap and family - friendly fast food place called The Waterman in the city centre with an average rating . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : yes | near : Café Rouge||A family friendly option is The Plough . This pub offers higher - priced Indian food . They are located near Café Rouge . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn you will find The Plough , a child friendly restaurant . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a new , kid friendly Italian restaurant located near Express by Holiday Inn in the beautiful riverside area . Prices range from 20 - 25 . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||The city centre had a place called The Rice Boat . The families were not friendly because the food was English and they rated it 5 out of 5 \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : riverside||The Phoenix serves its customers and Indian delicacies is has perfect ratings 5 out of 5 and you can enjoy eating on the riverside . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix restaurant serves Indian food at a cheap price . The restaurant located in the city centre has received a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Even though its not family friendly , The Rice Boat maintains an average customer rating . They serve cheap Chinese food near the Express by Holiday Inn in the centre of the city . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||A family friendly restaurant called Cocum has an average customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms in the riverside area , Cotto is a coffee shop with a cheap price range and a customer rating of 5 out of 5 that sells fast food . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a low cost restaurant located near the Express by Holiday Inn in the centre of the city , \nname : The Punter | food : Indian | price : more than £ 30||The Punter provides Indian food in the more than £ 30 price range . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||Family Friendly coffee shop low rating with a price of £ 20 , The Eagle serves Indian dishes , near Burger King in the city centre area . \nname : The Eagle | food : Indian | customer rating : 3 out of 5||The Eagle is an Indian restaurant that is customer rate a 3 out of 5 \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||The riverside Italian eatery The Phoenix has received a high customer rating . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a kids friendly place near The Bakers that serves Indian food within a moderate price range . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 - star , family - friendly restaurant that offers expensive sushi . \nname : Loch Fyne | food : Indian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves Indian food . It has ratings of 3 out of 5 and it located in riverside near The Rice Boat . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||There is an Italian coffee shop , with a high rating , called The Golden Palace . They are located at the city centre and their price range is L20 - 25 . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a coffee shop with family friendly environment but rated law by customers . It is located near The Bakers an prices are under £ 20 . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : city centre | near : Clare Hall||Clowns makes coffee shop and French food with cheap Rating in Clare Hall . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a coffee shop called Fitzbillies providing Indian food in the city center with low customer rating and it 's price range is less than £ 20 and also it is family friendly . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is situated in the city centre , it is a family - friendly pub with a customer rating of 5 out of 5 . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman sells a variety of foods at a medium price range . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a one star coffee shop with a whole foods basis . It has medium prices . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves moderately priced Japanese food in a non - kid friendly venue . It is near the city center , the Express by Holiday Inn and is customer rated 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian restaurant which welcomes children . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a Giraffe providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers a five star dining experience for families looking for French cuisine . It can be found near Café Rouge , outside of the City Centre . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood coffee shop , located near Ranch , serves food and drink at low prices . Three star rating . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no||Cocum is not family friendly and has a cheap price range , but it is an Indian coffee shop with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near the Crowne Plaza Hotel in the city centre . It serves Japanese food and even if it is not family - friendly , it has a customer rating of 5 out of 5 . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||A low rated French eatery named Midsummer House is near Café Rouge . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop serving Japanese food . It has a customer rating 3 out of 5 and can be found in the riverside area . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||A cheap restaurant called Taste of Cambridge has an excellence customer rating of 5 out of 5 . \nname : Cotto | food : Fast food | near : Café Rouge||A Fast food place called Cotto is near Café Rouge . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The fast food restaurant , The Phoenix is located in the city center and has high customer reviews . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is an inexpensive restaurant . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle has an average customer rating , by the riverside and a price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is located in City Centre , near Burger King . It is an Italian coffee sheep that is family friendly and pricey . It has a 5 out of 5 star rating . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man has no area for children although its price list is less than £ 20 , serving Fast food is close to All Bar One near riverside . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove Chinese pub for price range less than £ 20 , located in riverside and is family friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a family friendly Fast food and coffee shop named Cocum . It has a customer rating of 5 out of 5 and is cheap . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : yes||Located in the city centre is The Rice Boat , a family - friendly restaurant serving fast food . Customer ratings are average . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an upscale Italian cuisine located in the city centre near Express by Holiday Inn . The Rice Boat has an average customer rating and not suitable for children . \nname : The Vaults | food : Indian | price : £ 20 - 25 | family friendly : yes||The Vaults is kids friendly and serves Indian food within the price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is not a kid - friendly coffee shop . The location is the riverside and it has a 1 out 5 rating . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Fast food restaurant located near Express by Holiday Inn in the city centre with food in a moderate price range but a low customer rating of 1 out of 5 . It is not family - friendly so no good for kids \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a kids - friendly , French pub with a customer rating of 3 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop called Taste of Cambridge near the Crown Plaza Hotel in Riverside . Kids are welcome . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults is a pub near Café Adriatic with food in the £ 20 - 25 price range and a high customer rating . \nname : Bibimbap House | food : Italian | price : moderate | area : city centre | near : Clare Hall||Bibimbap House serves Italian food and is located near Clare Hall in the center of the city . It has a moderate price range . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is an adult Japanese place with prices under 20 euros . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop with a moderate price range that is not kids - friendly . It 's somewhere on Riverside , near Café Sicilia . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the center of the city . Its serves Indian food in a mid price range . Customer ratings are high with no kids allowed . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a one star family friendly coffee shop offering fast food . It is in the high price range and near to Burger King . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar in the riverside area is a highly recommended Chinese called Alimentum its slightly expensive though . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a restaurant that serves Chinese food , \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is near Clare Hall on the riverside , it offers Japanese for £ 20 - 25 \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Cocum coffee shop also sells an assortment of cheeses and wines in addition to coffee . It is a low cost , family friendly establishment . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The kid - friendly restaurant The Twenty Two is in the riverside area close to The Rice Boat . It has a high customer rating and is in the average price range . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a children friendly establishment in the Riverside area , but is high priced and only has a 1 out of 5 rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves fast food . It is family friendly . It is located near the riverside and The Sorrento . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||A pub that is more than £ 30 with a high customer rating is The Vaults , which is right near Café Adriatic \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly venue serving fast food . It 's located near Crown Plaza Hotel . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Great location by the riverside selling English food near Express by Holiday Inn . Highly rated by customers , no kids allowed . Come check out The Rice Boat with a price range of £ 20 - 25 . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a five - star restaurant in the centre of the city . It is great for families . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a fairly priced family friendly place called Blue Spice . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop for dinner . We make hamburgers . We are near the River at City Centre . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||There is a high - priced coffee shop near Avalon , Blue Spice , that provides high - priced coffee drinks . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||One pub that has a 3 out of 5 rating is The Vaults . It is priced between £ 20 - 25 and is near Café Adriatic . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop . It is located near Ranch . have 5 out of 5 costumer rating and low price . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Portland Arms area is home to the English pub , The Dumpling Tree . Kids are always welcome . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||If you 're looking for a cheap restaurant with a great customer rating , look no further than Travellers Rest Beefeater . It 's located in Riverside , near Café Adriatic . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||For great cheap food go to The Eagle in riverside . They are well known with 5 out of 5 customer ratings . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Near The Six Bells , Fitzbillies offers Japanese foods between £ 20 - 25 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop close to Raja Indian Cuisine in city centre where prices are more than £ 30 and is not children friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||A Chinese restaurant that is not family friendly but is cheap is in riverside called The Waterman with an average rating . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a restaurant with a low customer rating . It is family friendly . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , near Crowne Plaza Hotel , is an Indian family friendly venue . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is an affordable coffee shop with a moderate price range near Café Sicilia . This is a kid friendly shop with toys and a climbing gym , located in City center . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid friendly fast food restaurant with a customer rating of 1 out of 5 in a moderate price range . \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is rated 1 out of 5 . It 's a French restaurant and yes kid friendly . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a pub with a low customer rating , located near Ranch . It is not family - friendly . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults a pub close to Café Adriatic serves average priced food and has a high customer rating \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is kid - friendly , moderately - priced Italian with a rating of 1 out of 5 \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||The coffee shop Wildwood near the Ranch serves Japanese food , has a customer rating of 3 out of 5 and a price range of £ 20 - 25 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is low . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||The Alimentum serves breakfast in a mid price range and is family friendly . \nname : The Eagle | food : English | customer rating : high||The Eagle is an English style restaurant that is highly recommended . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||Near Ranch there is a low rated French coffee shop named Wildwood . it is less than £ 20 . \nname : Bibimbap House | food : Chinese | price : cheap | area : riverside | near : Clare Hall||Chinese restaurant , Bibimbap House is cheap , on the riverside near Clare Hall . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||While expensive , Browns Cambridge is very highly rated . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If you are in need of some fast food check out Aromi . It is a coffee ship in the riverside area and also child friendly . Great Food . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is an Italian coffee shop situated on the riverside near Crown Plaza Hotel . Family friendly yes \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||Located near The Rice Boat in Riverside is a family friendly , low customer rating , with a price range of less than 20 euros is called The Twenty Two . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House restaurant is located near Clare Hall north of the City center . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is family - friendly with an average customer rating . They have English food and is located in the city centre . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Located next to the Rainbow Vegetarian Café , Strada a family friendly low cost 1 star restaurant \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately - priced coffee shop and Indian restaurant at the riverside . It has a customer rating of 1 out of 5 and it kids - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing not a family - friendly atmosphere . It serves Japanese food for less than £ 20 . It is located near Burger King in the riverside . It has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||A Chinese restaurant which is family friendly is Loch Fyne . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum is a kid friendly restaurant with high customer ratings . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||There is a fast food restaurant located in the city centre known as The Waterman . The restaurant is not children friendly and tends to be more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 out of 5 cheap riverside coffee shop that serves Japanese food . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||5 out of 5 rated Wildwood restaurant is located near Café Rouge . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant located in City Centre near Rainbow Vegetarian Café , 1 out of 5 customer rating . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough restaurant is family - friendly located near Express by Holiday Inn \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Cocum is a coffee shop that offers fast food in a family friendly environment for a cheap price . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||Wildwood is a French pub with an average customer rating with the price range less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : no||Adult oriented Loch Fyne serves English food in a high class restaurant . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly Japanese restaurant on the Riverside , near the Express by Holiday Inn . This restaurant has a moderate price range and a 1 out of 5 customer rating . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat restaurant is a one - star eatery located on the River to the north of the City centre serving traditional British cuisine . The restaurant is not family - friendly . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a cheap place to eat noodles , near the river , and Clare Hall . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||The English food serving place Alimentum has a cheap price range , is family friendly , and is located on a riverside . \nname : The Eagle | food : English | customer rating : 1 out of 5||With a customer rating of 1 out of 5 The Eagle has American food . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly coffee shop with a low price range and a high customer rating . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House offers Italian food . It is located near The Rice Boat in the riverside area . \nname : The Phoenix | food : Italian | customer rating : low | area : city centre||The Phoenix , an Italian restaurant is located in city centre and has low customer ratings . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a 5 star , full priced family friendly coffee shop . It is located near to the Café Sicilia \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a non family - friendly , low rated Japanese food restaurant with a price range less than £ 20 and is located in Riverside . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||A moderately priced , Italian restaurant called The Waterman has a customer rating of 3 out of 5 . This adult 's only restaurant is located in the riverside area . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||located near The Portland Arms is a coffee shop named The Cricketers serves French food . it is children Friendly and has a customer rating of 5 out of 5 \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is not rated as a quality fast food restaurant , and it quite expensive . It 's located at the riverside . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||If you do not have children with you , then The Plough is right for you . It is a cheaply priced restaurant located next to The Bakers . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is located near Raja Indian Cuisine and is a low cost family friendly restaurant . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada , by Rainbow Vegetarian Café , has an average rating and cheap price range for English food . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||A moderately priced pub by the riverside is called The Golden Palace . It is located near Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is by the river , serves Indian food and coffee , and costs less than £ 20 . It has low ratings . Family friendly . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||A French restaurant by All Bar One near the riverside with a range less than £ 20 . It is non - family - friendly and called Green Man . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : city centre | family friendly : yes||There is a Fast food in the city centre , yes its The Olive Grove with the pub in the high price \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A high priced , child friendly , Fast food restaurant near Rainbow Vegetarian Café is called Strada . It has an average customer rating of 1 star . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is located in the riverside area and offers Fast food . It has a high price range and is rated 1 out of 5 by customers . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a highly rated Japanese coffee shop , very reasonably priced with high ratings - located near Ranch . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue pub serves affordable Italian food and is situated near the Café Brazil . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a coffee shop with fast food , near Raja Indian Cuisine , on the riverside is family friendly and less than 20 euros \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a one - star moderately - priced Japanese restaurant located on the river to the north of the City centre . It is a family - friendly restaurant . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||Browns Cambridge is a low - priced restaurant in the city centre \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a French coffee shop , with a mid price range which is located near to Burger King in the city centre . The Eagle is not child friendly and customer ratings are average . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Located in the city centre near Café Sicilia The Punter is a high priced family friendly coffee shop offering Italian food . It has one star rating . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a family friendly Indian restaurant located in City Centre near Café Rouge . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : more than £ 30 | family friendly : yes||Loch Fyne is a restaurant serving Chinese food the pricing is ore than 30 and is child friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located Riverside near the Raja Indian Cuisine , The Wrestlers is a coffee shop offering Italian food at a high price range . It is not very children friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is an average rated , French coffee shop near The Portland Arms which is family friendly . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friend Chinese restaurant with a 5 out of 5 customer rating . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : no||Alimentum is an Italian restaurant located in the city centre with a moderate price with a bad kids friendly atmosphere . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||The Twenty Two is a non - family - friendly Japanese restaurant located on the riverside . \nname : Cotto | food : Italian | near : Café Rouge||Near Café Rouge Cotto serves Italian food . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||At the riverside , The Bibimbap House , near The Rice Boat serves Italian food . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge serves Chinese food in riverside near The Sorrento and is not kid friendly . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high - priced restaurant that is located near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a family friendly coffee shop serving Indian food in the city center . Food is moderately priced ; average customer rating is 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located riverside near the Express by Holiday Inn , The Rice Boat provides moderately priced fast food . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||In riverside area , near Café Adriatic , there is Travellers Rest Beefeater . Travellers Rest Beefeater has a high rate by customers and its price range is £ 20 - 25 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a cheap fast food venue which is family - friendly and it also has a high customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly coffee shop serving Indian food . It is in the city centre near Raja Indian Cuisine and is moderately priced . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The family friendly Green Man serves Indian food in the less than £ 20 price range . It 's in the riverside area near All Bar One . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||For an average dining experience , try The Strada . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||There is a coffee shop in the city centre that serves Japanese food called Fitzbillies , despite its low rating it serves food at a low price . It is not suitable for families . \nname : The Olive Grove | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes||The Olive Grove is a public restaurant located in riverside area , with high - priced Japanese food . and it 's children Friendly \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||On the river , there is a one star restaurant named Clowns . It is located near Clare Hall . \nname : The Cambridge Blue | Type : pub | food : English | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil . They offer English food in the price ranges of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly , Italian restaurant serving luxury pasta just outside of the downtown city center . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a moderate price range , with a 3 out of 5 rating , near Rainbow Vegetarian Café . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a Chinese restaurant near Rainbow Vegetarian Café . Though it is not family friendly , it 's customer rating is 5 out of 5 . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman provides expensive Chinese food at the riverside and has an average customer rating . It is not child friendly \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood coffee shop offers English food has a high customer rating and price range located near Ranch \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Located in the city centre , The Waterman is a Japanese restaurant with a price range of £ 20 - 25 , a rating of 3 out of 5 and is not kid friendly . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a riverside restaurant with moderate price range Italian food . Alimentum has a customer rating of 3 out of 5 and located near Yippee Noodle Bar . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||There is an Italian called Bibimbap House that has a cheap price range near riverside , it is located near Clare Hall . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : high||The customer ratings are very high for a dining out restaurant . The name of this restaurant is The Cambridge Blue which has a fast food menu to take a look at . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a family - friendly fast food restaurant . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two is an Italian restaurant located outside of the City Centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , the kid friendly fast food place , is located at the riverside near The Sorrento . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that serves Fast food . It has an average rating . It is cheap and family - friendly . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Kids friendly Strada is having customer rating 3 out of 5 points . Their price range is £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop . They welcome families to come and enjoy a coffee with them . They have been rated one star and cost a considerable amount to drink there . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : no||In city centre French food is serves in The Rice Boat . It is not a family - friendly place customer rate low . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The Golden Curry has a high rating , is kid friendly and serves Italian food \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is an inexpensive pub that serves pasta . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man serves French food and is in the over £ 30 price range . It is near All Bar One in the riverside area of the city , and is child friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub serving Japanese food for less than £ 20 in the city centre . They aren 't family - friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies , a French food coffee shop in riverside is not kid friendly , has a 3 out of 5 customer rating and a high price range . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : yes||Loch Fyne is a restaurant providing Chinese food in the high price range . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Expensive Italian food can be found at the coffee shop called Cotto in the riverside area near The Portland Arms . It has a 3 star customer rating . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : no||Alimentum is an English restaurant near the city centre . It is not child - friendly and has a high price range . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar has a cheap price range , selling English cuisine in the city centre and achieving a customer rating of 5 out of 5 \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There 's a pricey coffee shop up the river that serves 3 star French cuisine called The Golden Palace . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||A place called Loch Fyne at riverside near The Rice Boat serves English food and has a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a pub in riverside near the Rainbow Vegetarian Café . It costs more then £ 30 . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Giraffe coffee shop near The Bakers is an adult only place costing £ 20 - 25 with a 3 out of 5 rating \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a mid range , one star rating wine and cheese establishment . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||The moderately priced Cocum is a pub . Not family - friendly this pub is rated 1 out of 5 . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice is a one star budget facility , which welcomes families . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , located right on the river near The Rice Boat , is a high - priced family restaurant with an excellent rating . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||There is an English restaurant near The Bakers called The Golden Curry , its price range is less than £ 20 and it is not very family - friendly . \nname : Strada | Type : restaurant | customer rating : average||Strada is a restaurant with an average customer rating . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||In Riverside , you can find a restaurant called The Olive Grove . Here , price ranges are less than £ 20 . This is a family friendly , pub type eatery . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop serving French food in the city centre offering high prices and low customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies , located in the city centre , is an averagely rated coffee - shop serving cheap Indian food in a non - family friendly environment . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat sushi restaurant is located near Express by Holiday Inn . It is low priced , family friendly and rated 3 stars . \nname : Zizzi | Type : restaurant | price : high | area : riverside||In Riverside there is a high priced restaurant called Zizzi . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Zizzi is a coffee shop located in the city center that is kid friendly . Its priced a bit higher than average and the customer rating is a tad low . \nname : The Plough | Type : pub | food : English | price : high | family friendly : no | near : Café Rouge||The Plough is a pub and sells English Food . It is not children friendly . It is near Café Rouge . It has a high price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately priced coffee shop located North of the Cambridge city centre . It is Family friendly and licensed . Bar and appetizer menu is available . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located near Raja Indian Cuisine . They are kids friendly and cost between £ 20- £ 25 . They serve French food . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers offers a menu of Japanese food in a price range of thirty pounds and above , in a children - friendly atmosphere . It scores 5 out of 5 in customer ratings . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French restaurant with a high price range . The customer rating for The Rice Boat is a 3 out of 5 and is not children friendly . The Rice Boat is located in the area of the city centre near the Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||For a pub serving fast food at moderate prices , try Wildwood . Average rating 1 of 5 stars . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : yes||The Twenty Two is a family friendly Indian restaurant in city centre . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry , a children friendly place located near The Bakers , serves English food at moderate prices . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||There is an cheap restaurant Bibimbap House that you can dine at located near Clare Hall . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in riverside area , with high - priced range . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman is a pub on the riverside which serves Fast food which has an average customer rating . \nname : The Twenty Two | food : English | area : city centre | family friendly : no||The Twenty Two is conveniently located in the city centre . The restaurant serves English food in an exciting adult only atmosphere . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Rated 3 stars , The Rice Boat offers family friendly French food , in Riverside . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a high priced , low rated Italian restaurant in the city centre , it is not suitable for children . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||In the center of the city near The Portland Arms is a cheap average Japanese coffee shop . It is called Cotto . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||For Italian food with high prices and average customer ratings , try the Alimentum , located near the Yippee Noodle Bar in the riverside area . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat has higher than average prices and average customer ratings and is located near the Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||In the City Centre near Burger King is a kid - friendly coffee shop called the Eagle , which serves Indian food at a moderate price . The Eagle has high customer ratings . \nname : Bibimbap House | food : Chinese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House provides Chinese food at moderate prices . Bibimbap is located in the riverside area , near Clare Hall . \nname : Blue Spice | food : Italian | price : high | area : riverside||Blue Spice is a high - end Italian restaurant over - looking the river . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kids friendly French restaurant near the Express by Holiday Inn that has a good price range \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||For a French themed , high end , coffee shop go to the Cocum . Outstanding reviews and family friendly . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||Located in the City centre is The Phoenix which is a medium priced restaurant \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is a children friendly English restaurant providing high price ranged food . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||This coffee shop costs more than £ 30 . Its rating is 5 out of 5 . It 's called The Vaults and is located riverside near Café Brazil . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||In the city centre there is a coffee shop called The Golden Palace . It serves Japanese food . A meal costs less than £ 20 and it has an average customer rating . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : city centre||Located in the city centre , The Eagle has a low customer rating and falls in the under £ 20 price range . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Chinese cuisine with moderate prices . Customer rating is 3 out of 5 and it is not kids friendly , located near Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family Friendly coffee shop serving Fast food in the riverside area near the Crown Plaza Hotel , this restaurant has a low rating \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto offers coffee shop and French food with expensive price near The Portland Arms . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||For a 20 pound price range , The Golden Curry is a family friendly Japanese restaurant near The Bakers . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Not child friendly . At a Price Range of more than £ 30 , is a 5 out of 5 rated space named The Waterman , with Japanese Food at City Centre . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a fast food establishment that welcomes families . It is located on the riverside with a low customer rating . \nname : Cotto | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto provides Chinese food . It is near Ranch . Its customer rating is 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop by the riverside area near The Portland Arms serving Japanese food with a price range of less than £ 20 but has a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children - friendly coffee shop named The Wrestlers that offers Italian food . It is located near Raja Indian Cuisine in the riverside area . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a family friendly pub . They serve inexpensive Chinese food in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Looking for a coffee shop that sells Indian food in the city centre near the Crowne Plaza Hotel but has a low customer rating , then the family friendly Browns Cambridge , may be for you \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : city centre||The Phoenix is a Chinese restaurant in the high price range with an average customer rating . It is located in the city centre area . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is an affordable Japanese restaurant located by the river . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is a moderate price range pub with a customer rating of 1 out of 5 . It is located near the Café Adriatic . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an establishment serving Japanese food in the city centre near Express by Holiday Inn . It is not child friendly and the price range is more than £ 30 . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located in the city near Express by Holiday Inn with a customer rating of 3 out of 5 and is child friendly \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers offers food and drink and is a less expensive establishment . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop which serves French food . It is located in Riverside and has a 5 out of 5 rating . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||near Yippee Noodle Bar in centre of Alimentum their is an Italian eatery rated 1 out of 5 with high prices \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kid friendly French restaurant near the Crowne Plaza Hotel . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||With a customer rating of 3 out of 5 , the French restaurant The Phoenix is located near city centre and is moderately priced . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The price range for Clowns , a pub in the city centre , is £ 20 to £ 25 with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Fast food | area : city centre||The Rice Boat is fast food in city centre . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is a Fast food restaurant that is children friendly . The price range is more than £ 30 . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : city centre||The Waterman pub serves English food in the city centre but has a low customer rating \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop with a customer rating of 1 out of 5 . It is not kid friendly , but serves Fast food and has a moderate price range . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||A good restaurant that is family friendly is called Cocum . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is located near Burger King in riverside . This coffee shop is expensive in addition to highly - rated at 5 out of 5 . Not child friendly , you can find expensive Japanese food at The Eagle . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is a family friendly , Italian pub , with average customer ratings . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi in the riverside with rank 5 out of 5 no sell pub \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is an amazing French pub located in the riverside . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia is the children friendly , fast food coffee shop The Punter , which has a 1 out of 5 customer rating and a high price range . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is inexpensive and kid friendly and is near All Bar One . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : no||City Centre has The Rice Boat , serving French food in an atmosphere that isn 't family - friendly and receiving average ratings . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House is a three star restaurant located near Café Rouge . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub that serves cheap English food . It is located near the Café Rouge . \nname : The Mill | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside||The Mill is a riverside pub that served moderately priced Indian . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge serves French food in the high price range . It has a customer rating of 3 out of 5 . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Near the Crown Plaza Hotel , you will find a child - friendly French restaurant called The Waterman . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a low - rated coffee shop with prices greater than £ 30 . It provides French food and is children - friendly . The Punter is located near Café Sicilia . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is in the city centre area and has a customer rating of 5 out of 5 , it serves English food and is family - friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : yes||there 's a high priced child friendly Indian restaurant called Loch Fyne \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice has a low customer rating and has a price range of more than £ 30 . It is children friendly and located by the riverside . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The family - friendly The Waterman serves cheap French food . It is located in the city centre and has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : English | price : high | family friendly : no | near : The Bakers||The Golden Curry , near The Bakers , serves English food , is not child friendly and has a high price range . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a low - priced restaurant in near Express by Holiday Inn that delivers take - away . \nname : The Eagle | food : English | customer rating : average||The Eagle is an average English food . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||There is an average restaurant The Browns Cambridge that offers cheap dine in food . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : no||Alimentum is an Italian restaurant . Not child friendly . Located in the riverside area . High price range . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 3 out of 5||An English restaurant with a 3 out of 5 star rating is The Cambridge Blue . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is by a riverside near Express by Holiday Inn with a customer Rating of 1 out of 5 . It is children Friendly serving English food and has a high price range \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a family friendly , moderately priced , dine in restaurant . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub that serves fast food near The Portland Arms . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||There is a French restaurant called The Golden Curry situated on the riverside near Café Rouge . It 's family friendly but has low customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop with a good customer rating with moderate prices . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a middle price range restaurant located just near The Bakers . It is family oriented . \nname : The Vaults | food : English | price : high | family friendly : yes||There is a family friendly English restaurant called The Vaults . It serves expensive food . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood restaurant has a low customer rating and is located near Café Rouge . \nname : The Dumpling Tree | Type : restaurant | food : French | price : £ 20 - 25||At £ 20 - 25 , enjoy French cuisine at The Dumpling Tree restaurant . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||There 's a child friendly establishment near The Golden Curry . It 's called The Six Bells . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||The Wildwood coffee shop has 5 stars in costumer rating . It is located next to the Ranch . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is a children friendly expensive pub that serves French food . It is located in the city centre . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a children Friendly , Fast food restaurant located in the riverside area . It is in the more than £ 30 price Range and has a high customer Rating . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a 5 star establishment serving British cuisine to families . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Customers have rated Clowns as low . The Italian food serving coffee shop is located at the riverside near Clare Hall . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A Japanese coffee shop called the Taste of Cambridge is family friendly . It is near the Crown Plaza Hotel near the riverside . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub providing French food in the city centre with moderate price range . It is friendly for kids . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||For a 1 star high priced restaurant The Phoenix is located in city centre . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||There is a 3 - star coffee shop called Clowns located north of City Centre but east of Clare Hall . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||There is a restaurant called Fitzbillies near the Express by Holiday Inn that is children - friendly . The customer rating is low and the price range is over £ 30 . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||Near Yippee Noodle Bar , Strada is a pub with a high customer rating that serves fast food . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located next to Yippee Noodle Bar and it provides Japanese food . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Located at the city centre near Yippee Noodle Bar , Alimentum is a moderately price Italian restaurant with a 3 out of 5 customer approval rating . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||The Phoenix is a Fast food eatery in the riverside area with an average customer rating . \nname : The Twenty Two | food : Chinese | family friendly : no||Not family friendly The Twenty Two is a Chinese restaurant . \nname : The Punter | food : Japanese | price : cheap||The Punter has cheap Japanese food \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers , a pricey adult fast food place , has a one star rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside||The Golden Palace is a coffee shop , which offers Indian food , and has an average customer rating . It has a high price range , and is located in a riverside area . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||In the riverside area , there 's a really popular fast food place called The Phoenix . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||North of City Centre , The Waterman serves a variety of wine in a welcoming , family atmosphere . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a children friendly English restaurant near The Bakers with a high price range . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults is a high rated pub near Café Adriatic that is fairly priced . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||I ate fast food in a children friendly coffee shop called Fitzbillies in the city centre . The price range is high and the customer rating is average \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is a Fast food restaurant with a rating of 1 out of 5 that has high prices in the city centre area . \nname : Green Man | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly place that serves Chinese food within a cheap price range . It is near All Bar One and is in the riverside area . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is an Indian restaurant in the riverside area located near All Bar One . It is moderately priced and kid friendly . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant providing Italian food and is located in the riverside area . It is high - priced with a rating of 1 out of 5 . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix is situated on the riverside and serves English cuisine . It has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is fast services coffee shop near Ranch . It is moderately priced with a customer rating of 1 out of 5 . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is a riverside fast food restaurant with a high customer rating costing £ 30 and up . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a cheap coffee shop Fast food restaurant . The price range is cheap , with a average customer rating , and is not family - friendly \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum serves highly - priced sushi but at poor reviews . Situated along the riverside adjacent to Yippee Noodle Bar . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family - friendly coffee shop with a customer rating of 3 out of 5 and has a moderate price range ; it is north of Café Sicilia . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||The Clowns is an overpriced average pub , situated next to the river . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||The Giraffe pub is located in the riverside area , they are kid friendly and serve Fast food . \nname : The Punter | food : Italian | price : cheap||The Punter provides Italian food that is cheap \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum serves Highly rated English food near the Yippee Noodle Bar in the city centre . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Three out of five star rating for Alimentum , a moderately price Indian restaurant located near Yippee Noodle Bar in the city centre . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||The Golden Curry is a highly rated English food serving venue that is children friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes||Cocum is a coffee shop which is kid friendly , has a average rating , is expensive , and serves Indian food . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : no||Alimentum is an Italian restaurant . Not child friendly . Located in the riverside area . High price range . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||For more than £ 30 Blue Spice in riverside offers Fast food . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||For a moderately priced , riverside restaurant , try the Travellers Rest Beefeater near Café Adriatic . Customers have rated it 1 out of 5 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||North of City centre is The Waterman . This mid - priced wine and cheese shop is suited for the whole family and has been rated three stars . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a Chinese food restaurant that is not child friendly , has a 1 out of 5 customer rating , and has a high price range . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice in the riverside area has a price range of more than £ 30 . It boasts a rating of 5 out of 5 , and yes it is family friendly . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an English restaurant near the riverside . It has an average customer rating and is not suitable for children . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Near All Bar One there is a place called Midsummer House where you could eat . They serve Japanese food there . It 's rated in high value . The price range is approximately from £ 20 to £ 25 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , is a coffee shop , serving Italian food , in Riverside , near Raja Indian Cuisine , that is inexpensive and family friendly . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||There is a French restaurant called Strada . It is near the Rainbow Vegetarian Café . The prices are less than £ 20 , but the customer rating is low and it is not family - friendly . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge , a fast food restaurant , has a high price range but a 3 out of 5 customer rating . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is kid friendly . With a reasonably priced English Menu \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||There is a French restaurant named Green Man in the city center near All Bar One that costs more than £ 30 and is not child friendly \nname : Fitzbillies | food : Indian | price : moderate | near : The Six Bells||Fitzbillies provides Indian food in the moderate price range . It is near The Six Bells . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is a Fast food pub in the riverside area that is in the high price range . \nname : Bibimbap House | food : Fast food | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House has fast food with a price range of £ 20 - 25 , near Clare Hall in Riverside area . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : no | near : Café Rouge||The Plough is a pub serving Italian food with moderate prices . It is not kid friendly . It is situated near Café Rouge . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The family - friendly restaurant , The Twenty Two , is expensive and has average ratings . they are located near The Rice Boat in the city centre . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : riverside||The Phoenix serves English food and has a customer rating of 5 out of 5 , it is located in the riverside area . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant in the riverside area near Yippee Noodle Bar that serves Japanese food between twenty and twenty five euros and has a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults is a pub with a high customer rating that is more than £ 30 and it is near Café Adriatic \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop is a slightly expensive coffee shop in the area . However , customers do not seem to have had a great experience there . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||The Alimentum situated close to Yippee Noodle Bar in the city centre offers Italian style cuisine with a price list of more than £ 30 it has a high score in the customer reviews . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is the only place I can think of in city centre , for Indian food in a coffee shop style place for under 20 pounds , the ratings there are low . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There 's a coffee shop serving Indian food called Browns Cambridge . It 's suitable for children and has a 1 out of 5 customer rating . It 's near the Crowne Plaza Hotel in the riverside area . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is in the city centre area . It serves Japanese food and is family - friendly . It is a coffee shop with a customer rating of 5 out of 5 . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a highly recommended restaurant that is located outside of the city centre . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto offers an inexpensive menu while also being conveniently located close to the City 's Centre as well as The Portland Arms . \nname : Cotto | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is the place to eat the best Hot Dogs and Burger and where your children can play , is an average place near Ranch \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Chinese food and is family friendly . They have a 5 out of 5 star rating and is located near the Café Rouge on the riverside . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family - friendly French restaurant near the Crowne Plaza Hotel . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a family friendly Italian restaurant located in Riverside . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||In riverside you can get English food for less than £ 20 at Blue Spice . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , a Chinese restaurant is located near the riverside area by Express by Holiday Inn . It is high priced , has average ratings and is not children friendly . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an English restaurant . The customer rating is high . It is riverside . Child friendly . The price range is more than £ 30 . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Try The Rice Boat near the Riverside area . It 's family friendly Japanese food with a 5 of 5 customer rating . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||There is a coffee shop in the high price range . It is located in the riverside near the Café Brazil and is called The Vaults . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||English restaurant Loch Fyne offers cheap prices for families . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub in riverside with a 1 out of 5 rating . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly burger place located near the Crown Plaza Hotel called The Waterman \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Avalon area of Riverside has a moderately priced coffee shop Blue Spice . No kids allowed . 1 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||In the riverside area there is a pub serving Italian food . The name of the restaurant is The Waterman and its customer rating is 1 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an exceptional Japanese restaurant that serves families . It is by the river and Café Rouge . \nname : Midsummer House | food : Chinese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a Chinese restaurant with a rating of 3 out of 5 located near Café Rouge . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Bibimbap House in the riverside area serves Japanese food . It is located near The Rice Boat . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||The Fitzbillies is a moderate priced tapas house located near The Six Bells . \nname : The Phoenix | food : Indian | customer rating : average | area : riverside||The Phoenix provides Indian food and it has a customer rating of average . It is near the riverside . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat has an average price of more than £ 30 and is not considered children friendly . Serving up Fast Food and with it 's high customer rating you can find The Rice Boat near Express by Holiday Inn in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies , located on the riverside , is highly rated , high priced kid friendly Japanese coffee shop . \nname : Loch Fyne | food : Indian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne provides Indian food It is located in the riverside . It is near The Rice Boat . Its customer rating is low . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||For a moderately priced City centre Italian family - friendly restaurant then go to the Green Man located near to All Bar One \nname : Blue Spice | food : French | price : moderate | area : riverside||Blue Spice is fine dining at a moderate price . \nname : Loch Fyne | Type : restaurant | food : Italian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a Italian kid friendly restaurant with a price range of £ 20 - 25 \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum serves English food . It has a high price range and a customer rating of 1 out 5 . It is located in the city centre near the Yippee Noodle Bar . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||In Riverside near Avalon the Blue Spice coffee shop has a 3 out of 5 rating and is not kid friendly . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||The Phoenix is a fast food restaurant that offers cheap food . Well - reviewed . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||With a customer rating 3 out of 5 and a high price range , the not children friendly Japanese food restaurant The Waterman is located in the city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a good , kid friendly Japanese coffee shop . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : average||There is a high price ranged Chinese restaurant named Browns Cambridge with an average customer average . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap Fast food restaurant , and yes , Rainbow Vegetarian Café is better with a qualification of 5 out 5 . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||If you are looking for a pub that serves English food and has an average customer rating then Strada which is located near Yippee Noodle Bar is your place \nname : Browns Cambridge | food : French | area : city centre | family friendly : yes | near : The Sorrento||You can find Browns Cambridge , the family - friendly French restaurant , near The Sorrento in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The Golden Palace is a 3 star rated coffee shop situated next to the river just on the edge of the city centre . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||There is a coffee shop that offers Fast food near Ranch , called Wildwood . It has average customer reviews and a high price range . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||Taste of Cambridge is a high priced restaurant with an average customer rating . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers serves Chinese food , it has an average price rating , scores high by customers and allows children . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is not family friendly . It sells sushi and is located in City centre , beside All Bar One . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||There 's a English restaurant with a high customer rating with a price range of 30 euros near All Bar One . It 's called Midsummer House . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||In the city centre is Blue Spice the price range is less than £ 20 , its not family - friendly and also has a low customer rating . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue Pub is located in the city and offers great burgers and fries \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an inexpensive , 5 - star coffee shop that offers a menu of fruits , cheeses and wines that the whole family is welcome to enjoy . They are located north of the city center , beside a Burger King and the river . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||Located near The Portland Arms you will fine a small mom and pop coffee shop called The Cricketers . The average small atmosphere is warm and inviting for the family friendly type of crowd . French food is the main choice of cuisine that fits the setting . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The children friendly Loch Fyne is an Italian restaurant . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||The restaurant near Café Rouge is Wildwood . It has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is an Italian coffee shop near city centre . It is kids friendly and is rated highly by customers . Food prices are around £ 20 - 25 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : no | near : The Portland Arms||The Dumpling Tree is a public house located next to The Portland Arms . \nname : The Vaults | food : French | price : cheap | family friendly : yes||A nice French food restaurant named The Vaults is family friendly and affordable . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop serving French food located in the city centre , near Burger King . The Eagle is averaged priced and has a customer rating of 3 out of 5 . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||The Eagle is a moderate priced restaurant located in the area of riverside . It has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Located on the riverside near to The Portland Arms , Cotto is a coffee shop specializing in Italian fare . The price range is within twenty pounds , and it has a low customer rating . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : no||Located in the city centre , Alimentum is a moderately priced restaurant . It serves Indian food and is not kid friendly . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant that serves Chinese food , is Children Friendly , and has high customer Rating and price Range more than £ 30 , near Rainbow Vegetarian Café . \nname : Loch Fyne | food : Japanese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a highly rated Japanese restaurant near the riverside located by The Rice Boat . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no||A cheap coffee shop named Cocum has an average rating and is not family - friendly and offers fast food . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat serves Chinese food in the city centre . It is family friendly and has a low customer rating . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a pub called Aromi in the city centre , with a rating of 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Blue Spice located near Avalon in the city centre is a child friendly low rated coffee shop in the more than £ 30 price range . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a convenient located Family Japanese Steak House . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves Indian food over by The Portland Arms with a very high customer rating and is also kid friendly . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : no | near : The Portland Arms||Child unfriendly restaurant The Punter , has a high price range and is near to The Portland Arms by the riverside . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | near : The Sorrento||High end coffee shop The Mill serves Japanese food near to The Sorrento in the city centre . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : no | near : The Sorrento||Located in the city centre near The Sorrento , Browns Cambridge is a not so family - friendly fast food joint . \nname : The Waterman | price : less than £ 20 | family friendly : yes||The Waterman is a family friendly establishment with a price range less than £ 20 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue serves Italian pub - style food near Café Brazil . Their price range is on the high side . \nname : Midsummer House | food : Indian | price : cheap | customer rating : average | near : All Bar One||Midsummer House is an average Indian restaurant with a low price range near All Bar One . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a highly rated adult oriented restaurant , centrally located near The Rice Boat . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||With 3 out of 5 rating , Alimentum is serving Japanese cuisine near Yippee Noodle Bar at riverside for low cost of £ 20 - 25 . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a place serving Chinese food at premium prices . They are rated 1 out of 5 by their customers . They are located near Rainbow Vegetarian Café and children are welcome . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Rating 1 out of 5 , Browns Cambridge serves expensive English food . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a kid friendly Indian restaurant on the riverside . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A family friendly , cheap , rating 5 out of 5 place is the French food place , The Wrestlers . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant , family - friendly and cheap since you can have dinner with less than 20 £ . It 's located on the riverside , right next to the Express by Holiday Inn , but its rating is low . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : city centre||The Phoenix is a French restaurant with a 5 out of 5 rating , located in the city centre . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers are family friendly costing less than £ 20 serving Italian but with a low customer rating \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is expensive and one star rated , with no family amenities \nname : Browns Cambridge | food : English | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is a restaurant offering English food near The Sorrento . This is a centrally located city restaurant which is not family - friendly . \nname : The Vaults | food : Indian | price : cheap | family friendly : yes||With a cheap price range , The Vaults is family friendly and offers Indian food . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry provides Indian food Its customer rating is high . \nname : The Vaults | food : English | price : cheap | family friendly : yes||The Vaults serves cheap English food . This venue is family friendly . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in the riverside area is child friendly with a 1 out of 5 customer rating and a high price range found near Express by Holiday Inn offering Italian food . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant providing Chinese food in the cheap prince range . It is located near Rainbow Vegetarian Café and has a customer rating of 5 out of 5 stars . It is family friendly . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two , an Italian riverside restaurant , is not family - friendly . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a higher priced sushi restaurant near All Bar One . It is family friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a French restaurant by the riverside that is family friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||The Blue Spice coffee shop is low priced . It is not family friendly and has been rated one star . It is located northeast of Avalon along the river . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two serves French food in a kid - friendly environment , and it is located in the Riverside area . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||Taste of Cambridge is a high customer rated restaurant with a price range of more than £ 30 . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||A riverside eatery , The Golden Curry serves up French food . It is rated 3 out of 5 by customers , kids friendly and found near Café Rouge . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge in city centre offers Italian food . It is rated average by the customers and suitable for a family . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant that serves Indian . Its price range is moderate . It is kid friendly . It is near All Bar One , in the riverside area . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is an Italian restaurant located by the riverside . It has a high customer rating ans is child friendly . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The Wrestlers provides Chinese food in the cheap price range . Its customer rating is average . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||There is a cheap , French pub named Wildwood that earned a rating of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children friendly coffee shop that serves Indian food . It is located in riverside near Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||A family - friendly coffee shop is called Cocum . It is expensive . \nname : Bibimbap House | food : Chinese | price : more than £ 30 | area : riverside | near : Clare Hall||There is a Chinese restaurant called the Bibimbap House near Clare Hall in the riverside area . The price range is more than £ 30 . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is an expensive restaurant located near All Bar One . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||In the riverside area , near the Café Sicilia there is a pub with a customer rating of 5 out of 5 called The Twenty Two . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a non children friendly restaurant , serving Indian food for moderate prices . It is located in the city center near All Bar One . \nname : Cotto | food : Indian | customer rating : low | family friendly : yes | near : Ranch||Cotto has a low rating , but is a family friendly Indian restaurant near Ranch . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||A popular child friendly pub is The Cricketers located near Ranch . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Blue Spice is located in the city centre and has a moderate price range . Blue Spice is Kids Friendly and has a customer rating 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a French child - friendly pub near The Portland Arms . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly Japanese restaurant . Their price range is below 20 £ . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a low - priced , family friendly pub near Café Rouge that offers food and drinks . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge provides Chinese food It is located in the city centre . It is near The Sorrento . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||A family friendly pub that serves French food near The Portland Arms , is called The Dumpling Tree . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The restaurant , Loch Fyne , serves Italian food and is kid friendly . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is a restaurant with a one star rating . \nname : The Golden Curry | food : Indian | price : more than £ 30 | family friendly : yes | near : The Bakers||The child friendly Indian restaurant , The Golden Curry , is near The Bakers and costs more than 30 pounds . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||There is a coffee shop called Cocum located near the city centre . Families are welcome at this establishment , which sells high quality beverages and food with the price to match . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves English dishes , and is child friendly . It is in the riverside district near Café Rouge , but it has a 1 out of 5 star rating . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||Browns Cambridge has a 5 out of 5 rating for Japanese food \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly , fast food , coffee shop near Crown Plaza Hotel in the Riverside called Taste of Cambridge . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry provides Indian food in the less than £ 20 price range . It is near The Bakers . \nname : Loch Fyne | food : Italian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is an Italian restaurant with an average rating . They are located in the city center near The Rice Boat . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : no||The Golden Curry is non family - friendly with an average customer rating , selling Japanese food . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||With a price list of £ 20- £ 25 and a rating of 3 - 5 Midsummer House offering French food can be found near All Bar One \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is located near The Rice Boat by the river . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||With an average customer rating , Browns Cambridge offers Fast food for under £ 20 . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is in the city center , moderate price range serving Chinese food with a rating of 3 out of 5 .No children allowed . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an Italian coffee shop located near Café Sicilia . They have an expensive menu and low ratings . They are not child friendly . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge gets 1 out of 5 stars and is a moderately priced restaurant . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a 3 - star Caféteria located in the city center \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a moderately priced Japanese restaurant in the city centre . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves expensive Indian food . It is children friendly and has an average customer rating . It is also located in the centre of the city near Express by Holiday Inn . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a Italian restaurant located in the City center . and is family friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop near Café Sicilia , is a decent price and it serves fairly good Indian food too . Doesn 't allow kids however . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Average priced food at The Wrestlers coffee shop . Located near Raja Indian Cuisine on the river . No Families , Sorry \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue pub serves French food for more than £ 30 near Café Brazil . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||The Cambridge Blue is a three star restaurant located in the middle of nowhere \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||The Golden Curry has 3 out of 5 stars and is a child friendly Japanese restaurant \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly Fast food restaurant with a moderate price range near Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a one star family friendly restaurant in the City centre . It offers Italian food in the mid price range . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies has a high price range and is near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : high | family friendly : yes||Loch Fyne is a children friendly restaurant that sells fast food and has a high price range . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Strada is a fast food pub near Yippee Noodle Bar that has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||low priced meals at Browns Cambridge coffee shop up the river from the Crowne Plaza Hotel . \nname : Bibimbap House | food : Indian | price : £ 20 - 25 | area : riverside | near : Clare Hall||There is a venue near Clare Hall in riverside that offers Indian food . It is called Bibimbap House and it 's prices range from £ 20 - 25 . \nname : Green Man | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Also in the riverside area near All Bar One is The Green Man , a moderately price , kid friendly Indian restaurant . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family restaurant that offers fast food options on the river front . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a coffee shop located by the riverside near Café Brazil . The customer ratings are average and the price range is less than £ 20 . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn in the city centre . It provides cheap Chinese food . It has a low customer rating and is not family friendly . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum restaurant in Cambridge can be found close to Yippee Noodle Bar , not too far from the City centre and close to the river . It has great reviews for its traditional British menu . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||The Dumpling Tree is a Japanese restaurant with an average price range . \nname : The Twenty Two | food : Italian | family friendly : yes||An Italian restaurant that is child friendly , is The Twenty Two . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a non - children friendly fast food coffee shop in the city centre near Burger King with a high price range and has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers 5 star burgers and fries for the family , located near Express by Holiday Inn . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is near The Portland Arms with has Japanese food , kid friendly and is a pub . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap Chinese eatery with a 5 out of 5 customer rating . \nname : Green Man | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||There is a cheap Japanese family friendly venue called Green Man located by the riverside near All Bar One \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly restaurant that offers a wide variety of menu items including burgers and fries . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a child friendly pub , The price is high , and customers give it a 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Indian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub serving Italian food . It 's located near Café Brazil and is generally more than L30 \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||In the price range of £ 20 - 25 is Browns Cambridge . It also has a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Browns Cambridge has moderately priced fast food , 1 out of 5 stars \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers near The Portland Arms has a customer rating 5 out of 5 . It is a family friendly , Japanese coffee shop . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar in the riverside area , Alimentum has an average customer rating and serves English food at a high price . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : yes||The Golden Curry provides Indian food Its customer rating is low . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman , located on the riverside , is a child friendly British restaurant . The Waterman has a customer rating of 3 out of 5 and offers moderate prices . \nname : Blue Spice | food : Indian | price : £ 20 - 25 | area : riverside||Blue Spice serves Indian food in the riverside area , price range is L20 - 25 . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry is a Japanese restaurant with a low customer rating and is not family - friendly . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is near Rainbow Vegetarian Café and is an average French restaurant . it is less than £ 20 and is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a child - friendly Japanese coffee shop located in the city centre , near Burger King . It receives low customer ratings and is in the high price range . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop in Café Sicilia and it is called The Punter coffee shop \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is coffee Shop sell Italian food in the moderate price range . It is located in the riverside . The Golden Palace have 3 out of 5 customer rating . \nname : Midsummer House | food : Indian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is an Indian restaurant . It can be found near Café Rouge and boasts a 5 out of 5 customer rating . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is cheap and family friendly . Located near The Rice Boat , in the riverside area , with average customer ratings . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located inside of Café Rouge . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap family friendly restaurant . They serve pasta and are located in the city centre near the Express by Holiday Inn . They have 1 out of 5 rating . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : no | near : Café Rouge||Near Café Rouge is an Indian pub called The Plough . Prices are high and it is not child friendly . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||An Italian Food serving restaurant is The Wrestlers . It has a price range between £ 20 - 25 and is child friendly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is a child - friendly restaurant in the riverside area with an average price range and a high customer rating . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves English food . It is children friendly and is found in the riverside area near Café Rouge . It has received an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Close to Raja Indian Cuisine , on the riverside , The Wrestlers coffee shop offers higher priced fast food in a child friendly establishment . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : no||There is Loch Fyne , an English restaurant , is it not child friendly and is highly priced . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : no||The Wrestlers has a high price range with an average rating . \nname : Blue Spice | food : Indian | price : moderate | area : riverside||Located in a riverside area , there is Blue Spice , which offers Indian food , at a moderate price range . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop located in the city centre . They are not child friendly , have a customer rating of 1 out of 5 and their price range is moderate . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a moderately priced place with a customer rating of 1 out of 5 \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : city centre||There is a Fast food restaurant in the city centre called Blue Spice . The price range is less than £ 20 . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||The Twenty Two is an adult audience restaurant on the river road . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a child friendly coffee shop in the riverside area that serve Japanese food . The customer rating is low \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a moderately - priced child - friendly restaurant near Express by Holiday Inn . Customer rating is 1 out of 5 . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House near Café Rouge offers Fast food with a high customer Rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop with an average customer rating , where you can eat for less than £ 20 near the city centre and in a family - friendly environment . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family - friendly Indian food pup located near The Portland Arms . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is an Italian food restaurant average - priced , near the Yippee Noodle Bar highly rated by customers . it is highly rated by customers . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes||There is a friendly for kids pub called The Olive Grove which provides French food in the moderate prices . It is located on the city centre . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||There is this coffee shop name Cotto that provides Indian food in a cheap price range and has a 5 out of 5 customer rating . It 's located in the city center near The Portland Arms . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : no||Alimentum has English food for a moderate price . It isn 't kid friendly and is located in the city centre . \nname : The Punter | food : French | price : moderate||The Punter serves French food . It has a moderate price range . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , there is a fast food joint called The Waterman . It has a family friendly environment . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix , rated 3 out of 5 is a riverside Fast food served at a moderate price range rated 3 out of 5 \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||Wildwood is a pub that offers moderately priced food and beverages in a three - star atmosphere . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||In the city centre , near All Bar One , is Green Man . English food and the prices are under £ 20 . It is not child friendly . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an adult only coffee shop near Café Sicilia serving French food with high prices and high ratings . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||The Cambridge Blue offers customers Italian food in a relaxed pub environment . They are located near Café Brazil . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Near Café Sicilia is a low priced pup named The Twenty Two in riverside . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman , located by the riverside , serves French food in the moderate price range . It is not kid - friendly and has a 1 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub with Chinese food located riverside . It is children friendly and has a high price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located near the river , Fitzbillies is a family coffee shop . However , customer ratings are below average . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : city centre | near : Café Adriatic||With meals costing less than 20 pounds and an average customer rating , Travellers Rest Beefeater is located in the city centre near Café Adriatic . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Indian near Express by Holiday Inn in the riverside area , it is family friendly has an average customer rating and is a little expensive . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee ship providing drinks in the medium price range . It is located by Avalon along the riverside . Blue Spice is child friendly . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne , a highly popular place near The Rice Boat in Cambridge 's city centre , serves Chinese cuisine . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||There is a restaurant in the riverside area called The Blue Spice with low customer ratings . It is not children friendly and had a price range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop serves Japanese food in the £ 20 - £ 25 price range but is not child friendly and has a customer rating of 3 out of 5 and is located near Burger King in the city centre \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||The Travellers Rest Beefeater is a children friendly restaurant in the high price range . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : yes||The Wrestlers is an average rated restaurant that is child friendly and serves Indian food that is priced in the high range . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||The French food restaurant , Loch Fyne , has a customer rating of 5 out of 5 and can be found near The Rice Boat in the city centre area . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||This customer recommended coffee shop is located in Riverside near The Portland Arms . Cotto offers well priced French food . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : yes | near : Café Sicilia||If you are searching for a good coffee shop near Café Sicilia , The Dumpling Tree might be the place for you . Children are welcome and the menu is in average £ 30 and over . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||There is a restaurant in the riverside area near Café Adriatic . It provides meals in the £ 30 range and has a high customer rating , the name is Travellers Rest Beefeater . \nname : The Golden Curry | food : Italian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is children friendly , a price range of £ 30 , it 's near The Bakers who serve Italian food . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a French restaurant near Café Rouge in Riverside . this child friendly restaurant rates low in customer satisfaction . \nname : Alimentum | food : Japanese | price : high | area : riverside | family friendly : yes||There is a high - priced Japanese restaurant named Alimentum that is located by the river and is child - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle , next to the river near Burger King , is an expensive Indian coffee shop with average ratings and a reputation for not being child - friendly . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is located near the Café Adriatic with a customer rating of 3 out 5 . They are a pub and have a high price range . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a restaurant serving Italian food . It is child - friendly . This is a cheap place . It is located in the city center . Customer Ratings are 5 out of 5 \nname : The Punter | food : Chinese | price : more than £ 30||The Punter has Chinese food at high prices . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Located in the riverside area near All Bar One , Green Man is a children friendly fast food eatery with a high price range . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is located by the riverside . It is family friendly , with low prices and average reviews . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a non - family friendly Indian restaurant with a 5 out of 5 rating near the city centre . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is Japanese food that is more than £ 30 near Yippee Noodle Bar in the city centre . It is rated 5 out of 5 . \nname : The Punter | food : Italian | price : cheap||The Punter offers cheap Italian food . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||Around the corner from Café Brazil , The Cambridge Blue pub is popular for its English cuisine . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||There is a high rated Fast food restaurant located in the city centre . It is a coffee shop called The Golden Palace in the £ 20 - 25 price range . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant in the expensive range , suitable for families . It is located lose All Bar One . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is located by the riverside , it serves Japanese food and also very family - Friendly . \nname : The Plough | Type : pub | food : Indian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a kid - friendly pub offering Indian food in the range of £ 20 - 25 , located near Café Rouge . \nname : Strada | Type : pub | food : Indian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub that serves Indian food near the Yippee Noodle Bar . Its customers rate it 1 out of 5 stars . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : city centre||The Golden Palace is located in the centre of the city and it deserves 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Indian | price : cheap | area : riverside | near : The Sorrento||The Mill coffee shop is located in the riverside area near The Sorrento . They serve Indian food at a cheap price . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House has a moderate price range , near the All Bar One that serves French food that has a 1 out of 5 customer rating . \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||The Vaults is a moderately priced Japanese restaurant which is not family - friendly . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a restaurant that you can visit . It 's non - familiar place , a cheap site but close to The Bakers . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Although with a low customer rating of 1 out of 5 Zizzi coffee shop is in the moderate price range . This kids - friendly establishment is located near the riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that serves Japanese food . They are a child friendly coffee shop located near the riverside . Fitzbillies prices sit higher than 30 , and their customer ratings are low . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Family friendly and in the riverside area , The Waterman serves Indian food , is less than £ 20 and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||In riverside near Burger King , is a French coffee shop called The Eagle . It is not kid friendly , but it has a 3 out of 5 rating and an average price range of £ 20 - 25 \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||There is an Italian pub with cheap prices called Wildwood . Customers have rated it 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a children friendly coffee shop that can be found along the riverside . The beverages served fall within a high price range and it 's overall customer rating is average . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is an Indian cuisine restaurant down by the river side . It has a child friendly atmosphere and customers rate the place 1 out of 5 . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : city centre||The Phoenix , located in city centre , is a French restaurant that received a 5 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : high | family friendly : yes||Loch Fyne is a Japanese restaurant which , though kid friendly , has a high price range . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||With a 5 out of 5 customer rating , The Waterman is a riverside area pub serving fast food . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto a French restaurant providing child friendly environment with 3 out of 5 rating . Located near Ranch . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||For less than 20 pounds , in the city centre , is this coffee shop style Indian food place called The Golden Palace , however the ratings are low . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a medium priced restaurant conveniently located near the Rainbow Vegetarian Café . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : yes||There is an inexpensive English restaurant located in the city center called Alimentum that is very family - friendly . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice boat is placed on riverside area . It is children friendly place serves Japanese food . Customers rate The Rice Boat low . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter offers a variety of things to order that has a 5 star taste and is located next to Café Sicilia \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree is an expensive fast food restaurant in the centre of town . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada is not a family friendly place . It has a very low customers rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a family friendly Italian restaurant offering a range of meals to suit all budgets , located close to the city centre \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is centrally located directly on the river , is family friendly , and receives our highest rating . \nname : Bibimbap House | food : Indian | price : cheap | area : riverside | near : Clare Hall||For a cheap Indian meal in the lovely surroundings of the riverside visit Bibimbap House near Clare Hall . \nname : The Olive Grove | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove pub at the riverside serves Italian food at a price range of more than £ 30 and is children friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree serves French food at a moderate price . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||On the riverside there is a kids friendly pub with a moderate price range called The Olive Grove which serves fast food . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is a moderately priced pub with a customer rating of 1 out of 5 . It is located near Café Adriatic . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is children - friendly French located in riverside \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a cheap restaurant that is not family friendly . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a family - friendly , highly rated French restaurant located in riverside . £ 20 - 25 . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : no | near : All Bar One||There is a not kid friendly , moderate- priced Italian restaurant near All Bar One in city centre called Green Man . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly restaurant serving Italian food at less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The coffee shop ' The Wrestlers ' is a French coffee shop who are not children friendly with a price range of over £ 30 . They are located in the city centre , near ' Raja Indian Cuisine ' . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||With a moderate price range , Strada is a kids friendly person with a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , located near Raja Indian Cuisine , is a low - priced coffee shop that does not cater to families of small children . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food family restaurant . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is located near The Bakers . It is a child friendly coffee shop with an average rating . It falls into the high price range . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a non - family friendly coffee shop located near Crowne Plaza Hotel . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop serves food and drinks cheap prices located next to Raja Indian Cuisine . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a mid - price 5 - star sushi bar and coffee shop near Burger King , north of the city center . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman restaurant , located near the Crowne Plaza Hotel , serves Italian food and is kids - Friendly . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King there is a family friendly , French coffee shop The Eagle . It is a cheap place in riverside with a 5 out of 5 customer rating . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix serves Japanese food and has a low rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies serves Japanese food in a coffee shop . Located in riverside area . Priced more £ 30 and not kid friendly and rated 5 out of 5 stars . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French restaurant for adults located near Rainbow Vegetarian Café . Although it has an average customer rating , it serves dishes for less than 20 pounds . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Aromi is a restaurant located in the riverside that serves Indian food . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||A restaurant located near The Six Bells , the Giraffe has a cheap price range . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : no||Adult aimed The Rice Boat , serves fast food in the city centre . Not well rated but convenient . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has a high customer rating . The price range is 20 - 25 English sterling . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults pub is located near Café Adriatic and has a 3 out of 5 customer rating . Prices are between £ 20 - 25 . \nname : The Punter | food : Italian | price : less than £ 20||There is a low priced Italian restaurant called The Punter . \nname : The Vaults | food : Fast food | price : moderate | family friendly : no||The Vaults is a fast food store with moderate price ranges . It is not kids friendly . \nname : Strada | Type : pub | food : Chinese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada pub offers excellent Chinese food and is near the Yippee Noodle Bar . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||With a 1 out of 5 customer rating , Wildwood is a pub that serves Italian food with a moderate price range . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kids Friendly coffee shop offering Japanese food . It has a customer rating of 3 out of 5 and is located at Riverside near Crowne Plaza Hotel . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The Golden Curry serves French food in a child - friendly atmosphere . Customer ratings are low . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix Italian restaurant costs more than £ 30 . It is located in the city centre , and has a high customer rating . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Phoenix is a moderately priced French restaurant near city centre with a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop with Indian food with a moderate price Range customer Rating is 3 out of 5 near Café Sicilia and is kid Friendly \nname : The Golden Curry | food : Indian | price : moderate | family friendly : no | near : The Bakers||The Indian restaurant , The Golden Curry , is not friendly with the moderate , The Bakers \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada is a children friendly establishment with a price range of more than £ 30 and a low customer rating . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a Chinese restaurant rated average , located near the riverside and child - friendly . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||In the city centre , there is The Waterman , it serves expensive English food , it is highly rated and not children friendly . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a coffee shop with moderate prices near Avalon . It 's kid friendly and rated 1 out of 5 , you can find it by the city centre . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop in the riverside area , located near Raja Indian Cuisine . It offers Italian food and is child - friendly . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||Located next to the riverside , The Mill is a moderately - priced English pub . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop that offers fast food . It has a low customer rating , is located in city centre , near Burger King , and is expensive . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is family friendly . It is in the riverside area near the All Bar One . It serves English food and the price range is cheap . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn is not children friendly with a customer rating 3 out of 5 . Their price range is high . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A place selling Indian food called Strada is located near Rainbow Vegetarian Café . Although Strada has a high price range , it is children friendly . Overall , it has a customer rating of 1 out of 5 . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||A restaurant known to be kid friendly , Cocum has a customer rating of 3 out of 5 . \nname : Blue Spice | food : Chinese | price : more than £ 30 | area : riverside||Blue Spice serves Chinese food for more than £ 30 located in the riverside . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||There is an Italian coffee shop called Cocum that has a high price range and is rated 1 out of 5 by customers . It is not child - friendly . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Chinese restaurant near Rainbow Vegetarian Café . Rating 5 out of 5 and no family Friendly . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||There is a coffee shop named Giraffe . It is a cheap friendly coffee shop near The Bakers . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a Fast food restaurant located in the city centre . It is not a family - friendly restaurant with a price range of less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Let 's go to that Japanese coffee shop by the river near the Crowne Plaza Hotel , Browns Cambridge , it 's got an average rating , and it 's not family - friendly . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese at moderate prices . This restaurant located near Express by Holiday Inn is not kid friendly and only has a 1 out of 5 rating . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar , Alimentum is a Chinese food restaurant with an average rating and price . It is located in the city centre . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no||The Olive Grove is a high - priced pub in the riverside area , serving fast food . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||While it received a rating of 1 out of 5 by customer , The Golden Curry is a kid friendly Indian food restaurant located in Riverside near Café Rouge . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : city centre||The Mill is a cheap fast food pub in the city centre . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice is located on the river and provides fine - dining American fare . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman serves mainly English food . It has a high customer rating with prices ranging from £ 20 - 25 . It is not child friendly and is located in the city centre . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : city centre||There is a cheap venue in city centre . The Eagle is highly rated . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||Enjoy affordable Japanese food at The Cambridge Blue , near Café Brazil . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a French eatery located near the Express by Holiday Inn in the city centre . It has a customer rating of 3 out of 5 with a price range of £ 20 - 25 and is child friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : cheap | area : riverside | near : The Sorrento||The Mill is a cheap Indian coffee shop located in riverside near The Sorrento . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high end Italian restaurant the whole family can enjoy . Right next to The Bakers . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a poor - reviewed , kid - friendly Chinese restaurant in the riverside area . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is near the Café Adriatic in the riverside area . with a 5 out of 5 customer rating and prices starting at £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is not children Friendly and serves fast food and coffee shop . Customers only rate 1 out of 5 stars and the price Range is high . But its in the city centre so its close by \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a good quality restaurant located near The Rice Boat by the river \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : no||Aromi is a pub which has a low customer rating and is not family - friendly . It is in the city centre . \nname : The Golden Curry | food : Japanese | customer rating : high | family friendly : yes||the customer Rating is so high and we have a kids - friendly area that every kids said yes , the name of this place is The Golden Curry and have great Japanese Food \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a pricey , family friendly Italian coffee shop in the City centre , near Burger King . It 's rated 3 out of 5 . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||Alongside The Bakers you will find the fast food restaurant The Golden Curry , open to all ages . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Alimentum is a cheap family friend French restaurant in Riverside . \nname : The Plough | Type : pub | food : English | price : high | family friendly : no | near : Café Rouge||The Plough is an English pub near Café Rouge with high prices that is not child friendly . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near Crowne Plaza Hotel . It is a family friendly fast food place with a friendly environment . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove provides excellent British pub fare at low prices . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop in Riverside that has an average rating . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||A pub named Clowns is on the riverside . It costs between £ 20- £ 25 and has a rating of 3 out of 5 \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||Loch Fyne is a French restaurant that 's not family - friendly with a price range of less than £ 20 . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a 5 out of 5 non family friendly cheap priced Indian food restaurant located in the city centre area . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : yes | near : Café Sicilia||Kid friendly coffee shop with a moderate price range . The Dumpling Tree is located near Café Sicilia in the city centre . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||There is a restaurant The Waterman in the riverside that provides Japanese food in the price more than £ 30 but it is not children Friendly and having low customer rating . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is not a kid friendly restaurant but has a high customer rating . It is located riverside near The Rice Boat and offers meals for 20 - 25 . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : yes||Despite having a low customer rating , The Rice Boat , an Italian restaurant located in the city centre , has a family - friendly atmosphere . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix sushi restaurant is located next to the river . It 's high prices match it 's high quality sushi . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||Taste of Cambridge has a low rating . its prices are more than £ 30 . \nname : The Eagle | food : Japanese | customer rating : high||Offering Japanese food The Eagle has a high rating . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is an adult only fast food restaurant in Luton which offers highly recommended food at budget prices . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||There is a coffee shop in the city centre that serves Indian food called The Golden Palace . It also has a customer rating of 3 out of 5 and is in the moderate price range . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a children friendly Italian restaurant . It has a high price range . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : yes||For less than £ 20 , you can eat at the Green Man , which welcomes families and is located n the city centre . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Located near Yippee Noodle Bar in the city centre , Alimentum is an English restaurant with a high price range and a customer rating of 1 out of 5 . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||'Strada ' is a pub with moderate price range selling Italian food . It is near Yippee Noodle Bar and has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a Japanese coffee shop in City centre with a 5 - star rating and low prices . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a restaurant in the city centre . It has high customer ratings and is kid friendly . This restaurant serves fast food and its prices range from £ 20 - 25 . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge has a customer rating of 5 out of 5 . It is cheap . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a French food . It 's children friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Zizzi is a coffee shop with a low customer rating , in riverside . It has a price range of less than £ 20 and is not family - friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry 's Chinese food rates average by customers perhaps because even though it is nested by the riverside the children friendly restaurant detracts from the location by Café Rouge . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is river side family restaurant far form the noises of the city center . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a fast food restaurant in the moderate price range with a customer rating of 1 out of 5 . They are located in the city centre near Yippee Noodle Bar . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Located near The Bakers you will find The Golden Curry offering Japanese cuisine priced from £ 20 to 25 in a kids friendly atmosphere . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The coffee shop Cocum serves Japanese food , is children friendly but cost more than 30 euros and has a low customer rating . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||The kid friendly pub call Giraffe sells Indian food at the riverside \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a fast food restaurant with a price range of over £ 30 . It is not a child friendly establishment located near the Rainbow Vegetarian Café . Strada has a high customer satisfaction rating . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle place offers fast food dishes and has 5 out of 5 customer rating . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Kid - friendly Indian restaurant , The Wrestlers , offers a moderate price range , with a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian food for a cheap price that has a decent rating in the city centre that is family friendly near Express by Holiday Inn . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is located close to The Bakers . It is in the mid price range and family friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||Receiving a 3 out of 5 customer rating , The Cambridge Blue is a Fast food restaurant . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||Try The Vaults for a kids - friendly Fast food restaurant and a moderate price range . \nname : Green Man | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a cheap restaurant serving Chinese food . It is located on the riverside , near All Bar One and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a one star coffee shop located north from the City Centre that is family friendly \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||On the riverside is a family friendly pub called The Olive Grove , which has a good priced menu . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman in the city centre serves English food at average prices . It has a high customer rating but is unable to accommodate children . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is truly an adult dining experience , located near The Sorrento in the city centre , it provides fast food for the busy adult . \nname : The Golden Curry | food : English | price : cheap | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry is an English , family - friendly restaurant offering low prices . \nname : Strada | Type : pub | food : Fast food | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada has been a hit with the locals gaining a 5 out of 5 customer rating . The pub serves Fast food and is located near the Yippee Noodle Bar . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||The restaurant is called Loch Fyne . It provides Italian meals , but is not family - friendly . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||near Rainbow Vegetarian Café is a pub in riverside The Golden Palace which has a high price range . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||Low cost French food is served in the riverside area at The Phoenix . It has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a restaurant serving Japanese food within the price range of £ 20 - 25 , it is kid - friendly . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Near Café Sicilia is a pub called The Twenty Two . It is low rated by customers . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms in the city centre area , is the coffee shop Cotto , with Indian food in the high price Range and a customer Rating of 1 out of 5 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||The Wrestlers sells fast food at a low price . It is family - friendly and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is an Italian coffee shop in riverside near Crowne Plaza Hotel named Browns Cambridge that is kid friendly with a customer rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||Wildwood is an English pub in the high price range with a customer rating of 1 out 5 . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat offers kid - friendly English food in the riverside area . It has received a customer rating out 1 out of 5 . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a cheap Chinese restaurant which has a customer rating of 5 out of 5 and is by the riverside . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Japanese food within a price range of more than £ 30 . It is located near The Express by Holiday Inn by the riverside and has a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves fast food is near Café Sicilia that has a low customer rating that is not family - friendly and price range is less than £ 20 . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum has a 5 out of 5 customer rating . Located near the Yippee Noodle Bar in the city centre it serves cheap Indian food . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the city centre near the Express by Holiday Inn . They are a kids friendly Japanese restaurant . Their price range is £ 20 - 25 and they have a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a mid - priced restaurant that is family friendly and provides pasta . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice in Riverside is affordable and family friendly . \nname : The Cricketers | Type : restaurant | food : Chinese | near : All Bar One||The Cricketers is a restaurant providing Chinese food It is near All Bar One . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||In the riverside area , near Café Sicilia , is a pub called The Twenty Two , and has a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Located near Clare Hall is a riverside Japanese coffee shop called Clowns , which is rated as average by customers . \nname : Fitzbillies | food : Fast food | price : high | near : The Six Bells||The Six Bells is neat the high price ranged fast food restaurant named Fitzbillies \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : no||Loch Fyne is an Indian restaurant that is not children friendly and high priced . \nname : Wildwood | Type : restaurant | family friendly : no||Wildwood is an adult audience restaurant \nname : The Golden Palace | Type : pub | price : moderate | area : city centre | near : Rainbow Vegetarian Café||In the city centre there 's The Golden Palace public house . It 's near Rainbow Vegetarian Café with moderate pricing . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : no||Giraffe is a pub that serves Chinese food . It is not family friendly and is located near the city centre . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||There 's a cheap , family friendly coffee shop with an average customer rating called Giraffe near The Bakers . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||There is a Japanese restaurant on the riverside called Alimentum . It is family friendly and you can expect to eat there for less than 20 pounds . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix could be a diamond in the rough with low prices and a one star rating . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||In riverside there is a Chinese restaurant called The Waterman . It has a high customer rating , is kid friendly , and has a price range of 20 - 25 . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Blue Spice is a children friendly place in the city centre with a high price range that has a customer rating of 3 out of 5 . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada a Rainbow Vegetarian Café sells French food that costs more than £ 30 and has a low rating and is not child friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is an average rated fast food place in the city center . It provides food for moderate prices in a kid - friendly environment . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||No , The Rice Boat it not kids friendly . Its a Chinese restaurant located by the riverside , near Express by Holiday Inn . Its has moderate prices and customer rating is moderate . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill pub serves affordable local English foods in Riverside . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves Italian food and is kid friendly and is in the riverside area near The Sorrento . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada provides moderately - priced Italian food near Rainbow Vegetarian Café . It is not kid - friendly , and has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||looking for an Indian restaurant in the £ 20 to £ 25 price range with high customer ratings , in the riverside area near Express by Holiday Inn and is family friendly , then The Rice Boat may be for you \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a coffee shop offering Japanese food in a child friendly atmosphere with high prices and low customer ratings . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice , is a children friendly coffee shop , in the Avalon area with a 1 out of 5 customer rating and a high Price ran \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman in Cambridge is not the cheapest venue , but its sushi meals are highly recommended , and it is family - friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||In the upper price range of more than E30 is Alimentum which is located in the riverside area . It serves French food and is children - friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop situated a short walk from Ranch . They offer moderately priced cuisine and a 3 out of 5 star service . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Does not carer foe children but The Green Man serves Fast food , situated close to All Bar One near the riverside has a price list of less than £ 20 . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop located in the city centre near The Portland Arms . It offers French food in an average price range of £ 20 - 25 . Customers rate this establishment as high . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||For family - friendly fast food , go to The Rice Boat in the riverside area . It has average customer ratings . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Zizzi is a coffee shop in the riverside area . It is not family - friendly , has a low customer rating , and has a price range of less than £ 20 . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||There is a moderately priced , child friendly restaurant . It 's called Travellers Rest Beefeater . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||There is a family - friendly , cheap restaurant in the city centre , called The Waterman . It serves English food and has an average rating by customers . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located at Rainbow Vegetarian Café and is rated one star . It is family friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a place with a great playground for kids , that serves Indian food in a coffee shop like setting . Its called Aromi and it 's in Riverside , the only down fall is they have a rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | area : city centre||The Rice Boat is located in the city centre and serves Italian food . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Located near All Bar One is Midsummer House a fast food restaurant with a £ 20 - 25 price range that has a high customer rating . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||There is an English pub by the riverside named The Mill . It is moderately priced . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi offers coffee in a children friendly atmosphere in the riverside area for a price range of more than £ 30 with high customer ratings . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||There is a 3 out of 5 rated coffee shop that is moderately priced in riverside . To find it , look near the Café Brazil , it is called The Vaults . \nname : The Mill | Type : pub | food : Indian | price : cheap | area : riverside||In the riverside area , there is a pub called The Mill which offers cheap Indian food . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn . It offers moderate prices , good customer ratings , and a kid - friendly environment . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café . This Café is not child friendly and they serve English food . There price range is a little more than your mom and pop restaurant but the customer rate is high so its worth it . \nname : Blue Spice | food : English | price : cheap | area : riverside||Blue Spice is a cheap priced restaurant in Riverside that has English food . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a nice coffee shop with fast food service and lower prices than £ 20 are located in the city center area near Raja Indian Cuisine \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Italian restaurant that has been rated low by customers and is not family - friendly . Meals are less than £ 20 . It is located near Rainbow Vegetarian Café . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Fresh Pasta low priced at the Midsummer House up the street from the All Bar One . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Indian coffee shop The Wrestlers is located in the riverside area near Raja Indian Cuisine . It is in the moderate price range and is kids friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||For moderately priced fast food visit The Dumpling Tree . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat at the riverside , near Express by Holiday Inn , offers English food in the high price range . It has no children friendly menu and a customer rating of 1 out of 5 . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada serves fast food and is located near Rainbow Vegetarian Café . It is not family - friendly , has a low customer rating but costs less than £ 20 . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant located on the outskirts of the city next to Yippee Noodle Bar . \nname : The Punter | food : French | price : cheap||The Punter is a cheap French place . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Yes the Browns Cambridge coffee shop offers Japanese food and is children friendly . Its located in the riverside area near Crowne Plaza Hotel . 5 out of 5 rating \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a low priced Indian restaurant with a low customer rating . \nname : The Eagle | food : French | customer rating : 1 out of 5||Boasting a high customer rating , The Eagle is the best French cuisine around . \nname : The Vaults | Type : restaurant | food : English||If you want English food there is a restaurant called The Vaults . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub serving English food . although this is not family - friendly , this is situated near The Portland Arms . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A highly rated , 5 out of 5 , is The Rice Boat fast food restaurant in the city centre near Express by Holiday Inn . It 's family - friendly and cheap . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is an Italian coffee shop situated near The Portland Arms . It has a moderate price range and a 3 out of 5 customer rating . \nname : The Mill | Type : coffee shop | food : Japanese | price : high | area : riverside | near : The Sorrento||The Mill is a Japanese and coffee shop near The Sorrento by the riverside . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : riverside | near : Clare Hall||Freshly prepared foods Clowns coffee shop is up the road from Clare Hall . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a fast food chain that is rated by its customers to be average . It can be found near The Rice Boat in riverside . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Indian food at a range of more than £ 30 can be found at The Rice Boat , the customer ratings where high and the area is by the riverside but more specifically by Express by Holiday Inn . This venue is not child friendly . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge offers Italian food for less than £ 20 but has a relatively low customer rating . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||A moderately - priced Indian restaurant is Midsummer House . They are near All Bar One and have an average rating of 3 out of 5 . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a children - friendly restaurant with a customer rating of 5 out of 5 . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly Indian restaurant near Crowne Plaza Hotel . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a fast - food coffee shop in the city centre . It has a moderate price range and a customer rating 3 out of 5 . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||Visit The Plough today and enjoy sushi and the pub for a fair priced family friendly meal near Café Rouge . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Strada near Yippee Noodle Bar is a fast food vendor with an average customer rating . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Child friendly French eatery near Ranch , Cotto , is rated 3 out of 5 . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a highly rated Japanese restaurant with prices ranging from £ 20 - 25 . It is located in the city centre near Yippee Noodle Bar . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a high - priced coffee shop located on the riverside near Café Brazil . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is in the riverside area it is family oriented and moderately priced and has a rating 1 out of 5 . \nname : The Phoenix | food : English | customer rating : low | area : riverside||In the Riverside area there is an English venue with a low customer rating called The Phoenix . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||The Phoenix is a restaurant . It is located close to the city center and has a superb view across the rive . The price is pretty reasonable . \nname : The Punter | food : English | price : less than £ 20||The Punter serves English food and has a price range below L20 . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high priced Chinese restaurant that is rated 1 out of 5 stars by its customers and is not family friendly near the Express by Holiday Inn in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Eat at this coffee Shop . Not Child - friendly . At City Centre called Fitzbillies , with a high customer rating . The Price Range is more than £ 30 . Italian . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||I recommend Aromi , the coffee shop in the riverside area . It has fast food , is kids friendly , and has a customer rating of 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop yes it is family friendly with prices less than £ 20 , and is located near Avalon in the riverside area with a low customer Rating . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant near the Express by Holiday Inn in the city centre . It 's cheap and family - friendly with an average customer rating . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , offers Indian food , within a cheap price range , it has a customer rating of 5 out of 5 . It is located in a city centre , near Express by Holiday Inn , and is not family friendly . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : no||A well rated pub named Cocum , which is not children - friendly costs roughly 20 - 25 pounds . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||Zizzi is a family friendly pub that serves Chinese . It has an average customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop located in the riverside area which serves Japanese food . It has an average customer rating and is not family - friendly . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Despite its low rating , The Taste of Cambridge restaurant features meals for less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Located north of the city center is a low cost family friendly coffee shop named Fitzbillies . Fitzbillies has a rating of 3 out of 5 stars . \nname : The Punter | food : English | price : more than £ 30||English food is served at The Punter at a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a moderately priced French coffee - shop , near The Portland Arms in riverside . It is rated 1 out of 5 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||For a child friendly Indian meal try The Twenty Two on the riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a non - kids - friendly coffee shop with a high customer rating . Serving Japanese food at around £ 20 - 25 , it 's located on Riverside , near Burger King . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Clowns is a pub by the river . It is high - priced but rated five stars . \nname : The Eagle | food : Italian | customer rating : low||The Eagle , situated off the main road , provides a fair meal . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family - friendly Italian coffee shop located in the city centre called Aromi . It has a customer rating of 5 out of 5 . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Midsummer House is a cheap fast food establishment near Café Rouge with average customer ratings . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum is a great place for a coffee , It is a coffee shop \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : 5 out of 5||There is a Chinese pub named Wildwood with a 5 out of 5 rating and cheap prices . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop which serves French food in the city centre , near Burger King . It has a reasonable customer rating but is quite expensive and does not actively welcome children . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix offers Asian cuisine at affordable prices . Located conveniently on the river a short distance from St. John 's College . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a low - priced , family - friendly French restaurant with a 3 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : riverside||For well - rated Indian food in a pub setting in the riverside area , The Waterman is a great choice . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop serving Japanese food in the riverside , but the customer rating is low . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||Their is a pub called The Olive Grove that serves Japanese food in the riverside area . \nname : The Mill | Type : pub | food : Indian | price : high | area : riverside||Within the riverside area , there is a pub , called The Mill , which offers Indian food in a high price range . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||Cheap burgers and fries at The Cambridge Blue restaurant located near the city center . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults is an Italian restaurant with low - priced food . It 's not family friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : no||There is an expensive non children - friendly English food restaurant called Loch Fyne . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||The Green Man is a pub that has Japanese food and is near the Café Rouge around the riverside area . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||The Loch Fyne , a child friendly , French restaurant is priced above £ 30 . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||There is a restaurant that called the Green Man located in City Centre by All Bar One , it is kid friendly and it sells Chinese food at a moderate price range . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a 5 out of 5 customer rating and a price range of more than £ 30 . It is located in the riverside area near Café Adriatic . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||Italian food is served at the Strada , a pub with an average customer rating , near the Yippee Noodle Bar . \nname : The Twenty Two | food : Fast food | family friendly : yes||Kid - friendly fast food The Twenty Two . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Close by Café Rouge , is Wildwood . An average rated restaurant . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is child friendly , has a high price range and an average customer rating . They serve Italian food near the Express by Holiday Inn in the city centre . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix has a view of the river with cheap menu items . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||There is an adult pub Zizzi that offers cheap fast food . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the riverside area is a kid - friendly coffee shop with French food . It is the Taste of Cambridge . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly , medium priced , five star sushi restaurant next to the Express by Holiday Inn . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||For average rated Fast food try Wildwood , but its prices are within the high price range \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a Indian coffee shop in the city centre . Price less than £ 20 . It is near The Sorrento . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix is a Japanese venue with average customer Rating at a riverside area . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is an Indian restaurant in the riverside area offering moderately priced food but with a poor customer rating of 1 out of 5 \nname : The Eagle | food : Italian | customer rating : average||The Eagle offers Italian food and has average ratings . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : city centre||there is an affordable and good quality Italian restaurant located in the city centre called The Phoenix . its been rated average by its customers . \nname : The Phoenix | food : English | customer rating : low | area : city centre||The Phoenix has a low customer rating , It offers English food and is located in city centre . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a French pub on the riverside that offers a kid friendly atmosphere . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||There 's an English restaurant near the Crowne Plaza Hotel called The Waterman but its not family - friendly . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves high priced Chinese food . It has an average customer rating and is located near the Yippee Noodle Bar at the riverside . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves Italian food with a high price range and a customer rating of 1 out of 5 . It is located near Rainbow Vegetarian Café and is not child friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : no||Loch Fyne is a restaurant that serves Indian food in the moderate price range . It 's not child friendly . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Rated 1 out of 5 , Clowns is a coffee shop serving Indian food . Located in the riverside near Clare Hall . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop serving French food for less than £ 20 near Café Sicilia and is not a family - friendly environment . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||A moderately priced and rated Indian restaurant in the Riverside area would be The Phoenix . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in the riverside area is The Rice Boat . It is a moderately priced fast food restaurant with poor customer ratings . It is not kid friendly . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge is a French restaurant that is above average price and has a low customer rating . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||High priced and located near Express by Holiday Inn , Fitzbillies is high priced with a three out of five customer rating . It is not children friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||children - friendly coffee shop near The Portland Arms serving fast food named The Cricketers with an average rating . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat which has a customer rating or around 3 out of 5 serves French food . The food is of a high price , and is not children friendly . It is situated in the riverside area which is also close to The Express by Holiday Inn . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||Next to the Ranch is a moderately priced coffee shop Wildwood . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : city centre||The Mill is a pub serving Indian food in the moderate price range . It is located in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a riverside coffee shop near the Crowne Plaza Hotel . It serves fast food and is family friendly . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Chinese restaurant The Phoenix is in the price range of less than £ 20 and is in the city centre . It has a low customer rating . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is an average priced Fast food family - friendly restaurant , moderately rated in the city centre \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an affordable , family friendly Indian restaurant in the city centre near to Express by Holiday Inn . Customer rating is low . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Near Ranch , there is a coffee shop called Wildwood . It serves expensive Italian food but has a low rating . \nname : Blue Spice | price : more than £ 30 | area : city centre||Blue Spice cost more than £ 30 and is located in the city centre . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum his a kids friendly pub with customer ratings of 3 out of 5 and prices on the higher end . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a family - friendly restaurant providing English food in the cheap price range . It is located in the city centre \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced , kids - friendly Indian restaurant with a customer rating of 3 out of 5 located in the city centre . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||There is a coffee shop close to Café Sicilia called The Punter that does not cater for families . It serves sushi it is moderately priced , however it has a very bad rating \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is a moderately expensive pub located north of the city centre near the river . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub providing a Fast food near to The Portland Arms . It is friendly for kids . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||For an average family friendly meal for less than 20 pounds , try The Twenty Two , located near The Rice Boat on the riverside . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||There is a fast food restaurant in city centre with a rating of 1 out of 5 that has high prices called The Phoenix \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||Taste of Cambridge restaurant for average customer Rating in high price Range \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is coffee shop also provides Japanese food at a moderate price . It is located near The Portland Arms in the city center . Customers rated Cotto 1 out of 5 . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is an Indian food restaurant with a high customer rating . The price range is more than £ 30 and it is in the riverside area . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge offers expensive fast food . The restaurant is rated 5 stars . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly coffee shop near Avalon in the riverside area . This cheap coffee shop has an average customer rating . \nname : The Mill | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside||The Mill Italian pub in the riverside area has food in the £ 20 - 25 price range . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : no||Hello , and welcome to the Alimentum . Our food is Japanese where we are located at the riverside , our price range is moderate and we are not kid friendly . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman , located in city centre , is moderately priced fast food restaurant . They received a 3 out of 5 customer rating . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : no||The Rice Boat is not family - friendly . It also is average rated French food . It is located in the area of city centre . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a cheap and family friendly Italian restaurant , with an average customer rating . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||The Wildwood is a Japanese pub with a moderate price range and a 1 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an average rated cheap coffee shop with Italian food , near The Portland Arms , down to the riverside . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The Eagle is a restaurant in Riverside . Offering moderate pricing , it has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a five star fast food restaurant that is nearby the city centre and good for families . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a highly rated and moderately price Japanese restaurant . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove , a pub type eatery , is family - friendly with a price range of less than L20 . They serve Italian food and are located in the riverside area . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a family friendly venue near the Express by Holiday Inn . It has an average customer rating for a cheap price range . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||The price is high for a 1 out of 5 rated place . The Wildwood is a pub and has Italian food . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a kids friendly restaurant . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a cheap coffee shop that specializes in family style Italian meals . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant that serves Indian food , at cheap prices , average customer service , located in City Centre , not family friendly located near Express by Holiday Inn \nname : Blue Spice | food : Indian | price : moderate | area : city centre||There is an Indian food place named Blue Spice in the city centre with a moderate price range . \nname : The Phoenix | food : French | customer rating : high | area : riverside||The Phoenix is a French restaurant by the riverside has a high customer rating . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : city centre||The Phoenix is in the city centre with an average customer rating . They have fast food with a high price range . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies is a Japanese restaurant near The Six Bells . Plates tend to be more than £ 30 . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||Expensive , The Twenty Two , is family friendly with average ratings . It is located by the riverside , near The Rice Boat \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||There is an Indian restaurant by the riverside named Green Man that has prices less than £ 20 , that is not family friendly , and is near All Bar One . \nname : The Eagle | food : English | customer rating : 5 out of 5||Join us at The Eagle for good English food . With a 5 out of 5 star rating , you can 't go wrong . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace 's sushi dishes are very expensive , but only rank in at 3 - stars according to reviews . The coffee shop can be found beside the river , north of the city center . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The adult pub The Dumpling Tree is located near The Portland Arms and serves Japanese food . \nname : The Phoenix | food : Japanese | customer rating : low | area : city centre||There is a Japanese restaurant with low rank its The Phoenix \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||This restaurant 's not kid friendly and it 's called The Waterman . This eatery serves English food and is located in the Riverside area . Menu items are in the moderate price range and were given only a 1 out of 5 customer rating . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix offers cheap English food located in riverside . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , is a riverside restaurant located near The Rice Boat with a moderate price range and a customer rating of 3 out of 5 along with a kid friendly environment . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop is a medium quality , medium priced , family shop . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderately priced French coffee shop serving the riverside area with a customer rating of 1 out of 5 . It 's a moderately priced restaurant that is not kid friendly . \nname : Blue Spice | price : cheap | area : riverside||A cheap restaurant in riverside is named Blue Spice . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family - Friendly venue near The Bakers . It serves low - priced French food in the range of less than E20 . \nname : Blue Spice | food : French | price : more than £ 30 | area : city centre||Blue Spice is on the more expensive side , with food over the price of £ 30 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice coffee shop is located near the riverside area and is not kid friendly . We have a customer rating of 5 out of 5 with a price range of more than £ 30 . You can find us near the Avalon . \nname : Midsummer House | food : Indian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House serves Indian food . It has a customer rating of 1 out of 5 and the price range is high and it is near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop with a good rating and a low - priced menu . It is family friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Riverside Italian food and coffee shop names The Eagle , located near Burger King . Prices from £ 20 - 25 and is kid Friendly . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||For less then 20 pounds , and a family friendly restaurant is the Strada , which has a low customer rating . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||A riverside top favorite for Italian food , Loch Fyne is located by The Rice Boat . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a highly rated restaurant that offers low priced French food . It is not family - friendly and is located in the city centre near Express by Holiday Inn . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : no||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is low . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||There is a pub by the riverside called Aromi that is children friendly and has a customer service rating of average . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada costs less than £ 20 and serves fast food . It can be found near Rainbow Vegetarian Café . It is not family - friendly and has a low customer rating . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family - friendly restaurant that sells English food located in the city centre with a customer rating of low \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Chinese restaurant called The Phoenix is located in the riverside area . The customer rating is low , but is in a comfortable price range . It is less than twenty . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly pub located in the riverside area with an average rating of 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : cheap||The Dumpling Tree provides Indian food at a cheap price . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a restaurant near The Six Bells that has a moderate price range . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is an inexpensive fast food . coffee shop situated near the river . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||With a 5 out of 5 rating the Travellers Rest Beefeater is situated by the riverside near Café Adriatic . The average price for is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a family friendly coffee shop called Fitzbillies . It is mid priced and can be located by the river . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||Wildwood coffee shop located near Ranch , offers oriental cuisine at a moderate price with good customer service . Rated 3 out of 5 stars . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||Though it has an average customer rating , The Golden Curry is a good option for families in the city centre area near Café Rouge . It has an average customer rating . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||Near Café Brazil , there is The Cambridge Blue which is a pub serving English food that is high priced \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Chinese restaurant in the City center . Come to The Waterman , child friendly with high customer ratings . \nname : Zizzi | Type : pub | food : Italian | customer rating : 3 out of 5 | family friendly : yes||There is a highly - rated pub called Zizzi ; its customers gave it 3 out of 5 . It serves Italian food and is child - friendly . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a high rated fast food restaurant that is not kid friendly , priced 20 - 25 and is located on the riverside . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is north of the city centre and serves American food at a steep price . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House is located in Riverside near Clare Hall . They serve high priced Italian food . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Located near The Sorrento , Browns Cambridge is a Japanese restaurant that is also kid friendly . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop providing French food in the city centre near of The Sorrento \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is a high - price ranged Italian eatery that is in a riverside area . Located near All Bar One , Green Man is not a child - friendly environment . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Just across from The Portland Arms City Centre is a high end , high praised Japanese coffee Shop called Cotto . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is the name of an English food family friendly eat type restaurant . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge in the riverside area near The Sorrento has child - friendly fast food . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum is a high price , average value family friendly coffee shop . \nname : The Vaults | food : Fast food | price : high | family friendly : yes||The Vaults is an expensive but child friendly fast food restaurant . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is moderately priced and near Rainbow Vegetarian Café . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix on the riverside is rated average by customers . It serves Fast food with a high price tag . \nname : The Punter | food : Italian | price : high||An Italian place named The Punter is high priced . \nname : Green Man | Type : pub | food : Fast food | area : city centre | near : Café Rouge||A pub near the Café Rouge in the city centre is the Green Man . It has fast food . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is a French restaurant in the Riverside area \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||in the city centre there is a coffee shop that is not child friendly which also serves French food called Fitzbillies , it has high customer ratings and is in the £ 20- £ 30 price range \nname : Blue Spice | food : English | price : less than £ 20 | area : city centre||Nice English food is serves in city centre , Blue Spice . Prices range less than £ 20 . \nname : The Golden Curry | food : Indian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is an above averagely priced Indian near The Bakers . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a higher priced , family friendly , fast food restaurant located near Express by Holiday Inn by the river . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Try The Wrestlers , try some sushi , five star food and a mid - range price thats family friendly . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi in Riverside , is a child friendly , low rated , pub . \nname : Strada | Type : pub | food : Indian | customer rating : low | near : Yippee Noodle Bar||The Strada is a low rated pub located near Yippee Noodle Bar that provides Indian food . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a restaurant with a customer rating of 5 out of 5 and has a moderate price range ; it is located near All Bar One . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||A family - friendly restaurant located in riverside near All Bar One goes by the name Green Man and serves English food in the price range below £ 20 . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop and they serve French food and have a customer rating of a 3 out of 5 . They are located in the riverside area . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi coffee shop offers food and drink . It has great ratings and is family friendly . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a child Friendly restaurant serving Italian food near The Sorrento in the riverside area . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a high priced Italian restaurant named Strada near the Rainbow Vegetarian Café . It is child friendly , and is rated 1 out of 5 by its customers . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The coffee shop Fitzbillies is in the riverside area and has Japanese food . It is in the price range of less than £ 20 and is not family - friendly . It has an average customer rating . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a moderately priced family friendly Indian restaurant in the cities center . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||Green Man in the Riverside Area which is child friendly and in the more than £ 30 price range \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : no | near : The Bakers||Indian restaurant , The Golden Curry , has an affordable price range under £ 20 . It can be found near The Bakers . Please note it is not family friendly . \nname : Green Man | food : French | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a French restaurant and found near All Bar One in riverside . It has a high price range but it is a child friendly environment . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : no||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is average . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn , located along the riverside is a cheap not so family - friendly Fast food restaurant name The Rice Boat with average customer rating \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix , located in the Riverside area , offers Chinese food in a moderate price range . It has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an average Indian coffee shop with low prices . It is located by the river and near The Portland Arms . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree does not sell coffee for the family , but it 's good . It is located north of the City center . , one block from Café Sicilia . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||Wildwood is a highly rated Fast - food pub , with a price range of more than £ 30 . \nname : The Phoenix | food : French | customer rating : average | area : city centre||The Phoenix is an average rated French restaurant situated within the city centre . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is a mid priced , high rated restaurant in the city centre near Café Adriatic . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a Chinese restaurant located in city centre . It is a family friendly place and price range is less than 20 . It is located near All Bar One \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||restaurant near the Café Rouge called Midsummer House provides Italian food . High customer rating . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix serves French food in the £ 20 - £ 25 price range is located in the Riverside area and has a 3 out of 5 customer rating \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman restaurant located near Crowne Plaza Hotel offers French food and is children friendly . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a average customer rated coffee shop that serves Indian food by the riverside . It is near Crowne Plaza Hotel and is very family friendly . The name is Browns Cambridge . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a yes to family friendly . It serves Italian food near the Crown Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge has excellent ratings and is a French , coffee shop in the city centre , near Crowne Plaza Hotel \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a fast food store that sells Japanese food . They are no a kid friendly store near The Bakers and have a moderate price range . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is a traditionally British restaurant , offering 3 star food \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : high||Browns Cambridge serves Japanese food . Its customer rating is high and has an average price range of £ 20 - 25 . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||The restaurant Zizzi serves for £ 20 - 25 and is located by the riverside . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : no||The Vaults serves Chinese food for less than £ 20 and is not family friendly . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||A kid friendly restaurant in the riverside area is Green Man . The price range is £ 20- £ 25 . \nname : The Punter | food : French | price : £ 20 - 25||The Punter sells French food at average prices . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a 1 out of 5 stars Indian coffee shop near Burger King in the city centre . It is in the high price range , but is children friendly . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a child friendly environment in the riverside area . The customer rating is high and it provides Italian food \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||Wildwood is a moderately priced , highly rated pub . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : no||Indian food serving pub , Zizzi , is not family friendly and has a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly coffee shop with a price range of more than £ 30 . It also serves Japanese food and is located in the city centre near Raja Indian Cuisine . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||There is a fast food coffee shop in the city centre called The Golden Palace . It has a 3 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a fast food coffee shop in the city centre called Aromi . It is family - friendly , and it has a high customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no||Aromi is a family - friendly coffee shop offering Italian food . It is not family - friendly , customer rating on average and located in city centre . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a 5 star place located along the river in the city centre . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a moderately priced restaurant in the riverside area called Blue Spice . Blue Spice is kid friendly and has a customer rating of 3 out of 5 . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||The Eagle is a 1 star restaurant in the riverside area . It is moderately priced . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 3 out of 5||Browns Cambridge is an Indian restaurant with moderate prices . It has received a customer rating of 3 out of 5 . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kid friendly restaurant that is located near Ranch . It has a 3 out of 5 customer rating . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : no||Alimentum is an expensive Chinese food restaurant for adults that is located in the riverside area . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice is a low priced restaurant outside the centre \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Riverside area offers a children friendly pub with an average customer rating called Aromi . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||The price range of Strada restaurant is high . It is child friendly with a customer rating of 1 out of 5 . \nname : The Eagle | food : Indian | customer rating : 5 out of 5||The Eagle offers Indian food and is rated 5 out of 5 . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat , located in Riverside , is a kid - friendly Japanese restaurant with a customer rating of 3 out of 5 . \nname : Strada | Type : pub | food : French | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar serving French food and is rated 5 out of 5 by the customers . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop offering Indian food in the high price range . The customer rating is average and it is not children friendly . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Blue Spice is a adult only high end restaurant near the riverside offering customers a great place to eat \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum , a 5 - star , mid - cost coffee shop offering fancy fare and spirits for the whole family . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||Looking for Italian food and a coffee shop , you can find it all in one place at The Golden Palace located in the riverside area . Prices are low and ratings are high \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a French coffee shop average rated located in the city center near Burger King . You pay less than £ 20 in a non family environment . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||Zizzi , is a Pub , with a high customer rating , with Italian food , and is children friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop that offers French food . The food at Fitzbillies costs less than £ 20 and has a low customer rating . It can be found near the riverside area . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : no | near : Café Rouge||The Plough has Italian it is near Café Rouge it is a pub but no children allowed and the prices are high . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a pretty expensive fast food family restaurant with a three - star rating . It is located near the Rainbow Vegetarian Café . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The Waterman is a Japanese pub near riverside with a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a family friendly coffee shop that serves French food with prices less than L20 . It is in the riverside area near Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies coffee shop serves cheap Indian food . They 're average rated , not family friendly and located in riverside . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is well known for high price and being friendly to children . It is by the riverside and it is rated as 3 out of 5 by its customers \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is found near Express by Holiday Inn . It has an average customer rating in the cheap price range and is family friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||There is a French coffee shop located at the riverside called Aromi . It is family friendly but customer rating is low . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a mid priced family friendly pub . It is located near to the City Centre \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||Near The Rice Boat , lies an expensive , low rated Café named The Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is Japanese food in riverside with average prices and high customer ratings at Fitzbillies , a kid friendly coffee shop . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Italian coffee shop , Browns Cambridge , is in the city centre , near Crowne Plaza Hotel . It has a low customer rating and is not child friendly . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a low rated restaurant located in the riverside area . They serve cheap Indian food and are not family friendly . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||Taste of Cambridge is a highly rated restaurant with average price range of £ 20 - 25 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat with a ratings of 3 out of 5 offers a moderate price for their Chinese food . It is located in the city centre near Express by Holiday Inn and is not kids friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||French food is served at Alimentum , a children - friendly restaurant in the riverside area . The price range is more than E30 . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Located in the centre of the city , The Waterman is a non child friendly Italian restaurant with a customer rating of 1 out of 5 and high prices . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||There is a low - rated , child - friendly , French coffee shop near The Portland Arms called The Cricketers . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||For those with children in tow and a higher budget , Fitzbillies is an Italian style coffee shop located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Fast food restaurant coffee shop in riverside area close to Crowne Plaza Hotel . 3 out of 5 customers rate is as kids friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||By the riverside , there is a high priced Fast food place called The Golden Palace with a customer rating of 1 out of 5 . It is like a coffee shop . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||Wildwood is a high - priced pub that provides tasty food . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells English food that is less than £ 20 , not family - friendly and has a customer rating that is low located in the city centre near Express by Holiday Inn \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe at the riverside is a children friendly French establishment that includes an adult pub . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a family - friendly Chinese restaurant . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a 5 star , full priced family friendly coffee shop . It is located near to the Café Sicilia \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||Looking for a family friendly Italian food restaurant with average customer rating look no more visit The Golden Curry . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||By the riverside there is a French restaurant called The Golden Curry . It is children friendly and has a customer rating of 5 out of 5 . It is also near to Café Rouge . \nname : The Phoenix | food : English | customer rating : high | area : riverside||In riverside is The Phoenix which serves English food and had a high customer rating . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||There is a kids friendly fast food place thats moderately priced called Green Man by All Bar One . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Fitzbillies , a fast food restaurant with low prices is located near The Six Bells . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is an English pub in riverside with a high price range . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||This non family friendly restaurant , The Waterman , is located by the margin of the river and provides pasta for a cheap price . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||If you want Japanese food , go to The Waterman restaurant that sells cheap food . They are not kid friendly but they do have a rating of 5 out of 5 . They are located in riverside . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is an Italian pub that welcomes children , but only has an average rating . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a family friendly restaurant with a low customer rating . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian food at moderate prices , with 3 out of 5 rating and children friendly . You can find The Rice Boat near Express by Holiday Inn , in the city centre . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a family - friendly fast food restaurant . The price range is less than 20 pounds . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||The Golden Curry is a kid friendly , grate place to eat English food . \nname : Blue Spice | food : English | price : £ 20 - 25 | area : riverside||The Blue Spice provides English food in the £ 20 - 25 range . It is located in the riverside area . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a coffee shop in the riverside area near the Raja Indian Cuisine . It 's called The Wrestlers , offers Italian food with a moderate price range and is kids - Friendly . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||If you 're looking for Indian food for less than £ 20 in the city centre , I would recommend The Phoenix . The customer rating is low though . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe is a restaurant near The Six Bells priced over £ 30 . \nname : The Phoenix | food : French | customer rating : 1 out of 5 | area : riverside||The Phoenix is a French food . It located near riverside . . Many people rated it 5 out of 5 . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is an Italian restaurant for adults only that is really cheap and has great ratings , 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family - friendly coffee shop specializing in Italian cuisine . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada is in the moderate price range . They have a customer rating of 1 out of 5 . They are not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a high - priced low - rated coffee shop in the city centre , serving Indian food . It is child friendly . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap , family - friendly French coffee shop , in the Riverside area . It is near Burger King , and has a 5 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace coffee shop in riverside serves French food . Prices start at £ 30 , and customer Rating is low . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||Near The Rice Boat in Riverside , there is an English food place called Bibimbap House . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge coffee shop is rated one star and it is located near the Crown Plaza Hotel . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , there is an Italian restaurant named Strada . It has a low customer rating and a price range under £ 20 . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a Japanese pub that 's located in riverside . its children friendly and has a price range of more than £ 30 . \nname : The Punter | food : Italian | price : more than £ 30||Italian food served at The Punter is more than £ 30 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||By Express by Holiday Inn , in the City Centre , there is a sushi restaurant called The Rice Boat . It is not family - friendly , and is rated one out of five stars . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a restaurant with a high price range near The Six Bells . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a child friendly restaurant that offers high quality French food . This restaurant is located in Riverside near All Bar One . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||The price of an outing at Fitzbillies a child friendly venue is £ 30 . The rating is 5 out of 5 and out is near Express by Holiday Inn . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||One place to buy cheap English food is called The Wrestlers . It is family friendly and receives average ratings . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese food priced between £ 20 - 25 . It is not child friendly and is located near Express by Holiday Inn in riverside . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||A coffee shop called The Vaults is situated by the riverside , and is slightly expensive . It is near Café Brazil , and is popular with customers . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is an Indian food place with a price range of less than £ 20 . It is family friendly and located in the city centre near All Bar One . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : no||Alimentum serve French food in riverside and have a moderate price range . They are not kid friendly . \nname : Midsummer House | food : Indian | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a very affordable place to stay , coming in at around , £ 20 - 25 . Midsummer House also has the best Indian food in town . It has a high customer rating and is near the famous All Bar One . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix restaurant for Italian suitable prices food located in riverside . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry , Japanese , restaurant gets low customer ratings . It 's on the riverside , near to the Café Rouge but isn 't family - friendly . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you are looking for a restaurant that serves English food and has a high customer rating , check out The Rice Boat . It is located in the riverside area near the Express by Holiday Inn and has a price range between 20 and 25 pounds . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a restaurant with a low price range , has a customer rating of 1 out of 5 , and is located in the City Centre . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers serves high quality breakfast food that is family friendly and has above average pricing . \nname : The Twenty Two | food : English | family friendly : no||The Twenty Two has English food and is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is an Italian restaurant rated high by our customers , with prices ranging from £ 30 + . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Midsummer House is an average rated Japanese restaurant near Café Rouge . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : riverside||The Mill is an Indian pub which is in riverside and is moderately priced . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||Taste of Cambridge is a moderately priced restaurant with a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family - friendly coffee shop that serves pasta . It is located near the river . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||In the city centre near to Yippee Noodle Bar is Alimentum a high priced fast food outlet with an average customer rating . \nname : The Mill | Type : pub | food : Chinese | price : more than £ 30 | area : riverside||If you are willing to spend over 30 pounds , there is a pub style Chinese place called The Mill in Riverside . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||An expensive pub called Clowns can be found in City centre . It is a five - star pub . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Japanese at the riverside . It is near The Sorrento and its price range is less than £ 20 . \nname : Strada | Type : pub | food : Indian | customer rating : low | near : Yippee Noodle Bar||There is a pub near the Yippee Noodle Bar that serves Indian Food named Strada . It , however , has a low customer rating . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub which serves French food . It is highly rated by customers who gave it 5 out of 5 but it is not family - friendly . \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||The Phoenix serves English food on the riverside , despite a low customer rating \nname : The Phoenix | food : Japanese | customer rating : average | area : city centre||The Phoenix is a Japanese venue with an average customer rating found in the city centre . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||There is a kid friendly pub near The Portland Arms called The Dumpling Tree serving French food . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid - friendly coffee shop nearby the Crowne Plaza Hotel . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||For a family friendly place near The Six Bells , try The Golden Curry . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly low price Japanese restaurant near The Bakers . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap and family friendly coffee shop in the Riverside area . The Wrestlers serves fast food and is located near Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly , Italian coffee shop in the city centre area with a low price range and low customer rating named Fitzbillies . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle has a high price range , serves Italian food , is a coffee shop , has an average customer rating , is near the city centre and Burger King and is children friendly . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||There is a restaurant near Ranch called Cotto that serves French food that is family friendly and has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that is children friendly , highly rated Italian food , and is near The Portland Arms . \nname : Strada | Type : pub | food : Fast food | customer rating : low | near : Yippee Noodle Bar||Strada is a fast food . pub with low customer ratings near Yippee Noodle Bar . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is located near The Portland Arms , it offers low quality goods and is not family friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||Near the Ranch , you can find Wildwood which has a high customer rating .. An Italian coffee shop with prices varying between £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a fast food coffee shop in the city centre near The Portland Arms . It is expensive and has average reviews . \nname : The Eagle | food : English | customer rating : high||The Eagle got English food and the rating is high . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Zizzi is a restaurant on the riverside which offers food for under 20 . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is located near The Sorrento in the city centre . It offers Japanese food . It is not family - friendly . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||For family French cuisine eat at Giraffe at the riverside . They are children friendly . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Get top dollar rated fast food for your family at riverside , in The Rice Boat . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is a French restaurant located in the Riverside area . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre is cheap but not family - friendly . They provide Fast food with a customer rating 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||A coffee shop that serves Italian food in riverside with a low customer rating and a price range that is under £ 20 is The Golden Palace . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||For the average pub style restaurant visit The Vaults , located near Café Adriatic . The price range is high . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||Wildwood is a high price range fast food placed with a 1 out of 5 rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||The Wildwood is a moderately priced fast food restaurant based near the Ranch in the city centre . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a French , family - friendly coffee shop near Burger King in the Riverside area . The Eagle has an average customer rating and prices in the average range . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a kid friendly restaurant located in riverside . It serves Italian food , a high customer rating , as well as a price range of £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||For cheaply priced Japanese food the Cocum coffee shop has been rated 5 out of 5 by past customers . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater that is near Café Adriatic has a 5 out of 5 customer rating and a high price . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Customer rated as average cheap Italian food is served in riverside area at family friendly The Waterman . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is family friendly and offers fast food . They have a low customer rating . They are in the riverside area near Café Rouge . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop called Taste of Cambridge located in the riverside area near the Crowne Plaza Hotel . It is family friendly and serves Indian food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||There is a highly priced coffee shop with a customer rating of 1 out of 5 in the city centre serving fast food called The Golden Palace \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a Japanese pub located by Yippee Noodle Bar , and has a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is an averagely rated cheap fast food coffee shop in the city centre near The Portland Arms . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||In riverside check out The Phoenix . It serves English food is priced cheaply and is rated 5 out of 5 . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum providing fast food start from £ 30 . It is located in the riverside near Yippee Noodle Bar and high customer rating . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||A cheap , family - friendly restaurant , The Punter , is located in the riverside area near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||You can buy cheap Japanese food at the coffee shop called Fitzbillies in the riverside area . It is not family - friendly and has an average customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||You can expect to pay between £ 20 - £ 25 for Japanese food at Cocum . This is a coffee shop with a customer rating of 3 out of 5 . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : no||The Twenty Two is an Indian restaurant located in the riverside area . It is not a family friendly eatery . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||Zizzi is a pub that is rated one star and is not family friendly \nname : The Punter | food : Fast food | price : less than £ 20||The Punter offers fast food for a great deal at less than £ 20 . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a Chinese food place with low customer Rating , but price Range less than £ 20 and family friendly , located in riverside . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is French , family - friendly located on the riverside with customer rating 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is average . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : city centre||There is a restaurant locate in the city centre called Zizzi which has price range of less than £ 20 \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||Located near Café Adriatic , The Vaults offers high - priced pub fare and gets a customer rating of 3 out of 5 . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a children friendly place that offers fast food in the high price range . It 's located in the riverside area and has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||'The Eagle ' is an Italian coffee shop near Burger King in the city center . It has poor reviews but is perfect for kids and boasts reasonable prices . \nname : Aromi | Type : restaurant | food : English | area : riverside||Aromi is a restaurant in riverside . Aromi serves English food . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kids friendly venue near to The Sorrento in the Riverside area , offering a full English menu . \nname : Midsummer House | food : Fast food | customer rating : high | near : Café Rouge||The Midsummer House near Café Rouge serves fast food with a high customer rating . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a fair - priced venue located next to Yippee Noodle Bar . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two is an Italian restaurant located on the river that does not cater to families . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop in Riverside near Clare Hall . It serves Japanese food and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers restaurant , located near All Bar One , offers English style foods . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves fast food is near Café Sicilia that has a low customer rating that is not family - friendly and price range is less than £ 20 . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||A kids friendly restaurant named The Plough is located near The Bakers with a price range of £ 20- £ 25 . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||The Giraffe Pub is a great affordable place to order take out for delivery in the centre of the city . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||The Waterman along the riverside is an English pub with a low customer rating . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Lower than average ratings , but conveniently located near the Riverside , close to Café Rouge . The Golden Curry serves Indian food . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies is a restaurant that serves English food . The restaurant is highly priced and is located near The Six Bells . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a three - star family pub that serves sushi . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||Along riverside is The Waterman , it has Fast food with a cheap price range and a customer rating . It is not family - friendly . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is an Indian restaurant near The Sorrento . It is in the city centre and is family friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kids friendly coffee shop in Riverside near Burger King that serves Italian food for £ 20 - 25 . It has a high customer rating . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||The Giraffe in the riverside area is a kids friendly pub that serves English food . \nname : The Mill | Type : pub | food : Italian | price : more than £ 30 | area : riverside||The Mill is a pub in the riverside area that serves Italian food \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is average rated , expensive , located in Riverside . It is children friendly at least . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Taste of Cambridge is a pub located near the River Cam and The Sorrento in Cambridge . It is not suitable for families with small children . \nname : Zizzi | Type : restaurant | price : high | area : riverside||Zizzi is an expensive restaurant by the river . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||In the city center , near The Rice Boat , The Twenty Two is located . There prices are less than £ 20 , its not family - friendly and has a low customer rating . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Near The Six Bells you will find an expensive restaurant called Fitzbillies . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is an inexpensive coffee shop located near The Portland Arms in the city centre . It serves Japanese food and has a customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||Wildwood Japanese food pub has a 5 out of 5 customer rating and is cheap . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a kid friendly French coffee shop in the moderate price range near Café Sicilia with a customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a non - family friendly coffee shop called Taste of Cambridge in the city centre , near Crowne Plaza Hotel , which serves Indian food . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||If you want average price range and child friendly , visit The Waterman . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||Alimentum , located in city centre , serves Japanese food for more than £ 30 and is not child friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||A cheap family friendly pub in the riverside area is The Olive Grove . They serve Italian cuisine . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||Rich families enjoy eating at The Wrestlers , a nice sushi restaurant \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Riverside has a family - friendly restaurant which costs less than 20 pounds . They serve English food , and have a low customer rating . They are called The Waterman . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||The Blue Spice is a cheap coffee shop in the riverside area . It is a family friendly restaurant with an average customer rating located near Avalon . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child friendly high priced fast food and coffee shop near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Italian food coffee shop The Wrestlers has a moderate price range and is not kid friendly . The Wrestlers is located near Raja Indian Cuisine in riverside . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : no||The Twenty Two is not family friendly but offers Chinese food in centre city . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is a pub providing Indian food Its customer rating is average . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , in the riverside area lies The Wrestlers coffee shop which serves Japanese food , is kid friendly with a price range of £ 20- £ 25 . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop providing Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Highly rated and located near the city center , Fitzbillies is a coffee shop that provides Fast food in the L20 - 25 price range . It is not kids friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Near The Portland Arms down to the riverside is Cotto a cheap coffee shop with Italian food , with an average customer rating . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||freshly prepared the Green Man is low priced overlooking the river up the road from All Bar One . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : no||Zizzi is pub serving Italian food . not kid friendly . Rated 5 out of 5 stars \nname : The Rice Boat | food : Indian | area : riverside||The Rice Boat is located by the riverside and serves Indian food . \nname : Loch Fyne | Type : restaurant | food : Italian | price : more than £ 30 | family friendly : yes||There is an Italian based restaurant down the road named the Loch Fyne , I hear it is reasonably priced . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms in the city centre . They have an average rating and the prices are cheap . They serve Indian food . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is Located near All Bar One . It is expensive yet only rated one star \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Situated near Yippee Noodle Bar on the riverfront , north of the City centre , the 3 - star ' Alimentum ' restaurant serves moderately - priced Japanese fare . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : no||The Twenty Two is an Indian sited on the riverside . It isn 't family friendly . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a cheap pub with an average customer rating in the riverside area \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||The Wildwood pub serves fast food at value prices and is rated 5 stars \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||There is a fast food restaurant with low ratings called The Cambridge Blue . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is located near The Bakers serving French food and are family friendly . They have a price range of less than £ 20 \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub that sells Indian food and the price range is less than £ 20 . It is not family friendly and located in the center of the city . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||A Japanese restaurant called The Waterman , is family - friendly with low customer ratings and price range less than £ 20 . It is located in city centre . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The expensive restaurant The Dumpling Tree offers pasta . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop located next to Crowne Plaza Hotel . The Taste of Cambridge is a non family friendly coffee shop . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a low - priced coffee shop located near Café Sicilia that provides fast food . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||Midsummer House offers cheap Fast food near All Bar One . It has been rated average by previous customers . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two , a kid friendly , Japanese restaurant . \nname : The Cambridge Blue | Type : pub | food : Italian | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is an Italian style pub located near Café Brazil . Priced mid range . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||A exceptional high end eatery that serves quick food and is located by All Bar One is named Midsummer House . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a fast food restaurant that is family friendly . It can be found to the north of the city center . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is an expensive , family friendly venue in the riverside area , close to The Rice Boat . It has a customer rating 3 out of 5 . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||Near Café Sicilia in the riverside area is a highly rated pub called The Twenty Two . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop on the river just north of the city center . It 's located due east of the Crown Plaza Hotel . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop offering Indian food in the high price range . It is in the city centre and has a high customer rating , but is not child friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi is a low priced family friendly coffee shop in the riverside area with an average customer rating . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||A French cuisine is provided at the Loch Fyne restaurant , in a family friendly scene . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located next to Express by Holiday Inn is The Rice Boat , offering low - quality pasta to families . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : yes||Located in the city centre is The Olive Grove . It has a high price range and sells English food . It is a child friendly pub . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||By The Portland Arms lies a kid friendly coffee shop , The Cricketers , an Italian restaurant despite having a customer rating of 1 out of 5 \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||With a friendly atmosphere , good service and children welcome , The Twenty Two in riverside , near The Rice Boat , the slightly more than average price is worth it . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low priced coffee shop , located outside of the city centre and offers a mature setting . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant serves English food in the less than £ 20 price range . It is located near the Express by Holiday Inn in riverside an has a low customer rating . \nname : Cotto | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a 5 out of 5 customer rated fast food restaurant situated near Ranch . It is family friendly . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a low rated mid price Italian restaurant . It is family friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne is a fast food restaurant , but is not family - friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a moderate - priced , kid - friendly pub serving Italian food , located near the riverside . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a coffee shop called The Cricketers that provides Indian food . It has a customer rating of 1 out of 5 stars and is located near The Portland Arms . It is kid friendly . \nname : Alimentum | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum in Riverside is a children friendly restaurant that serves food for more than £ 30 . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||There is a pub costing more than £ 30 named Wildwood serving Japanese food with a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Indian food for less than £ 20 . They are located in the riverside area near The Sorrento . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in the city centre , average and family - friendly , The Rice Boat specializes in cheap French cuisine . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||Priced moderately , highly rated Cocum serving Indian food coffee shop style that is not kid friendly . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a kid friendly Chinese restaurant with a 1 out of 5 customer rating . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||If you are looking for something in the price range of less than £ 20 there is a family friendly restaurant called the Travellers Rest Beefeater not too far from here . \nname : The Mill | Type : pub | food : French | price : moderate | area : city centre||A French food serving pub with moderate prices , The Mill is located in the city centre . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : no||Strada is a non - kid - friendly restaurant with a very high customer rating and averagely priced . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a high priced Chinese restaurant with high prices and low customer rating . It is located in Riverside and is child friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Children are welcomed at a coffee shop that serves French food located near the river . It 's called Aromi and has a rating of 3 . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge has an average customer rating , and serves cheap English food . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , a coffee shop near Café Sicilia , offering 3 Star Italian cuisine and Spirits , for a low price for the whole family . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop s near The Portland Arms , although it has a low rating they serve a family friendly French menu with a low rating . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman serves families 5 star pasta , located near the river . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Rated 3 out of 5 , The Eagle is a restaurant on the riverside with a price range of £ 20 - £ 25 . \nname : Cotto | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is a kid friendly 1 star Japanese place near Ranch . It is named Cotto . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves reasonably - priced Japanese food in the riverside area near The Sorrento . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The coffee shop is The Golden Palace with Japanese food in city centre . It 's a moderate price . Their rating is only 1 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||In the riverside area is a Fast food pub that is in the high price range called The Mill . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a non - family - friendly English restaurant with a cheap price range and has a customer rating of 5 out of 5 . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family - friendly restaurant offering British food in the low price range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop is located in the city centre near Burger King . It is a kid friendly moderately price establishment which offers fast food . Customers rate it 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : more than £ 30||The Dumpling Tree is a restaurant providing Indian food in the more than £ 30 price range . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix providing French food in the high price range and 3 out of 5 customer rating . It is located in the riverside area . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a Chinese food establishment located near Crowne Plaza Hotel . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House has Japanese food for 20 - 25 . It 's by the riverside near Clare Hall . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is a low - priced sushi restaurant with terrible reviews . \nname : The Plough | Type : pub | food : French | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced , child friendly , French pub located near Café Rouge . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||Providing Italian food at a price range of less than 20 Euros , The Vaults is also family friendly . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : city centre||In the city centre is The Phoenix with a less than £ 20 price range that serves English food with a low customer rating . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||Near The Sorrento there is a French coffee shop called The Mill . The price range is less than £ 20 and it 's by the riverside . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a one star coffee shop , which is family friendly , serves sushi and is located in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in Riverside near the Crowne Plaza Hotel , is a kid friendly coffee shop which serves Japanese food called Browns Cambridge . This restaurant has earned 3 out of 5 customer ratings . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid - friendly , Japanese restaurant in the range of £ 20 to £ 25 . \nname : Cotto | food : French | near : Café Rouge||Cotto serves French food . It is located near Café Rouge . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||Bring the family and try The Wrestlers . Burgers and fries with a 3 star rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a child - friendly French cuisine restaurant in the city centre area . Be prepared to pay more than £ 30 for this restaurant that has a low customer rating . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Clowns is a One Star coffee shop that sells sushi and is located next to Clare Hall . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : no||The Rice Boat does not allow kids and it 's only a 1 star rating . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||For a high - priced child friendly place with a 1 out of 5 customer rating , try Strada . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family friendly restaurant that has 5 stars and is high priced . It serves wines and cheeses . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man in riverside serves French food , has a more than £ 30 price range , is kid friendly , and is near All Bar One . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , The Wrestlers is a coffee shop which offers Indian food at a moderate price range . It is not ideal for children and is located in the city centre . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman has Chinese food in the moderate price range with a customer rating of 1 out of 5 near riverside . It is not kid friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : no||Alimentum offers French food . It is not child - friendly . The prices are more than £ 30 . Located in the area of riverside \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||The Dumpling Tree restaurant has a price Range of more than 30 pounds selling Japanese food . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace Indian coffee Shop is a moderately priced restaurant located near the riverside . It has received a 3 out of 5 customer rating . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada sells cheap Indian food near Rainbow Vegetarian Café , it is not family friendly and it has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||The Loch Fyne is a French non - children friendly restaurant with a moderate price range . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||In the riverside area there is a pub serving Japanese food led The Waterman with an average customer rating . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : no||The Wrestlers providing English Food , cheap price range , and average costumer rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||In city centre , near The Rice Boat , The Twenty Two is children friendly , more than £ 30 , and has a 5 out of 5 customer rating . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the more than £ 30 price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is high . \nname : Strada | Type : restaurant | customer rating : low||A restaurant with a low customer rating is Strada \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is a highly rated , family friendly pub that offers Indian food . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Phoenix is a fast food venue with a rating of 3 out of 5 and on the riverside . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : 1 out of 5||Wildwood is a pub that offers Indian food . This establishment is in the high price range , with a customer rating of 1 out of 5 . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto does not have good reviews . It offers Sushi . It is located near the Ranch . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||there is a nice fast food place down by the riverside area with a high customer rating called The Rice Boat which is child friendly \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers provides Indian food in the more than £ 30 price range . Its customer rating is high . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a child - friendly Japanese restaurant near the riverside . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat offers Fast Food in the riverside area . It is family friendly and has an average customer rating . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Three out of five customers recommend The Twenty Two . It is kid friendly and moderately price . In the riverside area near The Rice Boat . \nname : Alimentum | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||child friendly yes and ore than £ 30 at the Alimentum which is Italian near the riverside \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||the pub is great . price range is moderate . and the food is Italian . Also it is the Wildwood . nice name and a nice rating of 3 out of 5 \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a cheap coffee shop in the price range less than £ 20 . It is located in the city centre near the Café Sicilia and it is family - friendly . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Phoenix , found near riverside provides Japanese food at a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||Near The Sorrento , you can find a coffee shop called The Mill . The Mill serves sushi in the mid - price range . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is near The Bakers . It is a children friendly high priced coffee shop with a 1 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a children friendly coffee shop in the riverside . It serves French food with price range more than £ 30 and is highly rated with ratings 5 out of 5 . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the city centre near the Express by Holiday Inn and serves Indian food for less than £ 20 . However it is not family friendly and has a low customer rating \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry has English food and is child friendly . It has a high price range and is child friendly . It is located near The Bakers . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||A high priced coffee shop , located next to The Bakers , is Giraffe . \nname : The Vaults | food : Chinese | price : £ 20 - 25 | family friendly : yes||The Vaults is a kid friendly place offering Chinese food from 20 - 25 Euros . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||A family friendly restaurant called Strada located near Rainbow Vegetarian Café . It has low prices and a low customer rating . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||If you are looking for French food and are willing to spend more than 30 Euros , you should try Browns Cambridge because it has a 5 out of 5 customer rating . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||You can get cheap French food at The Phoenix , but the ratings are low as well . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is located on the riverside near The Sorrento . It serves Indian food and is not family friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : cheap | family friendly : yes||A family friendly restaurant named Loch Fyne has Indian food . It also has cheap prices . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop has highly expensive Fast food , and it is not kid friendly . It is in the area of riverside and near Raja Indian Cuisine . \nname : The Waterman | price : less than £ 20 | family friendly : yes||If you are looking for a venue to take your family , then you could try The Waterman . It also has a below average price range of less than £ 20 . \nname : The Mill | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop providing Indian food in the low price range . It is located near The Sorrento . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a moderately priced restaurant in riverside near All Bar One . It is not family - friendly but they serve English food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately priced coffee shop in the riverside area . It serves Fast food in a kid friendly environment , but only has a 1 out of 5 customer rating . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||Taste of Cambridge restaurant for average customer Rating in high price Range \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat providing fast food near The Rice Boat . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located near the Express by Holiday Inn at the city centre , has low customer ratings ; however boasts an adult atmosphere with affordable English food . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a non family - friendly fast food restaurant near Crowne Plaza Hotel . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||Ranch is located near the low rated , children friendly pub called , The Cricketers \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a five - star family restaurant alongside the river called The Rice Boat . This venue serves cheese , wine , and soup , among other dishes . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub near Ranch . It has a low customer rating . \nname : The Twenty Two | food : Japanese | family friendly : yes||If you 're looking for a family - friendly Japanese venue The Twenty Two has you covered . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||Family friendly restaurant The Wrestlers high price menu , low quality food . \nname : The Golden Curry | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge in the riverside area , The Golden Curry is an average customer rated fast food restaurant . It is family friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||Zizzi is an Italian - inspired pub that offers a family - friendly environment . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||There is a place near All Bar One in the city centre area that sells Chinese food for less than 20 that is also family friendly which is called Green Man . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||One 5 star rated restaurant is The Cambridge Blue . \nname : The Golden Curry | food : Indian | price : high | family friendly : yes | near : The Bakers||The Golden Curry that serves Indian food near The Bakers . A high price range restaurant that is also kid friendly . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Fast food is found in the children friendly The Golden Curry , near Café Rouge in the riverside area . Customers have given it a high rating . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||Located near Ranch , The Cricketers , is an overly priced pub that the whole family will enjoy . \nname : The Golden Curry | food : Japanese | price : cheap | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry is a family friendly Japanese restaurant with a cheap price range . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||There is a kid friendly restaurant with moderate prices named Travellers Rest Beefeater . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : no | near : The Bakers||Giraffe is a coffee shop that has a high customer rating and is priced in the L20 - 25 range . It is located near The Bakers and is not kids friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||On the river , there is a pub named The Waterman , \nname : Strada | Type : pub | food : Chinese | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a Chinese pub with a customer rating of 1 out of 5 near Yippee Noodle Bar . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Fitzbillies restaurant near The Six Bells sells cheap food . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||A coffee shop located on the riverside near Café Sicilia named The Dumpling Tree is kids friendly and has a moderate price range . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns , a low - price , riverside pub , is the place to be , as shown by its stellar 5 out of 5 star customer rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : riverside||The Waterman is a pub style type of restaurant serving Indian food , has received an average customer rating , and is found in the Riverside area . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre||In the city centre you can find an expensive , and somewhat disappointing to customers , French coffee shop called The Golden Palace . n \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a great coffee shop providing fast food in the riverside area at a cheap price . Rated 5 out of 5 . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter serves Japanese and costs more than 30 . \nname : Clowns | Type : coffee shop | food : French | customer rating : high | area : riverside | near : Clare Hall||There is an amazing coffee shop serving French food in the riverside area , Clowns . Clowns is located near Clare Hall . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a low - priced family friendly restaurant located near The Bakers called The Plough . \nname : Blue Spice | price : high | area : riverside||Blue Spice is at the riverside , it has a high price range . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop that does Fast food , their price range is high and they are not child friendly . They are in the Riverside area and have an average customer rating . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||There is a expensive fast food pub near Café Rouge that is child friendly . It is named The Plough . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The expansive restaurant The Dumpling Tree serves English food . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre , near Express by Holiday Inn , there is a moderately - priced fast food establishment called The Rice Boat . It is not kid - friendly , and customers rated it 1 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a riverside Italian near The Rice Boat . Customers rate it 3 out of 5 . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a children friendly place who is highly rated by customers . With a price range of over 30 euros , it is located near The Rice Boat in the riverside area . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : yes | near : Café Rouge||Located near Café Rouge , The Plough is a pub which serves Indian food . It a place suitable for children , but has a high price range . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||The expensive Wildwood serves Italian food . This coffee shop near Ranch is poor has a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||A 5 star Japanese pub near the riverside is called The Waterman . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||A cheap restaurant near Express by Holiday Inn near the city centre is The Rice Boat . It is not family - friendly , serves French food , and has a customer rating of 5 out of 5 . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||in the riverside area The Waterman is a French food place that is not child friendly but it is cheap and has a 5 out of 5 customer rating \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cute coffee shop serving French food . The prices are average and the coffee shop setting is child friend . You will find The Eagle in the riverside area near Burger King . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a Fast food restaurant located near the Express by Holiday Inn , called The Rice Boat . Although the restaurant has a high customer rating , it is not kid friendly and has a price range more than £ 30 . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||There is a low - priced pub The Waterman near the city centre . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is near the Rainbow Vegetarian Café and provides cheap Chinese food with a low customer rating . It is family friendly . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is an expensive restaurant , that is family friendly . \nname : The Eagle | food : Chinese | customer rating : 1 out of 5||The Eagle provides Chinese food Its customer rating is 1 out of 5 . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||There is a Pub named Wildwood serving French food for no more that £ 30 with a customer rating 5 out of 5 \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes||Aromi is located in the city centre area but have a low star rating . \nname : The Vaults | Type : restaurant | food : Italian||For an Italian food restaurant , try The Vaults . \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill near The Sorrento . Delivers a coffee shop by the riverside for just 20 - 25 euros and Japanese cuisine . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||Serving fast food in a child friendly setting The Dumpling Tree is situated near The Portland Arms . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a moderately priced venue called The Rice Boat that provides Indian food in the city centre . It is not kid friendly and has a customer rating of 1 out of 5 . It is located near Express by Holiday Inn . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat offers Fast food in the riverside area . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a 1 star , family friendly Café providing high priced range . It is located in the city centre . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : no||A Chinese restaurant in the city centre , The Rice Boat has average customer rating and is not family friendly . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||You can sample British dishes at Browns Cambridge , a five - star restaurant in the mid - price range near a school . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers has an average customer rating , is a family friendly environment and serves Japanese food for less than £ 20 . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a family - friendly restaurant located in the city center that serves English food for under £ 20 . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||There is a child friendly Indian restaurant with high ratings near the riverside called The Rice Boat . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a customer rating of 3 out of 5The Rice Boat is kids friendly in the riverside area serving French food \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is located a short distance from St. John 's College and is a great burger joint where a family can eat inexpensively . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop that serves fast food in riverside . it is family family friendly with an average customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||A family friendly English restaurant is Loch Fyne . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||All Bar One has a place near it called Cotto with some cheap prices . Both are located on the riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In the city centre is located a cheaply priced but highly rated coffee shop . It is called Fitzbillies , serves Indian food , and is family friendly . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||If you are in the Riverside area , try The Eagle , a high - end coffee shop , located near Burger King . At £ 30 and above , its menu is a bit pricey , but its 5 out of 5 customer rating proves that its delectable , children - friendly French food is well worth every penny . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||This business is NOT children friendly with a price range of more than £ 30 . Called The Wrestlers , this restaurant serves French cuisine and has earned a 5 out of 5 customer rating . \nname : Cotto | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto , near Ranch , serves Chinese food in a family friendly setting . Customers have rated it 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies that serves fast food in a coffee ship style that is not very kids friendly , however it is rated high , is located in the city center and is averagely price . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Offering cheap English food , the Strada is located near Rainbow Vegetarian Café . It has an average customer rating . It is not family - friendly . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice is by the riverside and the price range is £ 20 - 25 . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||Taste of Cambridge is a restaurant where the price range is more than £ 30 . It has a low customer rating . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Located near Avalon in the riverside area , Blue Spice is a kids friendly coffee shop with a price range of £ 20 - 25 . It has a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an average coffee shop serving Indian food in a child friendly environment . It is located on the riverside near the Crowne Plaza Hotel . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . It is a high priced restaurant with low customer ratings . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is low rated restaurant that serves Italian food and is family friendly . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a moderately priced Chinese restaurant that received a 1 out of 5 customer rating , and is not kid friendly . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Blue Spice is children friendly with an average customer rating . It is in the riverside area with a high price range . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||For English food in a family friendly atmosphere , visit Browns Cambridge in the riverside area near The Sorrento . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Conveniently located on the riverside , close to Raja Indian Cuisine , The Wrestlers is an elite , but family friendly established coffee shop . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Bibimbap House offers fast food in the riverside area , near The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||For cheap French food , Fitzbillies in the city centre is low - rated but family - friendly . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers has a high customer rating , it is located near Ranch . yes it is a kids friendly pub \nname : The Punter | food : Chinese | price : cheap||Cheap Chinese food is on offer at The Punter . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||There is a restaurant called The Cambridge Blue that has Japanese food and a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : high | near : Café Brazil||The Cambridge Blue is a pub that provides Chinese food in the high price range . It is near Café Brazil . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Expensive French food can be found at Browns Cambridge , which has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : less than £ 20 | area : city centre||There is a pub called The Mill that serves fast food for under 20 pounds in the city centre . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located riverside near Café Rouge . It is Fast food and kids - friendly . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum has Indian food in the price Range of more than £ 30 , with a high customer Rating , in the city centre area near Yippee Noodle Bar . \nname : Loch Fyne | food : Chinese | customer rating : low | area : riverside | near : The Rice Boat||You can find Chinese food in the riverside area near The Rice Boat at Loch Fyne , but it has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : no||Loch Fyne is a family friendly restaurant specializing in delicious Indian for low prices . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : yes||In city centre there is a family friendly Chinese restaurant called The Twenty Two . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop styled joint that sells delicious Indian food . This highly regarded establishment is located in the riverside area near Clare Hall . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is kids friendly , near Café Sicilia and in the average price range for Cambridge . \nname : The Punter | food : French | price : less than £ 20||The Punter is a restaurant that serves French cuisine for less than 20 pounds . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : yes||Alimentum provides Indian food in the high price range . It is located in the city centre . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is an coffee shop that serves Italian food in the £ 30 and above price range that is not child friendly which has a high customer rating and you can find it near the Café Sicilia \nname : The Twenty Two | food : Italian | family friendly : yes||An Italian eatery , The Twenty Two also is kid friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||There is a cheap restaurant Loch Fyne located in the centre of the city that provides Italian food . \nname : Midsummer House | food : Indian | customer rating : 3 out of 5 | near : Café Rouge||Three out of five star rating for the Midsummer House , and Indian eatery near the Café Rouge . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : no||The non family friendly Indian , The Golden Curry , has a 5 out of 5 customer rating . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||A high - rated , kid friendly restaurant with a price range of £ 20 - 25 near The Rice Boat is The Twenty Two . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no||A Pub in the city centre that serves Chinese food is The Olive Grove . Moderately priced , however , not appropriate for kids . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Near Café Rouge you can try the average Wildwood restaurant . \nname : The Punter | food : English | price : more than £ 30||The Punter serves English food . There price range is cheap . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House is a average rated Italian restaurant near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a child friendly Italian coffee shop near Burger King called The Eagle . It is highly rated with a price range more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The riverside area has a restaurant called The Wrestlers which offers a coffee shop and Indian food . It is located near the Raja Indian Cuisine . Prices are in the high range . It is not child friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||family - friendly coffee shop Zizzi is located in the city centre . It has a price range of less than 20 and has a low customer rating . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||It has an average customer rating and is a kid friendly coffee shop near The Bakers . With a high price range names Giraffe \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Pub that serves Chinese food , kid friendly , near The Portland Arms \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat in the riverside area is a kid friendly fast food provider with a customer rating of 1 out of 5 \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies , a coffee shop located near riverside , serves French food . The Price is less than L20 , is not too kid friendly and has a low customer rating . \nname : The Olive Grove | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub that serves Indian meals for £ 20- £ 25 and is located on the riverside . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum is a Japanese food restaurant located in the city centre near Yippee Noodle Bar . It has a low customer rating and a price range of more than £ 30 . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||Giraffe is a moderately priced restaurant located near The Six Bells . \nname : Green Man | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a place to grab some Indian food if you happen to be by the riverside . It 's pretty close to All Bar One and is children friendly . The food costs a little more than average here though . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves moderately priced Indian food rated 1 out of 5 stars . It is located in riverside near Express by Holiday Inn . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : moderate||The Dumpling Tree is a moderately priced Chinese restaurant . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves English food . It is located near Rainbow Vegetarian Café in the city centre . It is family friendly , has a medium price range , and has received poor reviews . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||A children friendly venue with a customer rating of 3 out 5 is called The Golden Curry . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located near Raja Indian Cuisine at riverside providing fast food . Its price range is £ 20 - 25 and it is kids friendly . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a children friendly restaurant near Express by Holiday Inn . They are an above average price range restaurant with high customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults , located near Café Brazil , is a high end coffee shop . It is rated 5 stars . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a cheap and family - friendly coffee shop providing Fast food . It is located in the city centre and has a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a five star coffee shop offering fast food . It is family friendly and in the mid price range . It is located close to the river . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : no | near : All Bar One||Near the All Bar One in the riverside is the Green Man which is high - priced , not children friendly and serves fast food . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||If you like a great adults only coffee shop , Blue Spice is riverside near Avalon . Customers rate it 5 out of 5 and prices are cheap . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman doesn 't have very good reviews , however , it is quite cheap . It serves Japanese food . It is found on the riverside . It isn 't family - friendly . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop with a 5 out of 5 rating . It sells French food by the Burger King in the city centre , you can bring your kids and get a cheap meal . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a child - friendly riverside pub serving fast food . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre||The Golden Palace is a centrally located coffee shop serving Italian food . It has customer reviews rating it as average and it is high priced . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : city centre||The Mill is a cheap English pub located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace coffee shop , five star and well priced shop \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly French coffee shop in the riverside area , near Crowne Plaza Hotel . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located near the city centre , Aromi is a highly rated family - friendly Japanese coffee shop . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Brazil||There is a coffee shop in the city centre near Café Brazil with an average price range . It is called The Vaults and has a high customer rating . \nname : Loch Fyne | food : Indian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a highly rated restaurant specializing in Indian Cuisine . It is located near The Rice Boat in the riverside area . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Next to All Bar One is Midsummer House . It is a Japanese restaurant that is great but pricey . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||Your average child friendly coffee shop and Italian food named The Cricketers is near The Portland Arms . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two is a UK restaurant located in north city near the river and not for family . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||A French coffee shop near Clare Hall in the riverside area with 3 out of 5 ratings is Clowns . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is children friendly and costs more than £ 30 . It 's ranked 5 out of 5 and located near The Rice Boat , riverside . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : £ 20 - 25||The Dumpling Tree is a restaurant providing Indian food in the £ 20 - 25 price range . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man is a high price range restaurant in riverside area . It is kids friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||Situated next to The Portland Arms , is a coffee shop The Cricketers serves Japanese - style food . This adults only coffee shop receives 1 out of 5 stars from customers . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat , providing family friendly oriental food close by the city centre . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a kid friendly pub , in riverside , that serves Italian . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman with 1 out of 5 stars serving up Italian food high prices within the city center . no children welcome \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||At the riverside , there is a pub called The Waterman which serves Japanese food which has a low customer rating . \nname : Green Man | food : Indian | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man serves Indian food is children friendly and has a high price range . It is located by the riverside near All Bar One . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : no | near : Café Rouge||The Plough is a moderately - priced English restaurant located near Café Rouge . It is not child friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is The Rice Boat . It has a customer rating of 3 out of 5 and offers a moderate price range . It serves Italian food and is child friendly . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||The average customer rated restaurant is The Cambridge Blue . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||In riverside there is a family friendly place called The Blue Spice . It has an average rating and is priced less than £ 20 . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is moderately well rated and is near The Rice Boat . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a cheap family - friendly fast food coffee shop in the city centre near Burger King . They are family - friendly with a 5 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||There is a coffee shop The Golden Palace that is low - cost in city centre . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House serve moderately priced fast food in the riverside area , located near Clare Hall \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||In the city center there is a 3 star rating coffee shop , that goes by the name , The Golden Palace . They serve average priced Chinese food . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is located near the Rainbow Vegetarian Café and has rating 3 out of 5 . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a family friendly riverside area in the higher price range . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is a good family and friend Italian food with a low customer rating \nname : The Phoenix | food : Japanese | customer rating : 1 out of 5 | area : riverside||In the riverside area serving Japanese food and rated 1 out of 5 is The Phoenix . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is a Thai restaurant with a so - so rating near Café Rouge , called The Golden Curry . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop offers French food in moderate price range . It is located in the city centre near Raja Indian Cuisine . Children are not welcome . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a family friendly coffee shop called The Cricketers that serves Indian food . It doesn 't have a very good rating \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a French coffee shop The Eagle with excellent customer rating . It is located in the city centre near Burger King , cheap and family - friendly . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is an Indian restaurant with a high customer rating that costs more than 30 pounds . It is located near Yippee Noodle Bar in the city centre . \nname : Bibimbap House | food : French | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House serves French food located near Clare Hall in the city centre . The price range is less than £ 20 . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||The Midsummer House near All Bar One serves French food Costing around £ 20 - £ 25 rated 3 out of 5 \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop for sushi food , we 're placed near Raja Indian Cuisine at City centre . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : no||Giraffe is a pub that provides Indian food It is located in the riverside . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||The French food at Blue Spice by the River side is more than £ 30 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes||A family - friendly Italian coffee shop , Aromi , is located in the city centre and has an average customer rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located in the riverside , near Express by Holiday Inn , serves cheap Chinese food . It is not family friendly but has a customer rating of 5 out of 5 . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter is a Japanese restaurant with food priced £ 30 and up . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a French coffee Shop near Café Sicilia with an average rating . The price range is average , and it isn 't family - friendly . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Regularly priced coffee shop Cotto is located near The Portland Arms in the city centre .. It is a coffee shop , rated 3 out of 5 and serves French Food . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||Cheap low rated pub , The Vaults , is located near Café Adriatic . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||There is a child friendly Chinese restaurant called Loch Fyne . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located near Raja Indian Cuisine that serves pasta in the low price range . Public restrooms available . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Providing French food in the moderate price range , The Rice Boat is a kid - friendly French restaurant with a customer rating of 1 out of 5 . It is located in the riverside by Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a French coffee shop that is located in the city centre near Burger King . It is family - friendly , the price range is high , but it has a 5 out of 5 customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle is located in Riverside with a 5 out of 5 customer rating . It is in the high price range . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is Japanese , is located in riverside , has a low customer rating and is children friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The French food serving coffee shop known as The Wrestlers is located near Raja Indian Cuisine on the the riverside . They cost between £ 20- £ 25 . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The Alimentum is a 5 star restaurant . It is located near the Yippee Noodle Bar . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a cheap family friendly restaurant in the riverside area . It has a 5 out of 5 customer rating , and is located near The Rice Boat . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a family friendly coffee shop with a one star rating . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry a nice place to eat at a mid - range price , suitable for families and near The Bakers . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Italian restaurant , Green Man is located near All Bar One in the riverside area . It is not family - friendly and prices are under £ 20 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||French food is the specialty served at The Rice Boat . The prices are above average . It is not a children friendly restaurant . The customer ratings are poor . It is located in the riverside area near Express by Holiday Inn , \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that provides Chinese food It is near The Portland Arms . \nname : Blue Spice | food : Indian | price : moderate | area : riverside||There is a moderately - priced Indian restaurant by the riverside , called Blue Spice , \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a low rated , child friendly pub in the Riverside area . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : yes||There is a fast food restaurant located on the Riverside which has a low customer rating . It is called The Rice Boat and it is family friendly . \nname : Aromi | Type : restaurant | food : English | area : riverside||The Aromi is a restaurant located near the riverside . It serves English food . \nname : The Twenty Two | food : Italian | family friendly : yes||Family friendly restaurant The Twenty Two , includes Italian food in it 's menu . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne located near The Rice Boat in Riverside is high rated Italian food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||For cheap fast food in the city centre , Fitzbillies is a family friendly . The coffee shop has been rated 1 out of 5 stars . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre is a Japanese restaurant named The Waterman . It is not kid - friendly with prices of more than £ 30 and with a customer rating of 5 out of 5 . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : riverside||There is a low priced fast food restaurant The Phoenix with a 3 - star rating located north of the City center . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : no||Zizzi is a great pub serving fast food \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||A French restaurant called Midsummer House has a price range of more than £ 30 . It is located near All Bar One and has a high customer rating of 5 out of 5 . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a pretty expensive fast food family restaurant with a three - star rating . It is located near the Rainbow Vegetarian Café . \nname : The Cricketers | Type : restaurant | food : Fast food | near : All Bar One||The Cricketers restaurants serves fast food and is near All Bar One . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , you can find excellent Japanese food at the Strada . Prices start from £ 20 - £ 25 , no children allowed . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Near Ranch there is a fast food restaurant named Wildwood . They have an average customer rating , however the coffee shop 's cheap prices make up for it . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||For a restaurant with Japanese food consider The Cricketers , located near All Bar One \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The child friendly French coffee shop near Café Sicilia with low customer rating and prices more than £ 30 is The Punter . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : no||Cocum is a non - family - friendly restaurant with a customer rating of 5 out of 5 . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||There is a kids friendly English food place near Café Rouge called The Golden Curry in the area of riverside . It has a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||For Italian food , try Fitzbillies , with an average customer rating and a cheap price range , it is a family - friendly coffee shop \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix is in the city centre area . They have a low customer rating and serve Japanese food . The prices are more than £ 30 . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix providing Fast food . It is located in riverside area . Have 3 out of 5 costumer rating and medium low price . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is an average rated , non family - friendly coffee shop that serves French food and is located in the city centre near the Crowne Plaza Hotel , called Browns Cambridge \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly coffee shop located near The Portland Arms . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is a high rated restaurant providing quality food with a medium price range . It is located near Café Adriatic . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a cheap Italian coffee shop located in city centre . \nname : The Waterman | Type : pub | food : French | customer rating : high | area : riverside||The Waterman pub at the the riverside has a high customer rating for French food . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is situated near to the Rainbow Vegetarian Café . It offers prices between £ 20 - 25 and the customer rating is 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Aromi is a coffee shop that offers Indian food with high costumer ratings . It is kid friendly and is located in the riverside area . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman offers English food . It has high customer ratings and prices . It is family - friendly \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Located next to Café Rouge , north of the City centre , The Golden Curry is a family restaurant with good rating . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||The family friendly pub Giraffe serves Chinese on the riverside . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children friendly coffee shop near Avalon , by the riverside . Their prices are average and their customer ratings are high . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : city centre||The Phoenix is a Fast food restaurant rated 5 out of 5 in the city centre . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice is inexpensive and is located on the river . It offers place to sit down and it serves breakfast food . It is located north of the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||A French coffee shop named Fitzbillies is near a riverside . It is kid friendly , is priced 20 - 25 , and is highly recommended . \nname : Blue Spice | food : Indian | price : high | area : city centre||In city centre , there is an Indian food place in the high price range called Blue Spice . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum sells modern delicacies of middling quality , but low prices . They are located near the Yippee Noodle Bar on the River . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a restaurant which does not accept families and is middle price range . It located close to The Bakers \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi provides a unique taste of Italy within the City 's Centre . Rated 5 - stars , the atmosphere tailors to all varieties of age . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers serve English food that is highly priced and rated low . It is not child friendly . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood is a one star restaurant located near Café Rouge \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||rated average by customers , the places name is The Waterman in the riverside area , This is a Italian pub . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located in the city centre , near Rainbow Vegetarian Café Strada is a family friendly fast food restaurant in the medium price range with three of five stars . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : city centre||The Phoenix has an average customer rating . It is located at the city centre with French food with price range less than 20 . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Japanese food place , ' The Golden Curry ' , is located near Café Rouge by the riverside . The customer reviews are average and the place is not family - friendly . \nname : Wildwood | Type : pub | food : Italian | price : more than £ 30 | customer rating : high||Located in the city centre there is a high - priced pub called Wildwood . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||If you 're looking for highly rated sushi bar , check out Strada . It is located near Yippee Noodle Bar . \nname : Blue Spice | food : French | price : moderate | area : riverside||At riverside is a moderate priced location called Blue Spice that offers French food . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Close to Rainbow Vegetarian Café is the affordable restaurant The Rice Boat . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada restaurant has a low customer Rating with meals costing more than 30 and his children Friendly . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , in City Centre near Express by Holiday Inn , offers fast food at moderate prices for the whole family . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a Japanese food place that is not kids friendly located in the city centre . \nname : Zizzi | Type : pub | food : French | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a French pub that is kid friendly and has received a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree coffee shop has a moderate price range . It is family - friendly , in the city centre and located near Café Sicilia . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||There is a cheap venue that is 3 stars and cheap . It is called The Wrestlers . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||There is a cheaply priced English restaurant located in the riverside area that is very family friendly called Alimentum . \nname : Bibimbap House | food : Indian | area : riverside | near : The Rice Boat||Bibimbap House is an Indian restaurant in Riverside , near The Rice Boat . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is an Indian restaurant and coffee shop near The Portland Arms . It has received low ratings from customers and is not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue is a five - star restaurant serving wine and hors d 'oeuvres . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop and expensive dine in family restaurant that has 5 star reviews . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge near Crowne Plaza Hotel in the riverside area is an Italian coffee shop and child friendly \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada has a price range of £ 20 - 25 . It is kid friendly with a high rating . \nname : The Twenty Two | food : French | area : city centre | family friendly : no||The Twenty Two is located in the city centre . It serves French food but is not family - friendly . \nname : Cotto | food : English | near : Café Rouge||Near to the Café Rouge is Cotto , they serve English food . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Children friendly Fast food restaurant Loch Fyne has a price range of more than £ 30 . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||By the riverside and next to the Café Rouge is the French Pub the Green Man . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kid friendly restaurant in the Riverside area . It serves fast food and is located near The Sorrento . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre that serves French food with high customer ratings and is in the £ 20- £ 30 price range and it is not child friendly \nname : Blue Spice | food : English | price : high | area : city centre||There is a high priced English place in the city centre named Blue Spice . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Near the All Bar One in city centre is the family - friendly Green Man restaurant , which offers a moderately priced English fare . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||There is a five star child friendly coffee shop The Punter located near to the Café Sicilia . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is an expensive kid friendly pub with a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop is not family - friendly and is priced in the less than 20 pound range . They serve French food near the Raja Indian Cuisine and the city center . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a purveyor of delicacies which caters to families . It 's located on the River near the All Bar One . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a family - friendly riverside restaurant situated eat the Express by Holiday Inn which offers affordable dishes \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle , an Italian coffee shop in the riverside area near Burger King is child - friendly with a high price range but an average rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop has 5 star pasta and family dining , located near Crowne Plaza Hotel . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is an Indian restaurant that has a high customer rating and it has a price range of £ 20 - 25 . It is near the city centre and is not kids friendly . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : city centre||The Mill is a pub that offers Italian food for less than £ 20 and is located in the city centre . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||At a fair price , The Phoenix offers Sushi just beside the river \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a family - friendly French coffee shop in the city centre . It has a customer rating 5 out of 5 . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||Although it has a low customer rating , The Vaults coffee shop offers products for less than £ 20 and is near Café Brazil in riverside . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has poor customer ratings . They are near Café Adriatic in riverside with moderate priced food . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Wildwood is a Japanese pub with a customer rating of 3 out of 5 . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||The Giraffe serves fast food in a kid friendly , pub style setting . It is located in the riverside area . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a kid friendly restaurant that serves English food . The prices are moderate . It is near The Bakers . \nname : The Rice Boat | food : Indian | area : riverside||The Rice Boat is an Indian restaurant near the riverside . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies has Fast food . It is located near The Six Bells . The price range is cheap . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Wildwood is a 5 star pub that serves sushi . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There is a coffee shop that serves Indian food located in riverside . It is called Fitzbillies and its prices range more than £ 30 . It is child friendly and has a high customer rating . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : no||Zizzi is a non - family friendly Chinese pub with 5 out of 5 customer rating . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a high price range and an average customer rating . It is in riverside near Café Adriatic \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : no||The Wrestlers have high priced Chinese food . The customers rate it average . It is not children friendly . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies is cheap in price . It is located Rainbow Vegetarian Café . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an English food restaurant that is family friendly . It can be found near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||A Chinese food restaurant that is family friendly is Loch Fyne . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop where you can get Indian food . Prices range from £ 20 - 25 . They have a high customer rating . Children welcome . Situated near Café Sicilia . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a family friendly , cheap five - star cheese and wine restaurant called The Waterman near the river . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults Italian restaurant is inexpensive with a price range of less than £ 20 , and is not family - friendly . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a reasonably - priced coffee shop just east of Café Sicilia . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two near The Rice Boat in the city center has a moderate price range and an 1 out of 5 rating . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : no||In riverside , Alimentum serve French food , are not kid friendly , and have a moderate price range . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||Zizzi is a pub that welcomes your whole family by serving wine and whiskey to whet your appetite while your little ones get to enjoy the food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||there is a low price coffee shop named Fitzbillies located in riverside that serving Japanese food with a customer rating of 5 out of 5 but not family - friendly \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is a cheap coffee shop located in the city centre near Café Brazil with a customer rating of 5 out of 5 . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : riverside||At Blue Spice in riverside you can eat Indian food for less than 20 pounds . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kid - friendly Italian restaurant in the moderate price range located in the riverside area near All Bar One . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||A family restaurant near the centre of the city is the Alimentum . It is high priced . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Waterman is a pub providing Chinese food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : Alimentum | food : French | price : high | area : riverside | family friendly : yes||Alimentum serves expensive French food . It is kid friendly and is at the riverside . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop , with a customer rating of 5 out of 5 . It serves Indian food and is located near The Portland Arms \nname : Midsummer House | food : Indian | customer rating : average | near : Café Rouge||Midsummer House provides Indian food It is near Café Rouge . Its customer rating is average . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop providing Indian food in the moderate price range . Its customer rating is 1 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||For a moderately priced coffee shop The Dumpling Tree is a kid friendly venue with riverside views situated close to Café Sicilia . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum has an average customer rating and serves English food at a high price in the riverside area near Yippee Noodle Bar . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is a family friendly French restaurant by the riverside . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : no||Loch Fyne is a Chinese restaurant with a low range of less than £ 20 per meal . It is not family friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Cocum is an expensive , five star , family friendly coffee shop . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The casual , family friendly Strada has English style offerings , is close to Rainbow Vegetarian Café and is frequently reviewed by customers . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly coffee shop with French food . Located in the riverside area near Raja Indian Cuisine . The price range is £ 20 - 25 . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||There is a family restaurant called The Golden Curry which serves spaghetti . \nname : The Vaults | food : Indian | price : high | family friendly : yes||There is an expensive but child friendly Indian restaurant The Vaults \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop located at the end of the city close to Clare Hall \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is Strada . Strada sells Italian food at moderate prices and is child friendly . It has been rated 1 out of 5 . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge receives 5 out of 5 stars on their cheap English food . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Family friendly , with average customer Ratings , Cotto is near Ranch and serves Italian food . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : no | near : Café Sicilia||With an average price is less than £ 20 , The Dumpling Tree is not very family - friendly . The coffee shop is located in the city centre area near Café Sicilia . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Bring your kids to the Italian restaurant , The Rice Boat . Located at the city centre , near Express by Holiday Inn , The Rice Boat is moderately priced and rated 1 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||Taste of Cambridge is a high customer rating restaurant with a price range of £ 20 - 25 . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is situated near the Yippee Noodle Bar in the Riverside area and serves English food , costing £ 30 or more . Its customer rating is high . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Though the price is high , it is still near All Bar One , which makes it quite convenient . Green Man is located in riverside , and is a family friendly location providing Italian cuisine . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a Chinese restaurant located in the city center . It 's very reasonably priced as well . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne , rated an outstanding 5 out of 5 by customers , is located near The Rice Boat in a riverside setting . You 'll find Italian style cuisine at this popular venue . \nname : The Golden Curry | food : Italian | price : more than £ 30 | family friendly : yes | near : The Bakers||Near The Bakers there is a child friendly Italian restaurant called The Golden Curry in the more than £ 30 price range \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Welcome to the Browns Cambridge . We are not family - friendly . Our food is French , and we are located on the riverside near the Crowne Plaza Hotel . Our price range is moderate . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a Japanese restaurant with a 5 out of 5 rating located in the city centre near The Rice Boat . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||North of City centre , on the shores of the river , sits The Phoenix . The Phoenix is an inexpensive wine and cheese shop with a five star rating . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||At the riverside close to Rainbow Vegetarian Café is high priced pub named The Golden Palace . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a fast food restaurant near Café Brazil . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a high priced coffee shop named Cocum that is family friendly with a low rating . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||There is a family friendly restaurant with cheap prices and low customer ratings Strada . They are in the city near Rainbow Vegetarian Café . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice is a cheap sushi restaurant on the River . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : no||Alimentum offers French food . It is not child - friendly . The prices are more than £ 30 . Located in the area of riverside \nname : The Vaults | Type : restaurant | food : Indian||If you 're looking for an Indian restaurant , try The Vaults . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop located within walking distance of Crowne Plaza Hotel . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The Portland Arms is near Cotto , a high priced coffee shop serving fast food with a 1 out of 5 rating . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||With a price range of less than £ 20 , Zizzi is a coffee shop located in the city centre with a low customer rating and is not child friendly . \nname : Midsummer House | food : Indian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is an Indian restaurant with a 1 of 5 customer rating . It is located near Café Rouge . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House serves Japanese food that is less than 20 and is at the city centre near Clare Hall . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop located near to The Portland Arms . It serves French food , is child friendly and has a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||If you are searching for a not family - friendly French coffee shop , The Browns Cambridge might be for you . It has a quite low customer rating and is near the Crowne Plaza Hotel and the city center . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill , a French coffee shop , offers low - cost prices and is near The Sorrento and riverside area . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||French cuisine with a high customer rating at Loch Fyne , located in the riverside area near The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a city centre coffee shop which serves fast food . Prices are high and children are not permitted . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||For moderately priced Italian food , Browns Cambridge is given a single star . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||Located near Avalon in the riverside area , Blue Spice is a coffee shop that offers a childless atmosphere with high prices and high customer ratings . \nname : The Twenty Two | food : Italian | family friendly : yes||A child - friendly Italian restaurant is The Twenty Two \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||On the riverside , there is a kid friendly , Japanese coffee shop called Fitzbillies . It has a 3 out of 5 rating and some moderate prices . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn in Riverside is a high priced English eating establishment . It is not child friendly and has been awarded a customer rating of 1 out of 5 stars . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||the Alimentum is a cheap Fast food place with average customer ratings which is near the Yippee Noodle Bar in the city centre \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop located in the city centre near The Portland Arms . It has an average rating and costs less than £ 20 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Brazil||In the city centre , near Café Brazil , there is a coffee shop called The Vaults . It is in the high price range and has a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is a cheap sushi restaurant with bad reviews . \nname : The Golden Curry | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : The Bakers||For a family friendly restaurant , try The Golden Curry . Located near The Bakers , prices range from £ 20- £ 25 . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a fast food restaurant with a moderate price range , a customer rating of 3 out of 5 and is not kid friendly . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : average||A cheap Indian restaurant named Browns Cambridge has an average customer rating . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a Indian restaurant that has moderate Price and no friendly to The Bakers \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop on the riverside that serves Japanese food with a high price range . It is located near The Portland Arms and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix is an average English place located in riverside . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is near the Yippee Noodle Bar in the riverside area . It serves English food for around £ 20- £ 25 and it has a high customer rating . \nname : The Punter | food : Japanese | price : more than £ 30||For more than 30 you can get Japanese food at The Punter . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat offers cheap English food in Express by Holiday Inn in city centre . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre area is the kid Friendly The Rice Boat , it has Indian food in the moderate price Range and a Rating 1 out of 5 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a French restaurant situated on the riverside . It has a high rating , not child friendly and price range of £ 20- £ 25 . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Indian cuisine served at The Wrestlers is highly rated and is kid friendly . The Price range is average . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that serves Indian food in Riverside . It has a high customer rating and is kid - friendly . It is in the medium price range . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||coffee shop The Mill that serves Japanese food in a price range of more that £ 30 can be found at riverside near The Sorrento . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop located near Clare Hall that provides sit down or take away service . \nname : Green Man | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a children friendly Italian restaurant in Riverside located near All Bar One . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | near : Ranch||There is a coffee shop near Ranch called Wildwood that serves Indian food for a moderate price . Their customer rating is 3 out of 5 . \nname : Blue Spice | food : Chinese | price : moderate | area : riverside||Blue Spice provides Chinese food in the moderate price range . It is located in the riverside . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto , a French coffee shop near The Portland Arms in city centre has a low customer rating , but has prices less than £ 20 \nname : Taste of Cambridge | Type : pub | area : city centre | family friendly : no | near : The Sorrento||Located in the city centre , near The Sorrento , Taste of Cambridge is a pub which is not a family - friendly venue . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice in Riverside boasts flavorful fusion cuisine in a trendy space , but expect to spend upwards of £ 30 per person . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two serves Chinese food and is child friendly . \nname : Loch Fyne | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is 1 out of 5 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Located near The Six Bells , The Golden Curry is kid friendly . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||There are many good foods near The Sorrento at The Mill coffee shop \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Found in the City centre area , Aromi coffee shop is serving pasta that has a rating of 3 out of 5 . Good for the whole family . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : no||Alimentum is a moderately - priced French restaurant in the city center that is not kid friendly . \nname : The Golden Palace | Type : restaurant | price : moderate||The Golden Palace is a moderate restaurant \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||A French restaurant named The Waterman is a not so family - friendly for a price range of less than £ 20 located in the riverside area with low customer rating \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||Strada is a Yippee Noodle Bar which sells Fast food in a pub . It has a high customer rating . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix price range is less than £ 20 and serves French food in the city center . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop that welcomes family 's to drink with them . They offer drinks at a good price and have been rated three out of five stars . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||The Waterman pub located in the riverside area . Serves Fast food with a high customer rating . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a restaurant of Indian food , with a price range less than £ 20 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Italian restaurant is a family friendly restaurant offering cheap food in the riverside area . Near the Express by Holiday Inn , the restaurant is rated 5 out of 5 . \nname : The Golden Curry | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry offers Chinese food at £ 20 - 25 prince range . It is location is near to The Bakers . Kids are welcome . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||In the City Centre is a Japanese restaurant called The Waterman . It is not family - friendly , with an average customer rating and a price range less than £ 20 . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||The cheap riverside Green Man is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The family friendly Indian coffee shop The Cricketers is near to The Portland Arms and has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant in the city centre near Café Rouge . They have average ratings and they serve French food . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : city centre||Located in the centre of the city , Clowns is a cheap pub with decent food \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a family friendly restaurant . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly coffee shop they serves Japanese food . It has a moderate price range and is in the city centre near Raja Indian Cuisine . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults is not family friendly , and serves Italian food at cheap prices . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Across from Rainbow Vegetarian Café is a 5 star family friendly spot called Strada . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is a children friendly French eatery , with a low customer rating and a price range of more than £ 30 . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The pub named The Mill has a price range of more than £ 30 in riverside that sells Japanese food . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is based in the riverside area near Crowne Plaza Hotel . It is a coffee shop serving Italian food . It is not family friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant offering mid priced food and drink located close to the city centre and close to Express by Holiday Inn \nname : Fitzbillies | food : Indian | price : high | near : The Six Bells||Fitzbillies is a high priced Indian restaurant near The Six Bells . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge , The Golden Curry is an excellent restaurant to enjoy with the family . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||Children are welcomed at The Twenty Two , a Japanese restaurant located near the the river . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The children friendly pub named The Cricketers has a high customer rating and is near Ranch . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Low priced British food with a high rating from customers is Alimentum . Close to Yippee Noodle Bar in the City centre area . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a mid - priced family friendly restaurant The Rice Boat near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a French coffee shop near The Portland Arms . It is family friendly but has a low customer rating . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry offers family friendly service rated three out of five stars , \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||Located in the riverside area , The Waterman pub has an average rating for Fast food . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : yes||There is a kid - friendly restaurant by the name of Alimentum , serving Italian food , located in the city centre area with a moderate price range . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : yes | near : Café Rouge||The Plough pub is near Café Rouge . It serves Chinese food . It 's in a high price range but is child friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||Reasonably priced is Alimentum , a Japanese restaurant in the city centre near Yippee Noodle Bar at less than £ 20 per head with average customer ratings . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||In the City Centre , you will find Aromi coffee shop , a mid - priced family friendly place . \nname : The Rice Boat | food : French | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a highly rated kid friendly French restaurant on the riverside . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man serves English food in the riverside area near All Bar One . It has low prices and families are welcome . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family restaurant in the middle price range . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||Wildwood is a British pub that has low ratings and is not very expensive . \nname : Blue Spice | food : English | price : moderate | area : city centre||Blue Spice serves moderately priced English food located in the city centre . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||The riverside area has a moderately priced restaurant called Zizzi . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||Aromi is a kids friendly coffee shop with a high customer rating located near the Riverside area . It also sells fast food . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant located in the Riverside area close to Clare Hall , the prices are higher than average . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop has a customer rating of 1 out of 5 , the price range is high , it serves fast - food and is located near Ranch . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||A Japanese coffee shop , named Cotto , is located near The Portland Arms and on the riverside , it is rated 3 out of 5 . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||In riverside , there is a child friendly pub called The Olive Grove with pricing more than £ 30 . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||The inexpensive family friendly restaurant ' Travellers Rest Beefeater ' . \nname : Cotto | food : French | customer rating : low | family friendly : yes | near : Ranch||Cotto , the French restaurant near the Ranch is children friendly but has a low customer rating . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is family friendly and has an under £ 20 price range . Their customer rating is average . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly Italian coffee shop near Crown Plaza Hotel in the riverside area named Taste of Cambridge \nname : Wildwood | Type : pub | food : Chinese | price : £ 20 - 25 | customer rating : high||Wildwood pub serves highly rated Chinese food with an average tab of £ 20 - 25 . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : yes||Alimentum is an expensive establishment that serves French food in the city centre . It is not child - friendly . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill pub serves expensive French food near the riverside . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high price coffee shop located by Raja Indian Cuisine . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a 5 out of 5 family friendly Chinese restaurant called The Rice Boat with cheap prices located near the Express by Holiday Inn in the riverside area . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The family friendly , fast food restaurant , The Golden Curry , has an average customer rating . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House , a Japanese restaurant located near All Bar One with a high price range of £ 30 or more , shows a low customer rating . \nname : Bibimbap House | food : Italian | price : high | area : city centre | near : Clare Hall||Bibimbap House serves Italian . It has a high price range . It is in the center of the city near Clare Hall \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||A French pub called The Plough has a moderate prices , it 's kids friendly and conveniently located near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies coffee shop features French food in the city centre with a price range of less than £ 20 . They have a low customer rating and are not family - friendly . \nname : Cotto | food : French | near : Café Rouge||For French cuisine located by Café Rouge , visit Cotto . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : no||The Olive Grove is a moderate priced pub that offers English fare near riverside . It is not child friendly . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||The pub The Twenty Two near Café Sicilia in riverside has a low customer rating . \nname : The Golden Curry | food : Italian | price : more than £ 30 | family friendly : yes | near : The Bakers||You can find an Italian restaurant in the more than £ 30 price range that is kid friendly around The Bakers called The Golden Curry \nname : Loch Fyne | food : French | customer rating : average | area : city centre | near : The Rice Boat||With an average customer rating the Loch Fyne restaurant serves French food . It is located in the city centre close to The Rice Boat . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||The restaurant by the name of The Mill is located near The Rice Boat on the riverside . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : city centre||The Phoenix is a city centre fast food outlet with an average customer rating and cheap prices . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a restaurant with delicious food , located near the river \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||The Phoenix in the city centre is an average rated Japanese restaurant that cost less than 20 euros . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 1 out of 5||The Cambridge Blue is a fast - food restaurant with a customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a nice pub with fast food service , family atmosphere , warm clentele and low prices in the Riverside area \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix has moderately priced English food in the riverside area with a 3 out of 5 customer rating . \nname : The Mill | Type : restaurant | area : city centre | near : The Rice Boat||The Mill is a restaurant in the city centre near The Rice Boat . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge scores highly with customers and doesn 't allow children . It is a coffee shop that serves Indian food . It is located near the Crowne Plaza Hotel and the river . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is family friendly with a customer rating of 5 out of 5 and is inexpensive as well . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two serves great Chinese food in a kid friendly environment . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a kid - friendly Chinese restaurant with a high rating . The average price range is £ 20 - 25 . \nname : Fitzbillies | food : Indian | price : more than £ 30 | near : The Six Bells||The Fitzbillies has Indian food and a price range of more than 30 . It 's near The Six Bells . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is a restaurant catering for adults only , located on the river \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Children friendly place called Fitzbillies in the Riverside area serves Japanese food and coffee . Has a customer rating of 3 out of 5 and is a bit in the high range . \nname : The Punter | food : English | price : high||If you are looking for a restaurant that serves English food and has a high price range , check out The Punter . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Chinese food eatery in the low price range with average customer ratings that can be found near the Rainbow Vegetarian Café . Although it is not a place for kids . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a French restaurant near Café Rouge and has a customer rating of 5 out of 5 \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||There is an Italian restaurant located near Crowne Plaza Hotel called The Waterman . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop in the city centre near Raja Indian Cuisine . It serves Japanese food and it is not kids friendly . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : city centre||Located in the city centre , Blue Spice is a restaurant which offers Indian food in less than £ 20 . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Fitzbillies is an English restaurant near The Six Bells . It has a moderate price range . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||family friends inexpensive highly rated in the city centre area is Zizzi coffee shop \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Close to the Crown Plaza Hotel you will find The Waterman a child friendly , French restaurant . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is an expensive but poorly rated Chinese restaurant in the city centre . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | near : The Sorrento||The Mill is a coffee shop that provides French food located in city centre near The Sorrento . It has a price range of more than £ 30 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non - family friendly , cheap priced Indian restaurant in the riverside area near Express by Holiday Inn . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Average Japanese food for less than £ 20 can be found at Browns Cambridge . \nname : Blue Spice | food : Chinese | price : high | area : riverside||Blue Spice is a high priced Chinese restaurant in the riverside area . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a pub providing children friendly service . its customer rating is 1 out of 5 . It is located in riverside \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe offers family - friendly Italian pub - style dining in riverside \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a family friendly Chinese restaurant . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is an average rated Japanese family friendly restaurant located by the riverside . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||The Mill is an expensive coffee shop near The Sorrento by the river . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||The kids friendly restaurant , The Punter , is in the riverside area , near The Portland Arms . It has a price range of £ 20 - 25 . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Midsummer House is near Café Rouge . It has fast food with an average customer rating . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Japanese restaurant , The Rice Boat , in the city centre has high customer rating . It is located near Express by Holiday Inn . The price range is £ 20 - 25 and no kids friendly service or food are provided . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Near the Ranch is a coffee shop serving English food , with high customer rating , a price range higher than £ 30 . It is called Wildwood . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||coffee shop and Indian food venue , Taste of Cambridge , is located in the city centre near the Crowne Plaza Hotel and is not considered family friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||An Indian coffee shop named Aromi is rated 1 out of 5 is located in Riverside . \nname : Strada | Type : pub | food : Chinese | customer rating : average | near : Yippee Noodle Bar||Near Yippee Noodle Bar , there is a pub called Strada that has an average rating , and sells Chinese food . \nname : The Golden Curry | food : English | customer rating : average | family friendly : no||The Golden Curry offers English food for family - friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is in the average price range , it is not kid friendly but it 's a highly rated coffee shop near Café Sicilia an Italian joint . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Clowns is a pub located north of the City centre \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is not a family - friendly restaurant and the customer rating is average . The Golden Curry is located in the city centre by Café Rouge . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a 3 out of 5 star coffee shop in the city centre . It is not kid friendly , and the price range is £ 20 - 25 . You can find it near Avalon . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||There is an area in the riverside that is named Green Man and serves Indian food . Its price range is less than £ 20 and it is near All Bar One . It is not family - friendly . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Fitzbillies is a restaurant serving fast - food at less than £ 20 , and is located near The Six Bells . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||A reasonably priced coffee shop in the city centre is Cotto , Cotto sells Indian food and has a moderate price range . Overall , the customer rating for this Indian coffee shop is 3 out of 5 . It can be found near The Portland Arms in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is located in riverside near the Crowne Plaza Hotel . It is a kid friendly coffee shop that serves Indiana food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that serves cheap Indian food in the city centre . It has an average customer rating and is family friendly . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House , near All Bar One , has great ratings and low prices . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||Famous coffee shop and fast food with high rating called Clowns by Clare Hall close to riverside . \nname : Green Man | Type : pub | food : English | area : city centre | near : Café Rouge||Located in the city centre near Café Rouge is the pub Green Man . As well as being a pub , they also serve English food . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : no||Cocum is a restaurant that is not family - friendly . It has an average customer rating . \nname : The Golden Curry | food : Italian | price : high | family friendly : no | near : The Bakers||Near The Bakers is The Golden Curry : a high - price range Italian restaurant that is not children friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : more than £ 30 | family friendly : yes||There is a restaurant serving Indian food called Loch Fyne . It is children friendly , with a price range of £ 30 or more . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing French cuisine , for under £ 20 , located riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||There is a reasonable price Japanese coffee shop , called the Cotto , with a customer rating of 3 out of 5 . It is located in the riverside area of the city , near The Portland Arms . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove offers family friendly . Japanese food near Riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves Italian cuisine , located near to Café Sicilia . It has a high customer rating and a price range of more than £ 30 , it is not child - friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||On the riverside The Mill is located near The Sorrento with a price range of less than £ 20 , they are a coffee shop . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves Indian food near the Rainbow Vegetarian Café , is moderate price , is rated 3 out of 5 , and is not kid friendly . \nname : Aromi | Type : restaurant | food : Chinese | area : city centre||Aromi is a Chinese restaurant in the center of the city . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Indian coffee shop , Cotto , has a high rating , prices ranging from 20 - 25 and is located in city centre near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies , a 5 out of 5 customer rated Italian coffee shop in the city centre is cheap but not family - friendly \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is a French restaurant in the riverside area , near Clare Hall . It is in the average price range , £ 20 - 25 . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||Taste of Cambridge restaurant has a high price range but a low customer rating . \nname : Green Man | food : English | price : high | area : city centre | family friendly : yes | near : All Bar One||Serving English food in the city centre near All Bar One there is a child friendly food establishment called Green Man , it has a high price range . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||The Twenty Two serves Japanese food in the riverside area and is not family - friendly \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill is a pub which sells luxuriant delicacies at equally luxuriant prices . It can be found in the park on the river . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a Japanese place in the riverside area near Yippee Noodle Bar . It is cheap and is called the Alimentum . It has a 5 out of 5 customer rating . \nname : Midsummer House | food : Indian | price : £ 20 - 25 | customer rating : high | near : All Bar One||The restaurant Midsummer House is an average priced Indian restaurant near All Bar One . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||A new Chinese food restaurant is being built in the city center near Express by Holiday Inn . Their name is The Rice Boat and what even better is that they have a moderate price range which leads them to having a 1 out of 5 rating . Even better is that they are very kid friendly . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the city centre is a cheap Chinese called Alimentum . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is located outside the city centre , it is a budget friendly pub . \nname : The Phoenix | food : Indian | customer rating : 1 out of 5 | area : riverside||Indian restaurant , The Phoenix is located near the riverside . The restaurant has low customer ratings . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is an Indian pub with a rating of 1 out of 5 , that is child friendly . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Near All Bar One is a moderately priced restaurant called Midsummer House . It has a customer rating of one out of five . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : city centre||Blue Spice serves fast food with a price range of less than £ 20 and is located in the city centre . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a child Friendly pub serving Japanese food with a low customer Rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The English restaurant , Loch Fyne is family friendly . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a non family - friendly establishment that sells Italian food for those with a price range of 20 euros or less located near The Bakers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap coffee shop in the city centre . Located near a Burger King , it also serves Fast food and is rated 5 out of 5 by customers . However , it is not family - friendly . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice is a moderately priced restaurant in the riverside area . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||An English restaurant , Alimentum , near Yippee Noodle Bar in the riverside area has a moderate price range and low customer rating . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||For French fare under £ 20 , The Mill in riverside by The Sorrento is the coffee shop for you . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House , near Café Rouge , serves Japanese food and is rated 5 out of 5 by customers . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The Alimentum is a family - friendly cheap Italian restaurant located at city centre . \nname : The Rice Boat | food : Japanese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serves Japanese food and is kids friendly . This comes with high customer ratings and is located in the riverside area \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||In Riverside , Loch Fyne near The Rice Boat serves fast food and has a 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the centre of the city , The Eagle is a coffee shop that offers moderately priced Indian food . The shop has a 1 out of 5 rating and is not kid friendly . \nname : Bibimbap House | food : French | price : high | area : riverside | near : Clare Hall||Bibimbap House is by the riverside near to Clare Hall . It serves French food and is expensive . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||In Riverside , there is a pub named The Twenty Two . It is located near Café Sicilia , and has a customer rating of 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that provides Italian food located in city centre near Crowne Plaza Hotel . It has an average customer rating and is family - friendly . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is an inexpensive family friendly restaurant located north of the city center . It has a 3 out of 5 star rating . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : no||Loch Fyne is a non - kid friendly English restaurant with a moderate price range . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is an English restaurant by the centre of the city selling meals for cheap for the whole family . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese place with a low customer rating near Café Rouge in the cite centre , it is also family friendly . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a pub in the riverside area . Customers have given it an average rating , but it is children friendly . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum in Riverside is a kid friendly restaurant serving Fast food for around L20 - 25 . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Avalon||Blue Spice has a price range less then 20 . Has an average customer rating . it is a coffee shop . they are family - friendly . They are located in the city centre near Avalon . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a low priced 5 star restaurant near Yippee Noodle Bar . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||New local coffee shop with fast food and a high rating called Clowns located near Clare Hall by the riverside . \nname : The Punter | food : Italian | price : moderate||The Punter has a moderate price range . It serves Italian food . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop near The Sorrento in City centre . They are highly rated . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a child - friendly Japanese restaurant . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum , restaurant with family atmosphere and for children , with a high attention to our clients and best prices ; between £ 20 - 25 . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a low - priced restaurant in the city centre that delivers take - away . \nname : Aromi | Type : restaurant | food : English | area : riverside||English food is offered in the riverside area at the restaurant Aromi . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is an Italian pub located on the riverside . It is not family - friendly and is in the less than £ 20 price range . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers offers Italian food . It has a child - friendly atmosphere , in the high - end price range and a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : city centre||A popular Indian pub called The Mill is located near the city centre and has moderate prices . \nname : Fitzbillies | food : French | price : high | near : The Six Bells||Fitzbillies is French , costs high and is by The Six Bells . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Located in riverside , The Waterman is a French food restaurant with moderate price range . The customer ratings are 1 out of 5 and is not kids friendly . \nname : Midsummer House | food : Chinese | customer rating : 1 out of 5 | near : Café Rouge||Located near Café Rouge , Midsummer House serves Chinese foods with a 1 out of 5 rating . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||A kid friendly restaurant called The Wrestlers serves Chinese . High customer ratings for meals that are £ 20 - 25 . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada located at Rainbow Vegetarian Café is family friendly and has good meals . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Available for your use is the one star Fitzbillies coffee shop , a high cost facility that is family friendly and has wine , cheese and fruits available . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : city centre||in the less than £ 20 cost range , is The Eagle , in the city centre . It has a customer rating of average . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : yes||Low priced and family - friendly meet in the form of a Chinese restaurant called The Vaults . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Blue Spice is a family - friendly restaurant in the city centre with low prices less than £ 20 and a low customer rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant with an affordable price and 5 star customer rating . It is located near the riverside , family friendly , and is by Express by Holiday Inn . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a expensive Italian restaurant in the city centre called The Waterman , be aware that it is not child friendly and has very low customer ratings . \nname : The Golden Curry | food : Indian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is near The Bakers . It allows children and serves Indian food and has a high price range . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid - friendly Italian restaurant that is moderately priced , near the city center and has a customer rating of 1 out of 5 . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||With an average customer rating and a location near Café Adriatic , is pub The Vaults , which offers a £ 20 and under price range . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||There is a Japanese coffee shop named Cocum that is non child friendly with a high price range and a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is an adult Fast food and pub located along the riverside , serving food and drink less than £ 20 . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is an authentic family friendly sushi restaurant aimed at richer people . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a highly rated coffee shop near The Bakers . It is child - friendly , but the price range is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a highly customer rated coffee shop located in the city centre . It serves Fast food in the £ 20 - 25 price range is is kid friendly . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a kids friendly coffee shop . It has a high customer rating and a price range of £ 20 - 25 . It serves French food and is near Café Sicilia . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop serve fast food in the city centre near Crowne Plaza Hotel . They have a low customer rating and are not family - friendly . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low - priced Chinese food eatery near the Rainbow Vegetarian Café with average customer ratings for adults only . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Next to Café Sicilia is a cheap coffee house called The Punter . Families are not welcome . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near Crowne Plaza Hotel has Italian food and its family friendly \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Fast food restaurant located in the city centre near Café Rouge . It is not a family - friendly restaurant with a low customer rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum has the best sushi in the area near the City centre but is not a place for kids \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||at Riverside is a children friendly pub called Aromi and it got a high customer rating \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge provides fast food as a coffee shop located near Crowne Plaza Hotel . \nname : The Vaults | Type : restaurant | food : Chinese||There is a Chinese restaurant called The Vaults \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The family friendly fast food restaurant called The Golden Curry is family friendly . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||The fast food restaurant , The Twenty Two , is not a family - friendly restaurant and can be found in the riverside area . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Near the Burger King in riverside , is a highly - rated fast food and coffee shop known as The Eagle . The prices are average , and it is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is an Indian coffee shop in the city centre area near Burger King . It is not child friendly and has a high price range with the average customer rating being a 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | near : Café Brazil||There is a coffee shop called The Vaults , which is near Café Brazil in city centre . The bill will be cheap , less than £ 20 , but the customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Near Café Rouge is Midsummer House which serves Japanese food and has a rating out of 5 \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is a coffee shop located at the riverside . It is child friendly but has low reviews and can be costly . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||There is a three star sushi restaurant called The Wrestlers . It is high - end and family - friendly . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||The Dumpling Tree , located near The Portland Arms , is a pub that is not family - friendly , offering French food . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||There is a kid friendly restaurant serving English food in the riverside area called the Green Man . It is located near All Bar One and has a moderate price range . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub . It is located near a Ranch and has perfect ratings . \nname : The Phoenix | food : French | customer rating : average | area : city centre||Located in the city centre , The Phoenix is a French restaurant that has an average customer rating . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix offers Chinese food in a moderate price range . It is located in the Riverside area and has a customer rating of 1 out of 5 . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately priced kid friendly Italian restaurant with a customer rating of 3 out of 5 and can found near the Rainbow Vegetarian Café . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Cricketers is a family friendly French coffee shop with a low customer rating . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French restaurant located near the Express by Holiday Inn in riverside . It has a low customer rating , is not family - friendly , and costs less than £ 20 . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||A coffee shop providing French food for over £ 30 , The Mill is by The Sorrento on riverside . \nname : The Golden Palace | Type : restaurant | price : moderate||A restaurant with a moderate price range is The Golden Palace . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||If you are looking for a high customer rating restaurant in the riverside area , then check out the Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop providing Indian food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located next to Rainbow Vegetarian Café is Strada , a low priced , five star restaurant that sells burgers and fries . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Near The Portland Arms there is a child friendly Japanese pub called The Dumpling Tree . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high - end restaurant that also serves breakfast . Alimentum is located near the Yippee Noodle Bar and the river \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a family - friendly restaurant . Green Man offers a selection of Italian food that cost 's less then £ 20 . It is located in the city centre near the All Bar one . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||If you 're near The Sorrento , check out The Mill . The inexpensive coffee shop can be found in the city centre . \nname : Browns Cambridge | price : high | customer rating : average||There is a high price average rating place called Browns Cambridge . \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||The place you will be traveling to is Cocum . The travel fare is cheap , and yes , it is family friendly . Key places to eat are restaurants and the local pub . The trip is marked with an average rating . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a Fast food venue in riverside , that is child friendly and gets and average customer rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||On the riverside near The Sorrento there is a family restaurant Browns Cambridge . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is an Italian cheap restaurant in city centre with outstanding ratings . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults is kid friendly , served Japanese and the price range is moderate . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a riverside Japanese restaurant . Children welcomed . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix , a Fast Food restaurant , located riverside , has a low customer rating , and a price range less than £ 20 . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a French coffee shop . It is cheap , family friendly and has a customer Rating of 5 out of 5 . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||Less than £ 20 The Vaults is a coffee shop in the riverside area near Café Brazil . Customer rating : low . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : city centre||The Waterman is a pub serving Indian food in the city centre . It has a low customer satisfaction rating . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Down by the riverside there is a pub called The Twenty Two , just next to Café Sicilia , but the customer rating is quite low . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a child friendly establishment offering Indian food at a price range of 20 - 25 pounds . This establishment has been highly rated by customers . \nname : Midsummer House | food : Indian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||The Midsummer House serves Indian food and is cheap , rated 5 out of 5 , and is near All Bar One . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||For delicious French food , Head over to The Dumpling Tree restaurant where prices are reasonable . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||The Wrestlers serves cheap , medium - quality full English breakfasts . It is very family friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||The Waterman is an Italian pub in the riverside area , and has high customer ratings . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Blue Spice is a cheap restaurant located in city centre . High customer rating . Not family - friendly . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a fast food joint which is rather pricey but the quality is top notch . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop which is not very highly rated , but is family friendly . They serves American food , suck as hamburgers and fries , and are located near City center . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Located in the riverside area near The Portland Arms , Cotto is a coffee shop that serves French food . Prices range from £ 20 - 25 and customers rate them highly . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House has fair prices and can be found near Clare Hall . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is restaurant serving traditional American cuisine for all family members \nname : Bibimbap House | food : Chinese | area : city centre | near : The Rice Boat||Bibimbap House is in city centre . It is a Chinese restaurant near The Rice Boat . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : yes||The Golden Curry is a type of Chinese food . It is family friendly and has low consumer ratings . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||with a customer rating of 1 out of 5 the Alimentum is a moderately priced Japanese food place in the city centre near the Yippee Noodle Bar \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located near the Express by Holiday Inn in the riverside area is The Rice Boat . It serves fast food , but is not family - friendly . It has a high price range and a customer rating of 1 out of 5 . \nname : Bibimbap House | food : Fast food | price : high | area : city centre | near : Clare Hall||Bibimbap House is a high price Fast food restaurant near Clare Hall in the city centre . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||The Japanese pub The Mill is in the riverside area with average prices \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is an Indian food restaurant with a 1 out of 5 customer rating . It is child friendly and located near Ranch , \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The coffee shop called The Eagle sells Indian food and is not Children friendly . It is located in the center of city by Burger King , the rating is high , and the price range is more than £ 30 . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a low rated Indian food restaurant located at city centre . It is not family friendly . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : no||Along riverside is an English restaurant named Alimentum , it is not kid - friendly and has a high price range . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : yes||The kids friendly Giraffe pup has Chinese food and is located in the city centre . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||Browns Cambridge has average Fast food for less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee Shop providing fast food . It is located in riverside area . Have 1 out of 5 customer rating but high price range . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada is a medium priced restaurant that is children friendly . \nname : The Vaults | food : Indian | price : high | family friendly : yes||The Vaults provides Indian food in the high price range . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||With a moderate price range , French coffee shop The Eagle is located in city centre near Burger King . It has a customer rating of 1 out of 5 and is not kid friendly . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||Taste of Cambridge is a high end restaurant providing meals in the £ 20 - 25 range . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a 3 our of 5 customer rating and has a price range of £ 20 - 25 . It is located in the riverside area near Café Adriatic . \nname : Fitzbillies | food : Indian | price : cheap | near : The Six Bells||Cheap Indian food is served at Fitzbillies which can be found near The Six Bells . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum provides Fast food in the moderate priced range . It is situated in the riverside area and it is friendly for kids . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||For Chinese food at a moderate price go to The Waterman . Located in the city centre , it is not kid friendly but is rated 3 out of 5 by customers . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Near The Portland Arms Cotto coffee shop good quality at low price \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The English food in The Waterman is kids friendly . It is near Crowne Plaza Hotel . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||There is an expensive , children friendly , restaurant called Fitzbillies near Express by Holiday Inn with a customer rating of 1 out of 5 . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge is average and expensive . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers restaurant is family friendly , and offers a city centre location , at low cost prices . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : no||Alimentum , French food in the moderate price range located in the center of city is not kids friendly . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The Vaults is a 3 star pub with low - priced items near Café Adriatic . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Rated a 1 out of 5 , this kid friendly Indian food restaurant is called The Golden Curry \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly Italian restaurant near to Rainbow Vegetarian Café , it has 3 stars a low price and is family friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||Come eat at this coffee shop where the price range is more than £ 30 and customer rating is high . The Golden Palace serves fast food and in is the city centre area . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : no | near : Café Rouge||We do not offer a child - friendly environment . Japanese food is served here at The Plough . Located near Café Rouge , Our pub is very low - priced . Located in the city centre \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies is an English restaurant located near The Six Bells . It is high price ranged . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn in the city centre . It 's over £ 30 per head but with high customer ratings and serving English food . It 's not family - friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle serves moderately priced fast food in a kids friendly coffee shop . It is rated 3 out of 5 and is found near Burger King in the riverside area . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a kid friendly French coffee shop located near Café Sicilia . The customer rating is low , and the price range is above average . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||In riverside , there is a family friendly restaurant called The Olive Grove . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving fast food near Raja Indian Cuisine in the city center . The Wrestlers is kid friendly and moderately priced . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap coffee shop that does Fast food in the riverside area with a customer rating of 5 out of 5 \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House near Café Rouge serves Italian food and it is rated 1 out of 5 by customers \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside||The Mill is a riverside pub that serves fast food . It has a price range of £ 20 to £ 25 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly Japanese coffee shop , It is located near Raja Indian Cuisine in Riverside and has a price range of less than £ 20 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn within the riverside area is a highly rated Japanese restaurant . It is The Rice Boat with average prices between £ 20 - 25 and it is not kid friendly . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||A moderate range restaurant in the city centre is called Blue Spice . It is rated 1 out of 5 and not kid friendly . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||Near to Rainbow Vegetarian Café is a The Rice Boat where you can eat for less than £ 20 . It has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre also serving Italian cuisine , it has a high customer rating and main meals cost approximately £ 20 - 25 per head , it is not children friendly \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is an Italian coffee shop near the river . It is in the higher price range and is rated 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||A cheap coffee shop that serves Indian food is Cotto located in the city centre near The Portland Arms . This restaurant has a customer rating of 5 out of 5 . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix is a restaurant in Riverside that serves Japanese cuisine and has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a coffee shop named The Cricketers with a Fast food type of food , Customer rating of 3 out of 5 and it is kid - friendly . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat provides Indian food . It is located in riverside and has an average customer rating . It is kids friendly . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a pub located riverside with a price range of less than £ 20 and low customer ratings \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a child - friendly venue located in the riverside area . It has a high price range and a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Waterman is a Japanese pub in city centre with awesome ratings . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Located near Yippee Noodle Bar in the city centre is the fast food restaurant Alimentum . Alimentum is moderately priced with a typical customer rating of 1 out of 5 . \nname : The Twenty Two | food : Italian | family friendly : yes||You can take your children with you to The Twenty Two . Serving great Italian food . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||If you are looking for a quick and reasonably priced meal , then I would try Cocum . The best part is that it is family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee located in the city centre , near of the Crowne Plaza Hotel . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix provides Indian food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Located by the riverside , Clowns is a pub which has a high customer rating and a price range of more than £ 30 . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant that provides high quality foods . It is located beside The Rice Boat . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There 's a 3 out of 5 customer rated restaurant called The Rice Boat near Express by Holiday Inn in the city centre . They 're an English restaurant , are kid friendly and their prices are moderate . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is highly rated and serves Indian food at an average price point in the riverside area . It is not kid friendly . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge serves French food . It is family - friendly and has a average customer rating and is in the city centre . \nname : The Phoenix | food : Indian | customer rating : 3 out of 5 | area : riverside||The Phoenix offers Indian food in the riverside area . It has a 3 out 5 customer rating . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Wildwood pub serves expensive , but poor - quality sushi . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre||The Golden Palace coffee shop located in the city centre has Indian food . It is inexpensive and has an average customer rating . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||The riverside area has a fast food restaurant called Aromi \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , serving Chinese food , can be found in Riverside near the Express by Holiday Inn . It is moderately priced , but is not child friendly and is rated poorly . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves Chinese food in riverside . This a kids friendly place located near The Sorrento . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a child friendly Italian restaurant by the riverside . its customer rating , however , only scores 1 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : riverside||The Waterman is a pub that provides Chinese food with an average customer rating in riverside . \nname : Cotto | food : Japanese | customer rating : average | family friendly : no | near : Ranch||Cotto is near Ranch and serves Japanese food . It has an average customer rating but is not family - friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant that offers low priced British cuisine and is located outside the city centre , near Express by Holiday Inn . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop , situated near Café Brazil in Cambridge . Rated 1 out of 5 by customers . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The child friendly Fast food restaurant named The Wrestlers coffee shop is near the Raja Indian Cuisine and the city center in the high price range . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman provides Indian food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is family friendly and costs less than £ 20 . it is located in the Riverside area . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||Located near Riverside , The Eagle has low customer ratings and price range is less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a French coffee shop that has received high ratings . It is located near The Portland Arms and is kid friendly . \nname : The Punter | food : English | price : high||The Punter is a pricey English restaurant . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Close to the Express by Holiday Inn in City Centre , The Rice Boat offers family friendly fast food at moderate prices . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree , which serves English food , is a restaurant that serves higher priced items . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a restaurant providing Italian food less than £ 20 price range . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : no||There is a very relaxing pub by the name Zizzi that offers Indian food at a 5 out of 5 rating for all adults . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a French coffee shop , with a price range of less than £ 20 , located in the riverside area , with an average customer rating . \nname : Green Man | food : Indian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man makes cheap Indian food along the riverside , near All Bar One , with a family friendly atmosphere . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||Loch Fyne is a family friendly , cheap Italian restaurant . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||An Indian coffee shop named The Eagle is not child friendly , has a high customer rating , with prices ranging from £ 20 to £ 25 , and is located in the city centre near Burger King . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : city centre | near : The Sorrento||The Mill , located in the city centre near The Sorrento , is a moderately priced French coffee shop . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a kids friendly place that sells Japanese food in the 20 - 25 dollar price range near The Bakers . \nname : Aromi | Type : restaurant | food : Chinese | area : city centre||Aromi is a Chinese restaurant located in the city centre . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||There is an expensive children friendly coffee shop near The Bakers called Giraffe with an average customer rating . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman serves Indian food , with deliveries for orders over 30 . £ It is highly rated in Riverside for being child friendly . \nname : The Mill | Type : restaurant | area : riverside | near : The Rice Boat||The Mill restaurant is locate on the banks of the river near The Rice Boat . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : high||The Cambridge Blue restaurant serves Indian food and has a high customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||with a customer rating of 3 out of 5 the children friendly Japanese coffee shop called Cocum has a high price range \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Child friendly French restaurant called Loch Fyne . \nname : Cotto | food : Indian | customer rating : average | family friendly : yes | near : Ranch||Cotto is an average Indian restaurant that accepts families in Ranch . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the high price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto , is a moderately priced French coffee shop near The Portland Arms , in riverside . It has a 1 out of 5 customer rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||In city center the Japanese restaurant Alimentum is not family - friendly with food price ranging from less than £ 20 . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge in Riverside , The Golden Curry is a highly rated Italian restaurant which is kid - friendly . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||The Golden Curry is a child friendly Chinese restaurant with an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is coffee shop which has Indian food with moderate price in riverside . Customer rating is 3 \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a sushi restaurant located outside the city centre . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||For a nice family orientated establishment with upscale pricing . Stop by Cocum coffee shop . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne is not a family - friendly restaurant that serves Fast food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that provides fast food . It is located at riverside near Burger King . It is not family - friendly , in the cheap price range and has a customer rating 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Avalon||There is an adults - only coffee shop near Avalon named Blue Spice . It is found in the city centre . The reviews are not very good and it is actually quite expensive . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||With low ratings , The Golden Curry offers French food and a children 's menu . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||Located near The Bakers is a kid friendly high priced Japanese restaurant called The Golden Curry . \nname : Zizzi | Type : pub | food : French | customer rating : 1 out of 5 | family friendly : yes||French food is available at Zizzi pub for kids and friends . The pub has a low customer rating \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree is a fast food restaurant with a price range of more than £ 30 . \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||restaurant Zizzi is located within Riverside and has ranges between £ 20- £ 25 \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced English restaurant with a low rating . Located in riverside near Express by Holiday Inn , it is not child friendly . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a family - friendly . Customer Ratings are average . It is located in the city center . Prices are less than £ 20. it is near The Rice Boat . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a fast food coffee shop in Riverside . Located near the Crowne Plaza Hotel , it offers a children - friendly location to enjoy a meal . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant providing French food in the Riverside area . The Waterman is a kid - friendly restaurant with a price range in the average range and a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop serves Indian food . It is near the riverside and near the Crowne Plaza Hotel . It is not family friendly and it 's customers give it a low rating . \nname : Cotto | food : French | customer rating : high | family friendly : yes | near : Ranch||Cotto is a high - ratings near Ranch . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Located riverside , near Yippee Noodle Bar , there is a French restaurant called Alimentum . It offers cheap food and has a 5 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : riverside||In the Riverside area The Waterman pub serving Chinese food . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : no||Not family friendly , The Golden Curry serves Indian low customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly restaurant on the riverside serving Italian food . It is located near The Sorrento . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||There is a one - star coffee shop called The Golden Palace located along the river . It is inexpensive and offers sushi . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving Japanese food near the Crowne Plaza Hotel in the centre of the city . While it is not family - friendly , it has received a high customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||The Cambridge Blue is a Italian restaurant that is perfectly rated . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a restaurant The Eagle located near Burger King that 's Family - Oriented . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman offer kid - friendly Italian in the riverside area . The price range is above average and customer ratings are average . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a mid - priced location near the river , offering typical British fare in a family - friendly environment . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a children friendly place that serves Italian . It is in the riverside area with 1 out of 5 ratings . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a coffee shop serving Italian food . Located near the Ranch , it has higher than average prices but lower ratings . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop serving Italian food with an average customer rating , where kids are welcome and located in the city centre , \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia is a coffee shop called The Punter that sells Italian food . It 's family friendly and cheap . It has a 5 out of 5 customer rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a family friendly Japanese place located by the riverside . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a Fast Food and coffee shop with high prices and an average customer rating . It is located in the riverside near to The Portland Arms . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is high price coffee shop named The Wrestlers serving French food Located in riverside near Raja Indian Cuisine but not children - friendly \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a low rated , family friendly coffee shop that specialises in Japanese foods located in the Riverside near Crown Plaza Hotel . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant on the cheaper - side . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree is a fairly priced Italian restaurant . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||near Café Brazil there is a coffee shop with a high customer rating called The Vaults \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||With a 5 out of 5 customer rating , the child friendly The Wrestlers serves high priced Japanese food . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||A highly rated , low priced , fast food location in the city centre is Alimentum . It is near the Yippee Noodle Bar . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that provides Italian food located at riverside near Crowne Plaza Hotel . Its customer rating is 5 out of 5 but is is not family - friendly . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||There is a cheap average rated pub near Café Adriatic called The Vaults . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a highly rated Italian coffee shop near to Burger King . It is expensive and child friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||a cheap 5 out of 5 coffee shop which is family Friendly and serving Fast food would be Cocum \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers is a restaurant in the high price range that provides fast food and a child - friendly environment with an average customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Near to The Portland Arms , the Cotto is an expensive Italian coffee shop with a high customer rating \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||A kids friendly restaurant called The Blue Spice is located in the riverside area . Prices range from £ 20- £ 25 , with high customer ratings . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||Near the riverside area is The Olive Grove , a cheap family friendly pub . \nname : Wildwood | Type : restaurant | family friendly : yes||for a child friendly restaurants , Wildwood is a good option \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||for a children Friendly coffee shop , Aromi serves French food near the river side and has a 5 out of 5 customer Rating \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : riverside||The Mill is a pub that provides Chinese food in the less than £ 20 price range . It is located in the riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||In the city centre there is a coffee shop with a price range of less than £ 20 that has an average customer rating and Japanese food named Cotto near The Portland Arms . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne has a customer rating of 5 out of 5 . It is located in riverside near The Rice Boat . It offers English food . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a low price pub that serves a breakfast , located near the Café Brazil . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a coffee shop on the Riverside named Fitzbillies which offers French cuisine and a family friendly environment , Fitzbillies also has a customer rating of 5 out of 5 and offers low prices . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||Located near The Rice Boat , The Twenty Two boasts a high price range , more than £ 30 coupled with a low customer rating and a non - child friendly status . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is an average rated Chinese restaurant in the city centre near Café Rouge . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||There is a coffee shop serving Indian food for a low price , called Fitzbillies . Customer reviews are average and it is located in the city centre . This coffee shop isn 't family friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry offers its visitors Japanese cuisine . However , they received a low customer rating . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||The riverside area has a good Chinese restaurant called Alimentum . It is kid friendly with prices in the 20 - 25 pound range . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a Chinese restaurant that has a high customer rating and is children friendly . \nname : The Phoenix | food : Fast food | customer rating : high | area : riverside||The Phoenix is a fast food outlet located at the riverside . It scores high on the customer ratings chart . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre is a moderately priced , kid friendly English restaurant with a rating of 3 out of 5 . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a high priced Indian food establishment with a 1 out of 5 customer rating . It is not children friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop , located in the riverside by Crowne Plaza Hotel . It 's not family - friendly , and has low customer ratings . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum is a children friendly Italian restaurant in the riverside area in the high price range . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If Japanese coffee shops are your thing but you need to bring your kids , Aromi has the perfect child friendly atmosphere and boasts a 3 out 5 star rating . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Low prices at Fitzbillies family 's welcome close to Express by Holiday Inn average ratings . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family - friendly pub in the city centre serving Italian food under £ 20 . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers are family friendly with a price range of less than £ 20 . The food is English and the customer rating is low . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop with French style food with a decent price range . customers rate it 3 out of 5 and it very good for children . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman serves Indian food in the high price range with an average customer rating in the city centre area and is children friendly \nname : The Vaults | food : Indian | price : high | family friendly : no||The Vaults serve Indian food . The price range is high and is not kid friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi servers Italian food in a coffee shop layout . It is a family - friendly restaurant with a 5 out of 5 rating located in the City Centre \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a restaurant called Fitzbillies that serves moderately priced coffee and Indian food . It is family friendly and located in Riverside . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kids friendly coffee shop located near Avalon in riverside with a price range of £ 20 - 25 and a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a cheap , 1 star coffee shop that is near Café Sicilia and serves noodles . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an average children friendly high end coffee shop , It is located in the riverside area and serves fast food . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : city centre||The Waterman is an awful French pub in the city centre . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no||coffee shop Aromi serves Indian cuisine and is located in the city centre . It is not family friendly and has a low customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The Portland Arms is a Cotto coffee shop has fast food at a high price \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix is a costly French food restaurant . It is located in the city centre but has a low customer rating . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter , located near Café Sicilia , received a high customer rating . This French coffee shop has a price range of E20 - E25 , however they are not kid friendly . \nname : The Punter | food : Italian | price : cheap||The Punter offers Italian food in the cheap price range . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The cheap The Twenty Two is not family friendly . It has a one star rating and is near The Rice Boat . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults is a Wine and Cheese restaurant , that is family friendly and in a medium price range . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a French restaurant , that is family - friendly , providing cheap food in the city centre and is highly rated 5 out of 5 \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||If you are looking for an up market French restaurant you should try The Wrestlers which is located in the city centre close to the Raja Indian Cuisine restaurant \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : no||The Rice Boat serves French food in city centre . It has low customer rate and is not family - friendly place . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry provides English food in price less than £ 20 . It is located near to The Bakers and it is friendly for family . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is an English restaurant The Waterman located in city centre it is for the family . The price is high and it has a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is family friendly coffee shop sited in the city centre near Café Sicilia , it serves French food at low prices . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : city centre||Located near the city centre is Blue Spice . It is an Italian restaurant that has prices less than L20 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop named Browns Cambridge that serves Indian food , but with average customer rating . Yes , it is kid friendly and located near the Crowne Plaza Hotel . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an adult only Indian restaurant that has low customer ratings . It is located near Café Rouge in the riverside area . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : yes||The Green Man is a cheap , family - friendly place in the city centre . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is low price coffee shop serving French food Located in riverside near Express by Holiday Inn with a customer rating of 3 out of 5 but not kids - friendly \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Fitzbillies is a lower than average priced place near The Six Bells serving French food . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice has a rating of 1 out of 5 but it is a great little riverside area to take the family \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a family place in the area of riverside with cheap prices and average customer rating \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop that serves French food with a price range of less than 20 European dollars . While the coffee shop says family friendly , the coffee shop has a low customer rating . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||Zizzi is a very entertaining pub that is located at a very convenient location . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : no||Pub and Chinese food , Zizzi , has an average customer rating . Children not allowed . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : city centre | near : The Sorrento||The Mill is located in the center of the city near The Sorrento . It is a coffee shop that serves Italian food and has a moderate price range . \nname : Cotto | food : French | near : Café Rouge||French food is provided near to Café Rouge in a place called Cotto . \nname : Strada | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada serves lower range priced Chinese food . This dining choice is near Rainbow Vegetarian Café is not a family friendly dining choice and has received low customer ratings . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||Family friendly The Punter serves an expensive French cuisine . It has a low customer rating and can be found close to Café Sicilia \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||restaurant Taste of Cambridge has a price range of £ 20 - 25 and is customer rated 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||An Italian restaurant called The Dumpling Tree has a moderate price range . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is child friendly and is ranked 1 star and serves wine near the Express by Holiday Inn \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : average||Browns Cambridge is a low - priced Chinese food restaurant with an average customer rating . \nname : The Eagle | food : Italian | customer rating : low||The Eagle is a cheap restaurant serving Italian food however it 's low ratings make buyers less likely to visit . \nname : The Eagle | food : Indian | customer rating : 3 out of 5||The Eagle provides Indian food Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , located near Café Rouge in riverside , is a French children Friendly restaurant with a customer rating of 3 out of 5 . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is kid friendly . it is located near riverside \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||there is a place near Café Brazil , it 's named is The Cambridge Blue restaurant , it 's a Japanese Food , and and the type of food is public , the price range is Average somewhere between £ 20 - 25 . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a wine bar located at the city centre . Family friendly and average priced . Rated 1 out of 5 \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry sells poorly rated Japanese food and does not cater to families . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||Near Café Rouge there is a restaurant with a 5 out of 5 rating . It 's called Wildwood . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The Alimentum is highly customer rated . It is located in the riverside area near the Yippee Noodle Bar and serves Italian food priced at more than £ 30 . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||Zizzi is a family - friendly pub where you can have your whiskey and wines while your little ones enjoy their food . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop located in the riverside area near to Café Brazil . It has a high price range and a low customer rating . \nname : Blue Spice | food : English | price : moderate | area : city centre||In the city centre is the moderately priced English restaurant , Blue Spice . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||There is a venue serving English food at a high price range with an average customer rating near to All Bar One , it is called Midsummer House . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a high price range coffee shop The Eagle in riverside near Burger King . It is not kids friendly and it has low customer ratings but they serve Italian food . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : no||With a rating of 5 out of 5 try the Golden Curry Japanese restaurant . \nname : The Plough | Type : pub | food : Chinese | price : cheap | family friendly : yes | near : Café Rouge||The Plough , near Café Rouge , is a pub that serves cheap Chinese food in a family friendly environment . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Picturesque riverside coffee shop offering Japanese cuisine . Fitzbillies has a 5 star rating and superb value for money . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||There is a Japanese restaurant called Midsummer House . The meals are normally more than £ 30 and customers have rated it as low . It is situated near All Bar One . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : yes||The Twenty Two provides Indian food It is located in the city centre . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly restaurant with an average customer rating . This establishment has high price ranging fast food and is located in the city centre near Express by Holiday Inn . \nname : Loch Fyne | food : Chinese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne Chinese restaurant has a customer Rating of Low near The Rice Boat on the riverside . \nname : The Mill | Type : pub | food : Chinese | price : cheap | area : riverside||Located in the riverside is a Chinese restaurant named The Mill that has a cheap price range . \nname : The Golden Curry | food : Chinese | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a Chinese food restaurant in the low price range . The price range is affordable , and it is family friendly , located near The Bakers . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a UK - themed family friendly restaurant serving high end breakfast on the outside of city center . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||Inexpensive take away restaurant . The Mill The price is below ten pounds . They serve pub food items . You may like it the price is low the service is fast . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : yes | near : Café Sicilia||Located in the city centre near Café Sicilia , The Dumpling Tree is a child friendly coffee shop with a price range of more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a kid friendly Japanese restaurant . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||If you 're looking for inexpensive coffee and fast food and don 't care if the ratings are low , try The Golden Palace in City Centre . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||The Japanese pub Strada near Yippee Noodle Bar has an average rating by customers . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||All are welcome to eat poorly ranked English food at The Golden Curry in riverside near Café Rouge . \nname : The Vaults | food : Italian | price : high | family friendly : no||A high priced Italian restaurant that is not children friendly is called The Vaults . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : no | near : All Bar One||In the city centre , near to All Bar One is located Green Man that offers Japanese food with a moderate price range . There is no kids area . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a restaurant where dishes cost less than £ 20 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a French restaurant for adults with a customer rating of 3 out of 5 . It provides customers with French cuisine ranging from 20 - 25 pounds and is located in riverside . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kids friendly place . It offers French food and its customer rating is 3 out of 5 . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||Near Ranch is a child friendly pub called The Cricketers which has a low customer rating . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||Fitzbillies offers Japanese food at a moderate price range . It is near The Six Bells . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn is a 1 out of 5 high price ranged children friendly \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House is a fast food restaurant near Café Rouge with a low customer rating . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub in riverside with prices more than £ 30 . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The high priced coffee Shop The Punter is located near Café Sicilia . It is family friendly and has a 5 star rating . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough . a family friendly and fair priced sushi bar and pub that is located near the Café Rouge . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a high rated food place in riverside near Yippee Noodle Bar with a price range of £ 20 - 25 that serves Chinese food . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a higher - end restaurant that is near the city centre . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Near The Bakers is a cheap , family friendly coffee shop named Giraffe with an average customer rating . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers does allow children , scores highly with customers . It serves Chinese food and is averagely priced . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Cocum coffee shop is an inexpensive fast food restaurant with 1 star review . It is not family - friendly . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||There is a family friendly coffee shop near to Café Sicilia called , The Punter serving French food . It has an average customer rating and you can eat for less than £ 20 per person . \nname : The Phoenix | food : Chinese | customer rating : low | area : riverside||The Phoenix provides Chinese food in riverside . It has a low customer rating . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop providing Indian food in the cheap price range . It is near Ranch . Its customer rating is 5 out of 5 . \nname : The Twenty Two | food : French | family friendly : no||Serving French food , The Twenty Two is not family - friendly . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man provides fast food for the whole family at less than £ 20 . Located by All Bar One at riverside . \nname : The Vaults | food : Chinese | price : moderate | family friendly : no||The Vaults is a Chinese restaurant in the moderate price range . It is not child friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a low rated , moderately priced Indian coffee shop . It is kid friendly . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||The family friendly sushi restaurant Alimentum is medium priced . \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a kids - friendly , French pub . It has a customer rating of 3 out of 5 . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||If you are looking for a cheap restaurant located in the Riverside area then look no further than the family friendly 5 out of 5 customer rating restaurant The Twenty Two which is conveniently right near The Rice Boat \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near to the Rainbow Vegetarian Café there is a Japanese restaurant called Strada which is child friendly with a high customer rating of 3 out of 5 and a average price range of food . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||There is a Japanese restaurant called Browns Cambridge on the riverside near The Sorrento \nname : Midsummer House | food : Indian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a 5 Star rated Indian restaurant near Café Rouge . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is high rated low - priced coffee shop in the city centre near Café Brazil that delivers take - away \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , The Waterman offers Chinese food and is kids friendly . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a Japanese style place . Its customer rating is 3 out of 5 . It is not children friendly and its price range is typically high . \nname : Alimentum | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum averages in price from E20 - 25 . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop located near Café Brazil in the riverside area which has received a customer rating of 3 out of 5 for their £ 20 - 25 meals . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||For less than 20 pounds you can get English food at a restaurant called the Alimentum in the riverside area but it 's not family - friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Zizzi is a non family - friendly coffee shop located in city centre . Prices are less than £ 20 and it has a low customer rating . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman offers high priced English food with customer satisfaction reaching 1 out of 5 and is child friendly . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : riverside||There is a Chinese food restaurant in riverside with a high price range and average customer rating named The Phoenix . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix offers Indian food 3 out of 5 moderate city centre . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop in the city center near Burger King , offering French food in a family - friendly atmosphere in a high price range \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly place that is expensive and it is located near The Bakers \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub that provides Indian food in the less than £ 20 price range . It is near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a great pub located near Café Brazil which serves fast foods that are affordable . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Kid friendly and located in riverside near The Sorrento , Browns Cambridge serves Chinese food . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The Phoenix a mid - priced restaurant located in the north side of town by the river . Pub Styled . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop with Fast food and family friendly near Crowne Plaza Hotel location riverside . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||The Olive Grove Pub , is a sushi bar that doesn 't allow families . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a moderately priced coffee shop that serves Fast food . It is located in the city centre near Burger King and is not kid friendly with a customer rating of 1 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne , located near The Rice Boat in City centre , offers Italian food with a low rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop called Browns Cambridge that also serves Italian food in City Centre , near Crowne Plaza Hotel , with low ratings and not family - friendly . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is an Indian with a moderate price range . It has a customer rating of 1 out of 5 and is on a riverside . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||High - priced restaurant The Eagle , with a customer rating of 3 out of 5 , can be found in the Riverside area . \nname : Wildwood | Type : pub | food : Chinese | price : £ 20 - 25 | customer rating : high||Wildwood pub serves moderately priced Chinese food with high ratings . \nname : The Eagle | food : Chinese | customer rating : 3 out of 5||The Eagle Offers Chinese food . This establishment has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry is a non - family friendly restaurant with a customer rating of 1 out of 5 . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||A Japanese food pub The Plough is a moderate price range and is not kids friendly located near Café Rouge . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There 's a coffee shop that The Wrestlers go to , with a moderate price range , serving Japanese food . This restaurant is not kid friendly and is located near Raja Indian Cuisine in the city centre area . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a 3 out of 5 kid friendly Japanese restaurant near Café Rouge in riverside \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||A poorly rated expensive restaurant The Rice Boat is located near Express by Holiday Inn in the city centre . It is not child friendly . \nname : The Golden Curry | food : Italian | price : high | family friendly : no | near : The Bakers||The Golden Curry is an Italian restaurant in the high price range . It is located near The Bakers and is not children - friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop serving Italian food and is priced low with 5 out of 5 stars . It is family friendly . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||Taste of Cambridge , a restaurant , has a 3 out of 5 customer rating with a price range of 20 - 25 pounds . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Only feet away from Café Sicilia , The Punter coffee Shop offers low price coffee and does not have family restrooms . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||A kid friendly restaurant that you could try is Loch Fyne . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly Italian restaurant along the riverside that offers food for less than £ 20 . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||With a customer rating of 5 out of 5 , Browns Cambridge serves Japanese food at prices over £ 30 . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly , highly rated French food restaurant amongst customers . It is situated near the Express by Holiday Inn in the riverside area . The price range is between £ 20 - 25 . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Situated close to Ranch , Wildwood is a popular low cost Indian coffee shop . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is 3 out of 5 . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix is a site that sells fast food at a high price . It is located north of the City Centre . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is in the moderate price range and located in Riverside , near The Rice Boat . It has a customer rating of 1 out of 5 . \nname : The Phoenix | food : English | customer rating : average | area : city centre||The Phoenix is in the city center . It serves English food and customers say it 's about average . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a Chinese restaurant which is kid friendly and has a 1 out of 5 rating . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||Zizzi is a little burger spot that is family friendly . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop providing Indian food in the moderate price range . It is near Ranch . Its customer rating is 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Rated 1 out of 5 , Wildwood Italian Ranch and coffee shop is moderately priced . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Italian restaurant , The Golden Curry , near The Bakers , has a higher price rang but is children friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman is an Italian pub in the riverside area with average customer ratings . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||A cheap and family friendly Italian restaurant is Alimentum at the riverside \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is a French restaurant located in riverside . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix provides Chinese food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a low - priced family bar located north from the city centre . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Near Yippee Noodle Bar you will find Strada , a pub offering fast food with an average customer rating . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns , located riverside near Clare Hall , is a coffee shop that offers fast food . They have an average customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop in the city centre with low ratings . The price range is less than £ 20 and located near The Portland Arms . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||There is a cheap place named Travellers Rest Beefeater near the riverside near Café Adriatic with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies coffee shop in city centre is not children friendly . We offer fast food with a high customer rating . Our prices range more than £ 30 . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn there is a family restaurant called The Rice Boat . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a family friendly Italian restaurant in the riverside near All Bar One in the riverside \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Japanese restaurant Strada is located near the Rainbow Vegetarian Café . They have a high customer rating and offer moderate prices . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : no||The Golden Curry is a fairly average Chinese restaurant for adults only . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Fast food restaurant near the Rainbow Vegetarian Café , but it has an average rating and is not family - friendly . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a French coffee shop with a price range of less than 20 GBP . It is located near The Sorrento in the city centre . \nname : Midsummer House | food : Indian | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House has a customer rating of 3 out of 5 and provides Indian food . It is close to Café Rouge . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that also offers reasonably priced fast food around E20 - E25 . They are located in the city center near Burger King . Last year , they received high customer ratings and have been found very kid friendly . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a Japanese restaurant in the riverside area near Express by Holiday Inn called The Rice Boat . It is child friendly , has a 5 out of 5 customer rating , and costs more than 30 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is now open near the Avalon river . The coffee shop is expensive , but family friendly and 3 out of 5 customers leave satisfied . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||If you are searching for a not family - friendly French coffee shop near Café Sicilia , The Punter might be for you . The advertise cheap prices and the customer ratings are average . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is on the riverside near Express by Holiday Inn . It has a 1 out of 5 rating . It is not children friendly . It sells Italian food . It has a high price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop that is low priced and not family friendly . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a budget Mediterranean restaurant located near The Rice Boat . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||A 1 star , English restaurant near All Bar One is called Midsummer House . It is in the high price range . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is the place to go with your family to get English food . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : city centre||Located in city centre is the Fast food restaurant , The Phoenix , which receives an average 5 out of 5 customer rating score . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is an Italian restaurant named Strada with a 1 out of 5 rating . It is high priced and not children friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Zizzi is an average pricey adult coffee shop in the city centre . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle Japanese coffee shop near Burger King in the city centre welcomes children but is costly at more than £ 30 and has a low customer review . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is a child friendly Italian pub with an average customer rating . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||Alimentum is a Japanese restaurant located in the city centre . It is not child friendly and prices are more than £ 30 . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a moderate priced , kids friendly restaurant near The Bakers . \nname : The Golden Curry | food : Japanese | customer rating : high | family friendly : yes||The Golden Curry is a highly rated child friendly Japanese restaurant . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||Low quality food is served at a cheap price at The Wrestlers , a family friendly fast food restaurant in town . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||With a customer rating of 5 out of 5 , The Eagle serves Japanese food . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||The Punter can be kid - friendly , but the prices of £ 20 - 25 can be a turn off to families . However , watching the sun go down over the riverside by The Portland Arms is breathtaking . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Here at Loch Fyne , we have a riverside restaurant with great Italian food . Customers give it a 4 out of 5 stars . Come on over ! If you can see the Rice Boat , you can see us ! \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop with a price range of less than 20 . It is located near The Bakers and has a low customer rating . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The city centre Indian restaurant The Rice Boat is located near Express by Holiday Inn . This is an expensive , highly rated and not child friendly place . \nname : The Rice Boat | food : French | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serves French food and is located at the riverside . They are kid friendly and have high customer ratings . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family - friendly affordable coffee shop located north of the city centre by the Burger King . \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||i found a restaurant called Blue Spice that is along the river sells Japanese food for £ 20 - 25 \nname : Strada | food : English | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||There is a English restaurant named Strada near Rainbow Vegetarian Café that is not children friendly with an average customer rating and a high price range . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada It offers fast food at low prices , and is located in the city center there Rainbow Vegetarian Café \nname : The Phoenix | food : English | customer rating : low | area : riverside||The Phoenix is a one star rated fast food service . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop located at the city centre near The Portland Arms . It has a high customer rating and they serve French food for a good price range of about £ 20 - 25 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi , average Fast food and pub . Yes we are family friendly \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , near Café Adriatic , is located by the riverside and has a high customer rating ; however they have a price range of more than £ 30 . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is an expensive English restaurant which is child friendly . \nname : Blue Spice | food : Japanese | price : high | area : riverside||Blue Spice is an expensive restaurant that serves Japanese food . It is located in riverside . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||There is a cheap restaurant called Midsummer House that serves sushi . It is just north of All Bar One . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , near the Rainbow Vegetarian Café is a no for children . It 's French food is in the high price range , with a customer rating of 3 out of 5 . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man is highly priced and serves Italian food . It is not child friendly , it is located in the city center near All Bar One . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . It is near Burger King . Its customer rating is average . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced non kid friendly Indian restaurant in the city centre area . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||A children - friendly coffee shop , Blue Spice in Riverside , near Avalon , is in the high price range and has a rating of 3 out of 5 . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||Riverside is offering a pub that you 'll spend between 20 - 25 near the Rainbow Vegetarian Café called The Golden Palace . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Zizzi has a customer rating of 5 out of 5 . It is a fast food pub that is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a coffee shop that has a customer rating of 5 out of 5 . They are a coffee shop that is named The Cricketers . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||Wildwood is a medium priced pub offering traditional British food . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the city centre near The Rice Boat a family - friendly place that is cheap and boats an average rating of 5 out of 5 . \nname : The Punter | food : Italian | price : cheap||The name of the Café is The Punter . It serves Italian food and is very cheap . \nname : Browns Cambridge | food : Indian | price : £ 20 - 25 | customer rating : high||At £ 20 - 25 , Browns Cambridge offers Indian food at average prices . It has a high customer rating . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a fast - food restaurant in the City Centre with a 5 star rating . It is family - friendly and by Café Rouge . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||There is a nice place called The Rice Boat that offers food and drink . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||In Centre City , near Yippee Noodle Bar is a Chinese restaurant called Alimentum . It has a high price range and average customer rating . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||A kid friendly place to eat is The Plough restaurant near Express by Holiday Inn \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : no||adult only English food in the city centre with low customer rating is The Rice Boat \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a venue providing Japanese food for a price between £ 20 - 25 . Additionally to that , The Wrestlers is a kids friendly venue with a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is an expensive family oriented Sushi place . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Midsummer House , located next to Café Rouge , 3 star sushi bar \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop located in the city centre . It serves Indian food and is for Adults only . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||The Blue Spice is a cheap coffee shop with a out of 5 rating located near Avalon in the city centre . it is not family - friendly . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kid - friendly , French restaurant near the riverside . Meals cost £ 20 - 25 . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry near The Bakers is kid Friendly serving Fast food with a moderate price Range . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a children - friendly , perfectly rated French food restaurant with a price range of more than £ 30 and is located in the city centre , it is called The Waterman \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies is near The Six Bells , and provides English food in a price range of high . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||Indian food can be found at The Golden Palace in riverside . They have a 5 out of 5 rating , and are inexpensive . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : city centre | near : Clare Hall||Clowns is a low - rated Indian coffee shop in the city centre , near Clare Hall . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a children friendly pub with prices ranging more than £ 30 . It has a customer rating of 5 out of 5 . \nname : The Punter | food : Indian | price : more than £ 30||The Punter is an Indian restaurant with a price range of more than 20 pounds \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Located near Clare Hall in riverside , Clowns is a coffee shop serving Italian cuisine and its customers rate it as 5 out of 5 . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers serves Japanese food in the high price range . They are child friendly and have a customer rating of 5 out of 5 . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||Alimentum serves Italian food at prices less than 20 , and is located in the city centre . It is not family - friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Aromi is an Indian restaurant in a coffee shop environment , It has an average customer rating and kids are welcomed to the riverside establishment as well . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Fitzbillies is a moderately priced British Café which is near The Six Bells \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop is on the city centre and near Crowne Plaza Hotel . We offer French food in a family - friendly environment . We have an average customer rating . \nname : The Olive Grove | Type : pub | price : cheap | area : riverside | family friendly : yes||In the riverside area is a cheap , family friendly pub called The Olive Grove . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderate place with a price range cheap but bad rating \nname : The Punter | food : Fast food | price : moderate||If you 're looking for a moderately priced fast food restaurant , check out The Punter . \nname : The Golden Curry | food : Indian | price : high | family friendly : no | near : The Bakers||For Indian food The Golden Curry near The Bakers is an option . But it is not children friendly the price range is high . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||Loch Fyne is a low - priced , non family - friendly restaurant serving English food . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice is located north of the city with average prices . \nname : The Mill | Type : pub | food : Fast food | price : more than £ 30 | area : riverside||The Mill is a high priced fast food pub in riverside . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||There is a pub called The Plough that is moderately expensive that is kids friendly and offers Italian food . It is near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is an inexpensive coffee shop rated one star , located in City centre . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||If you have a low price range , Cocum is a family friendly coffee shop which serves French food , but has an average customer rating . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant located in the city centre near the Express by Holiday Inn . The Rice Boat is a moderately - priced restaurant . It is not considered child friendly and customers rate it a 1 out of 5 stars . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman has an average customer rating . It is am Italian pub located in riverside \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||There is a child friendly restaurant named Alimentum in the riverside area . It serves Japanese food and is child friendly . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove is a kid friendly restaurant along the riverside \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop near Burger King at riverside . It also provides Italian food at a price range of £ 20 - 25 . It 's not suitable for kids , however it is highly rated by customers . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fancy Japanese restaurant with rating of 3 out 5 . It is in the city centre near by the Express by Holiday Inn . Not suitable for children \nname : Fitzbillies | food : French | price : cheap | near : The Six Bells||Near The Six Bells there is a French eating establishment within the cheap price range . It is called Fitzbillies . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is high . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop providing Indian food in the high price range . It is located in the riverside . It is near The Sorrento . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a 5 star , family friendly , Indian restaurant in Riverside called The Rice Boat . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||There is a cheap coffee shop Cotto located near The Portland Arms . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||A highly rated pub called The Vaults , located near Café Adriatic , offers food for 20 - 25 Euros . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers cheap English food in Express by Holiday Inn in city centre . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is in riverside . They feature high quality French food for about £ 20 - 25 . Great for a night without the kids . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : no||The Rice Boat , found in city centre , serves average French food and isn 't for families . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||A good Children friendly restaurant that most people love is Cocum . \nname : The Phoenix | food : Italian | customer rating : 3 out of 5 | area : riverside||The riverside area is the home of The Phoenix ; a restaurant serving Italian food with a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree , near The Portland Arms , is a kids - friendly pub that serves French food . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant , located in Riverside , has a kid friendly environment for a moderate price range that customers rate four out of five . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : no | near : Café Rouge||The Plough is a pub providing Indian food in the high price range . it is located near Café Rouge . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant near Clare Hall in riverside . The price range is moderate . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||A mildly expensive pub called The Vaults near the Café Adriatic has low ratings . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||With a customer rating of 5 out of 5 , The Cricketers is a family - friendly coffee shop . Offering French food , it is located near The Portland Arms . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a riverside Indian restaurant near Café Rouge with an excellent customer rating . It is not family friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn , offers English food in their child - friendly restaurant . It has an average customer rating and a high price range . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : city centre||The Phoenix in the city centre provides Italian food at a cheap price . Its customer rating is average . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is child friendly and located in the city centre near The Rice Boat . it is in the high price range and has a low customer rating . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a mid - priced coffee shop serving wine and cheese with a one star rating and is family - friendly . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||If you 're looking for somewhere with moderate prices in the riverside area , there is a 3 out of 5 star rated place called The Eagle . \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle is a French restaurant with the rating 5 out of 5 . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a children friendly pub on the riverside which is rated 3.33 , on a scale of 5 by the customers \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||There is a cheap low rating family friendly coffee shop that sells Fast food in riverside called Aromi . \nname : The Plough | Type : pub | food : French | price : high | family friendly : yes | near : Café Rouge||A child friendly , French pub with high prices , located near Café Rouge , is called The Plough . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a pub located near the Yippee Noodle Bar . It has Japanese food and has been rated 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry is a family friendly restaurant that provides fast food . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada , not family - friendly , located near Rainbow Vegetarian Café with an average customer rating , offers cheap English food . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Zizzi is a low cost , family - friendly , coffee shop in the city centre . It has a 5 out of 5 customer rating . \nname : Midsummer House | food : Indian | price : high | customer rating : average | near : All Bar One||Midsummer House is an Indian food restaurant near All Bar One and has average customer ratings and a high price range . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant with a rating for five out if five for a low cost . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a pub in riverside that is kids friendly and has a price range of £ 20 - 25 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : more than £ 30||The Dumpling Tree is a restaurant that sells Indian food , it is priced at more than £ 30 . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a high price coffee shop that is kid friendly , with low ratings , that offers Fast food , named Cocum . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||The Cotto is a coffee shop with Indian food in the moderate price range in the city centre near The Portland Arms . It has been given 3 out of 5 stars . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a low rated Japanese restaurant located in Riverside near Express by Holiday Inn . It is not child friendly with prices more than £ 30 . \nname : Browns Cambridge | food : Chinese | price : £ 20 - 25 | customer rating : high||Browns Cambridge serves Chinese food . It has a high customer rating and the price range is £ 20 - 25 . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||Located in All Bar One , The Cricketers is a French restaurant . \nname : The Twenty Two | food : English | family friendly : yes||The family friendly The Twenty Two serves British food and can be found in the city centre . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : no||Not a family friendly place with an average rating Zizzi serves pub style Indian food \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Family friendly with Japanese food is the Browns Cambridge . It is in the riverside area near The Sorrento . \nname : Wildwood | Type : pub | food : Indian | price : £ 20 - 25 | customer rating : high||Wildwood is a local pub that also serves Indian food . The price range is 20 - 25 a dish and has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop . It is located in riverside , near Burger King . It has low customer rating since it is not family - friendly , but offer dishes for less than £ 20 . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||Although The Twenty Two is kid friendly and located in riverside near The Rice Boat , prices are more than £ 30 and it has a low rating . \nname : The Waterman | price : cheap | family friendly : yes||The Waterman has excellent food . The prices are cheap and I can take the kids there . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a lowly rated Italian restaurant with mid - ranged prices . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the riverside area near to the Express by Holiday Inn . It serves French cuisine for less than £ 20 per head but is not family - friendly and has average customer ratings . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant near the Express by Holiday Inn . It is located in the city centre . It is not family restaurant with low rating . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : no||Giraffe is a family friendly pub serving Chinese food in city centre . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : no||Located in city centre is a pub Aromi with average customer rating . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 1 out of 5||Browns Cambridge serves moderately priced Chinese food and has a rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop on the riverside , near The Portland Arms , that offers Italian food at a high price . It has a 1 out of 5 rating . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||There is a French restaurant that offers food at a price range of more than £ 30 , it is near Clare Hall and is called Bibimbap House \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a restaurant with moderate price on the side Rainbow Vegetarian Café \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House provides Chinese food in the less than £ 20 price range . It is located in the city centre . It is near Clare Hall . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The expensive pub The Vaults , near the Café Adriatic , is rated 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is a an expensive coffee shop Cotto with a five star rating near The Portland Arms . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||There is a expensive restaurant called The Phoenix and has a poor rating \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||In the City centre there is Alimentum close to Yippee Noodle Bar \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||In the city center you will find a very expensive place to eat called , The Phoenix . Which also has 3 stars . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge is rated 3 out of 5 with a moderate price range . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced pub that serves Italian Food and is child friendly near Café Rouge . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : city centre||The Mill is in the city centre . It has a moderate price range , and is a Japanese pub . \nname : Bibimbap House | food : Chinese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is a Chinese food restaurant in riverside near Clare Hall with the average price of £ 20 - 25 . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly , highly rated Chinese restaurant located near the Express by Holiday Inn in Riverside . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||There is a low customer rating French restaurant near Café Rouge called The Golden Curry . They are family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Cheap Italian coffee shop , Fitzbillies with a customer rating of 5 out of 5 is located at the riverside . It is not family - friendly . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Chinese restaurant in the price range of £ 20 - 25 that is rated highly by customers , located in the city centre and child friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a child - friendly restaurant serving Japanese food with prices in the £ 20 - 25 range . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a fancy coffee shop located in Café Sicilia that is family friendly and great eatery . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a cheap French restaurant in the riverside area near the Yippee Noodle Bar . It is called Alimentum and gets a 5 out of 5 customer rating . \nname : The Punter | food : French | price : more than £ 30||The Punter is a very good place that serves good wine . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix has prices ranging from £ 20 - 25 in the city centre . They have a high customer rating and provides Indian food . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : yes||There is a child friendly Chinese food restaurant with average ratings in the high price range called The Wrestlers . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is a place offering French food . Price ranges from £ 20 - 25 . It has a 3 out of 5 customer rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is located beside a river , and is conveniently located near City centre . It serves affordably priced Japanese food . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||In Riverside , there is an average rated , family friendly Japanese coffee shop called Aromi . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Green Man is a moderately priced restaurant that is not family friendly and is close to the city centre . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a kids friendly fast food place with a 5 out 5 rating . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||For moderately priced English fare , visit The Phoenix while in the riverside area , boasting a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop with Indian food in riverside near Burger King . They have a high customer rating , are children friendly , but cost more than 30 pounds . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||If you 're looking for somewhere child - friendly in the riverside area , The Twenty Two serves good Japanese food . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Taste of Cambridge is an expensive restaurant . It has a high customer rating . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a cheap coffee shop near Café Sicilia . They serve a variety of foods . They are family friendly and cheap . They are rated 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||With a customer rating of 1 out of 5 and a high price range , the coffee shop at Fitzbillies is located in the city centre area . They are children friendly and offer fast food . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe , a family friendly pub by the riverside , serves Chinese food . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||Located in the riverside area near Rainbow Vegetarian Café , The Golden Palace is a pub with prices more than £ 30 . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a Chinese food eatery with a moderate price range and a 3 out of 5 customer rating . It is near All Bar One . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a low rated coffee shop that offers fast food for less than 20 . It is located on the riverside . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Nearby Raja Indian Cuisine in Riverside , is a Japanese food coffee shop called The Wrestlers . It is relatively inexpensive and also kids friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A children friendly French restaurant named The Wrestlers near Raja Indian Cuisine at city centre is a coffee shop for more than £ 30 . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||An Italian restaurant , with the odd name of The Rice Boat , is located in riverside next to Loch Fyne , and has an average customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a low - priced restaurant in near Burger King that delivers take - away . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Blue Spice a family - friendly restaurant with a price range of less than £ 20 in the city centre has a low customer Rating \nname : Aromi | Type : restaurant | food : Indian | area : riverside||Aromi is an Indian food restaurant in the riverside area . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a low customer rated restaurant that is in the city centre and it has a moderate price . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue , located near the Café Brazil , is a pub with food under £ 20 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a French restaurant that is child friendly . \nname : Strada | Type : pub | food : Italian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||A pub near Yippee Noodle Bar called Strada sells Italian food and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix is a high priced Japanese restaurant located in City centre . \nname : Loch Fyne | Type : restaurant | food : Italian | price : £ 20 - 25 | family friendly : yes||There is a child friendly Italian restaurant priced within £ 20 - £ 25 range called Loch Fyne . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is an upper priced American eatery . It is family friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||Near Café Sicilia , there is an inexpensive coffee shop , called The Punter serving Indian food . It has an average rating and is not family friendly . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||There is an average high priced Café near the Café Adriatic in the riverside area called the Travellers Rest Beefeater . \nname : The Cambridge Blue | Type : pub | food : Indian | price : high | near : Café Brazil||The Cambridge Blue is a Indian pub near Café Brazil , with a high price range . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto , a French food coffee shop near The Portland Arms in city centre has a price range of £ 20 - 25 and high customer rating . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||Taste of Cambridge is a restaurant with a low customer rating . It is in the mid price range . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : no||Customers give Italian restaurant The Wrestlers an average rating as it is cheap and not family - friendly \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is cheap - priced French eatery , rated 5 out of 5 near , Yippee Noodle Bar . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||There is an expensive restaurant called Alimentum north of the city center . It is north of the center . of the city and near the river and Yippee Noodle Bar . Alimentum features small plates and serves vino . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Located right in the city centre , the Fitzbillies coffee shop offers Indian cuisine that is worth 1 out of 5 stars . While highly priced it is very children friendly . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is a restaurant providing English French deliveries in the low price range . It is located in the city centre . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||A higher priced pub serving French food , The Olive Grove is child friendly and located in the riverside area . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly sushi restaurant . It is medium priced and 3 - stars . It can be found north of the City centre and east of the Express by Holiday Inn . \nname : Blue Spice | price : less than £ 20 | area : riverside||Along the Riverside is a cheap place called Blue Spice . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café is Strada , which is a non children friendly place that serves fast food in the more than £ 30 price range . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue restaurant with English food has a low customer rating . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||An adult oriented Italian restaurant called Strada has a low customer rating , but a moderate price range , and is located near the Rainbow Vegetarian Café . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a Japanese restaurant with an average rating and is located near Café Rouge . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , this family friendly 5 star coffee shop , The Punter , offers families a welcome lunch break from shopping . Although expensive , their American cuisine is delicious . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near the Express by Holiday Inn on the riverside with ratings of 5 out of 5 called The Rice Boat provides French food that is family friendly and cheap prices . \nname : Green Man | food : English | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man serves English food in the high price range , is not child friendly and is located in the city centre near All Bar One . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue restaurant with a rating of one out of five stars \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers is a kid friendly restaurant that offers pub food . It has a high rating and is located near Ranch . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||An Italian restaurant called The Cambridge Blue that has high ratings . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||A food place in the city centre with a high customer rating is called The Phoenix . It has Indian food and a price range of 20 - 25 pounds . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies , located in North City Centre , is a family - friendly , affordable and highly acclaimed coffee shop . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Suitable for the whole family , The Wrestlers is a well priced fast food restaurant . \nname : Strada | Type : restaurant | customer rating : high||A highly rated restaurant is Strada . \nname : The Golden Curry | food : Indian | price : high | family friendly : no | near : The Bakers||The Golden Curry is an Indian restaurant near The Bakers . Be aware the price range is high and it 's not friendly to children . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a Japanese restaurant with a low customer rating ad is not child friendly . It is located in Riverside near Burger King and a coffee shop , the price range is more than 30 . \nname : Bibimbap House | food : Chinese | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is a Chinese restaurant that is cheap . It is in riverside near Clare Hall . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly fast food restaurant located by The Bakers . \nname : The Punter | food : French | price : more than £ 30||There is a great restaurant named The Punter . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is family friendly , low priced , and received a perfect customer rating . It is located near Express by Holiday Inn . \nname : The Vaults | food : Japanese | price : cheap | family friendly : yes||The Vaults is a cheap and family friendly restaurant serving Japanese food . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes||Aromi offers a range of fast food with a family - friendly atmosphere . It is a coffee shop based in the city centre . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a pub styled restaurant which also serves pizza for you and your kids to enjoy and the riverside . \nname : The Vaults | Type : restaurant | food : Chinese||The Vaults is a Chinese restaurant . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub that provides Chinese food in the moderate price range . It is located in the city centre . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||Family friendly Indian dining is offered in riverside at The Twenty Two . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : city centre||Blue Spice sells Japanese food for more than £ 30 by the city centre . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||Near Café Sicilia , in the riverside area , is a pub called The Twenty Two which rates 1 out of 5 with customers . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge providing Fast food . It is located in riverside area near The Sorrento . Not family - friendly . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||Near Café Rouge is a child friendly , fast food pub which is moderately priced , known as The Plough . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is an Italian coffee shop in Riverside . It has an average rating , and is family friendly . \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||The Punter in riverside close to The Portland Arms is Child friendly and serves food at more than the average price \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Located in the riverside area near Clare Hall , Bibimbap House offers Italian food at moderate prices . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a pub north of the City Centre that offers pub fare in a low price range . Families are welcome . \nname : The Vaults | food : Italian | price : moderate | family friendly : no||The Vaults is a moderately priced Italian restaurant , with an adult atmosphere . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : no | near : Café Rouge||There is a fast food pub near Café Rouge called The Plough . It is not kids friendly but has a moderate price range . \nname : Loch Fyne | food : French | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves French cuisine along the riverside . The average customer rating is 1 out of 5 . The Rice Boat is nearby . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a kid friendly coffee shop serving Indian food in City Centre . It has moderate price but low customer rating . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||Blue Spice restaurant is located near the river and offers higher priced fare . This location is not family friendly . Located on the outskirts of the city centre . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada has low priced fast food that is located near Rainbow Vegetarian Café . It has a customer rating of 5 out of 5 and is adult oriented . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Children friendly food , yes English name The Twenty Two area by riverside \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||Situated near Café Adriatic is The Vaults a pricey pub . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a child friendly pub with a customer rating of 1 out of 5 located near Ranch . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||In the city centre area is a Japanese restaurant named The Green Man . The price range is more than 20 and it is near All Bar One . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a mid priced , highly rated coffee shop near The Portland Arms . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||A kids friendly , Japanese coffee shop named , The Punter , with a moderate price range . It is near the Café Sicilia with a 1 out of 5 customer rating . \nname : The Rice Boat | food : Fast food | area : riverside||Located in the riverside area , The Rice Boat offers fast food . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||There is a child friendly pub called the Giraffe in the riverside area serving Italian food \nname : The Waterman | Type : pub | food : English | customer rating : average | area : city centre||The Waterman is Pub - style dining serving English food ; located in centre city with average customer ratings . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is a French restaurant with normal price range and good customer rating located at city centre . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||in the city centre near the Express by Holiday Inn , The Rice Boat serves Italian food with a price range of more than £ 30 . It has a high customer rating and is not children friendly . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : no||Alimentum serves Indian food at a moderate price range . It is located in the city center and is not kid - friendly . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Strada is a high - priced child friendly place with a 1 out of 5 customer rating . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is a high priced pub in riverside . It 's rated average by customers . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat restaurant has an average customer rating that services French good that is in City Centre near Express by Holiday Inn and is not family - friendly and has a price range of less than £ 20 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In city centre is a kid - friendly coffee shop , Aromi . It has Indian food and excellent customer ratings . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 1 out of 5||Wildwood is a pub that provides Indian food with moderate prices and a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||If you 're in the riverside area with kids and are looking for a highly - rated coffee shop that serves Indian cuisine to take them to , Aromi is a great option . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Taste of Cambridge is a restaurant with a high price range . Customers rate this restaurant as 5 out of 5 . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||Try The Plough near Café Rouge for English Pub food that is moderately priced and Kid friendly . \nname : Wildwood | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood near Ranch is a coffee shop which does cheap French food . It has a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located on the riverside near Raja Indian Cuisine , is a kid - friendly coffee shop that serves moderately - priced Indian . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||There is a cheap family friendly coffee shop near Café Sicilia called The Punter . It has average customer rating . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a low - priced , family - friendly pub situated close to the Café Rouge . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||Near Ranch its located Cotto , a low - price and good Japanese food \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant located near the Crowne Plaza Hotel . It is not family friendly . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat located by the riverside and near the Express by Holiday Inn , is a great place to visit soon if you wish to provide your family with a high quality of service and exquisite French cuisine that 's affordable to almost anyone . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a family friendly coffee shop that serves Italian food in the cheap price range and has 3 out of 5 stars \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : no||Zizzi is a pub providing Indian food . This pub is not family friendly , and has an average customer rating . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice had a moderate price range near the riverside . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop in riverside near The Portland Arms . They have Indian style food at moderate prices . Customers give it a rating of 1 out of 5 . \nname : The Twenty Two | food : Chinese | family friendly : no||The Twenty Two provides Chinese food \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is an Indian restaurant that in the city centre . It is inexpensive and is not family friendly . It is near All Bar One . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a pub restaurant in the riverside area that sells French food . This kids friendly restaurant has an average price range . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||There is an Italian The Twenty Two serving pasta . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub providing English food . It is located city center . Less than £ 20 price range . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||There is a sushi bar near Ranch called Cotto , which has a low rating . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace restaurant offers low - priced food . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Do not bring the whole family to The Sorrento in Browns Cambridge . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant in riverside , that serves Indian food , is children friendly and has a customer Rating of 1 out of 5 with high price Range . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||With prices greater than £ 30 , The Wrestlers is a children friendly coffee shop located in the city centre . It also serves Japanese food and is close to Raja Indian Cuisine . \nname : The Punter | food : Chinese | price : less than £ 20||The Punter 's restaurant offers Chinese food for less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly one star coffee shop near The Portland Arms . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near to Café Rouge are located The Golden Curry , a place for kids and everyone , with a very good English food and rating over 3 to 5 . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough pub is near the Café Rouge . It is high priced and serves food and drinks for the whole family . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop near Avalon in the Riverside area . It is family friendly , cheap , and it is rated 5 out of 5 by customers . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing cheap Indian food with a 5 out of 5 rating from customers . It is located in riverside near The Portland Arms . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||Available for your use is The Vaults , a moderately priced , family friendly facility , serving pastas . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Kid friendly , high rated , riverside area coffee shop , Zizzi offers prices from £ 20 - 25 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The family friendly Japanese restaurant called The Rice Boat is located on the riverside near Express by Holiday Inn has low customer ratings as well as low priced food . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||Located in the riverside area near Café Sicilia , The Dumpling Tree coffee shop is kid friendly and has moderate prices . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a fast food coffee shop near Burger King by the river . It is family friendly , has a low rating and a low food price range . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves sushi and is 3 stars . It is family friendly and near Café Rouge . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a fast food restaurant just off of the city centre and is in the higher price range . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is located near Burger King in the city centre and serves French food in the £ 20 - £ 25 price range but is not child friendly \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is an Italian restaurant located by the riverside . It is child - friendly , with average customer ratings , and in the high price range . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Indian restaurant The Phoenix is in the riverside area and has a high customer rating . The food costs more than £ 30 . \nname : The Eagle | food : English | customer rating : high||The Eagle is a highly rated English restaurant \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||near Café Brazil , coffee shop , The Vaults , is cheap by the riverside , with a 5 out of 5 rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Visit Loch Fyne , an Italian restaurant that is both kid friendly and reasonable in price . \nname : Aromi | Type : restaurant | food : French | area : riverside||Aromi is a Riverside restaurant that serves French cuisine . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A coffee shop called Cocum offers Indian food with a cheap rice , it is rated highly at 5 out of 5 and is family friendly \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||Rated 3 out of 5 by its customers , The Golden Curry is a family - friendly restaurant that serves French food . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a moderately - priced venue . It is located near Rainbow Vegetarian Café and has a customer rating of 1 out of 5 . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is in riverside near Café Adriatic . It has average customer ratings and a low price range . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults is an expensive Italian restaurant . It is family friendly . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Located near The Rice Boat and north of City centre is a burger restaurant called Loch Fyne and it 's highly rated . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located away from the city center , nearby the Crowne Plaza Hotel . They offer a decent selection of fruits , cheeses and wines for the whole family to enjoy . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a children friendly restaurant at the riverside near the Café Rouge . It has an average customer rating and serves English food . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice is a moderately priced restaurant in riverside . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside area there is a fast food restaurant called The Waterman . The customer rating is 1 out of 5 , is not child friendly and is in the high price bracket . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , highly rated , cheap , English food by the river , close to Express by Holiday Inn . Children welcome . \nname : The Golden Curry | food : Fast food | customer rating : high | family friendly : yes||Fast food place The Golden Curry is kid friendly . And has a high customer rating . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a low - priced Italian restaurant located on the outskirts of the City Centre , which does not cater to families . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're looking for child - friendly Japanese food , try The Wrestlers coffee shop . It 's a bit pricey but in a nice area by the riverside , just by Raja Indian Cuisine . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a high priced fast food restaurant with a customer rating of 5 out of 5 . \nname : Loch Fyne | food : Italian | customer rating : average | area : riverside | near : The Rice Boat||Three star restaurant , Loch Fyne , located next too The Rice Boat \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Browns Cambridge is a low priced Sushi Bar with a high average customer rating . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is an expensive children friendly Japanese restaurant in the city centre , The Rice Boat . It is located near the Express by Holiday Inn . It is in the low rating range . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near the Express by Holiday Inn is an average riverside English restaurant with a family friendly atmosphere . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge is mid - priced serving fast food and has a three star rating . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is an Indian restaurant with an average customer rating . It is located in city centre and it is family friendly \nname : Bibimbap House | food : French | price : moderate | area : city centre | near : Clare Hall||A moderately priced French food restaurant near Clare Hall and in the city centre is Bibimbap House . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a Japanese restaurant that is located near The Sorrento . The restaurant is also kid friendly . \nname : Fitzbillies | food : French | price : cheap | near : The Six Bells||Fitzbillies near The Six Bells offers cheap French food . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop in the city centre area , offering moderately priced Italian food near Raja Indian Cuisine . It is best suited for couples . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : no||Located in the city centre , The Rice Boat is a non - family - friendly restaurant serving Italian food . Customers gave The Rice Boat a low rating . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a not a family friendly Japanese restaurant located close to Crowne Plaza Hotel \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||In the £ 20 - 25 price range , The Wrestlers is a highly rated Italian restaurant that is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop rated 5 out of 5 for their cheap prices . It 's located in riverside near Burger King . No kids and also sell Japanese food \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults is a family friendly city centre restaurant serving beluga in the mid price range . \nname : The Cambridge Blue | Type : pub | food : Indian | price : cheap | near : Café Brazil||The Cambridge Blue is an Indian Pub offering low priced food . It is located near the Café Brazil . \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice serves English food that is moderately priced and is located on the riverside . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes||In the city center . is a family friendly Chinese pub that has average prices and is called The Olive Grove . \nname : Blue Spice | food : Indian | price : cheap | area : riverside||Blue Spice is a restaurant which provides Indian food . It is located by the riverside and is cheap . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum restaurant is a child - friendly destination with a 5 start rating . \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||Blue Spice is an average priced take - away on the riverside . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : riverside||The Mill is located in the riverside and has a moderate price range . It offers Chinese food \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : no | near : All Bar One||Near All Bar One , Green Man is a high priced riverside Italian restaurant where no kids are allowed to ruin your date night . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an adult only Japanese restaurant in the city centre with cheap prices located in the city centre near the Express by Holiday Inn with average customer ratings . \nname : Aromi | Type : restaurant | food : Chinese | area : riverside||Aromi is a restaurant serving Chinese food . They are sited on the riverside . \nname : Green Man | food : English | price : high | area : riverside | family friendly : no | near : All Bar One||Near All Bar One , in the Riverside area , Green Man is a non - child friendly restaurant serving high range English food . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a 1 star , family friendly coffee shop providing Japanese food , it its in the low priced market . It is located close to Café Sicilia . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat restaurant , regarded to be high priced with average Chinese meals is not children friendly . It is located in the city centre , near the Express by Holiday Inn . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : city centre||The Waterman is an English pub located in the city centre with a low customer rating . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . It is family friendly , has a medium price range , and has received average reviews . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop with a rating of five stars . They are also low priced and are opposite to The Portland Arms . \nname : Alimentum | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum offers Indian food . They are price ranged of less than £ 20 - 25 . They are kids friendly and located riverside . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an Italian coffee shop near Raja Indian Cuisine in the city center . It is moderately priced , and is not kids friendly \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||Wildwood is an pub selling English food , it has high customer ratings and has a price range from £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Indian coffee shop near the Crowne Plaza Hotel . It 's have a low rating and is not family friendly . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||Wildwood is a pub which provides Fast food with an average customer rating and within a high price range \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||A fast food pub in the riverside area that is kid friendly is Giraffe . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||There is a high rating kids friendly French restaurant near Rainbow Vegetarian Café , named Strada . Its price range is £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||family - friendly coffee shop serving French food with customer ratings being average ; Browns Cambridge is in City centre and near the Crowne Plaza Hotel . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Zizzi is a family - friendly coffee shop with a price range of less than 20 . It is located in city centre with a low customer rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves cheap Chinese food and gets a rating of 5 out of 5 . It is located in the city centre near the Express by Holiday Inn and is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies serves wine , food and coffee . It is rated five stars and is welcoming to families . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a featured coffee shop for adults only children not allowed located 1 block from Avalon \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a kid friendly Japanese coffee shop . The customer ratings are high and it is located near The Portland Arms . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||With more than £ 30 you can to the excellent Giraffe coffee shop near The Bakers . Not family - friendly \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||There is a place Green Man that offers Chinese food . They are located in the city centre near All Bar One . They are kids friendly and in moderate price range . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Japanese coffee shop located by the riverside , near Raja Indian Cuisine . It is moderately - priced and not kid - friendly . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||The Portland Arms is near The Punter in the Riverside area . The Punter is a moderate priced kid friendly venue . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||A cheap place in the riverside are is Cotto . It is near All Bar One . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant that is also cheap . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||There is a family friendly restaurant in the riverside area called The Olive Grove . \nname : Midsummer House | food : Chinese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a Chinese restaurant near All Bar One and has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a child friendly coffee shop with 5 out of 5 customer rating near The Portland Arms . It is a Japanese place called The Cricketers . \nname : Fitzbillies | food : Chinese | price : less than £ 20 | near : The Six Bells||Fitzbillies provides Chinese food in the less than £ 20 price range . It is near The Six Bells . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Strada is friendly with kids with a moderate price for a customer rating of 3 out of 5 points . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a five star family friendly English restaurant , is located near the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop that sells Indian food in riverside near Crowne Plaza Hotel named Taste of Cambridge . Taste of Cambridge is family friendly . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub near The Portland Arms , serving French food to children and adults alike . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||there is a low price coffee shop named Strada near Rainbow Vegetarian Café that serving Italian food with a customer rating of 5 out of 5 but not family - friendly \nname : The Twenty Two | food : English | area : riverside | family friendly : no||Riverside area English food is The Twenty Two not family - friendly . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is a French restaurant on the riverside . It 's expensive and has a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly coffee shop located in the city centre near the Burger King . The customer rating is 5 out of 5 and if you 're looking for some French food and have a price range of more than 30 pounds this is a good place to go . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||There is a coffee shop by the name of Clowns next to the riverside , near Clare Hall . It serves Japanese food but has a low rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes||There is a moderate priced pub called The Olive Grove located in the city center , they serve Japanese food and are kid friendly . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in riverside is a kids - friendly Fast food restaurant near Express by Holiday Inn . Although moderately priced it only has a customer rating of 1 out of 5 . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults restaurant caters to couples and single adults , its low cost makes for great fast food . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man is a high price range restaurant in the city centre near All Bar One . It is a children friendly restaurant and they serve Italian food . \nname : Cotto | food : Italian | near : Café Rouge||A restaurant that serves Italian food near Café Rouge is called Cotto . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies is cheap and right next to Rainbow Vegetarian Café . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Midsummer House , a fast - food restaurant rated three stars , is located by Café Rouge . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||A coffee shop named The Punter has Japanese food , a customer rating of 5 out of 5 and the price range being cheap . It 's not family - friendly and can be found near Café Sicilia . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is an Italian coffee shop that is moderately priced with an average customer rating situated in Ranch . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a restaurant with a moderate price range and has a customer rating of 5 out of 5 ; it is located near All Bar One . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||A fast food place called Cotto has a customer rating of 1 out of 5 and is found near Ranch . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is an inexpensive wine and cheese restaurant . It 's family friendly in the City Centre . \nname : Blue Spice | price : more than £ 30 | area : city centre||Blue Spice is in the center of the city , but it 's relatively expensive \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a fast food restaurant in the city centre . It has a moderate price range and boasts a customer rating of 3 out of 5 . The Waterman is not kid friendly . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : no||For more than £ 30 you can go to the pub Cocum . It has a low customer rating and is not child friendly . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a cheap , family - friendly coffee shop near The Bakers . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : no | near : The Bakers||Near The Bakers there is a moderately priced Italian restaurant called the Golden Curry . It is not kids - friendly . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||There is a Japanese restaurant that has a moderate price range , it is The Dumpling Tree . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Check out The Plough , near The Bakers ; a kids friendly restaurant with a price range between 20 - 25 pounds . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults is a low cost , fast food takeaway in Cambridge \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is near the Rainbow Vegetarian Café and has moderately priced items . \nname : The Cambridge Blue | Type : pub | food : English | price : £ 20 - 25 | near : Café Brazil||If you 're looking for average priced English food , The Cambridge Blue pub near Café Brazil is the place for you . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||The Dumpling Tree has a price range of 20 - 25 pounds . It is a restaurant that serves Japanese . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the £ 20 - 25 price range . It is located in the city centre . It is near Burger King . Its customer rating is high . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne , a family - friendly restaurant that offers Japanese cuisine , has competitive prices . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a family friendly pub . They are by riverside and serve Japanese food . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : yes||There is a venue called Alimentum in the city centre which serves high price range fast food that is child friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||In the riverside area near The Portland Arms is Cotto . A low cost coffee shop serving Japanese food . It has a low customer rating . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : riverside||Come eat Blue Spice Indian food in riverside for less than 20 pounds . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The Golden Curry is a restaurant providing Indian food in the low price range . It is located in the city centre . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||A Japanese restaurant near to the riverside and the Café Rouge , is The Golden Curry . It 's not family - friendly and has a low customer rating . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the moderate price range . The customer rating is 3 out of 5 . The area is riverside , near Express by Holiday Inn . The establishment is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House , a fast food restaurant , in the riverside area , near Clare Hall with a price range less than L20 . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||There is a restaurant called The Eagle near the river . It has one star and is higher - priced . \nname : The Rice Boat | food : Japanese | area : riverside||The Rice Boat serves Japanese food and is located on the riverside . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub located on the outskirts of Cambridge . It is suitable for families with a medium price point . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||There is a restaurant on the river called The Rice Boat that is very family friendly . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two offers Japanese by the riverside for the whole family . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||A really good Italian place is The Wrestlers . It has great customer ratings of 5 out of 5 and prices are very low but not a place for children . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||1 star budget , family friendly coffee shop , The Punter . Located nearby Café Sicilia \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall in Riverside . It serves Japanese food and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a Japanese coffee shop near to The Portland Arms that has an average rating and isn 't family - friendly \nname : The Vaults | Type : restaurant | food : Italian||The Vaults offers an Italian menu . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a restaurant located in riverside . Yes it is kid friendly and has a customer rating of 3 out of 5 . Prices range from £ 20 - 25 . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||A Japanese restaurant located in the city centre , The Waterman is a more expensive place with prices higher than £ 30 . It is not child friendly and is rated low by customers . \nname : Alimentum | food : Chinese | price : cheap | area : riverside | family friendly : yes||Alimentum provides Chinese food in the cheap price range . It is located in the riverside . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The coffee shop Cocum provides Japanese food with a price range of less than £ 20 . It is family friendly but has a low customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||Fast food coffee shop located near Café Sicilia . The Punter has a moderate price range , is not kid friendly and has a customer rating 1 out of 5 . \nname : Green Man | price : moderate | area : city centre | family friendly : yes||Green Man is kid friendly , located in the city centre and in the moderate price range . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||There 's a family friendly English Food pub called Zizzi with a out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a 3 - star coffee shop located near The Portland Arms on the river to the north of the City centre serving moderately - priced fast food . \nname : Strada | Type : pub | food : Chinese | customer rating : low | near : Yippee Noodle Bar||Strada is a pub providing Chinese food It is near Yippee Noodle Bar . Its customer rating is low . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly Italian restaurant in Riverside near The Sorrento . \nname : The Punter | food : Chinese | price : less than £ 20||There is a Chinese venue with a price range of less than £ 20 called The Punter . \nname : Strada | Type : restaurant | customer rating : low||Strada is a eating type of restaurant with a low customer rating \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree is a restaurant providing food in the low price range . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman has a low customer rating 1 out of 5 perhaps because it isn 't a friendly place for kids . It serves French food and is moderately priced and can be found in the city centre . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The coffee shop , The Eagle , is not children friendly that serves French food and is located in the city centre near Burger King . With a average price of more than £ 30 it has an average low customer rating . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge offers Japanese food located near The Sorrento in the city centre . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is a coffee shop with a price range of £ 20 or less and is very close of The Bakers \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderately - priced Italian restaurant located near Clare Hall on the river , north of the City centre . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace , is conveniently located near the centre of the city and offers coffee beverages and prices can 't be beat . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House near All Bar One has a high customer rating and a high price . It serves Italian food . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat has cheap prices and an average customer rating . It is near Rainbow Vegetarian Café . \nname : Strada | Type : restaurant | customer rating : high||Strada is a nice restaurant with great service and price a little high \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a family friendly place in riverside which serves English food has a average customer rating . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Chinese restaurant with a low customer rating . It is in Riverside near Café Rouge and is kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the city centre near Raja Indian Cuisine is an adult coffee shop called The Wrestlers . This high priced coffee shop serves Italian food . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a French food coffee shop in the more than 30 pounds price range it is in the city centre near Raja Indian Cuisine not child friendly for adults only \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||Zizzi is a 5 out of 5 rated coffee shop in the riverside area . It is not children friendly and the price range is more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : yes||Loch Fyne is a high priced , child friendly , Chinese restaurant . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||Located near the Café Adriatic and a customer rating of 1 out of 5 . We 're The Vaults pub which is a perfect home for you . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a restaurant located in the city centre with a mid price range . It is located near The Rice Boat and has a customer rating of 3 out of 5 , it is also kid friendly and suitable for all families . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : no||The Vaults serves Chinese and is for Adults only . Its prices are less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop that also serves Italian food . It has a high customer rating , so if you are interested it is located near Burger King in city centre and the bill will be around £ 20 - 25 . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : no||The Rice Boat restaurant welcomes all adults . This 1 - star restaurant serves Asian cuisine and sits right next to the river . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||In the riverside area , near Café Adriatic , is Travellers Rest Beefeater . It has a moderate price range with a 1 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderately priced , non - kid friendly , fast food coffee shop in riverside with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||A child friendly Fast food restaurant in the riverside area near the Express by Holiday Inn , The Rice Boat has average customer ratings and high prices . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||There 's an English Pub near Café Rouge that 's kid friendly . It 's got moderate prices , called The Plough . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a cheap Indian coffee shop with average customer ratings located near Café Sicilia . This restaurant is not family friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Yes , there is a family friendly coffee shop that sells Fast food . It is called Aromi and located on the riverside with a customer 's rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop . There price range is moderate . They serve fast food . They are not kids friendly . Located near the Raja Indian Cuisine , in the riverside area . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It is in the low price range and is not family Friendly . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a moderate kids friendly English restaurant with a moderate price range located near The Bakers . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults is a restaurant specializing in Italian cuisine . It is expensive , but family friendly . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is a low - cost restaurant around the corner from All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is an Indian coffee shop with an expensive price range of more than 30 . It has a high customer rating and is located in the riverside area . It is not child friendly . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in the city centre is Alimentum they serve Italian and are rated 5 out of 5 and is priced as cheap . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : city centre||The Mills is a pub in the city centre which have Italian food price ranging moderate . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum - a high end French themed coffee shop , outstanding customer ratings and child friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Fitzbillies is a French coffee shop in the city centre that has a customer rating of 5 out of 5 and is children friendly , but has a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop in the city centre , with a high customer rating , that serves Italian food . It is located near The Portland Arms and the price range is £ 20 - 25 . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : no||The Golden Curry has an average customer rating . It serves Japanese food in a non - family - friendly environment . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman is a one star rated pub which sells fast food . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||The Dumpling Tree restaurant offers French food for a low price . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a great restaurant , the food is very delicious and you can go with your kids , is in the center of the city and is very cheap \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||In the riverside area , near The Portland Arms , is a restaurant called The Punter . It is an average priced and kid friendly restaurant . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is the place to come with your children and eat the best Italian Food \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a cheap restaurant The Wrestlers located in the centre of the city that provides eat in space for families . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly French coffee shop located by the riverside , near Crown Plaza Hotel with low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located in the riverside area , here at Fitzbillies you can enjoy cheap Japanese food for the riverside area . With a 5 out of 5 customer rating , you can 't go wrong . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||There is a fast food restaurant located near The Sorrento in the city centre called The Mill which offers moderately priced food . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix serves cheap Chinese food in the City center . It has a customer rating of 5 out of 5 . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is a 3 star Greek restaurant , offering cheap food and drink . It is within walking distance of All Bar One . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a Japanese coffee shop near The Portland Arms on the riverside . It has a low rating and costs more than £ 30 \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a mid - priced coffee shop providing food and drink near the Ranch . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly Chinese restaurant located near the Crowne Plaza Hotel . \nname : The Punter | food : French | price : £ 20 - 25||The Punter is a French restaurant with an average price range . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||With a 3 out of 5 rating and high - priced English food , there is a restaurant in City centre called The Phoenix . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a cheap Chinese restaurant call The Wrestlers with customer Rating 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes||There is a kid friendly Indian coffee shop called Cocum . The price is steep but the coffee is average . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House serves British food . It is expensive and low rated . It is located by All Bar One . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is an adult friendly , riverside establishment . It serves mediocre Chinese and is cheap . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Zizzi is a child friendly coffee shop located in Riverside . Prices are higher then average however customers rate it very well . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree is a low priced restaurant offering sushi . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a Japanese restaurant that is children - friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a kid friendly English food restaurant located at Riverside . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a not family friendly , cheap , average rated Chinese food restaurant near Express by Holiday Inn . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not children Friendly and has a price Range of more than £ 30 . Its located in the city centre and has a high customer rating . They serve Italian food and they are near the Express by Holiday Inn \nname : Bibimbap House | food : Italian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Near Clare Hall by the river the Italian food restaurant Bibimbap House ranging from 20 - 25 euros . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||in the riverside area near the Café Brazil there is a coffee shop with customer ratings of 5 out of 5 where the food is more than £ 30 called The Vaults \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||Located on the riverside , The Waterman is a moderately rated English pub . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||The Loch Fyne is a restaurant that is not family friendly but is low priced . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman located in the city centre serves English food . They are kids friendly , has a 3 out of 5 customer rating , and has a moderate price range . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café in the city centre . It serves English food , is family friendly , has a medium price range and has received poor reviews . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a cheap fast food coffee shop in riverside which is not family - friendly and has an average customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is a average customer rated coffee shop that serves Italian food in the high price range , all being children friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||In the heart of the city near Burger King is The Eagle , a French coffee shop offering good prices , a family - friendly atmosphere , and good customer service . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman says no to taking less than £ 20 for French fries near the riverside because it has a low rating . \nname : Bibimbap House | food : Italian | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is located near Clare Hall in the center of the city . It serves Italian food and has a moderate price range . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , The Wrestlers provides the atmosphere of a coffee shop with Indian food . At less than 20 pounds , it provides a family friendly setting for its customers right in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a highly priced coffee shop in the city centre that provides Indian food . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House offers French cuisine near Clare Hall in riverside and costs more than 30 euros . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant is family friendly and located near the Express by Holiday Inn and serves low priced food and drinks . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a French coffee shop near The Portland Arms . They are not family - friendly and have a low customer rating . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||The Alimentum is a family oriented restaurant near the city centre . It is medium priced . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Avalon||There is a average rating , and family - friendly coffee shop named Blue Spice in the city centre near Avalon with a price range of less than 20 pounds . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada is a family friendly restaurant that is very cheap , with an average customer rating . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||A child friendly fast food restaurant that costs more than £ 30 on the riverside near Express by Holiday Inn is The Rice Boat \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||The non - family - friendly The Rice Boat offers English food rated 5 out of 5 by customers in the city centre . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman , an English restaurant . on the riverside is kid friendly , moderately priced , and has a 3 star rating . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||There is a restaurant named Loch Fyne . It is kid friendly . The price range is fairly cheap . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle is a low rated fast food . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||The Golden Curry serves Chinese food and has an average customer rating . Yes , it is children friendly . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near the Rainbow Vegetarian Café . It has five stars , Its good for families . They have American food . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a French restaurant called The Waterman . It is located by the riverside . It is child friendly but is expensive and is rated as average . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||With a customer rating of 3 stars out of 5 , Giraffe is a coffee shop with a moderate price range , located near The Bakers .. Children are welcome . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : no||Alimentum provides Chinese food in the moderate price range . It is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a riverside area coffee shop with a high customer rating . They serve fast food at slightly above average prices , but are very kid friendly . \nname : The Phoenix | food : Japanese | customer rating : average | area : city centre||The Phoenix is an average Japanese restaurant in the city centre . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : no||A pub serving French food near riverside called The Olive Grove is above - average price . It is not kid friendly . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , 5 star restaurant that is family friendly . It is located beside the Express by Holiday Inn and is a wine and cheese tasting place . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a restaurant providing Indian food with a child friendly atmosphere in the Riverside area . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Child friendly venue The Golden Curry is located near The Six Bells . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace , serving Japanese food in their coffee shop , has a 5 out of 5 customer rating located conveniently in the city centre and is cheap . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Chinese food in the high price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 1 out of 5 . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne is a 5 star restaurant located far North of the city centre near the water . It is also located near The Rice Boat . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no||The Olive Grove is located in city centre . They are a pub type restaurant that is not kid friendly with moderate prices . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a moderately priced pub near the Rainbow Vegetarian Café in the riverside area . \nname : The Vaults | food : Chinese | price : more than £ 30 | family friendly : yes||A children - friendly place for Chinese food , ' The Vaults ' offers a culinary experience ranging anything above £ 30 . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||There is a poorly rated restaurant The Golden Curry that is family friendly and provides sushi and shrimp . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : no||The Rice Boat is in the city centre and serves French food . They have a low customer rating and are not family - friendly . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is kid friendly \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||For a kid - friendly fast food place , you can go to The Golden Curry . Its customer rating is 3 out of 5 . Find it by the riverside , near Café Rouge . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada with price range £ 20 - 25 get customer rating 3 out of five . It is also kids friendly place . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Strada is a family friendly place with low customer rating and less than £ 20 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||A three star pub serving fast food called Zizzi is family friendly . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||The Golden Palace at Riverside restaurant average rating \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is in the riverside area and serves English food . It is children friendly and has a price range of more than £ 30 with a high customer rating . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood restaurant is a family friendly place . \nname : Bibimbap House | food : Italian | price : moderate | area : city centre | near : Clare Hall||Near Clare Hall is a moderately priced restaurant called Bibimbap House . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||A budget friendly place to visit near All Bar One would be the Cotto near the riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle serving Japanese cuisine in its coffee shop does not cater for children . It is situated close to Burger King near riverside . It has a price list of more than £ 30 but has a customer review of 5 out of 5 . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced English restaurant in the city centre . They are not kid friendly and have a 1 out of 5 rating . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is family friendly serving Italian \nname : The Rice Boat | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a 3 out of 5 customer rating , The Rice Boat is an English , kid friendly , restaurant in the riverside area . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : no||Alimentum offers high priced Chinese cuisine in a non - child friendly environment at the Riverside . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||The pub called The Olive Grove which is cheap and child - friendly it serves Italian food is located in riverside \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||Loch Fyne is a cheap restaurant providing cheeses , wine and desserts . It is not suitable for families . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : moderate||An Indian restaurant called The Dumpling Tree offers food at a moderate price \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||Located in the city centre , The Phoenix is a Japanese restaurant offering moderately priced food . It has a customer rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||if you needs somewhere children friendly to get some Fast food , the highly rated Aromi coffee shop can be found in the riverside area . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice is in the moderate price range , in the riverside area . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a poorly rated , child friendly restaurant . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a highly priced coffee shop in the city centre serving fast food , with a customer rating of 1 out of 5 \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : riverside||The Waterman is a low rated Chinese food pub . It is located on the riverside . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||Situated by the river , the Giraffe pub is home to fine fruit , wine and cheeses . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a Italian coffee shop by the riverside , located near Clare Hall with 1 out of 5 star customer rating . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum located in the city centre near the Yippee Noodle Bar is high in price range , but has a customer rating of 1 out of 5 and serves English food \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a low - cost coffee shop , French food located in the centre of the city , serves dishes from £ 30 for all \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a Italian food , coffee shop fusion and it is not family - friendly . It does offer great food at low prices and has a rating of 5 out of 5 . It is located near Café Sicilia . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a restaurant kids friendly and as a customer rating of 3 out of 5 \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a cheap fast food restaurant located in City Centre . 1 out of 5 customer rating . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Brazil||There is a moderately priced coffee shop with a 1 out of 5 customer rating called The Vaults located near Café Brazil in the City Centre . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : no||A pub called Cocum is priced below average , has an average customer rating , and is not family - friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop offers fast food with an average customer rating . It is located near Clare Hall in riverside . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced Chinese restaurant . It only has a 1 star out of 5 rating and isn 't kid friendly . I t is located riverside by the Express by Holiday Inn . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||On the river , there is a three star pub named The Waterman . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||Browns Cambridge which sells Japanese food , has a high price range and a customer rating of 3 out of 5 . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is near All Bar One . They serve Japanese food with a price range less than £ 20 . They have a low customer rating . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Look near Riverside for Giraffe . It 's family friendly pub food that 's French . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The one star restaurant at a riverside near Express by Holiday Inn call The Rice Boat sells Indian food at a moderate price that is very kid friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Avalon||near Avalon in the riverside area there is a coffee shop with a average customer review called Blue Spice which is less than £ 20 price range but is not family - friendly \nname : The Cambridge Blue | Type : pub | food : French | price : cheap | near : Café Brazil||The Cambridge Blue is a low price range pub serving French food . It is located near Café Brazil . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a medium price range coffee shop The Golden Palace located close to the centre of the city . It has a superb view across the river . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced Italian restaurant located near Express by Holiday Inn . The Rice Boat is situated near the riverside and is not kid friendly while simultaneously rated by customers as 1 out of 5 . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , family - friendly restaurant , that serves French food . It is located in the city centre near the Express by Holiday Inn and has received a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto coffee shop in the city centre , near The Portland Arms serves Indian food , it is expensive but has high customer ratings \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||Located near Café Sicilia on the riverside , The Dumpling Tree is a family - friendly coffee shop with cheap prices . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||Cotto is family friendly and it is rated as average by customers . Food is English and it is near the Ranch . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Zizzi is a cheap family - friendly coffee shop located in the city centre , but its rating is low . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||For an average priced meal try The Golden Palace restaurant . \nname : Blue Spice | price : £ 20 - 25 | area : riverside||Blue Spice has a price range of £ 20 - 25 . It is located in Riverside . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Fast food restaurant located near Rainbow Vegetarian Café with prices more than £ 30 . It is not a children friendly establishment . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||For £ 20 - 25 , The Dumpling Tree is a child - friendly coffee shop . It is located near Café Sicilia at the riverside . \nname : The Punter | food : English | price : high||The Punter has English food at a high price range . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a moderately priced , kid friendly , coffee shop located in the Riverside area . Customers rate it 3 out of 5 . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | near : The Sorrento||near The Sorrento in the city centre is inexpensive French food at The Mill coffee shop \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a coffee shop that serves Indian food located in riverside , is no family friendly site but the customer Rating is 5 out of 5 . \nname : Cotto | food : French | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto serves French food near Ranch , which is kids friendly with the customer rating 1 out of 5 . \nname : The Twenty Two | Type : pub | customer rating : average | area : city centre | near : Café Sicilia||Head to the city centre for an average pub experience at The Twenty Two , located near Café Sicilia . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non - family - friendly fast food joint located in the city centre near Express by Holiday Inn . It has a low customer rating and a price range of less than 20 GBP . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , an expensive restaurant that serves excellent sushi , is located near Rainbow Vegetarian Café . It is suitable for families with children . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The expensive coffee shop The Golden Palace is located north of the city center and has a 3 star rating . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man for family friendly good value meals . Located near All Bar One and the city centre \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a Chinese restaurant with low customer ratings and is located in city centre . It cost less than 20 euro 's . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||French venue called The Phoenix on the river side is a 5 out of 5 star £ 30 price range venue . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||A family - Friendly and cheap Italian restaurant called The Wrestlers also has an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a fun and competitive Food Establishment in the mid - range for Italian fare . It is kid - friendly and located near Raja Indian Cuisine near City Centre . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man serves English food for a moderate price . Its a kid - friendly establishment in the city centre near All Bar One . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||Located next to All Bar One , Midsummer House , low - cost 3 star food \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||higher priced riverside setting The Eagle as a poor customer rating \nname : The Vaults | food : English | price : cheap | family friendly : yes||The Vaults is cheap English food that is family friendly . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix providing Fast food . It is located in riverside area . Have 3 out of 5 costumer rating and medium low price . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman served English style food near the Crown Plaza Hotel and is for children as well . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a French coffee shop with a high rating , is not kid friendly , and has a price range of 20 to 25 . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a Japanese coffee shop with high customer ratings . The price range is £ 20 - 25 but they are not child friendly . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub serving fast food , near The Portland Arms . They are not family - friendly . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : city centre||The Phoenix is a city centre English restaurant that has generated a 5 out of 5 customer standard \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Located in the riverside area , the Clowns is a pub with a customer rating of average and a price range less than £ 20 . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : no||The Rice Boat is an average Indian in the city centre . It isn 't child friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a kids Friendly coffee shop that serves Indian food , with high customer Rating , near The Portland Arms . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||In the city centre there is a Japanese food venue called Alimentum which is family - friendly and has a price range of less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||There is a child friendly French restaurant called Loch Fyne \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||For average prices range you can visit family friendly place called The Wrestlers . It is low rated . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a Japanese restaurant located on the riverside . It falls in the less than £ 20 price range and has a low customer rating . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is located in the riverside area . It serves fast food , and is child friendly with a high customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The Cotto coffee shop is a cheap place in the centre of the city near The Portland Arms . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House is a Chinese food place in the moderate price range with a customer rating of 1 out of 5 near All Bar One . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a restaurant in Riverside . It is kid friendly and serves fast food . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Japanese food is provided at the kid - friendly Strada , located near Rainbow Vegetarian Café . It has a moderate price range and it receives a 1 out of 5 rating by customers . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Near The Portland Arms , there is a coffee shop named Cotto that serves Fast food for £ 20 - 25 , it is high rated \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a Kid friendly coffee ship near Avalon . It is located riverside with a medium price range and child friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a coffee shop that offers children area . It is located in the city centre , near to Avalon . It has low customer rating and a price range more than £ 30 . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn with a customer rating of 3 out of 5. it is high - priced and children friendly \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Zizzi is a high price range coffee shop in the city centre with a low customer rating . It is not child friendly . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Italian food with a average customer rating it is family friendly located near Café Rouge , and \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is an moderately priced Italian restaurant located at the centre of the city . The establishment is not kid friendly , and customers have rated it 1 out of 5 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||A kid friendly place called The Golden Curry is located near The Six Bells . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is a pub themed place with great food . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub serving Japanese food near The Portland Arms . No , it is not family - friendly \nname : The Twenty Two | food : Italian | family friendly : yes||Children are welcome to eat in The Twenty Two Italian restaurant . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||Midsummer House is an Italian restaurant near Café Rouge that has low customer ratings \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a good quality family restaurant The Waterman . It offers quality food for cheap . \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Located in the riverside area , Blue Spice is a Japanese restaurant with a £ 20 - 25 price range . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||In the city centre is a high price range coffee shop with a low customer rating called Zizzi . It is also not child friendly . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is located near City centre . It serves a variety of sushi options . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar that is rated three out of five stars . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||An adult place to buy Chinese food is The Rice Boat . It is for those with quite a high budget as it has a price range of more than £ 30 . The Rice Boat is located in the city centre , near Express by Holiday Inn . It is not children friendly yet has a high customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a kids - friendly coffee shop named Cocum that provides Italian food in the moderate price range . It has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant located near Express by Holiday Inn at riverside . It is moderately priced , not kids friendly and has average customer rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes||Aromi is an average , family - friendly Fast food and coffee shop located in the city centre \nname : Bibimbap House | food : French | price : more than £ 30 | area : city centre | near : Clare Hall||Located near Clare Hall in the city center , is a high - priced French restaurant , Bibimbap House . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | near : The Sorrento||Near to The Sorrento in the city centre is The Mill , a high end coffee shop serving Japanese food . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café Strada has a moderate price range is not kid friendly , with a 1 out of 5 customer rating they serve Italian food \nname : The Twenty Two | food : Fast food | family friendly : no||The Twenty Two place serves fast food and is not family - friendly . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice in the riverside area has a customer rating of 1 out 5 . Yes , they are kids friendly and have a moderate price range . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : city centre||Clowns , a pub , in the city centre with a high customer rating . Price range is 20 - 25 . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||There is a pub called Green Man in the riverside near Café Rouge which offers Japanese food . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||For £ 20 - 25 you can get a highly rated Chinese meal from Strada , located near the Rainbow Vegetarian Café , not kid friendly . \nname : The Plough | Type : pub | food : Chinese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub that provides Chinese food in the more than £ 30 price range . It is near Café Rouge . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly restaurant serving beluga at low prices , located in the city centre . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid friendly restaurant located in riverside that serves Japanese food from twenty to twenty - five euros , and has a customer rating from three to five . \nname : Blue Spice | food : Italian | price : more than £ 30 | area : riverside||The Blue Spice offers quality Italian cuisine for over 30 lbs near Riverside \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||The Cambridge Blue is an English restaurant and gets a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Indian | price : high | near : Café Brazil||The Cambridge Blue is a high priced pub that serves Indian food near Café Brazil . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||There is a restaurant located near All Bar One called Midsummer House . It is in the high price range with a 3 star rating . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a moderate - priced in Fast food and has 3 out of 5 customer rating . It is located in the riverside area near of Yippee Noodle Bar . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop is a restaurant offering food and drink . it is located near Clare Hall . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is high priced and located in riverside close to All Bar One . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||A children friendly restaurant called The Golden Curry is located in the riverside area near Café Rouge . It has Italian style food and high customer ratings . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter is a Japanese restaurant with a price range more than £ 30 . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Japanese restaurant located in city centre near Café Rouge . Rated 1 out of 5 stars . Family Unfriendly . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a child friendly placed located in the city centre near The Rice Boat , but it is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is kid - friendly , with prices in the lower 20s . The serve French food on the riverside . It 's located near Raja Indian Cuisine . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||There is a coffee shop that serves Japanese food in the riverside area near The Portland Arms with a price range of less than £ 20 . It is called Cotto . Unfortunately for them , they have low customer rating . \nname : The Rice Boat | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The riverside French restaurant , The Rice Boat , although kid friendly has a 1 out of 5 customer rating . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||Curried delights The Golden Curry not family friendly located by The Bakers . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||Near Café Sicilia in riverside . The Twenty Two pub is rated high . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop is a family friendly coffee shop located along the riverside near Avalon with a great price range of less than £ 20.00 although their customer ratings are low . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is located in riverside , near Burger King . it is a coffee shop which sells Japanese food for less than £ 20 . it is rated average by customers but isn 't family - friendly \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||It has a customer rating of 5 out of 5 . Taste of Cambridge is a cheap restaurant . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is a mid range pub for meals . Customers have given it 3 out of 5 rating and it is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a high - priced Italian coffee shop in riverside . It has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly restaurant offering Japanese food ranging in price from £ 20 - 25 . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : no||The Wrestlers offers average , expensive Indian food in an adult friendly environment . \nname : Green Man | Type : restaurant | area : riverside||The Green Man restaurant is located on the bank of the river . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a non - child - friendly restaurant in the high price range that has a customer rating of three out of five . It is located in the city centre near The Rice Boat . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a city centre dive that serves Chinese food . It might be okay for lunch , but it 's not a place for a family outing . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an expensive Indian coffee shop near Café Sicilia that is not children friendly . Their customers have rated 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located near Crowne Plaza Hotel where you can eat French food and your children will be welcome . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||By the riverside is Clowns , a Café that serves French cuisine . It has a consumer rating of 5 out of 5 , and is nearby Clare Hall . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||If you are looking for a well - reviewed burger restaurant to the north of Cambridge City centre , then try The Golden Curry , close to Café Rouge . Children are welcome , and it has received several very good reviews . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||In the city centre there 's a fast food coffee shop called The Golden Palace . It 's got 3 out of 5 ratings by customers and is moderately priced . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove pub , we have the best French for less than £ 20 and we give you at the riverside \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry serving Italian food can be found near The Bakers ; is kid friendly and a moderate price range . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : city centre||In the city center there is a French pub called ' The Waterman ' , it is not highly rated by previous customers . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Blue Spice is a non - family - friendly restaurant with a low customer rating and has a price range of less than £ 20 . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||If you 're looking for a pub that is kid friendly , with a high customer rating , come check us out here at Aromi . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||In the centre of the city , near All Bar One , you can find a family friendly , low cost venue serving Indian food . The name of this venue is The Green Man . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a kid friendly pub that has a high customer rating . it is located along the riverside . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , Indian restaurant , rated 3 out of 5 by customers , known for its moderate prices and located in Riverside , near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop in city centre serving Italian food . Prices range under £ 20 and has low customer ratings . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no||Aromi is a Japanese coffee shop in the city centre . It has a low rating and is not family - friendly . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a moderate priced coffee shop that has a customer rating of 1 out of 5 that is not child friendly in the city centre called Zizzi . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The family friendly sushi food place ' Cotto ' is found near Ranch and is highly rated by its customers . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi Is a restaurant in the area of Riverside that has Italian food . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry is not family - friendly , but is a Fast food restaurant with a low customer rating . \nname : The Vaults | food : Fast food | price : moderate | family friendly : no||The Vaults does not welcome children . It offers fast food in moderate prices . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat has prices less than £ 20 and is close by the Rainbow Vegetarian Café . Customer rating is low . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a Japanese coffee shop with a 5 out of 5 customer rating and is cheap to eat . It is situated by the riverside . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a high priced , low rated , coffee shop in the riverside area near Avalon . It is family friendly \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||For a cheap pub near Café Adriatic , go to The Vaults . They have an average rating . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes||Giraffe is Fast food family and friendly restaurant located in city centre . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||In the riverside area , near Café Rouge is an Italian food place named The Golden Curry , which is kid friendly and has a high customer rating . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is a high priced , children friendly place that serves English food . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a cheap family - friendly Chinese restaurant called the Strada which has an average customer rating . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is an average priced Japanese restaurant near The Six Bells . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French food in the riverside area near Express by Holiday Inn . It is mid priced and child friendly but has a low customer rating . \nname : The Punter | food : English | price : moderate||A reasonably priced pub , The Punter serves British food and can be found in the city center . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||The Zizzi is a highly rated pub where you can eat Fast food . It is kids friendly . \nname : The Golden Curry | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry serves Chinese cuisine . It is near The Bakers , and is kid friendly . The price range is average . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||A kids friendly pub includes The Dumpling Tree . It is located near The Portland Arms and serves Japanese food . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an excellent restaurant , family friendly and expensive . It 's located in a convenient location , just outside the city centre and next to Express by Holiday Inn hotel . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kid friendly establishment near Express by Holiday Inn with a price range of 20 - 25 euros and a customer rating of 3 out of 5 . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||The Strada is an English pub near Yippee Noodle Bar with a high customer rating . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a 5 star restaurant that is children friendly that offers sushi located within the area . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Blue Spice : Italian food served by the riverside with an inexpensive price range . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||For nicer fast food with a higher price tag eat at Bibimbap House in the Riverside area close to Clare Hall . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a kid - friendly pub located in the city centre area . It serves Indian food for a moderate price . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||The restaurant named Travellers Rest Beefeater is a child friendly spot with a high price range . \nname : Bibimbap House | food : English | area : city centre | near : The Rice Boat||Bibimbap House is near The Rice Boat in the City center . It has English food . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||1 out of 5 customer rating restaurant with a moderate price range is Taste of Cambridge \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||High rated Italian restaurants near Café Rouge include the Midsummer House . \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : no||There is a restaurant located in city centre serving English food called The Rice Boat . Due to being unfriendly to families , their customer service rating is low . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||The Twenty Two is an Italian restaurant in the riverside area that is not family - friendly . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop in riverside near Café Brazil . It has a 5 out of 5 rating and prices begin at £ 30 . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||In river side , The Olive Grove is an Indian pub which is family friendly in a price range of £ 20 . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree is a high end fine dining restaurant . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no||A family - friendly coffee shop serving Italian food is called Cocum . They have a moderate price range with a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop who is child friendly that sells Japanese food within a high price range near Raja Indian Cuisine at Riverside . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a pub located by the riverside . It is rated 1 out of 5 by customers and kid friendly . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a kid friendly establishment that serves English food at a moderate price . It is located in the centre of the city near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Located in the city centre is a coffee shop for adults called Fitzbillies . This coffee shop serves fast food priced under £ 20 , and receives a low customer rating . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice , a kid friendly , moderate price range , riverside area restaurant has a customer rating of 3 out of 5 . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a family friendly restaurant near Express by Holiday Inn . It offers fare less than £ 20 and has low customer ratings . \nname : The Twenty Two | Type : pub | customer rating : low | area : city centre | near : Café Sicilia||The Twenty Two is a pub placed near to Café Sicilia . It is located in the city centre . There is a low rating about customer rating . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge in the riverside area . It is Italian , not family - friendly and has an average rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Chinese food near Express by Holiday Inn in the city centre . Although they are not family friendly , The Rice Boat has an average customer rating and the food is cheap . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : no||Alimentum is a non - family friendly restaurant serving mid - priced wine and hors d 'oeuvres along the riverside . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House is an expensive , 1 star restaurant located near All Bar One . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||You can find French food for less than 20 GBP at The Wrestlers . A family friendly coffee shop located near Raja Indian Cuisine . \nname : The Golden Curry | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kid - friendly restaurant serving Italian food . It is highly rated near the Café Rouge in Riverside . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||I love the Strada restaurant near the Rainbow Vegetarian Café . Their food is so good . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||On the riverside is the The Eagle , in the moderate price range , with 1 out of 5 customer rating . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children friendly coffee shop near Avalon in Riverside that has price range more than £ 30 with high customer rating . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a French restaurant by the riverside , located near The Rice Boat , most customers don 't care to eat there . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop and it offers Indian food . The customer rating is average and it is located in the city centre and it is not family friendly . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix is a Japanese restaurant located by the riverside for less than £ 20 \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||There is a fast - food pub named Zizzi , it is family friendly , and has low customer review ratings . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : city centre||The Indian pub The Waterman in located in the city centre and has a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : French | price : high | area : riverside||The Mill is a French pub in the riverside area in the high price range . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | near : The Sorrento||There is a coffee shop , The Mill , near The Sorrento in the city centre . Fast food is available there in a price range less than £ 20 . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub providing Italian food in the moderate price range . It is located in the riverside area and is kid friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The coffee shop , Aromi , offers Indian food . It is kid - friendly , located in city centre and has an excellent customer rating . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||For that extra special English pub meal visit The Cambridge Blue situated next to Café Brazil . \nname : Green Man | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a Chinese restaurant in the riverside are located near All Bar One . It is cheap and family friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||Located near the river , a short distance from St. John 's College , is The Golden Palace . This upscale setting offers food and beverages sure to please the most discriminating palates . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The French food place , ' The Rice Boat ' , is a bit pricey at over 30 pounds a meal but boasts perfect customer ratings . It is located near the Express by Holiday Inn along side the river . It is not a child - friendly place . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge is a cheap restaurant with 1 star . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : city centre | near : Clare Hall||Near Clare Hall in the centre of the city is Clowns French coffee Shop , it is not highly rated . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||A restaurant serving Japanese cuisine called The Cambridge Blue has a customer Rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a children friendly coffee shop called The Eagle located near the Burger King in the Riverside area , it receives high customer ratings and is moderately priced at around £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||family - friendly , 5 out of 5 French food coffee shop . Browns Cambridge is located near Crowne Plaza Hotel in the city centre . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub , It is high priced and located in the riverside area . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | near : Café Brazil||The Vaults is an expensive coffee shop located near Café Brazil . It is located in the city center and has low customer ratings . \nname : The Golden Curry | food : Indian | price : high | family friendly : yes | near : The Bakers||There is a highly priced Indian restaurant near The Bakers that is known for being child - friendly . It is known as The Golden Curry . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Indian - serving coffee shop near Crowne Plaza Hotel , Browns Cambridge , in the city centre has an average customer rating and is not family friendly . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is a high priced riverside restaurant near All Bar One . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : yes||In the city centre a family - friendly Japanese food restaurant called The Twenty Two . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Leave the kids at home and come enjoy some moderately priced Chinese food at The Rice Boat . Don 't let the low star rating fool you , we are located riverside right by the Express by Holiday Inn . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||At the riverside is The Phoenix : a place that offers Japanese food for £ 20 - 25 with a rating of 3 out of 5 \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||There is a Japanese coffee shop near Café Sicilia called The Punter . It has a price range of less than 20 pounds and an average customer rating . It is not family - friendly . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café you can find a high priced , average rated Indian food restaurant named Strada . Children are not permitted . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is an English restaurant in the city centre . It is rated 1 out of 5 , is not children friendly , and has a high price range . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||Riverside has this Indian food place called The Waterman , all I 've heard is that the reviews are average , prices are high and they aren 't kid friendly . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood is a poorly recommended pub serving French food sited in the city centre . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | near : Clare Hall||in the City Centre near Clare Hall is Clowns a coffee shop selling Fast food with a low customer rating . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a place called The Rice Boat , with a price range of more than £ 30 . French food is served there . It is located near Express by Holiday Inn , on the riverside . It is children - friendly and has a rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a city centre kids friendly coffee shop . It serves Indian food in a price range of £ 20 - 50 . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Wildwood is a pub providing Japanese food , with an average price range of £ 20 - £ 25 . It has a customer rating of 3 out of 5 . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a moderately - priced restaurant with a customer rating of 3 out of 5 . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill coffee shop provides sushi for a high price . It is located near The Sorrento . \nname : The Wrestlers | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers providing Japanese Food . 3 out of 5 customer rating , children friendly and high price range . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers serves Japanese food . It is in the price range £ 20- £ 25 with a customer rating of 3 out of 5 . It is not kids friendly \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice is English food in riverside priced moderate . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||For highly rated Italian meals starting at £ 30 , The Wrestlers is the place to eat . Children welcome . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Near the riverside Blue Spice serves French food for a price rang of £ 20 - 25 . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man serves high price range Indian food in the city centre near All Bar One and is not children friendly \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre that has French food , is not children friendly , and i would give it 3 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : city centre | near : The Sorrento||The Mill is a moderately priced fast food coffee shop located near The Sorrento in City Centre . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : riverside||The Waterman is a pub located in riverside . This establishment features Indian cuisine and earned an AVERAGE customer rating . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge is in the less than £ 20 price range and has a low customer rating . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is pub grub with good rating in the low price range . adults only \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Vaults is a very cheap , family friendly , Italian restaurant . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge , located near the city centre , is a moderately priced restaurant . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Find The Eagle is a Japanese food a highly rated kids friendly average priced coffee shop near Burger King in the riverside area . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes||For a child friendly pub in the centre of the city , The Olive Grove can provide Chinese food at a high price . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : no||Loch Fyne is a restaurant that serves Chinese food . It is high priced and doesn 't allow children . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , located near to Rainbow Vegetarian Café , provides moderately priced English food . It is not kid friendly and has received a 3 out of 5 customer rating . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||For a high cost family friendly restaurant , The Vaults offers fast food in a child friendly environment . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly Fast food joint with cheap prices and is located near The Bakers . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a Chinese based food place located in riverside . It is average and family friendly . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high - priced , Japanese restaurant near Yippee Noodle Bar . It has a 3 out of 5 customer rating , and is in the riverside area . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a cheap , family - friendly restaurant with a low average customer rating , located in the city center . \nname : The Punter | food : English | price : high||The Punter is a delicious restaurant that is conveniently located near other shops . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant providing English foods in price range of £ 20 - 25 . I is a good restaurant with high customer rating and located in the city centre near the Express by Holiday Inn . It is not kids friendly . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a Japanese pub located near Yippee Noodle Bar with a 3 out of 5 customer rating . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||Offering a price range of more than £ 30 and located in the Riverside area , The Vaults , with a low customer rating , is a coffee shop type of eatery near Café Brazil . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi is the place to go for English food in a family friendly pub with an average rating . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Located in the city centre , with an average customer rating , the Zizzi coffee shop has a price range less than 20 and is not family - friendly . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||There is a five star restaurant located near All Bar One called Midsummer House . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||With an average price range , Bibimbap House is near Clare Hall by a riverside in the City Centre . \nname : The Vaults | food : Indian | price : £ 20 - 25 | family friendly : yes||Kid friendly with a price range of £ 20 - 25 The Vaults serves Indian food . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Fitzbillies near The Six Bells now serves English food and has a cheap price range . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : no | near : The Bakers||The Plough is a restaurant that is a little expensive . Find it near The Bakers . It 's not children friendly . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop with a price range of less than £ 20 . They serve fast food . Also they are located near The Sorrento on the riverside . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a Chinese food restaurant located in the centre of the city that is not family friendly . It costs less than £ 20 . \nname : The Eagle | food : Chinese | customer rating : 5 out of 5||The Eagle serves Chinese food and has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||Located on the riverfront , north of the City centre , one - star ' The Rice Boat ' restaurant serves traditional British cuisine . The restaurant is not suitable for families . \nname : The Punter | food : Italian | price : less than £ 20||The Punters has really good prices and its Italian . \nname : Cotto | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||For a family friendly Chinese meal with a perfect customer rating , try Cotto , near Ranch . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Italian restaurant located near the Rainbow Vegetarian Café . It costs more than £ 30 , is not children friendly but has a high customer rating . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a moderately priced Japanese Pub , not recommended for children . It can be found in the city centre , close to Café Rouge . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a cheap coffee shop located by the The Portland Arms . It is rated one star . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||Wildwood is a restaurant that sells English food . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : city centre||In the city centre is The Phoenix , they serve English food for more than £ 30 . It has high customer ratings . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is a Chinese restaurant in the city centre . It has a high price range and a low customer rating . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||Midsummer House comes as highly rated Italian dining experience and is located near Café Rouge . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||The Vaults is a pub has a price range of under £ 20 and is near to the Café Adriatic . It has a low customer rating . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly restaurant by the riverside and Café Rouge . It serves Italian food and received a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||There is a Fast Food restaurant called Browns Cambridge . It is rated 5 out of 5 with an average spend exceeding £ 30 . \nname : The Twenty Two | food : French | family friendly : yes||The French food restaurant The Twenty Two has a kids friendly atmosphere . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace is a cheap coffee shop in City centre . They have a three star rating . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : no||The Golden Curry with an average customer rating is an Italian restaurant . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||There is a high priced pub near Café Brazil called The Cambridge Blue which serves Italian food . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat in riverside , offers fast food in a family - friendly setting and has average customer ratings . \nname : Blue Spice | food : French | price : more than £ 30 | area : city centre||Blue Spice serves French food and is located in city centre . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||A high restaurant of French food located in the centre of the city , serves dishes from £ 20 for all for all , including kids - friendly , called The Waterman \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : average | near : Ranch||Wildwood is an Indian coffee shop which has a cheap price range . The customer rating is average , and it is located near Ranch . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Serving Japanese food from a riverside location is the family friendly pub , Giraffe . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers the greatest Indian food by the riverside area . It is family friendly and near Café Rouge . The Golden Curry has an average customer rating . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns has a moderate price range and a customer rating of 1 out of 5 . It is a pub located by riverside . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a family - friendly restaurant with a customer rating of 3 out of 5 and has a high price range ; it is located north of the Rainbow Vegetarian Café . \nname : Bibimbap House | food : Fast food | price : moderate | area : city centre | near : Clare Hall||Bibimbap House in the city centre near Clare Hall is a fast food restaurant whose prices are moderate . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||Wildwood is a 1 star pub which offers fast food at a high price range . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a cheap restaurant in the riverside area , near Café Adriatic . It has a 5 out of 5 customer rating \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman is a riverside venue offering low priced Italian food . Customers reviews place it in the average rating , however it is not child friendly . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||The Waterman offers French food and there is no family area . It is located near to Crowne Plaza Hotel . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a children friendly Italian food restaurant in the center of city with high pricing and low customer rating 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is an inexpensive , family - friendly coffee shop that serves burgers and fries . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The three star The Golden Curry can be found near Café Rouge near the river . It serves Indian food and is family friendly . \nname : Blue Spice | food : French | price : moderate | area : city centre||Blue Spice is a restaurant that provides French food in the moderate price range located in the city centre . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||on the riverside is the Blue Spice which is not children friendly . it has a low customer rating and a price range of more than £ 30 . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne near The Rice Boat in the Riverside area serves English food and has an average customer rating . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Here is a French restaurant called The Wrestlers , kids friendly yes . customer rating and price range 1 out of 5 and moderate . \nname : The Waterman | price : more than £ 30 | family friendly : yes||Child friendly The Waterman is above average in price . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : 1 out of 5||There is a pub type Chinese place called Wildwood , the price range is high eve though ratings are 1 out of 5 . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant that serves English food and the price range is less than 20 pounds . It is located in the riverside area near Express by Holiday Inn . The customer rating for this establishment is low . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||Wildwood a great French pub low cost meals with great reviews . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Parents will love the pub style atmosphere and kids will the love the Italian cuisine at the Giraffe , located riverside . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe , located near The Bakers , is a moderately priced , 3 star coffee shop that is kid friendly . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap restaurant near the Express by Holiday Inn . It is located in the city centre . It is not family restaurant with low rating . \nname : The Punter | food : French | price : more than £ 30||The Punter offers French food priced at over £ 30 \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||If you are looking for a family friendly pub , The Olive Grove is perfect for you . It is a cheap establishment that is located North of the City Centre , close to the river . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||In the city centre is an Italian food premises called The Waterman with a price range of £ 20 - 25 and a high customer rating , it is not family - friendly . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : no||The Alimentum , in riverside , is moderately priced and not kid friendly . It specializes in English food . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a pub providing pricey in - house dining located near Café Brazil . \nname : The Twenty Two | food : Italian | family friendly : yes||Italian family friendly dining is available at The Twenty Two . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies isn 't rated very high . Located in Express by Holiday Inn , the food is priced more than £ 30 , and it 's not a very child friendly venue either . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly low rated French restaurant that will cost less than £ 20 near Rainbow Vegetarian Café \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||In city centre near Yippee Noodle Bar is a Japanese food restaurant called Alimentum . It has high customer ratings and a price range of £ 20 - 25 . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||Near Café Sicilia is a coffee shop named The Dumpling Tree . It is not family - friendly , has a price range less than 20 and it is in the riverside area . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man restaurants located near All Bar One is a higher priced establishment that offers spirits . This restaurant is family friendly and situated near the River . \nname : Loch Fyne | food : Indian | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne provides Indian food It is located in the riverside . It is near The Rice Boat . Its customer rating is average . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Adriatic||There is a moderately priced restaurant with a 1 out of 5 customer rating named Travellers Rest Beefeater . Its located in the city centre near Café Adriatic , \nname : The Golden Curry | food : Fast food | price : high | family friendly : no | near : The Bakers||There is a place near The Bakers that is not children friendly and sells high price fast food . It is called The Golden Curry . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel on the riverside is a family friendly French coffee shop called Taste of Cambridge . \nname : The Punter | food : Indian | price : more than £ 30||The Punter is an expensive venue offering Indian food . \nname : Green Man | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man offers average - priced Italian food to its customers . It is located along the riverside near All Bar One and is kid - friendly . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a pub that is near the riverside , they are a low price range at less than £ 20 , but the customer rating is low for the pub \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||A pub called The Golden Palace near Rainbow Vegetarian Café , at a riverside area . Costing more than £ 30 \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The Japanese coffee shop Cotto , situated in the riverside area of the city , near The Portland Arms , is in the higher price range but has a customer rating of five out of five . \nname : Strada | Type : restaurant | customer rating : high||Strada is a beautiful restaurant a little high prices and great service \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is an Italian restaurant located near The Bakers . It is child friendly and in the high price range . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||The Café Brazil is cheap and is close to the English pub that is called the Cambridge Blue \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is located near Café Rouge , the food offered is Italian however is only rated at 1 out of 5 . \nname : The Vaults | food : Chinese | price : moderate | family friendly : yes||Another moderately priced option for Chinese food is The Vaults . The Vaults is also kid friendly . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no||In the city centre is The Olive Grove pub which is not family - friendly . it serves English food at a price range of less than £ 20 . \nname : The Vaults | food : English | price : high | family friendly : no||The Vaults is an English restaurant with a high price range . It is not child friendly . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a 1 out of 5 rated by the customers children friendly restaurant . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Enjoy a child - free dining experience at The Golden Curry . The Chinese food served has received average ratings . Is it located in riverside by Café Rouge . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is a Japanese food place located in the city centre with a customer rating of 1 out of 5 . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Green Man is a pub that offers fast food . It 's in the Riverside area , near Café Rouge . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers serves English food . It is family friendly , low rated place within average prices range . \nname : The Twenty Two | food : Fast food | family friendly : no||The Twenty Two is a non - family friendly fast food establishment \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||Cotto is a fast food restaurant near the Ranch . It has a high customer rating and is children friendly . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is by the riverside near All Bar One and is priced under £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with a low customer rating . They serve Indian food in riverside near the Crowne Plaza Hotel and are not family friendly . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is outside of the City centre . It is a three star French restaurant which welcomes families . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||There 's a child friendly pub that 's pretty cheap named Zizzi . The also have fast food . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||It 's not a customer favorite but The Punter is a cheap family - friendly coffee shop near Café Sicilia . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||A customer rating of 1 out of 5 is given to Alimentum selling Chinese food . The price of the food is high and is located within the city centre near Yippee Noodle Bar . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||if you have a budget of more than £ 30 and don 't have children then go to The Waterman a nice Italian high rated restaurant on the riverside that isn 't children friendly \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||with a price range of more than 30 pounds there 's an Indian restaurant called The Phoenix in city centre with a high customer rating . \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||The Cocum , a family friendly pub , is cheap and has an average customer rating . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is a French food medium rated coffee shop with okay prices . Bring your kids and they will also enjoy . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||Near the Burger King in the city center there is a coffee shop called The Eagle that serves Indian food for a high price range . It is not children friendly and has an average customer rating . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a one star restaurant near Café Rouge that sells curry and does not allow children . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Cotto serves Chinese food in the average price range . It is locate near Ranch . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : no | near : Ranch||The Cricketers near the Ranch are a family - friendly pub with an average customer rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near the Express by Holiday Inn . It is an average riverside English restaurant with a family friendly environment . \nname : The Phoenix | food : Chinese | customer rating : high | area : riverside||The Phoenix provides Chinese food It is located in the riverside . Its customer rating is high . \nname : Cotto | food : English | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The venue with 5 out of 5 customer rating , Cotto , near the Ranch , sells English food and is family friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a low rating Japanese in the riverside area costing more than £ 30 and near the Yippee Noodle Bar . \nname : Blue Spice | food : French | price : high | area : riverside||Blue Spice Prices range from beautiful £ 20 - 25 \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is an average family friendly restaurant located near The Rice Boat on the riverside , and costs less than 20 . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum offers great home cooked British meals at affordable prices . Conveniently situated on the city ring road close to Yippee Noodle Bar . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a French coffee shop located near The Sorrento by the riverside with a high price range . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||adult only moderate priced low customer rating Japanese food at The Wrestlers \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is located by Crowne Plaza Hotel on the riverside . It is not family friendly and is rated one out of five for its Italian themed meals . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is a high - priced , fast food place for families near the river . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is located near Café Rouge and it has a one star rating . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a cheap , quality restaurant that sits just down the road from All Bar One \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||coffee shop The Punter offers a fast food meal . It has a high price . Near Café Sicilia . It is family - friendly and has an average opinions \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||Located near the riverside is coffee shop that serves fast food named The Golden Palace . With an average customer rating and a cheap price range . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is located in riverside which is near All Bar One is not children friendly and offers Fast food in high price range \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman serves Indian food in the high price range . The customer rating is 1 out of 5 . It is located in the riverside area and is not kid friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two riverside restaurant gate English good food . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 5 out of 5||The Cambridge Blue is a restaurant that provides Chinese food Its customer rating is 5 out of 5 . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant in the riverside area . It serves Japanese food , has excellent ratings , and is child friendly . It does however , have a higher price point . \nname : The Waterman | price : high | family friendly : yes||The Waterman has a high price range , but children are welcome . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop and fast food restaurant near The Portland Arms . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man is an expensive French food restaurant where children are not allowed . It is in the riverside area near the All Bar One . \nname : Bibimbap House | food : Chinese | price : cheap | area : riverside | near : Clare Hall||Bibimbap House provides Chinese food in the cheap price range . It is located in the riverside . It is near Clare Hall . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a French restaurant in riverside . They serve meals for less than 20 pounds , and families are welcome . \nname : Bibimbap House | food : Fast food | price : high | area : city centre | near : Clare Hall||Fast Food was eaten at the city centre inside Bibimbap House , near Clare Hall which the bill was very high . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant providing a low price range and 5 out of 5 rating . It is located by the riverside . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||Wildwood is a cheap and a low rated fast food . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||The Cocum is a non - family - friendly restaurant with a low rating . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : no | near : The Portland Arms||The Dumpling Tree , located near The Portland Arms is not family friendly . This is a Chinese pub . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne is a moderately priced Japanese restaurant but is not child friendly \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is highly rated , on the riverside and near All Bar One \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes||The Olive Grove is a high - priced , child friendly pub at riverside that serves Indian food . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||A great place to take the entire family to eat is The Plough . It is located near to Express by Holiday Inn . \nname : Strada | Type : restaurant | customer rating : high||Strada is a restaurant rated highly by its customers \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a low - priced coffee shop offering drinks and food . It can be found in close proximity of the Ranch . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a Japanese , non family - friendly coffee shop near Café Sicilia with an average customer rating and a price range less than 20 . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high - priced , family - friendly French restaurant in the city centre near the Express by Holiday Inn . Customers rate this establishment at 3 out of 5 . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a high price point and three star rating . It is located by the river near Café Adriatic . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||One child friendly pub in the Riverside area is The Olive Grove , but it does have a high price range . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly high priced coffee shop in the city centre near Burger King offering French food \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a non - children friendly Japanese coffee shop near Café Sicilia . It has a low customer rating and price range more than L30 . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop , located in city centre , is children friendly with a price range of more than £ 30 . It is near Raja Indian Cuisine . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||The family friendly establishment , The Punter , ranges for £ 20 and under . It can be found near The Portland Arms in Riverside . \nname : Cotto | food : French | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Rated 5 out of 5 , Cotto offers French food in a child - friendly atmosphere . It is located near the Ranch . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||There is a no family - friendly pub The Plough located near Café Rouge that provides French food in the cheap price range . \nname : The Eagle | food : Fast food | customer rating : high||The Eagle is a fast food restaurant which offers a high customer satisfaction rating . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café that has a low customer rating with a price range less than £ 20 . It serves English food and is family friendly \nname : Zizzi | Type : pub | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||A kids friendly pub named Zizzi serves Chinese food with a customer rating of 3 out of 5 . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is located a short distance from All Bar One and serves pastas and wines . The are low in cost . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : city centre||The Mill is an Indian Pub that cost less than £ 20 in the city centre . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a Fast food restaurant located in the riverside in the price range of less than £ 20 but it is not family - friendly and has low rating . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is an inexpensive place to buy burgers and fries . Suitable for families with young children and close to The Bakers . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||Green Man is a pub providing Japanese food . It is located in the riverside near Café Rouge . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Best Sushi there near All Bar One and at a low price , is at Midsummer House . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||Located in the city centre , fast food coffee shop The Golden Palace has a moderate price range and a customer rating of 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe coffee shop is children Friendly and has a average customer Rating located near The Bakers . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is kids friendly Japanese food restaurant in riverside area . It has high customer rating and the price range is £ 20 - 25 . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a child friendly place in riverside near The Rice Boat . It is an expensive place that has received a rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant with a price range beginning at more than £ 30 located by Express by Holiday Inn . The area of location is considered riverside but is not considered child friendly . The customer rating is high and Indian food is served . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a kids friendly restaurant located near Rainbow Vegetarian Café . For moderate prices , you can eat Indian food at this 3 out of 5 rated establishment . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee Shop providing French . It is located in riverside near Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a non family - friendly coffee shop that has Japanese food . Prices are under £ 20 with a low customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is high - priced with great ratings . It is located near Burger King , \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||In riverside area near Crowne Plaza Hotel You can visit coffee shop called Taste of Cambridge where Italian food is served . It is not a family - friendly place . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is an inexpensive restaurant that provides picnic food items and wine and spirits that is not good for families . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : no||Located in the city centre is a Japanese restaurant called The Twenty Two . It is not suitable for families . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : no||There is a restaurant that serves inexpensive Indian food called The Vaults . It is not family friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Japanese coffee shop ' Aromi ' is set by the river . It has average ratings and is child friendly . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||Family friendly , but high priced The Vaults has a wide variety of menu items to review . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that is not child friendly , low rated and priced high . It is located in the city center near Burger King and it serves Italian . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is in riverside , near to All Bar One . It serves Japanese food , in a child friendly environment with a £ 20- £ 25 price range . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat is a 3 star place called The Twenty Two is a high - priced business that is family friendly . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||For Fast food under £ 20 , Browns Cambridge is rated average by customers . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||To get some English food with a family - friendly atmosphere without breaking the bank , head to Alimentum by the city centre . \nname : The Mill | Type : pub | food : Fast food | price : high | area : city centre||The Mill is a high - priced pub serving fast food located in the city centre . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||in the city centre near the Express by Holiday Inn there is a place that is not family - friendly that serves Japanese food in the less than £ 20 range called The Rice Boat with average customer ratings \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||Giraffe It is not for the whole family \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is Fast food with coffee shop located on side Café Sicilia with cheap price no average \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the riverside area is a coffee shop called Zizzi . It is low priced , family family friendly , and has a high rating of 5 out of 5 stars . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant offers Asian cuisine in the mid - price range . It is conveniently located near to Express by Holiday Inn . \nname : Green Man | food : Japanese | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man children friendly high prices range located in riverside area near All Bar One \nname : Wildwood | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | near : Ranch||There is a coffee shop called Wildwood that serves Indian food , has a high customer rating , and is near Ranch . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Chinese food in the Riverside area . It is near Café Rouge and has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is a kid friendly , Fast food restaurant in a high price range . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside , near the Express by Holiday Inn is a cheap Japanese restaurant called The Rice Boat that has a rating of 5 out of 5 but is not family - friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a cheap Japanese coffee shop located near Café Sicilia . It is family - friendly and has good customer rating . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||By the riverside , The Eagle is situated . It has a customer rating of 3 out of 5 and a high price range . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop serving Italian food with a price range of less than £ 20 . The Golden Palace gets a low customer rating and is located riverside . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a high - priced coffee shop that is family friendly and provides pasta . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||For children friendly Fast food , go to The Twenty Two in riverside . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop that serves Fast food in the city centre . It has a high price range and an average rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Fitzbillies is a non - children friendly Japanese coffee shop in the city centre with a price range of more than £ 30 and has a customer rating of 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a coffee shop providing Indian food in the cheap price range . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a Japanese coffee shop by the riverside with a 3 out of 5 rating and prices ranging from £ 20 to £ 25 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The coffee shop , Fitzbillies that serves Italian food , is not family - friendly has a low customer rating within the price rant of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop located near Burger King in the city centre . They serve Japanese food with a price range of 20 - 25 and are rated 3 out of 5 . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a customer rating of a 3 out of 5 and moderate prices for Italian food The Waterman yes it is a kid friendly environment located in riverside \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||A coffee shop with a high customer rating is Cocum which serves Fast food . It is child friendly and has a price range of more than £ 30 . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Italian restaurant . It has an average rating and is located near Rainbow Vegetarian Café \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Chinese restaurant called The Rice Boat located near the Express by Holiday Inn , in city center , offers a price range of 20 to 25 pounds . It has a high customer rating but , is not kid friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||The Olive Grove pub is kid friendly , with cheap Italian food . It is in the area of riverside . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue is a restaurant with and average rating serving French food . \nname : Bibimbap House | food : English | price : moderate | area : city centre | near : Clare Hall||Bibimbap House near Clare Hall in the city center offers English style food at a moderate price \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||Near Café Rouge there is a cheap family friendly pub that has English food named The Plough . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||There is a restaurant Aromi located in the riverside area . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||In the city centre , The Phoenix serves moderately priced Chinese food with average customer ratings \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an upscale fast food coffee shop that is family friendly . It is located next to Café Sicilia . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Located in the city centre , The Wrestlers is a French restaurant . It has a medium price range , is family friendly , and has received average reviews . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||There is a family friendly restaurant located near Café Rouge in the city centre called The Golden Curry which serves low quality food . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : no||A moderately rated non kid friendly French Food restaurant is The Wrestlers \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city , there is a pub named Aromi with a 5 star rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||In the city centre , near to The Rice Boat is located The Twenty Two . It has a customer rating 5 out of 5 and a price range more than £ 30 . There is no children area . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada , near Rainbow Vegetarian Café has French food for more than £ 30 , is children friendly , but has a low customer rating . \nname : The Golden Curry | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has Japanese food and has a high rating . It is near Café Rouge . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||Despite the name , Travellers Rest Beefeater is a fairly priced restaurant that allows those of all ages and averages at £ 30 per visit . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||The Zizzi is a family friendly pub located in City Centre . 1 our of 5 customer rating . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The pub located near Café Rouge known as The Plough is kids friendly , they serve French food with a price range of £ 20- £ 25 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||Loch Fyne is an inexpensive choice to feed your family . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||The Mill is a pub that has Japanese food . It is in riverside and has a price range more than £ 30 . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||for a kids Friendly restaurant at the riverside , The Twenty Two serves French cuisine \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a coffee shop that offers a family friendly environment for less than 20 in the Riverside area near Café Sicilia . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is a high priced , family friendly , fast food restaurant . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop near to the Café Sicilia , it is called The Punter . It is a kids friendly place with a customer rating of 3 out of 5 , and offers French food in the average price range . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : yes||In the city centre is located a pub named The Olive Grove that offers family area and it has a price range less than £ 20 . \nname : The Eagle | food : French | customer rating : low||A French restaurant with very low customer ratings is The Eagle . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a price more than £ 30 near All Bar One . Riverside area location . \nname : Cotto | food : Chinese | customer rating : low | family friendly : yes | near : Ranch||Cotto provides Chinese food . It is near Ranch . Its customer rating is low . \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||The Alimentum is mid price range and family friendly and can be found to the north of the city center . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||if you go to riverside eat food in Clowns it is a nice place but price is high \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre , Browns Cambridge is an average , adult only fast food and coffee shop \nname : The Vaults | food : English | price : more than £ 30 | family friendly : yes||Yes there is a children friendly place called The Vaults , it serves English food and has a price range of £ 30 . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge located near The Sorrento riverside area is a non - family - friendly restaurant with English food . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree is an English restaurant that has a high price range . \nname : The Golden Curry | food : English | price : £ 20 - 25 | family friendly : yes | near : The Bakers||A restaurant names The Golden Curry , located near The Bakers , offers fairly priced food with great quality . The Golden Curry serves a variety of native food , and the restaurant is kids friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop offers a low - price range of delicacies such as wine and spirits , fondue , cheeseboards , French and Italian dishes . It is not family - friendly . It is situated by the river , and near to the Raja Indian Cuisine . \nname : The Vaults | Type : restaurant | food : Japanese||The Vaults is a restaurant offering Japanese cuisine . \nname : The Punter | food : Japanese | price : moderate||The Punter is a restaurant serving Japanese food in a medium price range \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||Along riverside is a pub called The Olive Grove , it is not kid - friendly with a price range of more than £ 30 . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice , located in Riverside , is a kid friendly , moderately priced place , with customer ratings 3 out of 5 . \nname : Green Man | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||There is a child - friendly venue Green Man by the riverside which offers Italian food for £ 30 or more . It is located near All Bar One . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The highly rated The Eagle English coffee shop is located in riverside near Burger King and has a price range of more than £ 30 . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly pub near the riverside with an average rating . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two is children - friendly French located in riverside \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a cheap priced restaurant offering Chinese food with an average customer rating and a family friendly atmosphere . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||For a family - friendly and inexpensive meal , try Green Man in the riverside area . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||The Dumpling Tree is a moderately priced sushi restaurant \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne in riverside near The Rice Boat is Italian and is rated 1 out of 5 . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is an Indian restaurant with a perfect customer rating . It offers cheap food but , is not family friendly . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a Japanese style family friendly restaurant near Riverside and Café Rouge with a 3 out of 5 customer rating . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kid - friendly restaurant that offers French food , and is located near the Crowne Plaza Hotel . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is located in the riverside area . It is a pub that costs 20 - 25 and has a high customer rating . \nname : Strada | Type : pub | food : Indian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Indian food can be found at the pub Strada , close to the Yippee Noodle Bar . Strada is rated 1 out of 5 by a recent customer . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Near the city centre it 's found a low - cost coffee shop , is called Fitzbillies \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum has a high customer rating , and is also a kid friendly restaurant . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada serves English food and has a moderate price range . It 's located near the Rainbow Vegetarian Café and is not kid friendly . Its customer rating is 1 our of 5 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that also serves fast food . It has low ratings and is not family - friendly . It is near The Portland Arms . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||If you are in the riverside area then I recommend The Olive Grove which is a French pub that is family friendly and only cost £ 20 \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||There is a pub called The Olive Grove in the riverside area . They serve cheap Italian food and are very family friendly . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Highly rated Japanese food is available at Alimentum in the riverside area . It is located near to Yippee Noodle Bar . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Italian restaurant The Golden Curry by Café Rouge got a 1 out of 5 rating . It 's kid friendly and it 's in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a reasonably priced restaurant that offers fast food and is a great place to eat with children , \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||On the riverside if The Olive Grove . It is a pub that has English food at a high price and is kid friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||Loch Fyne is a dine in restaurant for adults only . This restaurant serves at a low price range . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in City centre near Express by Holiday Inn . The are cheap sushi restaurant with high ratings and a family friendly atmosphere . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : city centre||The Waterman is rated average English pub grub located in the city center . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||For a family - friendly coffee shop in Riverside , check out Zizzi . The prices are less than £ 20 , and the customer rating is low . \nname : The Rice Boat | food : Italian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serves the best Italian food in Riverside . To show for that they have very high customer ratings and they are also child friendly . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||There is a highly rated restaurant in the city centre , The Waterman , that serves Indian food with menu prices over £ 30 . They are not child friendly . \nname : Zizzi | Type : restaurant | price : high | area : riverside||High Price Range Zizzi restaurant is at the riverside . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Family friendly Fitzbillies 5 star budget venue located near the Express by Holiday Inn . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a coffee shop located by the riverside which has a high price range with an average customer rating . they are children friendly \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge in the riverside area near The Sorrento has English food and a family friendly atmosphere . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||There is a cheap restaurant called Taste of Cambridge with an average rating by its customers . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a 1 out of 5 stars coffee shop that also serves fast food . It is not children Friendly and is a price Range of high . It is located in the city centre . so you can get a quick meal . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced coffee shop serving French food called The Wrestlers . It is in the city centre close to Raja Indian Cuisine , it is kids friendly . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge serves Fast food in a coffee shop rated 5 out of 5 stars . family - friendly and in the city centre area near Crowne Plaza Hotel \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||The Aromi is a pub style , child friendly restaurant in the Riverside district . The customer rating for this eating establishment is average . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Located near to The Bakers is Giraffe , a moderately priced family friendly coffee shop with a high customer rating . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada is a medium priced venue , please keep children at home as it is not family friendly . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is child friendly serving English food , located near ' Crowne Plaza Hotel ' . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop offering Indian food at a moderate price range . It 's customer rating is 1 out of 5 and it is located near Ranch . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop serving Italian food near Ranch , it 's expensive but has a bad rating . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese family friendly restaurant near Express by Holiday Inn located on the riverside has low priced food as well as poor customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : cheap||The Dumpling Tree Chinese restaurant provides cheap food . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||In riverside The Phoenix has Italian food and is rated 1 out of 5 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman is located in the city centre and offers French food for under £ 20 . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||The riverside Japanese pub , The Mill has a price range of £ 20 - 25 . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub with family friendly atmosphere . It serves Japanese food in price range less than £ 20 . The Plough is located near Café Rouge . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Fast food can be found at Midsummer House . It has an average customer rating and is near Café Rouge . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||For cheap Chinese food in riverside there 's The Rice Boat near Express by Holiday Inn . It has a customer rating of 5 out of 5 . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix has French food . It is located in riverside with 5 out of 5 customer rating for cheap food . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is Fast Food in the Riverside area that is kids - friendly , in the moderate price range and has a customer rating of 3 out of 5 . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is a restaurant located near Café Sicilia . It is average priced and is child friendly . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice in riverside has a moderate price range . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a family friendly , three star pub serving fast food . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a children friendly restaurant located in the riverside near Express by Holiday Inn that provides Indian food which has a high customer rating and the price range is more than £ 30 . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub which is low - priced restaurant that is not family friendly and serves wines and cheeses . It is located near the Café Rouge . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||Zizzi is a cheap family friendly coffee shop on the riverside \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two offers Fast food for kids Friendly . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||There is moderately priced Greek restaurant named Browns Cambridge . It has been rated 5 star . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||A Japanese restaurant named Fitzbillies is located near The Six Bells with a price range of less the £ 20 . \nname : The Eagle | food : Italian | customer rating : low||With low customer reviews , The Eagle is a restaurant serving Italian foods . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant , located near Clare Hall by the riverside , that provide food at a medium price range . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : no||The Olive Grove is a pub serving Indian food and is located in riverside . It is not a kid friendly establishment . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||If you want an adventuress dining experience stop by the family friendly The Twenty Two located near The Rice Boat in the Riverside area . You cant always believe some low ratings and the price is right at under 20 Quid . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||A coffee shop called Cotto is near The Portland Arms and the city centre and a range of £ 20 - 25 and high rating . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop located at riverside near Avalon in the moderate price range . It is kids friendly and has a customer rating 3 out of 5 . \nname : Green Man | food : French | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a family friendly French food place with a cheap price range . It is in the riverside area near All Bar One . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the moderate price range . It is near Café Sicilia . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry serves Chinese food and touts a 1 out of 5 rating . This restaurant is Kid friendly . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry highly recommended by its customers serves Indian food and children are permitted . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||Japanese food can be found in the Cocum coffee shop . It is generally less than twenty pounds to eat there , customers have rated Cocum as average . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop , located in the area of Riverside . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Blue Spice offers French cuisine and cheap prices and is located in the riverside area . \nname : The Golden Curry | food : Indian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry serves Indian food that starts at £ 30 . Located in The Bakers , children welcome . \nname : Strada | Type : pub | food : Japanese | customer rating : high | near : Yippee Noodle Bar||There is a Japanese pub called Strada that is near the Yippee Noodle Bar \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman that is a Chinese joint has dishes ranging from 20 - 25 also has a high customer rating . Located in the city centre , the Waterman is kid friendly \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||There is a cheap coffee shop called The Mill serving Fast food . It is near The Sorrento in the riverside area . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly French pub located near The Portland Arms . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||There is an inexpensive pub called Wildwood that serves pasta . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The family - friendly Cocum is a coffee shop that serves Japanese food . Customer rating is low , but the price range is less than £ 20 . \nname : Bibimbap House | food : English | price : £ 20 - 25 | area : riverside | near : Clare Hall||Visiting Clare Hall and the riverside . Bibimbap House offers delicious English food in the £ 20 - 25 price range \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||There is a restaurant called Midsummer House that offers cheap food and is located near Café Rouge . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a child friendly coffee shop in the city centre near Avalon . It has a customer rating of 5 out of 5 and a price range of more than 30 pounds . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||With a customer rating of 3 out of 5 , The Phoenix offers food from Japan . It is rather pricey and can be found in the riverside area . \nname : The Mill | Type : pub | food : Chinese | price : high | area : city centre||The Mill is a pub that provides Chinese food in the high price range . It is located in the city centre . \nname : The Waterman | Type : pub | food : French | customer rating : high | area : riverside||The highly rated riverside pub The Waterman serves French food . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||The Plough is a restaurant near The Bakers which caters to adult tastes . Prices range up to £ 20 . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||With an average customer rating , fast food is available at The Cambridge Blue restaurant . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue restaurant has received moderate reviews and serves French food . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : no||A new Japanese restaurant has emerged in Riverside called Alimentum , offering moderate pricing and customer satisfaction . \nname : Green Man | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man serves Indian food and children are welcome here . They serve mostly Indian food and it 's a little pricey . Green Man is close to All Bar One by the riverside . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop offers food and is close to the river and The Sorrento . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap , family friendly restaurant serving French food near Rainbow Vegetarian Café . It has a low customer rating . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||A moderate priced , and kids - friendly place near Café Sicilia is Clowns . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn , in riverside is located a French food rating in 5of5 restaurant called The Rice Boat \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a low rated children friendly coffee shop that serves Italian eats . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||With its customer rating of 1 out of 5 and high price range , The Alimentum restaurant has Italian food and is located in riverside near Yippee Noodle Bar . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House in the riverside area near Clare Hall serves French food for more than 30 euros . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : low||The Cambridge Blue is a Chinese restaurant . The restaurant has a low customer rating . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Fast food restaurant that is located near the Express by Holiday Inn . It is not kid friendly and has a price range more than £ 30 . However , it has a high customer rating . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||If you want a restaurant that is not children friendly and in the price range of £ 30 , look for a place called The Wrestlers . Here , you can eat fast food from a restaurant that 's been given a high customer rating . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||You can eat Indian food at Alimentum located in the riverside area near the Yippee Noodle Bar . The price range is more than £ 30 and it has a high customer rating . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||In Riverside , Bibimbap House is located near Clare Hall provides French Food in a price range less than 20 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , is a cheap Italian restaurant located in city centre , near Express by Holiday Inn . It has average customer ratings and is not family - friendly . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||The Eagle in riverside has a high customer rating and a price range of 20 to 25 pounds . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||There is a fast food restaurant called The Wrestlers that is family friendly . It has a low customer rating and the food is priced below 20 euros . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||North of the city center is a moderately priced Italian coffee shop with great reviews named The Golden Palace . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a family restaurant is close to the river has 3 start reviews and is moderately priced \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a Japanese pub near Café Rouge . It 's moderately priced and kids friendly . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two near The Rice Boat in riverside has a price range of more than £ 30 . it is children Friendly with a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an Indian coffee shop that is in the lower price range with average customer ratings . It is located in Riverside and it is family friendly . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a fast food restaurant with a high price range offering fast food . They have a 1 of 5 customer rating and are not children friendly . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||With an average price range of £ 20 - 25 and high customer rating , Alimentum offers English cuisine in the riverside area . It is also near Yippee Noodle Bar . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||City centre Indian dining is on offer at Alimentum , not far from Yippee Noodle Bar . The food is cheaper than average , and customers rate it average . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||There 's a Japanese pub called The Cambridge Blue near Café Brazil . The price range is £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop located in the city centre . It is family - friendly and has a average customer rating offering prices less than £ 20 . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||For a children friendly , fast food establishment try the highly rated Cotto , close to the Ranch . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 3 out of 5 | area : riverside||Riverside Pub and Fast food 3 out of 5 stars , The Waterman \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly , average priced , low rated Italian eatery located in the city centre \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a low - rated Japanese coffee shop near the riverside with prices more than 30 pounds . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||The Italian Blue Spice in moderate price range located in riverside \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||There 's a poorly rated adult - only restaurant selling French food near the Rainbow Vegetarian Café . It 's called the Strada , and they charge more than £ 30 for a meal . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an average coffee shop offering Japanese Food . It is not a family - friendly establishment . It is located in the city centre near Crowne Plaza Hotel . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||Despite the low customer rating , The Golden Palace is a restaurant near the riverside . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada , Japanese restaurant ideal for you and your children with prices from £ 20 - 25 . We have a high attention to our clients , near Rainbow Vegetarian Café \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||For a nice meal without the noise of children try The Golden Curry , low priced and situated near The Bakers . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Highly rated Italian coffee shop Clowns , can be found on the riverside close to Clare Hall \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kids - friendly pub providing English food . It has a customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||A highly rated restaurant called Taste of Cambridge with a reasonable price tag . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne , a Japanese restaurant in city centre near The Rice Boat has a very good customer rating \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Families gather round at The Olive Grove to enjoy a delicious affordable meal . \nname : The Plough | Type : pub | food : Italian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||If you 're near Café Rouge , check out the Italian pub The Plough . The price range is about average for this area and feel free to bring your kids . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry offers fast food in a child friendly setting . Customers rated it 5 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop near Café Sicilia at riverside . Its price range is less than £ 20 and it is not family - friendly . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Fast food is served at The Waterman which is family friendly and is near Crowne Plaza Hotel . \nname : The Waterman | price : moderate | family friendly : yes||One location that is children friendly and has a moderate price range , is The Waterman . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Near Yippee Noodle Bar is a Japanese pub named Strada but it has a low customer rating . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||In the riverside area , near the Rainbow Vegetarian Café is a cheap pub called The Golden Palace . \nname : Strada | Type : pub | food : English | customer rating : low | near : Yippee Noodle Bar||There is an English pub near the Yippee Noodle Bar with a low customer rating called Strada . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||Near Café Brazil , is a pub called The Cambridge Blue . The pub serves Italian food for less than £ 20 \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Cocum is a children friendly , high priced , average rated pub . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||The Plough is an expensive restaurant , which is child Friendly , near to The Bakers . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is kid friendly and has a moderate price range . It is located in the riverside area and has a customer rating of 3 out of 5 . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : no||In the town centre there is the Alimentum French restaurant , prices starting at £ 30 . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||There is a Chinese food place called The Waterman that offers cheap food and is family friendly . They are in the city centre and rated averagely . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Average rated , cheap , family friendly place near Express by Holiday Inn is called Fitzbillies . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||Located next to Café Rouge is The Golden Curry , which offers low - rated Italian . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man restaurant has Chinese and is kids friendly . It is in the city centre near All Bar One with a moderate price range . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : no | near : The Portland Arms||Near the The Portland Arms , there 's a restaurant called The Dumpling Tree . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||With a customer rating of 3 out of 5 , The Wrestlers is a non kid friendly , moderately priced fast food restaurant . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a low - priced coffee shop that serves Indian food and has 5 out of 5 customer rating . It is not family friendly . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||Although they welcome every member of the family , Zizzi offers sub par classic burgers and fries . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a low priced family restaurant that offers breakfast . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a cheap city centre Japanese restaurant which has generated a 5 out of 5 from its customers , please avoid if you want to take children as this is not family - friendly \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Fast food just got classier riverside at Blue Spice less than 20 euros . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop in the riverside area . It serves French food , is family friendly and has a customer rating of low . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The averagely priced , average coffee shop , The Vaults is situated near Café Brazil in the riverside area . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a child friendly restaurant serving English food . \nname : Blue Spice | food : Italian | price : high | area : riverside||With a high price range , Blue Spice serves Italian food in the riverside area . \nname : The Vaults | food : French | price : high | family friendly : yes||The Vaults is a French food restaurant in the higher price range . It is child friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi is a pub that serves Chinese food with a high customer rating and is children friendly . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||There is a one star fast food restaurant called Fitzbillies next to The Six Bells . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located in the city centre near the Express by Holiday Inn The Rice Boat Chinese restaurant is well loved by customers serving high priced meals in a family friendly environment \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||The Wildwood pub provides Japanese food for the price of around £ 30 . It is rated 5 out of 5 in customer ratings . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a French coffee shop near the Ranch . It has a low customer rating and has a price range of more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace French coffee shop near the city centre which have a customer rating of 5 out 5 has a price range of more than £ 30 \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi offers pub for children Friendly located in riverside . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum sells low - priced fast food . It is rated one star , and located near to Yippee Noodle Bar in the riverside area . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Welcome to the The Waterman . We are not children friendly . Our food is English , and we are located on the riverside . Our price range is moderate . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop that also sells Japanese food . It can be found near the Crown Plaza Hotel on the riverside but unfortunately has a low customer rating . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is an average rated restaurant The Golden Curry located in riverside near Café Rouge . It has family friendly Japanese food . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an expensive Indian coffee shop located riverside near Raja Indian Cuisine . It is not family - friendly . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : city centre||Blue Spice is an Italian restaurant in the city centre with a price range of less than £ 20 . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||5 out of 5 rated location Travellers Rest Beefeater near Café Adriatic in the riverside area and a cheap price range \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix has great reviews . Near the river . \nname : The Waterman | price : moderate | family friendly : yes||Kid friendly and a moderate price range , The Waterman . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House serves French food near Café Rouge and has ok ratings . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : no||Adults rate The Aromi pub highly . It is located in City Centre and doesn 't allow kids . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||Riverside pub called Giraffe serves Fast food to adults only . \nname : The Punter | food : Italian | price : cheap||The Punter is a restaurant that serves inexpensive Italian food . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop located near the Portland Arms in city centre . The Price range is more than 30 pounds , has a low rating , and serves French food . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop near Raja Indian Cuisine . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||The Wildwood is near Ranch . It is a coffee shop that has French food . its price range is between 20 and 25 and has a customer rating of 3 out of 5 . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , Strada offers low prices for families . Low ratings . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||North of city centre and near Burger King , is a 1 star , medium priced restaurant called The Eagle . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly restaurant in riverside serving Italian food . However the customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a riverside coffee shop that serves French food . It is not family - friendly and is in the over £ 30 price range . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi , a 3 out of 5 pub , is a children - friendly pub located in riverside . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a cheap burger restaurant that is family - friendly and just North of City - centre . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a sushi restaurant located near the Express by Holiday Inn . The food is in the medium price range and it is not a family - friendly restaurant . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves fast food in Riverside . It is kids friendly with a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||Blue Spice is a coffee shop near Avalon in the city center . It does not have an environment suited to children but has reasonable prices and average customer reviews . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a children - friendly coffee shop named Zizzi that has 3 out of 5 customer rating in the riverside area and the price is high \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman , a Japanese restaurant that has a normal price range , high customer rating , and non - kid friendly environment is located in the riverside area . \nname : The Golden Curry | food : Fast food | customer rating : high | family friendly : yes||The Golden Curry is Fast food with a high customer rating . It is kid friendly . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a non family - friendly place with Italian food , it 's near Café Rouge in the city center . There customer rating is 5 out of 5 . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix is a restaurant located in the riverside area of Cambridge . The restaurant serves French cuisine , but unfortunately has been very badly regarded by customers . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is an expensive Italian restaurant . \nname : Bibimbap House | food : Japanese | price : high | area : riverside | near : Clare Hall||Dine on Japanese food near the riverside by Clare Hall at the Bibimbap House . This is a higher price ranged restaurant providing unsurpassed quality food . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : city centre||The Phoenix is a Chinese food . It is very cheap and consumer rating is average . It is in the center . of the city . \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a one - star take away food restaurant north of the City centre , near The Rice Boat . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||A high priced , kid friendly restaurant is called Travellers Rest Beefeater . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies serves Japanese food for less than £ 20 near The Six Bells . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Although low in customer rating , this kid friendly coffee shop located in the riverside area has moderate prices . Welcome to Zizzi . \nname : The Vaults | food : Indian | price : high | family friendly : no||The Vaults , a high priced Indian restaurant is not child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||'The Dumpling Tree is an expensive fast food restaurant . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child friendly coffee shop by the riverside , near Café Sicilia . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Near The Portland Arms is located Cotto , a low - cost Fast food 5of5 starts \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix , located near the Riverside , is a high quality wine , cheese and olive restaurant . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||With an average customer rating The Waterman Italian pub is located near the riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Located along the river near The Portland Arms , Cotto is an inexpensive , three - star coffee shop that serves sushi . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is located near The Six Bells and boasts a family - friendly atmosphere . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a Japanese restaurant in Riverside . Its prices range from £ 20 - 25 , and it receives high ratings from customers . \nname : The Mill | Type : pub | food : Fast food | price : high | area : city centre||The Mill is a fast food pub with a high price range in the city centre \nname : Wildwood | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | near : Ranch||The Wildwood is an expensive but very good coffee shop near Ranch which also sells food . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a family friendly restaurant called The Rice Boat located near Express by Holiday Inn . It is low - priced and has three stars . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman sells Japanese food in the city centre . Prices are moderate in this family - friendly place , but it has a 1 out of 5 customer rating . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : yes | near : All Bar One||There is a family - friendly restaurant Green Man in the city centre near All Bar One . They serve Italian food and is on the high price range . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop in the riverside area . It serves Indian food within a high price range but it is not children friendly and has a customer rating of 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||A coffee shop The Vaults has a customer rating of 5 out of 5 and is near Café Brazil in city centre . It is cheap . \nname : Loch Fyne | food : Indian | customer rating : low | area : riverside | near : The Rice Boat||There is a restaurant called Loch Fyne that provides Indian food . It has a low customer rating and is located near The Rice Boat in the Riverside area \nname : Midsummer House | food : Chinese | price : high | customer rating : average | near : All Bar One||An average but expensive Chinese restaurant near All Bar One is Midsummer House . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Located near Clare Hall on the riverbank north of the City centre , Bibimbap House is an Italian restaurant serving moderately - priced fare . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop near Avalon by the riverside in the City centre with a low customer rating and an average price range . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry Italian restaurant which is near The Bakers is a no family - friendly for less than £ 20 Italian food \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop near The Portland Arms . The price range is moderate and it has a 1 out of 5 customer rating . It is in the city centre area . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . It has an average customer rating , a high price range and is family friendly . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes||Located in the city center , The Olive Grove pub offers English food at a moderate price range and a kid friendly environment . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly restaurant that features French cuisine and has a 5 out of 5 customer rating . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat located near Express by Holiday Inn in city centre serves Indian food . It has a high price range . average customer rating and no , is not children friendly . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is a restaurant that sells Italian food but have a low customer rating , they are a family friendly place to eat . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located near the Crowne Plaza Hotel . It is north of the city center . \nname : Strada | Type : restaurant | customer rating : average||Strada is a restaurant with an average customer rating . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||For a great dining experience with a 5 out of 5 customer rating , I highly recommend the French restaurant of Browns Cambridge even if its a little pricey with most meals being more than 30 Euros . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is located near the Rainbow Vegetarian Café . It is an Indian restaurant . Rated one out of five , The Strada 's price range is moderate . It is not kid friendly . This restaurant is near the Rainbow Vegetarian Café . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum Chinese food serves moderate price range food in the riverside area near Yippee Noodle Bar with a customer rating of 3 out of 5 . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||Near Café Adriatic is a pub called The Vaults . The price range is high and the customer rating is 1 out of 5 . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is at the riverside and is near All Bar One . The price range is £ 20 - 25 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman serves French food in the £ 20 - £ 25 price range with a 3 out of 5 customer rating . It is located in the City Centre but is not child friendly \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||The Golden Curry offers and Italian menu and is child friendly . It also boasts excellent customer reviews . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House offers Japanese cuisine . Average price range is above £ 25 and it has moderate customer approval . It is near All Bar One . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge in riverside has great English food . It 's kid friendly and I 'd rate it 3 out of 5 . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers serves cheap British food in the city centre . It is not family friendly and has a low customer rating . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Highly rated expensive kid friendly Giraffe is a coffee shop near The Bakers \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove is a pub found in the city centre that is non child friendly in the more than 30 price range . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||Travellers Rest Beefeater located by the riverside near Café Adriatic has a high customer rating and a price range of more than £ 30 . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||In the center . of the city , near Café Rouge , there is a restaurant called The Golden Curry , serving Chinese food . It is rated five out of five by customers , but is not family friendly . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix are serving Italian food at the Riverside . Customers are rating this a 5 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a Chinese restaurant called The Golden Curry located in Riverside , near Café Rouge . It has a customer rating of 5 out of 5 and is family friendly . \nname : The Twenty Two | food : Italian | family friendly : no||The Twenty Two is an Italian with a non family - friendly environment . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is a Chinese food restaurant which is rated 5 out of 5 that is in the city centre , but is not family friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The highly know coffee shop , Zizzi , usually £ 30 and more is family friendly , located in riverside . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||Customer Ratings are low , but The Waterman is a Japanese pub located on the riverside . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||A customer rating of 5 out of 5 has been given to Italian coffee shop Clowns , in the Riverside area near Clare Hall . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : yes||This Indian , child friendly , eating venue has a average rating coming from its customers even though the price range is high . This venue is known as The Wrestlers . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||A coffee shop named The Punter with a price range of £ 20 - 25 is providing Japanese food . It is near Café Sicilia , it is kids friendly , and it also has a customer rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 1 out of 5||Wildwood is a pub providing Chinese food in the moderate price range . Its customer rating is 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||A coffee shop serving fast food in a moderate price range is Cotto , near The Portland Arms in city centre . They also have a low customer review . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn in the city centre , The Rice Boat is a family - friendly restaurant with a low rating and a price range of less than £ 20 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||There is a child friendly coffee shop near The Bakers called Giraffe . It is high priced , and has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||There is a really good Japanese coffee shop near The Portland Arms called The Cricketers . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : city centre | near : The Sorrento||There is a coffee shop named The Mill which is located in the city center near The Sorrento and provides Indian food and has a moderate price range . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is moderately priced . They are kid friendly and serve Italian food in riverside . \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||Cocum is a family friendly pub with an average customer rating and is a cheap place to dine . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||Located in riverside is The Golden Palace with a 3 out of 5 rating . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Near The Bakers is Giraffe , a child friendly average rated yet expensive coffee shop . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop in riverside near the Burger King . The price range is more than £ 30 , and it has a high customer rating- but it is not children friendly . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Midsummer House serves average food near Café Rouge . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is low . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Wildwood is a three - star pub featuring low prices . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant providing sushi in the low price range . It is located Express by Holiday Inn \nname : The Phoenix | food : English | customer rating : low | area : riverside||The Phoenix is an English venue in the Riverside area with a low customer rating . \nname : Strada | Type : pub | food : Indian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub , which offers Indian food . It has a customer rating of 1 out of 5 , and is located near Yippee Noodle Bar . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||Situated in riverside , The Punter is near The Portland Arms , and is in the average price range . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers which has a high customer rating offers English food in the price range of more than £ 30 and is not children friendly . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : average | near : All Bar One||Midsummer House provides Chinese food in the cheap price range . It is near All Bar One . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||adult only Japanese food at Fitzbillies coffee shop in the city centre has low customer rating and is expensive \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter , a French coffee shop located near Café Sicilia , is non child friendly , has a low customer rating and a high price range . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||There is a place named Green Man which serves Indian food less than £ 20 . It 's a family friendly place at the riverside near All Bar One . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||For a high - end coffee shop with high ratings in riverside , you should check out The Vaults near Café Brazil . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is providing Indian food in the price range . It is located in the riverside . It is near The Rice Boat . Its customer rating is 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non family - friendly coffee shop that serves Italian food for less than £ 20 . It is located near Raja Indian Cuisine in the city centre area . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Fast food located in riverside near Raja Indian Cuisine . It is cheap and family Friendly . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||There 's a kid friendly restaurant called , The Twenty Two , located near The Rice Boat , in the city centre area , offering menu items in the moderate price range . However , they 've earned only a 1 out of 5 customer rating . \nname : Loch Fyne | food : Japanese | customer rating : average | area : city centre | near : The Rice Boat||Located near The Rice Boat in the city centre is an average rated Japanese restaurant called Loch Fyne . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 1 out of 5||Wildwood is a Chinese pub in the moderate price range with 1 out of 5 stars . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman is a pub located in the city centre with mid - range prices . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||restaurant of Strada is 5 out of 5 \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is fast food and family friendly . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Next to the All Bar One is the Midsummer House providing sushi , it is high - priced and has 3 stars . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne , providing 1 star food close to The Rice Boat and the city centre . \nname : The Rice Boat | food : Fast food | area : riverside||Theres a fast food place near the river called The Rice Boat . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace in the city centre . Is a coffee shop that has 3 out of 5 stars . They serve Japanese food . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a 3 - star family restaurant with expensive fast food . It is located near the Express by Holiday Inn by the river . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a mid - priced restaurant that serves British food north of the City Centre . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||The Italian restaurant , Alimentum , is near the Yippee Noodle Bar in the city centre . It serves high - priced food , but has only received average customer ratings . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||If you are looking for cheap Italian pub food , go to Wildwood restaurant , which has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a Japanese coffee shop that is family friendly in riverside with an average customer rating for with its less than 20 dollar rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is located in the city centre , near Crowne Plaza Hotel . It is a Japanese coffee shop with a low customer rating . It is not family - friendly . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||A mid - priced pub located in the Riverside area named Clowns has a high customer rating . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a high rated , high pricing , family friendly restaurant . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is an inexpensive coffee shop and fast food restaurant in City Centre , but its ratings are low . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge has a low customer Rating and is cheap . \nname : Loch Fyne | food : Chinese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne provides high rated Chinese food in the Riverside area near The Rice Boat . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a Chinese restaurant selling mid - priced food in the city centre . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||Located near Café Rouge , The Wildwood restaurant has a customer rating of 5 out of 5 . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||There is a French restaurant in the riverside area called Bibimbap House . It is near Clare Hall , and ranges from £ 20 - 25 . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||For French food on the riverside The Golden Curry has a average rating and is family friendly . And is near to the Café Rouge . \nname : Blue Spice | food : Japanese | price : cheap | area : riverside||There is a cheap Japanese restaurant in the riverside area called Blue Spice . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue is a 5 stars restaurant that delivers take - away . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is near Café Adriatic . It has a customer rating of 1 out of 5 and a high price range . It is located in the riverside area . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Clowns is a low - proved pub located in riverside with an average customer rating . \nname : The Rice Boat | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid friendly riverside restaurant . Customer ratings are 1 out of 5 stars . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a one star , family friendly coffee shop with a medium price range . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A kid friendly Strada has moderate price range and customer rating of 1 of of 5 . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a wine bar in the low price range . It is located near Yippee Noodle Bar . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry has Chinese food , family Friendly , with an average customer Rating , in the city centre area near Café Rouge . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , a French restaurant near The Sorrento along the riverside , is kid friendly . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||The expensive coffee shop , The Vaults , has one star and is located in the riverside area near Café Brazil . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||There is an expensive pub located near the river that serves British food . It is called The Olive Grove . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood has a customer rating of 3 out of 5 . It is a coffee shop . There is Japanese food . its located near Ranch and price ranges from 20 to 25 dollars . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||With a high price range and a low customer rating , The Golden Palace is an Italian coffee shop near the city centre . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a French restaurant located in riverside near The Sorrento . It is not a family - friendly establishment . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced coffee shop that serves Indian food in the Riverside area , near Burger King , it is child friendly and has an average customer rating . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre area , near the Express by Holiday Inn , there is a high - priced , family - friendly Italian restaurant called The Rice Boat . It receive a customer rating of 1 out of 5 starts . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Want directions to The Phoenix near the riverside ; it has a customer rating of five out of five , French food , and cost more than 30 pounds . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||For a city centre coffee shop serving Indian food , try Browns Cambridge , near the Crowne Plaza Hotel . It has low customer ratings and is not suitable for families . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee Shop . It is located in city center , have 3 out of 5 costumer rating , and £ 20 - 25 price range . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is a family friendly restaurant The Golden Curry located in City Centre near Café Rouge . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a child - friendly Japanese restaurant near Ranch , rated 3 out of 5 by customers . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in Riverside by the Express by Holiday Inn is The Rice Boat , an Italian restaurant with an adult atmosphere . Customer rated 1 out of 5 . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||Even though it is in a little bit higher price range than most fast food joints , it boasts a pub style dining experience while sporting a children friendly environment near Café Rouge is The Plough . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : low | near : All Bar One||There is a Japanese restaurant near All Bar One called Midsummer House . It serves cheap food but is rated poorly . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : city centre||The Mill is a pub with prices lower than 20 that serves Japanese food in the city centre . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a family friendly Italian pub situated by the riverside . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The French restaurant , The Eagle , is a high priced coffee shop near Burger King . It is not children friendly , and has a rating of 3 out of 5 . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is an Indian restaurant that averages between £ 20 - 25 . It has a high customer rating , is kids friendly , and is located in the city centre . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||At riverside there is a coffee shop named Zizzi in the moderate price range which is kids friendly . Its customer rating is 1 out of 5 . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers offers Japanese - style food in the 20 - 25 price range . It has a 3 out of 5 customer rating and is not kid - friendly . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||There is a highly rated restaurant costing more than £ 30 near Rainbow Vegetarian Café called The Rice Boat . \nname : The Vaults | food : Italian | price : £ 20 - 25 | family friendly : yes||The Vaults Italian fair is 20 - 25 . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub with Japanese food near Café Rouge . \nname : Alimentum | food : Italian | price : high | area : city centre | family friendly : yes||Alimentum is an Italian restaurant in the city center with a high price range and is kid - friendly . \nname : The Phoenix | food : Chinese | customer rating : average | area : city centre||The Phoenix serves average Chinese food in the city centre . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||There is a cheap , kid friendly fast food restaurant named Loch Fyne . \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||There is a children friendly pub named Zizzi that serves English food and has a high customer rating . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a high rated restaurant in the city center . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a cheap average rated pub that is family friendly . \nname : Green Man | Type : pub | food : Chinese | area : city centre | near : Café Rouge||The Green Man is a pub serving Chinese food in the city centre near Café Rouge . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||Located near the river , The Phoenix has a three star rating and provides cheap food . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a cheap , family friendly , Indian restaurant with 5 star rating located in the city centre . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Clowns is a moderately priced pub in the riverside area with a customer rating 3 out of 5 \nname : The Waterman | food : Chinese | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a Chinese restaurant that is not family friendly near Crowne Plaza Hotel . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Zizzi the coffee shop is located in city centre . There customer rating is high with average prices . its a kids friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||If you are looking for a highly rated French restaurant , try The Rice Boat in the city centre near Express by Holiday Inn . Prices range between £ 20 - 25 , and it is not kid friendly . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : city centre||The Mill is a pub that offers Japanese food with a price more than £ 30 . It is located in the city centre . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Aromi coffee shop serves French food is a non - family - friendly venue near the city center and has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||In the riverside area near Café Rouge is The Golden Curry . They have Indian food , is not family friendly , and has an average customer rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge sell Italian Food . It Kids Friendly and the located is in riverside near The Sorrento . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||Near Café Rouge , there is a pub called The Plough , kid - friendly pub serving fast food in the moderate price range . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no||There is a coffee shop Aromi located in the centre of the city that provided Italian food But It is not family - friendly and having low customer 's rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne is a restaurant that serves English food that is not family - friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||Among the other coffee shops near Café Sicilia , with its Italian food , there is The Punter . A reasonably priced coffee shop that 's highly rated , but not kid friendly . \nname : Alimentum | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Check out Alimentum , located in city centre near Yippee Noodle Bar . Get a decent meal for under £ 20 . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is based in the city centre near Café Rouge , and has a low customer rating . The venue is family - friendly and serves English food . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is situated in a prime location riverside . It has a family atmosphere and offers great food at low prices \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside is The Wrestlers ; a cheap family friendly , Italian , coffee shop . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is near Clare Hall along the riverside that serves French food for more than £ 30 \nname : Fitzbillies | food : Japanese | price : high | near : The Six Bells||Fitzbillies , located near The Six Bells , offers Japanese food in the higher price range . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has an average rating for a high price range . It is in riverside near Café Adriatic \nname : The Eagle | food : French | customer rating : 5 out of 5||The Eagle serves French food . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||Loch Fyne is an English restaurant that is family friendly and inexpensive . \nname : Fitzbillies | food : Japanese | price : moderate | near : The Six Bells||The restaurant Fitzbillies is an affordable sushi restaurant next to The Six Bells \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||Near Café Brazil in the riverside area is a coffee shop with a customer rating of 3 out of 5 and a price range of £ 20 - 25 named The Vaults . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge offers Indian food in the city centre area near The Sorrento . The venue boasts a family friendly atmosphere . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly coffee shop in the riverside area that offers Japanese food near the Crowne Plaza Hotel \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a low rated , family friendly French restaurant located in riverside near Café Rouge . \nname : Blue Spice | food : Chinese | price : £ 20 - 25 | area : riverside||Blue Spice provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto is a moderately priced place , near All Bar One , in the riverside area . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||Located by the riverside , The Eagle is a restaurant that has a high customer rating and an average price of £ 20- £ 25 . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high - priced 3 star restaurant which offers wines and cheeses . It is family friendly and is located in the City centre near the Express by Holiday Inn . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Fitzbillies is in the low price range and located near The Six Bells . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||If you are looking for a kids friendly coffee shop then you should definitely visit The Dumpling Tree located on the riverside near Café Sicilia . Although the price range is moderate it is a great place to visit . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice has moderate priced Italian food . It is in the area of riverside . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves Chinese food . it is near the riverside and is not kid friendly . it is rated 3 out of 5 and has a moderate price range . \nname : The Punter | food : Japanese | price : moderate||The Punter offers Japanese food at a moderate price \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a kid friendly coffee shop near The Bakers priced at £ 20 - 25 with high ratings . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Situated riverside the Giraffe offers tradition English food and is a great place for kids \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : city centre||A city centre pub called The Mill serves French food at higher than average prices \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||By the riverside near The Rice Boat you will find Loch Fyne . They serve Fast food but only have a customer rating of 1 out of 5 . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix sells high - priced Indian food in the city centre . Its customers rate it 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop which features Indian food . It is not a family friendly restaurant , and it receives average customer ratings . It is located near the Crowne Plaza Hotel in the riverside area . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a child friendly French restaurant . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Italian coffee shop Aromi is riverside , it is family - Friendly and has a high customer rating . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : no||The Vaults will cost more than £ 30 , but with no kids allowed and amazing French food , it 's worth it . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : no||Aromi pub has a no children policy based in the city centre also has a low customer review . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a moderately priced , kids - friendly venue in the riverside area with a 1 out of 5 rating . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is kid friendly , and has Italian food . It 's in the area of riverside . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near Crowne Plaza Hotel that offers French food and is family friendly . \nname : Midsummer House | food : Chinese | customer rating : low | near : Café Rouge||The Chinese rest , Midsummer House has a low rating and is located near Café Rouge . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||There is a 5 out of 5 rated coffee shop near Clare Hall in riverside called Clowns . They offer Fast food . \nname : The Phoenix | food : Indian | customer rating : low | area : city centre||The Phoenix is a low rated Indian restaurant located in the city centre . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix is a fast food restaurant located near the river in City centre . \nname : The Waterman | Type : pub | food : French | customer rating : 1 out of 5 | area : riverside||With a customer rating of 1 out of 5 , The Waterman , a put serving French food , is located in the riverside area . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix sushi bar , average place to at the riverside but the price is too much , more than £ 30 \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man has Italian food in the less than L20 price Range and is near All Bar One in the riverside area . \nname : Blue Spice | food : English | price : cheap | area : riverside||In Riverside are the Blue Spice restaurant that serves English food that is priced cheaply . \nname : The Eagle | food : Chinese | customer rating : high||The Eagle has a high customer rating and serves Chinese food . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||In riverside , near The Portland Arms , there is a Japanese coffee shop called Cotto . Their customer rating is 5 out of 5 . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a children friendly English pub with a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : no||The Rice Boat is located in the city centre offering Italian food . It has a low customer rating and is not family - friendly . \nname : Blue Spice | price : high | area : riverside||Blue Spice has a high price range and is located at the riverside . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle , serving three star French food to families , located next to Burger King . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||Moderate price range Fast food is The Wrestlers . customer rating 3 out of 5 , kids friendly no . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a more expensive coffee shop . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap French restaurant located in the city centre near Yippee Noodle Bar with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies ' is a coffee shop that serves pub food at a high price . It is north of the city centre . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family - friendly fast food place . It is a city center place with a price range of less than 20 \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||In the riverside area , there is a kids friendly Japanese restaurant known as The Twenty Two . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that provides Indian food for a moderate price . It has a 1 out of 5 rating , is located on the riverside and is near The Portland Arms . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : city centre | near : The Sorrento||In the city centre , near The Sorrento , is a coffee shop called The Mill . It serves fast food , and has moderate prices . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is located in the riverside area near The Rice Boat with the price range of £ 20 - 25 , a 3 out of 5 customer rating and is kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is a cheap , one star restaurant suitable for the whole family , It is located next to Burger King . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||With a mid price range and 3 out 5 customer rating , The Eagle is located near the river . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||A Chinese pub named The Olive Grove in river side is family friendly in a price range less than £ 20 . \nname : The Olive Grove | Type : pub | food : English | price : more than £ 30 | area : riverside | family friendly : yes||Near Riverside , The Olive Grove is an English pub that has a slightly high price range but is children friendly . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a not family - friendly restaurant , whit low price and Italian food , this restaurant is near Express by Holiday Inn and in the riverside area . but the rating is pretty low . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : city centre||The Waterman is a pub in the city centre \nname : The Rice Boat | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside area you 'll find a kid friendly fast food restaurant with average food called The Rice Boat . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is a restaurant near the Rainbow Vegetarian Café in the L20 - 25 price range . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||Near Café Sicilia is the pub The Twenty Two on the riverside , with a customer rating of 3 out of 5 . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman , which is more than £ 30 , is at the riverside and rated high even though it is not child friendly . It is at the riverside . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Indian restaurant that is both inexpensive and highly rated 5 out of 5 that can be found near the Rainbow Vegetarian Café . Perfect for just the two of you . \nname : The Vaults | food : English | price : high | family friendly : yes||There is a child friendly high priced venue called The Vaults serving English food \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : yes||Alimentum serves French food in the city centre . It was has a price range of more than £ 30 , and is child friendly . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||There is a pub with a customer rating of 5 out of 5 costing more than £ 30 named Wildwood serving Japanese food . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is situated by the river , and within a short walk of the Express by Holiday Inn . It is in the cheap price range , and sells burgers , fries and soft drinks . It is not a family - friendly establishment . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a Chinese restaurant with a high customer rating and a kid - friendly dining area . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree coffee shop offers a kids - friendly atmosphere , at a reasonable price range , and is located in the riverside area of the city , near Café Sicilia . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms at the riverside . It has a 3 star rating and is in the low price range . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||A great place for a family and children is Giraffe . It is a pub near the riverside that has Indian food . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is providing Indian food in the moderate price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside area , there is a moderately priced Chinese restaurant named The Waterman . They have a customer rating of three out of five and are kid - friendly . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||Clowns near Clare Hall has Italian food and is a coffee shop . It is in riverside and has an average customer rating . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two offers Japanese cuisine in a family friendly atmosphere . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub located in the riverside area . It boasts an Italian venue , but the customer rating is only 1 out of 5 . \nname : The Vaults | food : Italian | price : high | family friendly : yes||in the vaults you would find a child friendly atmosphere while serving Italian food for a high price range \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||For exquisite fast food visit The Golden Curry a child friendly restaurant near The Bakers . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is child - friendly and highly - priced . It has a customer rating of 1 out of 5 and is located by the riverside . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : yes||Alimentum serves Indian food at a moderate price . It is situated by the river and is kids - friendly . \nname : Zizzi | Type : pub | food : French | customer rating : high | family friendly : yes||Zizzi is a French food child friendly pub with a high customer rating \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||The pub and fast food place named Zizzi has a high customer rating . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : no||The Vaults serves fast food and costs more than £ 30 . Not suitable for children . \nname : The Olive Grove | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes||The Olive Grove restaurant is a public place , offers Indian food , prices are cheap , not located in Riverside , it is not a place for family and friends \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood has a moderate price range and a customer rating of 1 out of 5 stars . This coffee shop is located near Ranch and sells fast food . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House is a high priced fast food restaurant , it is located next to Clare Hall . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman offers moderately priced Indian food in the Riverside area . It has received a three out of five by customers and and is not considered to be kid - friendly . \nname : The Phoenix | food : French | customer rating : low | area : city centre||The Phoenix in the city centre serves French food with low customer ratings . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||A coffee shop that is not child friendly with an average rating is Zizzi . Zizzi sells coffee for less than £ 20 and is in city centre . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop serves Japanese food in the £ 20 - £ 25 price range but is not child friendly and has a customer rating of 3 out of 5 and is located near Burger King in the city centre \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||Italian - style cuisine at prices lower than £ 20 is available at Bibimbap House , in the riverside area . A close - by landmark is Clare Hall . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Close by to the Crowne Plaza Hotel , is The Waterman , serving a variety of fast food . Children are welcome \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Aromi pub is not family - friendly and has a low customer rating . it is on the riverside . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : no||In the riverside is the Chinese pub Giraffe . It is not family friendly . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a Fast food restaurant The Waterman located in the riverside that offers food in less that £ 20 but it has low rating and it is not a family - friendly restaurant . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a moderately priced family friendly Café famed for its Chelsea Buns . It is near the Express by Holiday Inn and Pembroke College . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers serves English food at moderate prices . Not child friendly and has one star . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near Crowne Plaza Hotel has English food and family friendly . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry is not family - friendly , but is a Fast food restaurant with a low customer rating . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high priced Indian food restaurant around the city centre near the Express by Holiday Inn that is not child friendly and has a 1 out of 5 customer rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two , family friendly Japanese dining , find us by the riverside . \nname : Strada | Type : restaurant | customer rating : low||Strada is a restaurant that has a low rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a cheap family friendly coffee shop located in City Centre near Café Sicilia . 5 out of 5 customer rating \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat located near Express by Holiday Inn is a sushi restaurant . It is medium priced , family friendly and rated 1 star . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly pub that serves food and drinks in the lower price range . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a 5 - star sushi restaurant located north of the city center , nearby The Rice Boat , with a view of the river . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||If you 're looking for family - friendly fast food , try The Waterman near Crowne Plaza Hotel . \nname : Alimentum | food : Chinese | price : high | area : riverside | family friendly : no||Alimentum is a restaurant that serves Chinese food located in the riverside area . The price range is high and its for adults only . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a restaurant that serves Chinese food , moderate price range , not kid friendly , near The Bakers \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix at riverside is rated 5 out of 5 and serves Fast food at cheap prices \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : no | near : The Bakers||The Golden Curry is near The Bakers and is a Japanese place that is not child friendly . It is ranged more than £ 30 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a restaurant for adults that provides French food with prices ranging from 20 - 25 pounds . It is located in riverside . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Customer rated 3 out of 5 , Strada restaurant . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly fast food restaurant with a high customer rating and is near Express by Holiday Inn in the City Centre . It has a price range of £ 30 or more . \nname : Strada | Type : pub | food : Chinese | customer rating : high | near : Yippee Noodle Bar||Strada is a pub providing Chinese food It is near Yippee Noodle Bar . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly Japanese restaurant . Cheap , with coffee and near Café Sicilia . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : no||With a costumer rating of average , the pub , Zizzi server French food , but is not a family - friendly pub . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry provides cheap fast food . It is located near The Bakers and is family friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||While the Golden Curry currently has low customer ratings it is a family friendly restaurant . The Japanese restaurant , The Golden Curry , can be found near Café Rouge in the riverside area . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , which is near the Rainbow Vegetarian Café serves moderately priced Chinese food . It has a customer rating of 1 out of 5 and isn 't kid friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||English food is available in a kid friendly restaurant called Loch Fyne . The food is moderately priced . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman , serving English food , is located in the city centre area and is family - friendly . It is in the cheap price range and has a customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||The price range is high , the customer ratings are 1 out of 5 stars , which is low ; nevertheless , the Wildwood pub is a fast food chain enjoyable to everyone . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||If you 're looking for a quick bite of French food you should head to the city centre . There 's a restaurant there called The Phoenix . It has moderate prices with only a one out of five customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a high priced coffee shop , called The Eagle , near Burger King by the riverside that provides Japanese food . It rates 3 out of 5 and is not children friendly . \nname : The Punter | food : Italian | price : moderate||The Punter is a moderately priced Italian . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant offering Italian food is located in the city centre near the Express by Holiday Inn . It offers cheap food and is family - friendly . It has a customer rating of 5 out of 5 . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a mid - priced , five star restaurant located in City centre near Yippee Noodle Bar . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderate price coffee shop that serving Italian food but it 's not kids - friendly it 's located near Café Sicilia with a customer rating of 1 out of 5 \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man , located near All Bar One in riverside , is kid friendly and serves French food for L20 - 25 \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : no||The lowly rated , The Rice Boat , is located in the riverside area . It is not family friendly and serves Chinese food . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The coffee shop , The Punter , is not family - friendly . It has an average customer rating , cheap price and serves Fast food . It is located near Café Sicilia . \nname : The Waterman | price : moderate | family friendly : no||There is a place called The Waterman that is not cheap and not family friendly . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is an Indian food restaurant called The Waterman in the riverside area . It is highly priced and has a 1 out of customer rating . Children are not welcome . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a moderately priced restaurant that serves fast food . It is in riverside , it is not kids friendly and they have low customer ratings . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge is an expensive Italian restaurant . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : no||The Wrestlers which serves Italian is not children friendly and has a high price range and an average customer rating . \nname : The Eagle | food : English | customer rating : low||The English restaurant , The Eagle , has a low customer rating . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||A kid friendly Italian restaurant in riverside is The Twenty Two . \nname : The Phoenix | food : Indian | customer rating : 3 out of 5 | area : riverside||Situated on the riverside is The Phoenix . The Indian food on offer here has been given a rating of 3 out of 5 . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||Children friendly restaurant , Travellers Rest Beefeater , prices range from more than £ 30 . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Near the Café Sicilia is a low cost restaurant that is greatly rated coffee shop called The Punter \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||Close to The Sorrento by the riverside is an expensive coffee shop called The Mill that provides Italian . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers near The Portland Arms is a kid friendly coffee shop with a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a 1 out of 5 rated coffee shop that serves kids friendly fast food at moderate prices , near Café Sicilia . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle near Burger King located in Riverside is a coffee Shop that is child friendly , has a 5 out of 5 customer rating , serves Japanese food that costs more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne Chinese restaurant is a great family friendly place to dine . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a kid friendly Italian coffee shop near Café Sicilia , they have a high customer rating with £ 20 - 25 price range . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Just down the road from The Portland Arms lies the Cotto , a lovely coffee shop famed for its coffee . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||Located by the riverside is the children friendly Green Man . It costs more than 30 . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||With a customer rating of 5 out of 5 , Aromi is a family - friendly French coffee shop in city centre . \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||In the less than £ 20 price range , Clowns is a family - friendly restaurant located near Café Sicilia . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a highly priced coffee shop serving Japanese food . It is family friendly and has an average rating of 3 out of 5 . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||In the riverside area there is a pub called The Clowns serving food in the higher price range . This pub has a customer rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Clowns is a Japanese coffee Shop located near Clare Hall in riverside , they have a low customer rating . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||A moderately - priced restaurant , named Zizzi , is located by the riverside . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Aromi is a pub by the river . So far it has earned a one - star rating . Not suitable for families with small children . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Come to our children friendly pub called Cocum . It has a average customer rating and the prices are high . \nname : The Mill | Type : pub | food : Chinese | price : high | area : riverside||A high priced pub , The Mill serving Chinese food . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly Indian coffee shop with a low customer rating . It is located near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop offering Indian food at a high price . It is in the city centre near Burger King . It has an average customer rating and is children friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Family friendly near Burger King The Eagle for low prices and bad food and service \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||Located in the city centre , The Golden Palace coffee shop offers low priced Italian food . The shop currently has a low customer rating . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : no||Located in the Riverside area , The Rice Boat is an adult French restaurant with a high customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the riverside . It is near Burger King . Its customer rating is low . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||At the riverside area , there is a high - priced pub called The Golden Palace , located a few steps of the Rainbow Vegetarian Café . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near to the Rainbow Vegetarian Café , Strada serves mid - priced food and drink . It is family friendly , and is rated at three stars . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a Japanese food restaurant called The Waterman in riverside area . It is kids friendly , has a high customer rating and the price range is £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a Fast food restaurant and coffee shop located in the city centre with low prices and an average rating . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a family friendly pub serving English food . They have a poor customer rating . \nname : Green Man | Type : pub | food : French | area : city centre | near : Café Rouge||The Green Man is a city centre pub serving French food . It is located near Café Rouge . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a low - rated , family - friendly located north of the city centre . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop that sells fast food . Wildwood is located near Ranch and offers a moderate price range and has a customer rating of 1 out of 5 stars . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a highly rated French coffee shop near Ranch with average pricing \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||The Loch Fyne restaurant serves Japanese food and is family friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Located near Clare Hall in the riverside area , Clowns French food coffee shop currently has an average rating 3 out of 5 by its customers . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a pasta restaurant for families located by a river . It is a cheap , three - star venue . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is highly rated and can be found near to Rainbow Vegetarian Café . Its price range is slightly above average . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub providing Japanese food less than £ 20 . It is located in the city centre . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood Pub is a restaurant that serves classic Canadian food for fair prices . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop , located at City Centre near Burger King , featuring higher price range menu and features French Cuisine . It is family - friendly . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice , is a high priced coffee shop in Riverside , near Avalon and it is child friendly but has low ratings . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is family friendly and serves French food . it has a low price range and has an average customer rating . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||near The Six Bells , Fitzbillies sells cheap French food . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a less than average price coffee shop serving Indian food . It is located in Riverside near The Portland Arms . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near to the Crowne Plaza Hotel in the riverside area is Browns Cambridge , a coffee shop offering Indian food . It has a customer rating of 1 out of 5 and is children friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop located inside of Ranch with a three star rating and modest prices . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House , near Clare Hall in the riverside area serves high priced fast food . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A friendly pub in a riverside location . Aromi has a customer rating of 3 out of 5 . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||A kid friendly restaurant , Cocum has a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||Located near Café Sicilia in riverside , The Dumpling Tree is coffee shop with food that welcomes children . Price range is £ 20 - 25 . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a pub where kids are very welcome that sell fast food , it is called The Dumpling Tree and is situated close to The Portland Arms \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove pub has a full menu for all your dining and drinking needs . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is an English restaurant with a family friendly environment and an average customer rating in the Riverside area . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||Green Man is a cheap , family friendly place located at the riverside . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||Alimentum , family friendly British food at affordable prices . Close to the riverside . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the riverside area near the Express by Holiday Inn there is a French food restaurant called The Rice Boat . It is child friendly and highly rated among customers . The cost would be around £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop , that is high priced with an average customer rating . It is located in the riverside area near Burger King . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||Moderately priced The Dumpling Tree coffee shop welcomes adult patrons only . They are located near the river north of the city center near Café Sicilia . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults has a price range above £ 30 . It is children friendly and serves Japanese food . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Fast food restaurant . It is located near Express by Holiday Inn , which is in riverside . The customer rating is 1 out of 5 , has a moderate price range , and not kid friendly . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace is located near the Rainbow Vegetarian Café in City Centre . It has prices around 30 pounds and is a pub , \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub which welcome families and children . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two offers children friendly French food . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat wells inexpensive Chinese food near the Express by Holiday Inn . It is near the riverside and not a family destination . \nname : Cotto | food : English | near : Café Rouge||If you are nearby the Café Rouge , you can try Cotto , where English breakfast is available . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat located in the city centre near Express by Holiday Inn serves high price French food , it has been given a customer rating of 3 out of 5 . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice Located in City centre offers great food with view of the river \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop offering Japanese food . It is not a family - friendly establishment . It is located in the city centre near Crowne Plaza Hotel . It has an average customer rating . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Located in city centre , The Waterman Indian restaurant is moderate in price , kid friendly with a customer Rating of 1 out of 5 . \nname : Green Man | Type : restaurant | area : city centre||A restaurant in the city centre area called Green Man . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||Loch Fyne is an excellent Japanese restaurant , however it is not family - friendly . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater , located near Café Adriatic in the city centre , has a customer rating of 3 out of 5 with a price range of £ 20 - 25 . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||Zizzi is a family - friendly pub that offers Italian meals . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city centre is The Eagle . A coffee shop that serves French food with a customer rating of 3 out of 5 . It has a high price range . No children . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers small plates . They have excellent reviews . The Golden Curry is located North of the city Centre near Café Rouge . It is ideal for families . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre area is The Rice Boat . The Indian food serving place is not family friendly but does have a 5 out of 5 customer rating . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||There is a average rated restaurant located near All Bar One called Midsummer House . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Near The Ranch , Wildwood is a coffee shop with a high customer rating and classic English food . Wildwood offers well priced food . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||In the pub The Olive Grove sell good economic sushi , but not familiar . This north of the city center . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Near to All Bar One is a family friendly , riverside Italian called Green Man . Meals cost less than £ 20 . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is family - friendly and serves Japanese food . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||Fast food and a low price - order from The Phoenix . In the riverside area with great customer rating . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : no | near : The Bakers||For adults , The Plough , a restaurant located near The Bakers , serves meals costing less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||A kid friendly and moderately priced English food restaurant is Loch Fyne . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||For a pricier and child friendly option try The Plough restaurant near The Bakers . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry , a Chinese restaurant , is family friendly , located near The Bakers at less than 20 pounds price range . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : average||A Chinese restaurant , The Cambridge Blue , has an average customer rating . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two in riverside , located near The Rice Boat , is children friendly and has good customer ratings . The prices are a little more than average but the friendly atmosphere and good serves is worth it . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no||The Giraffe pub in city centre has French food and is not family - friendly . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||there is a child friendly place near the Express by Holiday Inn which has a low customer rating of 1 out of 5 called Fitzbillies and it is expensive \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum is a higher priced coffee shop which also offers food , such as sushi . It is family oriented , so bring your families over . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle is restaurant well loved by the public . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : city centre||The Phoenix is an average Italian restaurant located in city centre . \nname : Wildwood | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | near : Ranch||With a low price range and a high customer rating , Wildwood is a coffee shop near Ranch . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a moderate priced fast food place near Rainbow Vegetarian Café . It is not kid friendly and customers rated it 1 out of 5 . \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant , It is not for the whole family It is near Crowne Plaza Hotel \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Customers have given a low rating to the family friendly Blue Spice , found riverside , and prices less than 20 pounds . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers an average price family friendly coffee shop located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||The Cotto is an expensive coffee shop in the riverside area near The Portland Arms . It serves averagely rated Italian food . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||For a night away from the kids , The Waterman is serving great Indian food at average prices in the city centre . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns near ' Clare Hall ' is a coffee shop in riverside which does fast food , but has a terrible customer rating . \nname : The Golden Curry | food : English | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a restaurant near The Bakers that offers a moderately priced English cuisine in a non - kid friendly environment \nname : Fitzbillies | food : Indian | price : less than £ 20 | near : The Six Bells||Located near The Six Bells , the Indian restaurant Fitzbillies has dishes which cost less than 20 pounds . \nname : The Olive Grove | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||A kid friendly pub is The Olive Grove by the riverside . Meals cost £ 20- £ 25 . They do fast food . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||There 's a children Friendly coffee shop called The Cricketers specialized in Italian food , with a high customer rating near The Portland Arms \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is family - Friendly in less than £ 20 price Range and low customer rating . It is located in riverside . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a city centre Japanese restaurant near Café Rouge . Is it family - friendly no and has a low customer rating . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is an average priced pub that serves French food . It is located near Café Brazil . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||There is a restaurant Aromi located in the riverside that serves Indian food , \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two offers French food and is for adults in the riverside . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap , family friendly , Italian The Rice Boat located near the riverside Express by Holiday Inn . The Rice Boat has received an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a high - priced French coffee shop in the city centre . It has a customer rating of 3 out of 5 . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||A high customer rating restaurant that cost more than £ 30 and is located in the area of riverside is The Eagle \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||The pub in riverside near Café Sicilia that has a customer rating of 1 out of 5 is The Twenty Two . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an Italian style coffee shop with high customer ratings near Burger King in the city centre . It is not child friendly and the price range is more the 30 pounds . \nname : Blue Spice | price : more than £ 30 | area : riverside||Above average at more than £ 30 on riverside is Blue Spice \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Clowns is located near Café Sicilia priced less than 20 and is not family - friendly . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man . which is situated in the city centre near All Bar One , is a family - friendly restaurant that serves English food that cost less than £ 20 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Check out Blue Spice coffee shop in riverside . It 's near Avalon . Price is high and it has an average rating but the food is great . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||With a high customer rating is a Fast food coffee shop Cotto located in city centre near The Portland Arms . \nname : Strada | Type : pub | food : Indian | customer rating : low | near : Yippee Noodle Bar||The Strada pub located near Yippee Noodle Bar serves Indian . It has a low customer rating . \nname : The Plough | Type : pub | food : Indian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a pub , which offers Indian food , within a price range of £ 20 - 25 . It is kids friendly , and is located near Café Rouge . \nname : Strada | Type : restaurant | customer rating : high||High customer rating restaurant , Strada . \nname : Browns Cambridge | food : Chinese | area : city centre | family friendly : no | near : The Sorrento||In the city Centre near The Sorrento , there is a family friendly Chinese restaurant called Browns Cambridge . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum that received a 3 out of 5 customer rating is a coffee shop that offers fast food at a moderate price . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove is a fast food pub that offers a kid friendly atmosphere at a high price . Its located near the riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that offers family - friendly fast food . It is located in the city centre , near the Crowne Plaza Hotel . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood near Ranch is a coffee shop offering high priced quality meals . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub serving Italian cuisine know for excellent customer ratings of 5 out of 5 . You can find The Waterman in Riverside . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Highly rated and exclusively priced , The Golden Palace serves Japanese food in a coffee shop located by the river . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is not child friendly but has a 5 out of 5 customer rating and serves fast food . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||There is a cheaply - priced coffee shop named The Eagle near Burger King in riverside . Children are not allowed . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Try The Eagle , an average , child friendly coffee shop with fast food riverside near Burger King \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : city centre||Fast food restaurant Blue Spice has a price range of more than 30 and is located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||A fast food and coffee shop in city centre name The Golden Palace has high ratings and a price range of more than £ 30 . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is a fair - priced local venue on the outskirts of the city . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a child friendly coffee shop offering French food . It has a customer rating of 3 out of 5 and is located at the riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||near Crown Plaza Hotel is a Japanese coffee shop called Taste of Cambridge . it is by the riverside and yes it is family friendly \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||Taste of Cambridge restaurant offers meals for less than £ 20 and has an average rating . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults is a high priced family friendly restaurant located in the city centre . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||When looking for a high end , child friendly coffee shop , Zizzi is the place . Customer rated 1 out of 5 . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a Italian restaurant located in riverside near The Sorrento , \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a three - star mid - range sushi restaurant in town . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a fast food place near The Bakers . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a mid priced restaurant located next to All Bar One . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly Indian restaurant in the center of the city near Express by Holiday Inn . They allow children ; however they are pricey and have a low customer rating . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Located in the city centre near Yippee Noodle Bar is Alimentum . It serves French food with a price range of £ 30 and it has a customer rating of 5 out of 5 . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a three star pub with medium pricing located northwest of Café Adriatic . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a family - friendly Japanese coffee shop . It has a customer rating of 5 out of 5 . As well as that it is cheap and located in the city centre . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Midsummer House near Café Rouge has a high customer rating for English food . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Come now to Blue Spice Japanese Grill at Riverside for a 20 dollar meal . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre area , Fitzbillies is a family friendly Indian coffee shop . It has a customer rating of 5 of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Take your family to the averagely rated The Rice Boat , and Indian restaurant that sells cheap food in the city center near Express by Holiday Inn . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is a 3 out of 5 customer rated Japanese restaurant with a price range of £ 20 - 25 in riverside called The Phoenix . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a highly rated child friendly Indian restaurant by the riverside . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||A cheap Italian pub named Wildwood with a high customer rating . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House is a high priced fast food restaurant with a low customer rating of 1 out of 5 . It is located near All Bar One . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||In the city center , The Eagle is a French coffee shop with a family atmosphere . It is located next to the Burger King with a low customer rating and a price point of more than £ 30 . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a French venue , prices are high and they are rated 3 out of 5 , they are in the City Centre but do not like children . \nname : Blue Spice | food : Chinese | price : high | area : city centre||Blue Spice provides Chinese food in the high price range . It is located in the city centre . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Italian coffee shop , ' Aromi ' , is a highly rated non - family - friendly coffee shop located by the riverside . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a children friendly pub serving Italian in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel and the river is Browns Cambridge coffee shop . It is not family - friendly but offers average fast food . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is located near Café Adriatic in Riverside . It has a high customer rating and it is priced above 30 euros . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||customer rating 5 out of 5 for Italian restaurant called The Cambridge Blue \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||There is a restaurant called The Rice Boat that is family friendly located near the river . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||Cocum for coffee shop offers Fast food for cheap price for kids Friendly . \nname : The Phoenix | food : English | customer rating : 5 out of 5 | area : riverside||The Phoenix is a highly recommended restaurant that also serves breakfast . \nname : The Rice Boat | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Fast food near the riverside is kid - friendly and as a customer rating of 3 out of 5 \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid - friendly , average priced coffee shop with a high customer rating in the City Centre near Burger King . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a moderately priced coffee shop . It has high ratings from its customers , 5 stars out of 5 , and is also family friendly . \nname : Midsummer House | food : Italian | price : high | customer rating : average | near : All Bar One||Near All Bar One is the high priced Midsummer House serving Italian food . It has an average customer rating . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , Indian food in Riverside , near Express by Holiday Inn , has a customer rating of 1 out of 5 . Children not allowed . Price range is high . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : city centre||There is a pub in the city centre called The Waterman . It serves English food , and it has a 5 out of 5 customer rating . \nname : The Vaults | food : English | price : cheap | family friendly : yes||The Vaults serves cheap , English food and is family friendly \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : no||There is a non - family - friendly pub located in the city centre called Giraffe that serves English food . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | near : Café Brazil||In the city centre near Café Brazil is the coffee shop The Vaults . The Vaults earned an average rating from its customers and has meals for less than 20 pounds . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman has Japanese food that is kid friendly near Crowne Plaza Hotel . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue restaurant has an average customer rating and provides English food . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn near city centre , serves fast food . This child friendly spot has a high customer rating and is priced at more than £ 30 . \nname : Cotto | food : Fast food | near : Café Rouge||Close to Café Rouge there is a Fast food place called Cotto . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||French restaurant The Rice Boat near Express by Holiday Inn in the city centre is more than £ 30 , low customer rating and isn 't family - friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : cheap | near : Café Brazil||The Cambridge Blue is a cheap pub that offers Indian food . It is located near Café Brazil . \nname : Cotto | food : Chinese | near : Café Rouge||There is Chinese restaurant near Café Rouge named Cotto . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a moderately priced Italian restaurant with a 3 out of 5 customer rating , it 's near All Bar One . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||The Browns Cambridge serves English food with a high customer rating and priced at more than £ 30 \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix is a fast food restaurant with a 1 out of 5 customer rating . It is in the city centre and has a high price range . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a highly rated Indian food restaurant in riverside near the Express by Holiday Inn . It serves cheap food , it not family friendly . 5 out of 5 stars . \nname : The Eagle | food : Chinese | customer rating : high||The Eagle is a highly rated Chinese food restaurant . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||If you want some coffee with a good view and kid friendly , Blue Spice is the right place for you . It 's located near Avalon the prices are affordable and it has a very good customer rating . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an Indian restaurant providing moderately priced food in a kids friendly atmosphere . It has 1 out of 5 customer ratings . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||The pub by the riverside named Giraffe is children - friendly and serves English food \nname : Blue Spice | food : Indian | price : £ 20 - 25 | area : riverside||Serving the best Indian food , Blue Spice is a restaurant on the riverside within the price range of 20 - 25 euros . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||Located near Café Rouge is a family Friendly pub called The Plough which serves Japanese food with prices less than £ 20 \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : no||The Rice Boat provides Indian food . It is located in the city centre and has an average customer rating . It is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderate - priced coffee shop located in the city centre serving Indian food . It is kid friendly and has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Italian | area : riverside||The Rice Boat is in the riverside area . It offers Italian food . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a French coffee shop located in the city centre near Burger King . The average rating is 3 out of 5 with a price range from £ 20 - 25 and it is not kid friendly . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub providing Chinese food , children welcome . It is located near The Portland Arms \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a low customer rating and is near the city center and the Express by Holiday Inn featuring Fast food in the less than 20 pound range . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||English food with a moderate price range with a 3 out of 5 near All Bar One named Midsummer House . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves Italian and is near Yippee Noodle Bar in the riverside area . Customers rate it average and the prices are high . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||Located close to the river , The Phoenix serves mid - prices French cuisine . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is kid friendly . Its is by the riverside . It has a high customer rating . Its prices range from 20 - 25 . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two family friendly fast food . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||coffee shop Wildwood gives French food at average prices . It has a very good reputation . near Ranch . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix is a fast food restaurant with low prices , you can eat in or take out . It is located in city center . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : city centre | near : Café Sicilia||The City Centre 's 5 star pub , The Twenty Two , is found near Café Sicilia \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a reasonably priced coffee shop offering a more adult experience by the riverside . It 's location near a Burger King and misguided French bistro styling take to much from the experience to warrant a second visit . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman on the riverside , serving cheap fast food , is family friendly . It has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn is The Rice Boat in riverside . They are not kid friendly have low customer rating and cost more than 30 euros . \nname : The Rice Boat | food : Fast food | area : riverside||The Rice Boat is a fast food place near the river . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||The Cambridge Blue , near Café Brazil , is a pub serving French food for less the £ 20 . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||The Loch Fyne is a non - family friendly restaurant with a moderate price range . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : high||The Dumpling Tree is a high priced Chinese restaurant \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||For high priced Italian food try Fitzbillies , a non child friendly coffee shop with mixed reviews \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a Chinese food kids friendly place with a moderate price range . The customer ratings are 3 out of 5 and it is located near the riverside . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||cheap fast food in riverside is available in The Rice Boat near Express by Holiday Inn . It is family friendly and averagely rated by customers . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada is a family friendly , cheap location with an average rating . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults is a cheap pub near Café Adriatic that is average . \nname : Strada | Type : pub | food : Italian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||An Italian pub named Strada is located near Yippee Noodle Bar and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The Phoenix is a 5 star facility available for your use , with wine cheese and fruit served . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||There is a high price coffee shop named Blue Spice near Avalon in city centre . It is rated 3 out of 5 and is not family - friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is child friendly pub that serves Japanese food . It 's located in riverside and has a price range of more than £ 30 . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no||The Olive Grove is a non kid friendly pub that serves Chinese food and has a moderate price range in the Riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum , a kid friendly restaurant and coffee shop , is moderately priced and has a customer rating of 3 out of 5 . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||A highly rated English Pub near Yippee Noodle Bar is the Strada . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is not children friendly and serves high - priced fast food near the All Bar One in the riverside . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a cheap priced English restaurant that is located in the city centre . They have a customer rating of 5 out of 5 . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a Chinese food restaurant with low customer rating and is located in the city centre . The price range is low and it is not family friendly . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||Clowns coffee shop is in Cambridge . Clowns coffee shop is near Clare Hall . Clowns coffee shop has a one star rating . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice has excellent location next to the river , offering low prices for the whole family \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||It has a customer rating of 3 out of 5 and is a coffee shop . It is kid friendly with a moderately priced menu . Cocum is it 's name that is a fast food restaurant . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop near Ranch . Serving Italian food that is priced low , it scores 5 out of 5 in customer ratings . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap Indian coffee shop in a riverside location . It has an average customer rating , is family friendly and is located near Burger King . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix offers Indian food which is cheap and has a customer rating of 5 out of 5 . It is in the riverside area . \nname : The Golden Palace | Type : pub | price : moderate | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace is a moderate price range pub located near Rainbow Vegetarian Café in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 1 out of 5||1 out of 5 is the rating for The Cambridge Blue Chinese restaurant . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a family friendly , fast food restaurant that is located near a riverside . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a cheap , high rated Indian coffee shop in Riverside . It is not family friendly . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||There is a kids friendly French pub The Dumpling Tree located near The Portland Arms . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two serves English food in a children friendly atmosphere in riverside . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : city centre||Located near the city centre is Clowns a low rated pub that costs more than 30 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a family friendly place located near The Six Bells . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Family friendly Strada is a low budget restaurant close to the Rainbow Vegetarian Café . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : city centre||There is a Japanese restaurant in the center of the city called Blue Spice that has a price range of less than 20 pounds . \nname : The Phoenix | food : Japanese | customer rating : average | area : city centre||The Phoenix is a Japanese restaurant located in the city center . They have an average rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside - near the Crowne Plaza Hotel - there is an Italian coffee shop named Browns Cambridge . It has a high customer rating and is kid - friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a non - kid - friendly restaurant named The Rice Boat that serves English style food located near Express by Holiday Inn . It 's in the riverside area , at a moderate price range , and has a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near of Café Sicilia with a Fast food service and a price range of £ 20 - 25 \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in the City Centre by Burger King . It is inexpensive , is rated one star by customers , and is not family friendly . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant in riverside near Express by Holiday Inn . It is not family - friendly , has a low customer rating and falls in the less than £ 20 price range . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the high price range . It is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a reasonably priced , family - friendly , Italian coffee shop in a riverside setting . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : yes||The Twenty Two is a Chinese restaurant , located in the city centre , that is family friendly . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves family friendly food near the Crown Plaza Hotel . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The family friendly restaurant , The Twenty Two , that is located near The Rice Boat , is over priced and only has one out of five stars . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||In the Riverside area near The Portland Arms you can find The Punter- a non family - friendly eatery- with a price range less than £ 20 . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly establishment that is located near The Bakers . It also offers food for a low price . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||Located in the riverside area , The Golden Palace is a coffee shop in the moderate price range with a customer rating of 1 out of 5 . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high quality family restaurant that offers fast food near the Rainbow Vegetarian Café . \nname : The Eagle | food : Japanese | customer rating : high||The Eagle is a Japanese food with a high customer rating \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Located in the riverside area is The Aromi , a fast - food restaurant . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a place the sells burger and fries for a low priced and is family friendly . It is five star rated and is located next to Rainbow Vegetarian Café . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : no||The Golden Curry sells Japanese food . It is poorly rated and not family friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||Kids Friendly restaurant Travellers Rest Beefeater with price Range moderate \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House offers good value Italian cuisine near Clare Hall in the riverside area . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The kids are not friendly in the riverside area of The Waterman and the price range is moderate with a customer rating of 1 out of 5 . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies is an establishment that has high priced food and is located near The Six Bells . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub serving fast food , located near The Portland Arms . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : no||Zizzi is an average restaurant that serves Italian pub fare . It is not family - friendly . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a restaurant for adults located in the city centre . It is an Indian restaurant with a less than 20 price range and a low customer rating . \nname : The Eagle | food : Chinese | customer rating : 1 out of 5||The Eagle provides Chinese food Its customer rating is 1 out of 5 . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : city centre||Blue Spice cheap Chinese food in the city center . \nname : The Golden Curry | food : Indian | price : high | family friendly : no | near : The Bakers||There is an Indian restaurant near The Bakers that has high price range and friendly with kid called The Golden Curry \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||With prices less than £ 20 . Wildwood , a Japanese pub with a low customer service rating . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Cotto is a child friendly eatery located near the Ranch that serves Chinese food and has average customer ratings . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||In the £ 20 - £ 25 price range is Browns Cambridge which serves French food and has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||With a average rating The Golden Curry is English and family Friendly . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : more than £ 30 | family friendly : yes||The Loch Fyne is a restaurant that serves Chinese food for more than £ 30 . It is kid friendly . \nname : Browns Cambridge | price : high | customer rating : average||The Browns Cambridge , with a high price range , has an average customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||This Italian restaurant names The Dumpling Tree has high prices . \nname : The Eagle | food : Italian | customer rating : average||The Eagle is an Italian place with average customer ratings . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||Italian restaurant The Twenty Two located in Riverside is children friendly eatery . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix restaurant , which provides both eat in and take out , at a low cost , with great Indian food , located near the riverside area \nname : Wildwood | Type : pub | food : Indian | price : more than £ 30 | customer rating : high||For an Indian pub with a price range of more than 30 pounds and high customer ratings , try Wildwood . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Fitzbillies is a restaurant that specializes in wine pairings and is located next to The Six Bells . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop . It is located near Burger King . It has a low customer rating . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a high - priced restaurant in the city centre near Yippee Noodle Bar . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : yes||A family friendly Chinese restaurant in Riverside is called The Rice Boat . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Cotto Italian food is child friendly and has high customer ratings . It is located near Ranch \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||There is high end restaurant with a low customer rating serving English food . The name is Browns Cambridge . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is children - friendly located along the riverside , high price range and customer rating 1 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||Taste of Cambridge has an average customer rating with a price range less than 20 is a eat type restaurant . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , on the riverside , is the Japanese family friendly coffee shop , Taste of Cambridge . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in the riverside area of Cambridge , near to the Express by Holiday Inn , is a Japanese restaurant called The Rice Boat . It has a low customer rating , has prices of less than £ 20 and is not family - friendly . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||Good sushi doesn 't have to cost the earth ; Browns Cambridge in the city \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||For adults and serves high price French food The Waterman is for adults , it 's in the riverside area and has a customer rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||There is a medium priced range pub called Wildwood in the heart of the city . \nname : Cotto | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Located in the city centre near The Portland Arms is a coffee shop called Cotto . Cotto serves inexpensive Japanese food and receives a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a low - rated , child - friendly , French coffee shop near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is an Italian coffee shop that is adult friendly located in the city centre near Burger King . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub providing Indian food Its customer rating is 5 out of 5 . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a cheap Chinese family friendly restaurant with average customer rating . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : yes||In riverside there is a family restaurant with low ratings called The Rice Boat . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||A new pub just opened , the prices are moderate , and don 't worry it 's near Rainbow Vegetarian Café . The Golden Palace is its name and it is located riverside . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly , Italian coffee shop called Browns Cambridge that is located near Crowne Plaza Hotel in the city centre and has a customer rating of 5 out of 5 . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||By the riverside is not a child friendly pub called Giraffe that serves fast food . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||With an average customer rating , Strada is a child friendly restaurant near Rainbow Vegetarian Café in the high price range . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly restaurant by All Bar One . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is a kids - friendly place to eat in the £ 20 - 25 price range . It is located near Café Sicilia . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||Riverside is home to The Waterman , a French pub rated 5 out of 5 by customers . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : no||The Olive Grove restaurant in the city centre is not family - friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||With meals costing less than £ 20 this family friendly Japanese restaurant , Alimentum , can be found in the riverside area . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||The high rated coffee shop , The Vaults is located near Café Brazil and has a great price range from about 20 - 25 euros . \nname : The Twenty Two | food : English | family friendly : yes||Offering English food is a child friendly restaurant named The Twenty Two . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly coffee shop that also serves Fast food . It is located in city centre near Crowne Plaza Hotel \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||City Centre based coffee shop near Crowne Plaza Hotel , Taste of Cambridge is family - friendly and serves French cuisine . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The Twenty Two It is located north of City centre , It is next to Café Sicilia \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers serves fast food for under £ 20 and it has a low customer rating . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||With a price Range of more than £ 30 Clowns pub earned a high customer Rating and is located in the riverside area , \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : no | near : All Bar One||Amazing French food served at the Green Man , located near All Bar One . Moderately priced near the riverside . No children allowed . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||A good coffee shop which serves fast food is ' The Cricketers ' , with a moderate customer rating and is family friendly . Near ' The Portland Arms ' . \nname : Strada | Type : pub | food : Chinese | customer rating : low | near : Yippee Noodle Bar||Strada is a pub providing Chinese food It is near Yippee Noodle Bar . Its customer rating is low . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub near Ranch , with a customer rating of five out of five . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter , is near of Café Sicilia with a service of French food and a high price range \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is coffee shop located in city centre , near Clare Hall . It is customer rated 5 out of 5 and serves Japanese food . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a high - priced restaurant located near The Six Bells . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a less than £ 20 Indian coffee shop located near the Raja Indian Cuisine and riverside however it is not family friendly . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a Japanese restaurant located near to Crowne Plaza Hotel which is not family - friendly . \nname : Bibimbap House | food : English | area : city centre | near : The Rice Boat||In the city centre and near The Rice Boat , The Bibimbap House serves English food . \nname : Alimentum | food : Japanese | price : cheap | area : riverside | family friendly : yes||The Alimentum is a Japanese style , family friendly , inexpensive restaurant in the Riverside area . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||If you are looking for a Fast food restaurant near Café Rouge , give Midsummer House a try . I has a customer Rating of 3 out of 5 stars . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||The Italian pub Wildwood gets average ratings from customers with prices ranging in the high side . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a kid friendly Indian restaurant that gets a rating of 1 out of 5 . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||The Fitzbillies is a Japanese restaurant near The Six Bells . It costs more than £ 30 . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||The Cotto is a cheap , 3 star coffee shop . It is located near the river and The Portland Arms . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : city centre||The Waterman located in the center of city is a public French food rating 5 out of 5 \nname : The Waterman | price : high | family friendly : yes||The Waterman is a child friendly , high priced restaurant . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||By the riverside , there is a coffee shop named ' The Mill ' near The Sorrento which has a price range from £ 20 to £ 25 . \nname : Zizzi | Type : restaurant | price : high | area : riverside||High Price Range Zizzi restaurant is at the riverside . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||The Giraffe coffee shop is children friendly . Dine here for more than £ 30 . Situated near The Bakers . it is rated 5 out of 5 by its customers . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||Highly rated , The Wrestlers offers Indian food at a children friendly restaurant which you will expect to be paying more than £ 30 . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area Bibimbap House serves French food for more than 30 euros . \nname : Wildwood | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood a French coffee shop near Ranch has low customer rating with a moderate price range . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||The kids friendly venue , The Waterman offers prices ranging from £ 20 to £ 25 \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop that serves traditional Japanese food in the low price range . It is rated five stars and is near Ranch . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is located near Crown Plaza Hotel and provides a family friendly atmosphere with hamburger and fries offerings . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a low - priced coffee shop located just outside the city centre . \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||Zizzi is a high class restaurant in the riverside area . For a high priced pub with a 3 out of 5 rating , try the Wildwood . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves French food . It is located near The Portland Arms in the city centre . It has a price range of less than £ 20 and a low customer rating . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix Chinese food place in riverside is cheap , has great reviews , and is in riverside . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid friendly serving Japanese food with a rating of 5 out of 5 \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : riverside||The Waterman pub is located on the riverside . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a good restaurant with customer rating 1 out of 5 , it sells Italian food . Kids love it . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There 's a family Indian restaurant down at riverside , called The Rice Boat . I must warn you that it 's rated quite badly though . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is a high - end place to dine in the riverside area nearby All Bar One . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King in the city centre is The Eagle family coffee shop . It is mid range priced . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low priced coffee shop located near the Burger King by the river . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice , located in the riverside area , serves Japanese food for less than £ 20 . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : riverside||The Phoenix is an Indian restaurant . It has a 5 out 5 customer rating in the area of riverside . \nname : The Wrestlers | Type : coffee shop | food : French | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Looking for French food at a low prices in a family friendly environment , check out The Wrestlers coffee shop in the riverside area by Raja Indian Cuisine \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||In the city centre there 's a Fast food restaurant called The Phoenix , they have moderate prices but only a 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||There is a coffee shop called The Eagle that serves fast food at moderate prices . While not kid friendly , the location is convenient if close to Burger King near city centre . The Eagle is rated 1 out of 5 by customers . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge restaurant offers a variety of food and drinks at a high price . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||A child - friendly coffee shop named Cocum serves Japanese food ; the price range is around £ 20 - 25 . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||If you are looking for a coffee shop near Café Sicilia that is highly rated , The Punter offers up French fare , with a price range of L20 - 25 , and is child friendly . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||Near the Café Rouge in riverside is The Golden Curry , serving English food . It is not family - friendly and has low ratings . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat providing English food , located in the riverside it 's children - friendly and also rated average . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix serves Fast food , price range under £ 20 located at city centre . Low Customer ratings \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves English food . It is located near Yippee Noodle Bar at the riverside . The customer rating is 1 out of 5 , it has a high price range . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||City centre located The Eagle serves moderately priced Indian food in a coffee shop environment . Just near Burger King , it 's rated 1 out of 5 and serves adult parties only . \nname : The Rice Boat | food : French | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a high - rated French restaurant . It is family friendly and located in Riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The whole family will enjoy great Asian cuisine at the Fitzbillies coffee shop . The shop is outside of City centre just off the river , and it sells its food at mid - level prices . \nname : The Punter | food : Fast food | price : cheap||For cheap eats and fast food join us at The Punter . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a high price range , kid friendly restaurant in the riverside area . It serves English food , and has an average customer rating . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is a moderately priced place located near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Not recommended for children , The Eagle is a Japanese restaurant with a low customer rating . Located in Riverside , it is near Burger King and a coffee shop , price range is more than 30 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : cheap | near : Café Brazil||Pub The Cambridge Blue near Café Brazil with Italian food and very cheap prices \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Located in the city centre area , The Waterman , is a French food restaurant that isn 't kid friendly even thought it is moderately priced . The average customer rating is 1 out of 5 . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two serves English food . It is family friendly . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a moderately priced Chinese restaurant with a customer rating of 3 out of 5 , in a riverside area . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||A fine dining experience that you can enjoy wines of all sorts and cheese , 5 stars and close to Café Rouge . Midsummer House is a lovely place to go . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace is a pub in the city centre near Rainbow Vegetarian Café with prices less than £ 20 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop located at the city centre . It is not a child friendly establishment . Zizzi has a customer rating of 5 out of 5 , with a price range of more than £ 30 . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||A 1 out of 5 Italian food restaurant that has high prices and isn 't friendly to children is The Wrestlers . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a kid - friendly restaurant serving fast food . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||A children - friendly Japanese coffee shop is near The Portland Arms , its now rated named The Cricketers . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a fast food coffee shop that is moderate in price range . It is located in the riverside and has been given a 1 out of 5 stars in rating . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a family restaurant not far from Café Rouge . The Golden Curry has a 5 - star rating . \nname : The Phoenix | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Phoenix , a new fast food restaurant that is in the Riverside area . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee shop providing Italian foods and located in city centre . It has low rating because it is not family - friendly . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum coffee shop is located in the center . of town . Conveniently located among other shops . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a family friendly restaurant that serves Italian food . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||The Wildwood is a French coffee shop near the Ranch . It has a high customer rating in the average price range . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe restaurant has cheap price ranges , and is located near The Six Bells . \nname : Cotto | food : French | near : Café Rouge||Near to Café Rouge a place called Cotto that serves French food . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Browns Cambridge is a low - cost , one - star restaurant . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||In riverside , The Waterman has a customer rating of 1 out of 5 . It is not kid friendly . It serves English food and has a high price range . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a restaurant with a price range of less than £ 20 per person . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers has high ratings from previous customers . This establishment has higher - priced Chinese food and is family friendly . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn located in city centre is a Fast food restaurant with moderate price range . It has customer ratings of 3 out of 5 and is not kid friendly . \nname : The Eagle | food : Italian | customer rating : low||There is a 1 - star restaurant The Eagle . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults has a lot to choose from for the family , but the price is high . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is located in the city centre with moderate price range and customer rating of 1 out of 5 . They offer coffee and Japanese food . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop Browns Cambridge located next to Crowne Plaza Hotel . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is located in the riverside area . A high priced child friendly pub which serves English food . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is children friendly and is French food . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||A restaurant with a lower customer rating of only 1 out of 5 is the Strada . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle serves fast food and has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , which is highly - rated , but not family - friendly , offers cheap Indian food at the city centre , near Express by Holiday Inn . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Near The Six Bells , a family friendly place to eat , is called The Golden Curry . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : The Olive Grove | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a child - friendly pub which serves English food in the average price range of £ 20 to £ 25 , and it is located at the riverside . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Café Adriatic is a high end venue , riverside , that is customer rated 1 out of 5 , and is located near Travellers Rest Beefeater . \nname : Bibimbap House | food : French | price : moderate | area : city centre | near : Clare Hall||Bibimbap House is near Clare Hall in the city centre area serving moderately priced French food . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Wildwood is a moderately priced sushi restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Italian coffee shop in the city centre near the Crowne Plaza Hotel . It has a 5 out of 5 rating but is not family - friendly . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Lets go eat at this pub I know called Cocum . And yes its perfect for kids , and prices are more than £ 30 . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Located in the city centre is The Eagle . The price range is more than £ 30 and has a customer rating of 5 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Indian food is served at The Golden Curry located in the city centre area near Café Rouge . It has a customer rating of 5 out of 5 and yes , it is family friendly . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||With a low customer rating of 1 out of 5 and a high price range , comes The Giraffe . The Giraffe is located near The Bakers and is a family friendly coffee shop . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , near the city centre and Yippee Noodle Bar serves low - rated Chinese at high prices . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , located near The Sorrento , Riverside offers French meals and is children friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove pub is a family friendly and offers fast food . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms in the riverside area is a family friendly location named The Punter and is in the cheap price range \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is serving Chinese food near Clare Hall in the City center . It is in the medium price range . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers a full English breakfast suitable for the family at a high price range . It is rated 3 stars and located near the Rainbow Vegetarian Café . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill restaurant at the riverside has French at less than £ 20 to eat pub . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter offers burgers and fries in the high price range . \nname : The Eagle | food : Japanese | customer rating : high||The Japanese restaurant called The Eagle has a high customer rating \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : no||The Olive Grove is a non - children friendly pub serving high - priced Indian food located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop with food in price range less than £ 20 . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||Near the river and close to The Portland Arms is an adult oriented restaurant , The Punter . \nname : The Eagle | food : Chinese | customer rating : low||The Eagle is a low customer rating Chinese restaurant . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns is a pub that located in area Riverside . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers serve breakfast and is one of the highest rated restaurants in the area . \nname : Loch Fyne | food : Italian | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a lowly rated Italian restaurant located at the city centre near The Rice Boat . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||There 's a coffee shop selling Japanese food , it 's called The Eagle . It 's rated 3 out of 5 , it 's expensive , and you can 't bring your kids . You can find it near Burger King by the city centre . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a 5 star restaurant that serves Indian food at a low price . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a child friendly pub that serves Indian food . It has a customer rating of 1 out of 5 . \nname : Loch Fyne | food : French | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne in the city centre near The Rice Boat serves French food . It has an average customer rating . \nname : The Mill | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop that offers Italian food with a price range of £ 20 - 25 . It is in riverside near The Sorrento . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat located by the riverside is an average family friendly Japanese restaurant . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Zizzi is not kid friendly , has a high rating , priced 20 - 25pounds and is a coffee shop located in the city centre . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Cuisine , in the city centre is a coffee shop offering French food . The Wrestlers is cheap and family - friendly . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a Japanese restaurant that serves moderately priced food called The Rice Boat . It has a 1 out of 5 customer rating and isn 't kid friendly . It is located in the city centre near Express by Holiday Inn . \nname : Blue Spice | price : high | area : riverside||A more luxurious venue in the riverside area with a higher price range is Blue Spice . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto is a moderate restaurant near All Bar One by the riverside . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop in the average price range serving Fast food . Located near to The Portland Arms and riverside area with a low customer rating . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi , a city centre pub , is highly rated and also family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The kid friendly fast food restaurant in the riverside area near The Crowne Plaza Hotel is called Taste of Cambridge \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||There 's a place near the riverside named Blue Spice that 's family friendly with an average customer ratings and a price range with less than £ 20 . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a low cost coffee shop that is family friendly located near Café Sicilia \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a sushi bar , located beside Express by Holiday Inn and offers moderate prices and a mature setting . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is in the high price range and serves child friendly Fast food near the Raja Indian Cuisine and the center of the city . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : no||Close to the river is Alimentum . Its French menu is over £ 30 and the venue is not child friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Waterman is located in city centre with outstanding ratings . The Waterman is a Japanese pub . \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near the Rainbow Vegetarian Café and serves Indian food in the high price range . It has an average rating and is child friendly . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||Wildwood is a pub providing a medium price range . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap , family friendly , cheap Fast food joint near The Bakers \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||The Golden Palace is a coffee shop in the city centre . It serves Japanese food for less than £ 20 . It has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle , a coffee shop that serves Indian food , has a price range of £ 20- £ 25 . The Eagle has a high customer rating and it is situated in the city centre by Burger King . The Eagle is not child friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : yes||The Olive Grove pub is kids friendly and serves moderately priced Italian food in the riverside area . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a family friendly restaurant located near the City centre . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||With a 5 out of 5 customer rating , The Rice Boat restaurant offers Japanese cuisine in a family friendly atmosphere . It is located riverside . \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a family friendly fast food venue , with moderate prices and high ratings . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||A good place to get low priced sushi without the kids is the Green Man . It is located on the river in City centre close to All Bar One . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||there is a cheap restaurant The Waterman located in the centre of the city that provides sushi . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a riverside coffee shop called The Eagle that has French food at an average price range . It is child friendly , located near Burger King , and has a 3 customer rating . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||The Italian restaurant near Café Rouge , Midsummer House , has received average reviews . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree , just east of Café Sicilia , is not family - friendly . \nname : The Plough | Type : pub | food : French | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap , family - friendly French pub near Café Rouge . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||Green Man is a pub serving English food . It is located by the riverside , near Café Rouge . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies is French located near The Six Bells . This restaurant has a moderate price Range . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The fast food restaurant Alimentum near Yippee Noodle Bar in riverside , prices are more than £ 30 with high customer rating . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||There is a restaurant The Golden Curry that serves Chinese food , \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||5 star oriental food at The Eagle . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix in City Centre sells average costing breakfast . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man has the best Japanese food located in the city centre close to All Bar One with a moderate price great for family \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a French food coffee shop in riverside with moderate prices and a 1 out of 5 customer rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||In the city centre is a French restaurant called The Waterman , is has a low customer rating , has a price range of more than £ 30 , and is not kid - friendly . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a family friendly fast food restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an Indian coffee shop located in riverside near Crowne Plaza Hotel . It has a low customer rating of 1 out of 5 but is children friendly . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Browns Cambridge is a Japanese restaurant that is a little expensive . It does not have good customer ratings . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle near Burger King in the riverside is a coffee shop with a high price range providing Italian food . They are not children friendly and have a customer rating 1 out of 5 . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge is a 5 - star , expensive , sit - down restaurant . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is great for the whole family . This 3 star dining establishment offers pricey burgers , fries , and drinks . Located north of City centre on the banks of the river . \nname : Bibimbap House | food : Indian | price : high | area : riverside | near : Clare Hall||Bibimbap House provides Indian food in the high price range . It is located in the riverside . It is near Clare Hall . \nname : The Punter | food : Indian | price : moderate||The Punter is a moderately prices Indian restaurant . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||In the centre of the city there 's a great cheap take out restaurant called The Giraffe Pub . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is located near All Bar One . Food given in English medium prices . It is family - friendly \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman went to the riverside and ate Indian food . It costs £ 8 . He didn 't want to be rude , but he rated 1 . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||There is a family friendly pub in riverside serving English food that is moderately priced . It is called The Olive Grove . \nname : The Rice Boat | food : Japanese | area : riverside||The Rice Boat serves Japanese food by the riverside . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two offers Italian food in a kid friendly venue . \nname : The Vaults | food : Chinese | price : moderate | family friendly : no||The Vaults is a Chinese restaurant with a moderate price . It is not kids friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop , near The Portland Arms , serves reasonable Italian Food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a high price range coffee shop that caters to families in the city centre \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Child friendly Zizzi has moderate prices and a 3 out of 5 customer rating . The coffee shop is located in the riverside area . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree near The Portland Arms serves English food \nname : Blue Spice | food : Italian | price : moderate | area : riverside||In the area of riverside is Blue Spice . It has Italian food for a moderate price . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The Cambridge Blue , a low rating restaurant offering French food . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue is a Japanese Pub Located near Café Brazil , with prices ranging from £ 20 - 25 . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : no | near : The Portland Arms||A Japanese coffee shop near to The Portland Arms with an average rating an not family - friendly then got to The Cricketers \nname : The Twenty Two | Type : pub | customer rating : average | area : city centre | near : Café Sicilia||The Twenty Two , located near Café Sicilia in the city centre , is a pub with an average customer rating . \nname : Wildwood | Type : pub | food : Indian | price : less than £ 20 | customer rating : low||Wildwood is a low customer Rating pub , with less than £ 20 price Range , that serves Indian food . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers , an English restaurant , has low prices , low ratings , and is not family - friendly . \nname : The Vaults | food : French | price : high | family friendly : yes||The Vaults for French food for children Friendly with high price . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||The Portland Arms is closely located to Cotto a expensive restaurant . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi , a coffee shop in the riverside area , has fast food , is kids friendly , and has a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : high||The Dumpling Tree is a Chinese restaurant on the expensive side . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry features Chinese cuisine and has earned a customer rating of 5 out of 5 . This establishment is not open to families . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||A family - friendly restaurant is The Rice Boat , it is low - priced and not far from the Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||An Italian coffee shop that is kids Friendly and high customer Rating is The Cricketers near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that provides Indian food . Its price range is high , it is not child friendly and has a customer rating of 1 out of 5 . It is located in the city centre near Burger King \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is near Café Rouge in Riverside . It serves Chinese Food and is low rated . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||If you 're looking for a kid friendly coffee shop in the riverside area with £ 20 - 25 priced entrees , look no further than Zizzi . This coffee shop also has a high customer satisfaction rating . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves an excellent steak and eggs , located near Express by Holiday Inn . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that serves Italian food located near Crowne Plaza Hotel in the area of Riverside . Unfortunately , it is not kid friendly . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : no||There is a fast food restaurant located in city centre called The Rice Boat . It has average customer ratings . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults costs more than 30 pounds and has a 5 out of 5 rating . It is a pub located near Café Adriatic . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Near The Rice Boat in riverside , Loch Fyne , has average English food . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||on the area of riverside its Blue Spice excellent family place with an average rating and low prices \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : no | near : All Bar One||The high priced fast food joint , Green Man , is not child friendly , and is located in the city centre near All Bar One . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||Cotto is a moderately priced restaurant located at riverside near All Bar One . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel - The Waterman is a restaurant that offers French food that caters to kid friendly customers . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is kid friendly with a low price range . I is located on the river . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced , high quality coffee shop that provides Sushi . It is family friendly and is located near Burger King and the Riverside . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop in city centre near Café Sicilia . They are not family - friendly and are in the price range of less than 20 . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||If you want to eat Japanese food at moderate prices and , visit Alimentum , rated 1 out of 5 , near Yippee Noodle Bar and riverside . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||Japanese food at low prices is available at Wildwood pub , where customers rate it 5 out of 5 . \nname : The Vaults | food : Indian | price : moderate | family friendly : no||The Vaults offers Indian food which is moderately priced . This restaurant is considered to be more adult oriented and is not kid - friendly . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a high priced Italian restaurant with a 1 out of 5 customer rating . It is located near Rainbow Vegetarian Café and is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||With prices under £ 20 and in the city centre Fitzbillies is a family - friendly coffee shop with Italian Food . It customer ratings is low . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||Adults only at this cheap restaurant , Travellers Rest Beefeater . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : no||Providing Chinese food The Golden Curry is not family friendly with an average customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop is low priced and serves fast food . It is located in the City center . close to The Sorrento . \nname : The Mill | Type : coffee shop | food : Indian | price : cheap | area : riverside | near : The Sorrento||The Mill is a cheap coffee shop which also serves Indian food which is situated riverside , near The Sorrento . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||There is a cheap fast food and coffee shop which is family friendly called Cocum with low customer ratings . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is an Italian coffee shop near Café Sicilia with a high customer rating that is not kid friendly and has price ranges of £ 20 - 25 . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : yes||There is a family friendly restaurant , The Twenty Two , located in the city centre , that serves Chinese food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an average rated coffee shop which serves cheap Indian food . They are located riverside and are family friendly . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is an Indian restaurant with an average customer rating and is kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge in riverside is a Japanese venue that is kid friendly with a 1 out of 5 rating . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||There 's a fast food establishment in the city centre named The Rice Boat . It has a 5 out of 5 customer rating and is not family - friendly . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderate - priced restaurant on the riverside near Clare Hall . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : All Bar One||There is a average priced restaurant Midsummer House located in the All Bar One with low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man near All Bar One in the city centre provides Italian food . They are children friendly with a high price range . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||Near Café Rouge , there is a kid - friendly place called The Plough . It is a high - priced Italian pub . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap coffee shop located next to Raja Indian Cuisine . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : yes||In the city centre there is a family - friendly French restaurant called Alimentum . The price range is less than £ 20 . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Browns Cambridge has an average customer service that serves Japanese food . It has a price range that is less than £ 20 . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is an English restaurant . The customer rating is high . It is riverside . Child friendly . The price range is more than £ 30 . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is the place where you can bring the kids and have wine at the same time . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Bibimbap House , located on the riverside near The Rice Boat , serves American food . \nname : Zizzi | Type : pub | food : French | customer rating : 1 out of 5 | family friendly : yes||With a customer rating of 1 out of 5 Zizzi is a child friendly pub serving French food \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a pub at the riverside and the customer rating is high . The price range is £ 20 - 25 . \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : no||The Rice Boat is not a family - friendly Japanese restaurant in the centre of the city with a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||Loch Fyne serves the classic menu of hamburgers , French fries and refreshments . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing sushi in the low price range . It is located near Burger King . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : no||Alimentum provides high priced Indian food in the riverside area . It is not suitable for children . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Check out Strada , a family friendly restaurant located near the Rainbow Vegetarian Café offering fast food . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : riverside||The Phoenix , located in riverside , has received average customer ratings for cheap Chinese food . \nname : Fitzbillies | food : Italian | price : more than £ 30 | near : The Six Bells||For moderately priced Italian food ; there is Fitzbillies , located near The Six Bells . \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Italian food with a price range of £ 20 or less near of The Portland Arms \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a cheap Indian food coffee shop near Café Sicilia . It gets a 5 out of 5 rating , but it is not family friendly . \nname : Browns Cambridge | food : Indian | price : less than £ 20 | customer rating : low||Browns Cambridge serves inexpensive but low - rated Indian dishes . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||An Italian restaurant near to All Bar One that is low in cost but has a 5 star review , go see Midsummer House \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||With a low price range , Bibimbap House is a restaurant near Clare Hall by the riverside in the City centre . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located near Yippee Noodle Bar in the riverside area serves French food with a moderate price range but a rating of 1 out or 5 \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||In Riverside near Clare Hall there is a coffee shop which sells fast food , it is called Clowns and customers have rated it as high . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||There is a one star restaurant called The Phoenix located near the river . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||There is a moderately priced riverside pub named The Mill that serves Italian food . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||Located in the city centre , The Twenty Two is a fast food restaurant that is not family friendly . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a kid - friendly , highly rated , average price restaurant in the City Centre area . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a children friendly coffee shop serving French food called Taste of Cambridge . It is located near the Crown Plaza Hotel in the riverside area \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant with a non family - friendly environment that serves low priced food . It is located in the city centre near the Express by Holiday Inn . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a Chinese restaurant with a customer rating of 1 of 5. it is located in the riverside area and is children friendly . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix is the best fast food restaurant at the riverside boasting its 5 out of 5 customer rating for the second straight year . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Fitzbillies is a French restaurant near The Six Bells with items in the £ 20 - 25 price range . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||The French restaurant Alimentum is located in the city center near Yippee Noodle Bar . Alimentum has an average customer rating and offers meals for less than 20 . \nname : The Rice Boat | food : Fast food | area : riverside||The Rice Boat is the place to be if your wanting fast food by the riverside . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||There is an English family - friendly pub with price ranges of less than £ 20 called The Olive Grove . It is situated by the riverside . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||One - star restaurant , The Rice Boat , with traditional English cuisine , is a kid - friendly , moderately - priced eatery with riverside views ; it 's located near the Express by Holiday Inn . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Browns Cambridge has a one star rating with low prices and offers a variety of choices for the customer . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop that serves fast food . It is located in the city center and has a 5 out of 5 rating . \nname : Alimentum | food : Indian | price : cheap | area : riverside | family friendly : yes||Alimentum , offers Indian food , within a cheap price range , and is located in a riverside area , and is family friendly . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly pub offering modestly priced food from a variety of cuisines . Its customer rating is poor . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a good customer rating and family - friendly Italian coffee shop . It is located in the city centre and near Crowne Plaza Hotel . \nname : The Mill | Type : pub | food : French | price : high | area : riverside||The Mill is a pub type restaurant near riverside . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a highly - rated fast food place near the riverside which is kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Along the riverside near Burger King , is a family friendly coffee shop called The Eagle . They serve wine and hors d 'oeuvre in the medium price range and have a one - star rating . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is located on the riverside by Café Adriatic . It is cheap and rated 3 of 5 . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high - cost restaurant located near Rainbow Vegetarian Café . It has a one out of five star rating and is family - friendly . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is a kid - friendly restaurant that offers Italian cuisine . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Near The Six Bells , Fitzbillies is a fast food place with a more than £ 30 price range \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in Riverside near the Express by Holiday Inn and is a low priced Italian eatery that is an ok adult only restaurant \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||Wildwood is a pub that serves English food , and has received high customer ratings . It is fairly expensive , with prices going above £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies coffee shop is known for its Japanese food . It 's location is in the city centre and is child friendly . Customers rate it at 5 out of 5 , prices are above £ 30 . \nname : The Olive Grove | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kids friendly pub in the riverside area , serving English food in a price range of £ 20 - 25 . \nname : Blue Spice | food : Italian | price : high | area : riverside||Riverside are offers a fine dinning Italian restaurant , Blue Spice . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a high - priced , family friendly sushi restaurant is located near the Express by Holiday Inn . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre , is the highly rated , family - friendly , coffee shop called Zizzi . It is in the cheap price range . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 1 out of 5||The Cambridge Blue is a Japanese restaurant that is rated 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a Japanese coffee shop called The Cricketers . They are rated 1 out of 5 by customers , and offer a child friendly environment . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||There is a coffee shop named The Dumpling Tree , near Café Sicilia at riverside . It is not suitable for family , although its price range is less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non family friendly , low priced coffee shop located next to Raja Indian Cuisine . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a Japanese pub found in the city centre , near to Café Rouge . It is moderately priced and not recommended for families . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||Next to The Sorrento is Browns Cambridge , a non family friendly sushi bar . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : yes||Located in city centre , The Twenty Two provides Japanese food . It is family - friendly . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced restaurant close to the Express by Holiday Inn . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop which offers sushi at a medium price point . It is located near The Sorrento . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Along the riverside , there is a children friendly restaurant called The Rice Boat , which has a customer rating of 5 out of 5 . It provides French food . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove in riverside is a pub with a price Range of more than £ 30and is children Friendly \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : no||Aromi is an average rated pub in the riverside area . It is not family - friendly . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||The Phoenix in the city centre serves high priced Japanese food . It is rated by customers as 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that provides English food while being Family Friendly . It can be found near The Portland Arms . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , a family friendly restaurant near Crowne Plaza Hotel , serves English food . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Sushi restaurant located on the riverside . It provides high quality food at a high price range . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two serves English food is kid friendly located in riverside \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough restaurant is located near The Bakers affordable and kid friendly \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||With a high customer rating , the child friendly Cotto serves English food near the Ranch . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a cheap family friendly coffee shop in the city centre . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : city centre||In the centre of the city you can find The Waterman Public House , serving basic fast food . \nname : Loch Fyne | food : Chinese | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne , which serves Chinese food near The Rice Boat in city centre , has received poor ratings . \nname : The Eagle | food : Chinese | customer rating : 1 out of 5||The Eagle has a customer rating of 1 out of 5 . They serve Chinese food . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The fast food restaurant , The Rice Boat , is expensive , however it is children friendly and has a high customer rating . It is near the Express by Holiday Inn in the center of the city . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with Italian food . It 's not family - friendly . Near the Crowne Plaza Hotel , it is located in the city centre , and has a low customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||If you 're looking to get some Japanese food on the cheap , Cocum is a coffee shop with a rating of 5 out of 5 . It 's a great place to visit if you can find a babysitter to look after the kids . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant located near Express by Holiday Inn in the centre of the city with a customer rating of 3 out of 5 and is kids friendly with a moderate price range . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||A kid friendly place that has Japanese food is the The Golden Curry . It is near Café Rouge in the riverside area , but has a low rating . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman , highly rated by customers with a rating of 5 out of 5 , is a French restaurant located within the city centre . The Waterman is not child friendly and boasts an average price range of more than £ 30 . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Customers rate the moderately - priced Strada 1 out of 5 and it is kids - friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A kids friendly restaurant serving meals between £ 20 - 25 is Travellers Rest Beefeater \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is located in Riverside , near Burger King , that provides a kid friendly environment in the £ 20 - 25 range - it is a coffee shop with a high customer rating . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced Indian restaurant with a 3 of 5 customer rating . It is kid friendly and in the riverside area near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||Kids and adults alike will enjoy the Loch Fyne restaurant for fresh , flavorful Italian food . \nname : The Dumpling Tree | Type : restaurant | food : English | price : high||The Dumpling Tree is an expensive restaurant that serves British - style food . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne restaurant is a fast food , family friendly establishment with a price range of less than £ 20 . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The family - friendly location The Waterman , serves a light menu of food and alcohol for an average price . Customers review this location as 3 out of 5 stars . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a three star , cheap coffee shop located in the City centre . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a Italian , children friendly pub called The Dumpling Tree . \nname : Strada | Type : restaurant | customer rating : high||Strada is a high rated restaurant \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||At The Punter one can grab a burger and fries and relax with friends and family . It is not far from Café Sicilia . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a highly recommended family friendly , low cost restaurant with a water view . \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a fast food restaurant located near Rainbow Vegetarian Café . It has a moderate price range , a customer rating of 3 out of 5 and is not kid friendly . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an expensive British restaurant near the Rainbow Vegetarian Café . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge near Crowne Plaza Hotel is a family - friendly coffee shop that serves Italian food and has an average customer rating . \nname : Green Man | food : French | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is cheap family friendly French restaurant near All Bar One located in the riverside area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is great sushi at affordable prices . Located near Burger King . \nname : The Phoenix | food : Fast food | customer rating : low | area : city centre||Located in the city centre , The Phoenix serves fast food and has a low customer rating . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a kids friendly pub named The Dumpling Tree ; it serves Japanese food . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : 1 out of 5||The Wildwood pub serves Indian food , The price range is high and the customer rating is 1 out of 5 . \nname : Wildwood | Type : restaurant | family friendly : yes||There is a child friendly restaurant . It is called Wildwood . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves fast food , located near The Portland Arms and the river . It has a high price range but has only received average reviews . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is in Riverside near All Bar One with prices exceeding £ 30 . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Come to The Midsummer House restaurant for fine Asian cuisine at mid - range prices . You can find the restaurant next to All Bar One . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge offers English foods for a high price . Their average customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a riverside coffee shop specialising in Japanese food . Child friendly , its customers give it average ratings . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace serves cheap food . It is a coffee shop near the river . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : no||Loch Fyne restaurant serves fast food within moderate prices . No kids allowed \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in Riverside is The Wrestlers . It is a Japanese restaurant , has reasonable prices but is not kid friendly . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly restaurant providing French food in the cheap price range . It is located near Express by Holiday Inn in the city centre . Its customer rating is low . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree near The Portland Arms is a kid friendly fast food pub . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The popular , kid friendly Blue Spice is in the city centre costing £ 20 - 25 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine in the city centre . It serves moderately priced Italian food and is kids friendly . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a moderately priced American restaurant near All Bar One that has great reviews . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||Beer and wine pub located by the river Clowns pub a expensive 3 star place to relax . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kid - friendly establishment serving Chinese food and located near Crowne Plaza Hotel . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is a high priced Chinese restaurant in the Riverside area . It is not child friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop serves moderately prices Indian food near Café Sicilia . It has a customer rating of 1 out of 5 and is not kid friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre||The Golden Palace was given an average customer rating and is a coffee shop and fast food place in the city center area with a high price range . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Mid priced French cuisine is served in Fitzbillies , a child friendly coffee shop located in the City centre . \nname : The Vaults | food : Chinese | price : moderate | family friendly : yes||There is a kid friendly Chinese restaurant called The Vaults . The food is priced at a moderate range . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a high rated average priced restaurant The Rice Boat that is child friendly and offers French food . It is located near Express by Holiday Inn in the city centre . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a type of coffee shop that serves Fast food , kid friendly and has a Customer rating of 3 out of 5 , and also near from the famous The Portland Arms . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||There is an inexpensive pub near the river bank called The Olive Grove . Families are welcome . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly Japanese coffee shop in the city centre near Burger King with a customer rating of 5 out of 5 and has a cheap price range . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||There is a pub called The Mill with English food , Prices less then 20 located by the riverside . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no||The not family - friendly , average coffee shop located in the city centre serving fast food is called Aromi . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that provides Japanese food for a high cost . The restaurant is located by the margin of the river , next to Raja Indian Cuisine . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman has fast food along riverside and has a cheap price range with a customer rating and is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is an Indian coffee shop near the Crowne Plaza Hotel . It is not family - friendly and is located riverside . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an average - priced coffee that serves Japanese food . Located near Café Sicilia , this family - friendly location receives a rating of 1 out of 5 stars from customers . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Japanese food can be bought at The Cricketers . This is a child friendly coffee shop located near to The Portland Arms . Customers have given it a rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a cheap highly rated non - kids friendly coffee shop , located in the riverside , near Burger King . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a cheap coffee shop near The Bakers . It is family friendly and has a 5 out 5 customer rating . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is an expensive , child - friendly restaurant located riverside . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is next to Rainbow Vegetarian Café . It 's mid range prices and moderate ratings . Good with the children too . \nname : The Vaults | food : Chinese | price : £ 20 - 25 | family friendly : yes||Chinese restaurant , The Vaults is kid Friendly with a Range in price of £ 20 - 25 . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two serves Italian food in a child friendly setting . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a low priced restaurant which serves French food . The Wrestlers has a 3 out of 5 star customer rating and is child friendly . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||There is a mid price range restaurant Browns Cambridge located in the centre of the city that amazing food . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||There is an Italian restaurant named The Cambridge Blue which is highly rated . \nname : The Plough | Type : restaurant | family friendly : no | near : Express by Holiday Inn||The Plough restaurant is conveniently located steps away from the Express by Holiday Inn . No minors allowed , not family friendly . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a highly rated coffee shop with a high price range . It is near Café Brazil in the riverside area . \nname : The Punter | food : Italian | price : moderate||For reasonably priced food , visit The Punter . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a French restaurant in riverside . They are not child friendly . Their prices are high and their customers rate them with 3 out of 5 stars . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||High price range restaurant called Taste of Cambridge has an average customer rating . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a cheap and family friendly Chinese restaurant in the Riverside area with excellent customer rating . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant located near Rainbow Vegetarian Café . Child friendly , Customer rated 5 out of 5 , and reasonably priced at about 30 pounds and up . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies , a city centre child friendly coffee shop , has a 3 star rating . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Near the riverside is cheap priced Italian restaurant called The Waterman . It has a customer rating of 5 out of 5 and is family friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Located at the riverside , there is a pub called Giraffe that is a kid friendly place and serves English food . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults pub is near Café Adriatic . It has a high customer rating and a price range more than 30 pounds . \nname : Fitzbillies | food : Italian | price : more than £ 30 | near : The Six Bells||Fitzbillies , near The Six Bells , serves Italian food in the over 30 pounds price range . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside||The Golden Palace is a Indian coffee shop in the river side . It is cheap and rating is average . \nname : Fitzbillies | food : Japanese | price : cheap | near : The Six Bells||Fitzbillies is located near The Six Bells which has a cheap price range . They serve Japanese food \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||In the city centre area is an Italian restaurant named The Golden Curry . It is family - friendly and has an average customer rating . It is near Café Rouge . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||Located neat The Portland Arms , The Cricketers is a family - friendly coffee shop that serves French food . It gets low ratings from customers . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : no||The Wrestlers is an expensive Fast food restaurant which provides average customer services and is not child friendly . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge you can find a restaurant with a 1 out of 5 customer rating called Wildwood . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Wildwood is a Fast food place near Ranch that has an eat type of a coffee shop that has a cheap price range . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||There is a fast food restaurant near The Bakers that is not family - friendly . It 's called The Golden Curry and costs less than £ 20 . \nname : Cotto | food : Fast food | customer rating : average | family friendly : yes | near : Ranch||Cotto is a fast food place near Ranch with an average customer rating and is kids friendly . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a kids Friendly French restaurant near The Bakers . they offers food in moderate price range . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||There is a fast food restaurant with average customer ratings located near Café Rouge , it is named Midsummer House . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is located near to The Rice Boat at the riverside . It serves Japanese food and average customer ratings are 3 out of 5 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located in the city centre near Express by Holiday Inn , The Rice Boat is an Italian restaurant that offers cheap prices , is family - friendly , and has average ratings . \nname : The Eagle | food : English | customer rating : low||The Eagle restaurant provides traditional English food with a low customer rating . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no||Cocum as a coffee shop is rated average but not a choice for family . They provide Italian food . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a kid friendly restaurant near the Express by Holiday Inn . It has a moderate price range but the customer rating is only 1 out of 5 . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cheap pub named Cocum is family friendly with 5 out of 5 customer rating . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Next to Café Sicilia down by the riverside is The Twenty Two Pub but I don 't recommend eating there . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||A nice , inexpensive place that is fun for the whole family is Clowns . It is close to Café Sicilia . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a place with a moderate price range a rating 1 out of 5 kids - friendly and close to Express by Holiday Inn \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family - friendly restaurant specializing in spaghetti and spirits , located near All Bar One . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee - shop style restaurant that offers Indian food . Located near The Portland Arms , it is not family friendly and receives low customer ratings . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop with Indian food and a moderate price Range . It has a customer Rating , 1 out of 5 , is kid Friendly , near Café Sicilia . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||Nearby Café Rouge is an American pub named The Plough that offers low prices and welcomes families . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||A gastro pub named The Golden Palace is located near the river and Rainbow Vegetarian Café . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near Rainbow Vegetarian Café . It has a high price range and customer rating of 1 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : city centre | near : The Sorrento||For a moderately priced meal there 's The Mill coffee shop in the city centre near The Sorrento . \nname : The Mill | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside||The Mill Italian pub has food in the £ 20 - 25 price range . It is in the riverside area . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : no||The Rice Boat , an Indian food restaurant has low customer ratings . They are located in city centre and are family friendly . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is low . \nname : The Waterman | Type : pub | food : English | customer rating : 1 out of 5 | area : riverside||A riverside , English pub , The Waterman has a low rating . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children friendly , Italian pub near The Portland Arms . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : yes||Strada is a family restaurant with dishes that will meet your liking and wallet will like you to . \nname : The Rice Boat | food : Chinese | area : riverside||The Rice Boat serves Chinese food and is located in the riverside area . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||Japanese food served at The Cambridge Blue restaurant has a 3 out of 5 rating . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat by the riverside is rated five out five by customers . It has above average prices and is located close to Express by Holiday Inn . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman , is a highly rated , inexpensive city centre Chinese restaurant . It is not family friendly . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman has a high customer rating serving fast food in city centre aimed towards adults with a price range of £ 20 - 25 . \nname : Strada | price : less than £ 20 | customer rating : average | family friendly : no||Strada has an average customer review and a price list of less than £ 20 but no children catered for . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop , friendly with the families , with prices less than 20 for the Italian food . It is situated near Burger King , , riverside , and it has a low rating . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||Located in the city centre near The Waterman , is a high priced Italian restaurant . It 's in the high price range , has an average rating and is children friendly . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn . It has a moderate price range and a 3 out of 5 rating . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||A pub in riverside near Café Sicilia with a 1 out of 5 rating is The Twenty Two . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The pub called The Vaults has a customer rating of 3 out of 5 for moderate price food . It is near Café Adriatic \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in riverside area you can get English food in cheap family friendly place called The Rice Boat . It is Customer rated 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a child friendly Japanese coffee shop , located in the city centre . It is of an average price range and is highly rated by customers . \nname : Browns Cambridge | food : Indian | price : more than £ 30 | customer rating : high||Browns Cambridge provides Indian food in the more than £ 30 price range . Its customer rating is high . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge English food near The Sorrento near riverside for adults only . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman has no food for less than £ 20 other than French toast which can be sold near the riverside where the rating is not low . \nname : The Golden Curry | food : Indian | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant providing high priced food . The restaurant is children friendly and is near The Bakers . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , child friendly Cotto provides fast food with a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate priced Indian coffee shop . It is not kid friendly and is in the riverside area near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||There is a cheap restaurant called Travellers Rest Beefeater which is family friendly . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||Wildwood is a high - price pub serving Japanese food with a 3 out of 5 rating . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers serves Chinese food and the price range is moderate , it is okay but is not child friendly . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Midsummer House is a fast food restaurant near All Bar One . Its customer rating is average and the price range is high . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 3 out of 5||The Cambridge Blue is an Italian restaurant which has been given a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||A child friendly restaurant that serves English food is Loch Fyne . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a family - friendly restaurant , rated 5 out of 5 points and conveniently located in the city center . It serves English food . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||The pub called Zizzi is a one star rated sushi place that is family friendly . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a more than £ 30 price range place located in riverside near All Bar One . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : no||Sited near the Thames , Giraffe is an adult only pub serving English food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is a family friendly coffee shop by the riverside near Burger King called The Eagle which has an average customer rating and is family friendly with price of less than £ 20 \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||A coffee shop that serves French food called Cocum , it is kid friendly and has a rating or 3 out of 5 , its a coffee shop and meals range from £ 20 - 25 . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove pub serves Italian meals for under £ 20 . It is family - friendly and located in the city centre . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum and Yippee Noodle Bar are fast food restaurant located north of the City center . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : no||The Olive Grove pub is a high priced restaurant serving Indian food , is children friendly , and is located in the riverside area . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||The Clowns coffee shop near Clare Hall in the city centre serves Fast food and has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian food for 20 - 25 euros , it is kid friendly and highly rated it 's nearby to the Express by Holiday Inn at the city centre . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue is pub that provide English food near Café Brazil and the price is moderate \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||Serving cheap , average rated Indian food in riverside is a not family friendly coffee shop called Fitzbillies . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||You can find an average Japanese restaurant in the city center called The Waterman that is family - friendly and costs less than £ 20 . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : no||Alimentum is a restaurant that serves Indian food , but the price range is high , the area where it is located is in the city centre , and they 're not friendly with children . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn , in the Riverside area , The Rice Boat serves Italian food but is not children friendly , it has a high price range but a low customer rating . \nname : Strada | Type : pub | food : English | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Near the Yippee Noodle Bar is a 5star English pub called Strada . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Aromi , an Italian coffee shop , is a one star family friendly venue located near the river . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||For less than £ 20 , Blue Spice serves English food in riverside . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||Located in city centre , The Phoenix has a high customer rating and serves Chinese food in a price range of £ 20 - 25 . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||Riverside has some fine dining near Café Adriatic , it 's called Travellers Rest Beefeater and it 's also cost effective . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : no||If you are searching for a great place to go , Zizzi is rated 5 out of 5 by customers . It is a Japanese food pub that is not family - friendly . \nname : Blue Spice | price : cheap | area : riverside||Blue Spice is a Café by the riverside , with cheap prices . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a pub with a high price range . The customer rating is 3 out of 5 . It is not child friendly . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly fast food place near Express by Holiday Inn . It is in the city center and has a high price range and an average rating . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||Near The Portland Arms is a pub named The Dumpling Tree . This place serves French cuisine and is not Family - friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||There is a moderate price range , Japanese coffee shop called Cocum , that has a customer rating of 1 out of 5 and is not kids friendly . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : no||The Olive Grove is a moderately priced pub serving English food located in the Riverside area . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry fast food restaurant is child friendly but has a low customer rating . It can be found on the riverside , near Café Rouge . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a Japanese restaurant with high ratings and is family - friendly . Located in the city centre . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers serve Indian food that is cheap , it is family friendly , and rated five out of five . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a French restaurant with an average customer rating costing less than £ 20 , is a family friendly coffee shop . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop providing take a service the high price range . It is located near The Bakers . This coffee shop is a high customer rating \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a low rated , family friendly coffee shop serving Italian food near Crown Plaza Hotel in riverside . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||The Mill is a pub located at riverside . It offers English food in the cheap price range . \nname : Strada | Type : pub | food : Indian | customer rating : average | near : Yippee Noodle Bar||With average customer ratings , the Strada pub features Indian food and is located near the Yippee Noodle Bar . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||A pub style restaurant is located near Café Adriatic named The Vaults . It has low prices and an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located in the riverside area near Raja Indian Cuisine , is a kid - friendly coffee shop serving French food . Prices are in the £ 20 - 25 range . \nname : The Phoenix | food : Italian | customer rating : low | area : city centre||Located in city centre , an Italian restaurant called The Phoenix has low customer ratings . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Zizzi , a coffee shop in Riverside , has a 1 out of 5 customer rating , a high price range , and is family friendly . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is in the city center , near the Express by Holiday Inn . They are family - friendly with English food less than £ 20 and have a low customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle located near Burger King serves cheap coffee shop fast food . It has a 5 out of 5 rating but not family - friendly . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : average||The Wildwood pub serves cheap Chinese food and has an average customer rating . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant located at the centre of the city , near the Express by Holiday Inn . Highly priced , this restaurant is rated 1 out of 5 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a one star rated restaurant close to the Express by Holiday Inn . It is family friendly and in the higher price range . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A restaurant called Travellers Rest Beefeater offers a kid - friendly environment and has an average price range . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Customers are prepared to pay above average for Italian food at the Cotto which has an excellent reputation . It is near The Portland Arms at the riverside and is a coffee shop . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum , a family - friendly restaurant , has attained low customer ratings . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies is a high cost fast food restaurant located near The Six Bells . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a restaurant providing Japanese food . It is located in the city centre . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes||The Olive Grove pub serves Indian cuisine , though the price range is higher than average it is child friendly and located in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers located near Raja Indian Cuisine in riverside is a high prices but child friendly Japanese coffee shop . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||In the riverside area near Burger King there is a coffee shop called The Eagle that serves French food costing more than £ 30 . It is not children friendly and has a customer rating of five out of five . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : no||Aromi is a pub located in the riverside area . It has an average rating and is not family - friendly . \nname : Browns Cambridge | food : Chinese | price : more than £ 30 | customer rating : high||There is a Chinese restaurant called Browns Cambridge that is more than £ 30 and is highly rated . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||An Italian Food place that is kids friendly with a customer rating 3 out of 5 and is a moderate price range . The Rice Boat is in the city centre near Express by Holiday Inn . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a 3 - star , family friendly restaurant located in City centre . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||There 's a cheap pub The Cambridge Blue near Café Brazil . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a children friendly fast food restaurant . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a French restaurant located near The Bakers . It is family friendly and a little higher than average priced . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||If you are looking for a coffee ship in the riverside area visit Cotto . Cotto also serves fantastic English Foods at a medium price . You will find it near The Portland Arms . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a high rated restaurant with reasonable prices . \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||Browns Cambridge has a high price range and a 1 out of 5 rating . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is a family - friendly restaurant in the price range below £ 20 . It is located in riverside . However , it does have low customer rating ; be cautious . \nname : The Golden Curry | food : Indian | price : high | family friendly : no | near : The Bakers||The Golden Curry provides Indian food in the high price range . It is near The Bakers . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix restaurant has a 3 out of 5 rating . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The Golden Palace is an expensive restaurant . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant with a 5 out of 5 customer review rating . It is great for families with very cheap prices . It is located in the riverside area near Express by Holiday Inn . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is an Italian restaurant that is centrally located in the city . It has an average customer rating and is moderately priced . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is a French restaurant with low rate . This restaurant is for the whole family . \nname : The Vaults | food : Fast food | price : cheap | family friendly : yes||Fast food joint , The Vaults , is family friendly and cheap . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers , a family friendly eatery has an average customer rating , is also a coffee shop located near The Portland Arms \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a highly rated Chinese restaurant costing over £ 30 . It 's by the river , near Yippee Noodle Bar . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue is a Japanese restaurant with a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 3 out of 5||The Indian restaurant called The Cambridge Blue has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop offering Italian food at a moderate price range . It is children friendly and located in the city centre . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a French coffee shop in the area of riverside near Raja Indian Cuisine with a moderate price range and is not kid friendly . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn with a high customer rating in the £ 20 - £ 25 price range but it is not child friendly \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is low - priced and provides breakfast . It is located near Yippee Noodle Bar . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||The Eagle has a moderate price range and is on the riverside . The customer rating is 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a child friendly coffee shop serving Italian food in the £ 20 to £ 25 price range with a high customer rating \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a 1 out of 5 Italian food restaurant that has a high price range and isn 't friendly to children . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is located in city centre and is kids friendly . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||For less than £ 20 you can eat Japanese food at The Dumpling Tree restaurant . \nname : Green Man | Type : pub | food : Indian | area : riverside | near : Café Rouge||In the riverside area , there is a pub which offers Indian food . The name is the Green Man , and it 's located near the Café Rouge . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is a Japanese restaurant with a price range of less than £ 20 . It is in the city centre near Clare Hall . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||The Cambridge Blue is a restaurant providing French food . The customer rating is 3 out of 5 . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada It is not for the whole family , rated 1 star , their prices are cheap , It is next to Rainbow Vegetarian Café \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood restaurant is family friendly . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : no||While the serving French food restaurant The Golden Curry has a 5 out of 5 in customer ratings it is not family - friendly . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in riverside is a Japanese restaurant near Express by Holiday Inn . Child friendly with a customer rating of 5 out of 5 but a price range of more than £ 30 . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||The Eagle is a Fast food restaurant with a 3 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that serves Indian food with a rating of 1 out of 5 in the riverside area and is child friendly . \nname : Blue Spice | food : French | price : less than £ 20 | area : city centre||Blue Spice in the city centre serve French food and is less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Japanese food in the moderate price range . It is located in the riverside area near Raja Indian Cuisine adults only \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap family friendly Italian restaurant near Rainbow Vegetarian Café with an average customer rating . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a family - friendly establishment by the Express by Holiday Inn in the City Centre , offers stunning Italian dishes for £ 30 or more \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderate - priced restaurant near Rainbow Vegetarian Café that serves Indian food . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||Near Café Adriatic there 's a low rating £ 30 price range pub named The Vaults . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is kid - friendly and located on the riverside . It 's highly rated and has an average price range of £ 20 - 25 . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : no | near : The Bakers||Moderately priced , The Golden Curry serves up Chinese food in this dining choice near The Bakers . This restaurant is not kid friendly . \nname : Green Man | Type : restaurant | area : riverside||The Green Man is a restaurant along the river . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman is a restaurant providing French food less than £ 20 price range . The Waterman is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||In the city centre is a family - friendly French coffee shop called Fitzbillies . It is less £ 20 and has an average customer rating . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||A restaurant named Blue Spice is located in the city centre area and is not family - friendly . It has a low customer rating with a price range of less then £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a Japanese coffee shop in the riverside area . It has moderate prices , is not kids friendly , and has a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Near the Riverside is an average rated family friendly coffee shop called Zizzi which cost less than £ 20 \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge in the city center is rated average and family - friendly . They provide Japanese food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The adult oriented Japanese coffee shop Fitzbillies is located on the riverside . Rated 3 out of 5 and averagely priced . \nname : The Mill | Type : pub | food : Chinese | price : more than £ 30 | area : riverside||There is a Chinese pub called The Mill in the riverside area . It ranges over £ 30 . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough near The Bakers is a moderately priced child friendly restaurant . \nname : The Rice Boat | food : Japanese | area : riverside||You can find Japanese food in the Riverside area at The Rice Boat . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced French restaurant near the Express by Holiday Inn in the city centre . It has a customer rating of 1 our of 5 and is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||High quality , high prices , but no highchairs - Fitzbillies is an expensive Italian coffee shop on the riverside . Just don 't bring Junior . \nname : The Rice Boat | food : Fast food | area : riverside||In the riverside area , there is a Fast food restaurant called The Rice Boat \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a Chinese restaurant . the price range is less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Looking for a French coffee shop near the Crowne Plaza Hotel in riverside . Try Browns Cambridge . It received a 5 out of 5 , but it 's not family - friendly . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||Near the riverside and Café Brazil , is a coffee shop named The Vaults which has a moderate price range and a customer rating of one out of five . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : yes||Giraffe is a family friendly pub near the city centre that serves Indian Dishes . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a cheap coffee shop that sells French food . its has been rated 5 out of 5 by customers , however it isn 't family - friendly \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Sat on the Riverside , Fitzbillies is a moderately priced coffee shop serving A French menu . With a poor 1 out of 5 customer rating , it is also not recommended for children . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : riverside||The Phoenix is located in the riverside area . It serves cheap Indian food and has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a good Fast food restaurant . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two in riverside is kid friendly and serves Japanese food . \nname : Blue Spice | food : English | price : cheap | area : riverside||There is a venue called Blue Spice . It is located in riverside that serves cheap English food . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Plough is The Bakers restaurant with high price range \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is a great place to bring your kids and is not far from Raja Indian Cuisine \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a low rated coffee shop near the Crowne Plaza Hotel in the riverside area . This establishment is not family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is a fast food pub in riverside that has a high price range . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is a family friendly Chinese restaurant called Strada . It has a very low customer rating with high prices . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||Japanese is The Waterman pub riverside . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||The customer rating of Browns Cambridge was high charging more than 30 pounds . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a kid friendly well liked coffee shop named The Eagle near Burger King in Riverside that sells Japanese food at an average price . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||I visited a coffee shop called The Golden Palace that served Japanese food in the city centre for a moderate price . It wasn 't very good though ; it 's reviews are only 1 out of 5 stars . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop near Crowne Plaza Hotel . It is located at riverside , is not family - friendly , and has a low customer rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||Visit the one - star pub , The Waterman , located at the riverside . \nname : Strada | Type : pub | food : Indian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is an Indian pub near Yippee Noodle Bar with a customer rating of 5 out of 5 . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Adult establishment Fitzbillies , rated 3 out of 5 by customers , can be found near Express by Holiday Inn for £ 20 - 25 . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry is a child friendly establishment serving French food at mid range prices . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop that has been rated 3 out of 5 with a price range of £ 20 - 25 . It is located in the city centre near The Portland Arms . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||A riverside restaurant , The Golden Palace , has a 1 out of 5 customer rating . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Bibimbap House offers Fast food and is in the riverside area located near The Rice Boat . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood coffee shop is located near The Ranch . It has low prices and a rating of 1 out of 5 . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub costing less than £ 20 serving Fast food near Café Rouge \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman offers a cheap cost on average rated Italian food . For really cheap costs its a great place to dine with friends , located right in city center . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||A pub called The Vaults has a 1 out of 5 customer rating , it has a moderate price range . it is located near Café Adriatic \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : no||Zizzi is a 5 out of 5 , non - family - friendly pub that serves Japanese cuisine . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A family friendly coffee shop called Cocum offers cheap Indian food that is rated highly at 5 out of 5 \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a Chinese restaurant with a 5 out of 5 customer rating and is family friendly . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge in the Riverside area is The Golden Curry , which is family - friendly , serves fast - food and has low customer ratings . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a child friendly pub with a 5 out of 5 customer rating with prices more than £ 30 . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn , The Rice Boat offers French food in the £ 20- £ 25 range , 3 out of 5 customer rating , not family - friendly . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||For inexpensive fast food . visit The Cambridge Blue pub situated by Café Brazil . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||The Mill is a Japanese pub located in riverside with a price of 20 to 25 pounds . \nname : The Mill | Type : pub | food : Italian | price : high | area : city centre||For an Italian meal , head for The Mill public house located in the city centre . This is a higher priced establishment . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a reasonably priced , 3 - star coffee shop located near Café Brazil by the river . \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat near Rainbow Vegetarian Café is cheap and averagely rated . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall in riverside is a coffee shop that serves French food called Clowns . The rating is 5 out of 5 . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix is located in the city center , they have a 3 star rating and high priced food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a modest price Range coffee shop that serves Japanese food . it has a customer rating of 1 out of 5 and is in the riverside area . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Adult oriented Cocum , serves Japanese food at cheap prices and comes highly recommended as a coffee shop . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||In the centre of the city is a coffee shop called Zizzi . Not family - friendly and average customer ratings the prices are less than £ 20 . \nname : The Mill | Type : pub | food : English | price : less than £ 20 | area : riverside||The Mill pub located by the riverside serves English food for under £ 20 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||If you 're looking for a family friendly English restaurant near the Crowne Plaza Hotel , go to The Waterman . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry has an average rating serves Italian food . It is child friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||A coffee shop named Fitzbillies that is not family - friendly is located in the city centre area . It has cheap Japanese food and a customer rating of 5 out of 5 . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Located near Yippee Noodle Bar in the city centre , Alimentum is a Japanese restaurant with a customer rating of 5 out of 5 and cheap price range . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : yes||This restaurant with a low Customer Rating : The Rice Boat , is a family - friendly establishment and located at City Centre . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop located on the riverside near The Portland Arms . It has an average customer rating . It offers cheap Indian food . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||Near The Portland Arms , There 's a kid - friendly French pub , called The Dumpling Tree . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||For fine dining , check out Browns Cambridge , a fast food restaurant with a 3 out of 5 customer rating \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a highly priced , 5 out of 5 star French restaurant \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||To get good food there is The Mill coffee shop near The Sorrento \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family coffee shop with Italian food with high prices but also an average rating , its close to Café Sicilia \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||A pub with French food is near the Yippee Noodle Bar with the name of Strada . its customer rating is 3 out of 5 . \nname : Cotto | price : high | area : riverside | near : All Bar One||Cotto is a premium priced venue in the riverside area near All Bar One . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a French place called Strada . You 're likely to pay more than £ 30 per serving , the customer ratings are low , and you can 't bring the whole family so it 's not recommended . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers serves English food priced from 20 - 25 . This is not a kid friendly restaurant and has a high customer rating . \nname : The Phoenix | food : English | customer rating : low | area : riverside||The Phoenix is a one star rated fast food service . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a family - friendly French food place located in city centre with a price range less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non family - friendly coffee shop in the riverside . It is located near to Raja Indian Cuisine and serves fast food for less than £ 20 . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a fairly inexpensive wine tasting restaurant that is located near the Clare Hall . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||Loch Fyne is a low priced restaurant which serves wine and cheese . Not family friendly . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults serve wine and cheese restaurant that is in the higher price range . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Located near the Ranch , Cotto is the perfect Chinese food restaurant and ideal for children , given their high customer rating . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Cotto a Chinese cuisine with average customer rating is near Ranch and also family friendly . \nname : The Vaults | food : French | price : cheap | family friendly : yes||The Vaults is a very cheap restaurant that is family friendly . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : no||The Golden Curry does not serve families , but they are a 5 out of 5 restaurant that serves English . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||In the riverside area is located a high rating restaurant called The Golden Palace . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a sushi food pub for dinner , it 's close to Café Brazil and is a mid - price place . Join us . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||At the riverside stands Aromi kids - friendly pub high rated . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||The family friendly Japanese riverside restaurant near The Sorrento is called Browns Cambridge . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood , It is a coffee shop 1 star , It is in Ranch , its price is high cost \nname : Blue Spice | food : Italian | price : more than £ 30 | area : riverside||A restaurant in the riverside are with a price range of more than L30 , the Blue Spice offers Italian cuisine . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a restaurant serving pastas and wines in the medium price range . It is located near Café Rouge . \nname : Cotto | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is the place to eat the best Hot Dogs and Burger and where your children can play , is an average place near Ranch \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian food restaurant , no children Friendly , with high price Range and 1 out of 5 customer Rating . located in riverside near Express by Holiday Inn . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : city centre||You can find Chinese food for less than £ 20 in the city centre at Blue Spice . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant providing sushi in the low price range . It is located near The Rice Boat . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||With an average price range of £ 20 - 25 , enjoy French food at the kid friendly Green Man . We are located in the riverside area near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is an Italian coffee shop called Fitzbillies by the river which is family friendly and moderately priced . \nname : The Eagle | food : English | customer rating : average||The Eagle serves English food . It has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly Italian coffee shop in riverside . It 's near Burger King . It 's expensive and gets average customer ratings . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap , family - friendly , Italian coffee shop near Burger King , in riverside , with an average customer rating . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a Chinese restaurant located on a riverside with a customer rating of 5 out of 5 . It has a cheap price range and is not family friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a children friendly Japanese restaurant located near Rainbow Vegetarian Café with a 5 out of 5 star rating with a price range of more than 30 Euros . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||There 's a Chinese restaurant with a customer rating of 5 out of 5 called The Rice Boat . It 's located in the riverside area and is not suitable for adults . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : yes||Zizzi is a family - friendly pub with average customer ratings . It serves Japanese food . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||The Green Man serves Italian food and is located near All Bar One in the city centre . They are non family - friendly , and have a price range of less than £ 20 . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a moderately priced restaurant that serves Italian food . This experience received a 1 out of 5 review , in the Riverside area . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Located riverside near Café Adriatic is Travellers Rest Beefeater . Their price range is £ 20 - 25 and have a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the city centre is an average Japanese family - friendly restaurant . It cost less than 20 euros . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers is a kid friendly coffee shop styled joint that sells Indian food . Customers have rated the establishment a 1 out of 5 . \nname : The Waterman | price : moderate | family friendly : no||The Waterman is situated 1 mile from the town centre and is accessible by all means of public transport , it is not family friendly , this is not because we don 't like children , it is purely that we wish for our adult audience to take time out to relax and have time to them selves . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||come for a coffee and some Indian food without the kids for low prices near Burger King in the city centre , we are The Eagle . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||There is a cheap pub Wildwood located in the centre of the city that provides sushi . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||For a high priced pub near Café Adriatic , try The Vaults . They have an average customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the cheap price range . It is located in the city centre . It is near Burger King . Its customer rating is 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||A Japanese coffee shop called The Punter is not kid friendly . It is near Café Sicilia , low rated , and costs more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located in the city centre , Fitzbillies is a coffee shop offering cheaply priced French food and has a customer rating of 5 out of 5 . It is not family - friendly . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum serves French food in the city centre for £ 20 - 25 . It has an average customer rating of 3 out of 5 and is located near Yippee Noodle Bar . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Near riverside and Café Rouge , The Golden Curry is a Japanese restaurant that is not family - friendly . It has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a low - price coffee Shop that is located in City centre \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||for Fast food go down near The Portland Arms as there is a child friendly coffee shop called The Cricketers with high customer ratings \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||In the city centre there is a place called The Phoenix which serves Japanese food for £ 20 - 25 , it has a high customer rating \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||Another great riverside pub is the Green Man . Its located near Café Rouge , so its an easy commute . Whenever my friends and I desire some great Italian food , The Green Man , is our place to go . \nname : The Waterman | price : moderate | family friendly : no||The Waterman is not suitable for families but offers a reasonably priced menu . \nname : Wildwood | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | near : Ranch||There is a coffee shop and dine in restaurant that is fairly expensive near Ranch that has decent reviews called Wildwood . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||There is a children friendly pub serving Japanese food called Zizzi which has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is an English restaurant that receives high ratings , located by the riverside . The Rice Boat is also great for the kids . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The Golden Curry is a family friendly one star rated wine bar . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The children friendly English restaurant is called Loch Fyne \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a great coffee shop that serves French food . They can be found in city centre where the prices ranges are moderate . The customer rating is currently at a 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||You can find Browns Cambridge by the riverside , near Crowne Plaza Hotel . The Italian coffee shop is not family - friendly . Customers gave it an average rating . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : average||the price is high to eat at a restaurant with an average customer rating called Taste of Cambridge . \nname : The Vaults | food : English | price : more than £ 30 | family friendly : yes||Yes there is a child friendly place serving English food , it 's called The Vaults and has a price range of £ 30 . \nname : Loch Fyne | food : Indian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is an Indian restaurant in riverside near The Rice Boat . It has a high customer rating . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is low customer rated restaurant . It is located in The Rice Boat . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap French food restaurant located near Rainbow Vegetarian Café and has low customer rating . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Down the road from Café Rouge is the 5 - Star sushi restaurant Midsummer House . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food eatery near The Sorrento in the city centre . They are family - friendly . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is not family friend , it serves French food and has a low customer rating . It is based in the city centre near Café Rouge . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Located near The Six Bells , Fitzbillies offers cheap English food . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is located at the riverside near The Sorrento . They serve French food , and it is not a child friendly establishment . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Reasonably priced English food is found in Bibimbap House , near Clare Hall in the riverside area . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Near All Bar One there is a high priced restaurant named Midsummer House \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : no||The Rice Boat is not family - friendly , that 's serves Japanese with a low customer rating near City Centre . \nname : The Twenty Two | food : Chinese | family friendly : yes||Kid friendly , The Twenty Two serves Chinese foods . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is high costing child Friendly Fast food restaurant rating 1 out 5 \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||Near The Portland Arms is a French coffee shop named The Cricketers that has a customer rating of 5 out of 5 and is not family - friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop serving Italian food . It has a price range of £ 20 - 25 , and is highly rated by customers . It 's located near Ranch , \nname : Strada | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a medium priced fast food family friendly restaurant in the city centre near Rainbow Vegetarian Café . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||In riverside near Café Sicilia is a pub called The Twenty Two that has a high customer rating . \nname : Blue Spice | food : Chinese | price : £ 20 - 25 | area : riverside||Blue Spice offers Chinese food for an average price in Riverside . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||In the city centre is Zizzi a kids friendly coffee shop with moderate prices and a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves Indian food that is in the low price range . It has a low customer rating , is family friendly , and is near Café Sicilia . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne is an adequate for family restaurant that serves all kinds of food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Riverside has a moderately priced coffee shop named Fitzbillies . They serve Japanese food and are kid - friendly . The customer rating is 1 out of 5 . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : no | near : Café Rouge||A non kid friendly Indian Pub near Café Rouge in a moderate price range is The Plough . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||With a price range of £ 20 - 25 and a high customer rating , Fitzbilies coffee shop offers French food . They are not kid friendly and are located in the riverside area . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a kids friendly Japanese pub restaurant riverside located \nname : Bibimbap House | food : French | price : more than £ 30 | area : city centre | near : Clare Hall||The Bibimbap House in center city near Clare Hall offers French food for more than f30 a meal . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : high||There is a fast food restaurant with a high customer rating called The Cambridge Blue . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||In the riverside , there is the Fitzbillies , a non - children friendly highly rated expensive coffee shop that serves Japanese food . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a one star restaurant offers Chinese food . It 's located next to the river . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Aromi is a sushi restaurant that is family friendly . It received three out of five stars \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop , near Burger King , is a family friendly , average priced restaurant with a three star rating . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Italian restaurant in the city centre near Café Rouge . It is not family - friendly and has a low customer rating . \nname : The Punter | food : French | price : £ 20 - 25||An average - priced restaurant that sells French food is The Punter . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||From £ 30 you can dine at The Wrestlers , which is a highly rated Italian restaurant . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||There is an expensive fast food restaurant called Browns Cambridge . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Located in riverside Alimentum offers Italian food . price range more an £ 30 . Highly rated easy to find near the Yippee Noodle Bar . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly Italian coffee shop with a cheap price range and a customer rating of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly , Japanese coffee shop near Crowne Plaza Hotel in city centre named Taste of Cambridge . \nname : The Eagle | food : French | customer rating : high||The Eagle that serves French food has a high customer rating . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is a restaurant named The Rice Boat . This restaurant has a price range of over 30 Euros and a low customer rating . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe is a restaurant near The Six Bells which is cheap . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop serving French food close to Burger King near the river . It is not family friendly and has a rating of 1 out of 5 . The price range is low . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||Located in the riverside area is the restaurant Zizzi which has a typical price range of above £ 30 \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies has a price range of more than 30 euros and is located near Rainbow Vegetarian Café . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : more than £ 30 | near : Café Brazil||Near Café Brazil is an expensive Chinese Pub called The Cambridge Blue . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||The Giraffe pub serves hamburgers and French fries . They are located on the riverfront , near the City centre . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food family - friendly restaurant centre near The Sorrento . It is located in the city centre . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a low priced restaurant across from All Bar One . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child friendly coffee shop with a high price range near Café Sicilia in riverside . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||In the city centre there is this place called The Waterman . It has a low customer rating but it is family friendly and you can get Indian food for less than £ 20 . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no||The Olive Grove is a riverside pub that serves Indian food for a moderate price . It is not kid friendly . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is cheap , family friendly and near the Express by Holiday Inn . It scored 5 out of 5 in customer ratings \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix along the riverside sells Italian food and has average ratings \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located by the Express by Holiday Inn that has expensive , Italian food , with a rating of 1 out of 5 , and is child friendly \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is located just outside the city centre next to the river and offers British food at a good price for all the family . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada fast food , located near the Rainbow Vegetarian Café , offers a moderately priced and child friendly menu . Customer rating 1 out of 5 . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||The customer rating for this next pub restaurant Clowns only scores a 3 out of 5 rating , but the prices are moderate and it is located in the trendy Riverside area of town . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||There is an averagely priced pub called The Vaults near to Café Adriatic with a customer rating of 3 out of 5 . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House is a fast food place with a low customer rating . It is near Café Rouge . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is inexpensive , but although it is family friendly , the reviews are average . Located by the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an inexpensive , five star , family - friendly coffee shop that is located in City Centre , on the river . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in the riverside area , The Wrestlers , offers Italian flare in a coffee shop setting and is kid friendly . It is near Raja Indian Cuisine and is a bit on the pricey side . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The moderately - priced The Waterman can be found in the city centre . You can order Japanese food there , but leave the kids at home because it is not kid - friendly . The Waterman has a rating of 1 out of 5 . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located in riverside , Aromi pub has a customer rating of 3 out of 5 and is children friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no||Cocum , a fast food coffee shop , is fairly expensive and received an average customer rating . \nname : Alimentum | food : French | price : cheap | area : riverside | family friendly : yes||You can find cheap , French food with a family friendly atmosphere at Alimentum , located in the riverside area . \nname : The Olive Grove | Type : pub | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a child - friendly pub that serves Chinese food . They are located near Riverside and have higher than average prices . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||Did you hear about the children friendly French restaurant near The Bakers , it is called The Golden Curry and its price range is more than £ 30 . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Phoenix is a cheap Japanese restaurant in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||With a 1 out of 5 customer rating and a high price range , Fitzbillies is a good choice for an Indian cuisine coffee shop that rejects a familial atmosphere . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||With a 5 out of 5 rating , Cocum is a cheap , family - friendly , French coffee shop . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||An adults - only pub called The Olive Grove serves Japanese food with a price range of less than £ 20 pounds located in the riverside area . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||A family friendly restaurant called The Aromi is located in Riverside serves Japanese , and has an average customer rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop which serves fast food . It has a low customer rating of 1 out of 5 , is not children friendly and is in the high price range . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||With a 5 out 5 customer rating , Wildwood is a cheap English pub . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is rated 1 star of a possible 5 that serves Italian meals . It is not family friendly and is located by the Crowne Plaza Hotel . It is also located by the river . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly highly related Indian restaurant that costs more than 30 euro 's . It is located near the Rainbow Vegetarian Café . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Indian food It is near The Portland Arms . Its customer rating is high . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill pub located at the riverside there is French at less than £ 20 price Range . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia , The Punter is an adult only coffee shop serving French food with high prices and ratings . \nname : Green Man | price : moderate | area : city centre | family friendly : yes||Located in the city centre , Green Man is moderately priced and kid friendly . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The Phoenix serves French food in the riverside area . It has a customer rating of 5 out of 5 . \nname : The Punter | food : Japanese | price : high||There is a Japanese food restaurant called The Punter \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an low price English food restaurant rated 5 out of 5 by customers , with a family - friendly ambient , by the riverside . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||For less than £ 20 , Blue Spice is a restaurant by the riverside , however is not family - friendly and has a low customer rating . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is not child friendly , but has a 5 - Star rating for Japanese food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop offers sushi and a low - cost menu . It is family friendly . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a fast food restaurant that is family friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , rated 5 out of 5 , is a Japanese restaurant where you can eat for more than £ 30 . It is located in the city centre near Yippee Noodle Bar . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||A five out of five customer rating and cheap prices are found at Alimentum , an Indian eatery in the city centre near the Yippee Noodle Bar . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a family - friendly place out by Café Sicilia . It 's usually under 20 . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers Japanese coffee shop near Raja Indian Cuisine in the city centre has a price range of less than £ 20 and is not family - friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no||While not a place to bring children , Cocum is a coffee shop with an Indian menu . Its rating from customers are average and the menu items are quite high in price . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Japanese restaurant The Waterman is located in Riverside . It is a moderately priced , kid friendly establishment , and as a 1 out of 5 rating with customers . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne restaurant is for the whole family that offers breakfast meals with low price range \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city centre , near Burger King , you can find the French coffee shop The Eagle . It is mot kid friendly however provides reasonably priced food ranging from £ 20 - 25 and boasts a rating of 3 out of 5 . \nname : The Plough | Type : pub | food : English | price : more than £ 30 | family friendly : yes | near : Café Rouge||Near Café Rouge is a children friendly pub that serves English food for a moderate price called The Plough . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a family friendly coffee shop . They offer drink at a reasonable price and have been rated three stars . \nname : Cotto | food : French | customer rating : average | family friendly : yes | near : Ranch||The French place near Ranch is called Cotto . It has an average customer rating and is kid friendly . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : no | near : The Bakers||There is a restaurant , called The Plough , that is not children friendly , near The Bakers , it costs more then 30 pounds . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : no||An average rated pub that serves English food is Zizzi ; it is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : high | family friendly : yes||Loch Fyne is an expensive dine - in restaurant that is family friendly . \nname : The Waterman | price : high | family friendly : yes||The Waterman is a child - friendly restaurant . The only thing is that it is somewhat pricey . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : no | near : Café Rouge||Near Café Rouge , The Plough is an Italian pub with a reasonable price . It is not child friendly . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||The Rice Boat is an adult oriented fast food restaurant with a low customer rating , located in the riverside area . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||With 3 out of 5 customers ratings , Alimentum , near Yippee Noodle Bar , in riverside , is a great place to get excellent French food . The above average price is worth it for the excellent food and great service . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop with an average customer rating located near The Bakers . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly low rated family - friendly restaurant located in the city centre area by the Express by Holiday Inn \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman , a city center Italian restaurant , boasts a peaceful , child - free atmosphere and has a 5 out of 5 rating . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar that serves fast food , it has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a trendy coffee shop with about average ratings . They offer higher priced fast food items . This is an adult only establishment . It is located in the city centre near the Burger King . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a average French restaurant located in Riverside where you can have coffee and the food is less than £ 20 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : The Rice Boat||Situated in the city centre near The Rice Boat , The Twenty Two lives up to its high rating . It is kids friendly and priced at 20 - 25 pounds a dish . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento in the riverside area , there is a family friendly pub called Taste of Cambridge . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is burger joint that is rated five stars . It is high - priced and accessible for families . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : yes||There 's a family friendly pub serving Chinese food called Zizzi . It 's customer rating is low . \nname : Cotto | food : Italian | near : Café Rouge||Cotto is an Italian eatery located near Café Rouge . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a variety of low - priced menu options located by Express by Holiday Inn . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop near Crown Plaza Hotel in Riverside . It is considered to be fast food and children are welcome . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : no||The Alimentum is a fast food place that is not child friendly in the city center area with a high price range . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : no||There is a Fast food restaurant named The Vaults with prices more than £ 30 and is not child friendly . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry offers Indian food and is located in the riverside area near Café Rouge . It has a low customer rating and is not family friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree is a French restaurant costing more than £ 30 . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing moderately priced Indian food . It is near Café Sicilia , has a moderate customer rating and is not kid friendly . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat with a price range of over £ 30 and high customer ratings is near the Rainbow Vegetarian Café . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a place located on the riverside near Clare Hall . It offers Indian food for less than £ 20 . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a restaurant located in the city centre area near Yippee Noodle Bar . It has Italian food and a customer rating of 1 out of 5 with a high price range . \nname : Aromi | Type : restaurant | food : English | area : riverside||In Riverside , is Aromi , they serve English food . \nname : Bibimbap House | food : Chinese | price : moderate | area : city centre | near : Clare Hall||In the city centre area near Clare Hall is , Bibimbap House . Serving Chinese for a moderate price . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers , a family friendly pub near Ranch has received a high customer rating . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is an Indian of moderate price in the riverside area . It was a customer rating of 1 out of 5 and is not kids friendly . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||In the area of City centre near The Rice Boat there is Loch Fyne that serves fast food that has a customer rating of 5 out of 5 . \nname : The Punter | food : Japanese | price : less than £ 20||The Punter servers averagely priced Japanese food \nname : Bibimbap House | food : Italian | area : city centre | near : The Rice Boat||An Italian restaurant near The Rice Boat in centre city is called Bibimbap House . \nname : The Phoenix | food : English | price : high | customer rating : average | area : city centre||The Phoenix is a restaurant in the city center with an average customer rating that serves high - priced English food . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||The Portland Arms has a great way to eat with its affordable coffee shop , The Cotto . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Zizzi is a Fast food pub which is not family - friendly and a customer rating of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which serves moderate priced French food near Raja Indian Cuisine in the riverside area . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||There is a moderately priced kid friendly pub in the riverside area called The Olive Grove that serves English food . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a Fast food restaurant in riverside with a moderate price range , and rating of 3 out of 5. and yes also kids friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is in the riverside area near Express by Holiday Inn . They are not kid friendly and serve moderate priced Indian food rated 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre||The Golden Palace is a fast food place , coffee shop with a high price range and has an average customer rating . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a children friendly Japanese restaurant situated on the riverside , near Café Rouge . It has been rated as average by its customers . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix in the city centre has a 3 out of 5 rating , which sells fast food at a moderate price . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a restaurant offering Chinese food and has an average rating . It is child friendly and is located at a riverside . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix serves Indian food in the riverside area for more than £ 30 and has a high customer rating . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry has a 3 out of 5 customer rating and is kid friendly and serves fast food . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||There is a Italian coffee shop called the Cotto that has a customer rating that is high and a price range more than £ 30 . It is located in the riverside area near The Portland Arms . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is a Japanese restaurant named The Rice Boat . The atmosphere is very family friendly and has a reasonable price range of thirty and up . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop is family friendly and located next to the river and is 3 star \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop , near Café Sicilia , serve Japanese food , have a 3 out of 5 customer rating , are not kid friendly , and have a price range of £ 20 - 25 . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||There is a kids friendly Japanese restaurant The Golden Curry with the customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderately priced coffee shop in the riverside area that sells Indian food and has a moderate customer rating , it isn 't kid friendly however . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Brazil||Located near Café Brazil in the city centre , The Vaults is a highly rated coffee shop in the £ 20 - 25 price range . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is a high priced venue near Café Adriatic in the centre of the city with a customer rating of 3 out of 5 \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||English food Café Strada is located near Rainbow Vegetarian Café . Strada is cheap and has a customer rating of 5 out of 5 . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||Aromi a Japanese restaurant situated by the riverside . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||the a rating of 5 out of 5 The Rice Boat serves Japanese food and is kid friendly \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||There is a cheap coffee shop located near the river that has five stars . It 's called The Golden Palace . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||children friendly The Cricketers coffee Shop serves Italian food with a customer rating of 1 out of 5 , near The Portland Arms \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a five star , expensive restaurant located in the City centre near Yippee Noodle Bar . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a highly rated English venue with a moderately high price range but does not welcome children . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man , near All Bar One , located in city centre is a kid friendly , English food restaurant with moderate price range . \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : yes||A restaurant called The Rice Boat in the city centre area is family - friendly . It has Japanese food and a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a city centre coffee shop providing Italian food . Price range is high . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : high | family friendly : yes||A child friendly restaurant that offers Japanese food named Loch Fyne is very high on the pricing \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree is a kid friendly Japanese pub . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Eat for under £ 25 at the kid friendly Green Man in riverside \nname : The Eagle | food : English | customer rating : 5 out of 5||Food at The Eagle is outstanding . Featuring English food , we 've been given a customer rating of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The family friendly coffee shop Taste of Cambridge , serving Fast foods too , is located on the riverside near Crowne Plaza Hotel \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||Located near Café Adriatic is The Vaults . This pub type eatery is priced high and has a customer rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no||For cheap fast food in the riverside area , try The Waterman , customer ratings are average but not family - friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||A great Japanese coffee shop that is a little expensive but worth it is Cocum . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||Alimentum is a family - friendly riverside venue within the low price - range that serves Italian food . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : no||Alimentum is a high - priced restaurant in the city centre that serves Indian food . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is an Indian restaurant that is cheap and family friendly . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is child - friendly and moderately priced . It is located near Café Sicilia . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop in riverside . It serves French food and has a high price range , it is near The Sorrento \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a Japanese riverside coffee shop that is both children friendly and rated 3 out of 5 stars by customers . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle is on the riverside . It costs £ 20 - £ 25 to eat there and has been rated 3 out of 5 by customers . \nname : The Eagle | food : Chinese | customer rating : average||The Eagle provides Chinese food Its customer rating is average . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||Located in Café Brazil is the pub The Cambridge Blue which is more expensive . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers has a 5 out of 5 rating serving fast food and coffee near The Portland Arms . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : yes||Highly rated Indian food can be obtained from a family friendly place named The Golden Curry . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Highly rated French food at The Waterman . Kid friendly from £ 20 - 25 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Next to The Sorrento there is a wine and cheese shop called Browns Cambridge . \nname : Cotto | food : English | near : Café Rouge||English cuisine is served at Cotto near Café Rouge \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop in riverside that is not child friendly . It has a low customer rating and the price range is more than £ 30 . \nname : Blue Spice | food : Chinese | price : moderate | area : riverside||Blue Spice serves Chinese food , has a moderate price range , and is on the riverside . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop providing Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is an expensive , high quality restaurant suitable for families . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high rated child friendly restaurant and offers average priced French Food . It is located in the city centre near Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||The coffee shop Cocum offers Indian food in the more than £ 30 . Cocum has a high customer rating and is not child friendly . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a 3 out of 5 Japanese restaurant which is child friendly and low priced located near the Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is family - friendly coffee shop specializing in Italian cuisine near the Crowne Plaza Hotel in the city centre . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto serves Japanese food along with a family friendly atmosphere and 5 out of 5 rating . Located near the Ranch . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a moderately priced , child friendly , fast food establishment with a customer rating of 3 out of 5 \nname : Zizzi | Type : pub | food : English | customer rating : high | family friendly : yes||Zizzi is a pub of English food that has a high customer rating and kids friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Located in the city centre , Fitzbillies is a French coffee shop offering a family - friendly atmosphere with high prices and low ratings . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kids - friendly Japanese pub . It is rated 1 out of 5 . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||Wildwood pub is a low price rated 3 stars \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||Wildwood pub is a 5 star pub with healthy food and wine . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The Golden Curry is a family friendly restaurant with a three star review . \nname : Blue Spice | food : Fast food | price : high | area : riverside||Blue Spice , located in the riverside area offers fast food for high prices . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Located at the riverside , the is a pub named Giraffe that serves Fast food and a Family friendly place . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||A low rated , child friendly pub in the price range of under £ 20 is called Cocum . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||In the city centre , there is a moderately - priced Italian coffee shop named Fitzbillies . It is kid - friendly and customers rated it 3 out of 5 . \nname : The Eagle | food : Chinese | customer rating : 3 out of 5||The Eagle is a Chinese restaurant with an average customer rating \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : no||May not be child friendly but Chinese food under £ 20 is worth it at Loch Fyne \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub that has Chinese food . It received a customer rating of 5 out of 5 and is family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Located at the riverside near Burger King , The Eagle is a fast food coffee shop with great ratings , and cheap prices . The Eagle offers a quiet setting with no amenities for children . \nname : Loch Fyne | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a 3 star Fast food restaurant in Riverside near The Rice Boat . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||Zizzi is a child - friendly Chinese food restaurant with an average customer rating . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn . its price range is high , customer rating is 1 out 5 and children are friendly . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Child friendly Strada serves Chinese food near the Rainbow Vegetarian Café . It receives excellent reviews with meals averaging at £ 30 . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : no | near : All Bar One||Near All Bar One in city centre is Green Man . With a higher price range , this adult establishment serves fast food . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The children friendly restaurant in the riverside area with an average rating of 3 out of 5 is called Blue Spice . It is average priced around £ 20 - 25 \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||Clowns is a riverside pub in the higher - than - average price range . It is rated low by customers . \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||Midsummer House is near Café Rouge and serves English food . It gets a low customer rating . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||Found in the city centre area and with an average customer rating is the restaurant called The Waterman . Here , they serve Italian cuisine in the cheap price range but is not kid friendly . \nname : The Vaults | food : English | price : more than £ 30 | family friendly : yes||The Vaults serves English food with a price range above £ 30 and is child friendly . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||Near the Riverside with poor reviews and a high price sits The Eagle . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is located near Burger King , in City centre . It is a cheap coffee shop with a one star rating . It is not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop located in the City centre , offering Italian cuisine to its customers . Customer feedback at present currently indicates that it has a low rating compared to other establishments . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto has a price range of less than £ 20 and is located near All Bar One in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a adult coffee shop with moderate rating . Fitzbillies is a Japanese coffee shop for adults in the city center \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 3 out of 5 . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly restaurant which serves Italian food at low prices . It is situated in the city centre . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Near Burger King there is a inexpensive coffee shop called The Eagle which serves spaghetti . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : yes||There is a Chinese restaurant , called Loch Fyne , that is family friendly and with a price range less than £ 20 . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||There is a restaurant The Phoenix located in City Centre . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , an upscale Italian restaurant with an average customer rating , is located near Café Rouge in the city center . \nname : The Eagle | food : English | customer rating : 3 out of 5||For English food with a 3 out of 5 rating , there is The Eagle . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a fast food coffee shop near Burger King with a price range between £ 20 - 25 . It has a high customer rating and is near the city centre , but it is not kid friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers high priced Chinese food , for the whole family and has a 5 star rating . They are located beside Rainbow Vegetarian Café . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||Browns Cambridge has 3 star food and is worth more money \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has an excellent customer rating with an average price range . \nname : The Punter | food : Italian | price : moderate||For moderately priced Italian food visit The Punter . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that provides Indian food in riverside . It is located near Clare Hall . It has a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes||With moderate prices and kids friendly service the pub The Olive Grove serves English food . \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||The Plough is a mid price restaurant close to The Bakers . It is aimed for adults only . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a adult friendly Italian coffee shop located in the city centre near Burger King . Their prices and customer ratings are moderate . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Located next to All Bar One , the Green Man is a one - starred spaghetti restaurant suitable for those with young children . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Customers have rated the Wildwood restaurant situated near Café Rouge as average . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||Child - friendly pub , The Dumpling Tree , located near The Portland Arms , specializes in Indian food . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is an expensive , low rated coffee shop . They are family friendly . \nname : The Cambridge Blue | Type : pub | food : French | price : less than £ 20 | near : Café Brazil||Located near Café Brazil , The Cambridge Blue is a pub that provides low - cost take - away . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a children friendly coffee shop which serve Japanese food called The Cricketers . It 's located near The Portland Arms and is rated excellently , with 5 out of 5 stars . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||Loch Fyne is a Japanese restaurant that is not family - friendly and costs less than 20 . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman offers a kid friendly environment and a 3 out of 5 customer rating . It offers moderate prices and serves fast food . It is located on the riverside \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a service pub located in city centre for kids \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is an above average price coffee shop The Eagle and they serve fast food . They have average customer ratings and they are in riverside near Burger King . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a well liked restaurant located in riverside near The Rice Boat . The Twenty Two has a family friendly atmosphere with selections for less than L20 . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is located near All Bar One and offers wine . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||In the city centre is an Italian fine dining restaurant and coffee shop called Fitzbillies , it is a high end diner charging £ 20 - 25 per head with a good customer rating although children are not really welcome \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||The Vaults is a low cost restaurant that is not family friendly . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a no children Friendly Chinese food place , the price Range is high and customer Rating is 1 out of 5 , located in the city centre near Express by Holiday Inn . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop in Riverside , near Crown Plaza Hotel . It serves French food and is family - friendly . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||In riverside near The Sorrento there is an Italian place called Browns Cambridge that is family friendly . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a highly rated but mid - priced English restaurant located near Rainbow Vegetarian Café . It is not kids friendly . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : riverside||The Phoenix provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a cheap , family - friendly restaurant with a high customer rating , located in the city center , near The Rice Boat . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge coffee shop serves French food and is situated in the riverside area near the Crown Plaza Hotel and is kids friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a cheap , low rated coffee shop in the riverside area . It serves French food , not recommended for families and is close to Burger King . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a family friendly restaurant that is near Express by Holiday Inn \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||There is a cheap and family friendly fast food place located in riverside called Alimentum . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults is a restaurant providing take - away deliveries in the low price range . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Highly recommended Alimentum serves mid - range English food , it is located in Luton near Yippee Noodle Bar . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry is a family friendly fast food with a low customer rating . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is located outside the city centre and has low budget menu items . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a moderately priced coffee shop and Indian eatery . Located in the city centre , near The Portland Arms . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman sells sushi at low prices . It is not family - friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop with Italian food located in the city centre . They have a high price range and a customer rating 1 out of 5 . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : city centre||If you are looking for a City Centre restaurant you could try The Golden Palace \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located right next to Café Rouge . It is in the mid level price range . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge 5 out of 5 peoples says is a good place with a prices more than £ 30 \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn and has high ratings for good prices . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , located riverside near Yippee Noodle Bar , offers Chinese food for a moderate price range and is rated 3 out 5 by customers . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||There is a fast food restaurant named Loch Fyne that is not children friendly and prices range less than £ 20 . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a cheap , family friendly , coffee shop that serves Italian food . It has a low customer rating . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||In the city center is a pub named The Olive Grove serving Japanese food . The Olive grove is in the high price range and is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||At Fitzbillies our 5 out of 5 rating and cheap prices are hard to beat . It is coffee shop , where you can also dine on French food . Located at city center its a great place to take the whole family . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||There is a coffee shop with low customer rating Clowns . They serve fast food and they are in riverside near Clare Hall . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||The Green Man , an All Bar One pub offers mid - priced oriental style food on the outskirts of the City Centre \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge in riverside is The Golden Curry with an average customer rating . They serve Japanese food and are not family - friendly . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Fast food service with a low customer rating near of Café Rouge \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||The Travellers Rest Beefeater is a child friendly restaurant . Food costs more than £ 30 . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The Waterman is a high - rated riverside gastro - pub serving English cuisine . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||Alimentum is a Japanese restaurant located in riverside with a price range of more than £ 30 that is not kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Located on the river near Café Rouge is the lowly rated , family friendly The Golden Curry which serves Japanese food . \nname : The Cambridge Blue | Type : pub | food : Indian | price : cheap | near : Café Brazil||The Cambridge Blue is an Indian pub with cheap prices , located near Café Brazil . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a restaurant located in the city centre near The Rice Boat . This has a low customer rating and a price range of more than £ 30 , it is also not child friendly . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||Zizzi is a pub that is rated one star and is not family friendly \nname : The Vaults | Type : restaurant | food : English||There is a restaurant called The Vaults that has English food . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||In riverside , near Café Rouge , there is an Italian restaurant called The Golden Curry . It is not family - friendly , and it has a low customer rating . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : no||A non - children - friendly pub named Cocum has a high customer rating . The price range is around 20 - 25 pounds . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||Wildwood is a 3 - star pub that offers a wide selection of pasta dishes . Their prices are competitive . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an fairly priced , very highly favored British restaurant that is located north of the city center . with a view of the river . Great for families staying at the nearby Express by Holiday Inn . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly French place . It has a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : no||Loch Fyne is a restaurant offering Chinese food with a moderate price range and is kids friendly . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Near Clare Hall The Bibimbap House is higher end price wise for food and wine \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||There is a low - cost , 1 star pub named Wildwood . The menu includes Italian dishes . \nname : The Phoenix | food : English | customer rating : average | area : riverside||The averagely rated The Phoenix offers English food in the riverside area . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is Fast food restaurant near All Bar One in Riverside . It is moderately priced an is kid - friendly . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman provides Chinese food in the high price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : no||There is a non children friendly English restaurant with a high customer rating and a price range of more than 30 euros named The Wrestlers . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter is a Japanese restaurant with a price range of more than £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry is a restaurant that is rated one star , is not family - friendly , and serves fast - food . \nname : Fitzbillies | food : Chinese | price : £ 20 - 25 | near : The Six Bells||Medium priced Chinese food is available in The Six Bells area at Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a adult coffee shop serves fast food has high price range and a customer rating of 1 out of 5 and is in the city centre . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||City Centre 's one star pub , The Waterman , is located along the river on the north side of town . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is a highly rated Indian pub that is also kid friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : no||Alimentum serves expensive French food . Being a riverside venue it is not child friendly . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : no||By the riverside , Alimentum offer moderate priced Italian meals . Unfortunately kids are not permitted . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes||There is an average Indian coffee shop by the riverside that is child friendly and named Aromi . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , The Rice Boat has high prices with a customer rating of 3 out of 5 \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||There is a high priced coffee shop The Golden Palace , serves Italian food and has an average customer rating located in the riverside area \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a five star restaurant located near Café Rouge that had whine and cheese platters \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a French restaurant located in Riverside near Café Rouge . It is not family - friendly and has a low customer rating . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||By Clare Hall is Bibimbap House which serves expensive noodles . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||Zizzi is a pub that provide French food . The customer rating is low and is not family - friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : no||The coffee shop Aromi which provides fast food is located in city centre . It has a low customer rating and is not family - friendly . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : city centre||Located in the centre of the city is the fast food restaurant Blue Spice with a price range of less than £ 20 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is in the riverside area near Clare Hall with a 3 out of 5 customer rating for an Indian coffee Shop . \nname : Bibimbap House | food : Chinese | price : cheap | area : riverside | near : Clare Hall||Near Clare Hall in riverside is a cheap Chinese restaurant called Bibimbap House . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi , which gets a 5 star rating , is an Italian coffee shop . It is not family - friendly and is near the riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving moderately - priced Italian food , located in the city centre near Burger King . It is kid friendly , and has received 3 out of 5 star reviews \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Rated 5 out of 5 by customers , Fitzbillies Indian coffee shop in the city centre is cheap and not family friendly . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub serving Japanese food with a moderate price range . It is based in the city centre and is not child friendly . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Family friendly and cheap restaurant includes Fitzbillies near Express by Holiday Inn with an average customer rating . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||if you want a good coffee just go to Blue Spice coffee shop near to Avalon . it is family friendly area riverside \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an Italian coffee shop located in the riverside area . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a cheap pub located on the river . This restaurant is not family - friendly . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant located just near The Bakers . It is middle price range and family oriented . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice is a moderate priced restaurant in the riverside area serving Italian food . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies , is a coffee shop offering low priced great tasting food and beverages . \nname : Zizzi | Type : restaurant | price : moderate | area : riverside||There is a moderately priced restaurant in riverside called Zizzi . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns is child friendly with 20 - 25 euro price range . Located near Café Sicilia . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry has Italian food available but is not family - friendly . This establishment is located near The Bakers and has a price range of less then 20 euros . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||In riverside , The Golden Palace is a pub with moderately priced food and is near the Rainbow Vegetarian Café . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||The coffee shop of Fast Food called coffee shop Cotto has high prices and an average customer rating . It is located in the riverside near to The Portland Arms . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum serves Chinese food for over £ 30 . It 's highly rated , and is by the river , near Yippee Noodle Bar . \nname : Browns Cambridge | food : Chinese | price : cheap | customer rating : 5 out of 5||Browns Cambridge has Chinese food . It is cheap and has a 5 out of 5 customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a nearby high - rating kids friendly French coffee shop . It is located in Riverside , near the Crowne Plaza Hotel . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : city centre||The Waterman pub serves fast food in the city centre , with low customer satisfaction . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a Fast food restaurant located in the city centre . It has a average customer rating and is child friendly . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||£ 20 - 25 dishes . The Taste of Cambridge restaurant . Customer Rating : 3 of 5 . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||If you want a well - rated spaghetti washed down with a glass of wine , try Browns Cambridge . It 's located in a busy part of town and moderately priced . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : high||The Dumpling Tree is a restaurant providing Chinese food in the high price range . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a Chinese restaurant with a high customer rating that is located Riverside and is Children Friendly \nname : Fitzbillies | food : Chinese | price : more than £ 30 | near : The Six Bells||Fitzbillies is an expensive Chinese restaurant near The Six Bells . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a mid range priced restaurant with a three star rating , near the Yippee Noodle Bar . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||Try The Phoenix for 3 star rated food . Medium pricing . Located on the river \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is near Burger King . It is a coffee shop that serves Indian food and is child friendly \nname : The Cambridge Blue | Type : pub | food : French | price : moderate | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil . It serves French food and the price range is moderate . \nname : The Eagle | food : Japanese | customer rating : low||A Japanese restaurant called The Eagle is low . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kids friendly pub located near Ranch and has a customer rating of 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||The family friendly coffee shop , Giraffe , has an average customer rating with a price range of less than £ 20 . You can find it near The Bakers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is a family friendly sushi restaurant . It 's located near Burger King . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman serves English food in the city centre their price range is high and their customer rating is 1 out of 5 but but children are welcome . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is children friendly and serves Italian food \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is average . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no||Giraffe is not a family - friendly fast food pub the city centre . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||English food and children friendly The Rice Boat with a high customer rating is in the city centre near the Express by Holiday Inn . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||There is a Japanese eatery called The Phoenix in the city centre . It has a high customer rating and their price range is £ 20 - 25 . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||For an English meal under £ 20 in a family unfriendly setting , visit The Wrestlers if you don 't mind low ratings . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is situated near Café Rouge . It sells Sushi and is 5 stars . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a high customer rated coffee shop The Cricketers located near The Portland Arms that provides Italian food . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||The Dumpling Tree is a moderately priced English restaurant . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||I give The Golden Curry near Café Rouge a 3 out of 5 . Family friendly English restaurant near riverside . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Family friendly , one star coffee shop Aromi is located in the riverside area and serves sushi . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||You will find moderate prices and Italian food at the kid friendly The Vaults . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | near : Clare Hall||Clowns is a Japanese riverside coffee ship . With a high customer rating , you already know you 'll enjoy it . Located near Clare Hall . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||Wildwood pub is a must when visiting the area . They serve breakfast and are highly recommended by all its ' customers . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a high priced kid friendly Japanese restaurant in riverside near All Bar One . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A coffee shop near Burger King in the city center called The Eagle serves Italian food . It is rated low , not child friendly and priced high . \nname : Blue Spice | food : English | price : high | area : city centre||Blue Spice is a highly priced English restaurant in the city centre . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : no||An Italian restaurant called Loch Fyne has a high price range and is not children friendly . \nname : The Twenty Two | food : Chinese | family friendly : no||The Twenty Two is a Chinese food restaurant that is not family friendly . \nname : The Phoenix | food : French | customer rating : average | area : city centre||The Phoenix is a French restaurant located within the city centre . The Phoenix garners average customer reviews . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a one star moderately - priced restaurant called Alimentum located near Yippee Noodle Bar . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is 5 out of 5 . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough Pub provides British food in the low price range , located near Café Rouge . Families are not permitted in the premises . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : The Rice Boat||There is a kid friendly , highly rated restaurant located in the city centre area near The Rice Boat called The Twenty Two . Price range for this restaurant will be about £ 20 - 25 . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||There is a riverside Travellers Rest Beefeater located near Café Adriatic . The price range is high and customers rate it 1 out of 5 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||A kid friendly French restaurant located near the riverside and near The Sorrento is Browns Cambridge . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi 's pub welcomes families , serves food and has a 3 star rating . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||Riverside area restaurant The Rice Boat has high customer ratings , children friendly and serves Indian food . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||There is a kid friendly pub called The Cricketers near Ranch . It has a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Looking for a cheap place to eat with the family , visit Fitzbillies , located in the city centre . 5 out of 5 rated , great food , great service . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : no | near : Express by Holiday Inn||If you are searching for a not children friendly place to go near Express by Holiday Inn , Fitzbillies might be the place to go . The menu is in average £ 30 and over . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no||The Olive Grove is a moderate priced pub serving Indian foods in the city center is not kid friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne is a friendly restaurant that offers cheap Chinese food . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||Looking for a kid - friendly , moderately priced French eatery - look for The Golden Curry near The Bakers . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||Around The Rice Boat is the high rated , kid friendly restaurant with a price range between £ 20 - 25 called The Twenty Two . \nname : The Phoenix | food : Japanese | customer rating : average | area : riverside||The Phoenix is a 3 star restaurant located near the river . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi is a kids friendly pub located in Riverside that has high customer ratings . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : yes||Loch Fyne is a kid friendly Indian restaurant with a higher price range . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Children friendly Japanese restaurant Browns Cambridge is located riverside near The Sorrento . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||Visit The Punter , a family friendly burger and coffee shop with a fair price near Café Sicilia . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is a family friendly business offering Indian cuisine . This establishment received an AVERAGE customer rating . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There 's The Waterman which does English food . It 's child friendly and has high customer ratings . The prices are typically between £ 20 - 25 . It 's down by the riverside . \nname : The Eagle | food : French | customer rating : 5 out of 5||Down Glisson Road lies The Eagle , a restaurant known by many as a fine winery that also offers cheese and fondue samples to match the wine they provide , and today they are celebrating the summer solstice . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||In the riverside area near Burger King is a low - cost coffee shop named The Eagle . It serves Fast food catered towards adults and rates 5 out of 5 . \nname : Blue Spice | food : Fast food | price : cheap | area : riverside||There is a cheap Fast food place in riverside called Blue Spice . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||Cocum restaurant is not child friendly and is ranked as 1 - star . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||If your looking for a pub that cost less than £ 20 , then The Vaults is your place . It is located near Café Adriatic . However the customer rating is low . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||If you want a Japanese food experience for the family , try The Waterman near Crown Plaza Hotel . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : riverside||The Waterman is an English pub in the area of riverside with a low customer rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||In the riverside area is a fast food pub called The Olive Grove that has a high price range but is child friendly . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : low||The Cambridge Blue is a restaurant in the low price range , placed close to the university . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||Kids can eat at The Golden Curry . The Golden City is a Japanese restaurant . Customers rate The Golden Curry 1 out of 5 . \nname : The Twenty Two | food : French | family friendly : no||There is a dine in restaurant The Twenty Two . It is not family friendly . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||For an Italian place that is children friendly and has a high customer rating , try The Golden Curry . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : no||Serving Italian food , Zizzi is a pub with a customer rating of 5 out of 5 . It is not family - friendly . \nname : Cotto | food : Fast food | customer rating : low | family friendly : yes | near : Ranch||Cotto is a low - ratings and they located near Ranch . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi is a children friendly pub that serves English food and an average customer rating . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||There is a cheap The Twenty Two located in the riverside near The Rice Boat . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is an Italian coffee shop . It is located near to The Portland Arms and has a high customer rating . Children are welcomed . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kids - friendly pub close to the Ranch with a customer rating 1 out of 5 \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies , near Express by Holiday Inn , has low ratings . It is not for children and costs more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : cheap | family friendly : yes||There is a cheap Chinese restaurant that is family friendly named Loch Fyne . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is an expensive family place next to Express by Holiday Inn . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop near Burger King , Riverside . They serve fast food , with high pricing . They aren 't child friendly and have a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : cheap||A cheap restaurant that serves Indian food is The Dumpling Tree . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||Wildwood has a high customer . Its a Italian pub that 's cheap . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is a family friendly Indian food restaurant with an average rating . \nname : Fitzbillies | food : Indian | price : £ 20 - 25 | near : The Six Bells||Located near The Six Bells , the Fitzbillies is an Indian restaurant with a price range between £ 20 - 25 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , The Wrestlers , is an Indian food serving coffee shop . It is a moderate price , family friendly riverside establishment . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||For a family friendly Chinese food pub less than £ 20 , try The Olive Grove in the riverside area . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi coffee shop near Chesterton Road offers fruit , wine , and cheese . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||There is a pub called The Twenty Two in Riverside near Café Sicilia that the customers have rated average . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a moderately priced Chinese in the city centre near to Express by Holiday Inn called The Rice Boat . It has a low customer rating but is kids friendly . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : no||Find a restaurant serving Indian food , The Golden Curry with a rating of 5 out of 5 , for my family . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : city centre||The pub named Clowns has a 5 out of 5 customer rating and a cheap price range located in the city centre area . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a reasonably cheap priced , family friendly fast food restaurant in Riverside area near All Bar One . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no||A non child friendly Chinese pub with high prices near city centre is The Olive Grove . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is an expensive Italian place near Rainbow Vegetarian Café called Strada . It 's child friendly , but gets average ratings . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||In City centre , near All Bar One , there is a Japanese restaurant named Green Man . It 's family friendly and the price is average . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is an Indian restaurant with 3 out of 5 customer rating \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a cheap Italian restaurant near Yippee Noodle Bar in the riverside area , called Alimentum that customers rate 5 out of 5 . \nname : Bibimbap House | food : Indian | price : high | area : riverside | near : Clare Hall||Bibimbap House is a high priced Indian place near Clare Hall in Riverside . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly French restaurant in the city centre with a low rating and slightly higher than average price range . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Located on the riverside , near The Portland Arms , Cotto is a high priced coffee shop that offers Italian food . It has a 1 of 5 customer rating . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Waterman is a Japanese pub in the riverside area with a customer rating of 5 out of 5 . \nname : Green Man | price : moderate | area : city centre | family friendly : yes||Green Man is kid friendly city centre in moderate price range . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Come to Giraffe . A family friendly coffee shop with an average customer rating located near The Bakers . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : 1 out of 5||Wildwood is a pub that serves fast food . It is in the high - price range and has one star . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a children friendly Italian coffee shop located in riverside near Burger King . The prices are on the high end with a 1 out of 5 customer rating . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||There is a restaurant at riverside near Yippee Noodle Bar , Alimentum that serves Indian food with a price range of £ 20- £ 25 . It has a high customer rating . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||The Eagle is rated average and located by Riverside . Their menu prices are cheap . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||Located in The Portland Arms , The Cricketers coffee Shop , is the place to go for sushi and coffee . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A moderately priced coffee shop that is child friendly and serves Italian food , is Cocum , it gets lower ratings by customers . \nname : Cotto | food : French | near : Café Rouge||French food is served at Cotto near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a high rated coffee shop serving average - priced Indian food , located in the city centre . \nname : Blue Spice | food : Indian | price : less than £ 20 | area : riverside||Blue Spice provides Indian food in the less than £ 20 price range . It is located in the riverside . \nname : Strada | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is Strada , which serves Indian food with a price range of more than 30 . It has a high customer rating , and is kid friendly . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||no children catered for , The Waterman , serves Japanese cuisine , located near the city centre has a moderate price list but 1 out of 5 foe customer reviews . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a cheap family friendly Café with average ratings in the riverside area near The Rice Boat . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||In city centre near The Portland Arms , is the coffee shop Cotto . Cotto features an average - priced menu that receives 5 out of 5 stars from customers . The coffee shop serves Japanese food . \nname : Alimentum | food : Chinese | price : cheap | area : riverside | family friendly : yes||For cheap Chinese food in the riverside area , Alimentum is a great family friendly option . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Green Man is a non kids - friendly restaurant at a moderate price range located in the riverside area . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix serves English food and is in the city centre . It moderate priced and has a rating of 1 out of 5 \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Affordable , and with a customer rating of 5 out of 5 , Cotto is a fast food , coffee shop located in the city centre area close to The Portland Arms . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is an average priced Japanese restaurant . It is kid friendly with a rating of 3 out of 5 . Located in the city centre . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : no||The Rice Boat close to the city centre serves Fast food although does not cater for children has a customer review of average . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : average | near : Ranch||Wildwood , a coffee shop located near Ranch , offers Indian food with a high price range . Customers have rated it as average \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne serves English food , it has a high customer rating and is located in riverside near The Rice Boat \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves cheap Italian food in the city centre near Express by Holiday Inn . Families are welcome but it has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a Japanese coffee shop . It is located near the city centre and has moderate pricing . The customer rating is 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a riverside coffee shop with a price range of £ 20- £ 25 , but don 't let that scare you away . We 're located near the Café Brazil and have a customer rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food . It is located in Riverside . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||With a moderate cost , Giraffe coffee shop is family friendly . They have a 3 out of 5 star rating and are located near The Bakers . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | near : Clare Hall||Clowns has an average customer rating and is a coffee shop serving Japanese food . It is in the city centre area near Clare Hall . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop serves Chinese cuisine at reasonable prices . Families welcome . Near Burger King . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop in the riverside area near the Crowne Plaza Hotel called Browns Cambridge . It is family friendly as had a customer rating of 5 out of 5 . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is a family friendly restaurant in the low price range . It has been highly rated by customers . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a highly rated French restaurant with prices ranging more than £ 30 . It has been rated 5 out of 5 by customers , and is not child friendly . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes||There is a high priced pub in the Riverside area called The Olive Grove that serves Chinese food and is child friendly . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers offers cheap Japanese food , with a high rating . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||There is a place called The Rice Boat , it 's of high price , but average customer rating near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , in the riverside area near Express by Holiday Inn , is an average , moderately priced , non - family - friendly English restaurant . \nname : The Eagle | food : Chinese | customer rating : average||The Chinese restaurant , The Eagle , has an average customer rating . \nname : The Twenty Two | food : Italian | family friendly : no||The Twenty Two is an Italian venue which is not family - friendly . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has a high customer raring , it serves Italian food and is located near Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is in the city centre with Italian food . It is a coffee shop with moderate price range with a customer rating 3 out 5 . \nname : Zizzi | Type : pub | food : Italian | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub serving Italian food . It welcomes children and has a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food at more than £ 30 . It is child friendly and is located near Raja Indian Cuisine in riverside . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||Loch Fyne is kid friendly . It is a restaurant that serves French food . The price range is cheap . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia on the riverside is a coffee shop named The Dumpling Tree . It 's family friendly with a moderate price range . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop that also serves Indian Food . It is located in the city centre near The Sorrento and is expensive . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : yes | near : All Bar One||Located near All Bar One , Green Man is a child friendly high prices Chinese restaurant . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is located by Yippee Noodle Bar . It is a poorly rated pub that serves Japanese . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Near The Six Bells is the kid friendly place The Golden Curry . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman serves fast food and is located near the Crowne Plaza Hotel . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is located in the riverside area . It offers food in the over £ 30 range and is near Café Adriatic with a high customer rating . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman in riverside is child friendly and serves Fast food in the high price range and has a customer rating 1 out of 5 \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||kids friendly pub The Dumpling Tree with Italian food near to The Portland Arms . \nname : Clowns | price : less than £ 20 | family friendly : yes | near : Café Sicilia||Clowns is a family Friendly restaurant near Café Sicilia with a price range of less than L20 . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is an English restaurant reserving at the riverside with a starring of 1 out of 5 , children are welcome too . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||The Cambridge Blue , a pub with food less than £ 20 , is located near the Café Brazil . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre , the restaurant Blue Spice is not family - friendly but is cheap and has been rated 5 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a child friendly restaurant near Express by Holiday Inn . It is in the high price range with a low customer rating . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||family friendly and with moderate ratings selling Japanese food is The Golden Curry \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant in the center of the city near a Yippee Noodle Bar , its customer rating is a 5 out of 5 . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||Located in city centre is an average Japanese restaurant called The Phoenix . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a child friendly restaurant , which serves English food . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Japanese food , with a price range of less than £ 20 at a non family - friendly restaurant located in Riverside called Alimentum . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a Japanese , family friendly coffee shop in Riverside near Raja Indian Cuisine called The Wrestlers and is moderately priced . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre near the Crowne Plaza Hotel is Browns Cambridge coffee shop which serves Japanese food . It has an average customer rating and is not family - friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : city centre||The Waterman pub in the city centre has a customer rating of 5 out of 5 and has Italian food . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a low - priced restaurant in the city centre that delivers take - away . \nname : Bibimbap House | food : Indian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House serves Indian food for mid - range prices located by the river near Clare Hall . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop . it also serves Indian food . It has moderate prices . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing take - away deliveries in the moderate price range . It is located in the riverside . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat , providing 1 star family friendly Oriental food close to the city centre . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop providing food and drink in the moderate price range . It is located near The Bakers , is child - friendly and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop which provides Indian food in the high price range . It is located in the city centre . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||Near Café Brazil and at the riverside is the coffee shop , The Vaults . It is rated highly by customers , but its prices range over £ 30 . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : yes||Alimentum is sited on the riverside and serves Chinese food . They have a moderate price range and they are kid friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a a highly rated coffee shop that provides fast food . this child friendly shop provides delicious fast food with a price range of £ 30 \nname : The Mill | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop that features average priced Japanese food . It is located in the riverside near The Sorrento . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||There 's a coffee shop by the riverside , which serves Japanese food . It 's called Clowns and is near Clare Hall . It has a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Aromi is a riverside area coffee shop with Italian food and a family friendly vibe . It is rated low by customers . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||Wildwood serves up classic American comfort food at a cut above the rest . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||There is a coffee shop called Giraffe near The Bakers . The prices are more than £ 30 and it is rated 5 out of 5 . It is children friendly . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||The Golden Curry has a 1 - star rating and is a British restaurant not suited for families . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a highly customer rated French restaurant and coffee shop located in the city centre . The cost is in the average price range . \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||By Riverside in Clare Hall is Bibimbap House which is French more than £ 30 . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located in the riverside area near the Crowne Plaza Hotel , Taste of Cambridge offers Indian food and a coffee shop . It is not family friendly . \nname : The Mill | Type : pub | food : Japanese | price : high | area : riverside||The Mill a Japanese pub has high price food in riverside . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : riverside | family friendly : no||The Olive Grove is a moderately priced , riverside Italian pub , which is not kid friendly . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : riverside||On the riverside there is an Indian restaurant called The Phoenix , it is very good and has a 5 out of 5 rating \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a moderate Chinese restaurant in the city centre . Rating 1 out of 5 and kids friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly coffee shop in the city centre near Raja Indian Cuisine . It serves French food and is in the price range of less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a Fast food restaurant and coffee shop in riverside area with an average price range of £ 20 - 25 . It has a high customer satisfaction rating , and is not kids - friendly . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is an English restaurant that is considered family - friendly with a customer rating of 5 out of 5 . It can be found near Café Rouge in the city centre area . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : cheap | family friendly : yes||There is a cheap fast food restaurant named Loch Fyne , that is family friendly . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a child friendly coffee shop serving French food . It has a 3 out of 5 customer rating and is in the high price range . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located in the city centre near Express by Holiday Inn , The Rice Boat is a family friendly Italian restaurant . It is low priced and has a three of five star rating . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Japanese food . It is located in riverside near Express by Holiday Inn . It is in the moderate price range , has a customer rating 1 out of 5 , and is not kids friendly . \nname : The Punter | food : Japanese | price : less than £ 20||A Japanese food place whose price range is less that 20 is The Punter \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Located near All Bar One along the riverside is The Green Man , a Fast food venue , with a child friendly atmosphere and a high price range . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||Wildwood is a pub featuring Italian foods . \nname : The Punter | food : Indian | price : moderate||The Punter is a moderately priced Indian restaurant . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a children friendly Fast food place near Crowne Plaza Hotel . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||Located on the river , close to the city centre , The Mill is a mid - priced pub \nname : Alimentum | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a kids friendly venue offering English food on the riverside . Price rang is about average \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves cheap Indian food with a rating of 5 out of 5 . Located in riverside near the Express by Holiday Inn , it is not kid friendly however . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a kids - friendly coffee shop called Zizzi in the riverside area that has moderate prices and a three out of five customer rating . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly Italian pub . The Italian pub is near The Portland Arms . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||Near Café Rouge is a kids friendly fast food pub that is priced moderately . It is called The Plough . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King in riverside there is a French food place called The Eagle . Customers give it a 5 out of 5 rating its a coffee shop that is kid friend . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a restaurant located in the area of riverside . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an Indian restaurant with a price range of more that 30 pounds in the city centre called The Rice Boat . It has a high customer rating but not children friendly . It is near Express by Holiday Inn . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||A family friendly riverside fast food joint is The Twenty Two . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||With a 5 out of 5 customer rating , and cheap Japanese food , visit Wildwood pub . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a kids friendly Italian place that is inexpensive , that is in Riverside and high rated by its customers . \nname : The Vaults | Type : restaurant | food : Italian||Italian meals are being served at The Vaults restaurant . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a friendly for kids pub named The Dumpling Tree and it is located near to The Portland Arms . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a restaurant serving French cuisine located in the city centre ; however , it has low customer ratings and is not family - friendly . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the city centre . It is near Clare Hall . Its customer rating is 5 out of 5 . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||A restaurant in the city centre area , near Express by Holiday Inn , is called The Rice Boat and is known for its English food , high price range , and average customer rating . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap British restaurant close to The Bakers . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||The Blue Spice is a great 5 out of 5 stars restaurant near Avalon which is for Adults and not children located in the city centre . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman serves Fast food for less than £ 20 . It is located in the city center and it is not family - friendly . The Waterman has low customer ratings . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||coffee shop Wildwood has a very good reputation . near Ranch . It offers French food \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi coffee shop is a High - priced restaurant in the city centre close to a river that is spacious for families . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||Gastropub Wildwood serving English food with an average customer rating \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn in riverside . Their prices are high and they have an average rating . They appear to not be kid friendly and serve only Fast food . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||The Taste of Cambridge is a pub which is located near The Sorrento in the riverside area . It is child friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms . The Cricketers offers children friendly atmosphere and customers rating it 3 out of 5 . It offers Japanese food in children friendly coffee shop . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a Japanese restaurant located near Express by Holiday Inn in the riverside area . The Rice Boat features average - priced food and is rated highly . It is not a kid friendly establishment . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||In the riverside area , The Golden Palace is a highly rated coffee shop . It serves Italian food in the 20 to 25 pounds price range . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crown Plaza Hotel is a family coffee shop restaurant called Browns Cambridge . It is near the city centre and has poor ratings . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop serving Indian , in a price range of £ 20 - 25 . Customer rating is high and it is kid friendly . It is located in the city centre . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man restaurant has Chinese and is kids friendly . It is in the city centre near All Bar One and a moderate price range . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves Chinese food . It is children friendly and is situated near the Crowne Plaza Hotel \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The pub called The Dumpling Tree is family friendly and provides English food and is located near The Portland Arms . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||An English restaurant named The Wrestlers is child - friendly , with a high customer rating and offers meals ranging in the more than £ 30 price range . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue has a 5 out of 5 customer rating and is a French restaurant . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no||Situated in the city centre is a pub called the Giraffe . It sells French food and is not suitable for families . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter near Café Sicilia is a family friendly , has 5 out of 5 stars , coffee shop that serves Indian food that is cheap . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Japanese food in the city centre near Burger King . It has a high customer rating of 5 out of 5 , and a price range of more than £ 30 and is not child friendly . \nname : The Vaults | Type : restaurant | food : Fast food||The Vaults restaurant serves fast food . \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||There is a cheap coffee shop , The Punter , located near Café Sicilia that provides fast food . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers with a rating of 5 out of 5 is a coffee shop serving Japanese food in a children - friendly environment located near The Portland Arms . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : no||The Rice Boat serves Indian food in the city centre . It has a low customer rating and is not family friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle serves Italian food in the city centre near Burger King . This adults only coffee shop has a moderate price range and a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||Expensive and lowly rated , The Punter is a family - friendly coffee shop a short distance from Café Sicilia . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : no||Loch Fyne is not child friendly . They are a fast food restaurant that is the price range of more than 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Near the riverside is fast food coffee shop Fitzbillies . It isn 't child friendly but is highly priced and highly rated . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , located near The Rice Boat in riverside , has a high customer rating , is child Friendly , and has a price range of more than £ 30 . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Near Café Rouge there is a restaurant named Wildwood and it is rated 3 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : cheap||For a cheap Fast food restaurant , try The Dumpling Tree . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving Indian food at a price range of over £ 30 . It has a high customer rating . It is located near the city center and is not child - friendly . \nname : The Eagle | food : Italian | customer rating : average||Customer rating for The Eagle Italian food is average . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||Located near Café Sicilia on the riverside , The Dumpling Tree is a family friendly coffee shop . The Dumpling Tree 's prices are lower than 20 . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||In the riverside area there is a moderately priced , 1 star restaurant named The Eagle . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar there is a place that serves English food called Alimentum with a cheap price range . It is in riverside and it has a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||A children friendly English pub , Zizzi has a customer rating of 1 out of 5 . \nname : Cotto | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , Cotto a highly unrecommended family establishment serves Japanese food . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||Wildwood is a pub which is less than £ 20 and have English food and customer rating is low . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||The restaurant named Loch Fyne is a Japanese restaurant that is child friendly with a moderate price range . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located near the town centre and Raja Indian Cuisine , The Wrestlers coffee shop served moderately priced Indian dishes in a child - free environment . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Fast food type restaurant in the riverside area located near The Rice Boat . It is well reviewed place 5 Stars \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum has an average customer rating and a high price range . It is located in the riverside area near the Yippee Noodle Bar . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant in riverside has a high customer rating that serves Italian food an is kid friendly in the £ 20 - 25 price range near the Express by Holiday Inn . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||There is an expensive dine in restaurant near The Six Bells called Fitzbillies . \nname : The Twenty Two | Type : pub | customer rating : 3 out of 5 | area : riverside | near : Café Sicilia||The Twenty Two is a pub near the riverside and Café Sicilia with 3 out of 5 stars . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop located at the riverside . The coffee shop offers French cuisine . The average customer rating is low . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||The Rice Boat , located in the riverside area , has a low customer rating but is adult oriented and serves fast food . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue is an average restaurant that serves Italian food . \nname : Strada | Type : pub | food : Indian | customer rating : average | near : Yippee Noodle Bar||The Yippee Noodle Bar sits near an averagely rated Indian pub known as Strada . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||A pub named Strada near Yippee Noodle Bar is low rated and serves Italian food . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a child friendly French venue , in the city centre and boasts a customer rating of 5 out of 5 \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : no||Loch Fyne is a restaurant providing Chinese food \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Rated 5 out of 5 , The family friendly coffee shop The Punter serves Fast food for cheap near Café Sicilia \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix provides Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : Japanese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a Japanese restaurant near The Bakers . It 's average priced and kid - friendly . \nname : Strada | Type : pub | food : Italian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||There 's a fairly good pub called Strada that serves Italian food . It 's close to Yippee Noodle Bar . \nname : Bibimbap House | food : Indian | price : cheap | area : riverside | near : Clare Hall||The place to get Indian food cheap is in Riverside , near Clare Hall and the name is Bibimbap House . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Right by the river and Café Rouge is a nice burger place called The Golden Curry . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In riverside there is a child friendly coffee shop called Zizzi which has a moderate price range of more than £ 30 and a 5 out of 5 rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near the Burger King in City centre , you will find a coffee shop called The Eagle . This moderately priced coffee shop is great for families . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||Located near Café Sicilia in the riverside area , The Dumpling Tree is a children - friendly coffee shop with prices over £ 30 . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Selling French food , The Eagle is a kid friendly French coffee shop in the city centre near Burger King \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||There is a family friendly restaurant in the medium price range called The Vaults . It 's located south of the center . of the city . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man serves English food , has a cheap price range , and is family friendly . It is located in the riverside area near All Bar One . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is a high priced Italian restaurant located in the city centre . It has an average customer rating and is not children friendly . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Phoenix was given a 3 out of 5 customer rating for Fast food places near riverside . \nname : The Vaults | food : Indian | price : more than £ 30 | family friendly : yes||The Vaults provides higher priced Indian food in a kid friendly environment . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : no | near : All Bar One||There is a French restaurant near All Bar One in the center of the city named Green man . It has a moderate price range , but is not kid friendly . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves Japanese food and is located near to The Rice Boat at the riverside . Average customer ratings are 3 out of 5 . \nname : The Mill | Type : pub | food : Chinese | price : cheap | area : riverside||Located in riverside , The Mill has Chinese food at low costs . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop restaurant with Italian food with moderate price range . It is not kid - friendly with a customer rating 1 out of 5 . It is located in the city centre near Burger King . \nname : The Golden Curry | food : Indian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a kid Friendly Indian near The Bakers with a low price range \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry Indian restaurant , near Café Rouge , is by the river , not family friendly and has a 5 out of 5 customer rating . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice , located in the city centre has a price range of more than £ 30 , but has a 5 out of 5 rating , and is kid friendly . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a not children friendly restaurant . It is located near of Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Enjoy at this coffee Shop . Not Child - friendly . At City Centre called Fitzbillies , with a high customer rating . The Price Range is more than £ 30 . Italian . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a highly rated adult only Chinese restaurant that has a price range of 20 - 25 euro 's . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Located near The Bakers , The Giraffe is a kid Friendly coffee shop offering a moderate price range and a customer rating of 3 out of 5 . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a pub with a 5 out of 5 children rating . it is located in riverside and is children friendly . \nname : Blue Spice | price : moderate | area : city centre||Blue Spice is moderately priced and is located in city centre . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||There is a kid friendly pub called Zizzi that serves Japanese food . It has a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||Zizzi is a family friendly coffee shop in riverside , with a average customer rating and a cheap price range . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum provides Chinese food in the less than £ 20 price range . It is located in the riverside . \nname : Blue Spice | food : Indian | price : high | area : riverside||Located in riverside is Blue Spice that serves expensive price for their Indian food . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high rated Chinese restaurant near Express by Holiday Inn in Riverside . It is mid priced and kid friendly . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||Located close to Café Rouge , The Plough Pub is for adults only and serves wine , cheese and antipasto . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The moderately priced Indian coffee shop , Fitzbillies , is located in riverside . It has a rating of 1 out of 5 and it kid friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub that sells Italian food , near The Portland Arms \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly restaurant that has a 3 out of 5 customer rating \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree restaurant serves Japanese food for less than £ 20 . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||Although not family - friendly , for cheap food , try The Wrestlers . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||The price range for Cotto , the Japanese coffee shop with low ratings , is less than £ 20 . It is located in the city centre , near The Portland Arms . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||For a restaurant with a customer rating of 3 out of 5 , try The Cambridge Blue . \nname : Bibimbap House | food : Indian | price : cheap | area : riverside | near : Clare Hall||Bibimbap House has cheap Indian food in Riverside , it 's located near Clare Hall . \nname : The Punter | food : French | price : high||The Punter is a French eatery with a high price range . \nname : Loch Fyne | food : French | customer rating : high | area : riverside | near : The Rice Boat||riverside has high customer ratings and they have French food near Loch Fyne on The Rice Boat . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue , is a pub near Café Brazil that provides French food ranging in price of £ 20 - 25 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a Japanese coffee shop with a customer rating of 5 out of 5 near Ranch and is cheap . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap , English , family - friendly restaurant located at the riverside . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe is a restaurant near The Six Bells that sells cheap food \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly French restaurant located near Express by Holiday Inn . It is in the £ 20 - £ 25 price range and has a customer rating of 3 out of 5 \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Avalon||For a kid friendly , moderately priced coffee shop in city centre near Avalon try Blue Spice . It has a 1 out of 5 rating . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Customer rating are average at Midsummer House . It serves Italian food and is near Café Rouge . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : city centre||The Waterman is a pub that provides fast food in the city centre \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||Located near Burger King in the city center , The Eagle is a moderately priced Italian coffee shop , with a 1 out of 5 customer rating , and not child friendly . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto a coffee shop which offers Indian food has a price range of 20 - 25 . Its customer rating is high . It is located in city centre near The Portland Arms \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant providing English foods in moderate price range . This restaurant is located in city centre and near Express by Holiday Inn . This restaurant has 1 star rating out of 5 . It is not kids - friendly . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kids friendly coffee shop with a price range of £ 20 - 25 and a customer rating of high this place is located in riverside near Avalon . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||A high rated pub called The Twenty Two is located near Café Sicilia in riverside . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove offer drinks at a high price . They are a family friendly pub . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a French coffee shop located near the Burger King in the city centre . They have a high customer rating and their prices range between £ 20 - 25 but they are not children friendly . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : average||Wildwood has a customer ratings of average , prices at the English pub are high . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A French coffee shop with prices above £ 30 in the riverside area near Raja Indian Cuisine which isn 't child friendly is called The Wrestlers . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies is a store recently opened close to Rainbow Vegetarian Café . Their goods may are cheap and may vary between £ 20 - 25 . Compared to the town 's Prices . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located in the riverside area of Cambridge , near to the Crowne Plaza Hotel , is a coffee shop and fast food outlet called Browns Cambridge . It has a top customer rating of 5 out of 5 , but is not family - friendly . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is a highly - rated Chinese restaurant in Riverside . Meals will generally cost £ 30 or more . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a moderately priced coffee shop near The Portland Arms riverside , offering French cuisine . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a highly rated adult oriented , French style coffee shop , providing medium priced food . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : no | near : Ranch||The Cricketers pub has an average customer rating and is family - friendly . They are located near the Ranch . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a 1 star pub near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||A coffee shop called Fitzbillies is located in the city centre . It is children friendly with a high price range and average customer rating . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||There is a fast - food restaurant close the Crowne Plaza Hotel . It is called The Waterman and , best of all , it is child - friendly . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high price range French coffee shop in the riverside area near Burger King . It is child friendly and has a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : no||Located in the city centre , The Olive Grove is a moderately priced pub serving French Cuisine . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a children - friendly , perfectly rated French food restaurant with a price range of more than £ 30 and is located in the city centre near the Express by Holiday Inn , it is called The Rice Boat \nname : Loch Fyne | food : Indian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne sells Indian food . It has a low customer rating and is located near The Rice Boat , on the Riverside \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||If you 're looking for a children - free coffee shop , check out The Eagle . Located near the Burger King at the city centre . The Eagle offers Fast food ranging more than £ 30 . Rated high by customers . \nname : The Mill | Type : coffee shop | food : Japanese | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee Shop . It sell Japanese Food and have cheap price range . The Mill is located in the riverside area near The Sorrento \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is located near The Bakers and serves British food . It is low priced and is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : yes | near : The Portland Arms||There is a family friendly coffee shop that serves Indian food . It is called The Cricketers . It has low customer ratings but it is near The Portland Arms \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||There is an adult pub called The Plough with excellent seafood near Café Rouge . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant serving Chinese food in the £ 20 - 25 price range and has a high customer rating . It is located on the riverside near Yippee Noodle Bar . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||The Cambridge Blue pub is open for reasonably priced fast food . and is opposite Café Brazil . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop offering Indian food in the center of the city . It is family friendly and has a low customer rating . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||Wildwood coffee shop serves Fast food . Located near Ranch , its customer rating is average . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , near Crowne Plaza Hotel are children friendly and provide fast food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Riverside has a coffee shop with fast food that is kid friendly called Fitzbillies . It is moderately priced , and has a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is near The Portland Arms offering English food in a kid friendly pub . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is a cheap , poorly rated establishment . It is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a coffee shop named The Wrestlers located in the Riverside area near Raja Indian Cuisine . This is a kid friendly restaurant offering a variety of food at a low cost . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop that also serves French food . It is located in city centre and has a low customer rating . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located near Yippee Noodle Bar at the riverside , it serves English food . The customer rating is 1 out of 5 . The price range is high . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : yes||The Chinese food restaurant Loch Fyne offers moderately priced food and is kid friendly . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fast food restaurant with a moderate price range that is kid friendly and it is near the Rainbow Vegetarian Café . Customer rating is a 1 out of 5 . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||Located in Riverside is a kid - friendly French food place called The Twenty Two . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is an eatery with a price range less than £ 20 , located near Rainbow Vegetarian Café . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : no||In the town centre there is Alimentum , a medium rated Italian kitchen . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop providing Indian food in the moderate price range . It is near Ranch . Its customer rating is 1 out of 5 . \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||There is an English restaurant near Café Rouge called Midsummer House . It gets a low customer rating . \nname : The Vaults | food : English | price : moderate | family friendly : yes||Enjoy English food at kid friendly The Vaults today . We have a moderate price range . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a coffee shop near Café Sicilia . Settled in the area of riverside . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a high price , five star coffee shop located near Avalon . It features a family friendly environment . \nname : Midsummer House | food : Italian | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is located near All Bar One and serves Italian food . It is low priced and has a high rating of 5 out of 5 . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||If you are looking for a highly rated , child friendly English eating establishment , then come to The Waterman near the city centre . The price range is more than £ 30 . \nname : The Punter | food : Indian | price : moderate||At a moderate price range The Punter provides Indian food . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop offering Indian food at a moderate price range . The customers rate it 3 out of 5 and say its kid friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Located near the city centre , Zizzi is a low rated , children friendly coffee shop with price ranging more than L30 . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a kid friendly restaurant serving Japanese food . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is an inexpensive , family - friendly coffee shop with average customer ratings near The Bakers . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||With a cheap price range along the riverside , the coffee shop ' The Wrestlers ' is family friendly and serves Fast food Raja Indian Cuisine . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a mid - priced pub . It is located near the river . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||With a moderate price range , Bibimbap House serves Japanese food and is located in riverside near Clare Hall . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies is the place to come if you want the best Italian food , is near The Six Bells restaurant \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a family friendly establishment near to Express by Holiday Inn . It has an average customer rating and is priced below average . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no||A coffee shop named Cocum offers Fast Food with a cheap price range , with a average customer rating . There is no family area . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||Located in the riverside area , The Phoenix has a 5 out of 5 customer rating and serves French food . \nname : The Rice Boat | food : Japanese | area : riverside||With a riverside location , The Rice Boat provides tasty Japanese menu . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||There is a French restaurant Loch Fyne which is children - friendly . \nname : Browns Cambridge | food : Indian | price : more than £ 30 | customer rating : high||Browns Cambridge serves Indian food , they have a high customer rating . It costs more than £ 30 . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is an Italian place in Riverside with an average customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It provides Japanese food with a price range of £ 20 - 25 . It is kids friendly and it has a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||There is an expensive fast - food restaurant that sells burgers and fries . It is expensive , but it is rated five stars . The Wrestlers is family - friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||At Riverside , near Burger King , eat at a choice coffee Shop that isn 't kid - friendly , with a moderate price range called The Eagle . Customer rating : 3 out of 5 . Food : Italian . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||The Wildwood is a pub in the high price range . It has a five star rating . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||At the riverside and near Yippee Noodle Bar , the Alimentum offers mid - range priced English food . Customers rate it a 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Italian food , is located in the area of riverside . \nname : The Mill | Type : pub | food : Japanese | price : cheap | area : riverside||The Mill is a Japanese pub with a cheap price range and is by the riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop serving cheap Italian food in the city centre near Burger King . It has a low customer rating . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||Eat at The Vaults coffee shop near Café Brazil . It is located near riverside with a moderate price range . The customer rating is 1 out of 5 . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a high price range pub that serves pasta . It is located near Café Rouge . Public restrooms available . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a coffee shop with a low rating . They are expensive , but family friendly . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Near Café Rouge is a low - rated French restaurant called Midsummer House . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto , located near The Portland Arms , riverside , is a low rated coffee shop specialising in Japanese foods priced at more than £ 30 . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a Japanese restaurant , in Riverside near The Rice Boat has a customer Rating of 5 out of 5 . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge serves sushi . They have a 5 out of 5 customer rating and a high price . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Located by the riverside is the high rated The Waterman . Welcoming the whole family for more than £ 30 , by the riverside . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly coffee shop serving Japanese food . Located in Riverside , near the Crowne Plaza Hotel , this restaurant has earned a 3 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Located near The Portland Arms in the city centre , Cotto is a Japanese coffee shop with a low customer rating and a price range of more than £ 30 . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||Strada , a English pub by Yippee Noodle Bar is rated average . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||A below standard customer rated coffee shop , The Giraffe , is at least friendly and relatively inexpensive . Located near The Bakers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Near Burger King is located The Eagle . This can be found in the riverside area . The Eagle is a family friendly coffee shop with great prices and average customer service . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn in the riverside area , The Rice Boat is a child friendly establishment serving French food for mid range prices . It has a low customer rating . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a restaurant providing low price burger , fried and drink . It is located in the city next to All Bar One . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a moderate price range Japanese food pub located near Café Rouge . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||In the riverside area is a Japanese coffee shop named Aromi . It has a 5 out of 5 customer rating and is not family - friendly . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||There is an English food restaurant near the riverside called The Phoenix , which is inexpensive but has a high customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia is The Dumpling Tree , a coffee shop that is children friendly with a price range of more than £ 30 . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a mid range restaurant offering a good range of meal options . It is family friendly , and is located on the outskirts of the town , next to The Bakers . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a place where moderate priced Italian food can be found . Theres a very low 1 out of 5 rate and its not the friendliest place to take the kids \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||The Green Man is a French non - child friendly restaurant costing more than £ 30 located near All Bar One in the city center \nname : The Eagle | food : Fast food | customer rating : high||The Eagle is fast food that has a high rating . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family - Friendly 5 out 5 rating store near the Ranch \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in Riverside , The Rice Boat is a family friendly Japanese restaurant with a low customer rating . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : no||The Golden Curry , which offers Chinese food , has a low customer rating and is not family friendly . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a fast food takeaway airing on the side of expensive for one star \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop rated 5 out of 5 that serves Fast food for cheap near Café Sicilia \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix is a French restaurant in Riverside that has low customer rating \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix is Japanese food restaurant . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is an Indian coffee shop with a 5 out of 5 customer rating . It is located near The Portland Arms and is not family friendly . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||Midsummer House serves high priced English food near to All Bar One with an average customer rating . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum offers Italian food in the price range of £ 20 - 25 , a high customer service rating , and is located in the city center near the Yippee Noodle Bar . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a highly rated Chinese restaurant in the city centre near The Rice Boat . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge there is a high ranked restaurant The Golden Curry . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge Located in river side near The Sorrento serving Japanese Food no family - friendly \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn , The Rice Boat provides a 5 out of 5 rated service for Italian food . The cheap restaurant is located in the riverside area . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city centre you can find a quite pricey coffee shop which does not welcome children called The Eagle . It has a pretty good customer rating and tends to serve French food . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café is Strada , 5 star family friendly eatery . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food restaurant that is children friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine in medium price range , it is family friendly . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kid - friendly Italian restaurant near the riverside . The customer rating is 3 out of 5 . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||The venue is Cocum . A restaurant with 1 out of 5 customer rating . You can bring children there . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies , a child friendly coffee shop , offers French food and is located in the city centre . It has a low customer rating and the price range is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies in the city centre area is a French coffee shop with a high customer rating and a price range of £ 20- £ 25 . This place isn 't kid friendly . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides cheap French food , near the Express by Holiday Inn hotel in the city centre . Rated 5 star by customers . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a coffee shop called Fitzbillies located in the centre of the city that provides French food , and is not friendly to children . i would give it 3 out of 5 . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||The Fitzbillies is near Express by Holiday Inn and has an average customer rating , is cheap , and is family friendly . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : yes||There is a low ranked pub The Wrestlers that is family friendly and serves food and drinks . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry is not family - friendly . It serves French food . The customer rating is low . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a cheap Indian restaurant in the river side . Rating is 5 out of 5 . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge has an average customer rating with a low price range of less than £ 20 . \nname : Midsummer House | food : Fast food | customer rating : 5 out of 5 | near : Café Rouge||Next to Café Rouge is a highly rated Fast food venue called Midsummer House . \nname : Strada | Type : pub | food : Indian | customer rating : high | near : Yippee Noodle Bar||Near Yippee Noodle Bar there is a type of Pub called Strada where customers rate highly the Indian Food served there . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||Located riverside , Clowns is a high priced pub receiving 3 out of 5 stars . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||Near Café Rouge is a pub called Green Man . It is at the riverside and serves English food . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe is a pub style fast food restaurant in the riverside area that is also children friendly . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a highly rated child friendly pub costing more than 30 pounds . \nname : The Waterman | price : more than £ 30 | family friendly : yes||Kid friendly The Waterman has a price range of more then £ 30 . \nname : Aromi | Type : restaurant | food : Indian | area : city centre||Aromi is an Indian restaurant near the city centre . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||There is a family - Friendly Italian pub Zizzi with a low customer rating . \nname : Fitzbillies | food : Chinese | price : cheap | near : The Six Bells||Fitzbillies provides Chinese food in the cheap price range . It is near The Six Bells . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is expensive with a high customer rating . It is children friendly and is located in the riverside area . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a mid priced coffee shop that has wine , its located near Ranch . \nname : Aromi | Type : restaurant | food : Italian | area : city centre||Luton based restaurant Aromi serves Italian food . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop offers high - rating Japanese food near The Portland Arms and is kid - friendly . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||A kid friendly toy , The Waterman , is average price . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is located in the area of riverside that is kid friendly and serves fast food . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is an expensive but family friendly coffee shop located near Café Sicilia . It has high customer ratings . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||A cheap Chinese food place that is not family friendly but has a customer rating of 5 out of 5 in the riverside are near Express by Holiday Inn is The Rice Boat . \nname : Cotto | food : Japanese | customer rating : high | family friendly : yes | near : Ranch||Cotto is a Japanese restaurant located near Ranch . Cotton is kid friendly and has been highly rated by customers . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies is an affordable Italian restaurant located near The Six Bells . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a pub that provides French food in the moderate prices . It is located near to the Café Rouge and it is friendly for kids . \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : no | near : All Bar One||Near All Bar One is an Indian restaurant called Green Man . It is moderately priced and not kid friendly . It is in riverside . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a high priced coffee shop and restaurant that is family friendly . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Zizzi is a coffee shop located near riverside . The price range is £ 20 - 25 and they have a high customer rating . They are not kid friendly . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : no||Loch Fyne is a restaurant that is not very family friendly serves Chinese with price ranges usually less than £ 20 . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||In the city centre there is an expensive Indian restaurant called The Phoenix . It has a high rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a more expensive pub in Café Brazil . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine , The Wrestlers coffee shop has high prices and facilities for the family . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||An average priced pub is The Vaults near Café Adriatic , it has a customer rating of 3 out of 5 . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Located near The Six Bells is Fitzbillies , offering French food for mid - range prices . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||In the riverside area , there is a fast food restaurant named Giraffe . It is children friendly and has pub like food . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||Near Café Rouge is a high rated restaurant called Wildwood \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||Alimentum provides Indian food in the less than £ 20 price range . It is located in the city centre . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , on the riverside near Express by Holiday Inn is child friendly , serves high price Fast food and has a customer Rating 1 out of 5 . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||A child - friendly establishment , Fitzbillies has a high price range and average ratings and can be found near the Express by Holiday Inn . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||The Golden Curry is an English , kid friendly restaurant with high customer ratings . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly English style restaurant in the riverside area with a very high customer satisfaction rating . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is located in the city centre near the Crowne Plaza Hotel . It is not family - friendly , and is a French restaurant . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman serves English food and has a high price range . It is near riverside . It is not kid friendly and has a customer rating of 1 out of 5 . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada has an average rating , is cheap , and is family friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Located near The Portland Arms is a cheap fast food coffee shop called Cotto . It has a customer rating of 5 out of 5 in the city centre area . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . It is child friendly , in the high price range , and rated 1 out of 5 by customers . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||When looking for a drink and great sushi , look no further than The Olive Grove , located near the city centre . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : city centre||The Phoenix is a Chinese restaurant . It has a high price range . The customer ratings are average . The phoenix is located in the city centre . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is a non family friendly sushi bar located next to The Sorrento . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||Giraffe is an amazing riverside pub that you can go to for any French cravings . Unfortunately its a pub , so its not good for your children , but a night out with your friends is perfect for Giraffe . \nname : Wildwood | Type : pub | food : Chinese | price : more than £ 30 | customer rating : high||Wildwood is a pub providing Chinese food in the more than £ 30 price range . Its customer rating is high . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge is an Italian moderate place . Rated 3 out of 5 . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||The Waterman is a high rated pub in the riverside area that serves Italian . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge located in riverside near Crown Plaza Hotel is a family friendly Japanese coffee shop \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a Japanese coffee shop in city centre with a low customer rating . They are not child friendly and have a price range of more than 30 . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||There is a 1 out of 5 rating coffee shop called Cocum that isn 't kid friendly that has moderately priced Italian food . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The restaurant called The Cambridge Blue got English food but a bad customer rating . \nname : Blue Spice | food : Italian | price : high | area : riverside||Blue Spice is a high end Italian restaurant in Riverside . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is near Café Rouge . It serves fast food with a good rating . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a French restaurant near Café Rouge . It has a low customer rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||With very low customer ratings , Aromi is a coffee shop serving Japanese food . It is family friendly and is located in the riverside area . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves fast food in the Riverside area near Café Rouge . It features an excellent customer rating , but is not family - friendly . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is located in riverside and is near All Bar One , prices range from £ 20 and below and is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near the Crowne Plaza Hotel in the city centre . It serves French food . The customer rating is average and it is not family - friendly . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has all day dining for all the family , and is located near Express by Holiday Inn . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant with a high customer rating in the price range £ 20 - 25 with no kids friendly atmosphere . It is located in the city centre near Express by Holiday Inn . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : yes||Alimentum is a moderately priced , kid friendly English restaurant near the city centre . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||There is a low - rated English restaurant , The Waterman , that provides dishes for less than 20 pounds in a non - family - friendly environment . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly Italian highly rated coffee shop in the riverside area near Crowne Plaza Hotel . It is called Browns Cambridge . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is a pub that has a great price range . It is a pub that serves Italian food \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||coffee shop near The Bakers is in the high price range , Giraffe is not children - friendly with a customer rating 3 out of 5 . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is an average price range family friendly French food establishment . \nname : The Vaults | food : Indian | price : cheap | family friendly : yes||The Vaults is a cheap , family friendly restaurant that serves Indian food . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a riverside fast food coffee shop near Crowne Plaza Hotel . It is not family - friendly but has an average rating . \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada , near Rainbow Vegetarian Café , offers fast - food and a family friendly environment . It is expensive , but it has a 5 out of 5 rating . \nname : Midsummer House | food : English | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Located near All Bar One , Midsummer House serves English cuisine in the moderate price range . It 's been rated a 3 out of 5 by customers . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a restaurant serving Italian food . It is child - friendly . This is a cheap place . It is located in the city center . Customer Ratings are 5 out of 5 \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||A place that is child friendly , along the riverside and sells English food is The Twenty Two \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||A kid friendly restaurant called The Golden Curry serves English food . The prices are moderate . It is near The Bakers . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||located near The Rice Boat within riverside The Twenty Two with its low ratings is children Friendly and is priced more than £ 30 \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Close to The Bakers is the Giraffe . This family friendly coffee shop has a price range of less than £ 20 . It has been rated Average by customers . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||In the area of riverside there is a pub near the Rainbow Vegetarian Café , called The Golden Palace . Their average price Range is more than £ 30 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||There 's a not friendly for family coffee shop called The Cricketers near to The Portland Arms . It is providing take - away deliveries and has 1 out of 5 stars . \nname : Green Man | price : moderate | area : city centre | family friendly : no||Green Man is a moderate priced restaurant in City Centre that is not kid friendly . \nname : Blue Spice | food : Indian | price : high | area : city centre||Blue Spice is a restaurant providing Indian food in the high price range . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In riverside there is a Japanese coffee shop named Aromi . It has a customer rating of 5 out of 5 and is located in riverside . \nname : The Golden Curry | food : Fast food | price : high | family friendly : no | near : The Bakers||The Golden Curry is a fast food restaurant with a high price range . It is near The Bakers , and is not children friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||Situated close for The Portland Arms is our three star adult only Cotto establishment . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||There is a highly rated French coffee shop called The Cricketers that is located near The Portland Arms . It is child friendly . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Brazil||The Vaults is a cheap coffee shop in the city centre near Café Brazil and it has a customer rating of 5 out of 5 . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is moderate price coffee shop that is riverside , near Café Brazil . It has received a customer rating of 3 out of 5 . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The 5 star coffee shop The Vaults is located near Café Brazil . It is aimed at a high price range . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge serves Japanese food and is moderately priced with 3 out of 5 stars \nname : The Vaults | food : French | price : moderate | family friendly : no||The Vaults is a non family friendly restaurant with a moderate price range . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is Indian food restaurant in riverside , near Café Rouge . It has an average customer rating but it is child friendly . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies , located near Express by Holiday Inn , has a customer rating of 5 out of 5 . It is in a price range higher than £ 30 and is not child - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop and yes it is child friendly . It is near the riverside and has a high customer rating selling English food with a price range of more than 30 pounds . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop offering Japanese food in the Riverside area . The location has received a customer rating of 5 out of 5 in part to its children - friendly environment . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : no | near : Café Rouge||The Plough is a pub that provides Chinese food in the moderate price range . It is near Café Rouge . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman , located near the river , serves expensive Oriental food . \nname : The Vaults | Type : restaurant | food : Japanese||The Vaults is a Japanese restaurant . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : more than £ 30||Chinese restaurant , The Dumpling Tree . Price is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies coffee shop that offers Italian food . is not a family - friendly prices are between £ 20 - 25. it is near The Portland Arms . Customer ratings are low . It is located in the riverside \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||There is a cheap French coffee shop with a customer rating of 5 to 5 located near the city centre in The Portland Arms area named Cotto \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Blue Spice near riverside is a moderate price range Japanese food \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately - priced Italian coffee shop near Raja Indian Cuisine in the city centre which is not kid friendly . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall providing Japanese food , it is located by the river side its the best place , It has best rating among the other coffee shops . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||In the city there is a moderately priced family coffee shop called Cocum . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||a not family friendly fast food place is The Sorrento by Browns Cambridge \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no||Located riverside you will find The Olive Grove pub offering Chinese food . They are not children friendly and have high prices . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is family friendly and expensive . Located outside of the City centre . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||Near Café Rouge is a cheap , family friendly pub called The Plough . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||Along the riverside , there is a moderately priced , kids friendly pub , called The Olive Grove . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee Shop , located in the City centre , offers moderately priced Italian cuisine suitable for kids as well as adults . With a customer rating of 1 out of 5 , it is an alternative to the Burger King located nearby . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant in a low price rage , Located north of Rainbow Vegetarian Café . all family types welcome including children . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||There is a riverside fast food restaurant , The Phoenix , which has a price range of 20 - 25 pounds and a high customer rating . \nname : The Phoenix | food : Indian | customer rating : low | area : city centre||The Phoenix provides Indian food It is located in the city centre . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an Italian coffee shop that is kid friendly in riverside near Crowne Plaza Hotel with a customer rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||There is a pub styled restaurant that servers Japanese food with a price range of less than £ 20 called Wildwood . Wildwood has an average customer rating . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||There is a moderate priced average restaurant that serves pub fare called The Vaults near Café Adriatic . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly Italian coffee shop near Crowne Plaza Hotel in City Centre . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada is children friendly , priced more than £ 30 and has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||a children friendly coffee shop near The Portland Arms is The Cricketers . It has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto coffee shop , serving affordable gourmet fast food on the river , just along from The Portland Arms . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Riverside fast food and coffee shop Clowns positive customer ratings near Clare Hall . \nname : The Punter | food : Indian | price : less than £ 20||The Punter offers Indian food for less than 20 pounds . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||The pub Wildwood has fast food and a high customer rating . Price range is more than £ 30 . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man serves Indian food and the price range is average . It is located in the city centre near All Bar One and is kid friendly . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a family - friendly coffee shop with excellent reviews , but is not cheap \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers serves moderately priced French food . It is has a rating of 1 out of 5 and is not child friendly . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||At a price range over £ 30 , city centre hosts the restaurant The Eagle with a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Sushi and more can be found at the upscale Cotto located near The Portland Arms . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is an Italian restaurant located by the river . It has great reviews with a five star rating . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : no | near : Café Rouge||English food inspired The Plough pub is not kid friendly and is located near Café Rouge . It offers a moderate price range . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies by the Rainbow Vegetarian Café , has and average price of £ 30 . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a child - friendly pub that serves French food . It is located near Café Rouge , and its prices are generally higher than £ 30 . \nname : Browns Cambridge | food : Chinese | price : more than £ 30 | customer rating : high||For great Chinese food , Browns Cambridge is worth the price . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a fast food coffee shop . It is located in Riverside near the Crowne Plaza Hotel . It is children friendly but has a low customer rating . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a moderately priced fast food restaurant in city centre near Yippee Noodle Bar . They have a 1 out of 5 customer rating . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||In the riverside area is a children friendly place with a price range of more than £ 30 . The name is The Waterman and it serves English food and has a high customer rating . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The family friendly restaurant The Plough is located near The Bakers and is cheap . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : no||The Rice Boat is an English food serving place located in the city center that is not family - friendly and has an average customer rating . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : high||Wildwood Pub is a high rated restaurant that is not too expensive . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||The Cambridge Blue is a low customer rating , English restaurant . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced Chinese restaurant located near the Express by Holiday Inn in Riverside . The Customer rating is 1 out of 5 and is not kid friendly . \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||With a 1 out of 5 customer rating , The Wildwood is a Japanese pub with a moderate price range . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto , near Ranch , is a fast food restaurant that is kid - friendly and rated 1 out of 5 . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies serves fast food with a £ 30 plus price range . You can find it near The Six Bells \nname : Zizzi | Type : restaurant | price : £ 20 - 25 | area : riverside||Near the riverside is the Zizzi restaurant . It has a price range between 20 to 25 . \nname : Aromi | Type : restaurant | food : English | area : riverside||Aromi is a restaurant in riverside serving English food . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers Chinese food at price range of £ 20 - 25 . Its customer rating is high . Kids are friendly . Locate near to Rainbow Vegetarian Café . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a pub by the riverside . It serves Italian food and is family friendly . \nname : Blue Spice | food : Italian | price : high | area : riverside||Blue Spice provides nice food at great middle prices . It is located in the city centre . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers serves hamburgers and welcomes families . Enjoy fries in a family friendly environment . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||There is a pub near The Portland Arms known as The Dumpling Tree , and it is child friendly . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low priced Indian restaurant that has received a perfect rating . It is not family friendly , and it is located near Rainbow Vegetarian Café . \nname : The Golden Curry | food : Italian | price : high | family friendly : yes | near : The Bakers||The Golden Curry offers high priced Italian food in a children friendly environment . It is located near The Bakers . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada has English food , is kid friendly , has a moderate price range , but a customer rating 1 of 5 . It 's near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Indian food in the high price range , it is not family friendly and has an average customer rating . This establishment is located in the riverside area near the Express by Holiday Inn . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||A highly rated family restaurant at riverside is The Rice Boat , it serves Indian food . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||A high rated family restaurant is called The Golden Curry . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||In riverside , a kids friendly coffee shop named Aromi is kids friendly with customer rating of 1 out of 5 . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is an Indian restaurant which is located in the city centre . It 's within a moderate price range with a rating of 1 out of 5 . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||There is an inexpensive and highly rated Italian restaurant , called The Phoenix located outside the centre of the city . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a fast food coffee shop located in the city centre . Price range is moderate with a customer rating of 1 out of 5 . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||The Bibimbap House serves Japanese food for less than £ 20 . It is located near Clare Hall in riverside . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||There is pub with an average customer rating in the riverside area called Clowns . Food is in the less than £ 20 range . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A French restaurant , Strada can be found near the Rainbow Vegetarian Café . Though at the high end of price range , it welcomes children and attracts a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is an Italian restaurant called The Golden Curry that is family friendly and has an average customer rating in the riverside area near Café Rouge . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a pub located in the Riverside area . It has a low customer rating but costs less than £ 20 . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||Located near the riverside , family friendly pub The Olive Grove serves Italian food at mid range prices . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||There is a high priced Chinese restaurant named The Wrestlers that is not child friendly and has a 1 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Cheap fast food coffee shop , Fitzbillies is near the riverside . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : Fitzbillies | food : Chinese | price : moderate | near : The Six Bells||Fitzbillies is a Chinese restaurant . It has a moderate price range . it is located near The Six Bells . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in Riverside near the Express by Holiday Inn is child friendly and offers fast food but they are expensive and only have a 1 out of 5 star customer rating . \nname : Clowns | price : more than £ 30 | family friendly : no | near : Café Sicilia||Clowns is a non - family - friendly restaurant near Café Sicilia with a price range more than L30 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in the riverside area near Express by Holiday Inn is The Rice Boat . It serves expensive Japanese food but has a 5 out of 5 customer rating . It is not child friendly . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a cheap fast food place near All Bar One . It has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers , boasts a rating of 5 out of 5 .. This coffee shop specializes in French food and is not family - friendly . It is located near The Portland Arms . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum is a child friendly Italian in the Riverside area , but is high priced . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||If you are seeking a fine Japaneses cuisine you really want to stop by The Rice Boat near Riverside . They have a 5 out of 5 rating and are very child friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is located near Raja Indian Cuisine in the city centre . It is a Japanese coffee shop with a price range of more than £ 30 and is not kid - friendly . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that offers food and drinks for families . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers is a one star pub near the Ranch that is not family friendly . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||In riverside area near Yippee Noodle Bar is a slightly expensive but highly recommended Chinese called Alimentum . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi boasts a five star rating , and sells sushi in a family pub setting . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near riverside and Crowne Plaza Hotel is a kid friendly , fast food coffee shop called Taste of Cambridge . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a relatively expensive pub that is located north of the city center . , beside the river . They serve a wide selection of pasta dishes . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a coffee shop near the river called Fitzbillies . The prices and quality are substandard , but there are no children allowed . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||When you go to the city centre be sure to go in an affordable coffee shop called The Fitzbillies , \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter coffee shop is a highly rated French restaurant near Café Sicilia the offers food in the range of £ 20 to £ 25 . It is a kid friendly restaurant . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry near Café Rouge , serves English food and is family friendly . The Golden Curry has a high customer rating and is in a riverside area . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee shop in the city centre that provides Indian food . It is not family friendly and has low customer ratings . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap Fast food restaurant with average rating in the riverside area that is family friendly . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Located riverside near Express by Holiday Inn , The Rice Boat , serves Chinese food for more than £ 30 and has a high customer rating . It is not child friendly . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||A coffee shop , The Golden Palace , serves moderately priced Indian food that is highly rated by customers . It is located in the city centre . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : yes||Zizzi is a family friendly place that offers Asian cuisine . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough pub and restaurant serves Chinese food from £ 20 - 25 to kids and parents near the Café Rouge \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||A kids friendly restaurant called The Vaults sells Japanese food ranging from £ 20 - 25 . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a coffee shop located near Ranch . It provides wine , cheese and olives for a high price . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : city centre | near : Clare Hall||The Bibimbap House serves Indian food at less than average prices . They are located in the city centre near Clare Hall . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults coffee shop is by the riverside near to the Café Brazil . Its price range is less than £ 20 and has a low customer rating . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||There is a pub named Zizzi offering Japanese food , and is a children friendly pub which is rated 3 on 5 by customers \nname : Strada | Type : pub | food : English | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub serving English food near Yippee Noodle Bar and has an excellent customer rating . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman serves fast food , is family - friendly and cheap prices . Averagely rated by customers and located in the city centre . \nname : Green Man | food : French | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is near All Bar One providing French , affordable cuisine and is adult friendly . \nname : The Mill | Type : pub | food : English | price : more than £ 30 | area : riverside||The Mill is a pub style restaurant offering English food . The price range is above £ 30 . Conveniently located around riverside . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||Wildwood is a cheap Italian food pub in Wildwood with average customer ratings . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||The Plough pub located by Café Rouge offers cheap family friendly English food . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace , a coffee shop , has Italian food . Located in the riverside area , the prices are low and the customer ratings are high \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||The well reviewed , Kid friendly pub called Zizzi serves Chinese . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||In the city centre there is a low priced place called The Blue Spice which is not family friendly . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap coffee shop with a 5 out of 5 rating . This family friendly establishment is located in riverside near Avalon . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||For family friendly English food , The Golden Curry is rated 5 out of 5 . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||A Japanese venue with a low customer rating is Alimentum near the Yippee Noodle Bar in the city centre , costing under £ 20 \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||Low rating The Golden Curry located in the city centre near the Café Rouge is family Friendly specializing in Chinese foods . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is low customer rating coffee shop . It 's not family - friendly and is near the Burger King in the centre of the city . It has a price range of less than £ 20 . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||If you are looking for Japanese food located in the picturesque riverside then look no further than the cheap priced The Waterman . This family friendly restaurant is currently rated 5 out of 5 by its customers . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly coffee shop at the riverside . It is called Browns Cambridge , located near the Crowne Plaza Hotel . They serve fast food and have a customer rating of 3 out of 5 . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House , near All Bar One is expensive and one star rated \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub in the average range . It is located in the city centre . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||Offering Fast food , The Eagle is rates 3 out of 5 . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a kids - friendly fast food place in the riverside area . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||For a riverside coffee shop , head to Aromi . It is a family friendly , highly rated coffee shop serving fast food . \nname : The Punter | food : Japanese | price : £ 20 - 25||Japanese food for £ 20- £ 25 , head to The Punter . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||There is a family friendly restaurant called The Vaults serving Japanese food for less than £ 20 . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes||In city centre , there is a moderately priced pub style Chinese place called The Olive Grove and they are kid friendly . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||There is an Italian pub in the riverside area called The Waterman that has high customer ratings . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge coffee shop is in the riverside area near the Crown Plaza Hotel and is kids friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Near Burger King in the city center area is an Italian coffee shop that is child friendly with a high price range named The Eagle that was given an average customer rating . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||A 1 star restaurant is located near Café Rouge and north of the City Centre , it is called The Golden Curry \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a premium family - friendly pub located on the river to the north of the City centre serving a selection of wines and cheeses . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||The family friendly pub Zizzi serves French food and has an average customer rating . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||With a customer rating of 1 out of 5 , Alimentum , near Yippee Noodle Bar can be found in the city centre selling English cuisine at moderate prices . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||The Giraffe coffee shop in The Bakers seems to offer good coffee and adult environment . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a Japanese restaurant near The Bakers . It is not kid friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a cheap family friendly restaurant located in the riverside area . It has an average customer rating . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no||Cocum offers French food and is based around a coffee shop . Even though it is not family - friendly and has an average rating the prices are less than £ 20 \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , The Rice Boat , is a family friendly establishment with a low cost . It is in the riverside area and serves English flare . It has a customer rating of average . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Located in the city centre , Zizzi is a family friendly pub offering Japanese food . It has a one star rating . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers , near Ranch , is pub style , children friendly and rated 1 out of 5 . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||The Bibimbap House , located by The Rice Boat on the riverside , serves English food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace coffee shop serves Japanese food for £ 20 - 25 . This highly reviewed coffee shop is located in the city centre area . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix , located in Riverside , is a highly rated Chinese restaurant . Prices are above average for the area , with meals costing above £ 30 . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough , near Café Rouge , is a family friendly pub . It serves reasonably priced English food . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||For an Italian restaurant in the Riverside area , try Aromi . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Located on the river , Blue Spice is a cheap place to find a full English Breakfast . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a Chinese restaurant with an average rating , is high in price and children - friendly . It is near riverside and Express by Holiday Inn . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is located in the riverside area near the Yippee Noodle Bar . It has a high customer rating , serves Indian food and the price range is more than £ 30 . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter , located in the city , offers sushi at a higher price range . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||Loch Fyne is a kids friendly restaurant , which offers Indian food . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Japanese restaurant Cotto near Ranch has a children friendly environment but a low customer rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the City centre has good British meals that are affordable and the spot is child friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||For a five star coffee experience , come down to the riverside and visit Fitzbillies , for real French style coffee . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||For a family friendly restaurant serving Japanese food , try Cotto . It 's near the Ranch and has a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : high | family friendly : yes||Loch Fyne is a high - priced child - friendly Fast food restaurant . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located along the riverside and near the Express by Holiday Inn , is a family - friendly restaurant providing Japanese food . Its rating is pretty low , but it 's affordable as you can eat with less than 20 £ . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Fitzbillies offers low - cost British food . It is located next to The Six Bells . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||A family - friendly with English foods in riverside . Near Café Rouge , The Golden Curry with average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is based in the riverside area , offering Italian food in the coffee shop at a moderate price . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat , a fast food restaurant that is child friendly , is located in Riverside and received an average customer rating . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||Located in Riverside , The Twenty Two is a French restaurant that is not kid friendly . \nname : Blue Spice | price : cheap | area : riverside||At the riverside area , there is a low - priced place called Blue Spice . \nname : Green Man | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||For a kid friendly Japanese experience , try the Green Man near All Bar One on the riverside . Price range is typically £ 20 - 25 . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Excellent , moderately - priced Italian food , suitable for families with children , is served at The Rice Boat , which is located on the riverside near the Express by Holiday Inn . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : riverside||You can eat Indian food on the riverside at The Mill pub for £ 20 or less . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is an excellent restaurant at an affordable price . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub offering Japanese food in a child friendly environment . It has a customer ranking of 5 out of 5 . \nname : The Waterman | price : high | family friendly : yes||The Waterman in high price range is children Friendly \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The expensive , but poorly rated pub located near Café Adriatic , is called The Vaults \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||With a low customer rating , The Waterman is not a family - friendly restaurant . It serves Italian food and has a price range of less than £ 20 , located along the riverside . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||Down by the riverside , the best Italian food at a coffee shop is The Golden Palace supported by its high customer rating despite meals being over 30 Euros . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is located near The Rice Boat in the city center , it is non family - friendly with a low customer rating , but there price ranges are less than £ 20 . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers offers Indian food with price range of more than 30 with customer rating of high and children friendly . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a child friendly , above average priced restaurant located near the Express by Holiday Inn with high customer satisfaction . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood , a fast food coffee shop , has a high customer rating , and food prices ranging from £ 20 to £ 25 . It is located near the Ranch . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop in Avalon in the riverside area . It has a customer rating of average and is not family - friendly . Prices are less that £ 20 . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||The restaurant Travellers Rest Beefeater is family friendly with a price range of less than £ 20 . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||There is a very affordable dine - in restaurant near All Bar One called Midsummer House . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||When in riverside , grab some cheap eats at Fitzbillies . This coffee shop provides affordable fast food and has a 5 out of 5 rating by customers . It 's not family - friendly though , so leave the kids at home . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is located near All Bar One . It has expensive food and beverage and has a rating of 3 of 5 stars . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in riverside near Express by Holiday Inn is an Italian restaurant called The Rice Boat . This is a moderately priced adult restaurant with a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a family French restaurant with prices between £ 20 - 25 \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub with a price range of less then £ 20 that server Italian food near Café Brazil \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||The Plough is a moderate price Ranged restaurant . The Plough is located near The Bakers and is not kid friendly . \nname : The Punter | food : English | price : less than £ 20||The Punter is a British restaurant offering food for people on a tight budget . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Japanese food restaurant , The Twenty Two , is kids friendly . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is children Friendly in the riverside area and has Fast food . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Fast food restaurant near Express by Holiday Inn offers a moderate priced menu in the riverside area . kids - friendly with a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A moderately priced coffee shop , Zizzi , is located in the city centre , It is kid friendly with a customer rating below average . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub providing English food . It is located city center . Less than £ 20 price range , no family - friendly . \nname : Blue Spice | food : Japanese | price : moderate | area : city centre||Blue Spice has moderately priced Japanese Food in the City Centre . \nname : Green Man | food : French | price : high | area : riverside | family friendly : yes | near : All Bar One||For good quality French food in a child friendly pub near the river and All Bar One , try The Green Man . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 3 out of 5||The Cambridge Blue is an Italian restaurant rated 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop near the riverside that serves inexpensive Italian food with a customer rating of 5 out of 5 . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||A moderate priced pub , named The Vaults is near Café Adriatic , the customer rating is 3 out of 5 . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : city centre | near : Clare Hall||Near Clare Hall in the city centre , Bibimbap House has fast food in the less than £ 20 price range . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly Italian spot with low ratings and prices under £ 20 in riverside . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : high||For highly rated Indian food try The Cambridge Blue restaurant . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House hither to Clare Hall location riverside have cost more than £ 30 of Japanese eats . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Adults can enjoy French food at The Eagle which is a mid priced coffee shop situated in the city centre near Burger King . It has average customer ratings . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||There 's a Japanese place called The Vaults where you can take kids . It 's about twenty to twenty five pounds . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a Fast food pub with a cheap price range , near Café Brazil \nname : Midsummer House | food : Chinese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House serves Chinese food with a price range of £ 20 - 25 and a high customer rating , located near the All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a family - friendly city centre coffee shop that serves good Indian food at reasonable prices . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||There is a moderate coffee shop named The Punter near Café Sicilia with a customer rating of 1 out of 5 and it 's serving Italian food but it 's not kids - friendly \nname : The Rice Boat | food : English | customer rating : low | area : city centre | family friendly : no||In the city centre there is an English food venue called The Rice Boat , it isn 't family - friendly an has a low customer rating . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||There is a high - priced children - friendly pub named Cocum that has 3 out of 5 customer \nname : Blue Spice | food : Italian | price : high | area : city centre||There is a high priced restaurant that serves Italian food in city centre called Blue Spice . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Moderately priced and located near Burger King , The Eagle is a coffee shop that sells fast food . It has a three out of five customer rating and is not children friendly . \nname : The Waterman | Type : pub | food : English | customer rating : 5 out of 5 | area : riverside||The Waterman rates 5 out of 5 , they are an English pub in the riverside area \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : riverside||The Waterman is a low rated Indian pub in a riverside area . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||Rated 3 out of 5 , The Golden Palace is a coffee shop that serves Japanese food . It is located in the city centre area and has a high price range . \nname : The Vaults | Type : restaurant | food : Indian||There is a restaurant named The Vaults that offers Indian food . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||Serving English food , the Green Man pub is located near Café Rouge in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop that serves Indian food in the cheap price range . The customer rating is average . It is located in the riverside . It is not family friendly \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kid - friendly English eatery . Near The Sorrento , on the riverside \nname : The Punter | food : Fast food | price : £ 20 - 25||A fast food restaurant that costs £ 20- £ 25 is called The Punter \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree is a family friendly English pub \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada pub is a 5 - star sushi restaurant near Yippee Noodle Bar . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a restaurant providing a variety of small bites at affordable prices . It is located near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop with a good customer rating and moderate prices . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a child friendly , Italian restaurant . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||Located riverside , The Olive Grove offers a moderate priced pub and yes to kid friendly eats . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Waterman is known for its great ratings . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||Taste of Cambridge is a highly rated restaurant with a moderate price range \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a farm to table restaurant just steps outside of the Café Rouge \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies has a high customer rating and a price range of £ 20 - 25 . It is kids friendly and is near Express by Holiday Inn . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a high end fine dining restaurant that also serves wine . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is family - friendly coffee shop , customer rate 5 out of 5 , serving French food . It is located in city centre near Crowne Plaza Hotel . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||We do not offer a child - friendly environment . Japanese food is served here at The Olive Grove . Our pub is very low - priced . Located in the city centre \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||The Punter is near The Portland Arms in the riverside area . It is not kid friendly and the price range is really moderate . \nname : The Vaults | food : Indian | price : high | family friendly : no||The Vaults is an Indian food restaurant . It has a high price range and is not child friendly . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a mid - priced restaurant near All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop in the riverside serving Italian food . It 's child friendly and has a high customer rating . The price range is over £ 30 . \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : yes||The Vaults is a family - friendly Chinese restaurant with low prices . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||With an average customer rating , Cotto , a local coffee shop located in the City Centre near The Portland Arms offers Indian food at a very cheap price . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a mid range restaurant in the city centre . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : no||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is average . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : no | near : The Sorrento||The Browns Cambridge is located in the city centre near The Sorrento . They have Italian food and is not family- friendly . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : no||The Wrestlers is a cheap , non family - friendly Italian Café with a average customer rating . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||For less than £ 20 per head , try Zizzi . It 's a family friendly coffee shop located by the riverside . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue is located near Café Brazil . It is a Fast food pub with a fairly high price . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||In riverside The Eagle has a customer rating of 1 out of 5 and is priced high . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : no||If you want to try some tasty Indian food , try The Rice Boat by the riverside . It isn 't very family friendly and has an average rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies offers Italian food at a moderate price range . Located in the city centre this coffee shop is children friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||A family friendly Indian restaurant option is a pub named Zizzi . They have a rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice , near Avalon in the riverside are is a coffee shop that is moderately priced . They received a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop serves food at mid range prices . It is family friendly and has a three star rating . It is based in the riverside area near Burger King . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Looking for a coffee shop serving Indian food in the cheap price range with average customer ratings in the riverside area near Burger King and is family friendly , then visit The Eagle . \nname : Green Man | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a kid friendly fast food restaurant near All Bar One . The food is 20 - 25 . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto is located in the area of riverside , near of the All Bar One . The price range in Cotto is less than £ 20 . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is located near The Rice Boat . It has an excellent rating . \nname : The Golden Curry | food : French | price : cheap | family friendly : yes | near : The Bakers||There 's a French restaurant called The Golden Curry , it 's near The Bakers , it 's cheap and yes it 's family friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The coffee shop named The Punter has a moderate price range delicious food , with a moderate price range . They have Italian food , but is not kid friendly and located bear Café Sicilia with a customer rating of 1 out 5 . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : high||The Cambridge Blue is a high rated French restaurant . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood is a pub in Cambridge that has different drink selection different food with currently a 1 star rating \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is lovely , children friendly pub . It is located in riverside area . There is cheap pub Aromi that provides average service and food . Aromi pub is children friendly just on riverside . \nname : The Vaults | food : Chinese | price : high | family friendly : no||The Vaults is a expensive Chinese restaurant that is not children friendly . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||Wildwood , near Ranch , is an coffee shop which specializes in French food . It is in the high price range , and has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside||There is a fast food pub in the riverside area , called The Mill , with a price range of 20 - 25 pounds . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||There is an Italian restaurant with average customer ratings called The Wrestlers which is cheap . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||Serving Japanese food , The Vaults is a wonderful and inexpensive adult night out . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Italian food , children friendly is what The Waterman is known for . Located in the city center with high prices and a customer rating 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||The Dumpling Tree is a low - priced English restaurant \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is an adult oriented coffee shop serving Italian food , located in the city centre near Burger King , with a low customer rating and a low price range . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||Wildwood is a pub in the city that serves Japanese food . The pub has average customer ratings and cheap prices . \nname : The Golden Curry | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a Chinese restaurant that is kids friendly and has a 3 out of 5 rating . \nname : Cotto | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||kids friendly Fast food restaurant near Ranch called Cotto with a customer rating of 3 out of 5 \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a Japanese restaurant with moderate prices but kids - friendly its close to All Bar One in the city centre \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix restaurant , which was given an average customer rating is situated down by the riverside serving French food . \nname : Aromi | Type : restaurant | food : Fast food | area : city centre||Aromis is a Fast food restaurant in the city centre area . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is low price range coffee shop with Italian food , located in City centre near by Burger King . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||There is this average expensive coffee shop near Riverside that sells Italian food , called The Golden Palace . It isn 't anything special . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||A family friendly place to get fast food is The Waterman . It 's near Crowne Plaza Hotel . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||A Chinese food restaurant , Alimentum offers food at a moderate price range . It has moderate customers rating and is located in the city centre , near Yippee Noodle Bar \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop , near the River Cam in Cambridge , that serves seafood and sushi . It has a three - star rating . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House , next to All Bar One , serves American hamburgers and fries of great quality . \nname : Bibimbap House | food : French | price : moderate | area : city centre | near : Clare Hall||Try Bibimbap House , near Clare Hall in the city centre for moderately priced French food . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||The price range for Wildwood is moderate . It is a pub that serves Italian food , but it has a rating of 1 out 5 . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||There is an Italian restaurant that has 3 stars and high - priced menu options called Browns Cambridge . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a no kid friendly coffee shop called The Wrestlers located at the city centre . They serve fast food , their price range is moderate , and they are near Raja Indian Cuisine . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||With a high price range near The Portland Arms , Cotto , a city center , has a customer rating 1 out of 5 . There is a coffee shop with fast food . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||The Cambridge Blue is a fast food style restaurant . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a high customer rating restaurant The Rice Boat located near Express by Holiday Inn in the riverside that provides Japanese food . Its price is £ 20 - 25 and no kids friendly . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum is a French coffee shop with a high price range . It is not child friendly and has a rating of 5 out of 5 . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderate priced , kid friendly pub with low ratings . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||for fast food try , The Twenty Two in riverside for a family friendly experience . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a restaurant in the riverside area named The Waterman , that serves Indian food within the price range of £ 20 - 25 , has a high customer rating , and is kid friendly . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café . It is family friendly and offers Italian food . It has average customer ratings and high prices . \nname : Wildwood | Type : pub | food : Chinese | price : less than £ 20 | customer rating : low||The Wildwood is a Chinese pub with a price range of less than £ 20 and a low customer rating . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop located in the city centre near The Sorrento . It serves French food in the moderate price range . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Riverside area Japanese restaurant , The Phoenix , has a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop Chinese cuisine at good prices . families welcome . Near Café Sicilia . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||Known as ' average ' and ' Family Friendly ' , The Cricketers offers pub food near the Ranch \nname : Bibimbap House | food : Chinese | area : city centre | near : The Rice Boat||Bibimbap House provides Chinese food It is located in the city centre . It is near The Rice Boat . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an affordable , family - friendly , winery . Located just North of City centre , and right next to Express by Holiday Inn makes it an ideal tourist location . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle in city centre near Burger King delivers a family - friendly atmosphere , good customer service , and Japanese cuisine at an affordable price . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||Browns Cambridge has Italian food . They have an average customer rating and have a cheap price range . \nname : Green Man | Type : pub | food : Indian | area : city centre | near : Café Rouge||Green Man is in the centre of the city near Café Rouge and is an Indian pub . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : no||The Twenty Two is not family friendly , but it dishes out Chinese food in the city center . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is an Indian eatery with a moderate price range , 3 out of 5 customer range , in the central city area . \nname : Bibimbap House | food : Fast food | area : city centre | near : The Rice Boat||Bibimbap House is located near The Rice Boat in the city centre and serves Fast food takeout . \nname : Green Man | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is located on the riverside near All Bar One . They offer kid friendly fast food from 20 - 25 . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers pub near Ranch is a high end experience for the entire family . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||Alimentum is an expensive , non - child - friendly establishment that serves Japanese food at the riverside . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Zizzi restaurant offers prices less than £ 20 in the riverside area . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne near The Rice Boat in the riverside area serve Italian food and have a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||In the city centre area is a coffee shop named Cotto near The Portland Arms . It serves Japanese food and has a moderate price range , The customer rating is 1 out of 5 . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 3 out of 5||The Wildwood pub has a moderate price range for its Chinese food and a customer rating of 3 out of 5 . \nname : Alimentum | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||If you 're looking for Indian food , try the restaurant called Alimentum , it 's right on the river , it 's kid friendly , and the prices are cheap . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside , near Express by Holiday Inn , is The Rice Boat . They serve Italian and are not child friendly . They have a high customer rating and are in the price range of more than 30 \nname : The Phoenix | food : English | customer rating : high | area : riverside||The customer gave The Phoenix a high rating at Riverside . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Indian food is served at the children friendly Zizzi pub . It has an average customer rating . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge has low customer satisfaction and you can expect to pay more than £ 30 \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is an excellent , cheap Chinese restaurant located in the city centre , but it 's not family friendly . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a 1 out of 5 English restaurant with a family friendly attitude . We do have high prices but that gives you the perks of eating over the riverside . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix moderate priced good value English food with 3 out of 5 stars in the city center . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||The Loch Fyne restaurant is not for the family and it is fast food . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry restaurant is a five star rated family friendly venue . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults , while not family - friendly , is an English restaurant with prices lower than 20 pounds . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||there is a Fast food restaurant in the riverside area which is child friendly with a customer rating of 1 out of 5 called The Golden Curry which is near the Café Rouge \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||There is a low - priced restaurant near The Six Bells called Fitzbillies . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre||In the city center area is a fast food and coffee shop restaurant with a high price range named The Golden Palace that was given an average customer rating . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Japanese food in a children friendly riverside is the Browns Cambridge by The Sorrento \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Fitzbillies is a Japanese coffee shop . They are kid friendly and moderately priced . Located in Riverside , they have a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is located in the center of the city . It is a coffee shop that serves French food and is kid friendly . It has a customer rating of 3 out of 5 and a price range of £ 20 - 25 . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||The Cocum is a non - family - friendly restaurant that has a low customer rating . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : riverside | near : The Sorrento||There 's a coffee shop serving Italian food in the riverside area . It 's called The Mill and is near The Sorrento . It has a high price range . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , near the Crowne Plaza Hotel , is a Japanese restaurant . It is also kid friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Rated 5 out of 5 , The Waterman is affordable family friendly Indian restaurant in the riverside . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food restaurant near The Sorrento . It is located in the riverside , it is children friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop is a mid - priced shop located near the city centre , beside the river . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Inexpensive , 5 - star rated , The Rice Boat serves sushi to your entire family . It is by Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop that serves fast food for a high price . Fitzbillies is located at the city centre , and it is not child friendly . Fitzbillies has a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman is a public restaurant , located in riverside area , providing French food with a low Customer rating . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant with a low customer rating and moderate prices . It is located on the riverside near Yippee Noodle Bar . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two at riverside is not family - friendly , has a customer rating of average , a price less than 20 , and located near The Rice Boat . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum has Indian food for less than £ 20 . It has a low customer rating and located in the City centre near Yippee Noodle Bar . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House offers Japanese for £ 20 - 25 , it 's on the riverside near Clare Hall \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is a high rated child friendly establishment on the riverside with high pricing . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a highly rated Asian restaurant convenient to students at the nearby university , but also appropriate for families . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||In city centre , near The Portland Arms is a cheap , Italian coffee shop called Cotto . They have a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a customer recommended French coffee shop that offers affordable prices . It is located in the Riverside area near the The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace , located in the city centre , is a low priced , low rated , Japanese coffee shop . \nname : Blue Spice | price : less than £ 20 | area : riverside||By the riverside is the Blue Spice whee you can eat for less than £ 20 . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : no||Aromi , a non - family , ordinary pub in the city centre \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a restaurant that offers Japanese food with a low customer - rating . They are children - friendly and reside on riverside . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||For a child friendly French restaurant visit Loch Fyne . \nname : Fitzbillies | food : Indian | price : moderate | near : The Six Bells||Located near The Six Bells , Fitzbillies serves Indian food at moderate prices . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family - friendly pub near Café Rouge that has the price range less than £ 20 \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns in a cheap , 5 out of 5 rated pub located in Riverside . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue pub serves Chinese food that is more than thirty pounds and is near Café Brazil . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : yes||On the riverside is the kid friendly Alimentum . They serve Chinese food and have a moderate price range . \nname : Browns Cambridge | food : Italian | price : less than £ 20 | customer rating : low||Browns Cambridge is a cheap restaurant with a shitty rating . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly with a price range of more than £ 30 in the riverside area , with a high customer rating and English food , near Express by Holiday Inn . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||This higher priced coffee shop near Avalon is child friendly , has riverside view , but has a low customer rating . Come try Blue Spice for yourself . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop that sells cheap Indian food located in the city centre near The Portland Arms . They have a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a cheap , Japanese pub located near Café Brazil . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop with Japanese food . Its located near Ranch with prices ranging from 20 to 25 dollars . \nname : The Twenty Two | food : Japanese | family friendly : no||The Twenty Two is a sushi restaurant that is not family friendly . \nname : The Rice Boat | food : Indian | area : riverside||The Rice Boat offers Indian dining in riverside . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Dumpling Tree is a pub that offers Chinese food in a family friendly environment . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub located in river side witch servers up French food for less than £ 20 per person , we are sorry that no children are welcome . \nname : Cotto | food : Japanese | customer rating : average | family friendly : yes | near : Ranch||Cotto is a kid - friendly restaurant . It is located near Ranch . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||For less than £ 20 you can enjoy Japanese food at a non family - friendly restaurant ' Alimentum ' located in the city centre . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Loch Fyne is a children friendly restaurant which offers Italian food at moderate prices . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge is an inexpensive restaurant serving English food . Its customers rate it moderately . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family Friendly The Wrestlers is a cheap coffee shop serving Fast food . It is located in riverside near Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop situated in the riverside that serves Indian food . It has a customer rating of 1 out of 5 with a high price range . It is children friendly . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||Wildwood is a three star , inexpensive pub that caters to wine pairings . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly Italian coffee shop in the city centre near Crowne Plaza Hotel . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||A coffee shop that sells products less than £ 20 is Zizzi . They are not child friendly and have earned an average rating . They can be found is city centre . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||I 'm looking for the Chinese restaurant named The Rice Boat . It 's in the city centre , near the Express by Holiday Inn . The customer rating is average , while the price range is high . The Rice Boat is also child friendly . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Fitzbillies is a French venue , it 's situated close to The Six Bells and is cheap . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an affordable Chinese food restaurant with a 5 out of 5 customer rating near the riverside . It is family friendly and near Express by Holiday Inn . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Try Alimentum Japanese restaurant in the city centre . The ratings are low and the price range is more than 40 . You can find it near the Yippee Noodle Bar . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub with high prices , located near Café Rouge \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House has Chinese food at less than £ 20 , Located near Clare Hall on the riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a fast food coffee shop with an average customer rating . It is riverside near Burger King with a cheap price range . It is not family - friendly \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||French food that is family Friendly , The Waterman by the riverside is cheap and has a 5 out of 5 Rating \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , Fitzbillies is a high price range , family friendly place with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a child friendly coffee shop located on the riverside near the Crowne Plaza Hotel . They serve Indian food and have an average rating . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada is a high - priced restaurant that is children friendly . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||A cheap Italian restaurant near the Rainbow Vegetarian Café with an average customer rating and isn 't family - friendly is called Strada . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : city centre||A pub serving Indian food in the moderate price range located in the city centre is The Mill . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a 5 - star , family friendly coffee shop in the mid - price range , offering escargot , cheeses and wines , and more . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The moderately priced , non - kid friendly Chinese restaurant , The Waterman , has a customer rating of 1 out of 5 and is in the riverside area . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||With a customer rating of 5 out of 5 , The Cambridge Blue is the Japanese restaurant to be at . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : yes | near : The Sorrento||The Browns Cambridge is a family friendly eatery that provides Japanese food . It is located in the city centre near The Sorrento \nname : The Eagle | food : Indian | customer rating : 5 out of 5||The Eagle serves Indian food and has a 5 out of 5 rating \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||A kid friendly coffee shop near The Bakers is a highly rated place called Giraffe where the prices range from £ 20 - 25 . \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||The Vaults serves moderately - priced French food and is kid - friendly . \nname : The Plough | Type : restaurant | price : moderate | family friendly : no | near : The Bakers||The Plough is a restaurant providing warm food in the medium price range . It is located near The Bakers \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||In riverside there is a children friendly pub named The Olive Grove , priced at more than £ 30 . \nname : Midsummer House | food : Chinese | price : less than £ 20 | customer rating : low | near : All Bar One||Chinese food is served at Midsummer House near All Bar One . It is rated low by customers and is in the low price range . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a family friendly English restaurant with an average customer rating . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||A somewhat expensive sushi restaurant , Strada is quality and family friendly , found just north of the Rainbow Vegetarian Café . \nname : Cocum | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a high price range coffee shop serving French food . It is child friendly and has a 3 out 5 customer rating . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||The Fitzbillies is a family - friendly option located next to Express by Holiday Inn . Reviews give the location a 1 out of 5 stars . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : yes||The Loch Fyne restaurant is kid friendly and serves Indian food . It is moderately priced . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat 's Indian Food is moderately priced with a dismal customer rating of 1 out of 5 , located in the city centre , it is not children friendly and is near the Express by Holiday Inn . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Strada has a customer rating of 3 out of 5 with a price range between 20 - 25 euros and is not kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry restaurant welcomes all the family and is rated 5 stars \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a cheap , family - friendly French restaurant in the city centre , called The Rice Boat . It has received a customer rating of 5 out of 5 and is located near the Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : yes||If you are looking for kids - friendly pub moderate priced go to the riverside at The Olive Grove . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers is a children friendly , more than £ 30 Japanese place with a low rating . \nname : The Twenty Two | food : English | area : city centre | family friendly : yes||The Twenty Two yes people ate English at the city centre . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : no||The Giraffe pub serves Indian food in the city centre and is not family friendly . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : no||The Golden Curry has an average customer rating and serves Italian food . This restaurant is not family - friendly \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Indian food at a high price . They are located near Burger King in riverside . with an average rating and are not child friendly . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an children friendly place that serves French food . They are located near The Sorrento in the riverside area . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||The shop Fitzbillies near of The Six Bells we can get French food in less than £ 20 \nname : Blue Spice | food : English | price : high | area : riverside||English Blue Spice has a high price range . It is on the riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop located at city centre . It is family - friendly and low cost but has a low customer rating . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||The Giraffe , a child - friendly pub that offers Italian cuisine , is located in the riverside area . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop selling fast food , located near Café Sicilia . It is not kid friendly , a moderate price range with a customer rating 1 out of 5 . \nname : Green Man | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Indian food in the average price range . It is located near All Bar One . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family - style restaurant located near All Bar One . The pricing at Green Man is mid - range . Green Man is near the River . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a children friendly coffee shop near Café Sicilia . It serves French food costing more than £ 30 and has an average customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing moderately priced Indian food . It is kid friendly and can be found in the city centre near Raja Indian Cuisine . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a 1 star rated cheap restaurant next to the river \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||The Mill is a pub offering Fast food . It is located in riverside and is in a moderate price range . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||A customer rated the coffee shop The Vaults 3 out 5 located near Café Brazil by riverside . The coffee shop has moderate price ranges . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Near All Bar One , there is a high priced Japanese restaurant named Midsummer House . It has received a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside||For a pub that serves Italian food , visit The Mill . It is located in the Riverside area . The prices range from £ 20 - 25 . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||For a family friendly pub located near Ranch , The Cricketers is a wonderful choice with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an adult Japanese coffee shop located in the city centre near Crowne Plaza Hotel . They have received poor customer reviews . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||A pub called Zizzi is a great place to eat Chinese food . The customers have given it outstanding ratings , especially for its family friendly environment \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Located on the riverside , near The Sorrento , Browns Cambridge is a family friendly establishment that serves English cuisine . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Serving Fast food and child - friendly , Browns Cambridge is a restaurant near The Sorrento in riverside . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre , near the Express by Holiday Inn , is a Fast food restaurant called The Rice Boat . The restaurant has a 5 out of 5 rating , boasting a family - friendly environment and cheap prices . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter near Café Sicilia is a coffee shop serving Italian food in the high price range with average ratings and not child friendly . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub providing dine in the low price range . It is located beside Café Rouge and welcome families . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kids friendly coffee shop near Avalon with a low price range in the riverside \nname : The Cambridge Blue | Type : pub | food : Indian | price : high | near : Café Brazil||The Cambridge Blue is a pub that serves Indian food in a high price range . It is located near Café Brazil . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry Indian restaurant is a good for the whole family . Average customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||There 's a no kids friendly Japanese coffee shop by the riverside with a 3 out of 5 rating with prices £ 20 - 25 called Fitzbillies . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Fast food restaurant name Loch Fyne is kid friendly . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||A moderately priced Browns Cambridge is rated 1 out of 5 stars . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Near the riverside is a not family - friendly , low rated restaurant called The Waterman that serves Japanese food for less than £ 20 . \nname : The Golden Curry | food : English | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a highly rated English food restaurant located near Café Rouge . The Golden Curry is children friendly near the riverside . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||A Fast food restaurant with low ratings is The Golden Curry . It is child friendly . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is a French venue named Strada that is children friendly that 3 out of 5 customers enjoyed . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is child friendly and has moderate prices with 3 out 5 customer ratings . It 's located near Express by Holiday Inn . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves Japanese food , child friendly and near the Crown Plaza Hotel . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a 5 star Greek restaurant offering moderately priced food and drink . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is located near Ranch and is kid friendly . They serve French food and have a 3 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop , serving reasonably priced , well regarded Japanese food . Children welcome . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an Indian food store , costumer rating is 5 out of 5 . It is located to the riverside near Yippee Noodle Bar . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop which serves fast food and has a customer rating of 5 out of 5 . Browns Cambridge is located by the riverside , near Crowne Plaza Hotel . It is not family - friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||In Riverside with low customer rating serving Japanese food . The Waterman a eat in Type pub . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers is a coffee shop with an average customer rating . This coffee shop also sells Indian food and is children friendly . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Strada is a fast food pub located near Yippee Noodle Bar . It has an average customer rating . \nname : The Punter | food : English | price : high||The Punter , an English restaurant , has a high price range . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||The coffee shop named Blue Spice in riverside near Avalon has a price range of more than £ 30 , a customer rating of high , and children friendly service . \nname : Loch Fyne | Type : restaurant | food : Italian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly Italian restaurant with a £ 20 - 25 price range \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a cheap French coffee shop near The Portland Arms in the city centre . It has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a Fast food place in the city center . Is it not family - friendly . its price range is less than £ 20 . It has low customer ratings . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Highly recommended Wildwood is a coffee shop offering fast food at reasonable prices , it is sited in the city centre near Ranch . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||Zizzi is located by the riverside . It is an average rated family friendly coffee shop that serves cheap . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a French food restaurant located near the riverside , which is family friendly and has a five out of five customer rating . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi is an English pub that has a low rating , it is not child friendly . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||The moderately priced restaurant , Taste of Cambridge , has a 3 out of 5 star customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||Loch Fyne is a restaurant providing Italian food in the low price range . It is located in the city centre . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The City Centre restaurant The Waterman is a 3 out of 5 rated Japanese restaurant , child friendly and high priced . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : no||An average restaurant in the riverside area serving Italian food is The Rice Boat . It is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a family friendly fast food restaurant . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter costs more than £ 30 and is a Fast food type \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a high customer rated Italian coffee shop . It is located at the city centre and their price range is L20 - 25 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant near the Express by Holiday Inn . They are north of the City center . and is family friendly . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||Cotto is a Japanese restaurant near Ranch with a low customer rating . It is not considered family - friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Near Avalon in the riverside area is a coffee shop call Blue Spice . Its child friendly and has a customer rating of 5 out of 5 . Price range is more than £ 30 . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : average||Wildwood offers high - end Chinese pub fare with average reviews . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms that sells fast food for less than 20 Euros . It is in the riverside area and has a low customer rating . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||In the price range of £ 20 - 25 includes Alimentum . Alimentum has a high customer rate as well . They are in the riverside area near Yippee Noodle Bar and serve French food . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||The Green Man , located in the city centre area , servers English food for less than £ 20 , but is not family - friendly . It is near All Bar One . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House serves Japanese food for an average of £ 20 - 25 in riverside near Clare Hall . \nname : The Vaults | food : Chinese | price : high | family friendly : no||The Vaults serves expensive Chinese and is not suitable for children . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is in the city centre , near The Rice Boat . Moderately priced , not family friendly and rated 1 out of 5 . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||Kid - free , Japanese restaurant , The Golden Curry , serves moderately priced food . It is located near The Bakers . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House is a low priced Indian restaurant located in the city centre near Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop in the city centre rated 1 out of 5 . It is fast food and has a moderate price range . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Vaults has Italian the whole family can enjoy for low prices . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a family friendly Japanese coffee shop . Highly priced and rated 1 out of 5 . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||A family friendly English pub in the riverside area , which is also cheap is The Olive Grove . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : city centre||The Phoenix is a Fast food restaurant rated 5 out of 5 in the city centre . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||Strada is an Italian food pub that has high customer rating . It is located near to Yippee Noodle Bar . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is a good family restaurant for a just price \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Although the Indian food served at the coffee shop called The Punter , near Café Sicilia , is cheap , the customer rating is maximum . However , it is not family - friendly . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada located near Rainbow Vegetarian Café serves expensive Italian food . It has an average customer rating and does not allow children . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no||Aromi is a Japanese coffee shop located on the riverside . It is not family - friendly and has an average customer rating . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : city centre||With moderate pricing and handy city centre location , The Mill is a tempting Italian style pub . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||A highly rated pub ranging in price from £ 20 - 25 , Cocum is kid friendly . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||The Fitzbillies is a French restaurant near The Six Bells . It has an average price range . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Burger King and The Eagle Shop are a fast food restaurant located north of the City center . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 3 out of 5 | family friendly : yes||The Zizzi kids friendly pub offers Japanese food and has a customer rating of 3 out of 5 . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a child friendly Japanese place on the riverside . It is near All Bar One and costs more than 30 pounds . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a fast food coffee shop that has a moderate price range and is kid friendly . It has a rating of 3 out of 5 and is located along the riverside near Burger King . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in riverside is The Golden Palace . It is a pub that serves food for less than £ 20 \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a nice coffee shop north of the city centre that delivers take - away . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant is a cheap place for all the family to relax and socialize together . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman , located near the riverside , provides Italian dining for families at affordable pricing . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||Strada is a family - friendly restaurant in the price range of less than 20 £ , however it has low customer ratings . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : yes||Loch Fyne is Located in the heart of this historical town \nname : The Wrestlers | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an Italian coffee shop . It is kids - friendly with a price range of £ 20 - 25 . It is situated near the Raja Indian Cuisine establishment in the riverside area . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter , a non children friendly coffee shop near Café Sicilia , has a high price range and an average customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is and Indian coffee shop in the city centre located near Burger King , they are family friendly , low ratings and priced less than 20 . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||The Mill is by riverside . It is a French pub with a price range of £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a non family friend coffee shop that is located in the city centre near Crowne Plaza Hotel . It sells Japanese food and has an average rating . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is a high priced pub on the riverside with an average customer rating . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||For over £ 30 , you can visit The Twenty Two , a child friendly place on the riverside , near to The Rice Boat . Customer satisfaction is 5 out of 5 . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||There is a cheap family friendly restaurant The Vaults . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : no||The Olive Grove is a moderately priced pub in the city centre , which serves French style food however is not child friendly . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a moderately priced coffee shop with Indian food near Café Sicilia . It is family friendly and has a customer rating of 1 out of 5 . \nname : The Punter | food : Japanese | price : cheap||The Punter has Japanese food in the cheap price range . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||With prices under £ 20 , The Vaults is a French family friendly restaurant . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located in City centre near Café Rouge . It is family friendly and has a five star rating . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry provides Chinese food . It has a 5 out of 5 customer rating . It is in the riverside area near Café Rouge and is not family friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a moderately - priced coffee shop located near Ranch . Customers rate its Japanese food a poor 1 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a family friendly Indian restaurant . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee Shop offers Indian food in the high price range . Located in the center of the city , this child friendly dining choice is located near Raja Indian Cuisine . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a low priced , five star coffee shop , located close to the river and only a short distance from the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The restaurant Fitzbillies is a family friendly restaurant serving luxury breakfast outside of the downtown core . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an expensive coffee shop for families . It gets great ratings and is in the centre of the City . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||There is an expensive restaurant , The Wrestlers , serving French food in the £ 30 and above price range . It has 5 out of 5 in customer ratings and is child friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving Japanese food which is located in the city centre . You can dine here for less than £ 20 on average , however their customer rating is low and they aren 't family - friendly . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice offers food and drink and is located close to the river \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the city centre area near The Express by Holiday Inn . It 's prices are low to moderate for Chinese food , but it 's not family friendly , and it 's customer ratings are low . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a five star coffee shop located near Clare Hall \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns is a pub at the riverside , offering excellent customer service at a low price . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||Alimentum is a Japanese restaurant that is near a riverside , kid friendly and has moderate price ranges . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no||Cocum is a modern coffee shop specializing in French pastries and coffee with prices averaging more than £ 30 . Cocum has been giving a low customer rating because it is not child friendly . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a more than £ 30 Chinese restaurant with high customer rating . It is children friendly and located near the city centre and Express by Holiday Inn . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Wildwood is a cheap coffee shop serving Fast food with an average rating near Ranch . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||A moderately priced coffee shop named Zizzi is kid friendly and has a 1 out of 5 rating . \nname : Midsummer House | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House serves Japanese food for a moderate price . They are located near All Bar One and have a customer rating of 1 out of 5 . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is a restaurant that serves Japanese food . It is children Friendly and costs more than £ 30 . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Cocum coffee shop serves fine food and is for the whole family . It is high priced and rated five stars . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne is a low price restaurant that offers breakfast meals and is for the whole family \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||There is a family friendly coffee shop near The Portland Arms called The Cricketers . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a non family - friendly coffee shop near Crowne Plaza Hotel . This Riverside area coffee shop currently has a low customer rating \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||Japanese food that is not child friendly is near All Bar One called Green Man . Located city centre and price range is more than £ 30 . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : yes | near : Café Rouge||The Plough is a Chinese pub , near Café Rouge . They have a high price range and are child friendly . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is a family friendly restaurant serving Japanese food . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||Giraffe , an excellent coffee shop near The Bakers . Not children friendly with prices of more than £ 30 \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a low - priced , one star coffee shop located near the Ranch . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre near the Express by Holiday Inn is an Italian food place called The Rice Boat . It is not kids friendly but has a 3 out of 5 customer rating and a moderate price range . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One , in the riverside area is a kid friendly English food place named Green Man , which has a moderate price range \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter offers high - quality food and beverages that rival Café Sicilia . This coffee shop also has a five star rating . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop serves good Italian food at a fair price . Families are welcome . \nname : Cocum | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||There is a a high rated coffee shop Cocum that provides Italian food in the price more that £ 30 but it is not children Friendly . \nname : Giraffe | Type : pub | food : Chinese | area : city centre | family friendly : yes||Giraffe is a Chinese pub in the city centre and is family friendly . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Near Café Rouge in the city centre is The Golden Curry . They serve sushi and are rated 1 out 5 . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Serving French food on the riverside near the Yippee Noodle Bar is Alimentum . The food is less than £ 20 . Customers rate the Alimentum as average . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kids Friendly pub located at riverside . The price range is 20 to 25 £ . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||Wildwood is an average priced British pub that has a 3 out of 5 customer rating . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Indian food . It has an average customer rating . It is located by the riverside . It is child friendly and it is near Café Rouge . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||A low cost , family friendly , coffee shop has opened called the Cocum . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is an expensive , children - friendly pub at the riverside , and it provides French cuisine . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is a coffee house located in The Sorrento area of the City centre . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kid friendly restaurant , rated 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||The Chinese restaurant Loch Fyne is family friendly . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is located in the riverside and they are average ratings . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Close to the Rainbow Vegetarian Café in the city center , you can find The Strada . This is an excellent 5 star , family friendly restaurant . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Nearby the city centre and The Portland Arms is a five star expensive coffee shop called Cotto . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Lowly rated The Rice Boat is a family - friendly venue which offers Italian food at mid - range prices , it is situated in Luton near Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The riverside coffee shop The Golden Palace sells Fast food that is highly rated , priced at £ 20 - 25 . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||If you are looking for a cheap restaurant , I can recommend Fitzbillies . It is family friendly and is located near the Express by Holiday Inn . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there is an expensive non - children friendly fast food called Strada , with an average rating . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman , a cheap riverside family friendly restaurant , has 1 star . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||Near Café Adriatic , there is a pub named The Vaults with low customer rating and a price range of less than £ 20 . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : average||Browns Cambridge has an average customer service that serves Japanese food . It has a price range that is less than £ 20 . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle is located in the area of Riverside . The price range can be quite expensive at £ 30.00 or more however the customer rating is 5 out of 5 . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is medium priced and rated three stars . It is in the City center close to the Express by Holiday Inn . It serves fine drinks , fruits , and is for the whole family . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : no||Strada has a low customer rating , a price range of more than £ 30 and is not kid friendly . \nname : Browns Cambridge | food : English | price : high | customer rating : 1 out of 5||Browns Cambridge serves English fare but is pricey and only scores 1 out of 5 in customer ratings . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||A French restaurant called the Blue Spice offers food for more than 30 Euros on the riverside . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a child friendly fast food eatery with a high customer rating , near Café Rouge , in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||1 out of 5 likes Cocum high priced coffee shop which is children Friendly and serves Fast food . \nname : Loch Fyne | food : Chinese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is low . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||Near Café Sicilia , there is a kid friendly Japanese food coffee shop called The Punter . Their customer rating is low , and their price rang is more than £ 30 . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto serves Chinese food , is rated highly , is kid friendly , and is near Ranch . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is a high priced , fast food restaurant , that offers a family friendly atmosphere . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a highly rated , expensive child friendly pub . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix provides Chinese food and is in the high price range . It has a customer rating of 1 out of 5 and is located in the city centre . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : no||The Olive Grove is a non child friendly , riverside pub providing fast food at a high price range . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is an expensive restaurant near The Six Bells . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is a high priced pub near Café Adriatic , with a customer rating of 1 out of 5 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A children friendly French food eat out place located at the riverside with 5 out ff 5 customer ratings and sells food for more than 30 pounds . Its called The Waterman \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||At the riverside is The Rice Boat which serves English food . It is near Express by Holiday Inn , is kids friendly and has a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a cheap but not family friendly coffee shop near Café Sicilia in the riverside area . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Located in riverside , Green Man is in the moderate price range which is not kids friendly . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Taste of Cambridge has a high customer rating , but is expensive . \nname : The Waterman | price : less than £ 20 | family friendly : yes||There is a family Friendly The Waterman with a less than £ 20 price range . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers , an adult restaurant , offers food and beverages at a low price . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly restaurant located in the city centre near Café Rouge that provides Indian food which has a low customer rating . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : no||Alimentum is a Japanese eatery in the city centre . It offers moderately priced food but is not kid friendly . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop that offers Indian food in the moderate price range . It has a customer rating of 1 out of 5 and is located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located near the Crown Plaza Hotel , in the riverside area . Although the customer rating for this coffee shop is low , they are family - friendly and serve Italian food . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is high - rating coffee shop that serves French food that is more than £ 30 and is in Riverside near The Portland Arms . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub that is not family - friendly . Near The Portland Arms , it serves French food . \nname : Strada | Type : pub | food : Italian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada , the pub near Yippee Noodle Bar , serves Italian food and has a 5 out of 5 rating . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||The Riverside area has Alimentum , a cheap , family - friendly place for food . \nname : Green Man | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||On the riverside close to the All Bar One is a restaurant which serves English food and is child friendly . It is called The Green Man and is reasonably priced at between £ 20 to £ 25 for a meal . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a fast food restaurant at the city centre . It has a price range of less than £ 20 , and it is not family - friendly . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a child friendly Italian restaurant with high customer ratings located in the city centre . It has a price range of over £ 30 . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : city centre||Located in the city centre , The Waterman is a French pub that is highly rated by its customers ; averaging a rating of 4 stars out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Burger King is children friendly , located on the riverside , has an average customer rating , provides coffee shop quality food . There is a high price ranged Italian eatery named The Eagle nearby . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||While not family - friendly , The Eagle coffee shop has an average customer rating for it 's Japanese food . Priced less than £ 20 per meal it is located near Burger King in the riverside area . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop by Café Sicilia with a average price range and a high customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||There is a children friendly , high priced , French restaurant called Loch Fyne . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a higher priced Indian restaurant within the city centre , near the Express by Holiday Inn . The restaurant is children friendly , and has a high customer rating . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a kid friendly restaurant near Express by Holiday Inn . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||In the city centre area is a child friendly eatery which was given a 3 out of 5 customer rating . This coffee shop is located near Avalon , offers menu items in the high price range , and is called Blue Spice . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid - friendly restaurant in the Riverside area . This restaurant has prices in the average range with a customer rating of 3 out of 5 . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Also near All Bar One is an Indian place called Green Man . It is located in riverside , family friendly , and has a price range of less than £ 20 . \nname : The Punter | food : Japanese | price : £ 20 - 25||There is a Japanese restaurant with a price range of L20 - 25 called The Punter . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is a cheap city centre located place near Café Adriatic . 5 out of 5 customer satisfaction rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly coffee shop that has a price range less than 20 pounds featuring fast food near Raja Indian Cuisine in the city centre . \nname : Bibimbap House | food : Indian | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House provides Indian food in the more than £ 30 price range . It is located in the riverside . It is near Clare Hall . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia there is a children friendly Indian coffee shop called The Punter . It is in the high price range with an average customer rating . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn in the city centre there is an Indian restaurant called The Rice Boat in the high price range . It is children friendly and has a customer rating of average . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||If you 're looking for a coffee shop in the riverside area then you could try The Vaults . It is located near Café Brazil , and has a customer rating of 3 out of 5 . It has a moderate price range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a Japanese coffee shop called ' The Eagle ' which has a cheap price range . It is located in the riverside area near Burger King and has a 5 out of 5 rating . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Express by Holiday Inn is located near a full service family friendly restaurant called The Rice Boat located north of the City center . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||The restaurant Loch Fyne is a children friendly fast food chain that is more than £ 30 . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Blue Spice in the city centre is an average rated , family - friendly venue , with a cheap menu . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies an Italian restaurant near The Six Bells is inexpensive . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a restaurant called The Rice Boat , it has a 5 out of 5 customer rating but costs more than £ 30 . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop serving Indian food for a moderate price range in the riverside area near The Sorrento . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||A high price , 1 out of 5 pub with English food called Wildwood . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop . It is moderately priced . It is near Burger King . It has a customer rating of 3 out of 5 . It is in city centre . It is kid friendly . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree serves Italian food , is kid friendly and located near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area near Burger King is a coffee shop called The Eagle . The Eagle serves Indian food and is children friendly . The Eagle has a customer rating of 1 out of 5 stars . It has a high price range . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Cotto near Ranch is child friendly and sells average Italian food . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The Olive Grove is a restaurant in Cambridge . The Olive Grove is near the river . The Olive Grove is not for families . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Zizzi a cheap coffee shop by the riverside is not family - friendly . It has a customer rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||Near The Sorrento , in the riverside area , there is a cheap coffee shop called The Mill . \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : no||Alimentum is a Fast food restaurant with a high price range in the city centre . It is not children friendly . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Given 3 out of 5 , The Cricketers is a kid friendly pub near Ranch . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located at Burger King in City centre , The Eagle coffee shop offers good affordable meals and is family friendly . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is an affordable , child friendly French restaurant in the city centre near to All Bar One . \nname : Midsummer House | food : French | price : cheap | customer rating : 5 out of 5 | near : All Bar One||just down the road from All Bar One , is a cheap 5 - star restaurant named Midsummer House . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Punter has a moderate price range . It is located in the riverside area and is kid friendly . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat provides Indian food It is located in the city centre . Its customer rating is low . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix provides Indian food in riverside . it has a moderate price range and a customer rating of 1 out of 5 . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Located next to the river is the restaurant , Zizzi . This place serves low priced meals . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Close to All Bar One on the riverside , there is a restaurant called Green Man that served Italian food , is cheap , and is family - friendly . \nname : The Twenty Two | food : English | area : city centre | family friendly : no||Adult friendly The Twenty Two serves English food and is located in the city centre . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||In the Riverside area , near The Rice Boat , The Twenty Two is a high priced , kid friendly restaurant . it is rated 3 out of 5 . \nname : Green Man | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Located near All Bar One , Green Man is a children friendly establishment located in the riverside area , offering English cuisine , with a price range of between £ 20 - 25 . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an Italian coffee shop located near Café Sicilia . It is not kid friendly and its prices are moderate . The Punter is rated 3 out of 5 stars by customers . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Midsummer House is a three star fast food burger restaurant that is located near Café Rouge . \nname : Fitzbillies | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||A moderately priced place to visit near the Express by Holiday Inn , Fitzbillies , is kid friendly but has a 1 out of 5 customer rating . \nname : Strada | food : English | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is an expensive , 3 star restaurant located near the Rainbow Vegetarian Café . \nname : Midsummer House | food : Fast food | customer rating : high | near : Café Rouge||Midsummer House is a fast food restaurant located near Café Rouge it also has a high customer rating . \nname : The Phoenix | food : Chinese | customer rating : average | area : riverside||The Phoenix is a riverside Chinese restaurant with average customer ratings . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : yes||An Indian restaurant , The Rice Boat a family friendly place . It has an average customer rating . It is located in city centre \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||kids friendly Japanese place near riverside named The Twenty Two \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a moderately priced restaurant that serves pasta and wine . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies is a low priced Japanese restaurant in the city centre near The Six Bells . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly restaurant located near Rainbow Vegetarian Café with an average customer rating and in the high price range . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||A high priced coffee shop that serves fast food is The Wrestlers , but has a non - children friendly atmosphere . It is located in the city centre near Raja Indian Cuisine \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman is a pub that serves French food . They have low customer rating and they are in riverside . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has Italian cuisine . It is located in the riverside area near Café Rouge . This restaurant has an average customer rating and yes it is child friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace coffee shop is a popular Japanese riverside establishment is worth visiting . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi is a 3 star breakfast pub with good food . \nname : The Twenty Two | food : English | family friendly : no||The Twenty Two has great food \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is Strada , which sells cheap Fast food with an average customer rating and is family friendly . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||In the center of the city the Blue Spice which is kid friendly having a price range between 20 - 25 euros with a high customer rating . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||The Golden Palace is a low customer rated restaurant near the riverside . \nname : The Golden Curry | food : Chinese | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a Chinese food restaurant that is low - priced . It is family friendly and located near The Bakers . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Japanese food is served at the family - friendly pub called the Giraffe . It is located on the riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is an expensive coffee shop that serves Indian food . It is located in the riverside area , near Burger King , and does not allow children . Customer ratings are average . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub known for its Italian food is children Friendly and is near The Portland Arms . \nname : The Twenty Two | food : Japanese | family friendly : yes||Children friendly Japanese restaurant named The Twenty Two . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix is a inexpensive fast food place located on the north side of town . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||Japanese restaurant The Vaults is children friendly and the price range is slightly above average \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a child - friendly Japanese coffee shop located in the city centre , near Burger King . It receives low customer ratings and is in the high price range . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry serves Italian food in the city centre . It is not family friendly and has a low customer rating . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The moderately priced Chinese restaurant , The Waterman , has a customer rating of 1 out of 5 , is not kid friendly and is in the riverside area . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two has Japanese food and is children Friendly . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly restaurant in the low price range serving Italian food . It is located in the city centre near the Express by Holiday Inn . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||The Japanese restaurant near Clare Hall and the River , Bibimbap House , has a low price range . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Browns Cambridge offers Japanese cuisine ranging above 30 euros . With a low customer rating to improve . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||In the city centre is a Chinese called The Waterman its family friendly but expensive and not got good ratings . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kids friendly place of English cuisine with ratings 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||Loch Fyne is an Italian restaurant that is not family - friendly \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood is a reasonably priced , centrally located pub that also serves Italian food . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum sells expensive Japanese food . It is a children - friendly coffee shop with a 3 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies , is a Japanese , kid friendly coffee shop with a 3 out of 5 rating and some fair prices . It is located on the riverside . \nname : The Phoenix | food : French | customer rating : high | area : riverside||The Phoenix is a high rated French restaurant located by the river . \nname : The Golden Curry | food : French | customer rating : high | family friendly : yes||The Golden Curry is a French restaurant which is Kids Friendly and has a High Rating \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is family - friendly serving Fast food located in the city centre near Café Rouge . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : city centre||While you 're at the city centre , check out the French pub The Waterman . Customers rave about it , giving it a 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is an Italian coffee shop with a customer rating of 3 out of 5 . Located in the city centre , it has a moderate price range and is generally regarded to not be kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located on the riverside near the Crowne Plaza Hotel , Taste of Cambridge is a children friendly coffee shop that offers fast food . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||Japanese restaurant , The Golden Curry , offers a kid - friendly atmosphere and is located near The Bakers with a moderate price range . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : no||Giraffe is an Italian pub located in the city centre . It is not a family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a Japanese coffee shop , located in the city centre . It has a low customer rating and is not child - friendly . The price range is more than £ 30 . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Japanese restaurant , The Rice Boat , is kid friendly , in riverside with a 3 out of 5 rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop located at the riverside , near The Portland Arms , it is highly rated and serves fast food , prices around £ 30 a head . \nname : The Golden Palace | Type : pub | price : high | area : riverside | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café in riverside , The Golden Palace is an expensive pub \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||Located in Riverside near Café Sicilia , is The Dumpling Tree , a child friendly coffee shop on the higher end of the price scale . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a kid friendly coffee shop serving Fast food in the city centre . It has a high customer rating and a price range of £ 20 - 25 . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House can be found near Clare Hall in the riverside area , and serves fast food with a moderate price range . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a fast food coffee shop located near Café Sicilia . It is family friendly , has an average customer rating , and the prices are cheap . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop selling fast food . It is not family - friendly , low price range with a low customer rating . It is located in the city centre near Burger King . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is 1 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is an English restaurant located in the city centre . It is pricey , with an average customer rating and is child friendly . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is located near Café Adriatic on the riverside with a moderate price range and customer rating . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies is a restaurant near Rainbow Vegetarian Café , with prices ranging more than £ 30 . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a low price fast food restaurant located at city centre but has low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a French coffee shop located in riverside near the Burger King . It has an average price range of £ 20 - 25 and a 3 out of 5 customer rating , however it is not kid friendly . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is in riverside , selling family friendly Italian food . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The Waterman , an English pub , is a three star venue on the riverside . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||The Mill serves fast food at a cheap price in a coffee shop environment near The Sorrento in the riverside area . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located near Burger King in the Riverside area , visit the The Eagle coffee shop for a cheap family friendly environment with Italian food and a 5 out of 5 customer rating . \nname : Cotto | food : English | customer rating : average | family friendly : yes | near : Ranch||There is an average restaurant near Ranch called Cotto with English food and fun for the whole family . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is an Italian restaurant with a price range of £ 20 - 25 , is located at the city centre , is kid friendly and has a high customer rating . \nname : Midsummer House | food : Fast food | customer rating : average | near : Café Rouge||Located near Café Rouge , Midsummer House is a fast food venue with an average customer rating . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||With a rating of 3 out of 5 , the Midsummer House offers French cuisine near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||Near Café Brazil , there is The Cambridge Blue pub serving British food at mid - range prices . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | near : Café Brazil||The Vaults is a high customer rated coffee shop in the £ 20- £ 25 range located near Café Brazil in the city centre . \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Clowns is a low - priced restaurant located near Café Sicilia . It is not kid - friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace has a low customer rating and is located on riverside . They serve Japanese food and coffee for less than 20 euros . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no||Aromi is a Japanese coffee shop located in the city centre . They have low customer ratings and are not family - friendly . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is family friendly with a low price range . It has a 5 out of 5 customer rating as is located near Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Japanese coffee shop named Cocum is moderate priced , not friendly to kids , and has low ratings . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||There is a fast food restaurant called The Vaults that is kid friendly and costs 20 - 25 . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : yes||For Indian food try The Golden Curry it has low customer ratings , but is family friendly . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||The Taste of Cambridge is a regular rated location with moderately priced food . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||The Cambridge Blue restaurant has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : English | customer rating : 3 out of 5 | area : riverside||The Waterman is a riverside - situated pub serving English food and is awarded a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat a child friendly Italian eatery that 's moderately priced and rated 1 out of 5 . Located in Riverside area near Express by Holiday Inn . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||A riverside night life Fast food chain called The Rice Boat near Express by Holiday Inn is a high end and highly praised venue . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||With a high price range and a 1 out of 5 customer rating , The Rice Boat serves English food and is children friendly . it is the city centre near the Express by Holiday Inn . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum serves pub grub with good rating in the low price range . adults only \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||The highly recommended Wildwood pub is sited in the city centre , it serves higher priced British food . \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Try Zizzi , an inexpensive restaurant in Riverside . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults is a cheap Japanese adult only eatery \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 3 out of 5||Wildwood , Pub and Indian food , with moderate price range . Customer rating 3 out of 5 . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Kids Love that The Golden Curry serves some of the best Chinese food in Cambridge . Located on the river , near Café Rouge . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar , Alimentum is a restaurant which provides Indian food at a high price range and with an average customer rating . It is located in the city centre . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Given a poor rating , Browns Cambridge is a fast food restaurant \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||Rated 5 out of 5 by customers , Cocum is a cheap Fast food type coffee shop that is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||Loch Fyne is not family - friendly , and costs less than 20 . It is a Japanese restaurant . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||Located near riverside , The Phoenix is a very highly rated restaurant serving Indian food . The price range per person is more than £ 30 . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||for more than 30 euro . Travellers Rest Beefeater is a restaurant with a low rating located near Café Adriatic in riverside \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is family friendly with an average rating . It is a coffee shop serving Indian food at a high price . It is located in the city centre near Burger King . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a cheap French coffee shop in riverside with average customer ratings . It 's not family - friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : city centre||The Waterman pub has fast food located near city center . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Chinese food costing between £ 20 - 25 is served at The Waterman . Customers highly rate this place which is located in the city centre and kids friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no||The Olive Grove is a non child friendly pub serving moderately priced food in riverside . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub serving sushi . It 's near The Portland Arms and young families are not welcome \nname : Blue Spice | food : English | price : more than £ 30 | area : riverside||Blue Spice is an English restaurant located on the riverside . Their price ranges higher than 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop located in the city centre . Although it is child friendly , it has a low customer rating and is expensive , being the the price range of more than £ 30 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi coffee shop is kids - friendly and located near the riverside . It is moderately priced , but be aware that it has a customer rating of 1 out of 5 . \nname : Midsummer House | food : Chinese | customer rating : high | near : Café Rouge||Highly rated Chinese food at Midsummer House near to Café Rouge . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||3 out of 5 stars for the French coffee shop , Cotto , near The Portland Arms in the city centre . Plates are average price . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||If you are looking for an inexpensive family friendly restaurant , try Travellers Rest Beefeater . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi , with a customer rating of 5 out of 5 , is a highly rated Italian coffee shop located in the city centre . No , it is not family - friendly . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum , has a high customer rating in the price range of more than L30 for English food near Yippee Noodle Bar in the riverside area . \nname : The Golden Curry | food : French | customer rating : average | family friendly : no||The Golden Curry is family - friendly and rated average . They serve French food . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : no | near : The Bakers||The Giraffe is a place with an average rating and a price range of less than 20 . This is a adult coffee shop near The Bakers \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||The Twenty Two is a fast food restaurant located near the river . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : no||Alimentum is not kid friendly . They offer French food with a moderate price range in the city centre area . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is near All Bar One , located in the city centre , which serves fast food for less than £ 20 and is family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is an Italian coffee shop near Raja Indian Cuisine in city centre . The Wrestlers is expensive and isn 't family - friendly . \nname : Bibimbap House | food : Indian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House provides an Indian food dining experience , for a mid - range price , close to the riverside by Clare Hall . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that offers moderately priced fast - food in the riverside area near The Portland Arms . Cotto is rated 1 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||The restaurant Wildwood is near Café Rouge and has a customer rating of 5 out of 5 . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House offering French food price range £ 20- £ 25 with a customer rating of 3 - 5 can be found near All Bar One \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum is a medium priced , family friendly fast food restaurant . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a kids friendly French food place with a customer rating of three out of five stars at £ 20 - 25 \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Located riverside , The Giraffe pub offers fast food and is family friendly . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Waterman offers French food in the riverside area for prices less than 20 . It is not family - friendly and has an average customer rating . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : city centre | near : Rainbow Vegetarian Café||The Golden Palace is a pub near the Rainbow Vegetarian Café in the city centre . its prices are more than 30 pounds . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||Located near The Portland Arms is The Dumpling Tree , a family - friendly pub that serves Indian food . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a coffee shop that serves French food and is family friendly near Crown Plaza Hotel on the riverside but it has a low customer rating . \nname : Browns Cambridge | food : Indian | price : more than £ 30 | customer rating : high||There is a restaurant Browns Cambridge with Indian for more than £ 30 at high ratings . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre is a 5 out of 5 rated , family - friendly coffee shop serving cheap Japanese food called Fitzbillies . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||Fitzbillies , near The Six Bells , has French food priced at £ 20 - 25 . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A kid friendly pub named Cocum has a customer rating of 1 out of 5 and a moderate price range . \nname : The Mill | Type : pub | food : Indian | price : cheap | area : riverside||The Mill is a pub that provides Indian food in the cheap price range . It is located in the riverside area . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a fast food shop that is not family - friendly in the city centre near All Bar One . All prices are less than £ 20 . \nname : Fitzbillies | food : French | price : cheap | near : The Six Bells||There is a restaurant called Fitzbillies near The Six Bells that serves French food . It is cheap . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||Browns Cambridge serves English food in the low price range . It has a 1 out of 5 customer rating . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Japanese restaurant Alimentum situated down the riverside is a kids friendly place with average price range . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop that is family friendly serving Japanese food close to the riverside with a low customer rating \nname : The Golden Palace | Type : restaurant | price : cheap||A restaurant with a cheap price range is The Golden Palace . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a moderately priced kid - friendly . restaurant located near The Bakers . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a low cost pub that is not family friendly located near Café Rouge \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||Well known for its inexpensive sushi , The Cambridge Blue pub is located next to the Café Brazil . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an average family friendly Fast food establishment with a low price range , located near Rainbow Vegetarian Café , \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub that serves Indian food for less than £ 20 . They are family friendly and located near Café Rouge . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : city centre||In the city centre there is a Chinese restaurant called The Phoenix with a high price range . It has an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 1 out of 5||There is an Indian food restaurant called The Cambridge Blue with a poor customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||French food is available at the restaurant Loch Fyne . It is children friendly and is in the price range of greater than 30 pounds . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||Although not family - friendly , The Dumpling Tree is an Italian pub near The Portland Arms . \nname : The Waterman | price : moderate | family friendly : no||Welcome to The Waterman . Where our price range for you is moderate . We are not kid friendly \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no||In the riverside area there is a coffee shop and Japanese restaurant called Aromi . It is listed as not being family - friendly and has a customer rating of average . \nname : Wildwood | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | near : Ranch||The coffee shop Wildwood has fairly priced food , while being in the same vicinity as the Ranch . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The kid friendly Cocum is highly recommended by customers . It is a French coffee shop with a price range of £ 20 - 25 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a one star rated , family friendly pub that serves sushi . \nname : The Eagle | food : Japanese | customer rating : high||The Japanese restaurant with the high customer rating is called The Eagle \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Average rated and family friendly restaurant called Cocum . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced , adult oriented coffee shop , located in the city centre , near the Raja Indian Cuisine . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers , located near The Portland Arms , are known for there low customer rating and children friendly coffee shop . Now serving French food . \nname : The Waterman | price : high | family friendly : yes||If you are looking for a children friendly restaurant in the high Price range , give The Waterman a try . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside near Express by Holiday Inn The Rice Boat is located . They have a customer rating of 3 out of 5 , its non kids friendly and they sale Japanese food priced ranged from £ 20 to 25 . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kids - friendly French restaurant with a price range between £ 20 - 25 \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a fast food coffee shop in the city centre near Crowne Plaza Hotel . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is an average , child friendly Japanese restaurant called The Golden Curry . It is near Café Rouge on the riverside . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||Blue Spice is a fine - dining location near the river that offers select cheeses , fruit , and wine . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum has a customer rating of 1 out of 5 and serves fast food . They are located in the riverside area near Yippee Noodle Bar . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum provides Chinese food in the cheap price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is average . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||French food restaurant name Loch Fyne is near the riverside area in The Rice Boat with a customer rating of 5 out of 5 \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a family friendly , five star Italian restaurant just outside of Cambridge city centre . It incorporates family amenities with fine Italian cuisine \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||if you want to eat French food go to Midsummer House near to All Bar One . price range is near about 20 to 25 \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||Giraffe pub is a non family - friendly Italian restaurant on the riverside . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : no||The Rice Boat has Chinese food but is not family friendly and has low customer ratings , located in the Riverside area . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two boasts a riverside view and a family friendly environment for you to enjoy English food . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is a pub that is in the riverside area that is children friendly . It serves Indian food . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , has great dining and take - out at low - prices and is located near Express by Holiday Inn . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||With a rating of 3 out of 5 located near The Rice Boat the Loch Fyne serves Japanese food \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub that serves Chinese food with 1 out of 5 customer rating and kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is a cheap restaurant The Golden Curry located outside the centre of the city next to Café Rouge that provides take - away deliveries . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : city centre||The Phoenix has cheap Chinese food , Has an average customer rating and located in the city centre . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||Zizzi is a pub , it 's family friendly , food is English , customer rating is low . \nname : Strada | Type : pub | food : Chinese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||There is a pub , Strada , located near Yippee Noodle Bar . It specializes in Chinese food and is rated 5 out of 5 by customers . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||The Vaults serves Italian at low prices for the family . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop with prices between £ 20 and 25 . Children are welcome on the premises , and it has high customer approval ratings . Find it nearby The Bakers . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||Zizzi is a pub that offers British food . It is family - friendly and has a one - star rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||There is a family friendly above average price range restaurant Loch Fyne . It is in the city and they serve fast food . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada serves expensive fast food and is located near Rainbow Vegetarian Café . It is not child friendly and has an average customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes||There is a coffee shop that serves Italian food , called Aromi , located in the city centre . It is in a family - friendly atmosphere , and has received low customer ratings . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : city centre||There is a pub Clowns with low customer rating located in city centre . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap restaurant located in The Bakers . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop called Browns Cambridge near Crowne Plaza Hotel in the city centre . They have an average rating but it is not kid friendly . They serve Indian food . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||Cotto is located near Ranch . They are a high - rated and kid friendly Chinese restaurant . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Near the coffee shop Café Sicilia , there is an expensive Japanese restaurant called The Punter which is rated 3 out of 5 and child friendly . \nname : The Rice Boat | food : French | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family friend French food place in city centre with a low customer rating . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||Near Café Adriatic is a high priced pub called The Vaults . It has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge near The Sorrento in riverside , does English food , family friendly . \nname : The Golden Curry | food : Chinese | price : high | family friendly : yes | near : The Bakers||There is a child friendly Chinese restaurant near The Bakers with high prices named The Golden Curry . \nname : The Eagle | food : Italian | customer rating : average||For Italian food , The Eagle has an average customer rating . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an inexpensive coffee shop located near The Portland Arms . This 3 star restaurant also serves sushi . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a kid friendly fast - food coffee shop in the city centre . It is moderately priced and of an average customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree coffee shop has a moderate price range near Café Sicilia is kid friendly located in the riverside area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a high priced Japanese coffee shop near Burger King in the city centre with a high customer rating , but not child friendly \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace coffee shop , reasonably priced five star joint \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Try this 5 out of 5 rated place near Café Adriatic . Cheap , in the city centre , and called Travellers Rest Beefeater . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Want 5 star English food for low prices in a nice riverside restaurant , Alimentum is near to Yippee Noodle Bar on the riverside \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||For a pub style fast food eating experience near Café Rouge , I highly recommend The Plough because it is child friendly but is in a high price range . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||Italian food establishment The Phoenix , rated 3 out of 5 , serves at a moderate price in the city centre . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||Rated 1 out of 5 , The Vaults is a moderately priced coffee shop in the Riverside area near Café Brazil . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high priced restaurant located in riverside near Express by Holiday Inn . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada has averaged priced Japanese food . It is not kid friendly but it is high customer rated . It is near Rainbow Vegetarian Café . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||Aromi coffee also featured fast food and is a children open place to eat bring the family \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : yes | near : All Bar One||All Bar One is neighbor to a new , kid - friendly fast - food joint called Green Man . Green Man is an expensive dining choice in city centre . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : no | near : The Portland Arms||Located near The Portland Arms is The Cricketers , a coffee shop rated one star and unsuitable for families . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly diner located near The Bakers . \nname : Strada | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Indian food in the moderate price range . It is near Rainbow Vegetarian Café . Its customer rating is 1 out of 5 . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : no | near : Café Sicilia||Expensive coffee shop price range over £ 30 . The Dumpling Tree , located in city centre is near the Café Sicilia . This is not children Friendly . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant located in the city centre near Yippee Noodle Bar which has a 3 out of 5 customer rating with a moderate price range . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a restaurant providing Japanese food in the low price range . It is located by The Portland Arms . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Welcome to the Browns Cambridge . We are not family - friendly . Our food is French , and we are located on the riverside near the Crowne Plaza Hotel . Our price range is moderate . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults is a cheap average rated pub located near Café Adriatic . \nname : Alimentum | food : French | price : moderate | area : city centre | family friendly : no||Alimentum is a French restaurant in the moderate price range . It is located in the city center and does not offer a kid friendly atmosphere . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||The kids - friendly Loch Fyne Fast Food restaurant is in the £ 20 - 25 price range . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue is a restaurant providing Italian people rating average \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a Family restaurant with English style food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The Golden Palace has beautiful riverside views , serves fast food in their charming coffee shop . Higher end prices , and mid level reviews . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers provides a low cost option for families and guarantees a great experience . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a children friendly pub serving Italian food with 1 out of 5 customer rating . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum serves Chinese food and has a moderate price range . It has a low rating and is near the city centre and Yippee Noodle Bar . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||The Plough is a cheap and family friendly restaurant located near The Bakers . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant located in the city centre near the Yippee Noodle Bar . Their price range is high . They have a customer rating of 3 out of 5 . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Come enjoy Japanese cuisine at an eatery called The Phoenix , with a 5 out of 5 rating . It is located near the riverside with a higher price range . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a coffee shop offering Japanese food . The price range is more than £ 30 , it is located near riverside , and it has a low customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is coffee shop offers Fast food . Customer rating are high . It is located in the city center . Price range are more than £ 30 . The Café is located near to The Portland Arms . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Coming in with a high customer rating of 5 out of 5 is the Browns Cambridge . The Browns Cambridge serves fast food in the cheap price range . \nname : Strada | Type : pub | food : French | customer rating : average | near : Yippee Noodle Bar||Strada is a pub that serves French food and it is near Yippee Noodle Bar . Customers rate it as average . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced Fast food restaurant in the riverside area . It is near the Express by Holiday Inn . It received a customer rating of 3 out of 5 and is kids friendly . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||Wildwood price range is moderate . The customer rating is 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto has a price range of less than £ 20 . It 's located in the city centre near The Portland Arms . It serves Fast food and is a coffee shop . It has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||A cheap Japanese coffee shop with a low customer rating in riverside is The Golden Palace . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Cocum coffee shop is a low price range restaurant . It is not family friendly and has a lower customer rating . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family friendly Chinese restaurant , with 3 out of 5 customer rating and moderate price range . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a pub that is kids friendly in the riverside area . It is called Taste of Cambridge and is near The Sorrento . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a low cost family friendly Italian pub near Café Rouge . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||The Eagle is a place with low customer rate located in the riverside area . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||There is an English restaurant called The Wrestlers that has a customer rating 3 out of 5 . It is not kid friendly and has a moderate price range . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a cheap , five star restaurant by the river . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||There is Fast food from The Vaults that is more than £ 30 and is children friendly \nname : Blue Spice | food : Italian | price : moderate | area : city centre||Located in the city centre , Blue Spice serves moderate prices for its Italian dishes . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice is located on the river in Cambridge . Moderately priced . Rated one star out of five . Not a family environment . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||Zizzi is an English pub that has been rated 1 out of 5 by customers . It is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : cheap | family friendly : yes||A family friendly restaurant named Loch Fyne has cheap prices . It also has Indian food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop offers Indian food at the high end of the spectrum more than £ 30 , but has received a high customer rating perhaps from the riverside location or the fact that the restaurant is children friendly . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Open in riverside , the Japanese food restaurant , The Rice Boat , with a customer rating 3 out of 5 is a children friendly place \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family friendly sushi restaurant that also has poor reviews . \nname : Wildwood | Type : restaurant | family friendly : yes||The Wildwood restaurant is child friendly . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an Indian restaurant located near Café Rouge in the riverside area . It is adult only and has low customer ratings . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop based in the riverside area near The Portland Arms serving sushi at high prices . It has a five star rating . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Blue Spice , located in the city centre , is high rated , and kid friendly in an average price rating . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||There is a children friendly coffee shop named Zizzi near the city center that is a bit above the average price range , however the customer rating is bit low . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly cheap coffee shop that has French food . It is located in Riverside by Crown Plaza Hotel . Customer Rating is low . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family - style restaurant located near All Bar One . The pricing at Green Man is mid - range . Green Man is near the River . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||For a restaurant with a 5 out of 5 rating , check out Wildwood near Café Rouge . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Let 's eat at the restaurant Strada because it got 3 out of 5 stars . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a 3 out of 5 customer rated kid friendly coffee shop with a moderate price range located near The Bakers . \nname : The Cricketers | Type : restaurant | food : Indian | near : All Bar One||The Cricketers restaurant near All Bar One serves Indian food . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub offers French food in a kid friendly setting near The Portland Arms . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a low cost restaurant offering food that is not family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop located near to The Crowne Plaza Hotel . It does not allow children . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family - friendly pub . It serves English food and has a price range of less than £ 20 . It is located in the city centre . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a high customer rated English restaurant with a price range of more than 30 euros and is not children friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a coffee shop called The Cricketers . It serves Japanese food and it is family friendly . \nname : The Rice Boat | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat which serves French food is located in Riverside received a 1 out of 5 rating and is also kid friendly . \nname : The Eagle | food : Indian | customer rating : 1 out of 5||The Eagle serves Indian foods , rated 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne is and English restaurant . It is not kid friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop that services Indian food in the high price range . Customers rate it 1 out of 5 and say it is not child - friendly . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers was rated 1 out of 5 by customers . This restaurant does not allow children and serves English food in the moderate price range \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant near The Six Bells . Meal typically £ 20 - 25 . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||A cheap family friendly place is The Wrestlers , they sell English food and have an average rating . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : yes||The Golden Curry is a Fast food joint . It has an average customer rating . Yes it is family friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||In Riverside , Blue Spice serves high quality meals for more than £ 30 and also welcomes children . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant located at the riverside near the Yippee Noodle Bar . IT has a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||The Cambridge Blue public house , not far from Café Brazil , is reasonably priced and serves Italian food . \nname : The Golden Curry | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||By the riverside near the Café Rouge is a kid friendly fast food restaurant name The Golden Curry that has a high customer rating . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a family friendly place to eat The Wrestlers that provides fast food . Customers have rated it 5 out of 5 . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : low | near : Café Adriatic||The Vaults is a poorly rated , inexpensive pub near Café Adriatic . \nname : Strada | Type : pub | food : Fast food | customer rating : high | near : Yippee Noodle Bar||The popular Strada pub serves great fast food and is near next to the Yippee Noodle Bar . \nname : Wildwood | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that serves Indian food it has a high customer rating and a price range of £ 20 - 25 near Ranch . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||A French restaurant with prices less than £ 20 is also family friendly . The Green Man in the riverside area is near All Bar One . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum offers fast food at a high price in the city centre close to The Yippee Noodle Bar . Customer ratings are 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||There 's a coffee shop serving Indian food which has a 5 out of 5 customer rating . It 's called Clowns and is in the city centre near Clare Hall . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House provides French food in riverside , near The Rice Boat . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||At the riverside there is an Italian restaurant called Alimentum which is child friendly but has a high price range . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : yes | near : All Bar One||There is a children friendly restaurant , Green Man that serves Chinese food at high price at the riverside near All Bar One . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms in the riverside area is as place called The Punter that is family friendly and cheap . \nname : The Olive Grove | Type : pub | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a riverside pub that is a child - friendly , higher priced , fast - food joint . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Avalon||The Blue Spice is a coffee shop in the city centre near Avalon that has a price range of less than £ 20 and an average customer rating , but is not family - friendly . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man which is near All Bar One located in the area of riverside offers Fast food at a high price range and is not children friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop with Japanese food service , family atmosphere , warm and moderate prices clentele , is located near Burger King in the Riverside area \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : city centre||With a customer rating of average , The Phoenix end serves low - cost English food in the city centre area . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an English restaurant near Yippee Noodle Bar in the city centre . It has a high price range and a customer rating of 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop located next to The Bakers and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a family - friendly , Italian coffee shop , located in City Centre , with a 5 out of 5 customer rating and cheap food . \nname : The Golden Curry | food : Italian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is child friendly , it 's near The Bakers . They serve Italian and their price range is more than £ 30 . \nname : Bibimbap House | food : Indian | price : high | area : riverside | near : Clare Hall||Located riverside near Clare Hall , Bibimbap House serves Indian food in a high price range . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an adult Japanese coffee shop in riverside near Raja Indian Cuisine with price range more than £ 30 \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly full service restaurant located north of the City center . Express by Holiday Inn is located near The Rice Boat . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a restaurant located near Avalon in the riverside area . It is not kids friendly and has a moderate price range and a customer rating of 1 out of 5 . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||While bringing children may not be the best idea , the price at Strada is 20 - 25 and customers have rated it 3 out of 5 . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum sells Indian food in the riverside area . It has a moderate price range and an overall customer rating of 1 out of 5 . It is located near Yippee Noodle Bar in the riverside area . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||The Blue Spice is an affordable coffee shop that is family friendly located in City Centre next to Avalon . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a cheap restaurant near The Rice Boat in the city centre . It is not family - friendly and has a rating of 5 out of 5 . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a none family - friendly restaurant located in the riverside named The Waterman . It serves English food for high prices . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge is a high priced restaurant . It has a low rating . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : city centre||Zizzi is a mid priced restaurant in the city centre . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop near Burger King has the best sushi and is family friendly . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop with an average customer rating . It is located near The Bakers . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : more than £ 30 | near : Café Brazil||Near the Café Brazil there is a Fast food pub called The Cambridge Blue . The price ranges more than £ 30 . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia with a price range of £ 20- £ 25 serves Japanese food with a high customer rating . It is a coffee shop named The Punter and is kids Friendly \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum , the Japanese restaurant , with it 's kid friendly play area 's , situated by the river has a reasonable priced menu , with a meal for two costing between £ 20 - £ 25 . \nname : Bibimbap House | food : Chinese | price : moderate | area : riverside | near : Clare Hall||Bibimbap House serves Chinese food in the riverside area , near Clare Hall , the food is of a moderate price range \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||With a 5 out of 5 customer rating , the coffee shop Cocum serving Japanese food will cost more than £ 30 . It is not child friendly . \nname : Browns Cambridge | food : French | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is in the city centre near The Sorrento . They serve French food but are not family - friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||A kid friendly coffee shop near Café Sicilia , is The Punter which serves Japanese . Price range is L20 - 25 . It has a 3 out of 5 customer rating . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman , a family - friendly restaurant in the riverside area is a good , cheap option . It is family - friendly and has a rating of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There 's a coffee shop called the Taste of Cambridge that serves Italian food near the Crown Plaza Hotel in Riverside . It 's kids friendly . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||If you are searching for a Fast food near the riverside and The Sorrento , and that is not family - friendly , Browns Cambridge might be the place for you . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle located at the riverside provides low prices for there customers \nname : Blue Spice | food : Japanese | price : moderate | area : city centre||Blue Spice is a moderate - priced restaurant in the city centre which offers Japanese food . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a moderately priced restaurant that is near to The Bakers , and is also child friendly . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||The Waterman pub has a great rating and is located outside the city centre \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||Alimentum is and Italian restaurant that is cheap and family friendly . It is in Riverside . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||This pub Zizzi offers fast , family - oriented American fare . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an average Indian coffee shop located in the city centre near Burger King , they are adult only and cheap . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House is a high priced takeaway restaurant . It is located close to Clare Hall near to the City Centre \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : no||There is a nice pub called The Olive Grove in the riverside area . It serves Italian food but is unfortunately not child friendly . It can also be rather expensive . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Aromi is a family orientated coffee shop but it 's not really a good place . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a high - priced restaurant in the area of riverside near the Burger King with an average customer rating and is not child friendly . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||near The Bakers The Golden Curry is Italian food with cheap price that family - Friendly \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a French eatery located near the Express by Holiday Inn in the city centre . It has a customer rating of 3 out of 5 with a price range of £ 20 - 25 and is child friendly . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Avalon||Riverside Blue Spice is a 5 star coffee shop near Avalon with dishes for £ 20 - 25 \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||There 's a cheap restaurant called , Wildwood Pub . \nname : Aromi | Type : pub | customer rating : low | area : city centre | family friendly : no||The pub Aromi is in the city centre . It is not family - friendly and has a low customer rating . \nname : Blue Spice | food : French | price : moderate | area : riverside||Located near the riverside there is a moderate priced French restaurant named Blue Spice . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||In the Riverside area there is a fast food place named Blue Spice . The price ranges less than £ 20 . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||There is an average pub called The Vaults near Café Adriatic that has a price range of less than £ 20 . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum serves Japanese food and is in the high price range with one star rating located near the Yippee Noodle Bar \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||On the riverside near the Crown Plaza Hotel you can find Browns Cambridge . It is a Japanese coffee shop which serves food and is family friendly . Unfortunately it only has a low customer rating . \nname : Blue Spice | food : Chinese | price : high | area : city centre||Blue Spice provides Chinese food in the high price range . It is located in the city centre . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , Strada is a restaurant which provides Indian food and is ideal for family and friends , given their high customer ratings . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||In riverside is a French restaurant called Alimentum . They serve meals for less than 20 pounds and offer a family - friendly environment . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Being kids friendly and with a moderate price range , The Rice Boat is near Express by Holiday Inn and in riverside area with a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a five star restaurant that is family friendly and cheap . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The riverside area has Japanese food at The Phoenix but the prices are more than 30 pounds . Customers rate this low . \nname : The Dumpling Tree | Type : restaurant | food : French | price : high||The Dumpling Tree is an expensive French restaurant . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : yes | near : Café Rouge||The Plough is a pub offering Indian food . Although the price range is high , they do allow children . They are near Café Rouge . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||Located riverside , is The Golden Palace , a low customer rated restaurant . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a children friendly restaurant with an average customer rating . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||There is a French restaurant near Café Rouge with a customer rating of 3 out of 5 called Midsummer House . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a British restaurant in the mid priced range . It is located near All Bar One and families are welcomed . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||A 5 out of 5 restaurant , the Alimentum is a cheap place to eat that serves mainly English food . it can be found in the riverside area , next to the Yippee Noodle Bar . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a coffee shop that tends to be family - friendly . They are located in city centre near Crowne Plaza Hotel . They serve French food and have earned low ratings . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||There is a Fast food kids friendly restaurant , with a customer rating of 3 out of 5 , called The Golden Curry . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||There is a fast food restaurant named The Twenty Two located in the are of the riverside . It is child friendly . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||Cheap , fast food serves at The Phoenix , in Riverside . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a Japanese restaurant with excellent customer ratings and high priced food . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||The Italian Blue Spice in moderate price range located in riverside \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Indian restaurant 5 out of5 . It is located in the river side . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The family - friendly , Japanese style restaurant , The Rice Boat , is located in the city centre near the Express by Holiday Inn . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a low rated child friendly English place with high prices near Rainbow Vegetarian Café . It is named Strada . \nname : The Eagle | food : English | customer rating : 5 out of 5||English restaurant The Eagle is rated five stars \nname : Blue Spice | food : English | price : high | area : riverside||The Blue Spice restaurant is an English style food but high class price . Located in the area of the riverside . \nname : Alimentum | food : Japanese | price : cheap | area : riverside | family friendly : yes||The place in the riverside area that is family friendly and serves Japanese food is called Alimentum . They also have a cheap price range . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly venue offering Japanese food near The Bakers with a price range less than £ 20 \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||The Browns Cambridge is a moderately priced sushi bar with one out of five stars . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The Waterman is low customer rating restaurant in riverside providing Japanese food in the price more than £ 30 . It is not children Friendly . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a lovely Japanese restaurant called The Waterman . It is family friendly , has a cheap price range , is located near the riverside , and has a star rating . \nname : Loch Fyne | food : Fast food | customer rating : average | area : city centre | near : The Rice Boat||Serving Fast food , Loch Fyne , has an average customer rating and is located near The Rice Boat in the city centre , \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada is a highly customer rated restaurant . With kid - friendliness being a priority , Strada is even more dedicated to serving high - quality meals for a median price of 20 - 25 Euros \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is not family - friendly . They serve Japanese food . They are located in the riverside area . It is a pub . There price range is less then 20 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Browns Cambridge , which is a coffee shop , is located in the city centre near the Crowne Plaza Hotel . The serve Indian food with an average rating but is not kid friendly . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||The restaurant Cocum is of average Rating and is children - friendly \nname : Aromi | Type : restaurant | food : Indian | area : city centre||Located in the city centre , Aromi is a restaurant which serves Indian food . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside area there is a low rated , moderately priced English restaurant called The Waterman that is not kids - friendly . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid friendly Japanese restaurant . It is moderately priced with a customer rating of 1 out of 5 . It is located in Riverside . \nname : Strada | Type : restaurant | customer rating : low||A restaurant named Strada has low customer rating \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry offers French food with £ 20 - 25 for kids Friendly near The Bakers . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||There is a cheap priced fast food restaurant , The Phoenix . It is located in the center of the city and has a 5 star customer satisfaction rating . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Cocum , has some of the best food around at low prices . Great for the family on a budget . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue is a Japanese restaurant rated 5 out of 5 by its customers \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman , near the Crown Plaza Hotel , serves Italian food and is kid friendly . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||There is a Fast food restaurant in Riverside with an average customer rating . It is family friendly and cheap , called The Waterman . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub serving Indian food in the under £ 20 range in the city centre that is family friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : yes||Zizzi pub serves Indian food and is family friendly but has a low customer rating \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a French coffee shop near The Portland Arms in city centre offering cheap price range and a 5 out of 5 customer rating . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||For between £ 20 to £ 25 , Fitzbillies close to The Six Bells is the choice in Fast food . \nname : Loch Fyne | Type : restaurant | food : Italian | price : more than £ 30 | family friendly : yes||I have hear of a restaurant named The Loch Fyne , It serves a wide variety of Italian cuisine for under 30 euros . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||There is a moderately rated Indian coffee shop with an average price range in the riverside area named The Golden Palace \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||At the riverside near Café Rouge , The Golden Curry with rating 3 out of 5 serves French food and is children friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||There is a one star restaurant called The Cambridge Blue . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater located near Café Adriatic in the city centre , has a price range of £ 20 - 25 and has a customer rating of 3 out of 5 . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a family friendly restaurant in the riverside area near All Bar One . It serves French food with meals less than £ 20 . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high priced restaurant located near The Bakers . It is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is the name of a coffee shop . They serve French food with moderate price ranges . \nname : The Plough | Type : pub | food : Indian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is an Indian pub located near Café Rouge that is kids friendly with a price range of £ 20 - 25 . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||The Phoenix eat French food on the riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Indian food in the price range of less than £ 20 , with low customer ratings in the city centre area near Burger King and is family friendly . \nname : The Rice Boat | food : Japanese | customer rating : high | area : riverside | family friendly : yes||There is a child friendly Japanese restaurant in the riverside area with a high customer rating , it is called The Rice Boat . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop . It is located in riverside near Raja Indian Cuisine . It is kid friendly . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a excellent Rating coffee shop with the price Range of more than £ 30 located at the riverside near by the Café Brazil . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : high||The Cambridge Blue has a high customer rating . It is a Fast food restaurant . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a French pub near Café Rouge . It is kid friendly with a price range of more than 30 . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||There is a cheap restaurant Loch Fyne located near The Rice Boat that provides sushi . \nname : Cotto | food : French | customer rating : average | family friendly : yes | near : Ranch||Near the Ranch , there is a family friendly establishment called Cotto . It serves French food and has an average customer rating . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The family friendly Green Man serves cheap price English food and is located near All Bar One by the riverside . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto , an Indian coffee shop located in the city centre near The Portland Arms , is an Indian coffee shop in the high price range and with an average customer rating . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||In the area of the riverside , there is a cheap family friendly coffee shop named Zizzi that is average rated . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : city centre||In the city centre The Mill pub serves Italian food at a less than £ 20 price range . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Italian restaurant , The Rice Boat has high customer ratings and is not considered children friendly . Prices range more than £ 30 . The location for The Rice Boat is in the city centre area near Express by Holiday Inn . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a 3 - star coffee shop that offers dishes for all ages , so you can bring the whole family . It is found north of the city center beside the Crowne Plaza Hotel , with a view of the river . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : no||Loch Fyne is a moderate - priced restaurant that provides Indian food . It is not kids friendly . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle is a 5 star restaurant specialising in Japanese food \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap fast food restaurant located near the Express by Holiday Inn . It is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly Indian coffee shop in the high price range in the riverside area of Raja Indian Cuisine . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Non kids friendly place The Rice Boat is in Riverside near Express by Holiday Inn . Range of £ 20 - 25 with a high rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is a family oriented restaurant that features some of the best wine in the area . Also close to Raja Indian Cuisine \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||A moderate price Range coffee shop with a low customer Rating and moderate pricing is called The Vaults . It is located near Café Brazil along the Riverside . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||The Strada is a fast food restaurant near the Yippee Noodle Bar . It has a customer rating of 1 out of 5 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop is high - priced and family friendly . It is located near Avalon . \nname : Blue Spice | food : Italian | price : high | area : riverside||Located in the city centre there is a place Blue Spice with great food . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is located on the river and is a family friendly three star restaurant . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||A restaurant called The Green Man is in the riverside area located near All Bar One . It is kids friendly and offers Chinese food with a moderate price range \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||Cocum coffee shop serves great pasta meals at value prices for all the family . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||Italian food restaurant at The Dumpling Tree in the moderate price range \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is a family friendly Italian restaurant with a low customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no||The Olive Grove serves moderately priced Chinese food in a pub setting in the riverside area but it 's not family friendly . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located in the riverside area Zizzi is a kids friendly coffee shop moderately priced with a customer rating of 3 out of 5 \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||A non child friendly restaurant is Loch Fyne which is Japanese restaurant moderately priced . \nname : The Twenty Two | food : Fast food | family friendly : no||The Twenty Two has fast food and is not kids friendly . \nname : The Golden Curry | food : Japanese | price : high | family friendly : yes | near : The Bakers||The Golden Curry has high price range and serves Japanese food . They are children friendly , located near The Bakers . \nname : The Waterman | food : Indian | family friendly : no | near : Crowne Plaza Hotel||The Waterman provides Indian food . It is not family friendly and it is near the Crowne Plaza Hotel . \nname : The Rice Boat | food : Italian | area : riverside||For Italian cuisine , try The Rice Boat , located in the riverside area . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a kid friendly pub in the riverside that serves Chinese food with a price range of less than £ 20 . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a low rated French diner located by Café Rouge . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat was a family friendly , riverside , and family friendly restaurant with a very low customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a kid friendly coffee shop called The Eagle in riverside are that is price ranged more than 30 . They have French food and it has a 5 out of 5 rating . It 's near a Burger King . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is family - friendly costs less than £ 20 sells fast food and is near All Bar One in the city centre \nname : The Dumpling Tree | Type : restaurant | food : French | price : cheap||The Dumpling Tree is a cheap French restaurant . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a children friendly Fast food place in the high price range with a customer rating of 1 out of 5 , its prices are in the high price range . \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter , Japanese food for £ 20- £ 25 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly , Fast food coffee shop , near the Crowne Plaza Hotel in the riverside area . \nname : Fitzbillies | food : Indian | price : cheap | near : The Six Bells||There 's a cheap Indian near The Six Bells called Fitzbillies . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside||The Golden Palace is an average Indian food coffee shop with high prices in riverside . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly French restaurant with affordable prices under £ 20 . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||For high quality Japanese food , visit The Phoenix in the city centre . It has a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is an Italian restaurant with no family - friendly ambiance with a customer rating 5 out of 5 . \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill pub serves expensive Italian food in the riverside area . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near the Rainbow Vegetarian Café . It is an inexpensive 3 star restaurant . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is an non kid friendly Indian food restaurant with a moderate price range and a 3 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne is a kid - friendly restaurant that serves French food at a moderate price . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||In city centre there is a family - friendly French coffee shop named Aromi that has a 5 out of 5 rating . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Near Café Adriatic in the riverside area is Travellers Rest Beefeater , an expensive , highly rated restaurant . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||in the center . of the town , it is a bar called The Mill , is economical \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||Blue Spice is a Fast food restaurant in the riverside area with prices ranging from £ 20 - 25 \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is the best Japanese coffee shop at the riverside with a kid friendly environment and a 3 out 5 star customer rating . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||In Riverside , there is a fast food place called The Twenty Two that is kids friendly . \nname : The Punter | food : English | price : high||The Punter is a high price English restaurant . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||There is a Japanese coffee shop in the city centre near Clare Hall . Clowns has a customer rating of 5 out of 5 . \nname : The Phoenix | food : Chinese | customer rating : high | area : riverside||The Phoenix provides Chinese food It is located in the riverside . Its customer rating is high . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : no | near : The Sorrento||In the centre of the city is Browns Cambridge . It has Italian and is near The Sorrento . It is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is an atrocious coffee shop that serves Italian near The Portland Arms with a customer rating of 1 out of 5 . Although child - friendly , I would not recommend it . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn on the riverside , The Rice Boat serves Italian for less than £ 20 ans is family friendly . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop in the riverside area near Avalon in the average price range , kids friendly with an average customer rating \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||The Travellers Rest Beefeater restaurant is cheap but not family friendly . It can be found in the city centre . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne serves English food . It is located near The Rice Boat in the riverside area . It has a low rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The coffee shop Fitzbillies is a cheap location to eat French food in the city centre area . Customers give this coffee shop a rating of 5 out of 5 stars . This is not a family - friendly coffee shop . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Browns Cambridge provides fast food at a cheap price with 5 out of 5 customer ratings . \nname : The Eagle | food : Indian | customer rating : high||The Eagle is a highly rated Indian restaurant . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||A expensive coffee shop near Avalon in Riverside rated 5 out of 5 called Blue Spice is not kid friendly . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a restaurant offering English food located in the city centre . It is a kids friendly restaurant with an average price range of £ 20 - 25 and customers rating it high . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace in Riverside serve meals from £ 20 - 25 , it is a coffee shop which has a customer rating of high , it serves fast food . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||The Cambridge Blue is an Italian restaurant with high ratings . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||An average rated restaurant called Wildwood is nearby Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is an affordable coffee shop near the Crowne Plaza Hotel in City Centre . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Japanese food can be found in the city centre at The Waterman . It has a low customer rating , is not family - friendly , and has a price range of more than £ 30 . \nname : Cocum | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||You can get low priced sushi at the family friendly 5 star rated coffee shop Cocum . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is a restaurant providing English food in the high price range and provides a child friendly venue \nname : Blue Spice | food : Fast food | price : cheap | area : riverside||Blue Spice is an affordable restaurant offering quick service options in the riverside area . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Fast - Food under 20 Euros can be found at Fitzbillies in The Six Bells area . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||Located in The Portland Arms is a family friendly fast food restaurant named The Cricketers . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||There is a place in the city centre called The Eagle that has a 3 out of 5 customer rating and a price range of £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||There is a high - priced coffee shop , Cocum , that is opened to all age groups . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge restaurant is a cheap place to eat English food . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is in the city centre near , Yippee Noodle Bar , serving French food , cheap , and rated 5 out of 5 by their customers . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high - end adult restaurant serving Japanese cuisine . Located near the Express by Holiday Inn , they have received fantastic customer reviews . \nname : The Punter | food : Italian | price : less than £ 20||The Punter is a Italian place . The prices are amazing . \nname : Midsummer House | food : Italian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House , a 5 - star Italian restaurant , is not too far from Café Rouge . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : riverside||The Waterman is a Chinese food pub located near the riverside . It has a low customer rating . \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||The kids were not nice in the building called The Vaults . The food was Japanese and was in a moderate price range . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||In the riverside area near The Sorrento is a family friendly , French restaurant named Browns Cambridge . \nname : Fitzbillies | food : Indian | price : high | near : The Six Bells||Fitzbillies provides Indian food in the high price range . It is near The Six Bells . \nname : Bibimbap House | food : Chinese | price : moderate | area : city centre | near : Clare Hall||Chinese food near Clare Hall in the city centre Bibimbap House has a moderate price \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||There is a high priced French restaurant Alimentum located in riverside near Yippee Noodle Bar . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : city centre||The Phoenix is a venue that offers French cuisine . It has a high price range and a customer rating of 3 out of 5 . It is located in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre , Browns Cambridge is a family - friendly , fast food coffee shop that gets average customer reviews . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||If you need a meal in the £ 20 - 25 range , Fitzbillies offers great French food , located near The Six Bells . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a Chinese , high rated food place in riverside near Yippee Noodle Bar with a price range of £ 20 - 25 . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Italian riverside named Bibimbap House price range is high near Clare Hall \nname : Alimentum | food : Indian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a high - end Indian restaurant in the city centre , near Yippee Noodle Bar . It has average ratings . \nname : The Twenty Two | food : Fast food | family friendly : yes||Kid friendly fast food places include The Twenty Two \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||Located on the riverside is The Eagle . It 's known for having a cheap price range but a wonderful customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||There is a Chinese pub called The Dumpling Tree near The Portland Arms that is kid friendly . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre||The Phoenix is an expensive Japanese food restaurant in the city centre with a rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a non - family - friendly Italian coffee shop with low prices and high ratings . Located in riverside , near Burger King . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Earning a high customer rating and prices between 20 to 25 pounds Alimentum is a Japanese restaurant located in the city centre near Yippee Noodle Bar . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant located in the riverside near Express by Holiday Inn that serves Chinese food . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a medium - range priced restaurant , located near the River Cam in Cambridge , that serves a traditional English breakfast . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The fast food place with an average customer rating , The Eagle , is near Burger King in the city center , has a cheap price range and is a family - friendly coffee shop . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located near the Express by Holiday Inn in the city centre , The Rice Boat offers Indian Food . This restaurant is family friendly . The food is inexpensive and customer ratings are average . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||Located by the riverside , The Phoenix is a very good restaurant , which provides inexpensive Italian food . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Near Ranch is a coffee shop named Wildwood , 3 out of 5 customers like the moderately priced coffee shop . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : city centre||The Phoenix offers Italian food in the city centre . It is highly rated at 5 out of 5 by customers . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop in the city centre where they also serve Japanese food . Typically costing between twenty and twenty five pounds customers rate Fitzbillies as highly recommended . It is child friendly . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : city centre||Clowns , a high price pub located in city centre . It has a 3 out of 5 customer rating . \nname : Cotto | food : Chinese | near : Café Rouge||Cotto is a place near Café Rouge where you can get Chinese food . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : city centre | near : Café Adriatic||Near Café Adriatic near the city centre is Travellers Rest Beefeater . They have a low customer rating and are priced at more than thirty euros . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||If you want Japanese go to The Golden Curry . It 's children friendly and doesn 't cost much . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a restaurant providing sushi in the low price range . It is located in the city centre . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : £ 20 - 25 | family friendly : yes||There is a medium priced kid Chinese restaurant Loch Fyne that is kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A Children Friendly Italian restaurant located near Raja Indian Cuisine in the centre of the city named The Wrestlers has high price range for a coffee shop \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant located in the Riverside area with a good customer rating . And yes it provides meals at a price range of less than £ 20 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||The Dumpling Tree is a restaurant that provides low prices food . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne restaurant is Chinese cuisine in quiet atmosphere , at reasonable prices . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a moderately - priced restaurant offering Italian food in a family - friendly setting . However , it is not rated highly by customers . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Kid friendly and located near Crowne Plaza Hotel , The Waterman offers French food . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French restaurant located near the Rainbow Vegetarian Café . The price range is 20 - 25 GBP , customer rating is 3 out of 5 and the place is not kid friendly . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||Riverside is the location of The Golden Palace restaurant that has got a low rating from the customers . \nname : Loch Fyne | food : Fast food | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne serves fast food and is located near The Rice Boat in the city centre but they have low customer ratings . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||A moderately rated family fast food restaurant near the river is The Rice Boat . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||In the riverside area near Café Adriatic is Travellers Rest Beefeater which has a low customer rating and a price ranger of more than £ 30 . \nname : The Waterman | price : moderate | family friendly : yes||Kid friendly , The Waterman where prices ranges are moderate . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||The Cambridge Blue is a restaurant that has a customer rating or 3 out of 5 , and also has Japanese food . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a Fast food coffee shop that is located on the riverside . It is near Clare Hall and has a rating of 3 out of 5 . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||There is a high priced French restaurant near All Bar One called the Midsummer House . The customer rating is 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||The Loch Fyne restaurant is a fast food restaurant with average prices that is kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside , near Raja Indian Cuisine is a moderately priced coffee shop that serves fast food . It is also child friendly and is called The Wrestlers . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is an Indian coffee shop near Burger King that is rated high by customers . It is located in riverside , is not children friendly and has a price range of more than 30 pounds . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : no||In the city centre , there is a non kid friendly , and moderately priced Japanese food restaurant called Alimentum . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||There is a fast food . coffee shop located in the city centre called Aromi . It has a 1 out of 5 star rating . and is family friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman is a pub that serves Fast food on the riverside with a low rating \nname : Wildwood | Type : restaurant | family friendly : yes||A restaurant called Wildwood is family friendly . \nname : The Eagle | food : English | customer rating : high||The Eagle offers English food and has a high customer rating . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the £ 20 - 25 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree is a restaurant that serves French food for more than £ 30 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Near the riverside , Zizzi is a coffee shop with a children friendly atmosphere with a price range of more than £ 30 , as well as high customer ratings . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : no||Zizzi pub is not family friendly but has a high customer rating of 5 out of 5 for it 's Indian food . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is an Italian restaurant called The Waterman in the city centre . It has a customer rating of 5 out of 5 , yet is a cheap place to eat . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||The Loch Fyne restaurant provides a child friendly location for fast food \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||In riverside , The Waterman serves Fast food . It has an average price range and a high customer rating . It is not kid friendly . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||Near the riverside by The Rice Boat is The Twenty Two , family friendly and cheaper than £ 20 , but they have a low customer rating . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||The Giraffe is a adult pub which serves French food in the riverside area . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||The Mill , is a pub serving French food in the average price range at riverside . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub that services Chinese food . Customers have rated Zizzi 1 out of 5 . Children are welcome . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||There is an expensive restaurant Fitzbillies located near The Six Bells that offers English food . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant in the center of the city near Yippee Noodle Bar . It has inexpensive food with an average rating . \nname : Wildwood | Type : pub | food : English | price : more than £ 30 | customer rating : high||If you 're looking for a well - rated pub in Cambridge , look no further than Wildwood . Its customers give it excellent reviews , and while its prices go above £ 30 , the English - style cuisine is worth it . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||3 - star rated Wildwood pub serves a variety of food and wine at a moderate price level . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop near the river provides mid - priced Italian fare in a family friendly atmosphere . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||In riverside , there is a French coffee shop called The Golden Palace . The meals are less than 20 pounds , but they have low customer satisfaction . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a high priced coffee shop called The Eagle it 's a family friendly coffee shop located near Burger King . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||With a rating of 1 out of 5 , The Golden Palace is a Fast food coffee shop in the city centre . It has a high price range . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||A child friendly pub , called Aromi , is located riverside , has a high customer rating . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The Waterman has pretty average reviews , but it 's a decently priced place to get a good pub meal in the riverside area . \nname : Green Man | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a moderately priced restaurant which is on the riverside and serves English Food . It is near All Bar One and you can expect to pay between £ 20 to £ 25 for a meal . It is child friendly . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in riverside area and near Express by Holiday Inn has English food . With a moderate price range and kids friendly , it has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||The Golden Palace is a three star coffee shop . It is close to the river . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough near Café Rouge is a mid priced pub serving French food . It is child friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||With a 1 out of 5 customer rating , we at Cotto have more than you might expect . Our food is a little high priced , but located in the riverside area near The Portland Arms , it is a nice convenience to visit this Fast Food coffee shop . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Located next to The Bakers is a one star sushi place called The Wrestlers which is not family friendly . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House serves low price French food and is situated near All Bar One \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop serving fast food . Found on the riverside it has a low customer rating . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is a restaurant providing take - away deliveries in the medium price rage , we do not allow children we have a great customer rating of 3.5 , located in a super spot in riverside . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry near Café Rouge is not a family - friendly Japanese restaurant in riverside that gets 5 out of 5 ratings . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a family friendly , low - cost , 3 - star restaurant , located on the river north of the City centre . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat sells Chinese food and is located in the center of the city near Express by Holiday Inn . The rating is 1 out of 5 , moderately priced , and it is not kids friendly . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is an Italian coffee shop in riverside near Clare Hall . It has been rated 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Near Clare Hall in city centre you will find the coffee shop Clowns . This highly rated , 5 out of 5 , establishment serves Italian food . \nname : Cotto | food : English | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||you can find Cotto near Ranch , they sell English food with a 5 out of 5 rating and are family Friendly \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a children - friendly pub located near the riverside , close to The Sorrento . The pub is named Taste of Cambridge . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||The Loch Fyne is a French restaurant that is non - children friendly with a moderate price range . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre||The Golden Palace is a coffee shop that serves French food at less than £ 20 and has a average customer rating . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||A French pub located near Café Rouge and down by the riverside is called Green Man . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||There is a cheap restaurant The Green Man located near to All Bar One . It is child friendly . \nname : The Vaults | food : Italian | price : high | family friendly : no||The Vaults is not a children friendly place that serves Italian food but is expensive . \nname : Alimentum | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves low priced Japanese food in the riverside area . It is located near to the Yippee Noodle Bar and has a high customer rating of 5 stars . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop serves Indian food . It is near Burger King near the riverside . It is not kid friendly and carries an average customer rating . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : city centre||The Mill is a pub which sells Chinese food . It has a moderate price range and is in the city centre . \nname : The Eagle | food : Chinese | customer rating : low||The Eagle is a Chinese restaurant that has a low customer rating . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||Midsummer House is near the All Bar One serving English food with a high price range . The customer rating is average . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a Chinese pub that offers expensive food . It is found near Café Brazil . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Located in the city centre near Yippee Noodle Bar can be found Alimentum serving expensive Italian food . It has an average customer rating . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter , located near Café Sicilia , is a child friendly coffee shop that offers Italian food . The Punter is high - priced and was rated as average by customers . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||If you 're looking for a great kid - friendly Chinese place in the riverside area near Café Rouge , try The Golden Curry . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : yes||The Twenty Two offers Italian food in the city centre in a family - friendly environment . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Located at the riverside , The Olive Grove is a family friendly restaurant . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a family friendly restaurant with average prices that is near the middle of the city and has Chinese food in a pub . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||In riverside near the Express by Holiday Inn is a Japanese food place called The Rice Boat . The place is a none kids friendly environment therefore the customer rating is 1 out of 5 . You will find the price range very moderate . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree is a fast - food restaurant that is medium priced \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is located in the city center . , near Café Rouge . It is a Chinese restaurant that has an average customer rating that is not family friendly . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a moderately priced coffee shop , near The Bakers . It is kid friendly , and has a 1 out of 5 rating . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop . They serve Indian food . It is expensive but has a decent customer rating . It is not for children and is near Café Sicilia . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop near Burger King in the center of the city that is kids friendly , it ranges from 20 - 25 euros for a meal . Customers rate it 3 out of 5 , it serves French food . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||A riverside coffee shop people visit when their budget is less than £ 20 is The Vaults near Café Brazil . Unfortunately it has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a 5 out of 5 rated child friendly French coffee shop in the city centre , prices range from £ 30 up . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House is a restaurant providing Italian food near Café Rouge . Customer ratings are average . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||There is a cheap fast - food joint Bibimbap House located in the riverside area near Clare Hall \nname : The Golden Curry | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , is in the riverside area near the Café Rouge and has a high customer rating , and is a family friendly Indian restaurant . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum is an average priced pub that customers score as 3 out of 5 . Cocum is kids friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle , a coffee shop that serves fast food near Burger King in riverside has a high customer rating , and is not kid friendly . Their price range is more than £ 30 . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop which offers fast food and has high customer ratings , and may be found near Clare Hall in the riverside area . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||The Golden Curry is family friendly Italian restaurant with a three star rating . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant providing average quality food in the average price range . It is located in the north of city after Express by Holiday Inn . \nname : Fitzbillies | food : Chinese | price : less than £ 20 | near : The Six Bells||You can eat Chinese food for less than £ 20 at Fitzbillies . It is near The Six Bells . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||In riverside , Alimentum serves French food in the less than £ 20 price range , and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop has excellent customer ratings and low prices . It is family friendly , serves Indian food and is located by the riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Conveniently located in riverside near Burger King there is a moderately priced coffee shop serving Indian food with a rating of 1 out of 5 called The Eagle . Children are permitted . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a contemporary Italian restaurant near Yippee Noodle Bar and Trinity College that is well regarded by its customers . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Located near The Six Bells , Fitzbillies is a moderately priced Italian cuisine restaurant . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family - friendly restaurant , near Burger King , that offers an affordable menu of cheeses , breads , soups and alcohol . It has a five - star rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||For a highly rated 5 out of 5 Japanese experience , head for The Golden Palace coffee shop in the city centre at for a very reasonable price . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : yes||There is a high priced Chinese restaurant Loch Fyne that is children friendly . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : yes||Alimentum located near city centre serves Indian food . It has a high price range and yes , is children friendly . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||There is a cheap restaurant Loch Fyne which is not suitable for families that provides cheeses , wine and desserts . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a reasonably priced , family friendly , coffee shop that also serves Indian food . It is located in Riverside near Raja Indian Cuisine . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||If you are looking for Italian , do not go to The Phoenix in riverside . You will find expensive food and bad customer service . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near the Café Rouge you will find the family friendly restaurant , The Golden Curry , serving Japanese food in the riverside area with a customer rating 5 out o 5 . \nname : Green Man | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||In riverside near All Bar One . Green Man is a Children friendly Chinese restaurant prices are more than 30 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne is a cheap sushi restaurant that is highly recommended for families . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Since The Rice Boat is near Express by Holiday Inn in the city centre , it serves expensive English food and not children friendly with a 1 out 5 rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum serves cheap Japanese food with a low customer rating , located in riverside area near Yippee Noodle Bar . \nname : The Waterman | Type : pub | food : Chinese | customer rating : high | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is high . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The venue Blue Spice is located on the riverside , providing value services for £ 30 and over . Although it is not children friendly , the customer rating is 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : no||Loch Fyne restaurant providing Japanese Food . It is located in City center . Not Friend Family . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : no | near : All Bar One||In the center of the city near All Bar One , there is a French restaurant named Green Man that has a moderate price range , but is not kid friendly . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||In the riverside area , by Clare Hall , is the moderately priced fast food place Bibimbap House \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||For highly rated Italian food in the riverside area visit The Phoenix . Meals range between £ 20 - 25 . \nname : The Golden Curry | food : Fast food | price : cheap | family friendly : yes | near : The Bakers||Near The Bakers is a cheap family friendly fast food place called The Golden Curry \nname : The Dumpling Tree | Type : pub | food : English | family friendly : no | near : The Portland Arms||A pub serving English cuisine , The Dumpling Tree is located near The Portland Arms . It is not family - friendly . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : no | near : The Sorrento||Taste of Cambridge is not a family - friendly pub near The Sorrento area of Riverside . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : no||The Vaults sushi bar has low prices but is not suitable for a family . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||A pub near The Portland Arms , The Dumpling Tree , serves French food and is family friendly . \nname : The Mill | Type : pub | food : Chinese | price : more than £ 30 | area : riverside||The Mill is a Chinese pub in riverside that price ranges at more than £ 30 . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a riverside pub offering food for less than £ 20 . It is not family - friendly . \nname : The Phoenix | food : French | customer rating : 1 out of 5 | area : riverside||The Phoenix serves French food and is located in the riverside area . It has an average customer rating of 1 out of 5 . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice is a fast food place that has a price range of £ 20 and under , and is located in the area of riverside . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : no||The Twenty Two is an Italian restaurant that is not family - friendly . It is located in the city centre . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||You can find The Phoenix right by the riverside . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : cheap||The Dumpling Tree restaurant serves cheap Indian food . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two has a price range less than £ 20 is not family - friendly and has an average customer rating . Located near The Rice Boat in riverside . \nname : Browns Cambridge | food : French | area : city centre | family friendly : yes | near : The Sorrento||Near The Sorrento in the city centre , there is a family - friendly French restaurant called Browns Cambridge . \nname : Strada | price : high | customer rating : 1 out of 5 | family friendly : yes||Prices are high in Strada , It 's children friendly with the customer rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Japanese food near the city center and the Express by Holiday Inn . It is customer rated 1 out of 5 and is moderately priced but not kid friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes||An Indian coffee shop named Aromi is located in the city centre . It is kid - friendly and is rated as average by its customers . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum coffee shop is reasonably priced and is child friendly . It is rated five stars . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge serves different types of alcoholic drinks and cheeses at quite high prices , but at a very high standard of quality . \nname : Fitzbillies | food : English | price : high | near : The Six Bells||Fitzbillies serves expensive English food and is located near The Six Bells . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a child friendly Italian restaurant . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop that serves Indian food for cheap . It has a very high customer rating despite it not being family friendly . It is located in the riverside area . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : yes||There is a family friendly Chinese restaurant in the city centre , The Rice Boat with an average customer rating . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Bring the kids and enjoy Chinese food at The Waterman . The prices are average but the food is highly rated by customers . \nname : The Twenty Two | food : Japanese | family friendly : yes||There is a Japanese restaurant named The Twenty Two . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family - friendly coffee shop with a moderate price range and has a customer rating of 3 out of 5 ; it is north of Café Sicilia . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix provides Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family Friendly Japanese restaurant charging less than £ 20 but has a low rating \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers is a high priced , average rated , children - friendly fast food . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : city centre||Located in the city centre , The Waterman is a pub which provides Chinese . It has low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop is a restaurant with a high priced menu . It is family friendly . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two near The Rice Boat by the Riverside is high - priced and low rated by customers , but it is child - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop a variety of foods , it 's near Burger King in the City centre \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Blue Spice provides Japanese food in the mid price range . It is located riverside . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||There is a place named Browns Cambridge that provide English food and it is kids - friendly . the location is near The Sorrento in the riverside area \nname : The Mill | Type : pub | food : Indian | price : moderate | area : riverside||The Mill is a pub that provides Indian food in the moderate price range . It is located in the riverside . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House , in Riverside is located near Clare Hall , providing French food with a price range less than 20 . \nname : The Vaults | food : Chinese | price : moderate | family friendly : no||The Vaults is a moderate price Chinese restaurant that is not kids friendly . \nname : The Golden Curry | food : English | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is located in the city centre near Café Rouge , serving English food , but has a low customer rating , and is not family - friendly . \nname : Blue Spice | food : Fast food | price : high | area : riverside||The Blue Spice is a high priced fast food restaurant located near the riverside area . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||If you want English food for less than £ 20 near The Six Bells , then try Fitzbillies . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||A Japanese place named Alimentum with decent prices is not family friend and located the river side . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||If you are craving Indian food , try Cotto , it is a coffee shop that is in the higher price range with spectacular high ratings . It is located in Riverside near The Portland Arms \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a restaurant with low customer ratings . It is children friendly . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers serves moderately priced Italian and is kid friendly with a 3 out of 5 customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||With an average customer rating , The Cambridge Blue restaurant has now added Japanese food to their menu . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a poorly rated , 1 out of 5 , non - child friendly Italian restaurant . It has a moderate price range and is located on the riverside near Express by Holiday Inn . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two serves Japanese food appropriate for the whole family . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a fair - priced burger joint located next to Yippee Noodle Bar . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Located near All Bar One , Midsummer House offers cheap English food , and has a 5 out of 5 customer rating . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||There is a poor pub by the river called Aromi that is not family - friendly . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Plough is a child friendly restaurant with a high price range . This restaurant can be found near The Bakers . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns , near Café Sicilia is mid - price ranged and not suitable for families . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , not kid friendly Italian food , near Burger King in Riverside . Moderate priced coffee shop with a 1 out of 5 rating . \nname : Midsummer House | food : French | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is located near All Bar One . It serves French food , and is in the high price range . It received a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||The French coffee shop in the riverside area , near Clare Hall , with the low customer rating is called Clowns \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||In the city centre , is the family - friendly restaurant The Waterman which serves English food . It is priced below average for Cambridge , at less than £ 20 , and has a customer rating of low . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults is a coffee shop , situated on the riverside near Café Brazil . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry is a below average restaurant in the city centre that provides accommodations for families with children . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop with Indian food in the price Range of £ 20 - 25 , a high customer Rating , in the riverside area and is kid Friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace is a coffee shop located in the city centre . They serve French food with prices ranging from £ 30 and up . They have a low customer rating . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||In the riverside area is The Golden Palace restaurant with a low rating \nname : The Punter | food : Japanese | price : £ 20 - 25||With a price range of 20 - 25 , The Punter serves Japanese food . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly restaurant that is 5 stars . \nname : Loch Fyne | food : English | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne serves English food in the city centre near The Rice Boat . The customer ratings are average . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry near Café Rouge in the city center area is a family - friendly restaurant with a customer Rating of 5 out of 5 \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||A French coffee shop , named Wildwood with a price range of less than £ 20 , is located near Ranch . It has a low customer rating . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||In the City centre there is a high priced restaurant named The Phoenix \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant serves Italian food an is kid friendly located in riverside in the £ 20 - 25 price range near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an Italian coffee shop located in City Centre . The food is cheap , the atmosphere is family - friendly , and the customers rate it 5 out of 5 . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is not too good to go with family , but the food is inexpensive , it is north of the City Centre . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is located in riverside , highly rated by customers . It is child friendly ranging in price over £ 30 . \nname : The Rice Boat | food : English | area : riverside||The Rice Boat serves English food in riverside area . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a low cost coffee shop that caters to families and is not highly rated \nname : The Dumpling Tree | Type : restaurant | food : French | price : high||The Dumpling Tree is a expensive French restaurant . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Japanese coffee shop near The Sorrento in the riverside area has a moderate price range . It 's called The Mill . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is a French restaurant located near All Bar One . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||There is a cheap coffee shop call Blue Spice but they are not family - friendly . They are located in riverside near Avalon . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a highly regarded Chinese restaurant known for its family friendly atmosphere and cheap prices . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||Located outside the city center . , The Olive Grove is an adult - friendly pub offering reasonably priced food and beverages . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop providing Indian food in the cheap price range . It is near Ranch . Its customer rating is 5 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||A fast food restaurant names The Cambridge Blue has a rating of 5 out of 5 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Located in Riverside near the Express by Holiday Inn is The Rice Boat a low priced Italian eatery that is an ok adult only restaurant \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||There is a low rated restaurant called Cocum that is not family - friendly . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||The Midsummer House has English food and is near the Café Rouge . It has an average customer rating . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||Cheap , family - friendly , The Twenty Two , near The Rice Boat in the city centre has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , 5 star restaurant that is family friendly . It is located beside the Express by Holiday Inn and is a wine and cheese tasting place . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Yes , Blue Spice restaurant in the riverside provide rank 3 out of 5 with moderate price \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Located close to The Portland Arms in the town centre , Cotto is a well priced Indian coffee shop . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||The Cotto is an Italian coffee shop with a moderate price range . It is near The Portland Arms in the city centre . A 3 out of 5 rating . \nname : Cotto | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is a family friendly Chinese restaurant with a 5 out of 5 rating located near the Ranch . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : yes||The Rice Boat offers English food . It is family - friendly with an average rating by customers . It is located in the city centre . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : city centre||The Phoenix is an Italian restaurant in the city centre rated 5 out of 5 by customers . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre||This place that sells Italian food in the city centre area with a 1 out of 5 customer rating and a high price range is names The Phoenix . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a poor rated , family pub serving cheap food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||An Indian coffee shop called Fitzbillies is near the area of the riverside . It is not for kids , moderately priced and has a rating of 1 out of 5 . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||Travellers Rest Beefeater is a cheap non family - friendly restaurant . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : no||Loch Fyne is a restaurant . It is located in riverside area . Not family - friendly . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Phoenix is a five star sushi restaurant located outside of the city center . \nname : The Waterman | Type : pub | food : Indian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub that serves Indian food and gets a rating of 1 out of 5 . It is located in the riverside area . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat , a fast food establishment , has received a rating of 1 out of 5 . It is located in riverside and is also kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , located by the margin of the river , next to Raja Indian Cuisine , is a high cost restaurant that provides Japanese food . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Waterman is a low - priced restaurant in the riverside that provides French food in less than £ 20 . It has average customer rating but not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop in the city centre serving Indian food and costing less than £ 20 . It 's called The Wrestlers and is near Raja Indian Cuisine . Not family friendly . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat , a Chinese restaurant in the city centre , has a 5 out of 5 customer rating but is not family friendly . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly that provide Italian food and has 5 out of 5 customer rating . the location is in the riverside near Café Rouge \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||Green Man is priced at over £ 30 for a meal . It is child friendly and located riverside . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop located near the river , perfect of family days out with children . the Eagle offers a range of food , snacks , wine and coffee at low prices . the coffee shop is rated 3 out of 5 stars and situated near Burger King . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||There 's an expensive place called Midsummer House with burgers , fries , and drinks near the All Bar One . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada rated the Chinese food near the Rainbow Vegetarian Café 1 out of 5 because the prices are high and they are not child friendly \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a children friendly Japanese food available at coffee shop with a price range of £ 30 has a low customer rating . \nname : Fitzbillies | food : Chinese | price : £ 20 - 25 | near : The Six Bells||Fitzbillies serves Chinese for £ 20 - 25 . It is near The Six Bells . \nname : The Twenty Two | food : Indian | area : riverside | family friendly : yes||The Twenty Two is a kid friendly Indian restaurant in the Riverside area . \nname : Fitzbillies | food : English | price : more than £ 30 | near : The Six Bells||Fitzbillies is an eatery close to The Six Bells , that serves English sustenance for £ 30 and up . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||After you have come out of the Yippee Noodle Bar go to the Alimentum located at the centre of the city . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a Fast food pub . It is kid friendly , but has a customer rating of 1 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | near : The Sorrento||A coffee shop called The Mill offers high - priced fast food . It is located near The Sorrento in Riverside . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||If you ever go to Riverside and are looking for cheap fast food , you should definitely check out the Bibimbap House near Clare Hall . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : Cotto | food : Japanese | near : Café Rouge||Cotto providing Japanese food . It is located in near Café Rouge . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix is a pricey Japanese restaurant in the riverside district . It has a customer rating of 3 out of 5 . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||A low priced restaurant in the center of town with a fair rating is The Phoenix . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn . It is both child friendly and given a five star rating by customers . Its price range is over £ 30 . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : The Bakers||Giraffe is a moderately priced coffee shop close to The Bakers . It has a customer rating 1 out of 5 and is not recommended for kids . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a high - priced and low rated coffee shop . It is located near Avalon . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non family - friendly , Japanese restaurant near Express by Holiday Inn in riverside with a price range of less than 20 and an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||Five out of five customers enjoy eating at the Japanese restaurant known as The Cambridge Blue . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes||City centre coffee shop Aromi is a family - friendly coffee shop serving fast food and has low customer ratings . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||For a mediocre , mid priced child friendly restaurant try Fitzbillies near Express by Holiday Inn . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : moderate||The Dumpling Tree is an Italian restaurant with moderate prices . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix is a high street spot that offers the best meals at good prices . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop serving Japanese food located in the city centre near Clare Hall with low customer ratings . \nname : The Plough | Type : pub | food : Chinese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub that provides Chinese food in the more than £ 30 price range . It is near Café Rouge . \nname : The Cambridge Blue | Type : pub | food : Indian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub that provides Indian food in the less than £ 20 price range . It is near Café Brazil . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French food restaurant providing foods in more than £ 30 and located near Rainbow Vegetarian Café . I has customer rating of 5 out of 5 but it is not children Friendly . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||Located close to the river is The Mill Pub . It has moderate prices and serves fast food . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The moderately priced coffee shop The Punter serves French food and is child friendly . It is located near Café Sicilia and has a customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||Wildwood is a low - priced pub that may serve British food . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||The Mill is a pub that offers food and drink at low prices . \nname : Fitzbillies | price : £ 20 - 25 | near : Rainbow Vegetarian Café||Fitzbillies has a price range of £ 20 - 25 and is situated near Rainbow Vegetarian Café . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : city centre||Blue Spice is a Japanese restaurant that is less than £ 20 in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Family friendly Fitzbillies coffee shop , has a customer rating of 5 out of 5 . It provides Fast food in the cheap price range and is located in the riverside area . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Located close to The Sorrento in the riverside area of Cambridge Browns Cambridge is a family friendly Chinese restaurant . \nname : The Eagle | food : Italian | customer rating : high||Check out The Eagle featuring Italian cuisine and sporting a high customer rating . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix is a sushi bar located in the city centre which offers low quality food . \nname : The Punter | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||located near Café Sicilia The Punter is a low cost coffee shop that is family friendly \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : yes||Family friendly Indian food in Riverside , The Rice Boat . Low Customer Rating . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||I went to this French Pub named Wildwood . The prices for . Meal varies anywhere between £ 20 - 25 . And even though their customer rating is 3 out of 5 , I think it 's a great place to hang out . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe and high - priced , low - rated , and kids - friendly coffee shop near The Bakers . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : no||Aromi is a pub that is not family - friendly . It has an average customer rating and is located by the riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Located riverside near Burger King you will find The Eagle coffee shop offering Indian food . They have a customer rating of 1 out of 5 and are price ranged high . They are not children friendly . \nname : Loch Fyne | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne provides Chinese food It is located in the riverside . It is near The Rice Boat . Its customer rating is 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a 3 star , high end coffee shop located in the city centre . Children are welcome . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : 5 out of 5||Taste of Cambridge is a cheap restaurant with a 5 out of 5 customer rating . \nname : Blue Spice | food : Italian | price : moderate | area : riverside||There is in the riverside exist a restaurant Italian is Blue Spice with moderate price \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is an expensive coffee and sushi shop with a three star rating . It is located near The Portland Arms . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||A family friendly pub near riverside with a high price range , is The Olive Grove . \nname : Browns Cambridge | food : French | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly French restaurant located near The Sorrento in the city centre . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||The Dumpling Tree is a low - priced restaurant that serves fast food . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||Near Café Rouge is a French restaurant called Midsummer House , It has a 3 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is a family friendly French restaurant in the average price range . \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||Located by All Bar One is Midsummer House an average rated English restaurant that costs 3 \nname : The Punter | food : Fast food | price : more than £ 30||An expensive fast food place you can go to is The Punter . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a Japanese coffee shop . It is rated three stars and is family - friendly . This coffee shop can be found near The Portland Arms . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||Zizzi pub is family friendly and is rated five star , with its complete meal deals . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a family friendly pub serving British cuisine . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||French restaurant called Alimentum in Riverside located near Yippee Noodle Bar customer rating 1 out of 5 and moderate price Range \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : no||The Rice Boat is a non family - friendly English restaurant in the city centre with an average customer rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||Zizzi is a kid friendly pub that has a high customer rating serving Italian food \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub that offers family area and it has a price range less than £ 20 . It is located in the centre . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada has Indian food with low prices . Located near Rainbow Vegetarian Café , is family friendly with an average rating . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Green Man is a cheap adult restaurant near riverside . \nname : The Vaults | Type : restaurant | food : Italian||The Vaults restaurant serves Italian food . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a child friendly , Japanese coffee shop called ' Cocum ' that is highly rated by its customers and has a price range of £ 20 - 25 . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||Located in the riverside area near The Portland Arms , The Punter is a kid friendly restaurant with a price range of £ 20 - 25 . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||There is an Italian place near Ranch called Cotto . Cotto is a family friendly place that has an average customer rating . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||The Taste of Cambridge pub is located in the riverside area near The Sorrento . The restaurant is child friendly . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge is known for its Italian food and high customer rating . Its price range is thirty pounds and above . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Near the Ranch is a French food themed coffee shop called the Wildwood , it costs less than £ 20 to go there . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||A coffee shop near Café Sicilia , The Dumpling Tree is children friendly but has a high price range \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a less than £ 20 pub in the city centre near of The Sorrento that delivers Italian food . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a French restaurant with a low customer satisfaction rating . It is located close to Café Rouge . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop providing Indian food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||The Fitzbillies near The Six Bells has a high price range for Italian food . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a high rated , kid - friendly Chinese restaurant with a high customer rating . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge 's price range is less than £ 20 . The customer rating is low . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Riverside coffee shop , The Taste of Cambridge features French cuisine is family friendly and is located near the Crown Plaza Hotel \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is a cheap and family - friendly place to eat , but is not rated well by customers . It 's situated by the riverside . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||restaurant Wildwood has a high customer rating and is located near Café Rouge . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : no||Giraffe is an adults only pub , serving English food , in the city centre . \nname : Cotto | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Next to The Portland Arms , Cotto coffee shop , reasonably expensive but worth the money for 5 stars \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is an Italian restaurant located in the city centre with a customer rating of 1 out of 5 . They aren 't child friendly and have high pricing . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop offers food and drink . It has great ratings and is located near Clare Hall . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman pub serves French food by the riverside , but has a low customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a non kid friendly , fast food , coffee shop near , Café Sicilia , however it is priced on an average £ 20 - 25 , and their customer ratings are high . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : no||The adult pub The Giraffe serves French food in the riverside area . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||There is a 5 - star luxury restaurant Alimentum located beside Yippee Noodle Bar in the city centre that provides English breakfast . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar is Alimentum which serves English food . By the riverside , it has a moderate price range and has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum is a mid - range Indian restaurant and coffee shop . Rated 3 out of 5 , no kids . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||Near to Crowne Plaza Hotel is located The Waterman . It offers French food and there is no family area . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman , is an adult restaurant serving high priced Italian food with an average rating , located in the riverside area . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee Shop , providing Japanese food , with a customer Rating 5 out of 5 , with High - priced Range with kids Friendly . located near The Portland Arms \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub that services Chinese cuisine . Customers have rated Zizzi 1 out of 5 . Children are welcome . \nname : Bibimbap House | food : Italian | price : high | area : city centre | near : Clare Hall||Bibimbap House sells high priced Italian food . They are near Clare Hall in city centre . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||If you are in the city centre looking for a moderately - priced , poorly reviewed coffee shop that offers Indian food , The Golden Palace is an option . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat Italian restaurant is not children friendly . It is in the riverside area near Express by Holiday Inn . The average price range is more than £ 30 . We have a high customer rating . \nname : The Mill | Type : pub | food : Japanese | price : more than £ 30 | area : riverside||In the riverside area you will find a pub that serves Japanese food called The Mill and prices fall in the upper range of more than E30 . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a highly rated fast food restaurant offering food slightly above the average price range . It isn 't considered child friendly . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||There is a restaurant called The Golden Curry which is not suitable for families . It is middle - priced and located close to The Bakers . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Located on the riverfront north of the City centre , Alimentum serves reasonably - priced Italian food . It is also family friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||A family friendly coffee shop , The Cricketers is a 5 out of 5 rated establishment which also provides its customers with Indian food . It is also useful to note that it is located near The Portland Arms . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||Zizzi is a pub that provide French food . The customer rating is low and is not family - friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi is a children friendly pub that serves Chinese food with a high customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||There is a restaurant called Loch Fyne that is family friendly in the mid price range . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Green Man is a pub serving fast food . It is located in the riverside area near Café Rouge . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||Cocum a new opened pub with an average , high price range , and it is children friendly . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop near Burger King in the center of the city that is kids friendly , it ranges from 20 - 25 euros for a meal . Customers rate it 3 out of 5 , it serves French food . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The restaurant , The Strada is an Italian food joint that is for adults only and next to the Rainbow Vegetarian Café \nname : The Punter | food : French | price : moderate||For French food and drink at a middle cost , try The Punter \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : no | near : The Portland Arms||The Punter is a restaurant that is located in the center of the city near The Portland Arms . It is not children friendly and has prices higher than 30 euros . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Avalon||Near Avalon is a riverside coffee shop with great reviews , Blue Spice which sells dishes for £ 20 - 25 \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly , fast food and coffee shop that is has a customer rating of 5 out of 5 found in the city centre near Crowne Plaza Hotel . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family style coffee shop with a rating of one out of five stars in City center . near Burger King \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||There is a moderated priced , average - rated and kid friendly pub called Cocum \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a non family - friendly Japanese coffee shop that is rated 5 out of 5 and located at the city centre \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||The Olive Grove is a children friendly place offering Japanese food . It is a pub located in city centre offering a price range of more than £ 30 . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||Zizzi is a restaurant that is in the riverside area . The price range is less than £ 20 . \nname : The Punter | food : Fast food | price : £ 20 - 25||The Punter is a fast food restaurant with a price range of £ 20 - 25 . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : no||Green Man is restaurant located in the city centre . While it 's not family - friendly , its prices are less than £ 20 . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry offers 5 star Chinese food in a family friendly environment . It is located near Café Rouge in the centre of the city . \nname : Loch Fyne | food : Fast food | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne is a fast food restaurant with a low customer rating near The Rice Boat in the city centre . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||Zizzi is a pub that serves Italian food with a one star rating and lacks toilets . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Phoenix is highly rated by customers and provides Japanese food . Can be found in the city center \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers has a moderate price range and serves English food . It is not kid friendly and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a French restaurant in the city centre . Although their prices are cheap , they have a customer rating of 5 out of 5 . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a one star fine wine and cheese restaurant in the low price range . It is located by Express by Holiday Inn . Public restrooms available . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi is an pub style restaurant serving Indian food . Zizzi is children friendly and has a customer 1 out of 5 customer rating . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a place with a high customer rating and is kids - friendly with a price range of £ 20 - 25 near Express by Holiday Inn \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry has Indian food , has a average rating and is not family friendly . It is the riverside area near Café Rouge . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , located near Café Adriatic in a riverside setting , offers average rated items in the high price range . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes||A Fast food coffee shop called Fitzbillies is cheap and family - friendly . It has an average rating . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fittingly located on the waterfront , The Rice Boat serves up waterside dining . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue , near Café Brazil , is a moderately priced , fast - food pub . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in the riverside area . Its price range is less than 20 pounds and its customer rating is low . \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : yes||The Twenty Two is a family - friendly Japanese food place in the heart of the city centre \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||Browns Cambridge is a high priced 3 star Japanese restaurant . \nname : Midsummer House | food : Chinese | price : high | customer rating : average | near : All Bar One||high scale Chinese food in an upscale part of town , near to All Bar One . high prices , high standards average customer reviews . were the Midsummer House , come join us . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Eat in Loch Fyne a restaurant kid - friendly serving Italian food \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : no||For French food in the city centre , The Olive Grove is a moderately priced pub , however is not child friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : no||Travellers Rest Beefeater is a moderately priced restaurant that is not family friendly . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Riverside has a family friendly restaurant with a customer rating of 5 out of 5 . It is called The Waterman and has cheap English food . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a higher - priced , three star restaurant near the river and Chesterton road that is family friendly . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : no | near : Café Rouge||Serving Japanese food , The Plough is a moderately priced pub located near Café Rouge . It is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||In the city centre there is a children friendly coffee shop called Fitzbillies . It serves expensive Japanese food and has a customer rating of three out of five . \nname : Midsummer House | food : Chinese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House has a high customer rating with a price range of £ 20 - 25 it serves Chinese food and is located near All Bar One . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a moderately priced , kid - friendly Indian restaurant in the city centre , with a customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||With a high price range and a customer rating of 3 out of 5 , Wildwood is a pub that provides Japanese food . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree is a family friendly Japanese pub . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man has a price range of £ 20- £ 25 , is kid friendly and located by the riverside . \nname : Blue Spice | food : Chinese | price : moderate | area : city centre||Blue Spice provides Chinese food in the moderate price range . It is located in the city centre . \nname : The Eagle | food : English | customer rating : high||There is a restaurant called The Eagle which is highly rated by customers and serves English food . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||English food is served in The Green Man pub near Café Rouge at riverside . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a Japanese restaurant with a 5 out of 5 rating . The food is cheap and the place is located near All Bar One . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a pub on the riverside . It has a price range of £ 20 - 25 . It has a high customer rating . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue restaurant has been rated 3 out of 5 stars . It offers wine , spirits , and appetizers . \nname : The Rice Boat | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A French place The Rice Boat , at the riverside , is child friendly and has a customer rating of 3 out of 5 . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne offers English food with a very good reputation . Not far away is The Rice Boat \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a French styled coffee shop in the city centre , mature customers preferred and is of average costings . 3 out of 5 customers recommend this coffee shop \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : yes||The Rice Boat , a family friendly restaurant in the riverside area serves average Chinese food , if that is what you are hungry for today . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar in city centre is Alimentum for less than £ 20 . Low customer rating . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||Blue Spice offers select cheeses , fruit , and wine in a fine - dining atmosphere and is located near the river . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||There is a kid friendly , fast food restaurant , near Crowne Plaza Hotel called The Waterman . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||Clowns is a high priced pub eats receiving 3 out of 5 stars located riverside . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Blue Spice , a coffee shop , is family - friendly and low priced . It is located in the city centre , near Avalon . However its customer rating is low . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Ratings for restaurant Cocum is highest . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fancy some nice eating and drinking where all the family are welcome , try The Waterman , inexpensive . \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||There is a child friendly French food place named The Wrestlers , it has a 3 out of 5 star customer rating . The Wrestlers is child friendly and has a high price range . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : no||In this pub called Zizzi , Indian food is on the menu . Zizzi has been rated 5 out of 5 by customers , but is not a family friendly choice . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two has an average customer rating and a price range less than 20 pounds . It is not family - friendly and is near The Rice Boat in the city centre . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee Shop providing French food . It is located in city center near The Portland Arms . 3 out of 5 costumer rating . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a high price , children friendly , Italian eatery . Located in the riverside area near All Bar One . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||Browns Cambridge moderately priced Italian with terrible ratings . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pub located by the riverside that provides Japanese . The price range is more than £ 30 but are children friendly . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||A low - cost option is the Fitzbillies located next to Express by Holiday Inn . This is not a family - friendly location . Customers give it a 1 out of 5 stars . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The customer rating for the French food , which cost more than £ 30 , at Strada is low , but they do provide a children friendly place near Rainbow Vegetarian Café . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : average | area : city centre||The Phoenix is a Chinese restaurant in the city centre which has cheap prices and receives a customer rating of average . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||The Rice Boat offers low rated French food in the riverside area . However , it is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Riverside the location of a coffee shop that is kids - friendly , serves Italian food , is called Taste of Cambridge , it 's near Crowne Plaza Hotel . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||Customers have rated Zizzi public house 5 out of 5 . It serves British food in a family friendly environment . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop called Browns Cambridge that is family friendly located near Crown Plaza Hotel . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat has 5 out of 5 stars and serves French food to adults in city centre . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an Italian restaurant in the high price range . It is kid friendly , located near Rainbow Vegetarian Café and has a 1 out of 5 customer rating . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is a coffee shop providing wine and cheese in the low price range . It is located near Ranch . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||On the riverside there is a kids friendly Japanese pub called The Olive Grove with and average price range \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an Italian restaurant with an average rating in the riverside area , this is not a family - friendly restaurant . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is a pricey pub that is family friendly and serves wine . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Aromi , at pub at Riverside is children friendly and the customer rating is high . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One in City Centre , the Green Man offers British food at an inexpensive price . It 's family friendly . \nname : The Golden Curry | food : Fast food | price : high | family friendly : yes | near : The Bakers||The Golden Curry serves fast food in the high price range , is child friendly and located near The Bakers . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no||A moderately priced pub in the city centre is The Olive Grove . They serve Chinese food but are not kid friendly . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a family - friendly place called The Rice Boat that sells Italian food . It is located in the city centre near to Express by Holiday Inn . Prices are cheap and customer rating is low . \nname : The Cambridge Blue | Type : pub | food : Italian | price : moderate | near : Café Brazil||A pub named The Cambridge Blue has moderate pricing . It is located near Café Brazil . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Fitzbillies is a cheap Indian coffee with a customer rating of 5 out of 5 in the city centre . It is family friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a highly priced coffee shop called Zizzi on the riverside . It is child friendly and gets a 1 out of 5 rating . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||With a 3 - star rating , Wildwood is a pub that offers fast food for an affordable price . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||The Mill pub in the city center . , is known for their fair prices . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||With a 1 out of 5 star rating , Cocum coffee shop offers a family friendly environment at a high cost . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||our price range is from very moderate we serve English food we are located near The Six Bells and people call us Fitzbillies \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||With a high customer review is a family friendly Japanese restaurant named The Golden Curry . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : no||The Rice Boat is an Indian restaurant with an average rating from customers . It is located in the city centre and is not family friendly . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||In the city center , near the Café Rouge , is The Golden Curry . It features fast food . It is not family - friendly , and has a poor customer rating . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family friendly , inexpensive wine and cheese shop . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop with low customer satisfaction by the river . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a child - friendly coffee shop , serving Japanese food . It is near to The Portland Arms and has a good customer rating . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||There is a fast - food restaurant called Midsummer House with a customer rating of 1 out of 5 . It is located near the highly - priced All Bar One . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves fast food . It is moderately priced with low customer ratings . It is located near Express by Holiday Inn in the riverside area . It is not a kid friendly establishment . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||There is an expensive coffee shop in Avalon near city center . Blue Spice is kid friendly and rated at 3 out of 5 stars . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man serves cheap food . It is family friendly and is located near All Bar One . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||Having only one out of five stars , the moderately priced sushi bar is called Browns Cambridge . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is located in the city centre . It is family - friendly , serves English food , and is rated 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop . They serve Japanese food and is located near the Crowne Plaza Hotel in the city centre area . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Fitzbillies is a non kids friendly Indian coffee shop in the price range of £ 20 - 25 . It is located in Riverside and has high customer rating . \nname : Wildwood | Type : restaurant | family friendly : yes||The restaurant Wildwood is a kid friendly place . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a a restaurant with a customer rating of 3 out of 5 . It is kids friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Children friendly type coffee shop , has Japanese food price range more than £ 30 , named The Punter near Café Sicilia , customer rating 5 out of 5 \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||The Eagle is a higher - priced one star restaurant near the river . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge is a high - priced restaurant in that delivers take - away . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum serves burgers and fries just outside the city centre . \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix is a three - star restaurant that offers quality food , located not far from St John 's College \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The child friendly Strada , near Rainbow Vegetarian Café , offers mid range priced Italian food , and has a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat serves Chinese food at a location in the Riverside area . It has a low customer rating and is family friendly . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly with a low price range of less than £ 20 . They serve English food , but have a low customer rating . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||Browns Cambridge has average prices and high customer ratings . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove is an English pub in the riverside area which is family friendly and in the cheap price range . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is very expensive , but has a low customer rating . It is a pub located near Café Adriatic \nname : The Cambridge Blue | Type : pub | food : Japanese | price : cheap | near : Café Brazil||The Cambridge Blue pub offers a cheap price range , serving Japanese food it resides near the Café Brazil . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||There is a coffee shop Giraffe that has an average customer rating with a price range of less than £ 20 and its a yes family Friendly coffee shop near The Bakers . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||There is a child - friendly coffee shop called Blue Spice that is situated by the riverside near Avalon . Their prices are over £ 30 . Their customer ratings are 5 out of 5 . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||Wildwood is a Japanese pub with cost less 20 ; however it has average ratings . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||Highly rated French food at The Rice Boat by the riverside . No Children . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||If you 're looking for a family friendly French meal , try The Waterman near Crown Plaza Hotel . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||A moderately priced restaurant offering Japanese food is a pub restaurant , The Mill . The Mill is located in the riverside area . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a restaurant serving pastas and wines in the medium price range . It is located near Café Rouge . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : no||The Rice Boat is a Japanese restaurant in the city centre with an average customer rating . It is family - friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves Japanese food with a customer rating of 3 out of 5 . It is not a child friendly establishment . The Punter is located near Café Sicilia , with a £ 20 - 25 price range . \nname : Alimentum | food : Indian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum provide premium Indian food . They are located in the city centre , near the Yippee Noodle Bar . Their rating is moderate . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Cocum is a Japanese coffee shop with a customer rating 3 out of 5 . It 's not a family - friendly venue , and is moderately priced . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : no | near : The Portland Arms||Near The Portland Arms in the city centre is The Punter . This is within the price range of more than £ 30 and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A children friendly fast food coffee shop with high prices is in the city center , there customer rating is 1 out of 5 and the name is Fitzbillies . \nname : Alimentum | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a kid - friendly Chinese restaurant in Riverside that has food that costs more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||A French restaurant named Loch Fyne is a great restaurant which is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a highly rated coffee shop in the riverside area . it is highly rated but not suitable for children . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||Customers rate coffee shop Aromi 's French food dining experience 5 out of 5 . Leave the kids at home and find Aromi in the riverside area . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : yes | near : The Sorrento||Near The Sorrento in the city centre , Browns Cambridge is a family - friendly venue serving Japanese food \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : no | near : The Sorrento||If you are a busy working person , and happen to be in city centre near the The Sorrento , stop in at Browns Cambridge for fast food and grown - up dining . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is a restaurant with an average rating for English food . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||The Cotto coffee shop serves Japanese food . It is near the riverside near The Portland Arms . The price range is less than 20 . It has a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine The Wrestlers serves French Food . This coffee shop is moderately priced and kid friendly . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Being children friendly and found near The Rice Boat in riverside , The Twenty Two has a customer rating of 5 out of 5 and a price range of more than 30 Euros . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||Located near The Bakers is The Plough a cheap family friendly restaurant . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle , an Italian coffee shop located in riverside near Burger King , offers a children friendly atmosphere with prices on the higher end . The Eagle has a 1 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi , serving French food by the riverside , has 5 out of 5 stars , is a children friendly coffee shop . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a low priced and low quality hamburger joint next to the Rainbow Vegetarian Café . Also , it is family friendly . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe restaurant is near The Six Bells and offers lower priced fare . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a mixed review burger diner near All Bar One . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle is a 5 star restaurant specialising in Japanese food \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a cheap coffee shop . It has a customer rating of 5 out of 5 . It is near Burger King . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves French food located in the riverside area near Raja Indian Cuisine . It is kid friendly with a price range of £ 20 - 25 \nname : Loch Fyne | food : Italian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||The Rice Boat on the river at Loch Fyne serves average Italian Food . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a low price coffee shop that is family friendly . It serves Japanese food and has an average customer rating . \nname : The Mill | Type : pub | food : Japanese | price : cheap | area : riverside||A Japanese pub with a cheap price range and by the riverside is The Mill \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||With low - price near All Bar One its located Green Man , a fast food restaurant \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||Browns Cambridge restaurant has a low customer rating , 1 out of 5 , and is high priced . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is in the area of the city centre . It has a moderate price range , is kid friendly , and has a customer Rating of 1 out of 5 . \nname : Cotto | food : French | near : Café Rouge||Cotto is located near Café Rouge and serves French food . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Italian in the price range of more than 30 . It is located in riverside , near Express by Holiday Inn . They are not child friendly and have a high customer rating . \nname : Loch Fyne | food : Indian | customer rating : low | area : city centre | near : The Rice Boat||There is a place near The Rice Boat called Loch Fyne that serves Indian food , has a low customer rating , and is in the city centre . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a pub in the city centre , it has a customer rating of 5 out of 5 and is family - friendly . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman serves Chinese food with price Range less than £ 20 located in riverside , family friendly mood , but with low customer Rating . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||There is a cheap sushi restaurant called Fitzbillies located in The Six Bells . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is a French coffee shop by the name of The Golden Palace in riverside . It has an average customer rating and a £ 20 - 25 price range . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||Near The Bakers is a child - friendly restaurant priced over £ 30 called The Plough . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||If you are looking for an inexpensive family friendly restaurant , The Vaults offers Italian food . \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms is the cheap and family friendly The Punter . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap coffee shop that offers Indian food . It is cheap , has a 5 out of 5 customer rating and is located in the riverside area . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is a fairly cheap place selling Chinese food . It is located in the riverside area near All Bar One . It is not family friendly , with a price range of less than £ 20 . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a pub that costs more than 30 pounds and has a 5 out of 5 rating . It is located near Café Adriatic . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||A child friendly pub with English food is ' The Waterman ' . Can be found near ' Crowne Plaza Hotel ' . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has a great 5 out of 5 star menu that will make you want more French cousin . Its located around the corner from Café Rouge . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : riverside||The Phoenix is a restaurant providing Italian food , and the customer Rating is 5 out of 5 , located in a riverside area . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Indian food . It is cheap , has an average customer rating and allows children . It is near the city centre and Express by Holiday Inn . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||A few steps of the Café Sicilia , there is a high - priced place called Clowns where children are welcome . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman around riverside get a customer ration of a 3 out of 5 and yes it is kid friendly and have moderate prices and serve Italian food \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : high||The Dumpling Tree is an expensive restaurant offering pasta . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is an Italian restaurant near Rainbow Vegetarian Café . It has a low customer rating and is not family - friendly , but you can eat for less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop has moderate prices and a 3 star customer rating . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a pub serving Japanese style food . It 's child - friendly and has an excellent customer rating of 5 out of 5 . \nname : The Rice Boat | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a restaurant , The Rice Boat , located riverside that serves Chinese food . It is kid friendly and has a customer rating of 3 out of 5 . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Café Sicilia is kid friendly , has Clowns and all for about £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a one star coffee shop located on the river next to Crown Plaza Hotel . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace , located in riverside , is a low - rated French coffee shop where a meal can be enjoyed for less than 20 pounds . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||pasta sold near the riverside Alimentum has low rating and priced too high it is near the Yippee Noodle Bar . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue is a 3 star restaurant that offers a selection of wine , spirits and appetizers . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : city centre||There is a pub that serves Chinese food located in the city centre with a customer rating of 5 out of 5 called The Waterman . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : no | near : The Portland Arms||The Dumpling Tree is a non - family - friendly pub serving English food near The Portland Arms . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter , an adult coffee shop located near Café Sicilia , serves sushi at low prices . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is a children friendly restaurant . Its price range is £ 30 . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||A Chinese restaurant in city centre near Yippee Noodle Bar is Alimentum . It 's customer rating is high with a price range over £ 30 . \nname : Cotto | food : Indian | customer rating : low | family friendly : yes | near : Ranch||The Cotto serves Indian food . It has low customer ratings but is family friendly . It 's near Ranch . \nname : The Punter | food : English | price : cheap||The Punter has English food and is cheap . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is an expensive restaurant adequate for families . \nname : Wildwood | Type : pub | food : French | price : high | customer rating : 3 out of 5||Wildwood its a public restaurant of French food for all \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman in riverside is an Italian pub with an average customer rating \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||The child friendly fast food restaurant Strada has a price range more than £ 30 and is found near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The fast food coffee shop , The Eagle has a moderate price range and is not child friendly . It has a customer rating of 1 out of 5 and is near Burger King in the city centre . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Near Ranch is The Cricketers , which has average customer ratings and provides a kids - friendly atmosphere within a pub . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||The Giraffe coffee shop is a 3 star children friendly place , located near The Bakers . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||There is a family friendly Japanese restaurant called Loch Fyne that has meals in the 20 pound price range . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a low cost French restaurant . It is located near Yippee Noodle Bar on the riverside . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||There is a pub near The Portland Arms called The Dumpling Tree . It offers fast food and it is children friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : £ 20 - 25 | family friendly : yes||Try Loch Fyne for an average priced family friendly Indian food restaurant . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat near Rainbow Vegetarian Café has an average customer rating in a lower price range . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : average||Browns Cambridge has Chinese food that has a average rating \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly , Italian coffee shop in the city centre area with a low price range and low customer rating . \nname : The Mill | Type : pub | food : French | price : moderate | area : city centre||Ideally situated in the city center , The Mill pub offers moderate French food . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a low - priced restaurant near the river that is not for families . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||The children friendly Travellers Rest Beefeater restaurant has a price range of more than £ 30 . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||The children friendly pub named Cocum has an average customer rating and a high price range . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 3 out of 5||There is an Italian restaurant , The Cambridge Blue , which has a customer rating of 3 out of 5 . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix by the riverside serving Italian food has a moderate price range and customer rating 1 out of 5 . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies is a French restaurant near The Six Bells with moderate price range . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop which serves Japanese food . It is situated near the Crowne Plaza Hotel in the city centre . The customer rating is 5 out of 5 . It is family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a child friendly coffee shop serving high price Italian food in the city centre with an average customer rating . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : yes | near : The Portland Arms||Located in city centre , The Punter is a children friendly restaurant with a price range of more than £ 30 . It is located near The Portland Arms . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Chinese food for less than £ 20 is served at The Rice Boat located in the riverside area near the Express by Holiday Inn . It has a low customer rating and no , it is not family friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes||There is a coffee shop named Cocum that serves Indian food . It has an average rating , is expensive , and is kid friendly . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||There is a Chinese restaurant Browns Cambridge , which is family friendly on riverside , near The Sorrento . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil on the riverside of Cambridge with a high customer rating and an average price range of £ 20 - 25 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a kids friendly coffee shop serving Italian food . It 's near The Portland Arms and is rated 3 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly fast food restaurant . It is located in riverside near the Crowne Plaza Hotel . This restaurant is has a coffee shop style setup . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that serves Chinese food and is child friendly , is near The Portland Arms . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a Fast food restaurant near Café Rouge that receives a customer Rating of 3 out of 5 stars . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Fast food restaurant located in the city centre by Express by Holiday Inn . No , it is not family - friendly , but it has a customer rating of 5 out of 5 . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is located in the center of the city . It serves Italian food and is family - friendly . It has a cheap price range and an average customer rating . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Near The Bakers is a kid friendly , moderately priced coffee shop named the Giraffe with a customer rating of 1 out of 5 . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix , located in city centre , is an expensive restaurant that serves English food . They received a high customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||If you 're near The Sorrento and in the mood for some fast food , check out the coffee shop The Mill in Riverside . The price range is cheap for the area . \nname : Strada | Type : pub | food : French | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a pub that provides French food with a customer rating of 5 out of 5 near Yippee Noodle Bar \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a high end five star coffee shop near The Portland Arms in the riverside area . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is located on the riverside and is a low - rated , family - friendly pub . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : no | near : Ranch||The Cricketers is non family - friendly pub . It has a low customer rating and is near Ranch . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Riverside Zizzi is a coffee shop that offers average service and pricing , and is a place that your kid would not find suitable . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge in the riverside area near The Sorrento , serves English food and is family friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There is a coffee shop , The Eagle which offers Italian food in £ 20 - 25 . It is located near the Burger King at riverside . Its customer rating is high although it is not friendly to children . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : no||The Vaults is a good choice of fast food over 30 pounds , but it is not children friendly . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||The five star restaurant Loch Fyne is near The Rice Boat . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||The Taste of Cambridge restaurant has a low customer rating of 1 out of 5 due to a high price range . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman has English food and is located near Crowne Plaza Hotel . It is kid friendly . \nname : Wildwood | Type : restaurant | family friendly : no||The Wildwood restaurant is not for the family . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge offers a good deal on high quality food . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue is a moderately priced pub that serves fast food , and is located near Café Brazil . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a high - priced , family friendly pub located near Café Rouge . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop with awesome French food on the city centre near to The Portland Arms \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kids friendly restaurant that serves Chinese food ranging between £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||There is a Japanese coffee shop called The Eagle , near the city centre Burger King . It is family - friendly but has a low customer rating and costs more than 30 pounds . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a cheap Japanese restaurant located in city centre and is not a family - friendly low customer rating restaurant . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||Located in city centre is The Phoenix who serve Japanese . They have a price range of more than 30 and have a low customer rating . \nname : The Phoenix | food : Chinese | customer rating : 3 out of 5 | area : riverside||The Phoenix provides Chinese food It is located in the riverside . Its customer rating is 3 out of 5 . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is kids - friendly , has a price range of £ 20 - 25 and is rated 3 out of 5 by customers . \nname : The Phoenix | food : English | price : high | customer rating : average | area : city centre||The Phoenix is a high - priced English restaurant with an average customer rating located in the city centre . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a one star coffee shop located near Avalon . The prices are high . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge serves Indiana food in a relaxed atmosphere , centrally located near The Sorrento . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Near Burger King on the riverside is a coffee shop called The Eagle that does Japanese food . It has a low rating , is not child friendly and costs more than £ 30 . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant near Rainbow Vegetarian Café which serves good food at a low price . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : more than £ 30 | family friendly : yes||Loch Fyne is a high priced , child friendly , Chinese food restaurant . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||The Mill is a great coffee shop that has cheap fast food near The Sorrento in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop providing Indian food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||A new restaurant , friendly with children is now open . Its name is Travellers Rest Beefeater and prices start with 30 £ . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no||A fast food coffee shop , Cocum received an average customer rating and is fairly expensive . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice by a riverside near Avalon , is a family Friendly coffee shop with a low customer Rating and a low price Range . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a cheap French coffee shop in the city centre with a 5 out of 5 rating . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The coffee shop Zizzi has a price range of £ 20 - 25 , rating of 3 out of 5 , is kids friendly , and located in the centre of the city . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a full service restaurant close to the Crowne Plaza Hotel . Adults only . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn at riverside . It provides high priced Chinese food with a high customer rating . It is not children friendly . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : yes||The Olive Grove is children friendly . They serve English food . They are located in the city centre . They are a pub . There price range is high . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||If you want cheap Chinese go to Alimentum , in city centre and near Yippee Noodle Bar , it only has an average rating but it ' the spot . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum , is a pricey coffee shop with a 5 star rating in which families are welcome . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is a low - priced Chinese restaurant called Strada , close to Rainbow Vegetarian Café , which is well rated and family friendly . \nname : Bibimbap House | food : Japanese | price : moderate | area : riverside | near : Clare Hall||You can find Bibimbap House in Riverside close to Clare Hall and it is moderately priced . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree pub has Fast food and is children friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Cheap , 5 out of 5 coffee shop called The Eagle is not a family - friendly place but sells Italian food in the area of riverside near Burger King \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||Located near the Café Sicilia , The Punter coffee shop offers Indian food in the high price range . It is not children friendly and has a customer rating of 1 out of 5 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is located near The Six Bells . It is also kid friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||Not to be mistaken for your average pub , The Cambridge Blue is a class above the rest and offer premium menu choices for all times of the day . Located close to Café Brazil . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||Zizzi is a child friendly pub that serves average Chinese food . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat provides Indian food and is located in riverside . Customers give it a rating of average . It is kids friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the area of riverside there is a coffee shop that is kids - friendly and serves Fast food called Taste of Cambridge near Crowne Plaza Hotel . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a fast food restaurant in the low price bracket . It is near the Rainbow Vegetarian Café and not family friendly . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , Strada offers mid - priced Italian food in a family friendly atmosphere and has a three - star customer rating . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix near riverside is a 1 out of 5 moderate price range fast food \nname : The Twenty Two | food : Japanese | area : city centre | family friendly : yes||The Twenty Two provides Japanese food . It is located in city centre and is family - friendly . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a child friendly Chinese restaurant in riverside , near The Sorrento . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a three star coffee shop located in City Centre next to Crowne Plaza Hotel . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter , near Café Sicilia , is a French styled , high priced coffee shop , that is not child friendly , and has a customer rating of 3 out of 5 . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a mid - priced restaurant located near the Rainbow Vegetarian Café . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||In the city centre , near The Portland Arms , is a coffee shop that also sell Italian food . It is called Cotto and the price is moderate and their customer rating is a 1 out 5 . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family Friendly pub serving Italian food . Found near to The Portland Arms . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The wrestlers offers low priced sushi in a family friendly environment \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes||A family - friendly French coffee shop , Aromi , is located in the city centre and has a low customer rating . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , is the restaurant The Plough . It is a family - friendly restaurant . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||For French food visit Fitzbillies . They offer a moderate price range and are located near The Six Bells . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||A coffee shop called The Dumpling Tree that is child friendly sells meals for more than £ 30 and is based in riverside near Café Sicilia . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a Chinese pub with average priced food near Café Rouge . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue is an average French food restaurant . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||There is an average - rating pub called Zizzi which is family - friendly and serves Chinese food \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop located at the city centre . They serve Japanese food at high prices . It is not a child friendly establishment and has a customer rating of 3 out 5 . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop in Riverside near Avalon , it has a customer rating of three out of five , is kid friendly and has a moderate price . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||Aromi is a poor pub by the river that is not family - friendly . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant with a high customer rating which offers Fast food located near Rainbow Vegetarian Café without a kids friendly atmosphere in the price range £ 20 - 25 . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat it is a Chinese food restaurant with a high customer rating . It location is near to riverside area . Bring your kids , and enjoy the meal . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a pub that serves Japanese food over by riverside . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Alimentum in riverside serves Italian food but it is not family - friendly but the price Range is less than £ 20 \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is an inexpensive non - family friendly Indian restaurant located in Riverside near All Bar One \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies , is a low - rated coffee shop in the city centre area . This adult 's only coffee shop serves French food for the average cost of less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , a coffee shop , serves Fast food and has an average customer rating . It is located in the city centre near the Crowne Plaza Hotel . It is not family - friendly . \nname : The Vaults | Type : restaurant | food : French||The Vaults is a restaurant serving French cuisine . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly coffee shop called Browns Cambridge near the Crowne Plaza Hotel in riverside serving French food . The customer rating is typically average . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers , priced between £ 20- £ 25 , it is kid - friendly and boasts a customer rating of 3 out of 5 \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly riverside restaurant , which sells Italian Food . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Clowns is a expensive pub with high ratings near the river \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The Plough , a moderately - priced , kid - friendly pub , is near Café Rouge . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant in riverside near Express by Holiday Inn . They offer excellent food at average prices . They are not family - friendly . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 3 out of 5||An Italian restaurant called The Cambridge Blue has a customer rating of 3 out of 5 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is located in riverside , serves French food , and it not children friendly . It has a price range of more than £ 30 and has a 5 out of 5 customer rating . \nname : The Rice Boat | food : French | customer rating : average | area : city centre | family friendly : no||In the area of city centre is The Rice Boat . It is average rated French food , and not family - friendly . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly cheap pub that serves Indian food near Riverside . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||If you 're looking for expensive English food near Express by Holiday Inn in the riverside area , then try The Rice Boat which is not child friendly and has a 1 out of 5 customer rating . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Riverside has a children friendly French coffee Shop called Taste of Cambridge . The shop is near Crowne Plaza Hotel . \nname : The Mill | Type : pub | food : Chinese | price : more than £ 30 | area : riverside||The Mill is a pub type Chinese place in Riverside , however prices are more than 30 pounds . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||With a 1 out of 5 customer rating , Clowns is a coffee shop located in the riverside area near Clare Hall . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two allows children and serves Indian food . \nname : Wildwood | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is an Indian coffee shop with a moderate price range and above average customer rating of 3 out of 5 near the Ranch area . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Midsummer House has a high price range with an average customer rating . It is a fast food restaurant near All Bar One . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : no||The Giraffe serves Japanese food , it is an adults only pub situated near the Thames . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix serve high quality food at a low price . \nname : Green Man | food : English | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man is located in the city centre ear All Bar One and serves English food in the high price range and is not child friendly . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man is a charming place located near All Bar One area in the city center with a friendly atmosphere , served Italian food and prices a bit high \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood is a French pub with low customer rating with price range less than 20L . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you go near Crown Plaza Hotel on the riverside , there is a coffee shop called Browns Cambridge that serves French food that 1 out of 5 people absolutely enjoy . The coffee shop is also quite family friendly \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a mid - priced , three star wine and cheese shop . Families are welcome to visit this establishment on the river 's edge . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a children friendly restaurant situated near the Express by Holiday Inn . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : high||Japanese food is served at the highly - rated Browns Cambridge where the average price range is £ 20 - 25 . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : yes||Alimentum sells Indian food and is in the riverside area . It has a high price range and is children friendly . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a children - friendly pub where is served French food . It is located a few steps of The Portland Arms . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : high||The Cambridge Blue is a high rated Chinese food restaurant . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a cheap and average place near Café Adriatic in riverside \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||Wildwood pub has a moderate price range that serves Italian food with a rating of 1 out 5 . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a children friendly pub on the riverside named Aromi which has a 3.33 rating on a scale of 5 , rated by the customers \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop in a cheap price range near Raja Indian Cuisine \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is located in riverside , near Burger King . it is a coffee shop which sells Japanese food for less than £ 20 . it is rated average by customers but isn 't family - friendly \nname : Alimentum | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the cheap price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 5 out of 5 . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is less than £ 20 and in the city centre serving English food . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||A restaurant called Strada got bad customer rating \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||The Cambridge Blue Pub has a moderate price range . It serves English Food , and is located near Café Brazil . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a coffee shop named Zizzi in riverside that has a price range of 20 - 25 , is not kid friendly , and has a customer rating of 3 out of 5 . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||In the price range of over £ 30 is the Green Man , a child friendly venue in the riverside area . \nname : The Cambridge Blue | Type : pub | food : Indian | price : less than £ 20 | near : Café Brazil||Located near Café Brazil is a pub called The Cambridge Blue which serves Indian food . The average cost is less than £ 20 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in the riverside area has a price range of more than £ 30 . It is not children - friendly and has a low customer rating . It serves Japanese food . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is near Clare Hall in riverside . It 's a coffee shop that serves French food and has a 5 out of 5 rating . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly restaurant near The Bakers . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||Famous for its Italian food is The Twenty Two . If you and your children are looking for some Italian food in the Riverside area , you should try it out . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum in the City center is serving Chinese food in the moderate price range . It is family - friendly . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers Chinese food is inexpensive , fabulous customer rating of 5 out of 4 , and is definitely not family friendly . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 3 out of 5||There is a moderate price range pub Wildwood that provides Chinese food with a 3 out of 5 customer rating . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||A family friendly restaurant with an average customer rating is Cocum . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family friendly Japanese restaurant . It has a three star rating and is in the mid price range . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||For cheap French food go to The Waterman in the city centre . They have a 5 out of 5 rating and are not family - friendly . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix services Italian food in the city centre and has a high customer rating and a price range of £ 20 - 25 . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a Japanese restaurant in the city centre , customers have given it a 5 out of 5 rating , the price range is more than £ 30 , and it is not kid - friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | near : Ranch||A Fast food coffee shop near Ranch called Wildwood has a high price range and a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap coffee shop named Aromi next to the river in City centre . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : no||Alimentum in the city centre provides English food . It is moderately costly and not friendly to kids . \nname : Wildwood | Type : pub | food : English | price : less than £ 20 | customer rating : low||Wildwood is a low price pub with a rating of one star . \nname : Green Man | food : Italian | price : high | area : city centre | family friendly : yes | near : All Bar One||the Italian restaurant Green Man located in the city centre close to All Bar One its expensive , with a high price range but great for family \nname : The Waterman | food : English | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant , It is not for the whole family It is near Crowne Plaza Hotel \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||Located in the riverside area sits Aromi , a kid friendly Italian coffee shop rated high by customers . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a Japanese restaurant in the city centre area . The price range is more than 20 and it is near All Bar One . \nname : Wildwood | Type : pub | food : Indian | price : less than £ 20 | customer rating : low||Wildwood is an Indian pub with low customer rating . It provides food for less than £ 20 . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a non family - friendly , cheap , fast food style pub in the city centre . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is located near All Bar One . Eating fast food given in average prices . The place has a very good opinions \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Express by Holiday Inn providing French food in the price range of £ 20 - 25 . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : no | near : All Bar One||The fast food serving Green Man can be found near All Bar One in the city centre . It has moderate prices and does not welcome children . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter , a not too kid friendly , high customer rating coffee shop , is located near Café Sicilia . The type of food maybe fast food but the price range is l20 - 25 . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : no | near : The Bakers||Child unfriendly , fast food restaurant , The Golden Curry has moderate prices and is near The Bakers . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||The All Bar One pub , The Green Man offers mid - priced food but does not cater to families \nname : The Golden Curry | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry serves Chinese and has an average price range . It is kid friendly and is near The Bakers . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||With a low customer Rating , Zizzi is a child Friendly pub serving Japanese food . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers , Family Friendly , It 's a Fast Food coffee Shop , Near The Portland Arms , And a average Rating . \nname : Bibimbap House | food : Chinese | price : high | area : city centre | near : Clare Hall||Bibimbap House provides Chinese food in the high price range . It is located in the city centre . It is near Clare Hall . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||The customers of Alimentum have rated it low . The place is situated by the riverside near Yippee Noodle Bar . It serves French food in average price range . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||There is a high rated Italian restaurant called The Cambridge Blue . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||A restaurant in riverside is Zizzi and has a price range of more than £ 30 . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : no||The Wrestlers is not child friendly , and has a low average with a high price range . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no||A French food coffee shop located on Riverside is Aromi . It has a low customer rating . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||Taste of Cambridge is a restaurant in the high price range . Its customer rating is high . \nname : The Golden Curry | food : French | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a kids Friendly French restaurant near The Bakers . they offers food in moderate price range . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||In the price range of over £ 30 is Strada . This is a child friendly location that customers have rated as high . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a kid friendly French eatery . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian family friendly restaurant . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||With a 3 out of 5 customer rating , Cocum coffee shop serve French food , are not family - friendly and have a price range of £ 20 - 25 . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||Browns Cambridge serves cheap fast food . It is poorly rated . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a low - rated , family friendly restaurant where you can order a traditional breakfast . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||In the riverside area , near Café Adriatic is the moderate priced Travellers Rest Beefeater . However , it has a low rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family oriented coffee shop and it 's affordable . It 's next to Burger King . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a high priced child friendly coffee shop near The Bakers . It has an average customer rating . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a pub near Ranch . Yes it is children friendly . It has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Japanese coffee shop in the city centre , near Crowne Plaza Hotel . It has a low customer rating and is not family - friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : 3 out of 5 | family friendly : yes||Zizzi pub serves Indian food , and it 's kid friendly . It has a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : no||High priced Chinese restaurant that serves adults only named Loch Fyne . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : no||The Giraffe pub , serving French food , is located in the city centre area and is not family - friendly . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Italian restaurant it is located near Express by Holiday Inn it is children friendly with an average customer rating the price range is high and it is located near the city centre \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Along the riverside their is a pub named Aromi that is family friendly and also has a customer rating of 5 out 5 . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||Near Café Brazil is a pub , The Cambridge Blue , that 's cheap and sells English food . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man offers Chinese food in the moderate price range in the Riverside area . The venue is located near All Bar One . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers offers Italian food all for less than £ 20 . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||I heard of this amazing place called The Taste of Cambridge . It has amazing customer ratings for only 25 euros . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies has great fast food available . They are nearby the river and while it is not the cheapest the quality is not all bad . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes||The low rated Japanese coffee shop , Aromi , is family - friendly and located near the city centre . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||The kids friendly restaurant , The Punter , has a moderate price range . Located in the riverside area near The Portland Arms . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is an average French restaurant that is kid friendly . It has been rated 3 out of 5 by its customers . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A family friendly coffee shop with a price range of less than £ 20 , Zizzi , is in the riverside area . It has a low customer rating . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||For Indian food at below average prices , there is the Alimentum near to the Yippee Noodle Bar in the riverside area . However , its customer rating is low . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||Alimentum is a mid priced restaurant offering Japanese food , it is family friendly . It is located close to the City Centre \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Wildwood is a sushi spot and pub in the high price range . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is child friendly . It is located on a riverside near The Rice Boat . The customer rating is 1 out of 5 . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a restaurant located in riverside near All Bar One . It has a price range of more than £ 30 . \nname : The Golden Curry | food : English | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a kid - friendly restaurant located near The Bakers . It serves English food at a reasonable price of £ 20 - 25 . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||The Phoenix has a lo rating , but serves Japanese food . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||There is a coffee shop named The Golden Palace that serves French food . they are located in city centre . with moderate price 's and a 1 out of 5 rating . \nname : Browns Cambridge | food : Indian | price : high | customer rating : average||Browns Cambridge is a high priced Indian restaurant that has only received an average customer rating , \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a low price English food restaurant located in the riverside area with a non - family - friendly atmosphere . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||By the river , is a low price Indian called The Phoenix , but it does have bad customer ratings . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace , a Japanese coffee shop located in the city centre , is cheap and has a 5 out of 5 customer rating . \nname : Midsummer House | food : Chinese | customer rating : high | near : Café Rouge||Midsummer House provides Chinese food that is highly rated by customers . It is located near Café Rouge . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Chinese food in the riverside area at a high price range . It has an average customer rating , is children friendly , and is located near the Express by Holiday Inn . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop that serves French food near Ranch . It has a low customer rating and its price ranges less than £ 20 . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Chinese cuisine restaurant The Strada would like to welcome you and your nearest and dearest to try our fabulous food . We are fairly priced and have a moderate rating . We are near The Rainbow Vegetarian Café . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant next to Rainbow Vegetarian Café . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum coffee shop high menu is children - friendly Fast food . 1 out of 5 enjoy . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Average meals less than £ 20 for the whole family at Blue Spice in the riverside area . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||The Dumpling Tree is a Japanese restaurant with a price range of £ 20- £ 25 \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The Rice Boat restaurant is a family - friendly riverside dining experience serving English foods . However , it has a low customer rating . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel , The Waterman offers French style dining and a child free atmosphere . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman serves Chinese food . It is located in the city center , gets high ratings and is family friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||On the riverside , you 'll find Fast food and pub for less than £ 20 at non - family - friendly establishment The Olive Grove . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop serving inexpensive Italian food . It is located near Ranch and has a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||A low priced restaurant offering sushi is The Dumpling Tree . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix offers low - budget restaurant meals near the city centre . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns is family - friendly with cheap prices , located near Café Sicilia . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is an upscale coffee shop located on the river next to Burger King . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Located in city centre , The Waterman serves moderate priced French food in a not kid friendly environment . The have a customer rating of 1 out of 5 . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||For a moderate price range and a 1 out of 5 customer rating visit kid friendly Blue Spice in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a low rated but children friendly coffee shop in riverside that offers Japanese food at a price range of more than £ 30 . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||The Plough is an Italian pub with a cheap price range near Café Rouge . \nname : Midsummer House | food : Italian | customer rating : high | near : Café Rouge||Midsummer House is a restaurant near the Café Rouge . It provides Italian food and has a high customer rating . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||The Eagle is a good place to come and eat the best food looking the riverside more than £ 30 but a good choice \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderate priced coffee shop near Café Sicilia that has Japanese food but not kid friendly with a customer rating of 1 out of 5 . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum offers French food less than £ 20 . It is family friendly and located in riverside . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||For expensive Indian food with a family friendly environment in the city centre near Express by Holiday Inn try The Rice Boat . Recent customer rating is 1 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||An average pub called Zizzi is child friendly . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||Located in the riverside area , The Phoenix is a Japanese restaurant that received low customer reviews . Their prices are under £ 20 . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies fall into the more than £ 30 price range and is located near Rainbow Vegetarian Café . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||There is a lovely Japanese coffee shop named Cotto near The Portland Arms near the riverside with a high customer rating and an average price range . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a high rated restaurant tat serves Japanese food in an adult environment . Its prices range from 20 - 25 pounds and is conveniently located in the city centre , \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Join us at Alimentum restaurant for some fine Italian cuisine at mid range prices . You can find us right outside City centre on the lakeside across from Yippee Noodle Bar . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : city centre||The Waterman , near the centre of town , is a pub that serves poorly rated Chinese dishes . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||A Children Friendly pub in Riverside called Aromi has high ratings \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : no | near : The Sorrento||There is a Fast - food restaurant called Browns Cambridge that is located in the center of the city near The Sorrento that does not provide family - friendly services . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne Italian restaurant that is kid friendly \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a pub that serves Chinese food and is family friendly . It has a customer rating of 1 out of 5 . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||The Phoenix is in the Riverside area and have an average customer rating . They serve cheap English food . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is cheap family friendly place serving English food Customer rated 1 out of 5 . It is located in riverside area near Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop providing Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : Loch Fyne | food : Chinese | customer rating : average | area : city centre | near : The Rice Boat||Near The Rice Boat sits an averagely rated Chinese restaurant known as Loch Fyne in the city centre . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Family friendly coffee shop called The Punter low priced and located near Café Sicilia near town . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Near the All Bar One is the Midsummer House . They serve sushi and are cheap . They have a 3 out of 5 rating . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||A restaurant that is cheap is Travellers Rest Beefeater and yes , it is family friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : high||There is a restaurant that serves high priced range French food called The Dumpling Tree . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing Indian food It is located in the riverside . It is near Crowne Plaza Hotel . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a riverside coffee shop serving 5 star Italian food \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Located in city centre near Café Adriatic is the popular and highly priced Travellers Rest Beefeater . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is near Express by Holiday Inn with high ratings in the city centre . Its kid friendly and priced £ 20 - 25 \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : no | near : Café Rouge||The Plough is situated near Café Rouge . It is a pub serving Italian food with moderate prices . It is not kid friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||Loch Fyne is an inexpensive and family friendly English restaurant . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop with French food that is not family - friendly , with a customer rating of average it is near The Portland Arms . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes||A children friendly pub with Chinese food named The Olive Grove is in riverside and has a high price range . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman Indian is by the riverside . It 's child friendly and highly price but has a customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 1 out of 5||Wildwood Pub seems a little pricey for the food they are serving . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Located near The Bakers and rating 3 out of 5 , Giraffe is a high priced coffee shop that is not children friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Japanese food is served in The Punter , near Café Sicilia . It is a low - priced , family friendly coffee shop which has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||coffee shop , The Golden Palace . 5 stars , mid - level pricing . Burgers and fries , please . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada has a moderate price range , kid friendly service , and a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||A high customer Rating restaurant that located riverside called The Golden Palace . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : moderate||The Dumpling Tree is a moderately priced fast food restaurant . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||Taste of Cambridge is a high - priced restaurant with customer rating 3 out of 5 . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap and family friendly Chinese restaurant in the Riverside area called The Waterman that has excellent customer rating . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||There is moderate price range pub Wildwood which provides Fast food . \nname : The Rice Boat | food : Fast food | area : riverside||In the riverside area there is a fast food place called The Rice Boat . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada its a Italian restaurant located near Rainbow Vegetarian Café \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Fitzbillies is a coffee shop that has a medium price range and it 's family friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||a coffee shop Zizzi located by the riverside has a high price range with an average customer rating . they are children friendly \nname : The Mill | Type : pub | food : Indian | price : high | area : riverside||Located in Riverside , The Mill offers both a pub and Indian cuisine . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a French coffee shop with is kids friendly , and is in moderate price range located near Burger King in the city centre . However , it has a customer rating of only 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||A kid friendly Italian coffee shop right in the city centre is Fitzbillies . The price range is between £ 20 - 25 with a high customer rating . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : yes||A Chinese food that is family friendly but has low customer ratings is called The Golden Curry . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant in riverside that serves moderately priced French food . It has a customer rating of 1 out of 5 . \nname : The Vaults | food : English | price : cheap | family friendly : yes||The Vaults is a family friendly establishment serving cheap , English food \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family - friendly , Japanese restaurant in the city center . Customers give it a low rating . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Cheap English food can be found at Browns Cambridge . It has average customer rating . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a children friendly restaurant serving Chinese . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | near : Clare Hall||Located in the city centre near Clare Hall , Clowns offers Japanese food in a coffee shop with low customer ratings . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House is a high cost English restaurant by the riverside located near Clare Hall . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly fast food takeaway which has a price range of less than £ 20 . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | family friendly : yes||There is a place that offers French food called The Golden Curry . Its customer rating is 3 out of 5 and has a kids friendly ambient . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One in the riverside area , the family - friendly Italian restaurant Green Man offers food for less than 20 pounds . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||The Mill is a cheap Japanese pub in the riverside area . \nname : Cotto | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the more than £ 30 price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is high . \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located near Rainbow Vegetarian Café and has a 3 out of 5 customer rating with moderate price ranges and a kid friendly atmosphere . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||A one star family friendly restaurant is The Golden Curry . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||a French Blue Spice that is more than £ 30 founded at riverside area . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a Fast - food coffee shop near Burger King in the center of the city . While the shop holds an average customer rating and has a cheap price range , it is not a family - friendly place . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Japanese food in riverside . They are not family - friendly , have a high price range , a 3 out of 5 customer rating , and are located near Express by Holiday Inn . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a sushi restaurant located near The Bakers . It offers sushi at a medium price point suitable for everyone in the family . \nname : The Punter | food : English | price : cheap||The Punter is a cheap restaurant that provides English cuisine . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Families are welcome at The Eagle coffee shop - great for those on a budget . Find us near The Burger King . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a highly rated , family restaurant . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the moderate price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||In the riverside area near Express by Holiday Inn is the highly rated The Rice Boat . With prices more than £ 30 , they serve English food and are not children friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne sells delicious meals for the whole family . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Indian food . It scores very highly with customers , is near the river and Crowne Plaza Hotel . It doesn 't allow children . \nname : Green Man | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Riverside offers a high quality French food restaurant near All Bar One . This child friendly restaurant is called Green Man . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a Chinese restaurant and is family friendly . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The prices at Zizzi , a coffee shop in Riverside , might be high and there customer rating is one out of 5 but they are child friendly . \nname : Cotto | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a Chinese food restaurant with a customer rating of 3 out of 5 near Ranch . It is family friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a cheap coffee shop and sushi bar with a three star rating . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant near to The Six Bells . Its price range is between £ 20- £ 25 . \nname : Green Man | price : moderate | area : riverside | family friendly : no||Green Man , found outside of City centre , is a medium price non family friendly restaurant . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : yes||Kid friendly Loch Fyne restaurant offers moderate priced Italian cuisine . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||An English , £ 20 range , low customer rating restaurant is The Waterman . This eatery is also family friendly but receives low customer ratings . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada is a kid friendly place for a moderate price that 's rated low at 1 out of 5 . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is an English restaurant near the Rainbow Vegetarian Café that is not friendly to children , has a high customer rating , and has a price point of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||The Cotto coffee Shop is a low budget commerce located in The Portland Arms . \nname : Cotto | food : Chinese | customer rating : low | family friendly : yes | near : Ranch||There is a family friendly Chinese restaurant with low ratings named Cotto near Ranch . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento in the riverside area is Browns Cambridge which serves Italian food and is kid friendly . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a cheap pub near Café Adriatic . It has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an English restaurant in the city near Express by Holiday Inn named The Rice Boat that is not children friendly with a high price range and a customer rating of 1 out of 5 . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is an English restaurant with one star . Mid priced and not child friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a none family - friendly coffee shop serving French food in the area riverside with a customer rating of 5 out of 5 . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap pub offering English food that is family friendly . It 's located near Café Rouge . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a child friendly coffee shop that serves Japanese food at a high price range . Cocum has a 3 out of 5 customer rating . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||A highly rated restaurant , the Taste of Cambridge offers fine dining for £ 20 - 25 . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||Located near , Clare Hall in the riverside area is the , Bibimbap House , which serves English food at a moderate price range . \nname : Cotto | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||For moderately priced Italian food there is Cotto near the city centre , close to The Portland Arms , which has been rated 5 out 5 by customers . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||There is a mid - range pub called Wildwood that provides Italian dishes . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap , non - family Chinese restaurant , located by the Rainbow Vegetarian Café . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In city centre , there is an Italian restaurant called The Rice Boat near Express by Holiday Inn . It is kids friendly and customer rate it 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a non - family - friendly fast food pub in the city centre with a price range less than L20 . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||Located in the riverside area , Japanese restaurant Blue Spice offers moderate price dining . \nname : The Twenty Two | food : French | area : city centre | family friendly : no||The shop in the city centre called The Twenty Two speak no French . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Moderately priced Indian restaurant in the city center called The Rice Boat , situated near the Express by Holiday Inn , has low customer rating . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is moderately priced with a low customer rating . It is located in the city centre near Yippee Noodle Bar . \nname : The Eagle | food : English | customer rating : 1 out of 5||The Eagle serves English food and has a 1 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop with fair customer reviews , is family friendly , in the high price range and located near Café Sicilia . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a moderately priced restaurant in the riverside area serving English food . The customer rating is 1 out of 5 . \nname : The Plough | Type : pub | food : Indian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a kids friendly pub , which offers Indian food within a price range of £ 20 - 25 . It is located near Café Rouge . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||With a high price range , The Plough is a family friendly restaurant near The Bakers \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child - friendly coffee shop in the high price bracket . It is situated in the riverside area near Café Sicilia \nname : Strada | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a moderately priced Indian restaurant located near the Rainbow Vegetarian Café . It has a 3 out of 5 customer rating and is adult only . \nname : The Eagle | food : Japanese | customer rating : average||There is an Japanese The Eagle and they are serving Japanese tea . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||There is a 5 star rated , mid priced coffee shop called Wildwood located in Ranch . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Located near Express by Holiday Inn is The Rice Boat for affordable Chinese food . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||There is an averagely rated restaurant called The Rice Boat near the Rainbow Vegetarian Café . It is high in price range \nname : Blue Spice | food : Chinese | price : £ 20 - 25 | area : riverside||The Blue Spice serves Chinese food for £ 20 - 25 in riverside . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||For Japanese food try Browns Cambridge , it is reasonably priced however it has a poor customer rating . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Highly rated , The Waterman serves cheap English food in an adult friendly environment . It is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a high rated coffee shop in the Riverside area that serves Indian food . The price range is £ 20 - 25 and not kid friendly . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada serves French food near Rainbow Vegetarian Café with low reviews and is not family - friendly for less than £ 20 . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an expensive coffee shop that offers fast food but is not recommended for children and is poorly rated , with only a 1 out of 5 . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||Family friendly Green Man serves British cuisine by the river . Families are welcome to this high end restaurant near All Bar One . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Strada is a pub serving English food . It is located near Yippee Noodle Bar , and has received a high customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : moderate||The Dumpling Tree Chinese restaurant is moderately priced . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : high||A high customer rating , Browns Cambridge has a price range of £ 20 - 25 \nname : Travellers Rest Beefeater | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a riverside restaurant with a customer rating of 3 out of 5 , situated near Café Adriatic . It offers a moderately - priced menu . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The French coffee shop ' The Wrestlers ' is located in the city centre , near ' Raja Indian Cuisine ' with a price range of over £ 30 . They are not children friendly . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||In the city centre near to The Portland Arms , the Cotto is a French coffee shop with mid ranged price but bad customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in the riverside area near Crowne Plaza Hotel , Browns Cambridge is a kid friendly French coffee shop with a high customer rating . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||near the Yippee Noodle Bar is a Japanese food place with one star rating and in the high price range called Alimentum \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers , which serves French food with a customer rating of 5 out of 5 is children friendly . The price ranges more than £ 30 . \nname : The Eagle | food : Japanese | customer rating : 1 out of 5||The Eagle has a customer rating of 1 out of 5 . They serve Japanese food . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that offers Indian food at a moderate price . It is located near the Raja Indian Cuisine in the riverside area and is not family friendly \nname : The Golden Curry | food : English | price : £ 20 - 25 | family friendly : yes | near : The Bakers||An English restaurant , The Golden Curry can be found near The Bakers . It has a price range of £ 20 - 25 , and a kid - friendly environment . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Near Café Rouge the Wildwood restaurant is rated 3 out of 5 . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : city centre||With an average customer rating , The Phoenix is a cheap Italian restaurant near the city centre . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Located inside of The Portland Arms , Cotto is a coffee shop that offers food and wine . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Giraffe is a coffee shop near The Bakers with a customer rating of 3 out of 5 . It is not kid friendly and is priced between 20 and 25 pounds . \nname : Cotto | food : Fast food | near : Café Rouge||Fast food , near Café Rouge can be found at Cotto . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||Strada is a pub that sells French food near the Yippee Noodle Bar and has a low customer rating \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Located near Yippee Noodle Bar is a mid - priced 1 star restaurant called Alimentum . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||The Rice Boat , a 1 out of 5 star fast food restaurant located by the river . Not family friendly . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , in the city centre near Yippee Noodle Bar , has a customer rating 5 out of 5 , serving French food , and they 're cheap . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The Cricketers are kids Friendly pub in higher customer Rating near Ranch \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||There is a coffee shop and fast food place called Fitzbillies that is very cheap , it is in Riverside and has a low customer rating . \nname : The Eagle | food : Italian | customer rating : 3 out of 5||For Italian food , try The Eagle which is rated 3 out of 5 by customers . \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||Blue Spice serves French food costing £ 20- £ 25 , they are located on the riverside . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop is family - friendly and offers average snacks and drinks . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||A child friendly restaurant with a high price range is called Clowns , which can be found near Café Sicilia . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||There 's a family friendly Italian food restaurant with a low customer rating near The Portland Arms called The Cricketers \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid friendly Italian restaurant . with a 1 out of 5 rating in the riverside area having a moderate price range . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : no||In the city centre there is an Italian restaurant called The Twenty Two . It is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop in riverside near Raja Indian Cuisine . They serve French food and the price ranges from £ 20 - 25 . \nname : Blue Spice | food : French | price : cheap | area : riverside||Blue Spice located in the area Riverside are doing cheap French food . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a low priced family restaurant that is close to the river . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe on the riverside is a child friendly pub that does Japanese food . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||located in riverside is a kid friendly establishment called Blue Spice . their price range is £ 20 - 25 , and has a rating of 3 out of 5 . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two restaurant provides Chinese cuisine and us kids friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop located near Ranch , serving Japanese cuisine . It has a 5 out of 5 rating with prices over £ 30 \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : city centre||The city centre area is home to a high priced pub called Clowns . This pub receives a customer rating of 3 out of 5 stars . \nname : The Rice Boat | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The place that is kids friendly in the riverside area that serves English food and has the customer rating of 3 out of 5 is The Rice Boat . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Check out Travellers Rest Beefeater for cheap prices in the riverside area near Café Adriatic . Rated average \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a low - priced restaurant in the city centre that delivers take - away . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns French coffee shop , in the riverside area , near Clare Hall has a low customer rating . \nname : Midsummer House | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||This stay - cation All Bar One is a cheap Midsummer House that has Japanese food available . Previous customers have given us a 5 out of 5 review . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The French restaurant The Golden Curry near The Bakers is children friendly but has a price range of more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In riverside area there is a 5 star rated , expensive coffee shop named Fitzbillies , that serves French food and is family friendly . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Blue Spice is located at the centre of the city and has a moderate price range . It is not kids friendly and has a customer rating of 1 out 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a coffee shop called Fitzbillies in the city centre , it is a low rated moderately priced shop serving Italian food . Unfortunately this is not a child friendly coffee shop . \nname : Zizzi | Type : restaurant | price : high | area : riverside||By the river is Zizzi , an expensive restaurant . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||A family friendly coffee shop near Café Sicilia is The Punter . They are cheap and are rated 1 out of 5 . They serve a variety of foods . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle is a Fast food restaurant with low customer ratings . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto , rated 3 out of 5 is a kids friendly , Japanese place near Ranch . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a non - kid friendly Japanese restaurant with a customer rating of 3 out of 5 with a price range of £ 20 - 25 . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : no | near : Ranch||The Cricketers pub near Ranch is family - friendly and has a customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop in the riverside area that has a 3 out of 5 customer rating . Although it has a higher price range , it is children friendly , serves Japanese food and is near the Burger King . \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Loch Fyne is a cheap English family friendly restaurant . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a Japanese coffee shop called Browns Cambridge , they have a high rating but not family - friendly in the Riverside area near Crowne Plaza Hotel . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||For a nice pub meal try The Twenty Two pub near to the Café Sicilia in riverside \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that serves Italian food at the riverside . It is kids - friendly and is near Crowne Plaza Hotel . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||Near The Portland Arms located in the riverside area , there lies the The Punter a none kids friendly environment with a moderate price range . \nname : Fitzbillies | price : cheap | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a restaurant that is family friendly and the prices are low . It is near the Express by Holiday Inn . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is priced less than £ 20 . It 's near Rainbow Vegetarian Café and has an average rating . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly restaurant in the city centre near to Café Rouge that serves Japanese food and has a 5 out of 5 customer rating \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Fitzbillies is an inexpensive Italian restaurant located near The Six Bells . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a kids - friendly Italian coffee shop located in riverside near Clare Hall . 3 out of 5 \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high rated average priced restaurant located near Express by Holiday Inn in the city centre . It is not child friendly . \nname : Wildwood | Type : coffee shop | food : Italian | price : high | customer rating : average | near : Ranch||Wildwood is located near the Ranch . The highly priced Italian coffee shop is rated 3 out of 5 . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman serves mid - priced British food and is north of the city center . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||Browns Cambridge is 1 star low - priced burgers that provides take - away deliveries . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : £ 20 - 25||The Dumpling Tree is a Japanese restaurant with a price range between 20 - 25 pounds . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||There is a Japanese food place The Phoenix is located in city centre with a moderate price range and a customer rating 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a kids - friendly coffee shop with moderate prices in the riverside area with a three out of five customer rating . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in Riverside situated by The Express by Holiday Inn is highly rated by its customers . Charging averages prices it is the number one place for family and friends to gather and enjoy traditional English food . \nname : The Olive Grove | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes||A fast food pub that is also kid friendly in the riverside area is called The Olive Grove . They have meals in the £ 20 - 25 price range . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , near Raja Indian Cuisine in the city centre , is a cheap Indian coffee shop its not the most family friendly . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||Wildwood is a pub in the low price range with great ratings . \nname : The Rice Boat | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The kid friendly French restaurant , The Rice Boat , is located in riverside and has a 1 out of 5 customer rating . \nname : Cotto | price : more than £ 30 | area : city centre | near : All Bar One||Cotto is located near All Bar One in the city centre and the price range is more than £ 30 . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood is a pub serving Italian food at a cheap price range . It has a customer rating of 5 out of 5 \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee Shop , near The Sorrento in Cambridge , offers a low - priced menu that includes cheeses , breads and alcohol . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a medium priced and low rated restaurant . They are near Rainbow Vegetarian Café and Family Friendly . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two provides Chinese food It is located in the riverside . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : no||With outstanding ratings , Strada is a cheap non friendly place . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop that also serves Indian food , it 's located in the city centre . While the price range is high , the customer service rating is average , it is not children friendly . \nname : The Eagle | food : Chinese | customer rating : 5 out of 5||With a rating of 5 out of 5 , The Eagle serves Chinese food . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a cheap Japanese restaurant by the riverside with 5 out of 5 star rating . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : yes||Alimentum provides Indian food in the high price range . It is located in the city centre . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , an English family - friendly restaurant , has a moderate price range for its riverside location near Express by Holiday Inn . Customer Rating : 1 out of 5 \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||Serving English food and affording a high customer rating we have The Cambridge Blue restaurant . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||new The Sorrento by the riverside , Browns Cambridge serves French cuisine and is children Friendly \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||There is a cheap Italian coffee shop named Cocum , with customer ratings of 5 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||I would avoid The Golden Curry . As the name suggests , it offers Indian cuisine , but it is far from golden in quality . Its in the riverside district near Café Rouge . PS : Leave the kids at home . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a kid - friendly fast food restaurant near Ranch that is rated 1 out of 5 . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||While their prices are a bit high at over £ 30 per en tree , The Vaults is an excellent choice for authentic Japanese cuisine in a family friendly environment . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a child friendly , French coffee shop near Café Sicilia with a customer rating of 5 out of 5 and pricing of more than £ 30 . \nname : The Eagle | food : English | customer rating : 1 out of 5||The Eagle serves English food . They are customer rated 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||The Loch Fyne , a French restaurant , is child friendly , and prices are usually more than £ 30 . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry serves fast and is considered family friendly and they also has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Browns Cambridge offers fast food in the low price range . It has a high rating . \nname : Bibimbap House | food : French | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a moderately priced restaurant that is close to Clare Hall . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix Indian restaurant has a low customer rating and is located in the city centre . It 's price range is less than 20 . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Enjoy Italian fare at The Waterman in the riverside area . This restaurant is kid - friendly , has average customer ratings and is in the above average price range . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant is located on the riverside near the Express by Holiday Inn . The restaurant serves English food and is child friendly . While the price range is more than 30 European dollars , it has a high customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A high restaurant located near the centre of the city , serves good food for all family called Aromi \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||A low priced coffee shop located northeast of Avalon is called The Blue Spice . It is not family friendly and has been rated only one star . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle serves Japanese food , although it has a low customer rating . \nname : Blue Spice | food : English | price : more than £ 30 | area : riverside||The Blue Spice offers English food with a price range is above £ 30 in the riverside area . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||Wildwood is an Italian pub with a moderate price range and a customer rating of 1 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||There is a low priced restaurant , The Dumpling Tree \nname : Green Man | food : French | price : high | area : riverside | family friendly : yes | near : All Bar One||There is an expensive , child - friendly , French restaurant called Green Man near All Bar One in Riverside . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two is a Chinese food restaurant located on the riverside . It is children friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop on the riverside serving fast food in the moderate price range and has a customer rating 1 out of 5 . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : no | near : All Bar One||You can get Italian food in moderate price range in riverside area , near All Bar One in Green Man . It is not kids friendly place . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : The Rice Boat||If you 're walking by the riverside , try out The Twenty Two . Located near The Rice Boat , The Twenty Two offers a kids - free atmosphere , and the prices range from £ 20 - 25 . Rated high . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a coffee shop called The Cricketers . They serve Indian food and have a 1 out of 5 rating . The Cricketers is kid friendly . You will find it near The Portland Arms . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House that is near Café Rouge has a 5 out of 5 Japanese food . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : no | near : Café Rouge||Located near Café Rouge , The Plough is a high priced pub that features Chinese food and isn 't family friendly . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||Right off the river is a 5 star restaurant called The Phoenix . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||Highly rated The Wrestlers sells Fast food at a cheap price . It is not family - friendly though . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House near Café Rouge , offers French food rating 3 out of 5 for most customers . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||Eating at The Golden Palace restaurant will cost you between £ 20 ad £ 25 . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne is an average priced family friendly restaurant . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub along the riverside , it serves French food for a moderate price and is kid - Friendly . \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||Zizzi allows children , has a low rating and serves Indian food . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : no||The Wrestlers is a Italian restaurant that is highly priced . It is not a children friendly restaurant and has an average customer rating . \nname : The Golden Curry | food : Italian | customer rating : high | family friendly : yes||If you want a high rated Italian food choose The Golden Curry . It is also children friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a cheap coffee shop that serves Indian food for under £ 20 . It is family friendly and has a low customer rating . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Zizzi is a child friendly coffee shop in the city centre . Prices are high , and costumers rated Zizzi 3 stars out of 5 . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||On the riverside is a family - friendly Italian restaurant called The Twenty Two . \nname : Blue Spice | food : Fast food | price : £ 20 - 25 | area : riverside||Blue Spice serves fast food on the riverside for a price range of £ 20 - 25 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||There is a high - priced , children friendly coffee shop called Blue Spice in the riverside area near Avalon , with a high customer rating . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Located in riverside near Clare Hall , Bibimbap House serves Italian food at a high price range . \nname : Alimentum | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum if a sushi food . We have six stars . We have expensive costs . We are close to Yippee Noodle Bar at City Centre . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Indian food at the price range of less than £ 20 . It has a customer rating of low . It is located in the city centre . It is family friendly and it is near the Express by Holiday Inn . \nname : The Wrestlers | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers offers English food and is child friendly . The price range is more than £ 30 but the customer rating is high . \nname : The Plough | Type : pub | food : English | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Near Café Rouge is a pub called The Plough that provides English food with a price range of £ 20 - 25 . It is kids friendly . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a cheap coffee shop near Café Brazil . It is in the Riverside area and has a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes||In the city centre there is an Indian pub called The Olive Grove which is family friendly and prices less than 20 . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : high||The Dumpling Tree is a restaurant providing Chinese food in the high price range . \nname : The Olive Grove | Type : pub | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove : This child friendly pub provides Italian dining in their riverside position , you can expect to pay above the average price for your meal here at £ 30 plus . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||Located outside the city centre is an inexpensive pub called The Olive Grove . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant in Cambridge with family - style dining . The Golden Curry is near The Bakers . The golden Curry is low - priced and offers wine . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a low priced family friendly pub providing eat in , take out or delivery . It is located in the Café Rouge area . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman is a average restaurant located in the centre of the city , serves cheap food for all \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults serves Italian food at low prices . Not family friendly . \nname : The Punter | food : Italian | price : more than £ 30||The restaurant The Punter serves Italian food and charges more than 30 pounds . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a kids friendly French restaurant near Rainbow Vegetarian Café with high rating and provides food in price range is £ 20 - 25 . \nname : The Eagle | food : Japanese | customer rating : low||The Eagle serves Japanese food received a low rating . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a high price range coffee shop in the riverside area providing children friendly service with a customer rating of 1 out of 5 \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes||High end and child friendly pub , The Olive Grove , serves Japanese food in the town centre . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||Looking to eat Japanese for under £ 20 , try The Wrestlers . No children and an average rating . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||The riverside Indian coffee shop near to Clare Hall is called Clowns and has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : no||Loch Fyne is an adult - only Chinese restaurant with high prices . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry offers French food in the average price range and is kid - friendly . It is located near The Bakers . \nname : Bibimbap House | food : English | price : high | area : city centre | near : Clare Hall||Bibimbap House serves English in the city centre near Clare Hall . It has a high price range . \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||for some not too expensive food try the Alimentum in the city centre . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Near the Express by Holiday Inn in the riverside area , there is a high priced Chinese restaurant named The Rice Boat that is nor child friendly and rated 1 out of 5 stars by its customers . \nname : The Mill | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside||The Mill is a pub that offers Chinese food with a price Range of £ 20 - 25 in a riverside area \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two Is a restaurant that serves Chinese food and its kids friendly \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||There is a 3 star coffee shop named Cocum , which is suitable for families . It offers low - cost fast food and drinks . \nname : The Mill | Type : pub | food : French | price : moderate | area : city centre||The Mill offers French food at a moderate price . Ideally , this pub is situated in the city center \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is in the riverside area . It is a kids friendly pub with a rating of 1 out of 5 . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman , while not family - friendly , is a 5 star restaurant , with cheap prices , English food , and a location in Riverside . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no||The Japanese food serving Alimentum does not welcome children . It has high prices and can be found at the riverside . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap , family - friendly , French coffee shop , with a 5 out of 5 rating . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice is low cost and located near the river . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Brazil||In city centre , near Café Brazil , lies The Vaults . It is a moderately priced coffee shop with a rating of 1 out of 5 . \nname : Bibimbap House | food : Chinese | price : cheap | area : riverside | near : Clare Hall||Bibimbap House provides Chinese food in the cheap price range . It is located in the riverside . It is near Clare Hall . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is an Italian coffee shop near The Portland Arms in the city centre with a customer rating 3 out of 5 and moderate price range . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Located at the city centre near The Portland Arms , is the moderately priced coffee shop Cotto . Serving fast food with a customer rating of 1 out of 5 . \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies , located near The Six Bells , is a reasonably priced French restaurant \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||Wildwood Pub offers cheap fast food and is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop that is located by the riverside . This is not a family - friendly venue , has a less than £ 20 price range and a low customer rating . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is a Pub located near Café Rouge . Its expensive . It offers American Cuisine . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Aromi coffee shop serves Indian food in the riverside area with a high customer rating and is children friendly \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | near : Ranch||A coffee shop named Wildwood is a fast food restaurant that is near a Ranch . The menu is moderately priced with a customer rating or 1 out of 5 . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly Japanese restaurant near the Crowne Plaza Hotel . \nname : The Rice Boat | price : more than £ 30 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat is rated high and menu prices are more £ 30 . It is located by the Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||A restaurant in the price range of £ 30 or more , there is the Taste of Cambridge with low customer ratings . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||The customer rating for Cocum is average , but it is a family friendly pub in the price range of less than £ 20 . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Wildwood is a pub that provides delicious fast food in the low price range . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||Kids are welcome at The Golden Curry near The Six Bells \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a family - friendly restaurant with quality hot Italian food at mid - level prices . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a beautiful restaurant near the riverside with price ranges less than £ 20 and its family friendly with an average customer rating . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a fast food restaurant in the city centre . The caters for families and they price range is less than £ 20.00 \nname : Strada | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a children friendly fast food place to eat with a price range of more then £ 30 and it has a high customer rating located near the Rainbow Vegetarian Café . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||With a rating of 1 out of 5 , The Rice Boat is a children friendly Indian restaurant located in the centre of the city near Express by Holiday Inn . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : city centre||The Eagle is a inexpensive venue with high ratings . It is located in city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low - price coffee shop located north of City centre near Burger King . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a child friendly , Japanese coffee shop near Café Sicilia . The prices are high and it has a rating of 3 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||A French restaurant near Café Rough in city centre is The Golden Curry . It has a low customer rating and is not kid friendly . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a pub providing French food . It is located near Café Rouge . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : no||The non - family friendly pub , Zizzi , serves Indian food and has a 5 out of 5 rating . \nname : The Rice Boat | food : English | area : city centre||The Rice Boat serves English food and is located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop located in centre city that offers moderate priced Indian food . \nname : The Golden Curry | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is located near the Café Rouge in the city centre . Yes it is family - friendly and serves Italian food . It has a low customer rating . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Dine on Japanese food near the riverside at the Blue Spice for a reasonable rate . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly coffee shop . It offers Italian food and is located in riverside near Crowne Plaza Hotel . \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||The Phoenix is a riverside English food shop , rated 1 by customers . \nname : The Mill | Type : pub | food : Indian | price : less than £ 20 | area : city centre||The Mill pub and Indian food , at low prices near the central city area \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||A restaurant in the riverside area named Blue Spice is located near Avalon . It is not kids friendly and has a moderate price range and a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is a child friendly Italian eatery . They have a customer rating of average and prices are in the high range . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Zizzi is a kid friendly coffee shop located in the riverside area . It has a high customer rating and falls in the £ 20 - 25 price range . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is located near of Crown Plaza Hotel . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is a pub that provides sushi . It is near the River . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : no||Alimentum is an expensive Italian restaurant in riverside . They are not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Fitzbillies is a coffee shop that is rated five stars and it 's family friendly . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults serves Italian food at moderate prices . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside area you can find Aromi an average kid friendly coffee shop that serves Japanese food . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a Japanese style coffee shop with high ratings and great prices - just leave the kids at home . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : yes | near : The Bakers||The kid friendly restaurant serves food for a moderate price . It is called The Golden Curry . This restaurant is located near The Bakers . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a French style family place . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||It is children friendly with a 1 out of 5 rating . Aromi is a pub at a riverside . \nname : The Mill | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside||The Mill is a pub providing Italian food . It is located in Riverside . The Mill have range price between £ 20 - 25 . \nname : The Plough | Type : restaurant | price : less than £ 20 | family friendly : yes | near : The Bakers||The Plough restaurant provides cheap food and is family friendly . It is located near The Bakers . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||French food at less than £ 20 is served at the family friendly coffee shop called The Punter . It is found near Café Sicilia , and has been given a low rating by its customers . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||There is a cheap restaurant The Phoenix located close to the center of the city that has a superb view across the rive . \nname : The Olive Grove | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap , family friendly pub with Chinese food in Riverside . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : yes||If you 're looking for a kid friendly Fast food restaurant with a moderate price in the city centre go to Alimentum . \nname : The Mill | Type : pub | food : English | price : high | area : city centre||In the city centre you can find a pub which serves English food called The Mill , it is quite expensive however . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There 's a restaurant in the Riverside area named The Waterman . This fast food place is known for being non family - friendly and offers lower customer service . \nname : Strada | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||There is a moderately - priced family friendly French restaurant called Strada . It is located near Rainbow Vegetarian Café and has a customer rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||The Giraffe is a pub in the riverside area that offers Italian food and is child - friendly . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is high . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre , near the Express by Holiday Inn , there is a Japanese restaurant The Rice Boat with excellent customer service , kids - friendly , and prices among £ 20 - 25 . \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers kid friendly English modestly priced moderate customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : city centre | near : The Sorrento||The Mill coffee shop offers Fast - food . It has a high price range and is located in the city centre near The Sorrento . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is a family friendly Indian restaurant that has an average rating . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman is a restaurant serving French food . Customer rating is 3 out of 5 . It is child - friendly . It is located in the city center . Prices are £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The 5 star , family - friendly coffee shop , Fitzbillies , serves Italian food for cheap prices in the Riverside area . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a one - star restaurant that provides cheap breakfast . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : no||Cocum is below average price . It is a pub with an average customer rating . It is not family - friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||There is a pub on the riverside called The Waterman which serves Fast food and has an average customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||In the city centre near The Portland Arms , Cotto , a coffee shop offers cheap Fast food . its customer rating is average . \nname : Bibimbap House | food : Fast food | area : city centre | near : The Rice Boat||Bibimbap House is a fast food restaurant located near The Rice Boat in the city centre \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||French pub style food available at The Waterman by the riverside . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||There is a restaurant English with rank 1 out of 5 , yes , its The Golden Curry \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub serving Indian food . A family friendly restaurant near The Portland Arms . \nname : The Rice Boat | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In Riverside , there is a kid friendly restaurant named The Rice Boat that serves Indian food and has a customer rating of 3 out of 5 \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a restaurant serving Japanese food . It is affordably priced , located near the City centre , and is a family - friendly environment . \nname : Cotto | food : Fast food | customer rating : high | family friendly : yes | near : Ranch||Cotto is a children friendly fast food restaurant with a high customer rating that bis near Ranch . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a high priced Indian restaurant with a customer rating of 1 of five . It is located in the riverside area near Yippee Noodle Bar . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a high priced coffee shop near The Portland Arms , it serves French food and is located along the river with a client rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||There is a coffee shop called Fitzbillies in the city centre that offers Indian foods with a high - priced due to its high rating . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : city centre||The Mill is a pub that serves Chinese food with a moderate price range at city centre . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Located near The Sorrento , Browns Cambridge is a restaurant which offers a selection of wine , cheese , fruit , and other food . It is not a family - friendly establishment . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a children friendly , Japanese restaurant and pub near Café Rouge . The cost is slightly above average at £ 30 \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is not family - friendly with a price range of less than £ 20 serving French food near Rainbow Vegetarian Café with low reviews . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is located in riverside near Café Rouge . it is kid friendly . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||The Italian coffee shop Clowns near Clare Hall was rated average . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The child friendly pub called The Cricketers has a rating of 3 out of 5 , located near Ranch \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The highly customer rated , child friendly coffee shop located in Riverside near Burger King called The Eagle has great Italian food and costs more than £ 30 . \nname : Fitzbillies | food : Japanese | price : cheap | near : The Six Bells||Fitzbillies is a restaurant providing Japanese food in a low price range . It is located near The Six Bells . \nname : Loch Fyne | food : Japanese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne serves Japanese food along the riverside near The Rice Boat and has a high customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family - friendly pub in the city centre , the price range is less than £ 20 and it serves Italian food . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice specializes in fast food in Riverside , but is more expensive than the average . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is a family friendly restaurant . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop to the north of the city center near Avalon . Families are welcome . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||This is a cheap fast food restaurant named The Rice Boat . It is in the city centre close to Express by Holiday Inn . It is not family - friendly and a low customer rating . \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : no||The Rice Boat is situated in the city centre . The customer rating is low . It serves fast food . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Serving fast food , The Wildwood is a mid priced pub . \nname : Loch Fyne | food : French | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||The French restaurant Loch Fyne is situated in the area by the riverside near The Rice Boat . Customers have given the overall experience 1 out of 5 . \nname : Midsummer House | food : Indian | customer rating : high | near : Café Rouge||Midsummer House , situated near Café Rouge , serves Indian food and has a high customer rating . \nname : Bibimbap House | food : Chinese | area : riverside | near : The Rice Boat||Bibimbap House is located near The Rice Boat in riverside . It provides Chinese food . \nname : The Mill | Type : restaurant | area : city centre | near : The Rice Boat||The Mill is a restaurant near The Rice Boat located in city centre . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||A moderate priced restaurant near Café Adriatic called Travellers Rest Beefeater is located in riverside and has poor customer ratings . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a highly rated place selling Chinese food . It has a price range of more than £ 30 yet has a very high customer rating . It is not children friendly so it 's more for adults . The Rice Boat can be found in the city centre , near Express by Holiday Inn . \nname : The Plough | Type : pub | food : Indian | price : high | family friendly : no | near : Café Rouge||Located near Café Rouge , The Plough is a pub that serves Indian food at a higher than average price ranges and is not child - friendly . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||A family friendly restaurant that serves Fast food is The Golden Curry . They also have a low customer rating . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One , is a kid friendly restaurant named Green Man . Green Man is kid friendly with a moderate price range . It is located near the riverside . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is expensive family friendly place . It is average rated restaurant in the riverside area . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||In the riverside area is a 5 out of 5 rated cheap price range location the Travellers Rest Beefeater near Café Adriatic \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | near : Café Brazil||The Vaults coffee shop is located near Café Brazil in the city centre . It is reasonably priced yet has a low customer rating . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : city centre||Clowns is a pub in the city centre with an average rating and low prices . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub located in river side witch servers up French food for less than £ 20 per person , we are sorry that no children are welcome . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two serves English food . It is in the riverside area and is kid friendly . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||On the riverside is The Phoenix which serves Chinese food . They have a customer rating of 3 out of 5 and have a moderate price range . \nname : The Golden Curry | food : Italian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a restaurant that specializes in Italian dishes and is kid friendly all at an affordable price of 20 to 25 pounds and is located near The Bakers \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a cheap restaurant with a customer rating of 5 out of 5 . It is located near Rainbow Vegetarian Café . \nname : The Plough | Type : pub | food : French | price : high | family friendly : yes | near : Café Rouge||The Plough is a French food house . It located near Café Rouge . The price range is high . Public like to est there . It 's children friendly . \nname : Blue Spice | price : high | customer rating : average | area : riverside | family friendly : yes||Blue Spice in the riverside area has average ratings with customers , is in the high price range and is child friendly . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum pub has a moderate price range , is kid friendly and a 1 out of 5 customer rating . \nname : The Olive Grove | Type : pub | food : Japanese | price : high | area : riverside | family friendly : yes||The Olive Grove is a public restaurant located in riverside area , with high - priced Japanese food . and it 's children Friendly \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue is a pub that offers moderately priced fast food . It is located near Café Brazil . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Serving fast food , The Green Man pub is near Café Rouge in the riverside area \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man restaurant is located near All Bar One in the city centre area and serves English food . The price range is less than 20 pounds . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is a cheap pub near Café Adriatic with a customer rating 1out5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There 's a family friendly Indian coffee shop in the city center called Fitzbillies . It is rated low by customers but is less than £ 20 . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman offers a moderate price for their Indian food . They are kids friendly and have a ratings of 3 out of 5 . It is located in the centre of the city . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice serves Japanese food at higher - than - average prices . It 's located by the riverside . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||At the riverside is a family Friendly place called The Rice Boat serving French cuisine with a customer Rating of 5 out of 5 . \nname : The Twenty Two | food : Chinese | family friendly : no||The Twenty Two provides Chinese food \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is children friendly , offering French meals near The Sorrento , Riverside . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is near Ranch and is child - friendly . It serves Italian food and has a rating of 1 out of 5 . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Blue Spice is a high - priced , family - friendly venue located in the city centre with a customer rating of 3 out of 5 . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Blue Spice has a high customer rating and a price range between 20 - 25 euros located in the city and is kid friendly . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix is an Indian food shop , The price range is moderate . Customer Rating is bad 1 out of 5 . It is located in the city centre . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||The Waterman has a low customer rating for Japanese food . You 'll pay more than £ 30 . Child friendly and located in the city centre . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is an expensive five star coffee shop in City centre . It is located by The Portland Arms . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that servers Indian food . It 's customer rating is 1 out of 5 . It is located by the riverside . Yes it is children friendly . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a child friendly place to get Japanese food near Crown Plaza Hotel . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||if you are looking for a moderately priced place which is not child friendly in the city centre with a customer rating of 3 out of 5 there is The Waterman which sells Italian food \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||In riverside there is a kids friendly restaurant called The Olive Grove \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a French food restaurant , located near Café Rouge in the center of the city . It is not family - friendly , however the customer rating is a perfect 5 out of 5 . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is an Italian restaurant located along the river . They are family - friendly and food ranges less than £ 20 . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a pub called Giraffe in the riverside area that serves English food and is child friendly . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap Chinese food restaurant Strada rated 5 out of 5 that is family friendly near Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||There is a Italian coffee Shop near Café Sicilia called The Punter with an adult friendly atmosphere and a high price cost . Customer ratings for this location are average . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||By Café Sicilia is a coffee shop named The Punter . It is expensive , family - friendly , and as a three star customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving fast food . It 's located by the river and is a bit high priced but is child friendly with high customer ratings . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill serves Japanese food . It is a pub on the riverside and the price range is less than 20 . \nname : The Golden Curry | food : Italian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is an Italian restaurant that is kid friendly and located near The Bakers and is in the price range from 20 to 25 pounds \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||Clowns is a medium - priced restaurant located near the Café Sicilia in Cambridge . It is not suitable for families with small children . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop has a moderate price Range serving Italian food in the riverside area near The Sorrento . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman provides Indian food in the cheap price range . It is located in the city centre . Its customer rating is average . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located in the riverside area , with a 5 out of 5 customer rating , Zizzi is a cheap , family friendly coffee shop . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in Riverside , near the Burger Kings , that offers low pricing for less than superior service . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Cheap Italian food , Blue Spice located in Riverside area . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family - friendly Italian pub , with a 5 out of 5 customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||With a 1 out of 5 customer rating , the coffee shop Browns Cambridge offers Indian food in the riverside area . It is a children - friendly establishment near to the Crowne Plaza Hotel . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers provides cheap Chinese food rated 5 out of 5 with a family friendly atmosphere . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||An Italian restaurant ' The Wrestlers ' with an average price range of £ 20 isn 't family - friendly and has a low customer rating . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||The Travellers Rest Beefeater is a child friendly restaurant with a price range over £ 30 . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||If you want an Italian venue that is children friendly choose Strada . It is near Rainbow Vegetarian Café and doesn 't cost more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||The Loch Fyne is a cheap non family friendly fast food restaurant . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Low cost Japanese food is available in the riverside area near to All Bar One at The Green Man . Families are welcome there . \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||There is a pub called Cocum thats price range is high but the customer rating makes up for it . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in Riverside is close by The Express by Holiday Inn . Customer reviews are average , yet it offers affordable French food for all the family . \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a Café Rouge for family . It 's located south city . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a great coffee shop for adults . Customers rate it 5 out of 5 and it has very low prices . It is riverside near Avalon . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle , located in the city centre near Burger King , is a not kid - friendly coffee shop serving Japanese food in the £ 20- £ 25 price range . \nname : Strada | Type : restaurant | customer rating : high||Strada is a restaurant that has a high customer rating . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||There is a cheap restaurant in the riverside area near Café Adriatic rated 5 out of 5 called Travellers Rest Beefeater . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is cheaply priced and allows children . It serves Indian food , has an average rating . It is near the city centre and Express by Holiday Inn . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||The coffee Shop , Giraffe , near The Bakers is expensive and not child friendly . It was a good experience \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a non - family friendly Chinese restaurant in the city centre near Café Rouge . It gets a rating of 5 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : cheap | area : riverside||In the riverside area is a an Indian pub with a cheap price range called The Mill . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Poorly recommended Wildwood pub serves low cost French food in the city centre . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly restaurant serving English food . It can be found in the riverside area , near to Café Rouge it has a low customer Rating . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||There is a 3 out of 5 rating venue with a moderate price range near The Rice Boat named The Twenty Two . It is near The Rice Boat and is kid friendly . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||you can eat a food that the name is The Cambridge Blue and near Café Brazil . \nname : The Wrestlers | food : English | price : high | customer rating : average | family friendly : yes||The Wrestlers is a kid friendly restaurant . It is in the high price range . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub located near of Yippee Noodle Bar . \nname : The Twenty Two | food : French | area : riverside | family friendly : no||The Twenty Two is a French restaurant in riverside . They aren 't family - friendly . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||In the Riverside area is where The Eagle is located , it is rated 5 out of 5 and the price range is more then £ 30 . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix serves low cost Italian food in the riverside area . It has a one star customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Serving fast food at a cheap price in the city centre , Cotto is a coffee shop with an average rating located near The Portland Arms . \nname : Green Man | Type : pub | food : Chinese | area : city centre | near : Café Rouge||the place is Green Man , it is a sort of pub that offers Chinese food . It is located in city centre near Café Rouge . \nname : Loch Fyne | food : Chinese | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne is a great place to go for Chinese food in the riverside area . It is highly rated by customers . It 's location is near The Rice Boat . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||An Italian restaurant named the The Cricketers is located near All Bar One . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a low rated kid friendly English place near Café Rouge in riverside . It is named The Golden Curry , \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there 's The Rice Boat . It has a low customer rating and the price range is less than £ 20 . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is an English food house located near All Bar One . Price range is high there . Customer rated it 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop that serves Italian food . It is located in the city centre near Raja Indian Cuisine . Great place to bring your family . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||There is a mid - priced pub The Plough located near Café Rouge offering Italian food and is family friendly . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is a pub with cheap prices that are often less than £ 20 . It offers Italian food . There have been some reports of bad service . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House serves Japanese food that is less than 20 and is located near Clare Hall at the city centre . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix is a cheap place to eat on the north side of town . \nname : The Eagle | food : French | customer rating : 1 out of 5||The Eagle is a highly rated French cuisine venue . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman provides Indian food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||Giraffe is an Italian pub that specializes in spaghetti and spirits . Only those above the legal drinking age are allowed to enter . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop serves fast food is located near Raja Indian Cuisine in the city centre . It is family - friendly and has a price range less than 20 pounds . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is located in the riverside area and a family friendly fast food place with a price range less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is an English restaurant . \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||The Vaults is a cheap coffee shop with a 5 out of 5 rating near Café Brazil on the riverside , \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers great Chinese food in a family - friendly environment in the riverside area not far from Café Rouge . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Although the coffee shop Zizzi in the city center area has a price range of less than 20 pounds it received a low customer rating and is not family - friendly . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||An Italian pub is Green Man , near Café Rouge , located at the riverside . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||in the city centre there is a Italian food place which is not child friendly called The Waterman which is moderately priced and has a rating of 3 out of 5 \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant that is near Express by Holiday Inn in the city centre . Prices are cheap , received an average customer rating and is not family - friendly . \nname : The Eagle | food : English | customer rating : average||The customer rating average on the English food served at The Eagle . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a restaurant that is near Express by Holiday Inn . It is kids friendly \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a low - priced fast food restaurant with a five - star rating . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House is an Italian restaurant near The Rice Boat in the riverside area . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a child friendly coffee shop on the riverside . It can be found near to Avalon . The price range is moderate , less than £ 20 and it has an average customer rating . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly French restaurant with a rating of 5 out of 5 . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||There is a cheap Italian food place in the city centre , The Phoenix . It is poorly rated . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Midsummer House near Café Rouge is a highly rated restaurant serving English food . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman serves cheap Indian food . It has a customer rating of 5 out of 5 but is not family friendly . It is located on the riverside . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||With a customer rating of 3 out of 5 , Strada is moderately priced and kids friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a kids - friendly that provide English food near The Sorrento in the riverside area \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||French coffee shop located near Café Sicilia called The Punter . Affordable price range , less than £ 20 and child friendly . \nname : Green Man | Type : restaurant | area : city centre||Green Man is a restaurant in city centre . \nname : Alimentum | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum serves cheap Indian food and is located near Yippee Noodle Bar in the riverside area . It has a low customer rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||full meals and family friendly with a view of the river Aromi a 5 star coffee shop . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a children friendly coffee shop serving Fast food near The Portland Arms . Customer rating is 1 out of 5 . \nname : Clowns | Type : pub | price : cheap | customer rating : average | area : riverside||Clowns in the riverside area is a cheap pub with an average customer rating . \nname : Blue Spice | food : English | price : £ 20 - 25 | area : riverside||In the riverside ares with price range £ 20 - 25 Blue Spice serves English food . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located in the center of the city , near Crowne Plaza Hotel , Browns Cambridge is a coffee shop that serves Indian food . It is not family friendly , and it 's average rating by customers is low . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves moderately priced Italian food near Express by Holiday Inn by the river . It is family friendly and has a customer rating of 3 out of 5 . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||On the riverside is the Alimentum which serves Indian food . The price range is less than £ 20 and they are family friendly . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is located next to Rainbow Vegetarian Café , for all your eating needs . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge at riverside near Crown Plaza Hotel is a coffee shop that is children friendly and serves French food . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is family friendly French style food near Crown Plaza Hotel . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a children - friendly restaurant where is served Japanese food located near the Crown Plaza Hotel . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||For expensive sushi , try 3 - star rated Wildwood coffee shop near Ranch . \nname : The Cambridge Blue | Type : pub | food : French | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a French pub with prices more than £ 30 . They are near Café Brazil . \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : low||Browns Cambridge serves French food for more than £ 30 , and its customer rating is low . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||There is a moderate priced English styled pub called Wildwood that has a customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly Japanese pub located near The Portland Arms . \nname : The Mill | Type : pub | food : French | price : moderate | area : riverside||In the city center . area is where the pub , The Mill is the prices are very reasonable . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||Next to The Bakers is The Golden Curry which is a low priced hamburger joint that is not family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : less than £ 20||A Chinese restaurant with a less than 20 dollar price is The Dumpling Tree . \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an upscale breakfast venue offering traditional English meals . It is located near the Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : no||An English restaurant that is moderately priced but are not child friendly is Loch Fyne \nname : Cotto | food : English | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is located near Ranch , offers English food and is child friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||An average rated , not child friendly coffee shop called The Eagle is priced high . It is near Burger King , serves Japanese food and is by the riverside . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||An average rated , family - friendly , Italian restaurant , The Golden Curry is in the city centre , near Café Rouge . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a restaurant that 's friendly for children with average reviews . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is a fair - priced venue located on the outskirts of the city . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderate priced , kid friendly , Japanese restaurant near Rainbow Vegetarian Café , with a customer rating of 1 out of 5 . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : yes||A family - friendly pub with an average customer rating is Aromi in the city centre . \nname : Green Man | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man . which is situated in the city centre near All Bar One , is a family - friendly restaurant that serves English food that cost less than £ 20 . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||There is a English food place called The Phoenix with a moderate price range . It is in the riverside area and has a 3 out of 5 customer rating . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||In the city centre , near to Avalon is located a coffee shop named Blue Spice with children area . It has low customer rating and a price range more than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||Highly rated sushi at The Cambridge Blue restaurant \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||There is a moderated priced , average - rated and kid friendly pub called Cocum \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a coffee shop that sells Italian food for cheap . It is located in the city centre near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a family friendly coffee shop near Burger King called The Eagle . It has a one - star rating and is inexpensive . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop serving Japanese food . It is family friendly , has an average rating of 3 out of 5 and has a high price range . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : city centre||The Golden Palace restaurant , Average customer rating in the city centre \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is an Italian restaurant that is 3 - star and located north of the city centre \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant down the riverside has moderate price range and low customer rating . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The expensive Japanese restaurant , The Rice Boat , is located near the Express by Holiday Inn and offers an adult high - end environment . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : Loch Fyne | food : Chinese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne serves Chinese food . It is located on the riverside near The Rice Boat . It has an average customer rating . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn has a high customer rating with a price range of more than £ 30 . It 's children friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood serves coffee and traditional Japanese food in the low price range . It is rated five stars and is near Ranch . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop serving Japanese food in the city centre neat The Portland Arms . The price range is moderate and has a customer rating of one out of five . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a child friendly average rated fast food place in the city center . The Rice Boat has a high price range and is near Express by Holiday Inn . \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a moderately priced French restaurant with a rating of 1 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a family friendly restaurant providing take - away deliveries and has mostly good reviews . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides kids friendly English food with moderate price near Rainbow Vegetarian Café . It has customer rating 5 out of 5 . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a mid - priced family restaurant , located near All Bar One . \nname : The Vaults | food : Chinese | price : high | family friendly : yes||Expensive Chinese food can be obtained from a child friendly place named The Vaults . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a moderately priced Chinese food place in Riverside near All Bar One , not a kid friendly activity . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : no||The Wrestlers in a non - family - friendly English restaurant . It is low - priced and has average customer ratings . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman is a restaurant providing French food less than £ 20 price range . The Waterman is located in the city centre . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The kids - Friendly pub , The Olive Grove , serves Japanese food and is near riverside . It has a price range of E20 - 25 . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a low customer rated fast food restaurant . It is kid friendly and is located near Ranch . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||At Blue Spice , typical American fare is offered in a fine - dining environment . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a fabulous sushi restaurant . Suitable for families and with very low prices to match . It is located near the Rainbow Vegetarian Café \nname : Fitzbillies | food : Italian | price : more than £ 30 | near : The Six Bells||Come visit Fitzbillies . Our new Italian restaurant located near The Six Bells , with prices starting at 30 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is an Italian coffee shop located in the city centre . Customers rate it 5 out of 5 . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is an affordable Asian restaurant located near The Bakers that is not where you bring the whole family . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry is a restaurant in the city centre . It is family friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : city centre||The Waterman pub serves fast food near city center with low customer ratings . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms . The are highly rated and family friendly . \nname : Alimentum | food : English | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum has been given an average customer rating serving English food in the higher price range , it is located centrally in the city near Yippee Noodle Bar . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : riverside||There is a cheap restaurant The Phoenix located in the city . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix serves French food that costs less than £ 20 and is located in the city center . \nname : The Waterman | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a beautiful Japanese restaurant set in the Riverside area of Cambridge . The Waterman offers cheap priced , family friendly dining which is rated 5 out of 5 by its customers . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves French food . It is situated near The Portland Arms and is child - friendly but , it has a poor customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 5 out of 5||There is a 5 star restaurant that serves Fast food called The Cambridge Blue . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix Is a Chinese restaurant with a moderate price range . It has a 1 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the high price range . It is located in the riverside . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||Italian coffee shop , ' The Eagle ' , is located in the city center near Burger King . The customer reviews are not great but the prices are reasonable and it has a child - friendly environment . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no||The Olive Grove is not a kid friendly place , but it is an Indian pub with a moderate price with located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a child friendly coffee shop . They offer French food and are located in the city centre . The customer ratings are low and the price range is more than £ 30 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||For a fast food . restaurant with below average prices , try The Dumpling Tree \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Customers rate this kid -friendly pub , Strada , as high and the price range is E20 - 25 . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : low||Wildwood is a local pub just on the outside of Cambridge we serve a variety of food very cheap we also have a 1 star rating \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the less than £ 20 price range . It is near Café Sicilia . Its customer rating is low . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : city centre||In the center of the city , with a high customer rating , The Phoenix serves fast food . \nname : The Golden Curry | food : Indian | customer rating : low | family friendly : no||The Golden Curry is a not family friendly Indian food restaurant with a low satisfaction rating . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Blue Spice is a none children friendly place price ranging more than £ 30 plus a customer rating of 5 out of 5 . It is located in the city centre . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||There is a restaurant call The Plough located by Express by Holiday Inn that offers a kid friendly atmosphere . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||Clowns coffee shop offers budget meals near Clare Hall by the City centre \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly place near the river , which serves Japanese food for less than £ 20 . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Zizzi is a coffee shop that is kid friendly with a moderate price range in city centre with low reviews . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Don 't go to Blue Spice near Avalon at the riverside . It 's an expensive coffee shop rated 1 out of 5 , though it is family friendly . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a family - friendly restaurant that serves English food . This is a child friendly restaurant with a price range of less than £ 20 , it is located in the city centre . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||There is a cheap , family friendly pub near the city centre called The Olive Grove . \nname : Strada | Type : pub | food : Chinese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a pub that serves Chinese . its customer rating is 3 out of 5. it is near Yippee Noodle Bar \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle serves cheap fast food . Located near the Burger King , it is not family - friendly . Great rating of 5 out of 5 . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is a cheap sushi restaurant near All Bar One . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : yes||The Olive Grove is a low - priced restaurant in the city centre that delivers take - away . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is cheap priced family - Friendly Italian food coffee shop rated 5 out of 5 close to Café Sicilia . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||A wonderful Fast food restaurant in riverside , Bibimbap House , ranges high in pricing and is located near Clare Hall . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a high - priced coffee shop near Avalon in Riverside . It is children friendly and has an average rating . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||the Loch Fyne is a restaurant with a moderate price Range serving French food and is also kids Friendly \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum is a pub that is children Friendly , meals would be more than £ 30 and it has a low customer Rating \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , situated in the city centre near the Café Rouge is an average rated restaurant thats serves Italian food . \nname : The Eagle | food : Italian | customer rating : 3 out of 5||The Eagle serves Italian food and is rated 3 out of 5 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a Wine , Cheese and Olive restaurant located by the Riverside . It provides low quality food for a low price and is not family friendly . \nname : The Wrestlers | food : Indian | price : high | customer rating : average | family friendly : yes||Although the price range at The Wrestlers is said to be high , it merely gets an average customer rating . It is child friendly and serves Indian food . \nname : Giraffe | Type : restaurant | price : moderate | near : The Six Bells||For a moderately priced restaurant try Giraffe , located near The Six Bells . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice boat is placed on riverside area . It is children friendly place serves Japanese food . Customers rate The Rice Boat low . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Family friendly Browns Cambridge , serves Italian food and is near The Sorrento in the riverside area . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||A 5 out of 5 rated restaurant in the riverside area with prices above £ 30 and isn 't child friendly is called Blue Spice . \nname : Bibimbap House | food : English | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House provides for less than £ 20 English food is near Clare Hall in the city centre . \nname : Clowns | Type : restaurant | near : The Portland Arms||Clowns is a restaurant found near The Portland Arms . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no||There is a coffee shop called Aromi providing Indian food located in the riverside area and it has average customer rating but it is not family friendly . \nname : The Plough | Type : pub | food : French | price : cheap | family friendly : yes | near : Café Rouge||The pub , The Plough has French food . The price range is cheap , family friendly and is located near Café Rouge . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove , a kids Friendly pub near riverside , serves Japanese food . Orders fall in the price range of E20 - 25 . \nname : Fitzbillies | food : Indian | price : high | near : The Six Bells||Fitzbillies provides Indian food in the high price range . It is near The Six Bells . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is an averagely rated adults only serving mid - range priced Italian food , sited near the Thames . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers is a coffee shop with 3 out of 5 customer rating . It is child friendly . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves English food in the city centre near Express by Holiday Inn is high priced average rating family - friendly \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies , a one - star coffee shop , serves food and spirits in a family friendly environment for reasonable prices . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||There is a pub called The Cricketers near Ranch that has high customer ratings and is kid friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : £ 20 - 25 | near : Café Brazil||For £ 20 - 25 , you can go to The Cambridge Blue , a Japanese pub near Café Brazil . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||Just outside City centre , near Clare Hall , is a low priced coffee shop called Clowns . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a riverside coffee shop by Crown Plaza Hotel that serves Japanese food . It is children friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : cheap | near : Café Brazil||The Cambridge Blue is a cheap Indian pub located near Café Brazil . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Their is a children friendly high priced Japanese restaurant called the Green Man . It is located near All Bar One in riverside . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a restaurant that offers French food and is family friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap family friendly pub offering fast food in the riverside area . \nname : The Mill | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop serving fast food with a price range of more than £ 30 , in the riverside area , near The Sorrento . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||In the centre of the city near All Bar One is Green Man . It serves French food with a price range of more than £ 30 and children are allowed . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix by the riverside has Italian food for moderate prices and a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with French food near Crown Plaza Hotel in the riverside area . It is child - friendly with a low customer rating . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||There is a low rated restaurant in riverside called The Rice Boat . It is a family friendly restaurant serving Italian food . \nname : The Twenty Two | food : Italian | family friendly : yes||If you are looking for Italian food seek no further then the child friendly restaurant , The Twenty Two . \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman is a city centre English restaurant with a high price range and average customer rating . It is child friendly . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid friendly Chinese restaurant that has a low customer rating and in the city centre . The price is moderate . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a low rated Japanese food place near The Rice Boat in riverside . \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||There is an expensive , one - star pub called Wildwood which serves traditional British Cuisine . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre||Specializing in French food , The Golden Palace is moderately priced and has an average customer rating . It is a casual coffee shop located in the center of the city . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace along the riverside and near Rainbow Vegetarian Café is an inexpensive pub . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves French food for a low price . It is not family - friendly and has a low customer rating . It is located in the city centre near Burger King . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : city centre||The Eagle is located at the city centre . It is high priced , but boasts a high customer approval rating . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : no | near : Café Rouge||The Plough is a pub with Italian food located near Café Rouge . It has a high price range and is not child friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||There is a coffee shop near The Portland Arms . It offers family - friendly Italian food with a 3 out of 5 rating , and is called The Cricketers . \nname : The Rice Boat | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a customer rating of 3 out of 5 , The Rice Boat is an Italian kid - friendly restaurant in the Riverside area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop made Japanese food near from Burger King at city centre \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||There is a cheap restaurant named Travellers Rest Beefeater that is rated 5 out of 5 , located near riverside and Café Adriatic . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman , a child friendly restaurant in city centre has a high customer rating and a higher price range . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||On the riverside there is a Indian restaurant called The Waterman , it is high in cost and average customer service , but yes it 's for kids . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : high||The Cambridge Blue is a restaurant that provides Chinese food Its customer rating is high . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is a child - friendly Italian pub in the riverside area . \nname : Aromi | Type : pub | customer rating : 1 out of 5 | area : riverside | family friendly : yes||On the riverside there is a child friendly pub named Aromi with 1 out of 5 ratings . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada is a moderately priced , Japanese restaurant located near the Rainbow Vegetarian Café . It has a low customer rating and is not child friendly . \nname : The Waterman | price : less than £ 20 | family friendly : no||The Waterman is ranked well around the area and features nightlife events , no kids and or baby strollers allowed \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : city centre||The Phoenix , which serves cheap Indian food , has an average customer rating and is located in the city centre . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Alimentum is a fast food restaurant that only cost £ 20 is family friendly and is located conveniently in the riverside area \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Fitzbillies is a cheap sushi restaurant near The Six Bells \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : average||The Cambridge Blue is a Chinese restaurant with an average customer rating . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||A restaurant in the average price range located near the riverside area that has been rated average by customers is called The Eagle . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||The Cambridge Blue is a fast food restaurant with low customer ratings . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family - friendly coffee shop offering Italian food at reasonable prices , it is located near the Raja Indian Cuisine , Luton . \nname : Green Man | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man , near All Bar One serves Chinese food in the Riverside Area . You can expect to pay £ 20 - 25 and children are welcome . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the riverside Crowne Plaza Hotel there is a low rated French coffee shop called Browns Cambridge . It isn 't family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderately priced coffee shop that serves Japanese cuisine in the area of riverside . This is not a kid friendly establishment and the customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||The Aromi is a family - friendly coffee shop with a customer rating of 1 out of 5 located in the city centre . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||With a 5 out of 5 customer rating , The Golden Curry is a great option for Indian food in the city centre area near Café Rouge . It is NOT family friendly . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||There is a five - star restaurant named The Eagle . \nname : The Golden Curry | food : Indian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry located in the city centre near Café Rouge offers Indian food , but they are not family friendly and has only an average ratings from their customer . \nname : The Twenty Two | food : Japanese | family friendly : yes||There is a kid friendly restaurant called The Twenty Two that serves Japanese food . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : city centre||A pub named Clowns is located in the city center and it is rated low , but is priced averagely . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee shop in the riverside district . Children are welcome , and its prices are moderate . However , customer ratings hold it at 3 out of 5 . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Italian eatery in the city centre . Their price range is high , their customer rating is average and they are not children friendly . However , they are near to the Express by Holiday Inn . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : riverside | near : The Sorrento||The Mill is coffee shop that offers Indian food , but with high prices . It is located near The Sorrento at the riverside . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid friendly English restaurant . It is located on a riverside . They have a moderate price range and have a 3 out of 5 star rating . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub located near The Portland Arms serving delicious Italian food . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||With a customer rating of 5 out of 5 but being non family - friendly and priced more than 30 , Strada is located near Rainbow Vegetarian Café . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||The pub , Cocum , is average with prices less than 20 and is family friendly . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||One option is Strada . It has low fares of less than 20 . However its customer ratings are low . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry serves Chinese food with a high customer rating and is children friendly \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||The Mill is a pub restaurant offering Japanese food . It is located in the riverside area and is moderately priced . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||In the riverside area is a restaurant with a customer rating of 1 out of 5 called The Golden Palace . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant providing food in the low price range . It is located near Express by Holiday Inn . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||The Eagle has a price range that is less than £ 20 and a low customer rating . It is located in Riverside . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is near Yippee Noodle Bar and has a moderate price range . It has a low rating and serves Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||coffee shop selling Japanese food located in the city centre . The Golden Palace has an average price with a customer rating 3 out of 5 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is near The Six Bells and has children friendly service . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Plough is a family friendly restaurant ranging from 20 - 25 typically . They 're located near The Bakers . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Close to Yippee Noodle Bar in the city centre a French restaurant , Alimentum , has low ratings but the price is less that 20lb . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : cheap||Low cost Indian restaurant called The Dumpling Tree . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is a cheap riverside bar . It 's not family friendly . It is near All Bar One . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly restaurant that serves Japanese food called The Waterman near the Crowne Plaza Hotel \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : no||With a high price range and an average customer rating you 'll find that The Wrestlers is not children friendly and serves Italian food . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||Browns Cambridge is a low priced restaurant that offers a variety of food and drinks . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||Located near Café Adriatic , a new pub called The Vaults has opened with average prices . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which provides Indian food at £ 20 - 25 . Located by the riverside near Raja Indian Cuisine , it is ideal for children \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Green Man is near All Bar One in the city center that serves Japanese food . It is a bit more pricey , but it is kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||The Dumpling Tree is a moderately - priced local restaurant serving traditional English food \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||Located in the city center , Blue Spice has is rated 3 out of 5 by customers . While the price range is average , Blue Spice offers an adult atmosphere . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum offers Indian eating for under £ 20 in the riverside area . It 's not suitable for children . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a coffee shop that provides fast food in the cheap price range . It has a customer rating 5 out of 5 and is not family - friendly . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry has a high customer rating of 5 out of 5 is located near Café Rouge and by a riverside . It serves Chinese food and is considered family friendly . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The family friendly restaurant The Waterman serves fast food for less than £ 20 , however , it has a low customer rating . It is located in Riverside . \nname : The Cambridge Blue | Type : pub | food : Indian | price : high | near : Café Brazil||Near Café Brazil there is a pub Called The Cambridge Blue . Its provides Indian food but it has a high price range . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop , located near The Portland Arms . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Blue Spice has been rated 5 out of 5 by customers , and is children friendly . It is located in the city centre and its price range is more than £ 30 . \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is a higher priced sushi restaurant near the All Bar One . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a moderate price range restaurant near The Bakers . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a Japanese highly - rated , child friendly , coffee shop near Crowne Plaza Hotel named Browns Cambridge . In the Riverside . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||A cheap , family - friendly restaurant is Travellers Rest Beefeater . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a five - star Sushi restaurant located on the river next to The Rice Boat . \nname : The Vaults | food : Indian | price : high | family friendly : yes||The Vaults is an expensive child friendly Indian restaurant . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||There is an Italian restaurant named The Vaults . It is family friendly and price per meal is less than £ 20 . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||A child friendly French restaurant called The Golden Curry is low in the ratings \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | near : The Portland Arms||The Cotto a coffee shop serves Fast food and is near The Portland Arms in the city centre \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is a moderately rated coffee shop serving fast food near Clare Hall . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Close to Café Rouge is an okay French place called Midsummer House . \nname : Strada | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is a moderately priced fast food restaurant called Strada . It is family - friendly and has a customer rating of five out of five . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge is a low - price restaurant , but has low customer ratings . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge , located in the riverside near The Sorrento , is a family friendly restaurant that serves English food . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a kid friendly pub located in riverside that serves English food . \nname : Green Man | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||At the end if the city is a low priced restaurant located beside All Bar One called Green Man that is family friendly . \nname : Strada | Type : pub | food : French | customer rating : high | near : Yippee Noodle Bar||There is a pub called Strada ; it is located near the Yippee Noodle Bar . It offers French food and often gets wonderful customer reviews . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree is not considered to be a family - friendly coffee shop . The average price is less than £ 20 and you can find it in the city centre near Café Sicilia . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies serves cheap fast food in a family friendly coffee shop environment in the city centre although it has only been rated with one star . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The fast food coffee shop called The Eagle located in riverside near Burger King is not family - friendly but is cheap and has a average customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a child - friendly Japanese coffee shop . They are located near The Portland Arms , and have a customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||Taste of Cambridge is a cheap restaurant that is given an average rating by its customers . \nname : Bibimbap House | food : English | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is a moderately priced English restaurant by the riverside near Clare Hall . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : no||Alimentum is an Indian restaurant in the high price range located in the riverside area . It is not children friendly . \nname : The Wrestlers | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a restaurant providing Indian food in the high price ranges . Please keep in mind that the average price range for a place to eat Indian food is £ 30 . The Wrestlers has a high customer rating restaurant with no children allowed . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a place called The Waterman with English food and family friendly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is near The Sorrento at the riverside , it is kid friendly and serves Japanese food . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : no||Alimentum offers English food at a moderate price . It is located in the city centre . It 's not friendly to children . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop that is less than 20 pounds and has an average customer rating and is family - friendly . They serve Japanese food near the center of the city and also near the Burger King . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Fitzbillies is an Indian coffee shop with a moderate price range and a customer rating of 3 out of 5 . It is kid friendly and in the city centre . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a takeaway restaurant , but although it is cheep the quality is quite poor . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly French coffee shop in city centre at average prices \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Japanese , The Waterman , rates high , is kid friendly and has a price range of l20 - 25 . It 's located in the center of the city . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||There is a children friendly restaurant on the riverside called Blue Spice . Blue Spice costs more than 30 Euro and is ranked low by customers . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||A restaurant , Loch Fyne , is a restaurant made for casual cuisine with an adult like setting . Families with children are not permitted \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||The Phoenix is an English serving establishment in the riverside area . Customer rating is 1 out of 5 . \nname : The Phoenix | food : Indian | customer rating : low | area : city centre||The Phoenix is a low - rate place that located to the city centre . \nname : Blue Spice | food : Italian | price : moderate | area : city centre||Blue Spice serves Indian food in the city centre . The price range is moderate . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||The Cambridge Blue is a Japanese food serving restaurant with an average customer rating . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop that is priced at £ 20 with low customer ratings near the Café Brazil and the riverside . \nname : Blue Spice | price : moderate | area : city centre||With a moderate price range , Blue Spice in located in city centre . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Competitively priced English food in the city centre , try Alimentum near the Yippee Noodle Bar , customers report varying results . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||Midsummer House serves Japanese food , it boasts an average customer rating and is located near Café Rouge . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is an expensive fast food restaurant called The Rice Boat that has a high customer rating and is children friendly . It is in the center of the city neat Express by Holiday Inn . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||There is a Chinese restaurant called Strada near Rainbow Vegetarian Café with high customer rating and it 's price range is more than £ 30 and also it is children friendly . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French restaurant , that is not kid friendly , located in the city centre , near Rainbow Vegetarian Café . All prices are between £ 20 - 25 . It has a 3 out of 5 star rating . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||Loch Fyne is a restaurant with reasonable prices and serves English food , although children are not actively welcomed . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Adriatic||Rated 1 out of 5 , Travellers Rest Beefeater is moderately priced , located near Café Adriatic in the city center . \nname : Green Man | food : English | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man provides English food in the moderate price range with no kids friendly . It is located near All Bar One in the city centre . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a French food selling restaurant . It is located in the City Centre near the Express by Holiday Inn . It has an average customer rating with a less than £ 20 price range . It is not family - friendly . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a moderately expensive , kid friendly restaurant near riverside with a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman is a riverside pub with Italian food and an average rating . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||There is a cheap coffee shop , The Punter Café Sicilia is family friendly and serves pasta entries . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge in the City Centre is a fast - food restaurant named The Golden Curry . It features a five star rating and is family - friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi is a family - Friendly French coffee shop rated average by customers in the riverside area \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : The Rice Boat||There is a place named The Twenty Two which is located at riverside near The Rice Boat that has an average customer rating , a price less than 20 , but is not family - friendly \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House where the prices are lower then 20 pounds , serving impeccable English food can be found in the area of riverside near Clare Hall . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre selling Indian food . Price ranges are from £ 20 - 25 . They have a high customer rating . No children permitted \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||With a moderate price range , Fitzbillies is a coffee shop in riverside with a customer rating of 1 out of 5 , where you can enjoy Italian food . Fitzbillies is not child friendly . \nname : The Vaults | food : Fast food | price : £ 20 - 25 | family friendly : yes||A kids - friendly fast food restaurant , The Vaults , has an average price range of £ 20 - 25 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that serves Italian food by the riverside . It is kid friendly , but it has a customer rating of 1 out of 5 \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : yes||if you are looking for a place in the city centre that is child friendly and that does Japanese food in the moderate price range then the Alimentum is the place to go \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no||There is a more expensive coffee shop in the Riverside area called Fitzbillies , serving mainstream Indian cuisine , but is unsuitable for children . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : yes||There is a cheap restaurant called The Vaults serving Indian food and it is family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Dumpling Tree is an Italian restaurant in the low price range . \nname : Loch Fyne | food : French | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne located in the city centre near The Rice Boat provides French food and has an average customer rating . \nname : Blue Spice | food : Chinese | price : cheap | area : riverside||Blue Spice provides Chinese food in the cheap price range . It is located in the riverside . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle serves French food and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a Japanese coffee shop with low ratings and low prices that is family friendly , located on the river side . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||The family friendly Japanese restaurant is Loch Fyne . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat near Express by Holiday Inn in Riverside serves fast food suitable for adults at under £ 20 . It has a low customer rating . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||In the city centre , near to Café Rouge is located The Golden Curry that offers Japanese food . It has an average customer rating and there is no family area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop near the Burger King in the city centre . They serve Japanese food that costs less than £ 20 and have a low customer rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||An Italian pub named Zizzi is children friendly with a 1 out of 5 customer rating . \nname : Zizzi | Type : pub | food : Indian | customer rating : 3 out of 5 | family friendly : yes||A kid friendly pub , Zizzi , is serving Indian cuisine with a rating of 3 out of 5 . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry is a cheap family friendly Italian venue situated near The Bakers . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Located near Burger King at the riverside is The Eagle Italian coffee shop which has a high price Range and is rated 1 out of 5 with being not children Friendly \nname : Loch Fyne | food : Fast food | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a fast food . restaurant near The Rice Boat on the riverside . It has a low customer rating . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The 1 out of 5 rated coffee shop The Punter offers Italian food at moderate prices . It is kids friendly and located near the Café Sicilia . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue has a price range of £ 20 - 25 , is a French food pub and is near Café Brazil . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A coffee shop called The Eagle with Japanese food is located near Burger King and the city centre . It is not kids friendly with a customer rating of 1 out of 5 . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is the place for low priced Chinese food , with only one star . They are located in the city center . \nname : Alimentum | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a Fast food place that is children friendly and is located in the area of riverside . the price range is more than 30 euros . \nname : The Cricketers | Type : restaurant | food : Chinese | near : All Bar One||Located near All Bar One is a Chinese restaurant called The Cricketers . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly Chinese restaurant in the riverside area . It has a 5 out of 5 customer rating . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is not a family restaurant . Rather it is a British restaurant . It is not near the city centre . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is kid friendly and offers Italian food at a moderate price range . They have a customer rating of 1 out of 5 . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Located by the river , near The Rice Boat , Loch Fyne serves English food and has a customer rating of 1 out of 5 . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a low rated , children Friendly , more than £ 30 price ranged place near The Rice Boat . \nname : The Punter | food : English | price : cheap||The Punter is an English restaurant in the low cost range . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a children Friendly pub near to Ranch with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||English food is served at The Golden Curry which has a customer rating of 5 out of 5 . It is family - friendly and is near Café Rouge in the city centre . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Zizzi , a coffee shop that is less than £ 20 , is family - friendly and average . It is in the city centre . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is a city centre Chinese restaurant with average customer ratings . They are family friendly and menu prices are cheap . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : no||There is a non - family friendly Chinese restaurant The Twenty Two located riverside . \nname : The Waterman | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The family friendly riverside Indian restaurant The Waterman , has low customer ratings , although price range is average . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||There is an expensive coffee shop in riverside , Zizzi . It is not children friendly and it is poorly rated . \nname : The Waterman | price : high | family friendly : yes||Children friendly , expensive . The Waterman . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum serves Italian food and is located near Yippee Noodle Bar in the center of the city . It has a high customer rating and prices range from £ 20 - 25 . \nname : The Waterman | Type : pub | food : English | customer rating : low | area : city centre||The Waterman pub serves English food in the city centre but has a low customer rating \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a children friendly , riverside French coffee shop near the Crown Plaza Hotel . It has a low customer rating . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : no | near : Café Sicilia||There is a coffee shop near Café Sicilia named The Punter with average customer ratings . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies has a low price range is near Rainbow Vegetarian Café \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a high - priced coffee shop Zizzi , located in the riverside it 's children - friendly and 5 out of 5 customers recommend it . \nname : Green Man | Type : pub | food : French | area : city centre | near : Café Rouge||The Green Man is a pub serving French food near the Café Rouge in the city centre \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near the Rainbow Vegetarian Café with a customer rating of 1 out of 5 with a high price range . \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Despite the reviews , visit Cocum a sushi bar and coffee shop for a night out at a moderate price . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no||The Olive Grove is not kids friendly , and it is a moderate priced Chinese pub in the city centre . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a restaurant providing family friendly Italian meals . It has low customer ratings and is located near Café Rouge in the riverside area . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a kid friendly French restaurant . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is Italian cuisine , highly rated in a medium price range 20- 25lb in the center of the city . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||There is a pub providing Fast food called The Mill . Located at riverside , it provides food in the moderate price range . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a kid friendly Indian restaurant in Riverside called The Waterman . It has a moderate price range and gets a 3 out of 5 customer rating . \nname : The Vaults | food : Fast food | price : moderate | family friendly : yes||The Vaults is a mid - priced family friendly restaurant . \nname : Cotto | food : Italian | customer rating : average | family friendly : yes | near : Ranch||Near Ranch , family friendly Cotto , serves Italian cuisine with an average customer rating \nname : The Vaults | Type : restaurant | food : Fast food||For Fast food , visit The Vaults restaurant . \nname : Browns Cambridge | price : more than £ 30 | customer rating : low||Browns Cambridge has a low customer rating with the average price above £ 30 . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||The Bibimbap House is on the riverside near Clare Hall . It has Japanese food for 20 - 25 . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is a Fast food pub with a high price range in riverside \nname : Strada | Type : restaurant | customer rating : 5 out of 5||Strada is a 5 out of 5 rated restaurant . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is in riverside it serves English food . It is priced cheaply and is rated 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle , Japanese coffee shop is family friendly with a customer rating of 5 out of 5 . Located near Burger King in the riverside area and offers cheap prices . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Located by the riverside is a high rated Indian coffee shop that is children friendly called Aromi \nname : Midsummer House | food : Indian | customer rating : low | near : Café Rouge||Midsummer House is an Indian restaurant , with a low customer rating , to is located near Café Rouge . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid friendly French restaurant located in city centre . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||A French restaurant in the city centre with a 5 out of 5 customer rating in The Phoenix . It costs more than £ 30 . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man is a fairly expensive , but kid friendly , establishment that serves Italian food . It is located in riverside , near All Bar One . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop providing take - away deliveries . It is located near to The Portland Arms . It is not friendly for family and has 1 out of 5 stars . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is an affordable Italian restaurant that is family friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||Aromi is an adult coffee shop serving Italian food in the riverside area . Customer ratings are low . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the high price range . It is located in the riverside . Its customer rating is average . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : no | near : The Portland Arms||The Punter is a non family - friendly food establishment near The Portland Arms in the city centre . It has an average price range of less than £ 20 . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a Japanese pub with a low customer rating but is near Yippee Noodle Bar \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kid friendly restaurant that serves Indian food . It is located riverside and has a customer rating of 1 out of 5 . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne , the fast food restaurant near The Rice Boat with a 5 out of 5 customer rating , is by the riverside . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a cozy restaurant serving Chinese near the city center . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||The Golden Curry , near The Bakers , offers family friendly Italian food for cheap . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is moderately priced for snacks , lunches and drinks and is nearby All Bar One . \nname : The Rice Boat | food : English | area : riverside||A riverside English venue is The Rice Boat . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : yes | near : Café Rouge||Near Café Rouge is a moderately priced , kid friendly Chinese pub named The Plough \nname : Midsummer House | food : Indian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a restaurant featuring Indian food at prices less than £ 20 . Customers rate Midsummer House low , and it 's located near All Bar One . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge is a high priced restaurant . \nname : Cotto | food : Chinese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a Chinese restaurant near Ranch with a low customer rating . Family friendly . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 1 out of 5||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is 1 out of 5 . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||There is a children - friendly , high rated Italian restaurant with a price range more than £ 30 and is located in the city centre , it is called The Waterman \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not a family - friendly , low customer rating French restaurant in the riverside area near Express by Holiday Inn , They do offer a price range of less than £ 20 . \nname : Bibimbap House | food : English | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is near Clare Hall . They serve English food . The price range is between 20 and 25 dollars . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a moderately priced restaurant featuring wine and antipasto . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Clowns is a moderately priced pub , located by the riverside , who also serve food . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop which serves Italian food . It is located near to The Portland Arms , has an average customer rating , but it is not family - friendly . \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is a low grade pub located in City Centre . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman has Japanese food and is located in the city center , it was also given a low customer rating . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : high | family friendly : yes | near : The Bakers||There is a coffee shop with high ratings located near The Bakers . Giraffe is children friendly . \nname : Midsummer House | food : Italian | customer rating : low | near : Café Rouge||The one star restaurant , Midsummer House , has a location right by Café Rouge . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is an expensive coffee shop in riverside averaging about 30 euros or more and is child friendly with a low rating , \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is an Italian coffee shop for the whole family . Serving food less than £ 20 however have a low customer rating . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||If you 're looking for a well - reviewed , fairly - priced pub , I can certainly recommend The Vaults near Café Adriatic . \nname : The Mill | Type : pub | food : Italian | price : cheap | area : riverside||The Mill is a lovely little pub that provides Italian food at a cheap rate . It is located on a riverside . The Mill is a low priced pub on the riverside that serves Italian food . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , is a family friendly riverside coffee shop near the Crowne Plaza Hotel , that serves Japanese food . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Low - cost British food can by found at the Green Man . This adults only establishment is located in the City centre area near the All Bar One . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a higher priced , child friendly , Japanese restaurant in city center near the Express by Holiday Inn . They have an excellent customer rating . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Eagle is located along the riverside . It has a customer rating of 3 out of 5 stars and an average price range . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : riverside||High cost 5 star The Phoenix offers British Breakfast in a riverside location . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves French food with a price range of £ 20 - 25 . It is highly rated by customers and located by the riverside near Burger King . Kids are prohibited . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is an expensive child friendly , fast food place located near the river . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter produces pricey Fast food . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : more than £ 30 | family friendly : yes||Loch Fyne is an expensive Fast food restaurant that is suitable for all the family . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no||Aromi is an average rated coffee shop by the riverside . It provides Fast food and is not family - friendly . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | family friendly : yes||There is a place called The Golden Curry that offers Indian foods . The place has a 3 out of 5 with kids friendly . \nname : Strada | Type : pub | food : English | customer rating : low | near : Yippee Noodle Bar||Strada , a low rated English pub is located near Yippee Noodle Bar . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : no||The Travellers Rest Beefeater is not children friendly cost more than £ 30 . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||Café Sicilia is right around the corner from the low rated pub , The Twenty Two , located in the riverside area . \nname : The Olive Grove | Type : pub | food : Indian | price : cheap | area : riverside | family friendly : yes||The Olive Grove is an Indian Pub in the low price range located in Riverside and it is family friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||The restaurant Loch Fyne serves Italian food . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The kid friendly restaurant named The Waterman is in the riverside area and has French food in the price range of £ 20 - 25 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is low - cost restaurant that serves fancy food that is family friendly and near the river . \nname : Alimentum | food : French | price : less than £ 20 | area : city centre | family friendly : no||Located at the city centre , Alimentum is a French restaurant priced less than £ 20 , but not family - friendly . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||If you are looking for a cheap pub in Riverside , check out The Golden Palace located near Rainbow Vegetarian Café \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace is a coffee shop serving Japanese food in the city centre , they have a low customer rating and are in the more than £ 30 price range . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a French restaurant near Café Rouge with a customer rating of 3 out of 5 . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : city centre||The Eagle is in city centre with a low customer rating and a price of more than 30 . \nname : Aromi | Type : coffee shop | food : French | customer rating : high | area : riverside | family friendly : yes||The high French coffee shop near the riverside is named Aromi and yes its a friendly place . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , located close to the Fast food Burger King and riverside , is a moderate priced coffee shop rating 3 out of 5 . It is not too kid friendly . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is rated one star and it 's a family friendly location near Café Rouge . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Child friendly pub Zizzi serves Chinese food , but has low customer reviews . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry , a Japanese restaurant is not family - friendly , but has a 5 out of 5 customer rating . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||In riverside , near All Bar One , there is a non family - friendly French restaurant called Green Man , and the price range is less than 20 pounds . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , there is The Waterman that serves Italian food and a children - friendly place . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||Rated 5 out of 5 , The Golden Palace coffee shop serves low priced Japanese food . It can be found in city centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||The Fitzbillies is a coffee shop with a high price range , an average customer rating and a children friendly environment . The Fitzbillies sells fast - food and is located in the riverside area . \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Green Man is a pub near Café Rouge in riverside that serves fast food . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults Italian food , considered expensive , though kids are welcome . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry serves English food . It caters to children and has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a French restaurant located near Café Rouge . It has a low rating and is not family - friendly . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : riverside||If your in the riverside , area check out Blue Spice for great Chinese food less than £ 20 . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Blue Spice is a place in the city centre that is not children friendly , has a price range of more than 30 , and a low customer rating \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop also serves fine food . It is for the whole family and is located near The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop in the city centre with an average customer rating . It is less than £ 20 and is family - friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||For cheap , family friendly fast food , go to The Olive Grove , situated on the riverside . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : yes||Located in the city centre Alimentum is a family - friendly restaurant that serves English food . This is a child friendly restaurant with a price range of less than £ 20 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : no||Loch Fyne is a moderately - priced Italian restaurant that is not kid - friendly . \nname : Blue Spice | food : English | price : more than £ 30 | area : riverside||The riverside area offers English food above £ 30 at Blue Spice . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an Italian style restaurant , which is kid friendly , but has a low customer rating of 1 out of 5 . The price range is high and located in city centre . \nname : Blue Spice | food : English | price : less than £ 20 | area : riverside||Blue Spice serves English food for less than £ 20 on the riverside \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||There is a coffee shop named The Golden Palace in the city centre . It is rated 5 out of 5 stars and is moderately priced . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is kid friendly and offers moderately priced Fast food . Located in riverside near All Bar One . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a less than £ 20 coffee shop in the city centre that delivers Fast food . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||The Italian pub Strada has a rating of 1 out of 5 . It 's located near Yippee Noodle Bar . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a poorly rated Fast food chain in the City Centre that is not kid friendly and offers £ 20 food . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||A highly customer rated place is The Twenty Two . It can be located in the riverside area , near The Rice Boat . The price range is £ 20- £ 25 , and it is kid friendly . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||Near Café Adriatic , there is a pub named The Vaults , in a moderate price range with a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||Tim Hortons in Wildwood near a Ranch has high priced French food with a customer rating 3 out of 5 \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a children - friendly Japanese food of price range more than £ 30 in riverside . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||The Zizzi serves English food in a family - Friendly pub environment , with a customer rating of 5 out of 5 . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||There is an English pub called The Dumpling Tree near The Portland Arms that is children friendly . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a mid ranged British restaurant with high customer rating service and is located by the riverside . \nname : Cocum | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Yes , Cocum is a kids friendly coffee shop that serves Indian food . They have a high customer rating and a price range of £ 20 - 25 . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||The Yippee Noodle Bar is a pub near Strada serving English food . It has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Golden Palace , located in the city centre , is a coffee shop serving French food . It has a customer rating of 3 out of 5 and has a price range of £ 20 - 25 . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a medium priced , family friendly fast food restaurant called The Waterman . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serving Indian food near The Sorrento in the Riverside area also family friendly . \nname : Green Man | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a restaurant providing Chinese food . Green Man located in the riverside area near All Bar One . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Children friendly restaurant Cocum has 1 out 5 rating \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is located near Café Sicilia and serves as a coffee shop and Indian food restaurant , it is family friendly , has low customer ratings , and has a price range of less than £ 20 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi 's coffee shop , in Riverside , is Children friendly , with upscale prices , customer ratings are low \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove , a Japanese riverside pub , is a an adult establishment with prices less than £ 20 \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : yes||There is a cheap family - friendly restaurant called Alimentum . It is near the river . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Japanese restaurant located near Rainbow Vegetarian Café that is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||A great , £ 20 - 25 price range fast food eatery is Fitzbillies . This eatery is kid friendly , has high customer ratings , and is located next to a river . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a child friendly venue it has a prince range of more than £ 30 . it is located near Café Sicilia . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Strada is a restaurant that customers have rated 3 out of 5 . \nname : Cotto | food : Italian | customer rating : low | family friendly : yes | near : Ranch||Cotto offers a family - friendly Italian menu located in close proximity to Ranch . Cotto has received poor ratings . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||In riverside , Giraffe pub offers Italian food and a kid friendly environment . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle , located riverside near Burger King , offers Japanese food with a price range of £ 20 - 25 . It is a coffee shop with a high customer rating , not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine along the riverside is a family friendly , less than £ 20 Japanese food place , The Wrestlers . \nname : Alimentum | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Serving moderately - priced Italian cuisine , the 5 - star ' Alimentum ' is located near Yippee Noodle Bar on the riverfront , north of the City centre . \nname : The Eagle | food : Japanese | customer rating : average||Head over to The Eagle for sushi . 3 stars . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a family friendly Japanese food place called The Rice Boat with 5 of 5 customer rating , In Riverside area . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : no||The Olive Grove is a restaurant that is not family - friendly in the city centre . \nname : The Rice Boat | food : Fast food | customer rating : average | area : city centre | family friendly : no||The Rice Boat is rated average by its customers . In the city centre , it serves fast food . The Rice Boat is not family - friendly . \nname : Bibimbap House | food : English | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House provides for less than £ 20 English food is near Clare Hall in the city centre . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre near Burger King , there is a French family - friendly coffee shop called The Eagle . The price range is more than 30 pounds , and it has a 5 out of 5 customer rating . \nname : Bibimbap House | food : French | price : cheap | area : riverside | near : Clare Hall||There is a cheap , French restaurant called Bibimbap House that is located near Clare Hall in Riverside . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||5 out of 5 customer rating at Strada restaurant . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||The Mill is a moderately - priced coffee shop with French food . It is located in riverside near The Sorrento . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||Wildwood pub is a 3 star restaurant providing Italian food for a high price . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : riverside||In riverside there is a high priced venue called The Eagle . It has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : city centre||The Waterman is located in city center . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat provides Chinese food It is located in the city centre . Its customer rating is average . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kids friendly Italian restaurant with a customer rating of 3 out of 5 . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is an Indian restaurant called The Waterman with moderate prices and a customer rating of 3 out of 5 in Riverside that is not kid friendly . \nname : Wildwood | Type : coffee shop | food : Indian | price : cheap | customer rating : average | near : Ranch||There is a coffee shop near Ranch called Wildwood that serves Indian food . It 's customer ratings are average but the price is cheap \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : no||Zizzi , a pub offers Indian food , however with a low customer rating and not family friendly . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high quality British restaurant that has high prices . Located near the Rainbow Vegetarian Café , it is family friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||A Fast food coffee shop in the high price range located near Café Sicilia is The Punter . It is child friendly and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is an English coffee shop called The Eagle . It is near Burger King in the riverside area . It is children friendly and in the above £ 30 price range . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a 1 out of 5 rated coffee shop near Café Sicilia that offer Japanese food with moderate price . The name is The Punter and their place are also kids friendly \nname : The Vaults | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Brazil||At the riverside near Café Brazil , there is a coffee shop named The Vaults that is cheap and has customer rating 5 out of 5 . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly Indian restaurant near Crowne Plaza Hotel . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : city centre||In city centre , The Mill is a pub that serves Chinese food with a moderate price range . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||For fine Italian dining and low ratings , come to The Phoenix on the riverside \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a mid - priced pub near the River . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a French coffee shop with a customer rating of 5 out 5 . Located near Clare Hall and riverside . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Along the riverside is a Japanese restaurant that is both good and kid friendly , located near Café Rouge called The Golden Curry . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a 1 - star Caféteria is next to The Portland Arms , located in the city center . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||Zizzi is a family friendly English pub and it has a low customer rating . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||In Riverside there is a child friendly English restaurant called The Twenty Two . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a British restaurant not near the city centre . It is not a family restaurant . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman pub has an average rating for Fast food . This is located in the riverside area . \nname : The Golden Curry | food : French | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry serves French food , is a little higher priced that average and kids are welcome . It is located near The Bakers . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||In the city centre is a 5 out of 5 rated Italian pub called The Waterman . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Fitzbillies is near the Rainbow Vegetarian Café and it 's expensive \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||Cocum coffee shop serves Indian food for less than £ 20 . The customer rating is low and the shop is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Rated 5 out of 5 , Fitzbillies is a cheap Japanese coffee shop located near the city centre . It is not family - friendly . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is a kid friendly restaurant in the £ 20 - 25 price range . It has a customer rating of 3 out of 5 stars . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a cheap pup that serves Japanese food near city centre . \nname : The Phoenix | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is a restaurant located in the Riverside area that offers Chinese food . The customer ratings are high and the price range is more than 30 euro 's . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly restaurant \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Located in the city centre , The Waterman has Japanese food and is not kids friendly . It has a low customer rating and a price range higher then £ 30 . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||There is a low priced restaurant , The Phoenix , in city centre and you can eat in or take out . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop in the less than £ 20 price range with a low rating . It 's located in the city centre near Burger King and serves Italian food . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | near : Ranch||Wildwood is a coffee shop that provides wine , cheese and olives for a high price . It is located near Ranch . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that is not family - friendly , less than 20 euros , and sells Japanese food in the center of the city . Customers give it a low rating , it is located near Burger King . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a coffee shop that serves French food in the riverside area called Aromi . It is kids friendly and rated 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located in riverside near Express by Holiday Inn . It is not a children friendly establishment . It offers highly priced food with a customer rating of 3 . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a city centre fast food restaurant , located near to the Express by Holiday Inn . It has a high customer rating , the price range is more than £ 30 and it is not child friendly . \nname : The Punter | food : Chinese | price : high||The Punter serves Chinese food and is expensive . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||For French cuisine at a very reasonable cost , eat at The Dumpling Tree restaurant . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||The Cocum is an average pub with high prices and is family friendly . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : no||The Olive Grove is a Pub on the riverside . It not child friendly and the price range is more than £ 30 \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||At the city centre near Express by Holiday Inn , there is a family - friendly Italian restaurant called The Rice Boat . Their price range is cheap and their customer rating is 5 out of 5 . \nname : The Rice Boat | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The restaurant , The Rice Boat is kid friendly and offers English food with a customer rating of 3 out of 5 . It is located at the Riverside . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||Nearby Café Rouge you will find The Plough . It is a low priced English pub with a family friendly atmosphere . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : no||Strada is a high rated non kid friendly restaurant that is priced 20 - 25 \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman offers cheap English food , average rated in the city centre , not family - friendly . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||There is a kid friendly Indian restaurant in the riverside area called The Rice Boat , and it is rated highly by customers . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a high rated Italian restaurant that served food for more than 30 pounds in a non kid - friendly environment . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : city centre||Customer rated 5 out of 5 Italian pub , The Waterman , is located in the city centre . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto , near Café Rouge has Fast food . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||Riverside area restaurant The Golden Palace has a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is a non - kid friendly Japanese restaurant with a price of £ 20 - 25 and has a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||Next to The Portland Arms is an Italian coffee shop called The Cricketers . It 's Kids Friendly with a high customer Rating . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : riverside||The Mill is a pub that serves Chinese food in a moderate price range . It is in the riverside area . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The Golden Curry is a one star family friendly restaurant . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||The Cocum is a children friendly coffee shop with an average customer rating that has fast food at a high price range . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop in the city centre close to The Portland Arms with a price range more than £ 30 with awesome French food \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||Fitzbillies is a Japanese place with a price range with more than £ 30 and located near The Six Bells . \nname : Strada | Type : pub | food : English | customer rating : 5 out of 5 | near : Yippee Noodle Bar||The English pub called Strada , is located near the Yippee Noodle Bar . It has a very high customer rating \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers serves expensive Italian food . It is family friendly but poorly rated . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a kids friendly Fast food restaurant on the riverside . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop serving French food with a rating of 3 out of 5 , it is riverside , near Clare Hall \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an expensive , non children - friendly , average rating English food serving restaurant , located near the Express by Holiday Inn , in Riverside . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman provides Indian food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is in the high price range . It has an excellent rating . It is located near The Portland Arms . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : city centre||The Japanese restaurant , Blue Spice , is less than £ 20 and located in the city centre . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||There is a highly rated coffee shop called Cocum which is child friendly with amazing English food but it is a little pricey with average price meals being over 30 Euros . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly fast food restaurant in the riverside area with a customer rating of 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Zizzi is a high price range high customer rating coffee shop in riverside . The coffee shop is not kids friendly . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving French cuisine in riverside near The Portland Arms . Expect to pay £ 20 - 25 . Customers have rated Cotto 3 out of 5 . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : no | near : All Bar One||In the city centre near All Bar One is Green Man , an Indian venue with a moderate price range . It is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Riverside has an Italian coffee shop called Fitzbillies . It is not kids friendly and has a customer rating of 3 out of 5 . The price range is moderate . \nname : Blue Spice | food : English | price : moderate | area : riverside||English food at moderate price can be ordered at Blue Spice , which is situated by the riverside . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an Indian restaurant on the river near Café Rouge . Its customer rating is 5 out of 5 and it does not cater to children . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a medium priced restaurant . Located near Express by Holiday Inn . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||A cheap , yet 5 star Indian restaurant , is family friendly and located in the centre of the city , named The Waterman . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||There is a high - priced , five star coffee shop called The Golden Palace located near the river . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a fast food pub near Yippee Noodle Bar . It has a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub . They serve fast food along the river side with a lovely view . The average cost is less than £ 20 which is amazing for all the family to have a bite to eat with a fantastic view . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is a five star restaurant located near Café Rouge \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a riverside pub called Aromi that gets a 5 out of 5 customer rating . It is child friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly Italian coffee shop in the city centre . It has an average customer rating . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a low - priced 1 star restaurant that is not family friendly and is located near the city centre . \nname : The Olive Grove | Type : pub | price : high | area : riverside | family friendly : yes||The Olive Grove is a child friendly pub on the riverside , it is quite expensive . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is near the Express by Holiday Inn in Riverside . Kid friendly and highly rated , this Indian food establishment will not break the bank . Price range £ 20 - 25 . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||A average pub called The Vaults , is located near Café Adriatic and is less than £ 20 . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Close to the city river is an inexpensive pub called Clowns . \nname : Blue Spice | food : Indian | price : high | area : riverside||Blue Spice is known for quality Indian food priced higher than other restaurants located in Riverside . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a child friendly restaurant with a riverside area , which has a high price range called The Punter . \nname : The Twenty Two | food : French | family friendly : yes||There is a French place called The Twenty Two . It is good for families . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Located near Avalon , in the riverside area , Blue Spice is a family friendly coffee shop with a price range of less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Cheat Italian coffee shop Fitzbillies , rated 5 out of 5 by customers , can be found in the city centre . It 's family - friendly . \nname : Zizzi | Type : restaurant | price : high | area : riverside||There is a high end restaurant named Zizzi located in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Indian food . High customer ratings that is child friendly is in riverside near Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The coffee shop Cocum is children friendly with a 5 out of 5 customer rating . They serve Japanese food for more than £ 30 . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : yes||Alimentum is a medium priced Indian restaurant located in city centre . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers provides Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Serving Italian food near Ranch is Cotto , ideal for children too . \nname : Fitzbillies | food : Indian | price : less than £ 20 | near : The Six Bells||Fitzbillies near The Six Bells serves Indian food for less than £ 20 . \nname : The Phoenix | food : French | customer rating : low | area : city centre||In the city centre there is a French restaurant called The Phoenix , it has a low customer rating . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove pub sits at the riverside . It is children - friendly , and it offers French food with an expensive price . \nname : Midsummer House | food : Fast food | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is a fast food restaurant near Café Rouge with an average customer rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||There is a restaurant called Alimentum that is low priced and family friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an affordable family coffee shop serving sushi . Located outside the city center . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a pub in the city centre that serves Japanese food for under £ 20 and it 's child friendly too . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge 's English food has a rating out of 3 of 5 ; The price range is moderate . \nname : Strada | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low - price , Italian restaurant situated near the Rainbow Vegetarian Café . It is child friendly and has a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||For the singletons , Fitzbillies is a cheap French - style coffee shop in the city centre . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If you 're after a family - friendly place to eat spaghetti , and maybe enjoyed with a glass of wine by the river , try The Waterman . Moderately priced and with good ratings , they will welcome families with small children . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a pub for adults with a price range of less than £ 20 with English food near Café Rouge . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a child friendly restaurant serving amazing English food . The prices are in the medium range and the restaurant is located near the Rainbow Vegetarian Café . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry providing English food in the riverside very close of Café Rouge \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||a restaurant that is less than £ 20 and has a low customer rating is Taste of Cambridge \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||In the city centre is The Golden Palace . The Golden Price is a coffee shop that serves sushi . Their prices are average and they have a 3 out of 5 rating . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : high | near : All Bar One||With a high customer rating , Midsummer House offers affordably priced Japanese cuisine . It is located near All Bar One . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is near The Bakers . It is a sushi bar with low prices and is family friendly . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a high priced coffee shop in the area of riverside near Café Brazil with a average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop in the Riverside area is children - friendly , offers Italian food in the high price range and has an average customer rating . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two in the riverside area has a moderate price range . It is located near The Rice Boat and yes it is kids friendly . \nname : Midsummer House | food : Chinese | price : high | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House , a Chinese restaurant has a high price range . It is located near All Bar One and has a rating of 4 \nname : The Vaults | Type : restaurant | food : Chinese||The restaurant The Vaults serves Chinese food . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||On the riverside near Express by Holiday Inn , is a Japanese food place called The Rice Boat . It is expensive , with a customer rating of 3 out of 5 and is children friendly . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||With a 5 out of 5 customer rating , The Cambridge Blue restaurant serves French food . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop called Taste of Cambridge that has fast food and is family friendly located in the riverside area near Crown Plaza Hotel . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is an Italian coffee shop near Burger King in city centre . They are highly rated , child friendly , and offer a mid - priced selection . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi has amazing ratings and is child friendly . They serve French food . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café in the riverside area You can find The Golden Palace pub with price range £ 20 - 25 . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a low customer rating and family - friendly . It is located in the city centre and has Italian food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop that serves Italian food . It is not family - friendly and has a low customer rating . It is in the city centre and costs less than £ 20 . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant near Rainbow Vegetarian Café that 's kid friendly and has a high customer rating in the £ 20 - 25 price range . \nname : Midsummer House | food : Japanese | customer rating : high | near : Café Rouge||Near Café Rouge is Midsummer House . Midsummer House is a highly rated Japanese place . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is children friendly . It is in the city centre near The Portland Arms . It is more than £ 30 . \nname : The Punter | food : Japanese | price : less than £ 20||Japanese restaurant , The Punter is under 20 pounds . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 1 out of 5||Browns Cambridge , an Italian restaurant , is a moderate 1 out of 5 . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||A kid friendly restaurant is The Waterman , located in the city centre . It serves Indian food at a moderate price range , and has a customer rating of 3 out of 5 . \nname : Midsummer House | food : Indian | price : £ 20 - 25 | customer rating : high | near : All Bar One||The Midsummer House is a popular Indian restaurant with average prices , near All Bar One . \nname : Bibimbap House | food : Fast food | price : cheap | area : riverside | near : Clare Hall||Bibimbap House has cheap Fast food by the riverside near Clare Hall . \nname : The Phoenix | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||In the city centre is located The Phoenix that offers English food with a cheap price and it has a customer rating 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a French coffee shop with high ratings and a price range of more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop near Burger King in the city centre with average customer ratings . They have an Indian food menu , with cheap prices . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman offers Chinese food at a high price range . It is customer rating are 1 out of 5 . Locate near to City Centre . Children are welcome . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill , located on the Riverside , is an inexpensive Japanese pub . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||The Rice Boat is near Rainbow Vegetarian Café it cost more than £ 30 and is rated low . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : high||There 's a high rated restaurant called The Cambridge Blue that serves French food . \nname : The Golden Curry | food : Chinese | price : cheap | family friendly : yes | near : The Bakers||Family friendly , The Golden Curry serves cheap Chinese food near The Bakers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Japanese food restaurant with a low customer rating . It is near Burger King and its price range is more than £ 30 . It is a coffee shop in riverside . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub is children friendly and has Fast food . It is located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The Fast food coffee shop named Cotto has a 5 out of 5 rating . It 's cheap and near The Portland Arms in the riverside district . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice offers a cheap meal in the riverside area . family - Friendly , yes of course it is and has and average customer rating . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||Though it is not a family friendly environment , The Punter in The Portland Arms is cheap and right off the river . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : yes||The Vaults is a child friendly French restaurant with a price range of more than £ 30 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Japanese kid friendly restaurant , The Rice Boat , in the riverside area near Express by Holiday Inn , prices range £ 20- £ 25 and customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Near the riverside , is a coffee shot with a moderate price range named Fitzbillies , is a fast food place and has a customer rating of 3 out of 5 . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes||Giraffe is a family - friendly pub serving French food in the city centre \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman has Chinese food with a cheap price range . It is kids friendly and is located in the city centre with an average rating . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||This eatery was given a high customer rating and serves Italian cuisine . It 's location is in the city centre area and it 's a coffee shop called The Golden Palace ; where menu items are between the £ 20 - 25 price range . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle that serves fast food . has a low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||A great 5 star restaurant to eat , The Cambridge Blue \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Green Man | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is located in the riverside area and provides a child friendly atmosphere . English meals are in the £ 30 range and the restaurant is located near the All Bar One . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop that also does fast food . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is located in riverside and is child friendly , serving Italian food at a moderate price range . \nname : The Waterman | price : cheap | family friendly : yes||The Waterman is a cheap family friendly pub . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||Zizzi , a Fast food public house is for those without children , customer rating is low \nname : The Rice Boat | food : Indian | area : city centre||The Rice Boat offers Indian food and is located in the city centre . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||There is an Italian venue with a customer rating of 1 out of 5 named The Golden Curry which is child friendly . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a child friendly restaurant that serves Italian food . It 's in the riverside area near The Sorrento . \nname : The Rice Boat | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||Near Express by Holiday Inn in riverside , there is an English restaurant The Rice Boat , food under £ 20 but rated low . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||though usually less than £ 20 , Browns Cambridge has a customer rating that is average . \nname : The Rice Boat | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a nice kid friendly restaurant with a customer rating of 3 out of 5 for its English cuisine . \nname : The Vaults | food : English | price : moderate | family friendly : yes||The Vaults is family friendly and serves British food . \nname : Midsummer House | food : Chinese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a Chinese restaurant near All Bar One with high customer rating and average prices . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly coffee shop just north of the city center . It is located on the river , just east of the Crown Plaza Hotel . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : city centre | near : The Sorrento||The Mill coffee shop offers fast food at high prices in the centre of the city near The Sorrento . \nname : The Vaults | food : Italian | price : more than £ 30 | family friendly : yes||The Vaults serves Italian food and it is children friendly . The price range is more than £ 30 . \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Located near The Six Bells is an English serving location named Fitzbillies with moderate prices . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice is moderately priced and located on the river in Cambridge . It is not a family restaurant and is rated one star out of five . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a family - friendly pub near Ranch that 's been rated average by customers . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop serving Indian food in the city centre . Its price range is more than £ 30 and it has a high customer rating . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is a high priced pub which is located near Café Adriatic . It has a low customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a lower priced coffee shop , under £ 20 , in the Riverside area near The Portland Arms . It has a low customer rating . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a casual family friendly , top - customer rated restaurant . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a pub providing Chinese food Its customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a high priced coffee shop located near Café Sicilia . It is family friendly and rated 1 star . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||At the end of the city is an average price coffee shop called Fitzbillies . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : £ 20 - 25||There is a Italian restaurant called The Dumpling Tree with price Range £ 20 - 25 . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Japanese riverside pub Giraffe offers kid friendly food for customers . \nname : The Phoenix | food : Italian | customer rating : low | area : city centre||An ok Italian eatery called The Phoenix is located in the city centre \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : no||The Golden Curry Italian restaurant has excellent customer ratings of 5 out of 5 and is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a Japanese coffee shop , close to The Portland Arms . It has a low customer rating and is not recommended for families . \nname : The Mill | Type : pub | food : Chinese | price : high | area : city centre||The Mill is a Chinese pub in the high price range . It is located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||In the riverside , The Golden Palace is a coffee shop that has Italian food and less then 20 , with low customer ratings . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : riverside||The Mill is a pub that provides Indian food in the moderate price range . It is located in the riverside . \nname : Zizzi | Type : pub | food : Indian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly pub serving Indian food with a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||A Japanese pub named Zizzi has a low customer rating and not so family - friendly pub \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||Low rated Japanese coffee shop , The Eagle is priced moderate near Burger King in city centre . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kids Fast food that is moderately priced . It has a customer rating of 1 out of 5 . \nname : Alimentum | food : Japanese | price : high | area : riverside | family friendly : yes||There is a high priced restaurant Alimentum located on the riverside that provides Japanese food . \nname : Cotto | price : less than £ 20 | area : riverside | near : All Bar One||Cotto has a price range of less than £ 20 and is situated by the riverside , near All Bar One \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||There is a pub named The Plough with moderate pricing near Café Rouge . They sell Japanese food and yes it is kid friendly . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : yes||There 's a family friendly Chinese in the city centre called , The Twenty Two . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne restaurant serves sushi and welcomes families . \nname : The Golden Palace | Type : restaurant | price : moderate||The Golden Palace is a moderately priced restaurant . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes||Cocum is a kid friendly coffee shop that serves an average cup of coffee . But the price is kind of high . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||The Waterman is a French restaurant with pub style food located by the riverside with a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop which serves French food . It is located near Clare Hall , on the riverside , and has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry is a kid friendly restaurant . This restaurant serves Japanese food . Customers have given The Golden Curry an average rating of 1 out of 5 . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a low rated French restaurant near Café Rouge . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a moderately priced , English restaurant in the city centre area that is kid friendly and has a rating of 3 out of 5 stars . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : yes||There is a kids friendly Fast food place called The Golden Curry . It has a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a reasonably - priced pub serving fast - food located near Café Brazil . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||For some family friendly eating , try The Wrestlers , 3 stars and not too expensive . \nname : Midsummer House | food : Italian | price : cheap | customer rating : average | near : All Bar One||There is a cheap Italian food restaurant near All Bar One called Midsummer House . They have an average customer rating . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : no||The Olive Grove is a high priced English pub , not child friendly , located near the center of the city . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a three star coffee shop outside of the City Centre . It is near Café Brazil . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an English restaurant in city centre near Express by Holiday Inn . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves cheap Indian food in a family friendly setting . It can be found in the riverside area near to Express by Holiday Inn and has an excellent customer rating . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Express by Holiday Inn||Fitzbillies is near Express by Holiday Inn with a high customer rating in the £ 20 - £ 25 price range but it is not child friendly \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop west of The Portland Arms that serves moderately priced pub food . \nname : Wildwood | Type : pub | food : Fast food | price : less than £ 20 | customer rating : low||Wildwood is a pub that serves fast food . It has a price range less than £ 20 and a low customer rating . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||An English pub with a high customer rating near Yippee Noodle Bar named Strada . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no||Cocum is a cheap coffee shop providing Italian food . They are not family - friendly and rated average . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a great coffee shop providing fast food in the riverside area at a cheap price . Rated 5 out of 5 . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||A pub on the riverside , near to Café Rouge , is The Green Man and it serves Japanese food . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Check out Aromi , located on the riverside . It is an Italian restaurant . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : low||The French restaurant , The Cambridge Blue , has low customer ratings . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||With a high customer rating and prices over £ 30 , The Vaults is a pub which can be found near Café Adriatic . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a moderately - priced Chinese restaurant with a customer rating of 3 out of 5 . They are in the riverside area and are kid - friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop which offers fast food . It is located in the city centre area , has a high customer rating and a price range of more than £ 30 . It is not child - friendly . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge is not a family - friendly Japanese restaurant called The Golden Curry in riverside that gets 5 out of 5 ratings . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : city centre | near : The Sorrento||Serving Indian food The Mill is a high cost coffee shop in the city centre near The Sorrento . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : no||Get away from the kids at Zizzi , a Chinese pub with a low review score . \nname : The Punter | food : Italian | price : moderate||Italian food is served at The Punter which is moderately priced \nname : Zizzi | Type : pub | food : French | customer rating : 3 out of 5 | family friendly : yes||French food at Zizzi is 3 out of 5 . This pub has a family friendly atmosphere . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||There is a high priced coffee shop Giraffe near The Bakers . It has a customer ratings of 3 out of 5 and is children friendly . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||You can find pricey food at Fitzbillies , which is close to The Six Bells . \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is an Indian Pub near Café Rouge . It costs less than 20 pounds and is family friendly . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada , near Rainbow Vegetarian Café , has cheap English food and is family friendly . It has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap Italian coffee shop near Burger King in the city center , we are no a family - friendly coffee shop with a great customer Rating of 5 out of 5 . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a place serving Chinese food with a moderate price Range located in a riverside area not Kid friendly near All Bar One . \nname : Loch Fyne | Type : restaurant | food : English | price : more than £ 30 | family friendly : yes||Loch Fyne , is a children friendly English restaurant at a price range of more than £ 30 . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Price range is high with a customer rating of 3 out of 5 , but Travellers Rest Beefeater is on the riverside near Café Adriatic . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside||The price range for The Mill , a fast food pub in the riverside area , is between 20 - 25 pounds . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an Italian restaurant near Café Rouge , Its located in Riverside , has average ratings and is not considered family - friendly \nname : The Rice Boat | food : Fast food | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family - friendly Fast food restaurant in the city centre . Ratings are low , but the food is great . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum is a Japanese restaurant in the riverside area . It is kid friendly and prices range from £ 20 - 25 . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a moderately priced kids friendly fast food pub near Café Rouge . \nname : The Waterman | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A family friendly , Chinese food place has a customer rating of 5 out of 5 . The Waterman is located in riverside and has a cheap price range . \nname : Browns Cambridge | food : French | area : city centre | family friendly : no | near : The Sorrento||The French restaurant Browns Cambridge near The Sorrento in the city centre is not family - friendly . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family - friendly establishment that serves Japanese food . It can be found in city centre near Express by Holiday Inn has a rating of 3 out of 5 and prices on the higher side . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a children friendly , 3 out of 5 rated French restaurant located near Ranch . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix serves fast food near the river . It has a rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a adult service Japanese coffee shop near the riverside with a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the city centre is the Italian coffee shop Browns Cambridge . Although , it has a 5 out of 5 rating it is not family - friendly . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two serves French food and is family friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a kid friendly Italian coffee shop near Café Sicilia , they have a high customer rating with £ 20 - 25 price range . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is an English restaurant with an average customer rating located in the city centre . It is family - friendly and has a cheap price range . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Located by the riverside there is a Japanese restaurant Alimentum , they are very friendly and less then £ 20 . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : moderate | near : Café Brazil||The Cambridge Blue pub , near to Café Brazil serves Chinese food in a moderate price range . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||French food can be found at The Wrestlers which is near Raja Indian Cuisine in the city centre . It is a family - friendly coffee shop and has a price range of less than £ 20 . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto , a highly - priced , coffee shop serving French food , is situated at the riverside near The Portland Arms . It has a low customer rating . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a kid friendly place with a moderate price range . It is located near The Rice Boat . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly restaurant , located near The Bakers . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a 3 star , family friendly Café located close to The Rice Boat providing Japanese food . It is located in the city centre . \nname : Browns Cambridge | food : Chinese | price : high | customer rating : 1 out of 5||Browns Cambridge serves high price Chinese food . It has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : yes||Loch Fyne is a kids friendly Chinese food restaurant in the moderate price range . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||The Golden Palace is an extremely affordable , Italian fusion restaurant just steps outside of the city center \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced coffee shop . It is family friendly . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel is a French restaurant called The Waterman that would be great for the entire family . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a cheap average Italian restaurant Alimentum near Yippee Noodle Bar in the river side . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is a cheap coffee shop with low ratings and not family friendly near The Bakers \nname : The Wrestlers | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes||For a high price range restaurant look no further than The Wrestlers . A French Food place that has a customer rating of 3 out of 5 and is very child friendly \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House by riverside in Clare Hall has French more than £ 30 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : riverside||The Waterman pub for eating Chinese food has customer average Riverside . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||A high priced coffee shop called Wildwood is situated near Ranch . It has a three star rating . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House serves Japanese food . Its located near Café Rouge and has a low customer rating . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle is a low rated restaurant . \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||For a positive rated coffee shop that also serves Indian food at a high price , the child friendly venue , The Eagle , sits near Burger King on the riverside . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 5 out of 5||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is 5 out of 5 . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||A high - priced restaurant known as Travellers Rest Beefeater is child - friendly . \nname : The Golden Palace | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a French coffee shop in the Riverside area . It has a high price range and a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Close to Crowne Plaza Hotel , on the riverside , Browns Cambridge is an average rated fast food coffee shop . It 's family friendly . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man by the riverside is child friendly and expensive . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||The Green Man is a non family - friendly place with Japanese food less than £ 20 . It can be found near All Bar One in the city center area . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café is The Rice Boat which has a high customer rating and the price range is £ 20 - 25 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms in the city that provides Indian food . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||At Riverside , sits The Waterman . The food is average and English . The price is cheap and you 're here to take a break from families . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a one star restaurant that serves high priced meals . Its location is next to the river and near it is Yippee Noodle Bar . \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Clowns is not family - friendly . It is located near Café Sicilia and has a price range of less than £ 20 . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum serves Chinese food for more than £ 30 with a high customer rating in city centre near Yippee Noodle Bar . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||A family friendly restaurant named Strada had a low customer rating and a price range less then 20 pounds . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly place located in the riverside area near Café Rouge offering Chinese food and it has an average customer rating . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Strada is not children friendly and costs more than £ 30 . It has a customer rating of five out of five . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : no | near : The Portland Arms||Near The Portland Arms , there is a family friendly , Indian pub named The Dumpling Tree . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man is family - friendly with a price range of less than £ 20 . It serves Japanese food and is near All Bar One in the city centre . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | near : Clare Hall||Clowns coffee shop offers fast food with an average customer rating . It is located in the city centre near Clare Hall . \nname : Blue Spice | food : English | price : cheap | area : riverside||Blue Spice offers English style food on the riverside in the cheap range . \nname : Cotto | food : English | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly English restaurant with a low rating near Ranch \nname : Fitzbillies | food : Indian | price : more than £ 30 | near : The Six Bells||Serving Indian food near The Six Bells at more then thirty dollars is the Fitzbillies . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is an expensive restaurant that is family friendly . It is rated 3 stars and is located near the river . \nname : Loch Fyne | food : Indian | customer rating : average | area : city centre | near : The Rice Boat||An average rated Indian restaurant in the city centre near The Rice Boat is called Loch Fyne . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies coffee shop is a family friendly , cheap Indian in the city centre with average customer ratings . \nname : Browns Cambridge | price : high | customer rating : 1 out of 5||Rated 1 on 5 , Browns Cambridge is an expensive restaurant \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Located near All Bar One is a sushi restaurant called Green Man that has budget friendly menu items . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a kid - friendly , fast food . restaurant . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : average||Wildwood is an English food pub with a cheap price range and an average customer rating . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop offers French food , in the riverside area . Loved near Raja Indian Cuisine . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a low priced five star Italian restaurant located in the city centre . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a pub with a price range less than £ 20 with a low rating but family - Friendly \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : riverside||In the City Centre there is a nice restaurant over looking a river called The Phoenix . \nname : The Punter | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The coffee shop , The Punter , provides the customer with average rated Indian food , This high - priced establishment is child friendly and found near to the Café Sicilia \nname : Browns Cambridge | food : English | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is an English restaurant near The Sorrento in the city centre . Not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Riverside has a coffee shop named Fitzbillies that isn 't family - friendly that is less than £ 20 with a low customer rating , \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a store that provides assorted wines and snacks at an average price . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a moderately priced restaurant located near the city center . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop located next to Burger King on the river . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a French coffee shop in riverside . It has a price range of £ 20 - 25 and an average customer rating of 3 out of 5 stars . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||Browns Cambridge has an average customer rating , and serves French food for less than 20GBP . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a restaurant providing breakfast . It is located close to All Bar One \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre with high prices , it receives average ratings and is not child friendly . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 out of 5 rating French restaurant . They are child friendly and their prices are higher than 30 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : no | near : The Portland Arms||If you 're looking for an unfriendly , poorly - rated Indian coffee shop , try The Cricketers near the The Portland Arms . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is a cheap , family friendly place , and it has a 5 out of 5 customer rating . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||The pub called Zizzi had friendly families come in to eat French food , but the customers rated the place low \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a cheap alternative to the nearby Café Sicilia . It has a family friendly environment and is located in the riverside area . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly restaurant that is cheap on the riverside , near The Rice Boat with a 5 out of 5 rating . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||There is a cheap restaurant The Vaults that serves breakfast and is family friendly . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a Japanese pub near Café Rouge that serves Japanese food for £ 20 and is family friendly . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Serving Japanese food near the riverside , The Phoenix has 3 star ratings at middle price range . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||Low rated restaurant , The Golden Palace , is located on the riverside . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Strada is highly rated by customers . It is not children friendly and is expensive . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||The Zizzi coffee shop located at the riverside serving cheap food is not a family - friendly place . It has been rated average . \nname : Strada | Type : restaurant | customer rating : low||A restaurant with low customer ratings in Cambridge is Strada . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , a Japanese coffee shop near Crowne Plaza Hotel in city centre is family - friendly . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : no||The Rice Boat serves French food on the riverside and hosts a non - family - friendly environment . This restaurant has a low customer rating . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||If you want Italian food in a family friendly place , go to The Waterman near Crowne Plaza Hotel . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 3 out of 5||The Cambridge Blue is a Japanese restaurant rated 3 out of 5 by customers \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : no||Strada is a cheap non friendly place with 5 out of 5 ratings . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||The Alimentum is a Japanese restaurant located in the city centre near Yippee Noodle Bar . It has a moderate price range and 1 out of 5 stars . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers cheap Chinese food at an average customer rating . It is not family friendly , and can be found riverside near Express by Holiday Inn . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : no||The Golden Curry is an Italian restaurant with an average customer rating . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing foods and beverages in the low price range . It is located at the Café Sicilia . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||Near the City centre there is a fast food sensibly priced coffee shop called The Golden Palace . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is in riverside , serves cheap Indian food , has an average customer rating , and is kid friendly . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Eagle serves Japanese food and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderately priced , non - kid friendly , fast food coffee shop in riverside . It has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a modest , French , coffee shop located in the city centre near The Portland Arms . 3 out of 5 stars . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're looking to spend more than £ 30 , there is a children friendly coffee shop that has Italian food near Raja Indian Cuisine called The Wrestlers . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||Serving high priced Italian cuisine , The Waterman is an adult eatery with an average rating located at the riverside . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : city centre||A cheap venue in the city centre is The Eagle with an average customer rating \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is located in the riverside area . It has French food , is children friendly , and a low customer rating . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||The Mill is a fast food pub in the riverside with high prices . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||The Wildwood is a pub serving French cuisine in the mid - price range . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Italian food place named The Rice Boat , has a high customer rating and a price range of more than £ 30 and is not children friendly . it is in the city centre area near the Express by Holiday Inn . \nname : The Punter | food : Fast food | price : £ 20 - 25||Fast food restaurant The Punter has a cost of £ 20 - 25 . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||A high priced Chinese restaurant in riverside is called The Phoenix , with a 1 out of 5 rating . \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Phoenix provides Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Blue Spice | food : French | price : moderate | area : riverside||There is a mid priced restaurant The Blue Spice in the City centre . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a highly rated establishment that provides Italian food with a price range between £ 20 - 25 . It is also child friendly . \nname : The Eagle | food : English | customer rating : average||The Eagle had an average customer rating and serves English food . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is located by The Rice Boat . It serves poorly rated food and is moderately expensive . It is not family friendly . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||There is a cheap restaurant The Vaults that provides take - away deliveries . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||A Japanese restaurant in the city centre which is kids friendly is The Waterman . Food is moderately priced at £ 20 - 25 and on average it has a high customer rating . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||Find a kid friendly French pub near Café Rouge called The Plough great values . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a restaurant providing low quality food and family services in the average price range . It is located in the north of the city \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides fast food for a low price . It has a 5 star rating . It is located near Yippee Noodle Bar . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant providing all - you - can eat food in the mid price range . It is located near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The city centre has a 5 out of 5 Japanese restaurant called The Rice Boat . It is family - friendly as well . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||There is a family - friendly restaurant The Golden Curry in the city centre near Café Rouge . It has average customer ratings but they serve French food . \nname : The Wrestlers | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||A kid friendly restaurant that serves Italian food is called The Wrestlers . It is pricey and received a 1 out of 5 rating . \nname : The Golden Curry | food : Italian | price : less than £ 20 | family friendly : yes | near : The Bakers||There is a family friendly Italian place that is cheap called The Golden Curry near The Bakers . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne is located in the city centre . It offers British cuisine and is not family friendly . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||With an average customer rating , The Alimentum near Yippee Noodle Bar in the city centre , offers Italian food at a cheap price range . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man server fast food near the All Bar One on the riverside , which is children friendly at high price . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is located in city center have 5 out of 5 costumer rating . It providing Fast food and family - friendly too . Cheap Price Range \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers serves Japanese food in a price range of thirty pounds and above . It has a children - friendly environment and a customer rating of five out of five . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a moderate priced coffee shop . It is located near The Bakers . It is Kid friendly and ranks 1 out 5 stars \nname : Blue Spice | price : high | area : riverside||Blue Spice is a high priced place in Riverside . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice is a fast food restaurant in the riverside area . its price range is less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : low | family friendly : yes | near : The Portland Arms||There is a family - friendly Indian coffee shop called The Cricketers near The Portland Arms which has a low customer rating . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum provides for £ 20 Japanese food is near Yippee Noodle Bar in the city centre but has a low customer rating . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||Riverside has a kids - friendly fast food restaurant called The Twenty Two . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||For a highly recommended expensive Indian in the riverside area that is family friendly near Express by Holiday Inn try The Rice Boat . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a five star pub that is Family - Oriented . \nname : The Twenty Two | food : Indian | family friendly : no||The Twenty Two provides Indian food \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||The Mill serves higher quality items like wine , cheese , and a light lunch . It is located in The Sorrento . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a child - friendly English restaurant . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||The Italian pub , Wildwood , has a high price range and a customer rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : yes||Giraffe is a pub that serves Indian food in City Centre . It is family friendly . \nname : Wildwood | Type : pub | food : Indian | price : more than £ 30 | customer rating : high||There is a pub called Wildwood that serves Indian food that is rated high by customers , it will cost more than £ 30 . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Browns Cambridge is a high - priced venue offering food and drink . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : no||Cocum has a perfect customer rating score and is not family - friendly . \nname : Browns Cambridge | food : Japanese | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a family - friendly venue serving Japanese food situated near The Sorrento in the city centre \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||With a customer rating of 5 out of 5 there is a coffee shop serving Italian food called The Eagle near Burger King in the city centre . It is family - friendly and cheap . \nname : Midsummer House | food : Indian | price : cheap | customer rating : average | near : All Bar One||Midsummer House provides Indian food in the cheap price range . It is near All Bar One . Its customer rating is average . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : city centre||In the city centre is a pub called The Mill . It serves fast food that is in the moderate price range . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter , a coffee shop near Café Sicilia , serves French food ranging from more than £ 30 . It has a customer rating of 5 out of 5 and is not child friendly . \nname : The Golden Curry | food : English | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||Yes , the friends and family ate at a average cost at the city centre , it was called The Golden Curry near Café Rouge and it was full English . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||Giraffe is a Chinese pub located on a riverside and is children friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||The Aromi area is on the riverside with an average customer rating , it 's family friendly , with delicious Japanese food , and coffee shops . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is family friendly place to have Japanese food within price range of less than £ 20 . It is located by The Bakers . \nname : Strada | price : high | customer rating : average | family friendly : yes||The Strada has an average customer rating with a high price range and yes it is also child friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The Strada is not children - friendly and is located near Rainbow Vegetarian Café with Japanese food . The price range is more than 30 and has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Nestled in the city centre , Fitzbillies French - style coffee shop offers an exclusive , child - free coffee experience . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers serves Japanese food , it has a 5 out of 5 customer rating , it 's cheap and yes it 's also family friendly . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||There is a family friendly English pub with a low customer rating called Zizzi . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||In the city centre is a restaurant called The Twenty Two that is not family friendly . \nname : Strada | Type : restaurant | customer rating : average||restaurant Strada has average customer ratings . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||There is an English restaurant called Loch Fyne in Riverside that has a customer rating of 1 out of 5 and is near The Rice Boat \nname : The Waterman | Type : pub | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Waterman on the riverside serves pub style Fast food with a 3 out of 5 customer rating . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a family friendly , medium priced , three star fast food restaurant . \nname : The Phoenix | food : French | customer rating : average | area : riverside||Located in Riverside , The Phoenix serves French cuisine and has an average customer rating . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a sushi restaurant located near All Bar One , and it has a moderate price point . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a riverside coffee shop near the Crowne Plaza Hotel . It is not family - friendly but has an average rating for its Italian food . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kids friendly restaurant located in the riverside area . It has Chinese food with a low rating . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||A moderately priced non kids friendly venue in riverside is The Punter near The Portland Arms . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||The average rated Cocum offers pub food for less than £ 20 , also suitable for the whole family . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : no||The Vaults is a Fast food restaurant that is not child friendly with prices more than £ 30 . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||An English pub called the Cambridge Blue is cheap and near by the Café Brazil . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||Taste of Cambridge is a highly rated , average priced restaurant . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||There is a cheap restaurant Midsummer House that is located next to All Bar One . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : cheap||The Dumpling Tree is a cheap Chinese restaurant option . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns is a low - priced pub rated 5 out of 5 by customers . It is located on the riverside . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly restaurant that is located in the area of riverside near Raja Indian Cuisine . They serve Italian food with a high price range of more than £ 30 \nname : The Rice Boat | food : Indian | area : city centre||The Rice Boat is an Indian restaurant located in the city centre . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||There is an English based food place called Fitzbillies . It is located near The Six Bells and generally costs less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||riverside coffee shop The Wrestlers Fast food price range same Raja Indian Cuisine \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||There is an above average priced Japanese restaurant named Loch Fyne that is children friendly . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||Customers rate Wildwood restaurant , near Café Rouge , average . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop north of the city center , located close to the Crowne Plaza Hotel , with a view of the river . Their fast food is very highly favored by families . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : riverside | near : Clare Hall||Clowns is an Indian coffee shop which has average customer ratings and is at the riverside , near Clare Hall . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , a moderately priced French restaurant is located near Yippee Noodle Bar . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is near the Express by Holiday Inn . It 's French food is in the range of more than £ 30 . It 's not child friendly , and has a low customer rating . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : no||Alimentum is a moderately priced fast food restaurant in city center that is not kid friendly . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum has a high customer rating , with reasonable prices and splendid Indian food . It is in the lovely area of Riverside , next to the Yippee Noodle Bar . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a coffee shop near The Bakers . It is child friendly with a high customer rating and a price range of £ 20 to 25 . \nname : Loch Fyne | food : Chinese | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne serves Chinese cuisine . The food has been rated by customers as average . Loch Fyne is located near the city centre and The Rice Boat . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that serves Chinese food , is kid - friendly , and is near The Portland Arms . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | near : Clare Hall||Clowns is a Japanese coffee shop near Clare Hall which is over by the city centre . It does not have a very high customer rating , though . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Avalon||Blue Spice , located near Avalon in the city centre , is a low rated coffee shop with food prices less than L20 that is not family - friendly . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , Fitzbillies is children friendly and has a 3 out of 5 rating , although is high priced . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a medium -price restaurant and it 's for the whole family that offers delicious lunch and has an excellent rating restaurant . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : less than £ 20||If you are looking for a cheap restaurant , The Dumpling Tree has fast food for under £ 20 . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||With a 1 - star rating , Midsummer House is a low priced burger and fry joint located close to All Bar One . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||The Zizzi pub has low rated Fast food and is not family - friendly . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||Riverside pub , The Twenty Two near Café Sicilia has a 5 out of 5 rating . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop close by The Portland Arms , north of the city center . , near the river . Although their pasta dishes are slightly pricey , reviewers don 't recommend them . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop near Café Brazil in Riverside area . It price range is less than £ 20 but has a low customer rating . \nname : Bibimbap House | food : English | area : riverside | near : The Rice Boat||The Bibimbap House is located on the riverside near The Rice Boat . It serves English food . \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||The Vaults has French food priced around £ 20 - 25 and is kid friendly . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a Japanese pub with prices more than £ 30 and 5 out of 5 ratings . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is an average priced Japanese coffee shop in the city centre near Ranch . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Wildwood pub has high customer rating serves Japanese food in the £ 20 - 25 range . \nname : Cotto | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a high - end coffee shop near The Portland Arms in the Riverside area . This shop serves Japanese food and has a customer rating of 3 out of 5 \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Clowns is a pub located on the river , decently priced , with a customer rating of 3 out of 5 . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub providing English food with a price range of less than £ 20 . It is not a family - friendly establishment . It is located in the riverside area . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : no||The Golden Curry serves Japanese food . It has an average customer rating and is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||Located near The Portland Arms , The Cricketers is a coffee shop offering food with one star rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop in the riverside area near Burger King serving highly rated Indian food at a price range of £ 30 or more . \nname : The Vaults | food : Italian | price : high | family friendly : yes||Located in the city centre , The Vaults is a high priced family friendly Italian restaurant . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area , Clowns is a coffee shop that serves Japanese food and has a customer rating of 3 out of 5 . \nname : The Vaults | Type : restaurant | food : Indian||The Vaults is an Indian restaurant \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood is a low - cost , 5 - star pub that serves spaghetti . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||For a family friendly pub in riverside , try Giraffe . They serve English food . \nname : The Phoenix | food : Italian | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix , highly rated Italian food in the city centre , prices starting from £ 30 . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : yes||The Vaults is a children friendly restaurant with a price range over £ 30 . \nname : Blue Spice | food : Japanese | price : cheap | area : riverside||There is a well priced Japanese restaurant at riverside called Blue Spice . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a high prices place near Express by Holiday Inn in riverside . It has low customer rating and is more than 30 euros and not kid friendly \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||A cheaply priced Japanese coffee shop near to Ranch is Wildwood . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is a moderately - priced fast food adult - oriented restaurant near All Bar One in the Riverside area . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||For Chinese food ' The Wrestlers ' is a favourite choice . With very high customer rating and prices ranging from £ 30 . Enjoy a quite atmosphere as the place is not children - friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , is a coffee shop that is family friendly with prices less than L20 It serves French food and is near Raja Indian Cuisine in the riverside area . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a highly priced , more than 30 Euros , restaurant by the Express by Holiday Inn on the Riverside . This Children friendly restaurant named The Rice Boat has been rated highly by its customers for its fabulous Italian food . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||A non family friendly cheap Indian pub near Riverside is The Olive Grove . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||For those looking for a cheap price range in Riverside , The Eagle has an average rating . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||A fast food coffee shop in the riverside area with a 5 out of 5 customer rating is called Aromi . It is not family - friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||With an average customer rating , Zizzi is a family friendly pub that serves Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee Shop providing Fast Food . It is located in riverside area . Have 5 out of 5 costumer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes||The Olive Grove is a child friendly pub situated in the city centre . It serves highly priced Italian food . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Blue Spice is a children friendly place in the city centre with a high price range that has a customer rating of 3 out of 5 . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||There is a moderately priced Indian restaurant located in the city centre near the Yippee Noodle Bar called Alimentum that is rated 3 out of 5 . \nname : Wildwood | Type : pub | food : English | price : cheap | customer rating : 5 out of 5||Wildwood is an English pub with cheap prices and a 5 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto , a coffee shop near The Portland Arms located in the city centre offers cheap Fast food . its customer rating is average . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly coffee shop that also serves Italian food and is near the riverside and the Crowne Plaza Hotel . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is located by Burger King . It has fair prices and has burgers , drinks , and fries \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Kids are always welcome at Taste of Cambridge coffee shop in the riverside area . It 's located near Crowne Plaza Hotel and they have a fast food style menu . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a friendly for children restaurant and the customer rating is 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is an expensive 5 star Japanese coffee Shop located next to The Portland Arms City Centre . \nname : Green Man | Type : pub | food : Indian | area : city centre | near : Café Rouge||In the city centre area near Café Rouge , there is a pub called Green Man that serves Indian food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop providers of fine Indian foods in the price range of more than £ 30 has garnered rave reviews from customers for the riverside settings and the children friendly environment . \nname : The Eagle | food : French | customer rating : average||The Eagle sells French food and has a customer rating of average . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a high quality coffee shop that is great for family dinner night . It is located in Café Sicilia . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop near The Bakers . It is high priced with customer ratings as 3 out of 5 . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant that is inexpensive . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||If you want poor Japanese food , try The Cambridge Blue restaurant . They have a low rating . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop that sells wine and is located across from The Portland Arms . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||Customers have given the restaurant Strada 3 out of 5 . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is located in the center of the city near Yippee Noodle Bar . It serve Japanese food and has a price range of £ 20 - 25 . The average customer rating is 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes||For a children - friendly coffee shop in the riverside area with a high customer rating you can go no better than Aromi in riverside . \nname : The Eagle | price : high | customer rating : 1 out of 5 | area : riverside||The Eagle is on the riverside . It has a high price range and a customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for a friendly Fast food coffee shop , go to Browns Cambridge in the city center near the Crowne Plaza Hotel . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The high end restaurant The Golden Palace is located in the center . of Cambridge . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||Wildwood is a sit down , mid range price pub . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Japanese restaurant called Strada , near Rainbow Vegetarian Café is not children - friendly and is high in price and a customer rating 3 out of 5 \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a pub located in the city centre rated 5 out of 5 . It is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a slightly pricey Italian coffee shop located near Burger King in riverside which is highly rated but is not child friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne is a bistro restaurant which is not family friendly \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||For a riverside Indian restaurant , The Golden Curry is located near to Café Rouge and has received a 5 out of 5 rating from customers . The venue is not ideally suited for a family meal . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||There is a restaurant with a 3 - star rating called The Cambridge Blue , which offers English fare . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Italian good . It is located in the riverside area located near Café Rouge . It is children friendly and has a 1 out of 5 customer rating . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge received a customer Rating of 3 out of 5 . It costs between £ 20 - 25 . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a coffee shop providing Indian food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms , is a coffee shop called The Cricketers with 5 out of 5 rating , Italian food , and family friendly . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento , Browns Cambridge is a child friendly restaurant serving English food in the riverside area \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns has been getting lots of great feedback . It 's a pub by riverside , you can expect to pay somewhere around £ 20 - 25 for a meal . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Bring your family to The Punter for 5 - star sushi and coffee at a fair price located near Café Sicilia . \nname : Giraffe | Type : pub | food : Italian | area : city centre | family friendly : no||Giraffe is an Italian pub at the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a child friendly coffee shop that serves fast food with an average customer rating of 3 out 5 . It is at the riverside near the Crowne Plaza Hotel . \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a highly rated low priced restaurant The Rice Boat that offers French food in the city centre near Express by Holiday Inn . It is not family - friendly . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a family - friendly riverside pub serving Japanese food . \nname : Strada | Type : pub | food : French | customer rating : average | near : Yippee Noodle Bar||Strada pub has an average customer Rating for French food near Yippee Noodle Bar . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a coffee shop in the city centre . It offers fast food options with a high customer rating . Prices range from £ 20 - 25 , and it 's kid friendly . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||The Vaults is a family - friendly Italian restaurant . The price per meal is less than £ 20 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a child - welcoming place to eat , and is situated close to The Six Bells . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderate - priced coffee shop in the riverside that delivers take - away . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||With a price range of £ 20 - 25 near the Café Adriatic riverside the Travellers Rest Beefeater has a customer rating of 3 out of 5 . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub located near the Ranch . It gets a low customer rating . \nname : Fitzbillies | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is Fitzbillies which is child friendly with a moderate price range and rating of 3 out of 5 . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a French restaurant that offers food for less than £ 20 . It has average ratings and it located along the riverside close to the Yippee Noodle Bar . \nname : Browns Cambridge | food : Indian | price : £ 20 - 25 | customer rating : high||Browns Cambridge is certainly rated highly by customers and presents an array of Indian dishes with a usual spend of £ 20- £ 25 generally . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||For a child friendly coffee shop , check out Cocum , a moderately priced fast food joint with a customer rating of 3 out of 5 . \nname : The Vaults | food : Japanese | price : moderate | family friendly : yes||The Vaults is a moderately priced Japanese restaurant and is kids friendly . \nname : The Phoenix | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre||If you are looking for somewhere cheap to eat in the center of the city you should give The Phoenix a try . With a customer rating of 5 out of 5 it is one of the best places for Japanese food in town . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a French pub in the riverside area . This pub is family friendly . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : city centre||The Clowns is a pub in the city centre , low rated and cheap . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi is in riverside it a family friendly Fast food coffee shop and has an average rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre||there is high price coffee shop named The Golden Palace serving French food Located in city center with a high customer rating \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||Located near The Portland Arms , The Dumpling Tree is a pub that serves fast food menu items . It is not family friendly . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||The restaurant Wildwood is based near Café Rouge and has a high customer rating of 5 out of 5 . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : yes||With a great city centre location , the Green Man is sure to please . Kid friendly with an average cost of more than £ 30 . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||The Dumpling Tree is a fast food restaurant for a reasonable price . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||a cheap pub in the riverside area is The Mill \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge serves Japanese food in the £ 20 - £ 25 price range has a 3 out of 5 customer rating \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||For a pub with average prices in Riverside , check out The Golden Palace near Rainbow Vegetarian Café . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes||Aromi is a French food coffee shop with an average customer rating . It is family friendly and is located in riverside . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a mid price range family friendly coffee shop located near Café Sicilia . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 3 out of 5||Browns Cambridge is traditional British restaurant . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||With moderate pricing , Browns Cambridge has a customer rating of 3 out of 5 . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Indian food starting at £ 20 - 25 with a high customer rating it is only at The Wrestlers . Kids are allowed . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , close to the river and Yippee Noodle Bar , expensive 1 star British food is on the menu . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a Fast food restaurant in the city centre . It is child friendly . It has a high price range and a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For a Fast food coffee shop with a price range more than £ 30 there is The Wrestlers in the riverside area near Raja Indian Cuisine . it is also children friendly . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a family restaurant with 1 star and is expensive . It is near Rainbow Vegetarian Café . \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves Fast food with moderate prices and 1 out of 5 stars . It is located near Rainbow Vegetarian Café and is kid friendly \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is an expensive Italian coffee shop in riverside near Burger King . It is kid friendly and has an average customer rating . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||With a customer rating of 3 out of 5 , and near Rainbow Vegetarian Café , Strada offers Italian food and is child friendly . Food prices are moderate . \nname : Fitzbillies | food : Chinese | price : high | near : The Six Bells||Fitzbillies is by The Six Bells . The pricing on food is high . It is a Chinese restaurant . \nname : The Rice Boat | food : Indian | customer rating : low | area : city centre | family friendly : yes||A family friendly Indian restaurant called The Rice Boat is in the city centre with a low rating . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The adult restaurant , The Rice Boat , serves cheap French food and has received poor customer ratings . They are located in the riverside area near the Express by Holiday Inn . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop with a price range of £ 20 - 25 . It is located near Avalon in Riverside . Kids are not allowed . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is a restaurant situated on the riverside that serves French cuisine . It has a high rating , not child friendly and price range of £ 20- £ 25 . \nname : Green Man | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly place that serves Indian food for less than £ 20 . It is located at the riverside near All Bar One . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||There is a great Fast food place Loch Fyne located in the centre of the city near The Rice Boat that has a 5 out of 5 rating . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||Alimentum is a children friendly Japanese restaurant in riverside with a moderate price range \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a Chinese food restaurant that is child friendly . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near the Crowne Plaza Hotel , and is child friendly and serves Italian . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : city centre||The Eagle is in the city centre . It is cheap and rated 5 out of 5 . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a low price restaurant in The Bakers that offers French foods \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House is an average rated Italian restaurant near Café Rouge \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||In riverside , visit The Phoenix for Japanese food with a high price Range and customer Rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is an average rated Burger King located on the riverside that provides coffee shop type food . Next door is a high priced Italian eater named The Eagle . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||Although they are in the high price range , The Phoenix rates 1 out of 5 with customers . They serve Indian food in the riverside area . \nname : Cocum | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Cocum is a middle priced , 1 star coffee shop . It does not allow families . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Zizzi , a cheap coffee shop along river side have good customer rating and family - friendly \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||A French restaurant with a family - friendly environment and average customer ratings is The Golden Curry , located in city centre near Café Rouge . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||The Vaults is a kid friendly Japanese restaurant with a price range of £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop located north of the city . They have High ratings and low prices . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : city centre | near : Clare Hall||Clowns makes coffee shop and French food with cheap Rating in Clare Hall . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||A coffee shop serving Indian food with a high customer rating and is child friendly near Café Sicilia is The Punter . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Chinese restaurant located in the city centre . High prices and children friendly atmosphere has earned this establishment high customer ratings . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop has French cuisine and is located at the riverside close to the Raja Indian Cuisine restaurant \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar in the city centre is Alimentum , mid - range priced 3 star delicious food . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||With price range of more than £ 30 and low customer rating , Cotto at the riverside near The Portland Arms is a coffee shop serving Japanese food . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Rated 3 of 5 , Loch Fyne is a Japanese restaurant near The Rice Boat located in riverside \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : city centre||The fast food pub , The Waterman , is located in the city centre . They have a customer rating of 5 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop serves French food in the City Centre near Raja Indian Cuisine and is moderately priced \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Green Man is a riverside establishment serving dishes for less than £ 20 \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a low priced wine and cheese restaurant located north of City centre on the river . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : less than £ 20||The Dumpling Tree offers wonderful Italian food , in a family atmosphere , starting at less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||A French coffee shop near city centre is Fitzbillies . It is priced at £ 20 - 25 and is highly rated by customer . It is also kids friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||For a cheap , family - friendly option , why not try The Olive Grove - a pub in the city centre , offering Italian style food . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||For meals in the £ 20 - 25 price range , The Golden Palace is a pub in the Riverside area , near to Rainbow Vegetarian Café \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||With a high price range and a low rating from customers , The Wrestlers is a family friendly pub . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||You can take your children to Loch Fyne ; an expensive restaurant that serves a variety of food and drinks . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Kid Friendly place with a price range of 20 - 25 . The Waterman is an Italian place in the city center area with a high rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||Aromi is a highly rated coffee shop located riverside that serves Indian food and is very kid - friendly . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||With a 3 out of 5 customer rating , the child friendly Strada serves moderately priced Italian food . It is near the Rainbow Vegetarian Café . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop . It offers Italian food . Customer rating are high . The coffee shop is on the riverside area . It is not child friendly . Prices are more than £ 30 \nname : The Waterman | food : English | price : high | customer rating : average | area : city centre | family friendly : no||With an average rating and a high price range , children are not welcomed at The Waterman , an English restaurant near the city centre . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop is child friendly and offers fast food priced on average at more than £ 30 . It is located in the riverside area , near Raja Indian Cuisine . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults costs between 20 and 25 Euros with a high customer rating if you are looking for pub food near Café Adriatic . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a child friendly restaurant that serves French food . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a low - priced place where families are always welcome . It is located at the riverside area and it has an average rating between its customers . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a pub serving fast food located near Café Rouge . It is family friendly and is mid - priced . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : no||Alimentum is an non - children friendly Indian restaurant with a high price range located in the city centre . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a kid friendly restaurant that serves Japanese food called The Rice Boat . It has a customer rating of 1 out of 5 and is moderately priced . It is located near Express by Holiday Inn in the city centre area . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop , located next to Burger King and is a moderately priced and family friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a family friendly place that has a high customer rating and with a price range of more then £ 30 . It is a coffee shop located near Avalon in the riverside area . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman located by the riverside is an expensive Japanese food place . The reviews aren 't bad but it isn 't recommended for children . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill Pub serves high end French food near the riverside . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||There is a family friendly fast food restaurant in Riverside called The Waterman . It is inexpensive and has average customer ratings . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is cheap and family friendly and has a customer Rating of 5 out of 5 . It is near Express by Holiday Inn . \nname : Midsummer House | food : Italian | customer rating : 1 out of 5 | near : Café Rouge||Near Café Rouge , there is a restaurant called Midsummer House and it has a poor customer rating of 1 out of 5 . \nname : Blue Spice | food : Indian | price : cheap | area : riverside||Blue Spice provides Indian food in the cheap price range . It is located in the riverside . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a highly rated coffee shop in the more than £ 30 price range serving family - friendly fast food . \nname : Blue Spice | food : French | price : cheap | area : riverside||Blue Spice in the riverside area serves inexpensive French food . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||There is a venue near the Rainbow Vegetarian Café that offers Indian Food . It is not kid friendly but it 's customer rating is high . It is called Strada and it 's prices range from £ 20 - 25 . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||If your budget is 20 - 25 £ for a meal , you can eat in Browns Cambridge , a French restaurant rated 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||Near Café Brazil is The Cambridge Blue which is a Japanese pub with a price range less than £ 20 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes||The Aromi is an average rated coffee shop that serves Japanese food . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : yes||The Olive Grove is a child friendly high priced Indian pub located in the Riverside area . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : yes||The Vaults is a low priced , family friendly restaurant . \nname : Bibimbap House | food : Italian | area : city centre | near : The Rice Boat||There is a place near The Rice Boat in the city centre named Bibimbap House serving Italian food . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a place at riverside near The Rice Boat . Loch Fyne serves English cuisine and has a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a moderately well rated family coffee shop near Café Sicilia which serves sushi . \nname : The Waterman | price : more than £ 30 | family friendly : yes||a children friendly restaurant in the high price range is called The Waterman . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||The riverside Travellers Rest Beefeater , not far from the Café Adriatic , has a high customer rating and food offered is in the over £ 30 price range . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a none family - friendly French food place called near The Bakers price ranging less than £ 20 . \nname : Blue Spice | food : Chinese | price : high | area : riverside||One high priced place in the riverside area , Blue Spice , serves Chinese food . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly coffee shop serving Italian food . With a 5 out of 5 rating , this low cost establishment is popular with its customers . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||Near Café Brazil in the City centre , you will find a pricey , three star coffee shop called The Vaults . \nname : Strada | Type : pub | food : French | customer rating : average | near : Yippee Noodle Bar||The pub Strada is near Yippee Noodle Bar and has an average customer Rating for French food . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||There is a restaurant called Fitzbillies that offers quality Japanese food . Fitzbillies is located near The Six Bells , and offers quality food for fair prices . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the £ 20 - 25 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : The Golden Curry | food : French | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry serves moderately priced French food and is kid friendly . It is located near The Bakers . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||For a family friendly restaurant go to The Olive Grove in riverside . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||With a high price range and an average customer rating , Travellers Rest Beefeater is located by the riverside near the Café Adriatic . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : yes||If you 're looking for an Indian restaurant for the whole family , you can go to Loch Fyne . The prices are moderate . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving Japanese food with low prices and 3 out of 5 stars . It is kid friendly . \nname : The Punter | food : English | price : high||The Punter is a high priced restaurant . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||A restaurant called Loch Fyne is family friendly and serve cheap Italian food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Near the river , there is an inexpensive , adults - only coffee shop called Fitzbillies . It serves burgers and fries . \nname : Blue Spice | food : Japanese | price : moderate | area : city centre||Sensibly priced Japanese food , try Blue Spice in the city centre . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an expensive , family - friendly , fast food restaurant that is near the river next to the Express by Holiday Inn . \nname : Alimentum | food : Japanese | price : moderate | area : riverside | family friendly : yes||Alimentum is a mid priced restaurant offering Japanese food , it is family friendly . It is located close to the City Centre \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||The Golden Curry is not only child friendly and English but also has high ratings from their customers \nname : Blue Spice | food : Indian | price : £ 20 - 25 | area : riverside||For Indian food in the riverside area go to Blue Spice , price range is L20 - 25 . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||The Twenty Two is not family - friendly . Its purpose is serving fast food , this place is located by the riverside . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a high price restaurant that serves Italian food . They have low customer rating and they are near riverside . \nname : Bibimbap House | food : Italian | price : high | area : city centre | near : Clare Hall||Serving Italian food at a high price range , Bibimbap House can be found near Clare Hall in the city centre . \nname : The Punter | food : French | price : more than £ 30||There is a highly priced venue serving French food called The Punter . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||In the riverside area Browns Cambridge near The Sorrento serves Italian food and is children friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : moderate | near : Café Brazil||The Cambridge Blue is a pub that serves fine seafood cuisine at a moderate cost located conveniently next to Café Brazil come check us out . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 3 out of 5||The Cambridge Blue restaurant has received a customer rating of 3 out 5 for its French cuisine . \nname : Loch Fyne | Type : restaurant | food : Indian | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid - friendly Indian restaurant serving food in the £ 20 to £ 25 range . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : no||Located in the riverside area is the Green Man . It has a price range of more than £ 30 and is not child friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop , located near the Crowne Plaza Hotel on the river . It is not family friendly . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a coffee shop providing family - style dining in the low price range . It is located close to the city center and has a superb view across the river . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a family friendly restaurant that serves Japanese food . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a moderately priced Indian restaurant located in the city centre near All Bar One , and is kid - friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a French coffee shop that is near the riverside . They are family friendly with a customer rating of 1 out of 5 . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a child friendly establishment near Café Sicilia with items priced at more that £ 30 . \nname : The Punter | food : French | price : cheap||The Punter serves excellent French food at low prices . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue is a high - priced pub located north of Café Brazil . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||For Fast food go to Fitzbillies near The Six Bells and has a price range of more than 30 pounds . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Indian food is available at the highly rated , higher priced , adult only restaurant , The Rice Boat , near Express by Holiday Inn . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop called Taste of Cambridge with fast service in riverside near Crowne Plaza Hotel . It 's not family - friendly . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is a pub by a riverside in the City centre with a high price range . \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : riverside | family friendly : no||The Olive Grove serves Fast food in a pub . Not kid friendly and located in riverside . Priced moderate . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : city centre||Located in the city center The Phoenix is a cheap , average Indian foods establishment . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||Welcome to The Waterman . We serve Italian food we are located in the city centre our price rang is high we are not kid friendly and our customer rating is average . \nname : Clowns | price : moderate | family friendly : no | near : Café Sicilia||The restaurant Clowns is not kid friendly and is located near Café Sicilia . The price range is moderate . \nname : The Phoenix | food : Italian | customer rating : average | area : city centre||In the city centre there is an average Italian place called The Phoenix . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||In the city centre near Café Rouge is The Golden Curry . It serves French food , has an average customer rating an dis not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a low priced family friendly Japanese coffee shop in Riverside , near Raja Indian Cuisine . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop on Riverside , near Café Sicilia , with a moderate price range . It 's not kid friendly . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||The Taste of Cambridge restaurant has a price range of £ 20 - 25 and has a 3 out of 5 customer rating . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop in riverside . Close to Avalon . Kid friendly : Yes . Customer Rating : 3 of 5 \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada affordable 5 star family dining . Offers food and spirits . Close to Rainbow Vegetarian Café . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||In riverside there is an Italian place called Loch Fyne near The Rice Boat . The customer rating is 5 out of 5 . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||Strada is a child - friendly venue with high customer ratings . The price range is over £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Located in the city center is a highly rated coffee ship named Fitzbillies that serves fast food that is averagely priced , but they are not kid friendly . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||Having high customer ratings , Aromi is a kid friendly pub located near Riverside . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree , a family - friendly coffee shop , is located neat Café Sicilia in the city centre . It offers prices less than 20 . \nname : Loch Fyne | food : Italian | customer rating : average | area : city centre | near : The Rice Boat||Near The Rice Boat in the city centre you can find an Italian establishment called Loch Fyne which has an average customer rating . \nname : Blue Spice | food : Japanese | price : high | area : riverside||Blue Spice is a high - end Japanese restaurant located in riverside . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family Friendly restaurant with a cheap price Range . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a restaurant providing Japaneses food in the cheap price range . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||If you are looking for a more expensive coffee shop that also serves English food but is highly rated and kids are welcome , then you should try Cocum if you are willing to spend more than 30 euros . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : average||There is a pub called Wildwood which serves Italian food . It has 3 out of 5 stars and a low price range . \nname : Alimentum | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||Located in the city centre Alimentum is non - family - friendly Indian restaurant in the less than £ 20 price range . \nname : The Wrestlers | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||This cheap , fast food eatery called The Wrestlers is family friendly and has a 5 out of 5 rating . \nname : The Rice Boat | food : Indian | area : riverside||The Rice Boat is located on the river and serves Indian food . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an quiet , Italian style coffee shop near Café Sicilia offering moderate pricing . It has a customer rating of 3 out of 5 . \nname : The Vaults | Type : restaurant | food : English||The Vaults is an English restaurant . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is an Italian restaurant with a moderate price range in the city centre . It has a customer rating of 3 out of five . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a fast food restaurant located near the Crown Plaza Hotel . It is riverside and very kid friendly . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||A high priced coffee shop , in the riverside area , near Café Brazil is The Vaults . They have a 3 out of 5 customer rating . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman offers cheap French food for family - friendly in city centre . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a restaurant located in city centre , have a price range of less than £ 20 \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is child friendly and offers pub type food . In the moderate price range , it has a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is in riverside near Burger King . It has cheap prices . It has high customer ratings . \nname : The Eagle | food : Fast food | customer rating : low||The Eagle is a fast food with low customer rating . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly pub by the river , it has an average reputation . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||Aromi coffee shop ranked 1 star is a great place for the kids and family events \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid - friendly Japanese pub by the riverside . The price range is of £ 20 - 25 . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant that serves French food located near Rainbow Vegetarian Café . It is no kids friendly and with a price range £ 20 - 25 and a high customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop called The Eagle is next to Burger King . It is one star rated and is in the medium price range . \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : no | near : Café Rouge||For less than £ 20 you can enjoy Italian food served at The Plough pub . It is located near Café Rouge . Non family - friendly . \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||The Phoenix restaurant offers food and drinks and is close to the river . \nname : The Phoenix | food : Chinese | customer rating : low | area : city centre||The Phoenix is a low - rated Chinese food service located in the city centre . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||The Midsummer House serves French food costing around £ 20 - £ 25 is rated 3 out of 5 , and is located near All Bar One \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||There is a cheap restaurant The Waterman located in the city centre that serves Chinese food . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||restaurant , The Waterman pub serves delicious fried foods and located outside of the city center \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : no||The Zizzi pub offers a small selection of snacks and spirits for adults . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is in the city centre near Burger King , it is a Japanese food serving coffee shop with a £ 20 - 25 price range . It isn 't kids friendly and has a 3 out of 5 rating . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Avalon||Located in the riverside area near Avalon is the Blue Spice coffee shop . This is not very family family place to eat even with the cost of less than £ 20 and it 's average customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Try the family friendly , Japanese coffee shop , The Cricketers . It is near The Portland Arms and has a customer rating 5 out of 5 . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a restaurant that serves Chinese food . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a child friendly fast food restaurant . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||With a customer rating of 5 out of 5 , Browns Cambridge has a moderate price range at more than £ 30 . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman is an Italian venue , with an average rating and a cheap menu . It is family - friendly in the city centre \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a £ 30 price range children friendly pub situated near Café Rouge . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : The Rice Boat||Located in the riverside area , near The Rice Boat , The Twenty Two provides child friendly activities . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle is expensive , has 5 stars and is located near the river . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||With a customer rating of 1 out of 5 , Kid - friendly coffee shop Zizzi offers a location along the riverside . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop offering fast food at great prices . It has gotten fantastic reviews . The Eagle is located riverside near Burger King . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||There is a moderately priced , three - star pub called Wildwood which serves sushi . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge has a low customer rating . The price range is average . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Cheap Chinese food in Riverside can be found at Alimentum , near Yippee Noodle Bar . This is rated 5 out of 5 . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||There is a cheap pub called The Mill . It is located near the riverside , and it offers high - quality English food . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a children friendly coffee shop near The Bakers with a high price range and a 3 our of 5 customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||The Mill , a cheap coffee shop that serves fast food is on the riverside near The Sorrento . \nname : Bibimbap House | food : Indian | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House provides Indian food in the lower price range . It is located in the city centre , near Clare Hall \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : yes | near : Café Sicilia||The Dumpling Tree is near Café Sicilia and the city center . It is a children friendly coffee shop with a price range of £ 30 and over . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||There is a pub that serves fast food called The Waterman at the riverside . However it has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||For a low cost family friendly coffee shop , try Cocum . Serving Italian food , Cocum is popular with its customers receiving a 5 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Families can enjoy food and drink at Fitzbillies on the outskirts of the City Centre \nname : The Mill | Type : coffee shop | food : French | price : high | area : riverside | near : The Sorrento||The Mill is a French dining and coffee establishment found in riverside by The Sorrento , but bring your wallet as this is a bit high end . \nname : Bibimbap House | food : French | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House at the riverside near Clare Hall is French food restaurant with prices £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The coffee shop Fitzbillies sells fast food . It is kid - friendly in and has a rating of 1 out of 5 . The pricing is moderate . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Low cost English food is what you 'll find at Fitzbillies , located near The Six Bells . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough pub near Café Rouge is less than £ 20 but not family - friendly . \nname : The Twenty Two | food : English | family friendly : no||There is lots of food The Twenty Two \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove is great pub fast food , family atmosphere , warm clentele and low prices in the Riverside area \nname : Fitzbillies | food : Indian | price : cheap | near : The Six Bells||Fitzbillies is a cheap Indian near The Six Bells . \nname : The Mill | Type : pub | food : French | price : moderate | area : city centre||The Mill is a French pub with moderate prices located in the city centre . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||There is a highly - rated , family friendly pub , Zizzi , that serves Chinese food . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for a children - friendly place with Indian food , try The Waterman . It is located near Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Cocum is a coffee shop that offers low price range food and it is suitable for family . \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is Italian food near Ranch and kid friendly \nname : Loch Fyne | Type : restaurant | food : French | price : high | family friendly : yes||The Loch Fyne is a child - friendly restaurant . It serves French food and is expensive . \nname : The Vaults | Type : pub | price : high | customer rating : average | near : Café Adriatic||Located near Café Adriatic is The Vaults pub high prices with an average rating \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Clowns is located near Café Sicilia . It is not family - friendly and has a price range of less than £ 20 . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||The Alimentum is a mid - range priced 3 star eatery which is located near the Yippee Noodle Bar in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop Browns Cambridge near Crown Plaza Hotel on the riverside is a great place to get French food for your family . 1 out of 5 people absolutely love it \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||There is a cheap eat - in restaurant The Rice Boat located close to Express by Holiday Inn in the centre of the city that provides . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum coffee shop offers sushi at a low - cost and low - rating . It is family - friendly . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap fast - food restaurant in the riverside area near Yippee Noodle Bar and has a 5 out of 5 rating . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||The Mill is a pub in the riverside area serving French food in the £ 20 - 25 price range . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum pub is moderately priced and has a good customer rating all while been child friendly . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Serving English food , Midsummer House , located near All Bar One , has an average rating and is cheap . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a child friendly venue serving English food near Crowne Plaza Hotel . \nname : The Waterman | Type : pub | food : English | customer rating : 1 out of 5 | area : riverside||Located by the riverside , there is an English pub called The Waterman , with a 1 out of 5 customer rating . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||Right beside The Rice Boat , in the city center , is Loch Fyne . They have a three out of five star rating and serve British food . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||If you are looking for an Italian pub in the price range of £ 20 - 25 , Wildwood has high customer ratings . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||The Vaults is located near Café Adriatic . It is a pub with a high price range but has received bad reviews . \nname : The Vaults | food : Indian | price : moderate | family friendly : yes||The Vaults serves Indian food . It is kid friendly and moderately priced . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||Aromi , a coffee shop in the riverside area , is family - friendly and offers fast food . , but has been rated low by customers . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is located near the Rainbow Vegetarian Café . Their customer rating is a 5 out of 5 and they offer food in a cheap price range . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||The Wildwood is a mid range pub serving burgers and chips . \nname : The Rice Boat | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is rated 1 of 5 stars . its prices are not the cheapest but also not the most expensive . It is located near Express by Holiday Inn . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : no||The Rice Boat is a French restaurant , not recommended for families . It is a riverside restaurant that is average - rated . \nname : The Wrestlers | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers offers a range of Italian food for under £ 20 . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a cheap restaurant . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||Taste of Cambridge is a restaurant with high priced and customer rating of 1 of of 5 . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is an expensive , yet poorly - rated English breakfast pub , located close to the city centre and the river . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||Browns Cambridge has a customer rating of 1 out of 5 . It has a moderate price range . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Clowns is a pub located in the upper quadrant of the city . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a pricey French coffee shop in the riverside area near The Portland Arms . It is rated 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||A coffee shop named Cotto in riverside has a high customer rating and serves Fast food near The Portland Arms . However it has a price range of more than £ 30 a pop . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||If you are in riverside and craving Chinese food , you may want to avoid The Rice Boat . I would give the customer rating of 1 out of 5 . They only get the 1 because it is children friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : cheap | area : riverside | near : The Sorrento||The Mill is an Indian coffee shop located in riverside , near The Sorrento , that is cheap . \nname : The Eagle | food : Fast food | customer rating : average||There 's an average rated Fast food named The Eagle . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||The Waterman serving Japanese food near the Crowne Plaza Hotel is adult only \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge is near The Sorrento is the centre of the city . It is not family - friendly . It serves Italian food . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is located near to Rainbow Vegetarian Café and is in the moderate price range . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat and has a rating of one star . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat Indian Food 's Indian Food is considered to be moderately priced , but with a customer rating of 1 out of 5 one would wonder , it is located in the city centre , it is not children friendly and is near the Express by Holiday Inn . \nname : Midsummer House | food : Chinese | price : high | customer rating : average | near : All Bar One||There is a Chinese restaurant called Midsummer House that is near All Bar One . It has a high price range and is rated average by customers . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||Located near Café Adriatic in Riverside , Travellers Rest Beefeater has a price range of less than £ 20 and a low customer rating . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar , in the riverside area , is Alimentum , with Chinese food in the price Range of less than £ 20 and a low customer Rating . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop serving Indian . It has a customer rating of 5 out of 5 . It is not family friendly . It is in the city centre . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is affordable and family friendly situated on the riverside with a rating of 5 out of 5 \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located near the city centre and Express by Holiday Inn The Rice Boat is a more than £ 30 high customer rated kid friendly Chinese restaurant . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn there is a kid friendly Chinese restaurant called The Rice Boat . They have an average customer rating and are high priced . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a kid - friendly coffee shop located near Avalon in the city centre with an average cost and high ratings . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||The cheap pub food at Wildwood is rated 5 stars . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low cost coffee shop . It is by Raja Indian Cuisine , and is adult only . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located next to the Express by Holiday Inn , The Rice Boat is a family friendly , expensive sushi restaurant . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove a French pub by the riverside is family friendly and has below average prices . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop . It is located in riverside area near Raja Indian Cuisine . Start from low price and friend - family too . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada receives a 5 out of 5 rating from customers . It has high prices and is child friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Italian food . It is moderately priced , not kid friendly , rated 1 out of 5 , and is located near Burger King at the riverside . \nname : The Waterman | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||In Riverside is a cheap English food family friendly called The Waterman with a average rating . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food , child - friendly , restaurant in the riverside area near The Sorrento . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a coffee shop that sells Fast food name Aromi , located on the riverside with a 5 out of 5 customer rating . Yes , they are family friendly . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Near the All Bar One in the city centre a children friendly place called Green Man which serve French food and price ranging from more than £ 30 . \nname : Aromi | Type : restaurant | food : French | area : riverside||There is a French restaurant called Aromi in the riverside area . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : no||The Wrestlers offers cheap Indian Food . It is not family friendly and has an average rating . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||If you are looking for Fast food near All Bar One , try Midsummer House . It is cheap and has a customer rating of average . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||If you are in Riverside , near the Crowne Plaza Hotel you will find an adult French coffee shop called the Taste of Cambridge . \nname : Bibimbap House | food : Chinese | price : moderate | area : riverside | near : Clare Hall||The Bibimbap House is a Chinese restaurant with a moderate price range . It is located in riverside near Clare Hall . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Customer ratings are high for the Browns Cambridge coffee shop serving Indian food . This restaurant is children friendly and is located in riverside near the Crowne Plaza Hotel . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||A children friendly restaurant with a high price range is called The Plough and is located near The Bakers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a kids friendly coffee shop The Eagle in the city centre near Burger King . It has high customer ratings and high price range but they serve Japanese food . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||The Blue Spice is a family - friendly coffee shop near Avalon in the city centre . Typically costing less than twenty pounds The Blue Spice has low customer review ratings . \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Not for families , Clowns is near Café Sicilia , priced less than 20 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||Zizzi is a kid friendly , fast food pub with a customer rating of 3 out of 5 . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a kid - friendly pub serving fast food in the moderate price range . It is located near Café Rouge . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||In the city centre the is a middle - priced place The Phoenix where there are great food . \nname : The Golden Curry | food : Italian | customer rating : average | family friendly : yes||With an average customer rating , and a family friendly environment , is a restaurant call The Golden Curry that offers Italian food . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||This establishment offer a price range of more than £ 30 in the city centre area and is called Alimentum . It is not kid friendly and serves Japanese food . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : no||Indian restaurant Alimentum is located in the riverside area and is in the high price range . It is not children friendly . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family orientated place with mid range prices . It 's near by The Rice Boat but far from the City Centre . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman serves English food with a cheap price range . It has a customer rating of 5 out of 5 but it is not family - friendly . It has a cheap price range and is located in the city centre . \nname : The Eagle | price : high | customer rating : average | area : riverside||In riverside there is a place named The Eagle . It has an average customer rating and a high price range . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is Moderate price coffee shop serving French food Located in city center near Burger King with a customer rating of 5 out of 5 but not children - friendly \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||Close to All Bar One is The Cricketers Japanese food restaurant . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||Aromi is a 1 star rated coffee shop near the River not suitable for families . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat at Express by Holiday Inn offers good fresh British meals at very affordable prices . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two at the riverside , near The Rice Boat is family friendly , has a cheap price range and an average customer rating . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Browns Cambridge has a 1 out of 5 customer rating and moderately priced English food \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Riverside houses Bibimbap House near Clare Hall and a Japanese restaurant with prices lower than £ 20 . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||This is an establishment that 's kid friendly , named The Twenty Two , located near The Rice Boat , in the city centre area . They offer menu items in the moderate price range but have received only a 1 out of 5 customer rating . \nname : Blue Spice | food : Chinese | price : moderate | area : city centre||Blue Spice provides Chinese food in the moderate price range . It is located in the city centre . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves Japanese food , it is kid friendly and is located near to the Crowne Plaza Hotel . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the city centre near Express by Holiday Inn . Rated 5 out of 5 by customers , it is family friendly and has a low price range . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice offers families affordable food in Riverside . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers located in the city centre near Raja Indian Cuisine is a coffee shop serving Indian food and is kid friendly with moderate pricing . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||A Japanese restaurant near the city centre and The Rice Boat is the highly rated Loch Fyne . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : riverside||Try Blue Spice in the riverside area for great Chinese food less that £ 20 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a Fast - food coffee shop located in the center of the city near Burger King . While the prices are cheap , the coffee shop is not family - friendly , although it does hold an average customer rating . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||For those looking to get away from the kids , The Waterman offers French style food near the Crowne Plaza Hotel . \nname : The Olive Grove | Type : pub | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is an inexpensive Chinese pub . It is family friendly and located in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : no||Loch Fyne , an Indian restaurant , is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a child friendly restaurant that serves French food . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : average||Browns Cambridge Very attentive . Delicious steak . Always a winner . \nname : The Vaults | food : English | price : cheap | family friendly : yes||The Vaults is family friendly English food that is cheap in price . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge coffee shop serves Italian food in a kids friendly setting . located near the Crowne Plaza Hotel in the riverside area . \nname : Browns Cambridge | food : Italian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a five - star pasta restaurant . \nname : Strada | Type : pub | food : Fast food | customer rating : 1 out of 5 | near : Yippee Noodle Bar||The Strada , near Yippee Noodle Bar , is a fast food restaurant . It has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a good Fast food restaurant . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||A high end poorly reviewed French restaurant called The Rice Boat is found in The City Centre across from Express by Holiday Inn . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is restaurant that serves Italian food costing more than £ 30 . It is located in the city centre , has a high customer rating , and is not child friendly . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum provides a cheap Indian alternative of moderate quality . Located near the Yippee Noodle Bar , Alimentum is right in the core of the city . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : yes||There is a pub Giraffe which also offers Japanese food . It is located in the city centre and is family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : English | price : £ 20 - 25||The Dumpling Tree is an English restaurant with average pricing \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||The Phoenix is an Italian restaurant in the low price bracket . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : yes||On the riverside is the coffee shop Aromi . It serves fast food for all the family . Aromi has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre||a coffee shop named The Golden Palace , serves French food . they are located in city centre with moderate price 's and a 1 out of 5 rating . \nname : The Eagle | food : Italian | customer rating : high||The Eagle serves Italian food and has been highly rated by its customers . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Check out The Wrestlers restaurant that is family friendly and has a great 5 star review . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre||There is an expensive coffee shop in the city centre that serves Italian food with an average rating called The Golden Palace . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a inexpensive restaurant that serves British food . It is not by the city centre . It is located by The Yippee Noodle Bar . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum in the city centre a Yippee Noodle Bar sells moderately priced fast food and has a rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue offers French food in a pub atmosphere . It has a great price range . All meals are priced between £ 20 - 25 . You can find it by Café Brazil . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||A kid - friendly Italian restaurant located near the riverside is called The Twenty Two . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop with a low customer rating but offers products for less than £ 20 . It is located near Café Brazil in the riverside area . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub near Ranch . It is children friendly and has a customer rating of 1 out of 5 . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a low priced Italian restaurant located in the City centre . \nname : The Rice Boat | price : cheap | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a cheap price range restaurant with a customer Rating of 5 out of 5 . It is near the Rainbow Vegetarian Café . \nname : Loch Fyne | food : French | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is a restaurant located in the city centre near The Rice Boat . It specialises in French cuisine and has an average customer rating . \nname : Strada | Type : pub | food : English | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is the name of an English Pub near Yippee Noodle Bar . It has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Indian food within the price range of £ 20- £ 25 . It in the city centre area near The Portland Arms . It has a high customer rating . \nname : The Dumpling Tree | Type : restaurant | food : English | price : moderate||A moderately priced restaurant called The Dumpling Tree serves English food . \nname : The Phoenix | food : Italian | customer rating : high | area : riverside||On the riverside there is a high - rated Italian restaurant called The Phoenix . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : no | near : All Bar One||Green Man is a swanky new place selling Italian food in a no kids allowed , high priced restaurant . Close to All Bar One on the riverside . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : no | near : Café Sicilia||The Dumpling Tree is a coffee shop located near Café Sicilia in the riverside area . It has a moderate price range and it is not kid friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a child friendly restaurant located on the riverside . Prices are typically more than £ 30 . Customers have rated Blue Spice 5 out of 5 . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is an Italian restaurant in the riverside area . It is child friendly . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||With a one - star rating , Strada serves burgers and fries at low prices . It is located near Rainbow Vegetarian Café and welcomes families of all sizes . \nname : The Vaults | food : Indian | price : £ 20 - 25 | family friendly : yes||An affordable and kid - friendly Indian restaurant is The Vaults . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , near the Yippee Noodle Bar in the riverside area , serves French food in the average price range with a 3 out of 5 customer rating . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : city centre||Blue Spice is a fast food restaurant in the city centre . It has a price range less than L20 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||located in riverside with a a 5 out of 5 customer rating is a coffee shop called Zizzi . They have a a children Friendly environment and their price range is more than £ 30 . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||Cocum is a low rated coffee shop with a price range of more than £ 30 . It is not child friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||A high priced fast food coffee shop in the city centre near The Portland Arms which is expensive and only has a 1 out of 5 rating is called Cotto . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : city centre | near : Clare Hall||The Clowns is an average Italian coffee shop . Located in the city center close to Clare Hall . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : no||Loch Fyne is not a family - friendly restaurant . It serves English food with a price range of less than £ 20 . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Taste of Cambridge is a kid - friendly pub located near The Sorrento in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a child - friendly Italian coffee shop . It is situated by the riverside , has high customer ratings and price ranges from £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is an adult coffee shop in the riverside area . This fast food place has a moderate price range and a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a French coffee shop located in the riverside area and has a high customer rating with a price range of £ 20 . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||Near The Sorrento on the riverside is a high priced Italian coffee shop , named The Mill . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near All Bar One . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||If you 're looking for an adult only coffee shop , go to The Punter near Café Sicilia . It does fairly good Indian food at decent prices too . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 3 out of 5||Wildwood is a three star ranked pub in the city . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||A medium - priced family friendly restaurant , Strada is rated three stars . \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood serves low price fast food , has a one star rating , and is located near Ranch . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family friendly 5 star pub offering wine and cheese . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop in the riverside area that sells Indian food at a moderate price , it isn 't kids friendly and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||With a customer rating of 5 out of 5 , the coffee shop Fitzbillies serves low - cost French food in the city centre area . This is not a family - friendly establishment . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat features good but expensive Italian food that is close to the Express by Holiday Inn in the riverside area and is for adults only \nname : Cocum | Type : pub | price : high | customer rating : average | family friendly : yes||There is a pub named the Cocum with a high price range . It 's children - friendly and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kids - friendly coffee shop and Indian restaurant on the side of the river which has a customer rating of 1 out of 5 . It is moderately - priced . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The coffee shop named The Golden Palace , has average priced sea - food , they have a star rating of one and is in the city center . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a restaurant located in city centre with medium prices . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum , a fast food restaurant near the Yippee Noodle Bar located in the city centre has a poor customer rating . A meal costs less than 20 pounds . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||A riverside pub called The Olive Grove is kid friendly and moderately priced . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies is an affordable fast food place to eat near The Six Bells . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop in the city centre that offers fast food for cheap prices located near The Portland Arms , but has a customer low rating . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is located near The Portland Arms , A child friendly coffee shop selling Italian food with a rating of 1 out 5 . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a kid friendly , English restaurant in the city centre area . It has a 3 out of 5 star rating and is moderately priced . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||Near The Bakers there is a restaurant called The Plough which is kid friendly and has a price range of 20 - 25 pounds . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is lowly rated in the city centre . It is family friendly and serves Chinese food for under £ 20 . \nname : The Punter | food : Fast food | price : £ 20 - 25||The Punter offers Fast food with a £ 20 - 25 price range . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a coffee shop located down by the riverside . This is a kid friendly shop with a price range of £ 20- £ 25 and a customer rating of 3 out of 5 . \nname : Cotto | price : moderate | area : riverside | near : All Bar One||A place with moderate prices is Cotto and is near All Bar One . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop located by the riverside serving Italian food with a customer rating of 5 out of 5. they are family friendly \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a pub serving French food . It is family friendly and located by the riverside \nname : The Waterman | price : less than £ 20 | family friendly : no||Only for adults , The Waterman is great place with low prices . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||In the riverside area near the Yippee Noodle Bar is the highly customer rated Alimentum . The price range for Italian food is more than £ 30 . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||If you find yourself along the riverside , wanting some cheap Fast food , come to the Green Man . Very family friendly , near All Bar One . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||For poorly - rated Chinese food that your children will enjoy near Ranch , Cotto is ideal . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Midsummer House offers English cuisine . They have an average customer rating and are located near Café Rouge . \nname : Green Man | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Near All Bar One on the riverside is the Green Man . They serve French food for less than £ 20 . It 's family friendly . \nname : Wildwood | Type : restaurant | family friendly : yes||A child friendly restaurant is Wildwood . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice is a restaurant located in the riverside area , with a price range of more than £ 30 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no||With a 1 - star rating , Aromi is a coffee shop that provides delicious fast food . No families allowed . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Located next door to the Yippee Noodle Bar along the Thames , Alimentum is a new three - starred restaurant that will appeal to lose fond of home grown food . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||Serving fast food , The Cambridge Blue restaurant has an average customer rating . \nname : Wildwood | Type : pub | food : French | price : moderate | customer rating : 1 out of 5||The Wildwood is a pub that offers moderate price range of food and beverages . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a fast food restaurant with prices less than £ 20 and a low customer rating . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||One of the best family - friendly restaurants is The Rice Boat . Although it gets average customer reviews , prices start at less than £ 20 . You can find it in the riverside district near the Express by Holiday Inn . \nname : The Twenty Two | food : Japanese | family friendly : yes||If you want Japanese food for the whole family , try The Twenty Two . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a kid friendly restaurant that offers French food . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is not child friendly fast food restaurant . It is located in the city centre near All Bar One and is in the moderate price range . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat offers Italian food and a family - friendly atmosphere , located in the city centre , but it has a low customer rating . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry , a family friendly low priced breakfast joint located The Bakers . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a family - friendly , 1 - star French restaurant with pricey food and a 1 - star rating . It 's located in City centre . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced children friendly coffee shop serving Japanese food . It is located near Burger King by the riverside . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi has an average rating and is located in riverside . It is family friendly and is a pub . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a five star coffee shop , serving Italian food located near to The Portland Arms . Five star rating , and family friendly . \nname : The Golden Curry | food : French | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||French food is served by The Golden Curry in the city centre near Café Rouge . It is family - friendly and has a average customer rating . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Near All Bar One in the riverside area is the Japanese establishment , Green Man , with prices more than L30 . Children are not allowed . \nname : The Eagle | food : French | customer rating : 3 out of 5||The Eagle serves French food and has a 3 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||The Waterman is an Italian pub with a low customer rating in Riverside . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||For the best coffee experience , go to Clowns the coffee shop next to Clare Hall . It is rated an impressive five stars . \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is a restaurant in the moderate price range . It is located in the city centre near Café Adriatic . \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a Café Shop where fast food for the family at a good price . It is located one block from Café Sicilia . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Children friendly Blue Spice is a riverside coffee shop next to Avalon with a high price range and an average customer rating . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located in the Riverside area near the Express by Holiday Inn , is a high rated high priced establishment for around £ 30 . It features highly rated Chinese food . However , they are not children friendly . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||Find moderately priced Fast food at The Cambridge Blue , a pub near Café Brazil . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers not family friendly cheap serving Chinese food . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : city centre | near : Clare Hall||The city centre has an average customer rate at Clowns located near Clare Hall providing French food and a coffee shop . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||In riverside , The Phoenix offers Chinese food . They are inexpensive and have excellent reviews . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||Japanese food served at The Rice Boat has a customer rating of 5 out of 5 , is cheap but not family - friendly , and is located near the Express by Holiday Inn in the city centre . \nname : The Eagle | food : English | customer rating : average||The Eagle is an English food restaurant with an average customer rating . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : city centre||In the city centre a pub called The Mill which serves Italian food price ranging at a moderate level . \nname : Green Man | food : Indian | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man provides Indian food in the less than £ 20 price range . It is located in the city centre . It is near All Bar One . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||Japanese food can be found in the city centre area at The Wrestlers coffee shop . This average - priced option is not a good location to bring children . This coffee shop can be found next to Raja Indian Cuisine . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a cheap pub serving family friendly fast food in the riverside area . \nname : The Dumpling Tree | Type : pub | food : Chinese | family friendly : yes | near : The Portland Arms||The Dumpling Tree , located near The Portland Arms , is a kids friendly pub with Chinese food . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Near the river , there is a wonderful , expensive family fast food restaurant called The Waterman . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 3 out of 5 | area : riverside||The pub The Waterman near the riverside serves Japanese food with a customer rating of 3 out of 5 \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||There is a restaurant at the riverside called The Golden Curry , near the Café Rouge . It 's children friendly with an average customer rating and serves English food . \nname : Bibimbap House | food : Italian | area : city centre | near : The Rice Boat||The Italian restaurant , Bibimbap House , is neat The Rice Boat in the center of the city . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is pub type restaurant . The restaurant is high . It is located riverside . Customer rating is average . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : city centre||In the city center , Blue Spice serves low priced Italian food . \nname : The Vaults | Type : restaurant | food : Japanese||The restaurant The Vaults serves Japanese food . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||A moderate priced , kid friendly restaurant is Travellers Rest Beefeater . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar and the riverside there is a cheap Italian restaurant rated 5 out of 5 , called Alimentum . \nname : Clowns | Type : restaurant | near : The Portland Arms||next to The Portland Arms resides a restaurant by the name of Clowns . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar , in the city centre is a French restaurant called Alimentum . It has a moderate customer rating and its prices are average for the area . \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||If you 're looking for a highly rated restaurant in the riverside area , then try The Golden Palace . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||The venue is a child - friendly restaurant name Cocum with average reviews . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||Cheap Chinese food is found at The Phoenix , near the city center . They have a one star rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||No families are allowed at the Aromi , one star coffee shop . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre there is a restaurant called The Rice Boat which serves low cost Italian food and caters for families . The Express by Holiday Inn is nearby . \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill coffee shop serves good French food at a reasonable price . It 's by The Sorrento in the riverside area . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is a cheap Indian food place called The Rice Boat . The customer rating is low , the whole family 's welcome and is set on the riverside . \nname : The Waterman | Type : pub | food : Indian | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub providing Indian food It is located in the riverside . Its customer rating is 3 out of 5 . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : city centre||The Mill pub serves Chinese food , at a moderate price , in the city centre . \nname : The Phoenix | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix is a cheap Italian place with outstanding ratings in city centre . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : yes | near : Café Rouge||The Plough offers French food for moderate prices . It 's a pub near Café Rouge , that is kids friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a fast food restaurant located near Burger King in city centre . It is a high rated , kid friendly coffee shop with a price range £ 20 - 25 . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||The Cambridge Blue restaurant . Sushi . 5 star rating \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a child - friendly pub located by the riverside . It provides English food at a high price range , and is rated averagely by customers . \nname : Wildwood | Type : pub | food : Chinese | price : £ 20 - 25 | customer rating : high||Wildwood is a pub providing Chinese food in the £ 20 - 25 price range . Its customer rating is high . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman offers inexpensive American fare in a family friendly atmosphere and is located near the river . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace has a high customer service rating . It serves Fast food in the city centre . It 's a coffee shop that has a price range of £ 20 - 25 . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : yes||Loch Fyne is a children friendly , high priced , French restaurant . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||Located by the riverside is a kid friendly restaurant named The Olive Grove . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop near Burger King , at Riverside , with a price range of more than £ 30 . Serving French food , it 's not children - friendly and has low customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||French food served in a coffee shop setting at The Golden Palace . Located in the riverside area . Low customer Rating for meals £ 30 and more . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a high rated coffee shop located on the riverside near Burger King offering fast food . It has a mid - level price range and is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is in the city center , it is a fast food high priced ranged coffee shop , that is children friendly and has a rating of 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults is a pricey , three star coffee shop located near Café Brazil in City centre . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food restaurant and is very child friendly , \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is rated three stars and provides sushi . It is located near the River . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a low priced coffee shop located next to a Ranch . They have received five out of five stars . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , rated 1 out of 5 , is a moderately priced French restaurant is located in the city centre near Yippee Noodle Bar . \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||1 star , English food provided at the Midsummer House close to the Café Rouge . \nname : The Wrestlers | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers serves English food and has a customer rating of 1 out of 5 . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : yes||The Wrestlers is a high - priced , average rated Chinese restaurant with children friendly service . \nname : The Rice Boat | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located in Riverside is a French restaurant named The Rice Boat which got a rating of 1 out of 5 and is also kid friendly \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a high price range restaurant near Rainbow Vegetarian Café . It is not a children friendly restaurant and its customer rating is high . They serve Japanese food . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a low priced , five star restaurant located near the river next to Yippee Noodle Bar . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you want fine French cuisine in a family friendly atmosphere with a 5 out of 5 rating , come to the Browns Cambridge coffee shop near Crowne Plaza Hotel . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is a child friendly Italian restaurant with a high price range and average customer rating . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low price restaurant located near Rainbow Vegetarian Café that serving English food with a low customer rating but not family - friendly \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||There is a cheap and average restaurant called The Rice Boat near the Rainbow Vegetarian Café . \nname : Browns Cambridge | food : Italian | price : moderate | customer rating : 3 out of 5||Browns Cambridge is an Italian restaurant with medium prices and a three star rating . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto , coffee shop located in the City Centre near The Portland Arms offers cheap Indian food and has an average customer rating . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House provides Chinese food in the less than £ 20 price range . It is located in the city centre . It is near Clare Hall . \nname : The Mill | Type : pub | food : French | price : cheap | area : riverside||Cheap French pub offered riverside at The Mill . \nname : The Plough | Type : pub | food : Japanese | price : cheap | family friendly : yes | near : Café Rouge||The pub called The Plough near ' Café Rouge ' serves Japanese food , is cheap and very family friendly . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||Low rated pub located near Café Adriatic , The Vaults is an expensive low rated pub . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||In the city centre near Yippee Noodle Bar is a restaurant named Alimentum . This Chinese restaurant has a high price range with an average customer rating . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 star restaurant that serves wines and cheeses . It is high - priced but family friendly . \nname : The Vaults | food : English | price : high | family friendly : yes||The Vaults is a restaurant in the high price range and serves English food in a child friendly atmosphere . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no||The Aromi is a fast food coffee shop located in riverside . It is not family - friendly and has average customer rating . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : high||If you are looking for a restaurant with high ratings and a price range of £ 20 - 25 , try the Taste of Cambridge . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is an adult only restaurant providing coffee in the low price range . It is located in the City centre . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Located in the City Centre is The Waterman which does French food , and is child friendly , customer rating is 3 out of 5 and they have an average price range . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree serves Fast food near The Portland Arms . It is children friendly pub . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||Located outside the city centre is a pub called The Mill the has moderately priced menu items . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is an Indian restaurant , its price range is moderate \nname : The Vaults | food : Chinese | price : less than £ 20 | family friendly : no||Serving Chinese food , The Vaults has an average price range of less than £ 20 and is not family friendly . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub with a five star rating located outside the city centre . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a Japanese restaurant in riverside near All Bar One that is child friendly but is prices more than £ 30 . \nname : Alimentum | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant that provides high - priced foods . It is located near Yippee Noodle Bar . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an average Italian restaurant near Café Rouge in riverside . It is not family - friendly . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||Cheap Italian food at Blue Spice on the riverside . \nname : Fitzbillies | food : Indian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies serves Indian food in the price range of £ 20 - 25 conveniently located near The Six Bells . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Located near Yippee Noodle Bar on the riverfront , north of the City centre , the 5 - star ' Alimentum ' serves moderately - priced Japanese cuisine . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||By riverside is The Mill . it is a French pub with a price range of £ 20 - 25 . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : high||The Cambridge Blue is a restaurant selling English cuisine and has a high customer rating . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||A perfect pub is located near Café Sicilia . Located on riverside and called The Twenty Two . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : average | near : All Bar One||For cheap Fast food with an average customer rating try Midsummer House near All Bar One . \nname : Blue Spice | price : high | area : riverside||Blue Spice is costly . It is located in the riverside . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : no||With an average customer rating , The Rice Boat sells Chinese food and is located in the riverside area . It is not suitable for families . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serves moderately priced French food in the city centre that has a low customer rating and is not child friendly . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||Located near The Sorrento , The Mill coffee shop serves food and has a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an expensive , good quality coffee shop on the river road to enjoy with the family \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults features child friendly fast food at a more than £ 30 price range \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia is a non child friendly coffee shop with a customer rating of 3 out of 5 . They are called The Punter . They have a high price range and serve Japanese food . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : The Rice Boat||The twenty two , located in the city centre near , The Rice Boat . With high customer ratings , The Twenty Two has a £ 20 - £ 25 price range but is not child friendly \nname : The Rice Boat | food : Fast food | area : riverside||Near the riverside is a fast food place named The Rice Boat \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||On the river there is Cheese and Winery called The Phoenix . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||The Wildwood pub is moderately expensive and it has five stars . \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||Near Café Rouge in the city centre , The Golden Curry offers Japanese food . It is family - friendly and has a low customer rating . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid friendly , Chinese restaurant in Riverside near the Express by Holiday Inn . It has a high customer rating , and is mid priced . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Located on the riverside , Fitzbillies is a family friendly coffee shop . With an average customer rating it offers cheap fast food . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||If you 're looking for a good child - friendly restaurant , try the 3 star Cocum . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||An expensive fast food restaurant in Riverside called ' Blue Spice ' . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||For fine wine and cheeses a visit to The Phoenix is recommended , with a five star rating and not to expensive . \nname : The Eagle | food : English | customer rating : low||The Eagle serves English food with a customer rating of low . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is an average rated coffee shop Browns Cambridge located in the city centre near Crowne Plaza Hotel that provides Italian Food . It is not family - friendly . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is Fitzbillies , a kid friendly establishment with a customer rating of 3 out of 5 and a price range of 20 - 25 euros . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : no||The Vaults provides French food . It is not child - friendly , and costs more than £ 30 . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Located near the riverside and the Browns Cambridge . We are a family friendly French restaurant called The Sorrento . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix Indian food place is in the city centre . It has a low rating and is priced at less than 20 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There 's a cheap , family friendly coffee shop and Indian with a 5 out of 5 customer rating along the riverside called Fitzbillies . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum restaurant is in the riverside area and near Yippee Noodle Bar . It has Indian food with a high price range and low customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a child friendly restaurant which serves great English pub grub . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||There is a highly rated medium - priced fast food store named Browns Cambridge . \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Japanese food can be found at Bibimbap House , which is near Clare Hall and in the riverside area . Its prices are in the range of £ 20 to £ 25 . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||Strada is not kid friendly customer rating is 3 out of 5 and has a price range between 20 - 25 euros . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : city centre||Fast food in the city centre can be found the average rated pub , The Waterman . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry in riverside , near Café Rouge serves Indian food . It is family friendly and has a rating of 5 out of 5 . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves English food and is in the riverside area . It is near The Rice Boat and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop , which serves Indian food at less than £ 20 . Located by the riverside , it is ideal for family and friends , despite their low rating . \nname : The Golden Curry | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge and riverside , The Golden Curry is a children friendly Chinese restaurant . This establishment is known to be highly rated . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family - friendly riverside pub with customer rating 5 out of 5 . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman Indian food restaurant offers a cheap price range food . It is customer rating goes on the average . Locate at riverside area . Children are now allowed . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a high rated pub on the riverside with a price range of £ 20 - 25 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : riverside||A pub located off the river called The Waterman pub is a few blocks north of City centre . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||The Green Man is a cheap eatery located by the riverside but is not family friendly . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a highly rated English venue , with an average price tag catering to adults \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Zizzi has low reviews and is a coffee shop located in city centre with a moderate price range . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat 's price range is average but it boasts a high customer rating . This fast food restaurant is not child friendly . It is located in riverside , near the Express by Holiday Inn . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 1 out of 5||There is Indian restaurant with a customer rating out 1 out of 5 called The Cambridge Blue . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||An Italian pub named Wildwood with high customer rating has a great menu with price range of 20 to 25 pounds . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||There is a kids friendly venue near The Six Bells named The Golden Curry . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a moderately priced coffee shop near the river . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop , located near Ranch . It offers Fast food and a high price range with average customer reviews . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||Located in riverside The Waterman pub fast food . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : no | near : Café Rouge||A new pub is emerging near the Café Rouge named The Plough . Not only is it a pub , but it is also a Chinese restaurant who welcomes families with a price range less than less than £ 20 . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a pub near Yippee Noodle Bar offering French food that is well regarded by its customers . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant in Cambridge near the Crowne Plaza Hotel . The Waterman is not a family - style restaurant . The Waterman serves wine . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||Within City centre is The Phoenix , an expensive , 1 - star rated wine Café . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two is a child friendly venue offering Indian food . \nname : Strada | Type : pub | food : Chinese | customer rating : average | near : Yippee Noodle Bar||A pub called Strada that has an average rating , sells Chinese food , and is located near Yippee Noodle Bar . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe the restaurant implores you to visit its cheap food , right next to The Six Bells . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood pub that serves pub food that has a 3 star rating and average in price range \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is an Italian restaurant and coffee shop near The Portland Arms . It has a high customer rating and is child friendly \nname : Loch Fyne | food : Indian | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is providing Indian food in the price range . It is located in the city centre . It is near The Rice Boat . Its customer rating is average . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a child friendly restaurant , located near Express by Holiday Inn . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : no||Travellers Rest Beefeater is a restaurant that isn 't children - friendly . The price range is more than £ 30 . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family restaurant located in City Centre near Café Rouge . 3 out of 5 customer rating . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||The Punter in Riverside near The Portland Arms is reasonably priced and family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop which sells fast food of great quality at high prices . They are family friendly and can be found just east of Burger King on the River . \nname : Loch Fyne | food : Italian | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Boasting a customer rating of 5 out of 5 , Loch Fyne serves Italian food and is located near the city centre near The Rice Boat . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||In Riverside , The Phoenix is a Japanese restaurant with a moderate price range and a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||3 out of 5 is high for the coffee shop . The area by the river has the Japanese food place The Golden Palace . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a restaurant the serves French food for £ 20 - 25 . It is near the Rainbow Vegetarian Café , is kid friendly and customers gave it a 3 out of 5 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||For a family - friendly restaurant serving inexpensive French food , try The Waterman in the city centre . Prices are under £ 20 , and the restaurant has an average customer rating . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat rated five out of five by customers and by the riverside . It is child friendly and is near Express by Holiday Inn . It has above average prices . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The highly customer rated , child friendly coffee shop located in Riverside near Burger King called The Eagle has great Italian food and costs more than £ 30 . \nname : The Wrestlers | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers provides Indian food in the less than £ 20 price range . Its customer rating is low . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no||Aromi is a city centre coffee shop offering Japanese meals . It has a low rating and does not welcome families . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop , with an average customer review . They offer Indian food . It is located near the Crowne Plaza Hotel in the riverside area . \nname : The Phoenix | food : English | customer rating : low | area : riverside||A poorly rated place called The Phoenix serves English food on the riverside . \nname : The Rice Boat | food : English | customer rating : average | area : city centre | family friendly : no||A restaurant called The Rice Boat is not family - friendly . It is located in the city centre area . It has English food and an average customer rating . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a high priced , child friendly Chinese restaurant with a 1 out of 5 rating located in the riverside area near the Express by Holiday Inn . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||There 's a high rated child friendly establishment on the riverside called Blue Spice that is expensive . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Yes , The Waterman is a restaurant French in the riverside with rank 3 out of 5 that provide £ 20 - 25 range \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Cheap sushi can be eaten at Fitzbillies , which is near The Six Bells \nname : The Punter | price : moderate | area : city centre | family friendly : no | near : The Portland Arms||In the city centre near The Portland Arms is a moderately priced restaurant called The Punter . It is not kid friendly . \nname : Strada | Type : pub | food : Indian | customer rating : 5 out of 5 | near : Yippee Noodle Bar||There is a 5 out of 5 customer rated Indian pub near Yippee Noodle Bar called Strada . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : no | near : Café Rouge||Near to Café Rouge is the above - average priced pub , The Plough , serving Japanese food but not child friendly . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||the kids friendly Loch Fyne restaurant serves French food prices between £ 20 and £ 25 . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||There is a 5 out of 5 fast food place in riverside . It is named The Phoenix . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||There is a children friendly fast food place in the riverside area named The Waterman with a price range of more than 30 pounds that received a high customer rating . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop located in the city centre near The Portland Arms that provides Indian food which has a low customer rating and the price range is less than £ 20 . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||In Riverside there is a family friendly Italian eatery called The Twenty Two . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||In the riverside area , customers give an average rating to The Vaults , near Café Brazil . It is a coffee shop with prices less than £ 20 . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||The Phoenix is a place at the riverside that offers Japanese food for £ 20 - 25 with a rating of 3 out of 5 \nname : The Mill | Type : coffee shop | food : French | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill , in the riverside area , is a coffee shop that serves French food . The price range is about 20 to 25 pounds and it is located near The Sorrento . \nname : The Waterman | food : French | family friendly : no | near : Crowne Plaza Hotel||The Waterman is located near Crowne Plaza Hotel . It provides French food and is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a family - friendly Japanese coffee shop located in city centre . family - friendly with a 3 out of 5 customer rating . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a awesome restaurant that 's by The Six Bells and is less than 20 dollars . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||There is a cheap fast food coffee shop in the city centre , Fitzbillies . It is not family - friendly and its rating is average . \nname : Loch Fyne | food : Japanese | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a Japanese restaurant near The Rice Boat , it is at the riverside and it received a low rating from customers . \nname : The Rice Boat | food : English | area : city centre||Located in the riverside area , The Rice Boat serves English food . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is an expensive restaurant , rated 5 stars , located in city centre near Yippee Noodle Bar . Eat in only . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near the Holiday Inn , Fitzbillies has a high customer rating , is near the Express by Holiday Inn and is children friendly . \nname : Browns Cambridge | price : high | customer rating : average||Browns Cambridge is a restaurant with a high price range and an average customer rating . \nname : The Mill | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside||At a price range of £ 20 - 25 , there is a Japanese riverside pub called The Mill . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : 5 out of 5||Japanese restaurant The Cambridge Blue has a customer rating of 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge serves Japanese food near Crowne Plaza Hotel in riverside . It is a coffee shop , not family - friendly , and has a 5 out of 5 rating . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : The Rice Boat||This restaurant , The Twenty Two , though not family - friendly , has an average rating and is cheap . It is near The Rice Boat in riverside . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice provides Japanese food by the river for under £ 20 . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no||In the riverside area , there is a French coffee shop called Aromi . It has an average customer rating . It is not family - friendly . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a restaurant and pub which offers low priced meals . It is situated next to the Café Brazil . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||Giraffe is a budget friendly coffee shop near The Bakers with a 5 star rating that is not suitable for families . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop offering moderately priced Indian food with a customer rating of 3 out of 5 and a kid friendly atmosphere near Café Sicilia . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap non family friendly Chinese restaurant , located in riverside next to the Express by Holiday Inn rated 5 out of 5 . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman offers Chines food in the under £ 20 price range in the city centre with a low customer rating but is not family friendly . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The Rice Boat offers Fast food for kids Friendly located in riverside . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||The Mill is a pub serving cheap Fast food in the riverside area . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Located near Yippee Noodle Bar by the riverside is a high priced , highly rated French restaurant named Alimentum . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry offers fast food for a cheap price and is found near The Bakers . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Fast food pub , Giraffe , is by the riverside , yes it 's kid friendly . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For less than £ 20 you can eat at the coffee shop The Wrestlers . It is located in riverside near Raja Indian Cuisine , is family friendly , and offers Indian food . \nname : The Vaults | food : Italian | price : high | family friendly : yes||The Vaults is a high priced Italian restaurant that is family friendly . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Located in riverside The Twenty Two serves child friendly English food \nname : The Mill | Type : coffee shop | food : French | price : cheap | area : riverside | near : The Sorrento||The Mill coffee shop and French cousin and located in the riverside area near The Sorrento and offer a cheap price range \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : average||The Cambridge Blue is an English restaurant with a decent review . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Midsummer House is a 3 - star place providing cheeses , wines and desserts . It is located beside Café Rouge . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Child friendly a pub called The Cricketers is located near Ranch . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||Browns Cambridge was rated high and charges more than 30 pounds . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Japanese food less than £ 20 price range . \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a highly rated low -priced kids friendly restaurant located near Rainbow Vegetarian Café . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||A Family friendly restaurant in the riverside area is the Green Man . It has a price rang of less than £ 20 . \nname : Alimentum | food : English | price : moderate | area : city centre | family friendly : yes||Alimentum restaurant sells English food and price range is moderate , its kids friendly and in the city centre \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a five star fast food restaurant called The Rice Boat nearby the city centre . It is family friendly . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , located in city centre near Express by Holiday Inn , serves moderately priced Indian food rated 1 out of 5 stars . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a kid friendly Italian restaurant located in riverside . It has a price range of £ 20 - 25 , as well as a high customer rating . \nname : The Plough | Type : restaurant | price : moderate | family friendly : yes | near : The Bakers||The Plough is a kids friendly restaurant in the moderate price range located near The Bakers . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : city centre||There is a fast food restaurant , Blue Spice , located in the city centre . Its price range is high . \nname : The Plough | Type : pub | food : Chinese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a child friendly , high - priced pub near Café Rouge that serves Chinese food . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : no||Alimentum is a restaurant providing Italian food in the medium price range . It is located in the city centre , and is not child friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : average | family friendly : no | near : The Portland Arms||There is an average rated , not family - friendly coffee shop located near The Portland Arms serving French food called The Cricketers . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Waterman is a reasonably priced restaurant in the heart of the city centre . It has a friendly , family atmosphere , serves traditional English food and has an outstanding customer rating . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers Indian food at a high price range . Its customer range are on the average . Locate are riverside area , children are welcome , near to Express by Holiday Inn . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Close to Rainbow Vegetarian Café is The Rice Boat , that is highly priced and have a low customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : no||Aromi serves French food in the city centre . This adult coffee shop has an average customer rating \nname : The Eagle | food : Italian | customer rating : average||The Eagle is a three - star restaurant . \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is a family friendly venue called Strada that sells English food at a low price range and has a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : English | price : cheap | area : riverside||By the riverside there is a cheap pub called The Mill . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no||Fast food restaurant and coffee shop , Fitzbillies , located in the city centre , has an average rating and cheap prices but is not family - friendly , \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||With a price range of £ 20 - 25 , The Wrestlers is a kid friendly French restaurant with a customer rating of 3 out of 5 . \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||You can take kids to The Vaults . It 's Japanese and costs between twenty and twenty five pounds . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a fast food outlet with a customer rating of 5 out of 5 . The food is priced above 30 pounds . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : 5 out of 5||The Cambridge Blue restaurant offers a five star dining experience . \nname : Clowns | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is located near Clare Hall in the riverside area ; It is a coffee shop that serves French food with a five star rating . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum serves Indian food with a price range of less than £ 20 . It is on the riverside and is family friendly . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||the Alimentum at riverside serves French food costing £ 20 - £ 25 and is kids friendly \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop serves Indian food in a moderate price range . It is in the riverside area and has a customer rating of 1 out of 5 . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a Japanese restaurant with a moderate price range in the riverside area . It is located near All Bar One and is kids friendly . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Near The Rice Boat , there is a low - rated riverside French restaurant by the name of Loch Fyne . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||For food costing around £ 30 , head to The Cambridge Blue . Located near to Café Brazil this pub serves Japanese food . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||Affordable Japanese restaurant , Loch Fyne , is moderately priced and geared towards adults \nname : Loch Fyne | food : Fast food | customer rating : average | area : city centre | near : The Rice Boat||near The Rice Boat in the city centre is Loch Fyne fast food with average customer rating \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||There is a child - friendly restaurant named Alimentum in the riverside area of Cambridge , offering Japanese food in a price range of more than £ 30 . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is located in the city centre area and serves Italian cuisine . It has a high customer rating , a price range of £ 20 - 25 and is not child - friendly . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly , Italian restaurant . It has been given a 5 out of 5 rating by its customers . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice is a restaurant with a price range of less than £ 20 and is located by the riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is an excellent shop serving Indian fare at a low price with high ratings . It is located in the city centre near Burger King and is not family friendly . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Located in the city centre is a child - friendly , above average priced venue called Blue Spice . It has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a Japanese coffee shop near The Portland Arms in the city centre . Its prices range from 20 to 25 euros and it has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a highly priced coffee shop that serves Japanese food . It is not a child friendly establishment and it is located at the city centre . Fitzbillies has an average customer rating of 3 out of 5 . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : no||Zizzi is an English food serving pub which is not family - friendly and has an average customer rating . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Conveniently next to Café Rouge , visit the 3 - star Midsummer House for cheese , wine , and fruit . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies has high priced Italian food , it is located near The Six Bells . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||All Bar One is another affordable bar that sits right on the riverside near Cotto . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum sells Indian food . It has a cheap price range and its customer rating is average . It is in the riverside area near Yippee Noodle Bar . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry sales Italian food . It is child friendly yes . Located in the riverside area near Café Rouge . This restaurant has an average customer rating . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Blue Spice is located in the riverside and they are serving Japanese pasta . \nname : Cotto | food : Japanese | near : Café Rouge||Right above Café Rouge is the location of Cotto that serves sushi \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Near Café Adriatic in the riverside , is Travellers Rest Beefeater . with fair prices and low customer ratings \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly sushi restaurant . It is higher priced and located near All Bar One . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||There is a Japanese pub called Strada , near Yippee Noodle Bar , however , it has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a Japanese coffee shop located near Burger King in the city center . It is not family - friendly and prices are less than £ 20 . Their rating is average . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||The Loch Fyne restaurant serves an English meal in a family friendly environment for under 20 . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Not recommended for kids , The Waterman , is a moderately priced Italian restaurant located on the riverside . Customers have given it a rating of 3 out of 5 . \nname : Bibimbap House | food : Chinese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House is a Chinese food place in riverside near the Clare Hall . It serves food priced around £ 20 - 25 per meal . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a high priced Italian restaurant , but yes , you can take kids . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers serving cheap Chinese food is rated 5 out of 5 by customer . \nname : The Twenty Two | food : Italian | family friendly : no||The Twenty Two is an adult only eat - in restaurant . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum offers Indian cuisine for under £ 20 . It is located int he riverside area . Leave the kids at home . \nname : Loch Fyne | food : Japanese | customer rating : average | area : riverside | near : The Rice Boat||The Loch Fyne is a 3 - star restaurant conveniently located near City centre . It offers Asian cuisine and is just off the river across from The Rice Boat . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix has a price range of less than £ 20 . It serves Italian food in the riverside area . It has a low customer rating . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a kid friendly coffee shop in the riverside area , with prices in the moderate range and a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is low . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : city centre||The Phoenix has high priced fast food , with an average customer rating , located in the city centre . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a French restaurant in the center of the city near Express by Holiday Inn called The Rice Boat . It is not children friendly and has low customer ratings . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a children friendly Italian restaurant near The Sorrento riverside . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant in the high price range with a high customer rating . Near Yippee Noodle Bar in the city centre area . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : no||Loch Fyne is a affordable Japanese restaurant . Not recommended for kids \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is family friendly pub , serving English style food . and has a price range of less than twenty pounds . It is close to Café Rouge . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : no||The Golden Curry serves highly rated French food but is not family - friendly . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a family friendly Italian restaurant that has an average customer rating . It 's near Café Rouge in the riverside area . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Japanese food can be found at the child friendly restaurant called Loch Fyne . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||A Fast food restaurant called Loch Fyne is child Friendly . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is a Japanese - food pub with a moderately priced menu and a kid friendly environment and is located near Café Rouge . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Avalon||Rated 5 out of 5 , Blue Spice is a high priced coffee shop in Riverside near Avalon that is not a place for kids . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : city centre||Clowns is a put with cheap prices located in city centre . Low customer rating . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly Indian food coffee shop near Café Sicilia . It has a moderate price and a customer rating of 1 out of 5 . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is a 1 star high priced restaurant in city centre . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : no||Rated 1 out of 5 , Cocum is a pub with moderate prices . It 's not kid friendly . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a good quality family restaurant . It is average priced . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two is a Japanese restaurant . The restaurant is situated in Riverside . This is a family friendly restaurant offering Japanese food . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a kid friendly English restaurant . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is an average priced , family friendly establishment close to The Rice Boat at the riverside . \nname : Fitzbillies | food : French | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a French , moderately priced French restaurant near The Six Bells . \nname : The Mill | Type : pub | food : Fast food | price : high | area : city centre||Located in the city centre , The Mill is a high - priced pub that serves fast food . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in the riverside area near Express by Holiday Inn ; It serves high priced Japanese food ; It is family friendly and has a low customer rating . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : yes||The Wrestlers is a moderately priced family friendly Italian restaurant . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||If you are near Café Rouge , check out Midsummer House . It is an English restaurant with an average customer Rating . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Located near Clare Hall in the riverside area , Clowns is a coffee shop that received an average customer rating . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a reasonably priced family friendly pub that offers sushi located near Café Rouge . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||Fast food on the riverside is The Phoenix with a customer rating of 3 out of 5 . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Highly rated Fast food is served in the city centre at Midsummer House near All Bar One . its prices are reasonable . \nname : The Vaults | food : Japanese | price : more than £ 30 | family friendly : no||The Vaults is a high class Japanese restaurant for adults . \nname : The Phoenix | food : Indian | price : cheap | customer rating : average | area : riverside||There is a cheap Indian place at the riverside called The Phoenix . It has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||For a kid friendly Chinese restaurant try the Loch Fyne . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city centre , The Wrestlers is a moderately priced French style coffee shop . It 's great for the kids , and located near the Raja Indian Cuisine . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop on the riverside near The Sorrento . It serves Italian food and has a moderate price range . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly fast food restaurant and coffee shop , The Wrestlers is very expensive . It is located in the riverside area near Raja Indian Cuisine \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Reasonably priced and highly rated , Strada is a family friendly English venue , close to The Rainbow Vegetarian Café . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : no||Along the river is a low priced pub , The Olive Grove , which caters to adults . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Waterman Pub and Fast food near the riverside has a customer rating of 3 out of 5 \nname : The Golden Curry | food : Italian | price : high | family friendly : no | near : The Bakers||Near The Bakers is a high priced establishment called The Golden Curry . OT is not kid friendly and is near The Bakers \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||There is a coffee shop called Blue Spice , in Riverside near Avalon , with low customer ratings and it 's expensive but child friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant located near the river . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family friendly English restaurant in riverside with food priced less than £ 20 . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop offers French food for adults near Café Sicilia with moderate price range and a rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is Japanese and kid friendly . It is located in riverside . It is rated one star \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant that is situated riverside . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : yes | near : The Portland Arms||Near The Portland Arms in the city centre is The Punter . It has a less than £ 20 price range and is family - friendly . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a child friendly establishment that serves Italian Food . It is near Crowne Plaza Hotel . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice is located near to the outskirts of town . It is a low cost budget facility , and is family friendly . It is based on the outskirts of town . \nname : Bibimbap House | food : Chinese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House , located in the riverside area near Clare Hall , features Chinese food with pricing less than 20 pounds . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||There is a cheap restaurant The Phoenix located in the centre of the city that provides Indian food . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix offers Italian food at the riverside . Customers give it an average rating . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman serves moderately priced French food in the city centre that has a low customer rating and is not child friendly . \nname : Fitzbillies | food : Indian | price : moderate | near : The Six Bells||Fitzbillies provides Indian food in the moderate price range . It is near The Six Bells . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a pub by the riverside that serves French food , and is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes||At the riverside there is a children - friendly coffee shop called Fitzbillies . It also serves Fast food . \nname : The Golden Curry | food : Indian | price : moderate | family friendly : no | near : The Bakers||The Golden Curry serves Indian food with a moderate price range . It is not kid friendly and is near The Bakers . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : yes||For a family friendly pub go to the Giraffe . Great Indian cuisine , located in the city center . \nname : Green Man | food : Italian | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is family friendly and offers cheap Italian food . It 's in the riverside area near All Bar One . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a children friendly , fast food restaurant . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a family coffee shop located at the city centre at low coast that delivers take away . \nname : The Punter | price : moderate | area : city centre | family friendly : no | near : The Portland Arms||The Punter is near The Portland Arms and is non - kid friendly , moderately priced and near the city center . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Phoenix serves Chinese food that has received a customer rating of 5 out of 5 . It is located in the city centre . \nname : Cotto | food : Japanese | customer rating : low | family friendly : no | near : Ranch||Near the Ranch , there is the Cotto , which is low rated , non - family - friendly and serves Japanese food . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge coffee Shop is located close to the Crown Plaza Hotel and is family friendly . Taste of Cambridge coffee shop also offers pasta and wine . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop . It 's not family - friendly , and has low customer ratings . It 's located in the riverside by Crowne Plaza Hotel . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop on the riverside . It serves excellent French food with a 5 out of 5 customer rating . It is a Child - Friendly place . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice is a cheap family friendly restaurant with high customer rating neat riverside . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||There is a kids friendly restaurant Fitzbillies near Express by Holiday Inn . They are a high price range restaurant with high customer rating . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is situated in the city centre . Italian food is served . Prices are £ 30 or more . Children are welcome . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : no||Strada is not a child friendly but has a high customer rating . its price range is £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a very expensive coffee shop but it 's worth the money . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies coffee shop that is Fast food and has a price range that is less than £ 20 in the city centre its family - friendly and low customer rating \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves fast food . It 's rated 3 out of 5 by customers , and it 's kid - friendly . It 's located by the riverside , near Café Rouge . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||'The Rice Boat ' is a French food place by the riverside near the ' Express by Holiday Inn ' . It 's a bit costly at over 30 pounds a meal and is not exactly child - friendly , but it does have excellent customer ratings on average . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||There is a kids friendly Fast food restaurant called Loch Fyne . \nname : Blue Spice | food : English | price : cheap | area : riverside||The Blue Spice in riverside serves cheap English food . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||When in the riverside area , try the Browns Cambridge . It 's a Indian coffee shop for adults only . Located near Crowne Plaza Hotel with a customer rating of low . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : yes||Cocum is a coffee shop located a short walk away from the city centre . It is not cheap , however it also sells food and is family friendly . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A high priced , French food place , named The Waterman , is located in riverside , is child friendly and has a 3 out of 5 customer rating . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||Taste of Cambridge restaurant has a high price range and customer rating of 3 out of 5 . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada , located near the Rainbow Vegetarian Café , is a Japanese restaurant . They are moderately priced and have a high customer rating . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Near All Bar One is a low - priced restaurant called Midsummer House . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a moderately priced restaurant in the city centre . They serve Italian food and they have high customer rating . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies is a restaurant providing Italian food . It is located in the city centre . There is a cheap restaurant Fitzbillies located near The Six Bells . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||For less than £ 20 , adults can eat The Plough pub near Café Rouge . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near Crowne Plaza Hotel in the Riverside area . This is not a family - friendly location with a low customer rating . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||A moderately priced Japanese restaurant near the Rainbow Vegetarian Café which has a 1 out of 5 rating and isn 't child friendly is called Strada . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a average priced coffee shop near Raja Indian Cuisine called The Wrestlers . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : cheap||The Dumpling Tree is a cheap Fast food restaurant . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Japanese food can be found at the The Waterman , in the city centre . The establishment has a 3 out of 5 rating , welcomes kids , and is decently priced . \nname : The Eagle | food : Italian | customer rating : average||The Eagle is an Italian restaurant that sells good quality food . It is located in the City center . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Cocum , a French coffee shop is low priced and not family - friendly . It is rated low . \nname : The Plough | Type : pub | food : French | price : cheap | family friendly : yes | near : Café Rouge||If you 're near Café Rouge and looking for a family - friendly , inexpensive French pub , then The Plough is the place to go . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family oriented restaurant on the northern end of City centre . It is a moderately priced coffee shop located near Burger King . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop has Indian food at cheap prices . It is located in Riverside near Raja Indian Cuisine . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Fitzbillies serves French food that ranges less than 20 . This place is near The Six Bells . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a highly rated French coffee shop that offers a family friendly atmosphere . They are located near the Crowne Plaza Hotel in Riverside . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly English restaurant within the £ 20 price range in riverside near All Bar One . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : no | near : Café Rouge||The Plough , near Café Rouge , is a fast food restaurant offering pub fare . It 's in the high price range and is not child friendly . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||the Bibimbap House near Clare Hall by the riverside is a moderately priced English restaurant \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high cost fast food child friendly coffee shop in the riverside area near Burger King with low customer rating \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||If you are in the riverside area I recommend going to Alimentum which is a fast food restaurant that cost less than £ 20 and is family friendly \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap coffee shop that also serves Fast food . It is located in the city centre near a Burger King . Customers rate it a 5 out of 5 . It is not family - friendly . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry Chinese food restaurant is near Café Rouge in the riverside area and has a customer rating of 5 out of 5 and is not family friendly . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||An expensive sushi restaurant called The Phoenix has a 3 out of 5 star rating . It is located by the river . \nname : Alimentum | food : Chinese | price : high | area : city centre | family friendly : yes||Alimentum provides Chinese food in the high price range . It is located in the city centre . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no||Blue Spice is non - kid friendly establishment in Riverside . They have 3 stars and prices ranging from 20 - 25 pounds . \nname : Midsummer House | food : Indian | price : high | customer rating : average | near : All Bar One||Midsummer House is a Indian food restaurant with a high price range and average customer ratings near All Bar One . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento along the riverside is a kid friendly , and French cuisine called Browns Cambridge . \nname : The Mill | Type : coffee shop | food : Japanese | price : more than £ 30 | area : city centre | near : The Sorrento||The Mill is a coffee shop that serves Japanese Food . It has a price range of more than £ 30 and is located in the city centre , near The Sorrento . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is just 2 minutes walk from the River Cam in the heart of the historic city of Cambridge . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies is a restaurant British offers meals at low prices and is located in the city center . , there The Six Bells It provides fast foods at a reduced price \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Located in the city centre , The Waterman serves French food . It is not child - friendly , has a low customer rating , and is in a price range higher than £ 30 . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is an Indian restaurant that is kid friendly and has an average customer rating . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is near Café Rouge . It is child friendly and serves English food and has an average customer rating . \nname : Browns Cambridge | food : Chinese | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a Chinese restaurant with a moderate price range with a 3 out of 5 customer rating \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a riverside restaurant near Yippee Noodle Bar offering Indian food for less than £ 20 with a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a place on the rivers banks next to Crowne Plaza Hotel . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a children friendly place located near the Express by Holiday Inn with high price range and low customer rating . \nname : The Eagle | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a 5 star coffee shop located next to Burger King . The Eagle is family safe . \nname : Fitzbillies | food : Indian | price : high | near : The Six Bells||Fitzbillies is an Indian restaurant with high price range . It is located near The Six Bells \nname : The Golden Palace | Type : restaurant | price : moderate||A moderate priced range restaurant is The Golden Palace . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a coffee shop at the riverside called Fitzbillies . It serves food in average prices and has been rated average . The coffee shop does not welcome children . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Indian food in the cheap price range with average customer ratings in the riverside area near Burger King and is family friendly . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : moderate||The Japanese restaurant The Dumpling Tree has a moderate price range . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Phoenix is a restaurant located in riverside offering Chinese food and having a rating 5 out of 5 \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood is a restaurant , near Café Rouge . It has a low customer rating . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||English food in Browns Cambridge , near The Sorrento in riverside area , yes family friendly \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||The Phoenix has high priced French food with a customer rating of 3 out of 5 in riverside \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||You will spend more than £ 30 at the French pub The Mill , in riverside . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant in the riverside area near Express by Holiday Inn . It is kid friendly and gets 3 out of 5 on customer ratings . Prices are moderate . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a French coffee shop located in the city centre . It has an average customer rating offering prices less than £ 20 . It is family - friendly . \nname : Green Man | Type : pub | food : French | area : city centre | near : Café Rouge||French cuisine , city centre pub the Green Man is located near Café Rouge . \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||The Golden Curry is a family friendly Chinese place with an average customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a moderate priced , kid friendly coffee shop . Located in the city centre near Burger King , this fast food coffee shop has a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||If you are near Café Brazil , go visit The Cambridge Blue . A recently opened pub with English food and our prices are moderate . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||A pub called Clowns is within a cheap price range with a customer rating of 5 out of 5 . It is located by the riverside area , \nname : The Phoenix | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Phoenix a Chinese food restaurant was rated one out of five stars with customers in Riverside . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter , a French coffee shop near Café Sicilia , is not only not children friendly , but also has a low customer rating along with a price range more than £ 30 . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Rated at 3 out of 5 the Cocum is a children friendly pub with high prices . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is rated 1 out of 5 and serves moderate priced Indian food . It is not kid friendly and located in the riverside area near the Express by Holiday Inn . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers moderately priced Indian food in an adults only environment . Located in the riverside area , right by Express by Holiday Inn . Rated at 3 out of 5 . \nname : Blue Spice | food : Italian | price : moderate | area : city centre||Luton based Blue Spice serves Italian food at mid - range prices . \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Fitzbillies offers Italian food less than £ 20 . It is located near The Six Bells . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine at riverside there is a coffee shop called The Wrestlers which provides fast food . It has a price range of £ 20 - 25 and is kids friendly . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||Blue Spice has a low customer rating , prices are more than £ 30 . It is in the area of city centre and is child friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||There is a highly rated Italian coffee shop in the Riverside area that cost more then more than £ 30 . It is called The Golden Palace . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum , a reasonably dear 1 stat restaurant , located next to Yippee Noodle Bar \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Highly rated cheap Indian food for the whole family and coffee at Cocum \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||Located near All Bar One is a Japanese food place called Midsummer House . The customer rating is average and the price range is less than £ 20 . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||Near The Rice Boat in the city centre is The Twenty Two . A non family - friendly cheap restaurant with a 5 out of 5 rating . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||A restaurant , Strada has a customer rating of 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||At riverside near Avalon there is a coffee shop called Blue Spice which is moderately - priced . Its customer rating is 3 out of 5 and it is kids friendly . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman serves Japanese food . It is a kid friendly restaurant , moderately priced with a customer rating of 1 out of 5 . It is located near the city centre . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||Located in the riverside area is an adult coffee shop called Aromi . It serves Italian food and has low customer ratings . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an expensive family friendly coffee shop , by the side of the river and just down the road from Burger King . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a kid friendly coffee shop near The Bakers rated 3 out of 5 and costing 20 - 25 . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||If you are looking for a nice restaurant , with meals starting between £ 20 - 25 , then I would recommend The Golden Palace . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi has a customer service rating of average and is a children friendly pub by the riverside . \nname : The Plough | Type : pub | food : English | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap pub of English food and family friendly near Café Rouge . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum is a Chinese restaurant located in the city centre near Yippee Noodle Bar that has a low customer rating and the price range is less than £ 20 . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Bibimbap House near Clare Hall serves an English food with high price range located at the riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is in the center of the city . It serves Japanese food , has an average customer rating , and food is cheap . It is a family - friendly coffee shop . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is by the riverside , rated 3 out of 5 , moderately priced , serving fast food . It is not a kid friendly place . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman riverside fast food has a moderate price range , 1 out of 5 star rating and is kid - friendly . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman area has a high price range , a customer rating of 1 out of 5 , the children are friendly , and the food is English . \nname : Browns Cambridge | food : French | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is not a family friendly pub , located by The Sorrento , outside of the city centre . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||A cheap fast food restaurant in the city centre is The Phoenix . It is not very good . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||On the riverside , there is a fast food restaurant Aromi . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||If a kid friendly coffee shop serving French food is what you 're looking for , you may want to try The Cricketers . It 's located next to The Portland Arms and has a 1 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||With a customer rating of one out of five , Cotto is a coffee shop serving Italian food near The Portland Arms . Cotto offers a moderate price range and is located by the riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Rated 3 out of 5 , The Eagle is a Japanese coffee shop located near the Burger King . Price range : £ 20 - 25 . Kid Friendly \nname : The Rice Boat | food : Indian | area : city centre||There is an Indian restaurant in the city centre called The Rice Boat . \nname : The Plough | Type : pub | food : Italian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a children friendly pub that serves Italian food for more than £ 30 and is near Café Rouge \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman restaurant serves Italian food and is kids - Friendly . It 's located neat the Crowne Plaza Hotel . \nname : Midsummer House | food : Chinese | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House has a customer rating of 1 out 5 . It serves Chinese food within a high price range and is located near to All Bar One . \nname : Midsummer House | food : Chinese | price : more than £ 30 | customer rating : high | near : All Bar One||With a price range of more than £ 30 , highly customer rated Midsummer House , near All Bar One , serves Chinese food . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes||The Alimentum is a cheap Chinese restaurant in City Centre . \nname : The Rice Boat | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is located in the riverside area . This kid friendly venue offers Japanese food and has received a customer rating of 1 out of 5 . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café is a place by the name of The Rice Boat . It has a customer rating of 1 out of 5 , and has a price range of high . \nname : Cotto | food : English | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cotto is a restaurant near Ranch English people rating 3 out of 5 , kids friendly yes \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||Bibimbap House in riverside near Clare Hall has a high price range for a fast food restaurant . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family Friendly Fast food restaurant near Rainbow Vegetarian Café . It has a customer rating of 5 our of 5 and is cheap in price . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near Express by Holiday Inn , is a cheaply priced family - friendly venue with low customer ratings . \nname : The Punter | price : more than £ 30 | area : city centre | family friendly : yes | near : The Portland Arms||The Punter is more than £ 30 and children friendly . It is near The Portland Arms in the centre of the city . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Looking for a coffee shop that is by the river near Crowne Plaza Hotel that is family friendly and has a customer rating that is average Browns Cambridge is the place your looking for . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a Chinese food restaurant with a price range of less than £ 20 . It is family friendly with a low customer rating and found in the city centre area . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately cheap coffee shop located in the area of Riverside , near the Raja Indian Cuisine . Fast food is sold there and the staff are friendly . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a kid friendly Indian restaurant Browns Cambridge located riverside near Crowne Plaza Hotel with a customer rating of 1 out of 5 \nname : Loch Fyne | food : Fast food | customer rating : average | area : city centre | near : The Rice Boat||Loch Fyne is a fast - food restaurant in the city centre area near The Rice Boat . It receives an average rating from customers . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub near The Portland Arms has Italian food and is kid friendly . \nname : Green Man | Type : restaurant | area : riverside||You can find a restaurant named Green Man in the riverside area . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The pub in river side called The Waterman that has Fast food and is rated 5 . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two in the riverside area has Fast food and is children Friendly . \nname : Wildwood | Type : restaurant | family friendly : no||Wildwood is not a family - friendly restaurant . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant with dishes costing more than 30 pounds and a high customer rating . It is located in the city centre near Express by Holiday Inn and is not children friendly . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||The pub , The Plough , is a family friendly restaurant that serves mid ranged priced meals and is located close to Café Rouge . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix has English food , a high price range , a customer rating of one out of five , and is in the city centre . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Blue Spice is a kids friendly restaurant in the city centre , with an average customer rating of three out of five . It offers food at an affordable rate of £ 20 - £ 25 . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The Waterman is a non child friendly Italian food venue in the city centre . It has a high customer rating and the price range is more than £ 30 . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||For English food and child friendly , try Strada near the Rainbow Vegetarian Café . It 's moderate though . Only has a rating of 3 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry offers up kid - friendly Indian cuisine with a 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle , located near Burger King and the Riverside , is a high priced , high quality coffee shop that provides Sushi . It is family friendly . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix provides Indian food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a medium priced sushi restaurant that is north of the city centre and family friendly . It is close to the Express by Holiday Inn \nname : Blue Spice | food : Italian | price : more than £ 30 | area : riverside||Blue Spice is a restaurant that serves Italian food in the riverside area , for more than £ 30 \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Low cost coffee shop Cocum has a low customer rating and is family friendly . \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||There is a Japanese restaurant called The Vaults which is moderately priced but not suitable for families with children . \nname : Cocum | Type : pub | price : £ 20 - 25 | customer rating : high | family friendly : yes||A kid friendly pub with a high customer rating called Cocum serves for £ 20 - 25 . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||By the river is a nice pub called The Mill that is low priced . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a highly rated , moderately priced Chinese restaurant in riverside . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : high | near : Café Brazil||A Japanese pub called The Cambridge Blue , with high prices , is located near Café Brazil . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is an English food place near Yippee Noodle Bar , by the river , called Alimentum . It has a cheap price range and an average customer rating . \nname : Clowns | price : £ 20 - 25 | family friendly : yes | near : Café Sicilia||Clowns has a low price Range with a kids - friendly atmosphere . It is located near Café Sicilia . \nname : Browns Cambridge | food : English | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is not family friendly but is near The Sorrento . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||The Strada pub , near the Yippee Noodle Bar , serves Italian food . It has average customer rating . \nname : Bibimbap House | food : Indian | area : riverside | near : The Rice Boat||Bibimbap House has Indian food and is in the riverside area near The Rice Boat . \nname : The Mill | Type : pub | food : Indian | price : more than £ 30 | area : riverside||The Mill is an Indian pub near the riverside with prices more than £ 30 . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man , near All Bar One in the Riverside area , is a moderately - priced restaurant geared towards adults . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Located at the riverside near Clare Hall , The average priced Bibimbap House serves Japanese food . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids friendly Italian pub near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms in city centre . It offers fast food with price less than £ 20 . It is rated low by the customers . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : no||Cocum restaurant that has a 1 star rating and not family friendly \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes||There 's a new place called The Wrestlers , where you can enjoy a variety of food on their menu . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : yes||Alimentum is a Chinese food ; the price is moderate and it 's in area centre . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the riverside area and the Crowne Plaza Hotel is Taste of Cambridge , a children friendly coffee shop that serves Italian food . \nname : The Waterman | Type : pub | food : French | customer rating : 1 out of 5 | area : riverside||The pub with low customer ratings is called The Waterman . It 's located near the river and serves French food . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no||There is a Japanese coffee shop named Cocum . It is not child friendly . It has a customer rating of 3 out of 5 . The price range is high . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Located in the city centre , The Waterman is a child friendly Japanese restaurant . 3 out of 5 stars , expensive . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat provides Italian food near the riverside customer rating of 1 out of 5 \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes||With a rating 5 out of 5 and family - friendly , The Rice Boat is a French venue in the city centre . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap English restaurant in the city centre , near Yippee Noodle Bar , with an average customer rating . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||There is a venue , rated 3 out 5 that is high priced and not children friendly , in riverside near The Rice Boat called The Twenty Two . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms is a coffee shop that serves Italian food with moderate price range and customer rating of a 1 out of 5 called Cotto . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||The restaurant Taste of Cambridge has a customer rating of 3 out of 5 and a moderate price range . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is in the city centre . It is a Chinese restaurant that allows children , is moderately priced and has an average rating . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||The Giraffe is a coffee shop with good reviews . It caters to families and is highly rated . It is expensive . Its located near The Bakers . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a pub with a cheap range of prices . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : Strada | Type : pub | food : Japanese | customer rating : average | near : Yippee Noodle Bar||Strada , a pub near Yippee Noodle Bar serves Japanese food . It has an average customer rating . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||Near The Portland Arms is , The Dumpling Tree . A family friendly pub serving Indian food . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a family friendly pub in riverside , it serves Japanese food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Crowne Plaza Hotel is a family friendly coffee shop that serves Italian food and has an average customer rating . It is in Browns Cambridge near the riverside . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is located beside Yippee Noodle Bar at the end of the city . It is a high end dine in restaurant for all . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough is a family - friendly restaurant near the Express by Holiday Inn Hotel . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Chinese food in the cheap price range . It is near Rainbow Vegetarian Café . Its customer rating is average . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family - friendly place serving affordable food in the city centre . It is called Blue Spice and has received excellent customer rating . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice , a child - friendly , riverside restaurant , located near Avalon , has a 5 out of 5 rating and \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Located close to an university , Cocum is an average - priced coffee shop that is also family friendly . It has low rating given by costumers . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||With a customer rating of 5 out of 5 and meals starting at 30 pounds and up , Blue Spice is a coffee shop that is children friendly . It is located in the city centre near Avalon . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | near : Café Adriatic||A restaurant within the price range of £ 20 - 25 is Travellers Rest Beefeater , located near Café Adriatic in the city centre . It has a customer rating of 3 out of 5 . \nname : Giraffe | Type : restaurant | price : £ 20 - 25 | near : The Six Bells||Giraffe is a restaurant near The Six Bells with a price range of £ 20 - 25 . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||There is a 1 out of 5 rated coffee shop near Café Sicilia called The Punter that has moderately priced Japanese food but not kid friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a Japanese coffee shop that 's kid friendly in the riverside area with a rating of 1 out of 5 . \nname : The Phoenix | food : Fast food | customer rating : 3 out of 5 | area : riverside||The Phoenix is a fast food restaurant in the Riverside Area with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a restaurant that you can visit . It 's non - familiar place , a cheap site but close to The Bakers . Visit us . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : riverside | family friendly : yes | near : Café Sicilia||A moderately priced kid friendly coffee shop near Café Sicilian , The Dumpling Tree is located in the riverside area . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough It is a family pub with a delicious sushi , located near Café Rouge \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||Located by the Riverside , The Eagles has a price range of less than 20 euros and has a low customer rating . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a high - priced restaurant located near Café Adriatic . This pub - style eatery rates 3 out of 5 . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults is a pub near Café Adriatic with a high customer rating and prices over £ 30 . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre||The Mill is a moderately priced English pub located in the city centre . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne , which serves English food , can be found near The Rice Boat on the riverside , although it does have a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre||The Golden Palace coffee shop serves Japanese food in the less than £ 20 price range in the city centre and has an average customer rating \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : no||Loch Fyne is a Indian restaurant with moderate pricing . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn there is a family friendly restaurant called The Rice Boat which offers top quality food at a low price . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||The Taste of Cambridge is a restaurant with a price range of less than £ 20 . The customer ratings are average . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a one star , family friendly restaurant located near the river . \nname : Strada | Type : pub | food : English | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a 5 star bar serving tea and crumpets near Yippee Noodle Bar . \nname : Green Man | food : French | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a cheap family friendly place that provides French and is located by the riverside close to All Bar One . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a low - priced restaurant located near the river near Yippee Noodle Bar . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man is an adult location that serves low - cost , British food in the City centre area . It can be found near the All Bar One . \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||In the city centre , near All Bar One , there is a Japanese food restaurant called Green Man . It is not children friendly , and the price range is more than 30 pounds . \nname : Loch Fyne | food : French | customer rating : low | area : city centre | near : The Rice Boat||It gets low ratings , but Loch Fyne is a French restaurant near The Rice Boat in the city centre . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman in the city centre offers cheap French food . It is not family - friendly and has a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : no||The Olive Grove is a city centre Indian pub . They 're not family friendly and it is high priced . \nname : The Golden Curry | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a low rated Chinese restaurant in Riverside . It is near Café Rouge and is not family friendly . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The Twenty Two pub is located close to Café Sicilia . \nname : The Golden Curry | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge in the riverside area is family friendly The Golden Curry offering Chinese food and it has an average customer rating . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||A children friendly pub called The Olive Grove is located near the riverside and is in the over £ 30 price range . \nname : The Mill | Type : coffee shop | food : Indian | price : high | area : city centre | near : The Sorrento||The Mill is a high priced Indian coffee shop . Located near The Sorrento in the city centre . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Phoenix is a Chinese restaurant with 5 out of 5 customer rate , located in the city centre . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes||In the city centre there is a family - friendly French coffee shop called Aromi that has an average customer rating . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||Near the riverside is a high rated restaurant . Its prices range from £ 20 - 25 . The Phoenix serves Fast food . \nname : The Phoenix | food : Indian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is an Indian restaurant in the less than £ 20 price range with a low customer rating . it is located in the riverside area . \nname : The Phoenix | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is an average place near the city river . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub near The Portland Arms serves English food and is kid friendly . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a children - friendly , high rated Italian restaurant with a price range more than £ 30 and is located in the city centre \nname : Loch Fyne | Type : restaurant | food : English | price : more than £ 30 | family friendly : yes||Loch Fyne restaurant serves food for £ 30 it 's child friendly and English \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||The Cambridge Blue is a fast food restaurant rated 3 out of 5 by its customers . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum has Indian food with high price and 1 out of 5 customer rating in city center near Yippee Noodle Bar \nname : Zizzi | Type : pub | food : English | customer rating : 3 out of 5 | family friendly : yes||The English pub Zizzi is kid friendly and has a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||There is a family friendly restaurant with a price range of less than £ 20 called Travellers Rest Beefeater . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||In the riverside area near Café Rouge is The Golden Curry . The Golden Curry is a family friendly Café serving fast food . They have a low customer rating . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Located near the Express by Holiday Inn Fitzbillies has a customer ranging of 5 out of 5 and is a child friendly restaurant . Fitzbillies has an average price range of more than £ 30 . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||A Japanese restaurant near All Bar One is The Cricketers . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||The Rice Boat is an Italian restaurant in the riverside area that is not family - friendly and has a low customer rating . \nname : The Mill | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a cheap coffee shop near The Sorrento , right next to the city river . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||beans and eggs at the riverside The Waterman offers low priced breakfasts . \nname : The Golden Curry | food : English | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry offers kids friendly atmosphere and good English food . Customer ratings 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is a very expensive restaurant . It is also family friendly . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : no||Located in the center of the city , The Rice Boat provides Japanese food , has an average customer Rating , and is not family - Friendly . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||An average priced but low rated Chinese place that allows kids in the city centre is The Waterman . \nname : Midsummer House | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House provides Chinese food in the cheap price range . It is near All Bar One . Its customer rating is 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In the Riverside area is a Japanese coffee shop with a 5 out of 5 rating and cheap prices called Fitzbillies . It is family friendly . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||The Zizzi is a three star rated pub , that is family friendly . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : riverside | near : The Sorrento||The Indian coffee shop The Mill is near The Sorrento in the riverside area and has a moderate price range . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an Italian coffee shop . The shop has cheap prices , is family friendly , and located in Riverside . \nname : Fitzbillies | food : English | price : less than £ 20 | near : The Six Bells||Fitzbillies serves English food for less than £ 20 . It is located near The Six Bells . \nname : The Punter | food : Japanese | price : less than £ 20||The is a low - priced place The Punter where there are fresh meal such as sushi to taste . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman has Japanese food with a price range of more than £ 30 and a 5 out of 5 customer rating . it is in the riverside area and is children friendly . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||A high priced , riverside pub , The Mill , has English food . \nname : Strada | Type : pub | food : Japanese | customer rating : high | near : Yippee Noodle Bar||Strada is a Japanese Pub with a high customer rating . It is near Yippee Noodle Bar . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||In city centre , Alimentum serves Japanese food for more than £ 30 and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced low rated coffee shop located in the city centre serving Italian food . This is not a child friendly coffee shop . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub . They serve fast food along the river side with a lovely view . The average cost is less than £ 20 which is amazing for all the family to have a bite to eat with a fantastic view . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : riverside | family friendly : yes||The Olive Grove is a pub that offers entries in a costly price range . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is an Italian venue in the city centre near Café Rouge . It is family - friendly and has a great customer rating of 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace located in Riverside offers great Indian food at a reasonable price . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry , a French restaurant , with a customer rating of 5 out of 5 is family friendly . \nname : Loch Fyne | food : Indian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is located on the river near The Rice Boat . It has a 1 star rating and serves Indian food . \nname : Midsummer House | food : English | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is located right near All Bar One , highly rated , and is reasonable in price . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge offers English food and provides a children friendly environment , located near The Sorrento , riverside area . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : no||Loch Fyne is a Chinese restaurant in the less than £ 20 price range but is not family friendly . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately - priced fast - food restaurant in a riverside area near the Express by Holiday Inn hotel . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||A riverside Blue Spice has a high customer rating due to its low price of started meal £ 35 and child friendly environment . \nname : The Olive Grove | Type : pub | food : Japanese | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove is a pub that offer Japanese food in the city centre . It is not child friendly and the is in the price range of more than £ 30 . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||Cheap riverside restaurant , The Twenty Two , is located near The Rice Boat . It has a customer rating of 5 out of 5 and is not child friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : yes||Loch Fyne is an Indian restaurant . it id high priced . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||sushi plates at Fitzbillies coffee shop rated 1 star located on the river is family friendly . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a moderately rated family restaurant serving fast food near the river . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||There is a family friendly coffee shop in the low price range . It is located in the riverside area near Avalon and it is called Blue Spice . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There 's a Japanese coffee shop named Browns Cambridge , located in the city centre near Crowne Plaza Hotel . It is family - friendly and has a 5 out of 5 rating . \nname : Fitzbillies | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is family friendly cheap eats with a rating of 5 out of 5 and can be found near Express by Holiday Inn . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||The Giraffe is a family friendly coffee shop located near The Bakers has a cheap price range and an average customer rating . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is an adult oriented Italian restaurant located in Riverside with a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||An Italian coffee shop called Fitzbillies is not family - friendly , priced cheap and near the city centre . It has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge is a fast food eatery near The Sorrento in the city centre . They are family - friendly . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Blue Spice is a cheap , non - family - friendly restaurant in riverside . It has a 5 out of 5 customer rating . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||No , the Japanese restaurant The Waterman in the riverside price less than 20 , its not average \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||Cocum coffee shop features a high cost with a 1 out of 5 star rating . They are family friendly . \nname : Wildwood | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | near : Ranch||Wildwood is a high priced coffee shop near Ranch . They serve French food that has a rating of 3 out of 5 stars . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is in the city centre near Express by Holiday Inn serving cheap Chinese food with a 5 out of 5 rating . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no||Go to City Centre , to Aromi , a coveted Japanese coffee Shop not for kids . Go after work to get your average coffee fix and mimic the 24 - hour worker syndrome . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is cheap and rated 3 of 5 stars . It is on the riverside and by the Café Adriatic . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : no | near : All Bar One||Not kid friendly : Green Man serves up French food . It 's near All Bar One at a moderate price range in the Riverside Area . \nname : The Twenty Two | food : French | area : city centre | family friendly : yes||The Twenty Two is a family - friendly restaurant , serving French food . It is located at the centre of the city . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||In a riverside setting , Alimentum is a child friendly Italian restaurant in the mid price range . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : no||The Twenty Two is a fast food restaurant located near the river . However , bear in mind that the restaurant is not family appropriate . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||The Clowns coffee shop sells great Italian food at high prices , but the food is of the best quality . The Clowns coffee shop can be found next to the river across from Clare Hall . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly venue that sells English food for less than £ 20 near The Bakers . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low - priced , 1 - star rated , kid friendly coffee shop that serves food , near Burger King by the river . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough pub is located next to Café Rouge . Come join other adults for fine Asian cuisine at low prices . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum providing Japanese Food . It is located in city center near Yippee Noodle Bar . 3 out of 5 Costumer rating . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a child friendly Japanese restaurant in the high price range . It has a 5 out of 5 customer rating . \nname : The Eagle | food : Italian | customer rating : high||The highly rated restaurant , The Eagle , serves Italian food . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in the City centre near Yippee Noodle Bar , is the high priced , 5 star restaurant called The Alimentum . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||The Wildwood is a cheap , fast food , pub style eatery with an average customer rating . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge near The Sorrento , riverside is children friendly providing English food \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Wildwood , a coffee shop and more located near Ranch . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House is close to Café Rouge . It offers Japanese cuisine and has a high customer rating . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a cheap coffee shop The Wrestlers located in the centre of the city by the not family friend Raja Indian Cuisine that provides Indian Food at less then less than £ 20 . \nname : The Eagle | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Eagle is located in the Riverside area . It has a price range that exceeds £ 30 with a customer rating of 5 out of 5 . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||Clowns is a pub in the city centre with a customer rating of 3 out of 5 . The price range is between £ 20- £ 25 . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant providing Italian food in the cheap price range . It is located in the Riverside area near Yippee Noodle Bar that customers rate 5 out of 5 . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Blue Spice located in the city centre has a cheap price list , great customer reviews of 5 out of 5 but does not cater for children . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||With a high customer rating and medium priced range The Phoenix which is located next to the river serves up English food . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||family - friendly Italian restaurant , The Green Man , situated next to the All Bar One in the bustling city center . Offers great variety and value for money . \nname : Blue Spice | food : Indian | price : high | area : riverside||Located in Riverside , the Blue Spice restaurant offers quality Indian food at higher prices . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two provides Chinese food It is located in the riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Mid - priced but highly rated , The Eagle coffee shop is a great place to eat Italian food with your kids . It is located near the Burger King in the city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a kid - friendly coffee shop . It is in the low price range . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||A Japanese coffee shop called The Punter is situated near Café Sicilia . High customer ratings and a little pricey at £ 20- £ 25 , not child friendly . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||There is a one star restaurant in Cambridge that sells American - style take away food , called The Cambridge Blue . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee shop is located near The Portland Arms . It is in the average price range . \nname : Midsummer House | food : Indian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is rated low , serves moderately priced Indian food near All Bar One . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop near The Portland Arms . It has a low customer rating . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is a cheap pub that serves food and beverages . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is average priced family coffee shop with low customer rating . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is near Clare Hall in Riverside . They are cheap and serve Italian food . \nname : The Punter | food : French | price : £ 20 - 25||For £ 20 - 25 there is a French food restaurant called The Punter . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Although not family - friendly , The Wrestlers serves cheap Chinese food rated 5 out of 5 . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : average||The Wildwood pub is a decent choice . Although their prices are quite high and the customer ratings are average , I really like their Italian food options . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||With a 3 out of 5 customer rating , Alimentum is a restaurant that serves English food . It is in the area of Riverside near Yippee Noodle Bar and is in the moderate price range . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , located near the Rainbow Vegetarian Café serves French cuisine at prices starting from £ 30 . This children friendly establishment has been rated 5 out of 5 by previous customers . \nname : Loch Fyne | Type : restaurant | food : English | price : more than £ 30 | family friendly : yes||There 's a child friendly restaurant called Loch Fyne that serves English food for £ 30 \nname : Travellers Rest Beefeater | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a low customer rating and is moderately priced . It is located in riverside near Café Adriatic . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||Green Man is an English pub located on the riverside near Café Rouge . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree is a non kid friendly coffee shop near Café Sicilia in the city centre , with prices ranging more than £ 30 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Avalon||This coffee shop says yes to families , situated near the city centre is called Blue Spice . Its customer reviews are 5 out of 5 with a price list of more than £ 30 , close to Avalon . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Near Café Rouge in the city centre is The Golden Curry serving Italian food . They have a 5 out of 5 customer rating and are family - friendly . \nname : Blue Spice | food : English | price : moderate | area : riverside||Located in the outskirts of the city centre , Blue Spice is a moderately - priced restaurant . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is a family friendly restaurant . They offer meals which cost a considerable amount of money . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is located just north of the City Centre , and is a premium coffee shop with low satisfactory value . \nname : The Phoenix | food : Italian | customer rating : 3 out of 5 | area : riverside||The Phoenix is an Italian restaurant with a 3 out of 5 rating located in riverside . \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : yes||There is a pub serving Chinese food , Zizzi , that is family friendly and has low customer rating . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||Near Café Adriatic try a pub called The Vaults . It has a high price range and a customer rating 1 out of 5 . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is high - priced and children friendly with a customer rating of 3 out of 5. it is located near Express by Holiday Inn \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman serves Japanese food in the riverside area . It is kid friendly moderately priced and rates 1 out of 5 stars \nname : Cocum | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum coffee shop a Japanese coffee shop for adults with moderate pricing and low customer ratings . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly Japanese coffee shop The Wrestlers with a price range of less than £ 20 near Raja Indian Cuisine in Riverside . \nname : The Rice Boat | food : Italian | area : riverside||There is a venue at the riverside that serves Italian food . It is called The Rice Boat . \nname : The Twenty Two | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||There is a highly rated , child friendly restaurant on the riverside near The Rice Boat . It is called The Twenty Two and costs over £ 30 \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe is an Italian Pub located by the riverside that is family friendly . \nname : Strada | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada provides Chinese food in the £ 20 - 25 price range . It is near Rainbow Vegetarian Café . Its customer rating is high . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Phoenix is a Japanese restaurant in the Riverside area with a customer rating of 5 out of 5 . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : no||The highly priced adult oriented restaurant Green Man is located in the city centre . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub providing fast food . have 5 out of 5 costumer rating . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers coffee shop and Indian restaurant is customer Rated 5 out of 5 , adults only and is near The Portland Arms . \nname : The Punter | food : Italian | price : more than £ 30||The Punter , is restaurant more than £ 30 \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||There is a pub with a price range of £ 20- £ 25 called Wildwood that serves French food \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is a 3 star £ 20 - 25 pub in riverside . It is named Clowns . \nname : The Vaults | food : Chinese | price : moderate | family friendly : yes||The Vaults is a kids friendly Chinese restaurant . The food featured is in a moderate price range . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : yes||Loch Fyne is a restaurant that serves Indian food at a high price range and is kid friendly . \nname : Midsummer House | food : Indian | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House near All Bar One is rated one out of five by customers . They serve expensive Indian food . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||Near Café Rouge its located a low - cost restaurant called The Plough \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice rated low is a coffee shop near Avalon in the riverside . Its price range is less than £ 20 but not suitable for family . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||For Italian food there is The Phoenix . It has 3 out of 5 stars and is located in the city centre . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is in the more than £ 30 price range . It is a French restaurant in riverside near Yippee Noodle Bar . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Zizzi is a family - friendly coffee shop located in riverside with an average rating and prices less than £ 20 . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||A pub in Riverside called The Olive Grove is kids friendly and has a moderate price range \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||A highly rated place to buy Chinese food is The Golden Curry . Described as children friendly , it is suitable for children to visit . Overall , customer rating for The Golden Curry is high . \nname : The Phoenix | food : Indian | customer rating : low | area : riverside||The Phoenix provides Indian food It is located in the riverside . Its customer rating is low . \nname : The Waterman | Type : pub | food : French | customer rating : 5 out of 5 | area : city centre||The Waterman is a high quality , authentic French style pub located in the city centre . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a moderately priced fast food establishment in the city centre . It has a customer rating of 1 out of 5 and is not kids friendly . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Waterman is in the city centre with an average rating , serving French food for less than £ 20 . They aren 't family - friendly . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a children friendly pub near Café Rouge in the £ 30 offering Japanese food . \nname : The Twenty Two | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two near The Rice Boat , Riverside , is a kid friendly , moderate price ranged eatery with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn , is a medium - priced restaurant , that serves burgers and chips . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||Loch Fyne is a moderate - priced and kids - friendly restaurant that providing Fast food . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat on the riverside is a family friendly restaurant that serves French food and has a customer rating of 5 out of 5 . \nname : The Waterman | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman gets average ratings , but is kid friendly and moderately priced . The restaurant serves English food and is located in the riverside area . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||This Italian food restaurant in riverside , names The Eagle , located near Burger King . Prices ranging from £ 20 - 25 has a high rating and is kids Friendly . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Near riverside is Aromi , a children friendly pub with a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : no||Loch Fyne is a restaurant providing Indian food in the less than £ 20 price range . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that also sells Fast food that sells for a price range of £ 20 - 25 and is located near Ranch . This has a customer rating of high . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Located near The Sorrento is a kids friendly restaurant named Browns Cambridge that serves Chinese food in riverside . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||Low rated , The Golden Palace , is a coffee shop that offers fast food for less than 20 . It is located on the riverside . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is known to provide high quality Italian eats in a family friendly environment . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : no | near : The Portland Arms||The Dumpling Tree in Cambridge , close to The Portland Arms , sells burgers , chips and drinks . No children are allowed . \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman is not a kid friendly restaurant , but it has an average price of 20 - 25 and has an high customer rating . It is a Chinese restaurant located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a French food . It cost more than £ 30 . It located near riverside . Customer rating of it is low . It 's a coffee shop . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly pub with a low customer rating . its price range is less than 20 Euros . \nname : The Eagle | price : high | customer rating : average | area : riverside||The Eagle has a high price range , an average customer rating and is located by the riverside . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non - family - friendly French restaurant in the moderate price range . They have a customer rating of 1 out of 5 and are located near Express by Holiday Inn . \nname : The Waterman | price : less than £ 20 | family friendly : no||Not all age groups are allowed at a restaurant The Waterman that provides a low - priced foods . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a Japanese coffee shop in the city center for adults . With a customer rating of 1 out of 5 the price range is moderate . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is a non - family - friendly , average priced , Japanese restaurant in the city center . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : yes||The Alimentum is family friendly and serves breakfast in the mid price range . \nname : The Waterman | food : Indian | family friendly : no | near : Crowne Plaza Hotel||The Waterman is not family friendly serving Indian food near Crowne Plaza Hotel . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Japanese food coffee shop , located in the Riverside area nearby Raja Indian Cuisine . It is relatively inexpensive and also kids friendly . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Browns Cambridge is a high priced Italian restaurant with an average customer rating . \nname : The Phoenix | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside||Japanese food with a high price Range and customer Rating of 3 out of 5 can be found at The Phoenix in riverside . \nname : Aromi | Type : restaurant | food : Japanese | area : riverside||Aromi is a Japanese restaurant in riverside . \nname : Bibimbap House | food : Italian | area : riverside | near : The Rice Boat||Bibimbap House provides Italian at riverside over by The Rice Boat . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||You will be eating at Cotto that is near The Portland Arms . It is right by the riverside that serves Italian food . It is a coffee shop that only has a customer rating of 1 out of 5 . The price is also very high . \nname : The Twenty Two | food : French | area : city centre | family friendly : yes||If you 're craving French food , bring your family to The Twenty Two . Located at the city centre . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The coffee shop The Wrestlers is an expensive family friendly establishment located near Raja Indian Cuisine . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced Italian coffee shop located in the city centre . It received a 3 out of 5 rating and is not kid friendly . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a Fast food type restaurant , which is not kid friendly . It also has a moderate price range and is near All Bar One located in city centre . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne near The Rice Boat by the riverside serves fast food and has a 5 out of 5 customer rating . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||Near Café Rouge there is a pub called The Plough . It serves reasonably priced English food in a family friendly environment . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||The Waterman provides Indian food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||With a customer rating of 3 out of 5 that is kid friendly services French food . It is located near Café Rouge called The Golden Curry by riverside . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||Wildwood is a three star , low cost coffee shop located next to Ranch . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a moderate priced Italian food place . Don 't bring the kids , very low rate 1 out of 5 \nname : Strada | Type : restaurant | customer rating : 1 out of 5||One restaurant available in the area is the Strada , although the customer rating is only 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel is Browns Cambridge , a 3 - star family friendly coffee shop . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||A fast food coffee shop with a low customer rating and a price range less than less than £ 20 is Cocum . It is also family friendly . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix serves English food and is located in the city centre . It has a high customer rating and the price range is more than £ 30 . \nname : The Twenty Two | price : high | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , near The Rice Boat is kids friendly . It has an average customer rating and the price range is high . It is in the riverside area . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop called The Eagle , it is medium priced , five star rated , family friendly and sells Italian . It is located next to Burger King . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||Travellers Rest Beefeater is a low priced non family - friendly restaurant . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , close to the Express by Holiday Inn , is a family - friendly , licensed restaurant , that is cheaply - priced . It has received good reviews . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a coffee shop which serves Indian food near Café Sicilia , is cheap , family friendly and has a 5 out of 5 customer rating . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an adult restaurant in the riverside area near Express by Holiday Inn . They serve French cuisine for less than 20 pounds . They have received low customer ratings . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||With a customer rating of 3 out of 5 , Clowns is located near Clare Hall in the riverside area . This coffee shop serves Japanese food . \nname : Blue Spice | food : Chinese | price : cheap | area : riverside||There is a cheap Chinese food restaurant in the riverside area that is called Blue Spice . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : yes||There is a low priced , family friendly wine bar called The Vaults . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly pub located near the city centre . It has an average customer rating . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves English food in the moderate price range . Its customer rating is 3 out of 5 , it is not kid friendly , and it is located near the Rainbow Vegetarian Café . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||Wildwood is a pub that provides Fast food for £ 20 - 25 . Customers rate it highly . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is an adult , pub - style establishment . It serves Italian food for under 20 and is located in the city centre . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove a child friendly restaurant located near the riverside . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant in the city center , near the Express by Holiday Inn , which serves cheap fast food , it has an average customer rating and is not very family - friendly . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||A child friendly coffee shop in Riverside named Zizzi 's has low customer ratings and higher prices . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub that provide Japanese food less than £ 20 near Café Rouge \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a highly rated French restaurant in the city centre offering adults meals in the £ 20 to £ 25 range . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a restaurant providing Italian food in the high price range . \nname : Loch Fyne | food : English | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a restaurant that serves English food and they have high customer rating . They are in riverside near The Rice Boat . \nname : Green Man | price : moderate | area : city centre | family friendly : yes||In the city centre there is a moderately priced , child friendly restaurant called the Green Man . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a sushi bar located near Crowne Plaza Hotel that doesn 't allow families with children \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum offers British food at a price . They are close to the riverside and Yippee Noodle Bar . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a fast food restaurant in riverside that it kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop in Riverside , near Crown Plaza Hotel . It serves Italian food , is kids - friendly , and has a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub restaurant in Riverside . It serves Italian cuisine and has a customer rating of 1 out of 5 . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||The average rating pub called the Vaults cost less than 20 dollars and it is near by the Café Adriatic . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat in the riverside area of the city is a high end venue called The Twenty Two . It is child friendly and has a customer rating of 1 out of 5 . There is a restaurant called The Cricketers serving English food near to All Bar One . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The Golden Palace is too high priced for getting fast food at a coffee shop . But you can find it in the riverside area and people find it average overall . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House caters to wine parings and is located next to All Bar One . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop serves Chinese cuisine at reasonable prices . Children welcome . Near Burger King . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||Located in the outskirts of the city centre , The Rice Boat is a family - friendly restaurant . It has three out of five stars . \nname : The Golden Curry | food : English | price : moderate | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry is a moderately priced restaurant with a kid - friendly environment . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry provides Indian food Its customer rating is 5 out of 5 . \nname : Fitzbillies | food : Indian | price : moderate | near : The Six Bells||For a moderate price , Fitzbillies offer Indian food for a moderate price . It 's located near The Six Bells . \nname : The Rice Boat | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a family friendly , five star restaurant . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a high - priced coffee shop that serves French food in the city centre . It is not kid friendly and has a customer rating of 3 out of 5 . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : yes||Alimentum is a moderately priced , kids - friendly Indian restaurant located by the river . \nname : Loch Fyne | food : Indian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne serves Indian food near The Rice Boat in the riverside area . They have a customer rating of 3 out of 5 . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : average | area : city centre||In the city centre there is a fast food restaurant called The Phoenix . It has an average customer rating and has prices in the cheap range for Cambridge . \nname : Green Man | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly place that is near All Bar One in the riverside area . They serve Chinese food and is cheap . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||Families are welcome at The Wrestlers , premium five star fast food restaurant . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||Located near The Portland Arms in Riverside , is the family friendly establishment , The Punter , who 's prices are £ 20 and under . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family friendly pub serving Japanese food . It is near The Portland Arms . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||With a customer rating of 3 out of 5 , the Midsummer House is a somewhat popular choice for Indian food . It has moderate prices and it is located near All Bar One . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||A moderate priced Chinese food place , Midsummer House , has a customer rating of 1 out of 5 and is located near All Bar One . \nname : The Phoenix | food : Chinese | customer rating : 3 out of 5 | area : riverside||A Chinese restaurant called The Phoenix can be found on riverside . The customers rate it a 3 out of 5 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Chinese food and is moderately priced . It has a customer rating of 3 out of 5 stars , is in the riverside area , is kid friendly , and is near Express by Holiday Inn . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||There is a high priced family restaurant Green Man located in the All Bar One . \nname : Loch Fyne | food : Italian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||The Rice Boat is an Italian restaurant at Loch Fyne on the river that 's so - so . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 1 out of 5||The pub , Wildwood serves Chinese food which is moderately priced and has a customer rating of 1 out of 5 \nname : Strada | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a moderately priced fast food establishment . Located near the Rainbow Vegetarian Café . Offers a child friendly menu . Customer rating 1 out of 5 . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||For kid friendly , in the £ 20 - 25 price range , try The Waterman . \nname : The Phoenix | food : Italian | customer rating : average | area : city centre||The Phoenix in an average Italian restaurant in the city centre . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : high | family friendly : yes | near : The Portland Arms||A children friendly and high customer rated coffee shop which also serves Italian food , is The Cricketers , which is located by the riverside near The Portland Arms . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||If you are staying at the Express by Holiday Inn , then you can find a good , cheap meal at The Rice Boat just down the road . Children are welcome , and it has had some good reviews . \nname : The Golden Palace | Type : restaurant | price : high||The Golden Palace is a restaurant in the higher price bracket . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a sushi restaurant located near Yippee Noodle Bar that has a low - price menu and average ratings . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : no||The Olive Grove is a pub not child - friendly . It is located in the city center . The prices are more than £ 30 . \nname : Cotto | food : Japanese | customer rating : 5 out of 5 | family friendly : no | near : Ranch||Cotto is a Japanese restaurant with no family - friendly ambiance . It is located near Ranch with a customer rating 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a Indian coffee shop with medium prices located in riverside near Burger King . Customer Rating 1 out of 5 . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The moderately priced restaurant The Eagle in Riverside has a customer rating of 3 out of 5 . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : no||Alimentum is restaurant providing Italian food in the price less that £ 20 . It is located in the city centre but it is not family - friendly . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kid friendly Chinese restaurant near Café Rouge in Riverside . It is kid friendly and has a customer rating of 1 . \nname : The Eagle | food : Fast food | customer rating : low||One star rated The Eagle offers a complete meal deal for all . \nname : The Twenty Two | Type : pub | customer rating : 1 out of 5 | area : riverside | near : Café Sicilia||Located in the riverside area near Café Sicilia is The Twenty Two , a pub with a 1 out of 5 rating by customers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||A kid friendly Japanese coffee shop that has high ratings is close to Burger King near the riverside , the name is The Eagle . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||The Dumpling Tree near The Portland Arms offers Italian Pub fare and is kid friendly . \nname : The Punter | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia is The Punter , a coffee shop that also serves fast food . Despite the higher price range it is also child friendly and has good customer ratings . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Giraffe is a pub serving Japanese food . It is a riverside location . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue located ear Café Brazil offering cheap pub fast food \nname : The Dumpling Tree | Type : restaurant | food : English | price : cheap||The Dumpling Tree is a restaurant that serves English food . The food is in a cheap price range . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant rated 1 of 5 with high prices . Located in city centre near Express by Holiday Inn . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi its a restaurant located near center of city , offer food 5of5 star for all family \nname : Midsummer House | food : English | price : high | customer rating : average | near : All Bar One||Midsummer House is located near to All Bar One and serves English food in the high price range . The rating by customers is average . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a 3 stars coffee shop where there are low - priced food . It is in The Portland Arms located in the city centre . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a family friendly restaurant \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||There is a children - friendly restaurant , Loch Fyne providing English food . \nname : The Eagle | food : English | customer rating : low||The Eagle is a one - star restaurant which serves traditional British cuisine . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a fast food coffee shop . It is not a family - friendly establishment . It is located near The Portland Arms . Customers rate The Cricketers a 5 rating . \nname : The Rice Boat | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , The Rice Boat is a family friendly venue with a price range below £ 20 . It gets low ratings from customers . \nname : Bibimbap House | food : Italian | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House sells Italian food located riverside near Clare Hall with a price range of £ 30 plus . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne serves Italian food and has a high customer rating . They are located in the riverside area near The Rice Boat . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is kid friendly , falls in the moderate price range , and has a customer rating of 1 out of 5 . You can find this location on the riverside near The Rice Boat . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||You will be eating at Cotto that is near The Portland Arms . It is right by the riverside that serves Italian food . It is a coffee shop that only has a customer rating of 1 out of 5 . The price is also very high . \nname : Bibimbap House | food : Fast food | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant near Clare Hall in the riverside area offering moderate prices . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese place highly priced located in the center of the city . It is not children friendly and located near Express by Holiday Inn and the rating is average . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a reasonably priced family restaurant by the river with poor food and service \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes||For high rated cuisine , look no further than the kid friendly Aromi Japanese coffee shop located on the riverside . \nname : Alimentum | food : French | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap French restaurant that is family friendly and located near the riverside . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : high | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a French coffee shop called The Cricketers . It has a high customer rating with a child - friendly ethos . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre , with a low customer rating serving family - friendly Italian food in a price range less than £ 20 \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a cheap family friendly restaurant near The Rice Boat that customers have rated 5 out of 5 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 1 out of 5 | area : riverside||The Waterman at the riverside is a pub . It serves Japanese and has a customer rating of 1 out of 5 . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a kid friendly Chinese restaurant with a three star rating . The restaurant is located in riverside and has a moderate price range . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a great place for British food at reasonable prices . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||If you are looking for average food at a cheap price , the Taste of Cambridge restaurant is for you . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop . It provides Indian food and is family friendly . It has an average customer rating and is located in the city centre near Crowne Plaza Hotel . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||Highly rated , The Phoenix sushi restaurant is the place to go . Good quality food means that the prices match . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a 3 - star coffee shop beside The Bakers . It is suitable for families and price range is medium . \nname : Blue Spice | food : Indian | price : high | area : riverside||Blue Spice provides Indian food in the high price range . It is located in the riverside . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms , there is a kid - friendly coffee shop called The Cricketers that serves Japanese food . The shop has a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Located inside of Ranch , Wildwood coffee shop offers sushi at a medium price . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a Indian restaurant called The Golden Curry with 3 out of 5 customer rating located in the riverside area near Café Rouge and it is kids friendly also . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers restaurant opposite All Bar One sells pub food . \nname : Browns Cambridge | price : less than £ 20 | customer rating : average||Browns Cambridge is customer rated average and is less than 20 price range . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||There is a restaurant on the riverside named Zizzi which offers meals for less than 20 £ . \nname : The Rice Boat | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat , a Chinese restaurant has average ratings , is not children friendly and is on the high price range . Although , it is near Express by Holiday Inn in the riverside area . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is child - friendly but is very expensive . It is in the Riverside area and gains one out of five from its customers . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : city centre||The Phoenix provides Indian food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a restaurant located in riverside . Prices range from £ 20 - 25.Yes it is kid friendly and has a customer rating of 3 out of 5 . \nname : Alimentum | food : English | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a family restaurant with low prices north of the City center . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||At the riverside near Café Sicilia is The Dumpling Tree , a family friendly coffee shop for less than £ 20 . \nname : Bibimbap House | food : Japanese | area : riverside | near : The Rice Boat||Near The Rice Boat on the river side is a Japanese venue called Bibimbap House \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in City center lies Browns Cambridge . It is a family - friendly fast food coffee shop with a low customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : high||The Cambridge Blue is a highly rated Japanese restaurant . \nname : The Vaults | Type : pub | price : high | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is an expensive low rated pub located near Café Adriatic . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is an inexpensive , family friendly wine and cheese shop . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||There is an average price restaurant - Cocum - that serves French food and coffee . It has been highly rated by customers and does not allow children . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||near The Sorrento is a English restaurant called Browns Cambridge in the riverside area is child friendly . \nname : Strada | Type : restaurant | customer rating : 5 out of 5||Strada customer rating 5 out of 5 at this restaurant . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Next to Rainbow Vegetarian Café , there is a cheap Chinese food place named Strada . It is not family friendly and has an average customer rating . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||There is a moderate - priced Italian restaurant The Wrestlers with high customer rating . Not family - friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue pub , cheap Japanese food , close to Café Brazil \nname : The Olive Grove | Type : pub | food : Fast food | price : moderate | area : city centre | family friendly : no||There is a low price pub , located in the city centre , where you can get fast food . The Olive Grove pub is not kids friendly . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||Wildwood is a Fast food pub with an average customer rating and high price range . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : no||Aromi is a fast food coffee shop for adults in the riverside area . Customer satisfaction is average for this coffee shop . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : no||The Wrestlers providing English Food , cheap price range , and average costumer rating . No family - friendly \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly French restaurant costing less than £ 20 . The customer rating is average and it is located near Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree is a restaurant of cheap Sushi food , visit us . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : yes||Aromi is a pub that is family friendly with a low customer rating located in the riverside area . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a French restaurant located within the city centre with an price range of more than £ 30 . Often described as not being child friendly , The Waterman has an average customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : no||Serving Indian food for a average price , is a pub called Zizzi . Not so much a family friendly place . \nname : The Rice Boat | food : Chinese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat serves Chinese and is of okay quality it is family friendly and is located in the city centre . \nname : Alimentum | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes||There is a Chinese restaurant that has food that costs more than £ 30 in Riverside . It 's called Alimentum and is child friendly . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||By the riverside and close to Café Sicilia , there 's a coffee shop called The Dumpling Tree which welcomes families and has cheap prices . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : average | family friendly : yes||For average but cheap Indian food in a family friendly environment try The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Sitting on the riverside close to Raja Indian Cuisine , The Wrestlers is a low cost coffee shop . This is not a family friendly coffee shop . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers serves English food and is not kid friendly . It has a moderate price range and a customer rating of 3 out of 5 . \nname : Wildwood | Type : pub | food : Chinese | price : £ 20 - 25 | customer rating : high||The Chinese pub Wildwood has a high customer rating . The price ranges from twenty to twenty - five dollars . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||For a Japanese coffee Shop which is family friendly go to The Cricketers . They have a 5 out of 5 rating and is near The Portland Arms \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||A kids friendly restaurant between £ 20 - 25 is Travellers Rest Beefeater . \nname : Blue Spice | price : cheap | customer rating : average | area : riverside | family friendly : yes||At the riverside area there is a cheap place called Blue Spice . It is family friendly place with an average rating of its clients . \nname : The Plough | Type : pub | food : Italian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||An Italian pub , The Plough , has a price range of £ 20 - 25 , is kid friendly and is located near Café Rouge . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix British restaurant is located in the city centre . It is moderately priced with a one star rating . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||The Mill is a beautiful pub located in the Riverside area , with French food service and affordable prices \nname : The Twenty Two | food : English | family friendly : yes||For a children - friendly English restaurant The Twenty Two is the place to go . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||The Dumpling Tree restaurant sells Japanese food with a price Range of more than 30 pounds . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two in the city centre near The Rice Boat is a moderately priced , kid friendly restaurant with a rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a French restaurant with a price range of 20 - 25 . It is kid friendly . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is a low - priced Japanese pub by the river . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre||A coffee shop named The Golden Palace can be found at the city centre , it have Italian food and is fairly cheap . Its rating does not treat it bad either because it is fairly average \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a French restaurant that is kid friendly . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a restaurant . It is located in the city centre . I would give it 5 out of 5 . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is family - friendly and is rated average by previous customers . Located at riverside near The Rice Boat , the price range is low . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant near to Rainbow Vegetarian Café . It is not family friendly and has a rating of 1 out of 5 . It is moderately priced . \nname : The Phoenix | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Phoenix is a fast food restaurant with a five star rating \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a coffee shop that serves Italian good with a low rating called Aromi yet it is children friendly . \nname : The Plough | Type : pub | food : Italian | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is an Italian pub that is child friends and near Café Rouge , Prices are moderate . \nname : Cocum | Type : coffee shop | food : Fast food | price : high | customer rating : average | family friendly : yes||Cocum is an average rated , family friendly Fast food coffee shop with high prices . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : city centre||Located in the city centre , The Mill is a pub that serves Chinese food at less than average prices . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a charming coffee shop featuring fast food service and lower prices to £ 20 are located near Raja Indian Cuisine in the city center area \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||The Rice Boat offers fast - food by the riverside , nearby Bibimbap House . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Phoenix is a Japanese restaurant located in the centre of the city . It offers food in the average price range and has a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop . It is kids friendly and serves French food , it is located in the city centre near Raja Indian Cuisine . \nname : The Eagle | food : Indian | customer rating : high||The Eagle provides Indian food Its customer rating is high . \nname : Cotto | food : Japanese | near : Café Rouge||Near to the Café Rouge and serving Japanese food is Cotto . \nname : The Phoenix | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||The Phoenix provides Indian food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a place called , Fitzbillies coffee Shop that welcomes families . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : no||Fairly priced Loch Fyne is and adult Italian restaurant \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : no||The Olive Grove is an Indian pub and has a moderate price range . It is in the city centre and is not a kid friendly . \nname : Fitzbillies | price : high | near : Rainbow Vegetarian Café||Despite a higher price range , Fitzbillies serves fine food fit for its prices . It 's located near Rainbow Vegetarian Café . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is an average priced restaurant in the city centre near The Rice Boat . The customer rating is 3 out of 5 and it is not kids - friendly . \nname : Loch Fyne | Type : restaurant | food : French | price : £ 20 - 25 | family friendly : yes||If you want to spend between £ 20 and £ 25 , the Loch Fyne offers French cuisine in a kids friendly environment . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||The Chinese restaurant Alimentum offers food less than 20 euro and is located riverside near Yippee Noodle Bar . Alimentum has a low customer rating . \nname : Loch Fyne | food : Fast food | customer rating : average | area : city centre | near : The Rice Boat||With an average customer rating the fast food restaurant Loch Fyne can be found in the city centre near The Rice Boat . \nname : Blue Spice | food : French | price : less than £ 20 | area : city centre||The city centre has a French restaurant that is less than £ 20 named Blue Spice . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||The Eagle offers Fast food and is rates 3 out of 5 . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café there is a Chinese place , high priced place called Strada . They are children friendly and the rating is average . \nname : The Eagle | price : high | customer rating : average | area : riverside||There is a restaurant called The Eagle , along the riverside . It has an average customer rating , and a high price range . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||Try Cambridge 's city centre for children - friendly venues . Many coffee shops are average cost . If you want Fast food , the cost will be high . Check out Fitzbillies . \nname : Green Man | Type : pub | food : Chinese | area : riverside | near : Café Rouge||There is a pub called Green Man that serves Chinese food by the riverside , near Café Rouge . \nname : Cotto | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto is a fast food place that is children friendly with a customer rating of 1 out of 5 and located near Ranch . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a low rated , family friendly Chinese restaurant in the riverside area . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||The Vaults is a moderately priced pub , close to Café Adriatic , with a customer rating 1 out of 5 \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||I always love my local coffee shop , the kids are usually very friendly , the price is in a decent range and they serve Cocum which is a beautiful Japanese food . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||There is an Italian restaurant called The Waterman , located in the riverside area . It is not child - friendly but it has a high customer rating and a price range of more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a non- kid friendly fast food serving coffee shop located in the city centre . It has a moderate price range and a low customer rating of 1 out of 5 . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||Come visit Travellers Rest Beefeater located near Café Adriatic . Nestled in our beautiful riverside community , cheap prices , and 5 out of 5 customer ratings will make this place a favorite . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat a three star family - oriented restaurant is located near Express by Holiday Inn . \nname : Blue Spice | price : less than £ 20 | area : city centre||Blue Spice in the city center offers price range less than £ 20 . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is an expensive pub for families , located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop located in the city centre , close to Burger King serves fast food . It has a customer rating 3 out of 5 \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Indian food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns is a French coffee shop with a low customer rating . It is located in riverside near Clare Hall . \nname : The Twenty Two | food : French | family friendly : no||The Twenty Two is a non family - friendly French food restaurant \nname : Blue Spice | food : Indian | price : moderate | area : city centre||Blue Spice provides Indian food in the moderate price range . It is located in the city centre . \nname : The Vaults | food : French | price : more than £ 30 | family friendly : no||The Vaults providing French Food , more than £ 30 price range . No Children Friendly . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is an expensive pub that allows children and has a rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , located near Crowne Plaza Hotel in the city centre , is a family - friendly Japanese coffee shop . It has a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a fast food restaurant on the river , next to the Express by Holiday Inn that serves burgers and fries . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix has a customer rating of 5 out of 5 and is a low priced Italian restaurant . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant near Yippee Noodle Bar . The price range is 20 - 25 and has a high customer rating . It is in the city centre area . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves Fast food and is located near Café Rouge in the riverside area . Rated 5 out of 5 stars . \nname : Blue Spice | food : Indian | price : more than £ 30 | area : riverside||Blue Spice provides Indian food in the more than £ 30 price range . It is located in the riverside . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : city centre | family friendly : no||The Olive Grove is a Chinese Pub with high prices near the city centre and is not children friendly . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman has Chinese food near Crowne Plaza Hotel \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a family - friendly coffee shop near Avalon . Located in the city center , it is moderately priced and boasts a 3 out of 5 customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : high | area : city centre | near : The Sorrento||The Mill is a high class coffee shop located near The Sorrento in the city center with servers up fantastic Fast food . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||located near the Rainbow Vegetarian Café the Strada is family friendly and serves cheap Japanese food which has been rated 5 out of 5 \nname : Strada | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is an English family friendly place . With reasonable prices and a high customer rating , it can be found close to Rainbow Vegetarian Café . \nname : Fitzbillies | price : more than £ 30 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is Fitzbillies , which is child friendly and has a high customer rating . The price range is more than £ 30 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Zizzi is a high - priced , child - friendly coffee shop located riverside . It has a low customer rating . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||With an average price range of over £ 30 , Strada , a Child friendly restaurant , enjoys a high customer satisfaction rating . \nname : The Vaults | food : Italian | price : more than £ 30 | family friendly : yes||Visit The Vaults for an Italian dinner in a location that is child friendly in the price range of more than 30 euros . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove , a Japanese riverside pub , is a an adult establishment with prices less than £ 20 \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is an expensive , family friendly sushi restaurant near the river . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge serves Japanese food and is moderately priced with 3 out of 5 stars \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : yes | near : All Bar One||Green Man , a high - priced and child - friendly Fast food restaurant , can be found near All Bar One in the city centre . \nname : Green Man | Type : restaurant | area : riverside||Green Man is a riverside restaurant . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a 1 - star coffee shop providing fast food in the low price range . It is suitable for families and located beside Burger King at the north of city centre . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that offers French food with a family - friendly atmosphere . It is located in the city centre near the Crowne Plaza Hotel . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||The Golden Palace at the riverside is a restaurant with customer rating 3 out of 5 . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is conveniently located near the Express by Holiday Inn , and is a family restaurant . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The rare combo of Indian food in a coffee shop can be found at The Wrestlers . The price is high , but it is children friendly . The Wrestlers is near Raja Indian Cuisine in the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Located along the riverside , Fitzbillies is a lowly rated coffee shop , often described as not being family - friendly . Serving French food with a price range of less than £ 20 , Fitzbillies is poorly rated . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a low rated , child friendly restaurant near Café Rouge in Riverside offers French cuisine . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop that resides by riverside . They serve Japanese food and the establishment is child friendly . it 's got a low customer rating \nname : The Plough | Type : pub | food : Fast food | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a cheap adult pub that offers fast food . It is located near Café Rouge . \nname : The Waterman | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman in the riverside area offers kid - friendly French food . Customer rating is 1 out of 5 with a moderate price range . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man serves high end Italian near riverside . It is child friendly and located near All Bar One . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle Is a coffee shop that serves cheap Indian food . Family friendly with an average satisfaction rating . They are in the city center near Burger King . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : riverside||The Mill is a Indian pub located in riverside . Moderate pricing . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||The Golden Curry is a low rated English place that is family friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||By the riverside serving Japanese food is the Alimentum , it is child friendly and has a price range of more than £ 30 . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly Indian where you can get food for less than the Cambridge average . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a Fast food restaurant in the city centre . It is child friendly and has a high price range . It has a customer rating of 1 out of 5 . \nname : Midsummer House | food : English | price : less than £ 20 | customer rating : low | near : All Bar One||The cheap English restaurant Midsummer House is near All Bar One and has a low customer rating . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : no||The Zizzi pub is not family - friendly but has Fast food that is low rated . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi is a family oriented coffee shop located on the northwestern corner of the City Centre . It is a three - star facility . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum have Chinese food in moderate price , Located in city centre near Yippee Noodle Bar with a customer rating 3 out of 5 . \nname : The Eagle | food : Fast food | customer rating : 1 out of 5||The Eagle is a fast food establishment and only has a rating of 1 out of 5 . \nname : The Wrestlers | food : English | price : cheap | customer rating : average | family friendly : yes||The Wrestlers is a cheap family friendly restaurant . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace , situated in the city centre , is a coffee shop that serves Italian food with a customer rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : yes||The Aromi is a family - friendly coffee shop that serves Japanese food . It is located in the city centre and customer rating is low . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||There is an Italian restaurant that is not family - friendly in the City Centre named The Rice Boat . It is located by Express by Holiday Inn and is not expensive . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an average , moderately priced , fast food coffee shop near Café Sicilia . They are not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne fast food restaurant is inexpensive and family friendly . \nname : The Vaults | food : Italian | price : moderate | family friendly : yes||The Vaults is a moderate priced Italian restaurant . \nname : Loch Fyne | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne has fast food on the riverside with a rating of 1 out of 5 for the restaurant The Rice Boat \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : no||The Golden Curry Indian restaurant has a 5 out of 5 rating but is not family friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no||Though it 's not family - friendly , Aromi offers Japanese style coffee in the city centre . \nname : Strada | price : high | customer rating : average | family friendly : yes||The Strada has an average customer rating and is children friendly . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the less than £ 20 price range . It is near The Bakers . \nname : The Cambridge Blue | Type : pub | food : English | price : less than £ 20 | near : Café Brazil||If you want a full English Breakfast , then try The Cambridge Blue pub . It has a British feel to it , and low prices . Just along from Café Brazil . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : high||For a more luxury Fast food experience , visit The Dumpling Tree . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice in Riverside is a restaurant with a less than 20 price range . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : no||Loch Fyne restaurant serves French food but is not family - friendly \nname : Cotto | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Italian Cotto is near yes 1 out of 5 at Ranch . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada provides Chinese food in the cheap price range . It is near Rainbow Vegetarian Café . Its customer rating is average . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Mid Priced British restaurant located near All Bar One . The Green Man is open to families . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : city centre||Located in the city centre , Blue Spice is an Italian restaurant with a price range of less than £ 20 . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Near The Rice Boat in Riverside , there 's a fast food place called Bibimbap House . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||There is a high price range coffee shop The Waterman located close to the center . of the city that provides family - style dining . It has a superb view across the river . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : yes | near : All Bar One||Near All Bar One in the city centre , an expensive and child - friendly Fast food place by the name of Green Man can be found . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||The Waterman is a sushi restaurant with a great family atmosphere . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||Zizzi is a pub establishment serving Chinese food . It is child - friendly . \nname : The Phoenix | food : Fast food | customer rating : low | area : city centre||The Phoenix is a Luton based fast food establishment offering budget food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||An averagely priced , highly rated Italian coffee shop in the city centre which isn 't kid friendly is called Fitzbillies . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||Loch Fyne is a restaurant that is family friendly and in the low price range . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a 5 star coffee and sushi bar located near Clare Hall . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes||Giraffe is Fast food family and friendly restaurant located in city centre . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults is a well - priced family restaurant . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a five - star , family - friendly coffee shop . It is located near The Portland Arms . \nname : The Waterman | price : less than £ 20 | family friendly : no||The Waterman is a restaurant providing low - priced foods . Not all age group are allowed . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||There 's a family friendly , coffee and Indian food restaurant in the city centre called Fitzbillies . It is highly priced and highly rated . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Brazil||The Vaults is a moderately priced coffee shop in the city centre . It is near Café Brazil and has a customer rating of 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop with great Italian food not good for family and a high price is near to Raja Indian Cuisine \nname : Loch Fyne | food : Japanese | customer rating : low | area : city centre | near : The Rice Boat||Japanese restaurant called Loch Fyne has a low customer rating and is in the city centre near The Rice Boat \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside||A pub in the Riverside area , The Mill , serves fast food at average prices . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Phoenix is a Japanese restaurant located in the city centre . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : no | near : Café Rouge||The Plough , near Café Rouge is a reasonably priced Italian Pub . It is not child friendly . \nname : The Phoenix | food : Fast food | price : high | customer rating : average | area : riverside||The Phoenix is a fast food restaurant , located north of the City center , the food is very expensive but very good . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||The Vaults is an American eatery that is family friendly . It is in the upper price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||This place in Riverside , called Aromi is a coffee shop style place that serves Indian food and has a great play area for kids but the ratings are 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes||The poor rated , Cocum , is a high priced Italian coffee shop \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : no | near : The Portland Arms||The Punter is a highly priced , child unfriendly restaurant by the riverside near to The Portland Arms . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Midsummer House is serving up it 's highly rated English food and can be found near Café Rouge . \nname : Alimentum | food : French | price : cheap | area : riverside | family friendly : yes||There is a cheap family friendly French restaurant Alimentum in the area of riverside . \nname : The Eagle | food : Chinese | customer rating : 3 out of 5||With a customer rating of 3 out of 5 , The Eagle serves Chinese food . \nname : Bibimbap House | food : Italian | price : high | area : riverside | near : Clare Hall||Bibimbap House serves Italian food at a high price range . They are located in riverside near Clare Hall . \nname : The Punter | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||It has a low customer rating , and is not family - friendly , but The Punter coffee shop offers Italian food at a less than £ 20 price range . It is near Café Sicilia . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the moderate price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 1 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 3 out of 5||The Cambridge Blue is an English restaurant with a customer rating of 3 out of 5 . \nname : Alimentum | food : English | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||There is a English restaurant near the Yippee Noodle Bar that has a high price range and an average customer rating called Alimentum . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Cotto is an Italian restaurant near Ranch that is kid - friendly and has a high customer rating . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly rated English restaurant near the Express by Holiday Inn . It is child friendly and the price range is more than more than £ 30 . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||Moderately priced , average rated Indian coffee shop called Cocum is not family friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto can be found north of the city center close to The Portland Arms , with a view of the river . The coffee shop 's pricey sushi dishes have received 5 - star ratings by reviewers . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||There is a coffee shop called Fitzbillies that serves Indian food whose price range is more than £ 30 . The restaurant is located in riverside and is not children friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop is a low priced restaurant in the city centre , east of Burger King . You can eat - in or take - out . Not family friendly . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man , family - friendly city center location for all your Italian cuisine . Great value for one and situated within walking distance of All Bar One \nname : The Golden Curry | food : Japanese | price : high | family friendly : yes | near : The Bakers||The Golden Curry near The Bakers with a high price range serves Japanese food . They are children friendly . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||Zizzi is an average family friendly Italian pub . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies a coffee shop is located in the city centre . It has a high customer rating and is kid friendly . It serves Indian food at prices ranging from £ 20 - 25 . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||Offering a family - friendly atmosphere and fast food , The Twenty Two is located along the riverside . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||There is a child - friendly restaurant with a low customer rating named Cocum . \nname : Cocum | Type : pub | price : moderate | customer rating : 3 out of 5 | family friendly : yes||With a customer rating of 3 out of 5 Cocum is a kids friendly pub . \nname : Wildwood | Type : restaurant | customer rating : low | near : Café Rouge||Wildwood restaurant near Café Rouge has a low customer Rating \nname : The Phoenix | food : English | customer rating : 1 out of 5 | area : riverside||The Phoenix provides English food in riverside with a customer rating of 1 out of 5 . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman is an average rated adult only Fast food eatery located in riverside with over average prices \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||There is a restaurant named Wildwood located near Café Rouge . The customer rating is high . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Next to Raja Indian Cuisine there is a non family friendly coffee shop , it is called The Wrestlers and is low priced . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat has a 1 star rating and provides Chinese Food in the moderate price range . It is located in the centre of the city near the Express by Holiday Inn and is kid friendly . \nname : Strada | Type : pub | food : Indian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is an Indian food style pub near the Yippee Noodle Bar . It gets 1 out of 5 stars from its customers . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||In the riverside area , The Olive Grove is a child friend pub that offers English food at a remarkable price rate . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant near the Express by Holiday Inn . It sells moderately priced French food , is not child friendly and is only rated one out of five by customers . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||Strada , located near Yippee Noodle Bar , is a pub serving French food . The customer rating is low . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an average Japanese coffee shop in the low price range . It is located near The Portland Arms , riverside . \nname : Loch Fyne | food : English | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne serves English cuisine . It is located in the city centre near The Rice Boat . They currently have a low customer rating . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Near the Crown Plaza Hotel is The Waterman . It serves Italian food and is kid friendly . \nname : Midsummer House | food : Chinese | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House is located near Café Rouge and features Chinese cuisine . This establishment earned a customer rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : no||A family - friendly pub serving Indian food downtown is Giraffe . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a cheap Italian food coffee shop in the city centre , near Raja Indian Cuisine . It is not family - friendly . \nname : The Rice Boat | food : English | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is an English kids friendly eatery that 's located by the riverside . The Rice Boat receives great reviews from customers that go there . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||Zizzi is a family friendly pub offering Japanese food . It is located in the city centre and has a one star rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : less than £ 20 | family friendly : yes||Loch Fyne is a restaurant providing Chinese food in the less than £ 20 price range . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in riverside near the Crowne Plaza Hotel the Taste of Cambridge is a coffee shop offering French food and is very kid friendly \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : no | near : The Portland Arms||The Dumpling Tree is a non - family - friendly Italian pub located near The Portland Arms . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre The Rice Boat is serving cheap Chinese food with a 5 out of 5 rating near Express by Holiday Inn \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : yes | near : The Bakers||The Giraffe is a coffee shop located near The Bakers , it is child - friendly with with a low customer rating , the price range is £ 30 plus . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a baller grocery store just north of the city center . They provide the best food at the best prices \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||For cheap Japanese food try The Golden Curry . It welcomes families and is near The Bakers . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||The Cocum Restaurant is children friendly but is rated 1 out of 5 \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||A low - reviewed pub , Wildwood sushi serves up traditional Japanese fare . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||French , family friendly , The Waterman restaurant is located near the Crowne Plaza Hotel . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : no||Zizzi is a pub providing Chinese food Its customer rating is average . \nname : Travellers Rest Beefeater | Type : restaurant | price : more than £ 30 | family friendly : yes||Price range of more than £ 30 is the restaurant Travellers Rest Beefeater also children friendly \nname : Loch Fyne | Type : restaurant | food : Chinese | price : cheap | family friendly : yes||Loch Fyne is a cheap family friendly Chinese restaurant . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is an Italian coffee shop near The Portland Arms . They have a 5 out of 5 rating . \nname : Strada | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada offers Indian food in the average price range with a high customer rating and a kid friendly atmosphere . The venue is located near the Rainbow Vegetarian Café . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop near Avalon is located on the riverside . It has a customer rating of 5 out of 5 . It is children friendly . The price range is above average . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a medium price restaurant in Yippee Noodle Bar that offers breakfast meals with low ratings . \nname : Blue Spice | food : Fast food | price : less than £ 20 | area : riverside||Blue Spice is an inexpensive restaurant . Blue Spice offers fast food options like burgers and fries . You can get soda at Blue Spice \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : city centre | near : Yippee Noodle Bar||For a city centre French restaurant near to the Yippee Noodle Bar , an average rated place that is less than £ 20 the Alimentum is for you \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||Located near the Travellers Rest Beefeater , Café Adriatic is a high end venue near the riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia , there is a cheap Italian coffee shop named The Punter . It is family - friendly , and customers rated it 5 out of 5 . \nname : Loch Fyne | food : English | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is located on the river , close to The Rice Boat , but does not have good reviews \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum Chinese food has a 3 out of 5 customer rating serving moderate price range food near Yippee Noodle Bar in the riverside area . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix is a medium priced burger restaurant in city centre . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix , is locate in a riverside area , and offers Indian food in a moderate price range , with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||With a 1 out of 5 star rating , I would stay away from fast food place called The Rice Boat in riverside near the Express by Holiday Inn . The Rice Boat is family friendly but it 's expensive \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly French food venue that offers prices less than £ 20 . It is located in the city centre but has a low customer rating . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Near The Sorrento , the Taste of Cambridge pub offers a family friendly environment on the riverside . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the less than £ 20 price range . It is located in the riverside . It is near Burger King . Its customer rating is low . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Fast food located in riverside near Clare Hall \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||Zizzi is a pub with Chinese food and an average rating \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not a kid friendly fast food option . However , it is moderately priced and has a customer rating of 3 out of 5 . It is located near Express by Holiday Inn in the city centre . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Visit Cotto , a moderately priced coffee shop and sushi bar near The Portland Arms . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two is Japanese family friendly restaurant . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children friendly coffee shop in riverside near Avalon . It has a low customer rating , as well as a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | near : The Portland Arms||Located in the city centre near The Portland Arms , Cotto is a Japanese coffee shop with an average rating and costs less than £ 20 . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Along the riverside near Café Rouge is The Golden Curry . It serves Italian food in a family - friendly environment . It has a low customer rating . \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Fast food restaurant in the centre of the city near the Yippee Noodle Bar with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There is a coffee shop Fitzbillies located in the city centre . It provides French food with with price range less than £ 20 . It is family - friendly , though its customer rating is low . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||The Travellers Rest Beefeater is a child - friendly restaurant and has a moderate price range . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop in the city centre in the high price range . It is not child friendly and has a rating of 3 out of 5 . \nname : Midsummer House | food : Indian | price : less than £ 20 | customer rating : low | near : All Bar One||Providing Indian food at a low price of less than £ 20 is Midsummer House , located near All Bar One . It has a low customer rating . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||An excellent affordable family friendly pub is Cocum . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||The Mill is a pub near the river and offers mid - range pricing . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid friendly Japanese restaurant with a moderate price range . Customers rated The Wrestlers 1 out of 5 . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||Green Man is a cheap family friendly restaurant by the riverside . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||Taste of Cambridge is a high priced restaurant . Its customer rating is 3 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||The Golden Curry serves Japanese food . It is family friendly and rated as average by customers . \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a pub near the riverside in the moderate price range but with a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto coffee shop offers 5 star fast food at reasonable prices and can be found close to the river and not far from The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside||Cheap riverside coffee shop The Golden Palace has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside||The Golden Palace is a cheap , average coffee shop located in Riverside . Further , there is Indian food . , \nname : Loch Fyne | Type : restaurant | food : Indian | family friendly : yes||There is a family friendly Indian restaurant called Loch Fyne . \nname : The Rice Boat | food : English | area : riverside||The Rice Boat in riverside serves English food . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||French food for less than £ 20 pounds can be found in riverside ear Clare Hall at a place called Bibimbap House \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : high | family friendly : yes||There is a high rated children - friendly pub for more than £ 30 , names Cocum . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||A coffee shop near The Bakers called Giraffe , is rated 3 out of 5 by its customers . It is a kid friendly coffee shop with an average price range . \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix is a three - star rated establishment on the river near the city centre . \nname : Wildwood | Type : pub | food : French | price : less than £ 20 | customer rating : average||There is a pub called Wildwood that is cheap and offers wine . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kid friendly pub restaurant . It is located near Ranch and has a 3 out of 5 customer rating . \nname : Loch Fyne | food : Indian | customer rating : low | area : city centre | near : The Rice Boat||The Loch Fyne serves Indian food , has a low customer rating , is located in the city centre , and is near The Rice Boat . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry serves average Indian food and is family friendly . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||Loch Fyne is a restaurant that sells Chinese food . It is family friendly \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||There is Loch Fyne a child friendly Japanese restaurant . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||If you 're nearby Café Rouge , you can give the restaurant Wildwood a try , although it currently gets low ratings from other customers - a 1 out of 5 . \nname : Strada | Type : pub | food : Indian | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a pub serving Indian food near Yippee Noodle Bar . It has a customer rating of three . \nname : The Waterman | price : less than £ 20 | family friendly : yes||With a price range of less than £ 20 per person , The Waterman offers a family oriented experience . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults is a cheap pub near Café Adriatic that has average ratings . \nname : The Phoenix | food : Indian | price : high | customer rating : average | area : riverside||The Phoenix serves Indian food , is in the high price range and has an average customer rating . It is in the riverside area . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : city centre | near : Clare Hall||If you are searching for a French coffee shop , near the city center and Clare Hall , Clowns might be for you . The customer rating are average . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a highly rated middle priced restaurant that serves American food . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman provides Chinese food in the high price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Rated 1 out of 5 , Aromi is a kid friendly Japanese coffee shop located in the riverside area . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : no||The Travellers Rest Beefeater is an adult only cheat restaurant . \nname : Fitzbillies | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn is a child friendly place called Fitzbillies . The price is £ 30 and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : restaurant | food : Indian | near : All Bar One||The Cricketers is a restaurant providing Indian food It is near All Bar One . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||The Waterman pub is a low - priced pub . It is near the city Centre . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies coffee Shop is an inexpensive adult only environment north of the city center . \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||The Cocum is a cheap , family - friendly pub with average customer ratings . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is an restaurant providing Indian food in the upper price range , located in the riverside area . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly Indian coffee shop in riverside with an average rating . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||A French place called Fitzbillies near The Six Bells has a price range of moire than £ 30 . \nname : The Rice Boat | food : Indian | area : riverside||Located on the riverside , The Rice Boat is a restaurant that serves Indian food . \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The family friendly coffee and sushi restaurant called The Punter has 5 stars , is mid - priced and is located near Café Sicilia . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : yes||Outside of the City centre is a family friendly , one star restaurant called The Rice Boat . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||In the Riverside area near Café Rouge there is a family friendly restaurant called The Golden Curry , it serves French food and boasts a 5 out of 5 customer rating . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : no||The Giraffe pub is not family - friendly , but offers Italian food in riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter moderate price for Italian food for kids at the coffee shop near Café Sicilia . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix offers English food and has low customer ratings . Price range is less than £ 20 , and is located in the city centre . \nname : Clowns | price : less than £ 20 | family friendly : no | near : Café Sicilia||Clowns is a family - friendly restaurant in the less than £ 20 price range neat Café Sicilia . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kids friendly coffee shop in Riverside near Burger King that serves Italian food for £ 20 - 25 . It has a high customer rating . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : riverside | near : Clare Hall||Clowns serves French food near Clare Hall in the riverside area . It is a low - rated coffee shop . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada serves Japanese food at a price range of L20 - 25 . It is kids friendly and is near the Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop near Burger King in city center has a high price range more than £ 30 . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : no||The Rice Boat restaurant serves Italian food and is in the city centre , but it 's ratings are average and it isn 't family - friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes||While child friendly the Japanese coffee shop Cocum has a low customer rating and a price range of more than 30 euros . \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||The Eagle on the riverside is more than £ 30 and has a low customer rating , \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly rated sushi restaurant in City centre . They are and inexpensive and family friendly . They are located near Express by Holiday Inn . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies is a high priced Italian restaurant near The Six Bells \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Price range high , The Rice Boat , Indian food in Riverside near Express by Holiday Inn , has a customer rating of 1 out of 5 . No Children allowed . \nname : The Golden Curry | family friendly : no | near : The Six Bells||The Golden Curry is near The Six Bells and is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located in the city centre near the Crowne Plaza Hotel , Taste of Cambridge is not a family - friendly fast food restaurant and coffee shop . \nname : Bibimbap House | food : English | area : city centre | near : The Rice Boat||An English restaurant , Bibimbap House , is in the city centre near The Rice Boat . \nname : The Eagle | price : high | customer rating : 3 out of 5 | area : city centre||The Eagle in the city centre has a high price range and a customer rating of 3 out of 5 . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a sushi restaurant located next to All Bar One on the riverside . \nname : The Mill | Type : pub | food : Japanese | price : moderate | area : riverside||The Mill is a pub that is located outside the city centre the has food items that are moderately priced . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is located near Café Sicilia and is a coffee shop that sells food at a mid - price range . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : no||Zizzis pub offers Italian food for people not interested in family dining with average customer ratings . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , is a moderately priced restaurant with a customer rating of 3 out of 5 called The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||The new Italian coffee shop , Fitzbillies , offers great food and service for a higher price in the centre of town . \nname : The Phoenix | food : Italian | customer rating : 1 out of 5 | area : riverside||An Italian venue with a customer rating of 1 out of 5 called The Phoenix is on the riverside . \nname : The Golden Curry | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry locate near to The Bakers provides Chinese food at price range of £ 20 - 25 . Kids are welcome . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||A low customer rated restaurant in the city centre called Blue Spice cost no more than 30 euros and is not children friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a French coffee shop . It is in the riverside area , is child friendly and has a customer rating of 3 out of 5 . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||Find Alimentum in the riverside area , serving low price Italian food where families are welcome . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop situated right by the river . The shop offers a range of snacks , wine and coffee . The Eagle is low priced and rated a 3 out of 5 stars . The Eagle is located near Burger King . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : yes | near : The Sorrento||For a family friendly Indian meal in the city centre try Browns Cambridge . It is near The Sorrento . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has a high price range and customer rating of 1 out of 5 . It is near Rainbow Vegetarian Café . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Riverside , near Café Rouge , is the family friendly place , low rated by customers , and serving English food named The Golden Curry . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Browns Cambridge is a costly Japanese sushi restaurant , with a 1 star rating \nname : The Mill | Type : pub | food : Italian | price : moderate | area : riverside||The Mill is a pub located in the area of riverside . \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : no||The Olive Grove is a fine pub , moderately priced in the city centre . Kids are not allowed . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||Yes , you can eat Italian at the The Waterman near The Waterman \nname : Aromi | Type : restaurant | food : Indian | area : city centre||The Aromi is an Indian restaurant in the city centre . \nname : Green Man | food : French | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Down from All Bar One , Green Man is a moderately priced family restaurant \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a pub serving sushi in the high price range . \nname : Midsummer House | food : Fast food | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House near All Bar One is a fast food place with a high customer rating and a price range of £ 20 - 25 . \nname : The Golden Curry | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is a family - friendly fast food restaurant near Café Rouge in the city centre . It has a low customer rating . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge offers burgers and fries and is a five star restaurant . Browns Cambridge is an expensive restaurant . \nname : Wildwood | Type : coffee shop | food : Fast food | price : high | customer rating : average | near : Ranch||Wildwood classy coffee shop near the Ranch serving Fast food . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a French coffee shop near the Crowne Plaza Hotel that is not family - friendly and located in the city centre . \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter is a highly - rated coffee shop serving Italian cuisine with prices averaging from 20 to 25 pounds . Please note , however , that The Punter is not a kid - friendly environment . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||The cheap coffee shop dubbed Giraffe near The Bakers is an award winning adult coffee shop . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice is located in Riverside and has a price range of less than £ 20 . \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Indian food and is family friendly . It has a customer rating of 3 out of 5 . It is located near Café Rouge near the river . \nname : Cotto | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||There is a children - friendly , Japanese restaurant that was rated as a 3 out of 5 , near Ranch Cotto . \nname : Cotto | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||In the city centre of The Portland Arms is a high rated coffee shop named Cotto . This fast food price range is £ 20 - 25 . \nname : Green Man | Type : pub | food : French | area : riverside | near : Café Rouge||Green Man is a pub located near Café Rouge . This riverside pub serves French food \nname : Alimentum | food : Fast food | price : high | area : city centre | family friendly : no||A high - priced Fast food place near the center of the city , named Alimentum , not kid friendly . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Browns Cambridge has a low customer rating . it serves Japanese food and has a price range of more than £ 30 . \nname : Loch Fyne | food : Indian | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is in the riverside area near The Rice Boat . It serves highly rated Indian food . \nname : Loch Fyne | food : Fast food | customer rating : low | area : city centre | near : The Rice Boat||Loch Fyne serves fast food and is located near The Rice Boat in the city centre but they have low customer ratings . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||A mid - range , three - star , family , sushi restaurant in town is The Wrestlers . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : yes||A reasonably - priced family - friendly coffee shop , the 3 - star ' Cocum ' serves a variety of Italian fare . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly coffee shop serving Japanese food . It can be found near the Crowne Plaza Hotel near city centre . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is family friendly coffee shop that has a price range of £ 20 , and serves Japanese Food . It 's near Raja Indian Cuisine by the riverside . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||The Eagle is a high rated restaurant on the riverside with dishes starting from £ 20 - 25 \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix has a price range of £ 20 - 25 and has a high customer rating . It serves Indian food and is located near riverside . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||The Phoenix serves expensive English food and is located by the river . It is an okay place to eat . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop near The Bakers . It is highly rated by its customers and in the upper price range . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving Indian food with a high price range , receiving a customer rating of 1 out of 5 . It is in the riverside area near The Portland Arms . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||There is an average family - friendly restaurant in the city center named The Waterman where you can eat Japanese food for under £ 20 . \nname : Travellers Rest Beefeater | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||At City Centre , we have a cheaply priced place named Travellers Rest Beefeater , near the Café Adriatic with a Customer Rating of 5 out of 5 . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is more high price restaurant that is children Friendly with great food options . It is located near The Bakers and has a variety of food . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : no||The Golden Curry is a fast food restaurant attracting low customer ratings and is not family - friendly . \nname : Browns Cambridge | food : English | price : cheap | customer rating : average||Browns Cambridge is a 3 star restaurant thats served breakfast , lunch , and dinner . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||A 5 out of 5 customer rated French food restaurant is called The Golden Curry . It is not family - friendly , but located in the center of the city near Café Rouge . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||High customer rated , Yippee Noodle Bar in city centre , price Range £ 20 - 25 , called Alimentum service French food . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||There 's a child friendly establishment by the riverside which serves Italian food . It 's called Browns Cambridge and is near The Sorrento . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||A new coffee shop , Blue Spice , has opened on the river near Avalon . Its expensive menu will appeal to children and adults . 3 out of 5 would recommend . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a five star sushi restaurant located near to the Yippee Noodle Bar \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : no||The Giraffe is an English pub situated next to the river and is not suitable for families . \nname : Zizzi | Type : pub | food : Fast food | customer rating : low | family friendly : yes||There is a family friendly pub Zizzi located in City Centre . \nname : Loch Fyne | food : Chinese | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is an average rated Chinese restaurant in the riverside area . It is near The Rice Boat . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is located at the city centre , near Café Rouge . It offers Fast food , and a non - family - friendly atmosphere . Rated average . \nname : The Phoenix | food : Indian | customer rating : average | area : city centre||The Phoenix is located in the city centre . Offering average Indian food . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||There is a restaurant named The Golden Palace which costs more than £ 30 to eat here . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||Italian inspired The Rice Boat has a price range of more than £ 30 and is not children friendly . They have a high customer rating and are located in the riverside area near Express by Holiday Inn . \nname : Zizzi | Type : pub | food : Italian | customer rating : 5 out of 5 | family friendly : no||Zizzi is a highly rated pub serving Italian food . It is not family - friendly . \nname : Bibimbap House | food : Indian | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House in a venue that offers Indian food . It is located near Clare Hall in riverside and it 's prices range from £ 20 - 25 . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a children - friendly pub near Ranch . It is rated at 1 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||This customer approved Italian restaurant is called The Cambridge Blue . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves low - priced fast food . It has a 1 out of 5 customer rating , and it is located near The Portland Arms , by the river . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman has a customer rating of 3 out of 5 and has a high price range . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . This is a children friendly offering Italian food , it is slightly expensive at food more than £ 30.00 however has a high rating . \nname : The Phoenix | food : Indian | customer rating : 5 out of 5 | area : riverside||The Phoenix is an Indian restaurant located in riverside . Customers give it a 5 out of 5 . \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||The riverside restaurant The Green Man is a traditional British restaurant in the higher price bracket . The atmosphere is family friendly and it is located close to All Bar One . \nname : Blue Spice | food : Fast food | price : moderate | area : riverside||Blue Spice Located in City centre offers great food with view of the river \nname : Browns Cambridge | food : French | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge offers French dining at over £ 30 and is rated 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Poorly recommended coffee shop Cotto serves fast food at reasonable prices , it is sited on the banks of the Thames near The Portland Arms . \nname : The Vaults | food : Japanese | price : high | family friendly : yes||The Vaults is classy Japanese restaurant with a high price range that is children friendly . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Located in riverside , near Burger King , is The Eagle , a French coffee shop that is family - friendly and has average prices and an average rating . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Rice Boat is located near the center of the city and serves Japanese food with a five star experience ; not recommended for family dining . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge is a restaurant that serves high - priced Japanese food . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Fast food and coffee shop Clowns Clare Hall riverside 1 out of 5 \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a 5 out of 5 pub in Riverside named Aromi . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||There is a pub with an average customer rating in the riverside area called The Twenty Two . It is near Café Sicilia . \nname : Strada | Type : pub | food : English | customer rating : 5 out of 5 | near : Yippee Noodle Bar||The English restaurant with the perfect customer rating near the Yippee Noodle Bar , is called Strada \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||Wildwood is a great burger restaurant . I love it there . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a restaurant offering family friendly service , their customer rating is average \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree , a kid - friendly pub near The Portland Arms , serves English food . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||In the city centre , there is the Blue Spice , which is cheap , medium rated and non - kids friendly . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||An average - rated and highly - priced riverside coffee shop called The Vaults is located near Café Brazil . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||Loch Fyne is a mid priced family safe restaurant . \nname : Bibimbap House | food : Italian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House offers moderately priced Italian food . It is located in the riverside area near Clare Hall . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop with a moderate price range that has Japanese food and is located in city centre near Raja Indian Cuisine and is not kid friendly . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The riverside French pub , The Olive Grove has a price range of £ 20 - 25 and is kid friendly . \nname : The Punter | food : English | price : high||An expensive English restaurant is The Punter . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||In riverside there is a venue called Browns Cambridge . This is a child friendly English venue near The Sorrento . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop style place in riverside that sells Japanese food , called Taste of Cambridge . It is also kid friendly and located near Crowne Plaza Hotel . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop located in the city centre near The Portland Arms . It offers French food in an average price range of £ 20 - 25 . Customers give this establishment a high rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly Italian coffee shop . It is located in the city centre near the Crowne Plaza Hotel and its customer ratings are average . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Although Alimentum has a low customer rating , the French food they serve is at an affordable price range of £ 20 . Alimentum is located at the city centre near the Yippee Noodle Bar . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||there is a nice coffee shop with high customer ratings that does fast food and is child friendly called The Cricketers down near The Portland Arms \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||For expensive pasta dishes , try 3 - star rates Alimentum near Yippee Noodle Bar . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Zizzi is kids friendly coffee shop with a moderate price range and a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue is a high priced pub near Café Brazil which serves Italian food . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman offers Indian food . The price range is moderate . The customer rating is 3 out of 5 . It is located in the riverside area and it is not kids friendly . \nname : Strada | Type : restaurant | customer rating : high||Highly rated restaurant Strada \nname : Cotto | food : Indian | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is 3 out of 5 . \nname : Fitzbillies | food : French | price : cheap | near : The Six Bells||Fitzbillies is a cheap French restaurant near The Six Bells . \nname : Browns Cambridge | food : French | price : high | customer rating : 3 out of 5||Browns Cambridge has a customer rating of 3 out of 5 . They serve French food . The price is high . \nname : The Punter | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a mid range Japanese coffee shop with low customer ratings . It is family friendly and is located near Café Sicilia . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop providing Indian food . It is located in the city centre and is family friendly . It has a low customer rating . \nname : The Golden Curry | food : Japanese | price : cheap | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry is a family friendly Japanese restaurant with a cheap price range . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||Located in riverside near The Sorrento , the Taste of Cambridge is a kid friendly pub . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : city centre||Located in the city centre is The Phoenix . It has a customer rating of 3 out of 5 and offers French food . It has a high price range . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Riverside and family friendly , Browns Cambridge is a fast food place near The Sorrento . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Indian Cuisine from Alimentum is highly rated and is well priced . It is located in riverside near to Yippee Noodle Bar . \nname : The Plough | Type : pub | food : Indian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub that serves Indian food in the low price range . It is family friendly and located near Café Rouge . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian restaurant . It is family friendly . \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is coffee shop with fast food near the Ranch . It is called the Wildwood and has a cheap price range . It has a customer rating of 5 out of 5 . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Located near The Six Bells , Fitzbillies offers Japanese food at an average price range of £ 20 - 25 . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater has a 3 out of 5 rating . it is located in riverside by Café Adriatic . \nname : Fitzbillies | food : English | price : more than £ 30 | near : The Six Bells||English food priced more than £ 30 is served at Fitzbillies . It is located near The Six Bells . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two a children friendly Italian restaurant located in Riverside . \nname : Loch Fyne | food : Japanese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne , a Japanese restaurant in city centre near The Rice Boat has a very good customer rating \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | near : Café Brazil||The Vaults located near Café Brazil in near the riverside is a coffee shop in the price range of less than 20 Euros . It boasts and average customer rating . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada Japanese food has low customer ratings . They are a family friendly establishment , located near Rainbow Vegetarian Café . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is located near the Rainbow Vegetarian Café offering fast food . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man is a fast food restaurant near All Bar One and the riverside . It is child friendly . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||By the riverside , you will find top rated Indian food at The Rice Boat . They do not cater for families . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman provides Indian food in the moderate price range . It is located in the riverside . Its customer rating is 3 out of 5 . \nname : Cotto | food : Chinese | near : Café Rouge||For great Chinese food try Cotto near Café Rouge . \nname : Fitzbillies | price : cheap | near : Rainbow Vegetarian Café||Fitzbillies are cheap around Rainbow Vegetarian Café \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||With a customer rating of 1 out of 5 and a high price range , Wildwood is a pub serving Italian food . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||Near Café Sicilia is The Dumpling Tree , which is a cheap yet family friendly riverside coffee shop . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 1 out of 5||The restaurant Browns Cambridge offers Indian food in a moderate price range with a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : riverside||The pub The Waterman serves Indian food but has a low rating . It is located in Riverside . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||The Wildwood serves English pub food with a customer rating of 3 out of 5 in a moderate price range . \nname : Green Man | food : French | price : moderate | area : city centre | family friendly : no | near : All Bar One||Green Man is a French restaurant near All Bar One in the city centre . It has a moderate price range and is not child friendly . \nname : Blue Spice | price : cheap | area : riverside||Blue Spice is a cheap restaurant located by the riverside . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto serves Japanese food at higher than average prices with low ratings . It is located near the riverside close to The Portland Arms . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a 5 star , cheap coffee shop that serves fast food . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||On the outskirts of the city is a fair - priced coffee shop called The Golden Palace . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||The Cricketers is a restaurant located near the All Bar One that provides Italian food . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||Cotto is a cheap venue in the riverside area near All Bar One . \nname : The Punter | food : French | price : more than £ 30||The Punter sells French cuisine with food from £ 30 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||There is an establishment serving Japanese food in the city centre near Express by Holiday Inn called The Rice Boat . It is not child friendly and the price range is more than £ 30 . \nname : Strada | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||Strada is a kids friendly place that is low price and has a 3 out of 5 customer rating . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||Japanese food with low customer rating called The Phoenix is expensive and in the city centre \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Located next to All Bar One , Midsummer House is an excellent - rated sushi restaurant . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House is Japanese restaurant with a low customer service . It 's near Café Rouge \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop , situated near Café Sicilia , has received excellent customer rating . It is a children friendly establishment serving expensive Japanese food . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a restaurant providing full meals in the low price range . It is located next to The Bakers . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||With an outstanding 5 out of 5 rating , The Golden Curry serves and dishes up some tasty Indian food . However it is not family friendly . The Golden Curry can be found in the city centre near Café Rouge . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Sushi restaurant The Rice Boat , is a 3 star , family friendly , riverside location . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is an expensive coffee shop with very high ratings . It is located in the city centre close to the riverside area . Zizzi is also family friendly . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies is a place with prices over £ 30 , located near the Rainbow Vegetarian Café . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family - friendly restaurant , not far from the Rainbow Vegetarian Café in Cambridge , that serves alcoholic beverages , cheeses and soups . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a child friendly place to eat near The Rice Boat on the riverside . Customers rate it 5 out of 5 and the average meal comes out at more than £ 30 . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : no||Zizzi is pub that serves French food with an average customer rating . It is a non family - friendly pub . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a pub offering French food in the riverside area with an average customer rating . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||The Bibimbap House , serves English food at a moderate price range and is located near , Clare Hall in the riverside area . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Indian food in the high price range . It is located in the city centre . \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a Japanese restaurant located in city centre . It is not family - friendly . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 1 out of 5||There is a moderate priced pub that serves Indian food , called Wildwood , with a low customer rating of 1 out of 5 . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||A place that sells cheap pub food is The Golden Palace in Riverside near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is is cheap Chinese food place located in the riverside area near the Express by Holiday Inn . It is family friendly , has an average customer rating , and has a cheap price range . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||There is a restaurant that serves French foods near All Bar One named Midsummer House . Even though it has a low customer rating the price range is affordable . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||There is a high priced Italian restaurant named Alimentum . It is in riverside and is child friendly . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a French restaurant near Rainbow Vegetarian Café . It has an average customer rating and is not family - friendly . Prices are less than 20 pounds . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Near the river , there 's an expensive , family - friendly coffee shop called Zizzi . \nname : The Rice Boat | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no||Rated 5 out of 5 by customers , The Rice Boat serves fast food by the riverside . It is not kid - friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing fast food in the low price range . It is located near the Riverside area and customers have rated it poorly . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a non - child friendly fast food restaurant located in the city centre near Express by Holiday Inn . It has a high price range and average customer rating . \nname : The Golden Palace | Type : restaurant | price : more than £ 30||The restaurant with prices more than £ 30 is The Golden Palace . \nname : The Eagle | food : Japanese | customer rating : average||The Eagle serves sushi and has a three star customer rating . \nname : Alimentum | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||There is an expensive restaurant named Alimentum near the Yippee Noodle Bar in Riverside . They offer Japanese food and have 3 out of 5 in customer ratings . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry restaurant is not Japanese . It is an Indian restaurant . It has a low customer approval rating , but is children friendly . It is located in Riverside near Café Rouge . \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||The Vaults is a medium priced traditional Japanese restaurant . No public restrooms . \nname : Alimentum | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Looking for a Indian restaurant with a poor customer rating of 1 out of 5 , in the riverside area near Yippee Noodle Bar , then the Alimentum is for you . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop and also a Japanese restaurant great for family and close to Crowne Plaza Hotel \nname : Alimentum | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes||Located riverside you will find Alimentum offering Indian food . They are price ranged at £ 20 - 25 . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The English restaurant , The Phoenix , is located in the Riverside area . It is in the high price range and rated 1 out of 5 . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||1 out of 5 customers rate Fitzbillies with high price range . There , children are friendly and it is near to Express by Holiday Inn . \nname : The Vaults | food : Italian | price : high | family friendly : yes||the Vaults is a children friendly Italian restaurant with a high price range \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Have you ever been to a Ranch that sells Italian food . It 's an amazing place Name Cotto and you can bring your kids too because it 's kid friendly with coloring books for them to use while they dine . No wonder their reserve list is so high . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||A cheap restaurant offering English food is The Wrestlers . They are low rated and not favorable for a family . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop is located in the city centre near Crowne Plaza Hotel . It offers fast food and has a customer rating of 5 out of 5 . It is not family - friendly . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the high price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||The riverside restaurant near Yippee Noodle Bar is Alimentum which offers Indian food for less than £ 20 but it has a low customer rating . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||There is this coffee shop named Cotto , which is located in the city centre near The Portland Arms . They sell Italian food that is moderated price and their customer rating is 1 out 5 . \nname : Zizzi | Type : pub | food : Japanese | customer rating : average | family friendly : no||There is an average pub serving Japanese food that is not family - friendly called Zizzi . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||A moderate price venue near Café Sicilia , Clowns , is kid friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Located in the riverside area is the Giraffe child friendly pub serving English food . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House is providing a Japanese food near Café Rouge which has a low customer rate . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is an Indian coffee shop that is low rated , moderately priced and not kid friendly . It is in the city centre . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||The coffee shop by The Portland Arms and the river , Cotto , serves fast food . It has a high price range and has only been given average reviews . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough , right next to The Express by Holiday Inn , is a child friendly restaurant \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a restaurant located near The Six Bells with a high price range \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly Italian restaurant near the Rainbow Vegetarian Café . It is mid - priced and has a three - star customer rating . \nname : Strada | Type : pub | food : English | customer rating : high | near : Yippee Noodle Bar||Strada has a high customer rating . It is a pub that serves English food an is located by Yippee Noodle Bar . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two Indian restaurant boasts its family friendly premises so that you can bring the kids along for a meal out \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two is a kid - friendly Italian restaurant . It 's located near the riverside . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||There is a restaurant named Loch Fyne that serves English - style , kid - friendly food . \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Family friendly , cheap and highly rated Indian food can be found at The Wrestlers . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a Japanese pub that is family friendly located in The Portland Arms . \nname : The Punter | food : Fast food | price : high||The Punter is a high - priced Fast food place . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a Chinese restaurant with a 5 out of 5 customer rating . It is located in the city center . near Café Rouge , and is not family friendly . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Here is a pub in riverside called The Olive Grove , it has a price range of more than £ 30 , it is French and yes it is child friendly . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a non - children friendly Japanese coffee shop near Café Sicilia with a low customer rating and price range more than L30 . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||For Japanese cuisine , The Golden Curry can be found near The Bakers at a price range of less than £ 20 . Be aware The Golden Curry is not family - friendly . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : low | near : All Bar One||The Midsummer House is located close to All Bar One and is in the high price range . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||By the riverside is a family friendly restaurant called The Olive Grove . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 5 out of 5||Italian restaurant called The Cambridge Blue has a customer rating 5 out of 5 \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Japanese food is served at Blue Spice , which is situated at the riverside . It 's a slightly expensive place to eat . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||You can find The Golden Curry riverside near Café Rouge . It serves Japanese food , rated by customers 1 out of 5 , and is kid friendly . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||Blue Spice is a Japanese restaurant in the riverside area . The price range is less than £ 20 . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix serves Chinese food and has a high customer rating . Its price range is £ 20 - 25 and is located in city centre . \nname : Bibimbap House | food : English | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House offers English food near Clare Hall in the riverside area with price ranges of £ 20 - 25 . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Zizzi is a cheap and family friendly coffee shop in riverside with a high customer rating of 5 out of 5 . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies is a low cost Italian restaurant located near The Six Bells . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Giraffe is a pub style Indian eatery in the riverside area . Kids welcome . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop is non - family - friendly and in the less than 20 pound price range . The food is Japanese and it is located near the city center and Raja Indian Cuisine . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||The coffee shop named Blue Spice in riverside near Avalon has a price range of more than £ 30 , children friendly service , and also a customer rating of high . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant that is located on the river . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : low||Fast food restaurant , The Cambridge Blue has low customer ratings . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the more than £ 30 price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is high . \nname : Wildwood | Type : pub | food : Indian | price : less than £ 20 | customer rating : low||Wildwood is a pub providing Indian food in the less than £ 20 price range . Its customer rating is low . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||There is an Italian pub named Zizzi which has an average customer rating and is family friendly . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : Avalon||Blue Spice is a coffee shop near Avalon in the riverside area . It has a low customer rating , is not child - friendly , and has a price range of more than 30 pounds . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||The Cricketers is a restaurant near All Bar One serving Italian food . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers has a 4 out of 5 rating . It offers French food for average priced . Children are welcome . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : no||For adults looking for a fast food option , but in a quaint pub , try Giraffe , located in the riverside area . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill near The Sorrento in the city centre is a coffee shop providing Japanese food with a price range less than £ 20 . \nname : Midsummer House | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||The Midsummer House restaurant serves Asian food at mid - range prices . The restaurant can be found next to All Bar One . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop located near Ranch that provides moderately priced food and drink and a 5 star service . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||The Rice Boat , located on the riverside , serves mediocre Italian food . Families are welcome . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap coffee shop called The Wrestlers that is located riverside that serves Italian food . It is family friendly and is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an expensive , kid friendly coffee shop that serves Indian cuisine in Riverside near Raja Indian Cuisine . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||The Cotton is a French coffee shop in town near The Portland Arms , prices start at £ 30 with a high rating of 5 \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Browns Cambridge is a coffee shop that is not family - friendly . It serves French food of low rating . It is near the Crowne Plaza Hotel and the city center . \nname : The Eagle | price : high | customer rating : average | area : riverside||The Eagle in riverside has an average customer rating and a high price range . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a kid friendly establishment located near The Six Bells . \nname : The Phoenix | food : Chinese | customer rating : average | area : riverside||The Phoenix is located riverside . They have an average customer rating and serve Chinese food . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||In the city center near All Bar One , is a non family - friendly Japanese food place called Green Man , there prices range less than £ 20 . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a low - priced restaurant located next to the river and Yippee Noodle Bar . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : no||Near the river is a coffee shop called Aromi , it isn 't family friendly . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||The Eagle in riverside is cheap and has a rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves Japanese food . It is situated by the riverside near Clare Hall and has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre||Located in the City Centre is a high priced , high customer rated coffee shop called The Golden Palace which serves Indian food . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two , located near the city centre and The Rice Boat , is a family - friendly , highly rated restaurant that will cost about £ 20 - 25 . \nname : Green Man | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : All Bar One||In the city centre , close to All Bar One , Green Man is a moderately priced child - friendly fast food restaurant . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children friendly coffee shop in Riverside near Avalon with an average rating . \nname : The Mill | Type : pub | food : Italian | price : moderate | area : city centre||For city centre pub grub , you could do worse than The Mill - an Italian style pub with moderate pricing . \nname : Fitzbillies | food : Chinese | price : less than £ 20 | near : The Six Bells||Near The Six Bells is an average priced Chinese restaurant that is called Fitzbillies . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle , a French coffee shop , serves dishes less than £ 20 near Burger King in the city centre \nname : The Golden Curry | food : Chinese | customer rating : average | family friendly : yes||The Golden Curry provides Chinese food Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||Welcome to The Eagle . We a non family - friendly coffee shop our food is Italian we are near the Burger King we are at the riverside and our customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a coffee shop and fast food restaurant that is fairly expensive but is great for families and has excellent reviews called Fitzbillies . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||Near Café Brazil is The Cambridge Blue pub that is , high priced English food . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||Wildwood an Italian pub has a high customer rating and good menu on reasonable price starts from 20 pounds . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is an average customer rated coffee shop , providing Italian food . It 's kids friendly and in the riverside . \nname : Blue Spice | food : Chinese | price : moderate | area : riverside||Blue Spice is a Chinese restaurant with average prices in Riverside . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Blue Spice , located on the riverside , is both highly rated and kid friendly . Prices range from £ 20 - 25 . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||A children friendly pub near Ranch is The Cricketers . It has a 5 out of 5 rating \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||There is an expensive place near The Bakers named The Golden Curry with friendly English food for children . \nname : Wildwood | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a moderately priced coffee shop that serves Fast food near Ranch . 3 out of 5 customers like it . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese place near Express by Holiday Inn that is children Friendly with a 3 out of 5 rating and a high price range in riverside . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat . A family friendly , low cost restaurant , scoring 3 out of 5 stars and located near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a popular , child - friendly coffee shop serving French food . It is located near The Portland Arms . \nname : The Waterman | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman Italian restaurant is located in the center of town and offers average customer satisfaction at a high price . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a traditional Japanese restaurant in the high price range near All Bar One . Public restrooms available . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two is an Indian restaurant you would want to take your kids to . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a children - friendly French restaurant . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 1 out of 5||With a customer rating of 1 out of 5 , the Wildwood pub serves Indian food for a moderate price . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is in the riverside area . It isn 't family - friendly , but is near Café Rouge , which is nice . It has French food and has an average rating . \nname : Cotto | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the less than average price range . It is located in Riverside near The Portland Arms . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the £ 20 - 25 price range . It is near Café Sicilia . Its customer rating is high . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Located near the centre of the city , Zizzi is a family - friendly coffee shop with average ratings and prices under £ 20 . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : city centre | family friendly : yes||The pub , ' The Olive Grove ' , has quite high prices but boasts a child - friendly environment . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a children friendly fast food restaurant . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||The Cotto Chinese restaurant near the Ranch is highly rated and Child friendly . \nname : The Cambridge Blue | Type : pub | food : Indian | price : moderate | near : Café Brazil||Located near Café Brazil is a moderately priced Indian pub known as The Cambridge Blue . \nname : Midsummer House | food : Chinese | price : more than £ 30 | customer rating : high | near : All Bar One||Near All Bar One is Midsummer House that sells Chinese , has a high customer rating which is priced more than £ 30 . \nname : Alimentum | food : Indian | price : cheap | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is an Indian restaurant that serves cheap food . It has an average customer rating and is located in the city Centre near the Yippee Noodle Bar . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||A restaurant called the Wildwood has a customer rating of 3 out of 5 and is located near Café Rouge . \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is an English cuisine place with high prices and children friendly atmosphere , located near riverside . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi a pub in riverside is kids friendly the price is £ 20 to £ 25 \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Near The Six Bells , Fitzbillies serves Japanese cuisine at an average price range of £ 20 - 25 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no||By the riverside , Zizzi is a coffee shop which is highly rated in the price range of £ 30 . Adults only \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||Located next to the riverside is a Fast food joint named The Phoenix . It has a low customer rating . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman serves English fare at reasonable prices . Families welcome . \nname : Alimentum | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum have a poor rating and a costly Chinese menu . They are located near Yippee Noodle Bar , by the riverside . \nname : The Phoenix | food : Chinese | price : high | customer rating : average | area : riverside||The Phoenix is a higher priced Chinese restaurant located riverside and has average customer ratings . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes||There is a moderately priced pub type Chinese food place called The Olive Grove , it 's in city centre and kid friendly . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto serves up lackluster Chinese food in a kid - friendly setting near Ranch . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum is a pub that is not children friendly with a price range of more than 30lb with a customer rating of 5 out of 5 . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a high - priced 5 star family friendly restaurant located to the north of the city centre . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : city centre||Blue Spice is Fast food and more than £ 30 in the city centre . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced Chinese restaurant in the city center , near the Express by Holiday Inn . While the custom rating is only 3 out of 5 , the place is known to be kid - friendly . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : no||Giraffe great English food at riverside \nname : Midsummer House | food : Italian | customer rating : 3 out of 5 | near : Café Rouge||Italian Midsummer House customer rating 3 out of 5 same Café Rouge \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Italian food is served at Browns Cambridge . It has a customer rating of 1 out of 5 . It is in the high price range . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers near Ranch has a customer rating of average , the Cricketers is a family friendly pub . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||theres a kid friendly fast food place near Crowne Plaza Hotel called The Waterman \nname : Bibimbap House | food : Chinese | price : high | area : riverside | near : Clare Hall||Bibimbap House , a restaurant near Clare Hall in the riverside area , offers high - priced Chinese food . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is an adult - friendly pub in the city centre that offers Indian food at less than £ 20 . \nname : The Rice Boat | food : Indian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat is a family friendly restaurant with an average rating located in the Riverside area . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a kids - friendly coffee shop serving Italian food at a moderate price . It is near thew Café Sicilia and has a 1 out of 5 customer rating . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||Browns Cambridge has an excellent rating and is an average price restaurant . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||For a Japanese type coffee shop , try the family friendly Aromi in the Riverside area with a customer rating of 5 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : high | area : riverside||The Mill is a Indian food pub in riverside with high prices . \nname : Loch Fyne | food : Italian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is near The Rice Boat provides Italian food customer rating of 1 out of 5 near the riverside \nname : Midsummer House | food : Japanese | price : more than £ 30 | customer rating : low | near : All Bar One||Midsummer House is an expensive sushi restaurant near All Bar One . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||There a coffee shop that serves French style coffee its by the Ranch and its called Wildwood . Prices are amazing . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is an family friendly Italian coffee shop called Browns Cambridge , with a 5 out of 5 customer rating . It is in the riverside area near Crowne Plaza Hotel . \nname : The Rice Boat | price : high | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is near the Rainbow Vegetarian Café . It is high in price range and averagely rated \nname : Bibimbap House | food : Japanese | price : £ 20 - 25 | area : riverside | near : Clare Hall||Bibimbap House Japanese restaurant in the riverside area , can be found near Clare Hall . Price range £ 20 - 25 . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is near Café Rouge . It provides Italian food , it is kid friendly and has a 1 out of 5 customer rating \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||The Portland Arms has a 3 star coffee shop across from them called Cotto . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a Child friendly , Pub style fast food restaurant with a customer rating score of 1 out of 5 . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Giraffe is a upscale coffee shop near The Bakers . 3 out of 5 stars \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||Fast food is served at The Rice Boat . It is moderately priced . It is located near riverside , near Express by Holiday Inn . It is not kid friendly . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn is the French place called The Rice Boat that is kid friendly and has prices ranging from £ 20 - 25 and a rating of 3 out of 5 \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is located in the riverside area near The Rice Boat . its prices are above average for the city and has a low customer rating . It is not suitable for children . \nname : The Dumpling Tree | Type : restaurant | food : English | price : less than £ 20||The Dumpling Tree restaurant has a price range of less than £ 20 and features English food . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a kids - friendly English restaurant by the riverside . \nname : The Twenty Two | food : Japanese | family friendly : yes||Kid friendly Japanese restaurant , The Twenty Two . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Customers highly rate Alimentum where you will find Italian food on the menu . It is located in the riverside area near Yippee Noodle Bar and has a price range of more than E30 . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : riverside||There is an average rated pub riverside that has Japanese food . It 's called The Waterman . \nname : The Twenty Two | food : Fast food | family friendly : no||A fast food takeout The Twenty Two is not family friendly . \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||Zizzi fast food pub offers child friendly food . \nname : Green Man | Type : pub | food : Indian | area : riverside | near : Café Rouge||The Green Man is a pub near the Café Rouge in the riverside area serving Indian food . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle , a coffee shop that serves decent priced burgers and fries is rated five stars , family friendly , and located next to Burger King on the river in City centre . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||in the Riverside area near the Café Sicilia there is a pub named The Twenty Two which has a high rating \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||At Alimentum restaurant , you can enjoy great Italian cuisine right on the lake . The restaurant charges mid range prices and is outside City centre across from Yippee Noodle Bar . \nname : The Punter | food : Chinese | price : less than £ 20||The Punter , Chinese restaurant , price range from £ 19.99 \nname : The Vaults | Type : restaurant | food : Japanese||The Vaults is a restaurant serving Japanese cuisine . \nname : Browns Cambridge | food : Fast food | price : moderate | customer rating : 1 out of 5||Located near the city centre is a 1 star mid - priced restaurant called Browns Cambridge . \nname : The Phoenix | food : French | customer rating : low | area : riverside||The Phoenix is A restaurant serving food at a reduced price and is located near the river \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a French restaurant that is located near Crowne Plaza Hotel . This restaurant is family friendly . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge has average customer ratings with a cheap price range . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : yes||The Twenty Two serves fast food and is near the city center and is family - friendly . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||There is a medium priced restaurant The Punter located in City Centre near The Portland Arms \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||East of The Portland Arms along the river is highly rated Cotto coffee shop with low prices and a varied menu . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly location with a average rating near Burger King . The Eagle is an Italian coffee shop with cheap prices in the city center . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : more than £ 30||The Dumpling Tree , Chinese restaurant . Price is more than £ 30 . \nname : Strada | price : more than £ 30 | customer rating : high | family friendly : yes||The price range is more than £ 30 in a store name Strada \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||The Vaults is a moderately - priced sushi restaurant for adults only . \nname : The Twenty Two | food : English | family friendly : yes||Even a child will love to eat English style food at The Twenty Two \nname : Green Man | price : moderate | area : riverside | family friendly : yes||A kid - friendly venue in the moderate price range is Green Man in Riverside . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a kids friendly restaurant that serves Italian food . It is in the city centre and the are a family - friendly restaurant . \nname : The Golden Curry | food : English | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a cheap English restaurant located near The Bakers . It is not family - friendly . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a child - friendly restaurant in the riverside area of Cambridge , which serves Japanese food in a price range of more than £ 30 . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a sushi restaurant suitable for families that offer medium prices . It is rated one star and can be found next to Express by Holiday Inn . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop and serves Indian food . It has an average customer rating and is located near Clare Hall in the city centre . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||A children friendly pub near Café Rouge that serves Japanese food in the over £ 30 price range is The Plough . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a child friendly coffee shop with a rating of 3 out of 5 located near The Portland Arms \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is not family - friendly located in the city centre . It is a pub rated 5 out of 5 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | near : Ranch||For a coffee shop that sells high priced Japanese food and has a 3 star rating Wildwood is located near to the Ranch \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a moderately priced , adults only English restaurant . It has a customer rating of 1 out or 5 . \nname : The Wrestlers | food : French | price : more than £ 30 | customer rating : low | family friendly : yes||The Wrestlers are the best in wines , and Italian food in the area and is child friendly \nname : Green Man | price : moderate | area : riverside | family friendly : yes||Green Man has a moderate price range and is kids - friendly . It is located in the riverside area . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is a kids friendly Italian food place . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee Shop providing fast food . It is located in near The Portland Arms . The Cricketers is children friendly and high customer rating . \nname : Zizzi | Type : restaurant | price : high | area : riverside||In Riverside , there is an expensive restaurant named Zizzi . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is located by Burger King . It has fair prices and had burgers , drinks , and fries \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||in riverside near Yippee Noodle Bar is Alimentum ; moderately priced fast food rated 3 out of 5 \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes||With a 5 out of 5 rating the Japanese restaurant The Waterman is a child friendly place you 'll spend more than £ 30 in it 's city centre location \nname : The Dumpling Tree | Type : restaurant | food : English | price : more than £ 30||The Dumpling Tree is an English cuisine restaurant , with a very moderate price range of just over £ 30 \nname : Loch Fyne | Type : restaurant | food : French | price : cheap | family friendly : yes||Looking for quality French cuisine without spending a fortune . You should try Loch Fyne , the low - cost , family friendly option for delicious French cuisine . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : more than £ 30||The Dumpling Tree is a restaurant providing fast food with a price range of over £ 30 . \nname : Browns Cambridge | food : Japanese | price : moderate | customer rating : 1 out of 5||For Japanese food , you could visit Browns Cambridge which is moderately priced but only has a 1 out of 5 customer rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn and riverside , there is a Chinese restaurant called The Rice Boat . It has an average rating and is family - friendly . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : no||The Rice Boat is located in the city centre and serves Italian food . The Rice Boat is not family - friendly and has a low customer rating . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||Taste of Cambridge is a cheap restaurant with an average customer rating . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||Midsummer House is an inexpensive , three - star restaurant that offers a selection of food and wine . It can be found near All Bar One . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a 5 out of 5 rated fast food restaurant with cheap prices near the Express by Holiday Inn in the riverside area . The restaurant is not family - friendly . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||A cheap , Italian restaurant would be Loch Fyne . Loch Fyne is family friendly . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a pub near Ranch . It children friendly and have 1 out of 5 rating . \nname : The Dumpling Tree | Type : pub | food : Indian | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that allows children . It serves Indian food and is near The Portland Arms . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no||The Wrestlers is no kids - friendly French food restaurant with price Range £ 20 - 25 . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||If you 're looking for cheap Japanese fare with a pub atmosphere , check out The Mill in the riverside area . \nname : The Mill | Type : pub | food : French | price : cheap | area : riverside||French pub The Mill is located n the riverside . The price range is cheap . \nname : The Plough | Type : pub | food : Japanese | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a cheap , family friendly pub serving Japanese food . It is near Café Rouge . \nname : Bibimbap House | food : Indian | price : moderate | area : riverside | near : Clare Hall||Bibimbap House is an Indian restaurant , priced in the moderate range . It is riverside , near to Clare Hall . \nname : The Phoenix | food : French | customer rating : 1 out of 5 | area : riverside||With a customer rating of 1 out of 5 , you can get French food near the riverside from The Phoenix . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : city centre||The Mill is a pub that provides Indian food in the moderate price range . It is located in the city centre . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : average||The Cambridge Blue restaurant , food and drink . Rated three stars . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||There is a family friendly pub near The Sorrento called Taste of Cambridge . It is located by the riverside . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two is a family Friendly Indian food \nname : The Plough | Type : pub | food : Italian | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough offers low priced cuisine in a family - friendly setting . In close proximity to the Café Rouge . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly sushi restaurant with a medium price and rated 1 star . It is located near Express by Holiday Inn . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn in the city centre , The Rice Boat is a child friendly , high price fast food restaurant with a customer rating of 1 out of 5 . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman provides Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge was rated 3 out of 5 . It costs between £ 20 - 25 . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : yes||French pub The Olive Grove offers dishes at a moderate price in a kid friendly setting \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a high priced French coffee shop that is located in the Riverside area . It is not for children and it is rated 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||There is a cheap family - friendly restaurant providing wine and cheese called Loch Fyne . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||With low - costs and one out of five stars , The Rice Boat is located near Express by Holiday Inn . The Rice Boat is not family - friendly . \nname : Cotto | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||On the outskirts of the city is a low cost coffee shop called The Cotto . This is close to The Portland Arms pub . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is an Italian coffee Shop serving high priced food . It is near The Ranch and has a rating of 5 out of 5 . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : no||Giraffe is a Pub serving Chinese food in the Riverside Area . Please note it is adults only and not family friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop that serves Italian food . It is located in the center of the city near The Sorrento . It has a moderate price range . \nname : Strada | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a restaurant near Rainbow Vegetarian Café with a 1 out 5 star rating , that serves really expensive Indian food . It 's called Strada , and it 's not family friendly . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Yes , The Rice Boat is Italian and is next to Express by Holiday Inn offering moderate view of the riverside and low rating 1 out of 5 . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe is a restaurant located near The Six Bells that sells meals for more than thirty euros . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||Green Man is restaurant which is kids friendly with a price range of 20 to 25 pounds in Riverside . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Italian restaurant , Loch Fyne is family friendly \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop near The Sorrento in the riverside area , they offer French food in the more than £ 30 price range . \nname : The Mill | Type : pub | food : Fast food | price : £ 20 - 25 | area : riverside||The Mill is a pub in the Riverside area offering fast food in the average price range . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||For a pricier Italian meal , you can head to the city centre near Yippee Noodle Bar . Alimentum is the name of the restaurant . It has high ratings from customers . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||Giraffe is a coffee shop near The Bakers with prices more than £ 30 . Not kid friendly . Rated 5 out of 5 stars . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a high rated coffee shop . It has a higher price range , but it 's fast food and kid friendly . \nname : The Rice Boat | price : moderate | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat Is a moderately priced restaurant with a customer rating of 3 out of 5 and is located near Rainbow Vegetarian Café . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is high customer rated coffee shop located in the Clare Hall . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||Browns Cambridge has a high customer rating with a price range of more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kids friendly coffee shop offering Indian food in the riverside area . It has a customer rating of 1 out 5 and its prices are in the moderate range . \nname : The Wrestlers | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no||No one wants to go to The Wrestlers , where they have a rating of 1 out of 5 and high priced food . This Fast food is not kid friendly either . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||Medium priced , medium rating . The Phoenix , by the river \nname : Midsummer House | food : Chinese | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is a company of Chinese food at high prices with a rating of 4 customers and All Bar One . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a child friendly location offering French food \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no||The Wrestlers has a 3 out of 5 customer rating and has a moderate price range , serves Indian food , and is a non kid friendly restaurant . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a riverside Italian restaurant located near Café Rouge . It has a 3 out of 5 star rating and is kid friendly . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat Serves Japanese food and is located near Express by Holiday Inn in the riverside area . Rated 3 out of 5 stars , High prices and not kid friendly . \nname : Green Man | food : English | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man , located in the city centre near All Bar One , offers expensive English food - but does not welcome children . \nname : Taste of Cambridge | Type : restaurant | price : cheap | customer rating : average||The Taste of Cambridge restaurant is a cheap place to eat with an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : moderate | family friendly : no||Loch Fyne is an Italian restaurant that is not kid - friendly and is moderately priced . \nname : Green Man | food : Chinese | price : high | area : riverside | family friendly : no | near : All Bar One||The Green Man serves high - priced Chinese food . It is located on the riverside near All Bar One . It is not child friendly . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry provides Indian food Its customer rating is high . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a highly - rated pub in the £ 20 - 25 price range . It is in the riverside area . \nname : The Golden Curry | food : Italian | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , situated in the city centre near the Café Rouge is an average rated restaurant thats serves Italian food . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : no||Strada is a cheap , non - family - friendly restaurant with a high customer rating . \nname : The Rice Boat | food : Italian | customer rating : average | area : city centre | family friendly : yes||The Rice Boat has an average customer rating located in the center or the city . This restaurant is family friendly and offers Italian food . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a family friendly restaurant that serves English food . It is also family friendly . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two serves English food and is children friendly . \nname : The Plough | Type : pub | food : Italian | price : cheap | family friendly : yes | near : Café Rouge||The Plough , yes , is a family friendly pub that serves Italian food near Café Rouge \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : low||Wildwood is an okay pub with an average of one star reviews . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is on the riverside and offers a family friendly atmosphere and English cuisine . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant located in the city centre near Express by Holiday Inn . It is qualified as 3 out 5 with a price range of £ 20 - 25 , and not suitable for kids . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is a Indian restaurant that is highly customer recommended with a 5 out of 5 rating it is not however family friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high cost family friendly coffee shop located near Burger King . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||There is a pub named Clowns , located riverside with average prices , that has been given a 3 star rating . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop , that offers cheap Indian food with 5 out of 5 recommending it . it can be located in the city centre \nname : The Rice Boat | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located in the riverside area near the Express by Holiday Inn you will find the expensive but family friendly restaurant The Rice Boat with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kid friendly Italian restaurant with a customer rating from 3 to 5 . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix is a low - cost wine and cheese restaurant located by the margin of the river . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a Japanese restaurant that is child friendly and has a customer rating of 3 out of 5 . The rice boat is situated by the river side . \nname : The Rice Boat | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is averaged priced , 5 star family friendly . Its located near Express by Holiday Inn . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers it is a 1 star coffee shop , It is not for the whole family , It is next to The Portland Arms \nname : The Punter | food : Italian | price : less than £ 20||The Punter is a low priced restaurant . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is family friendly a Chinese pub that serves take out for £ 20 - 25 near the Café Rouge \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a highly rated kid friendly Japanese restaurant for about £ 20 - 25 . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no||There is a moderate - priced restaurant The Wrestlers that provides Italian food . It is no kids - friendly and low customer rating . \nname : The Phoenix | food : Chinese | customer rating : low | area : city centre||The Phoenix in the city centre serves poorly rated Chinese food . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne , is a great place for lunch and the taste is great and prices are low . \nname : The Golden Curry | food : French | customer rating : low | family friendly : yes||The Golden Curry which serves French food , and has a low customer rating is very family friendly . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum is a family friendly restaurant with an Average customer rating . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a pub located in the Riverside area with a price range of less than 20 pounds . The customer rating on this establishment is low . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre||In the centre city area , there is The Phoenix , a moderately priced fast food restaurant . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a Italian coffee shop near The Portland Arms , that is high in price , it 's near a riverside , and the rating is average . \nname : Wildwood | Type : pub | food : French | price : £ 20 - 25 | customer rating : 3 out of 5||Wildwood is a French pub , with a customer rating of 3 out of 5 , serving fool costing £ 20- £ 25 . \nname : Bibimbap House | food : Chinese | area : city centre | near : The Rice Boat||Bibimbap House provides Chinese food It is located in the city centre . It is near The Rice Boat . \nname : Fitzbillies | food : Indian | price : £ 20 - 25 | near : The Six Bells||Fitzbillies serves affordable Indian Food near The Six Bells \nname : Green Man | Type : pub | food : Fast food | area : riverside | near : Café Rouge||Next to the Café Rouge the Green Man pub serves fast food in a riverside setting . \nname : Browns Cambridge | food : Fast food | price : high | customer rating : 3 out of 5||Browns Cambridge is a high - priced restaurant in that delivers take - away . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||customer rating 3 out of 5 , area riverside , kids - friendly no , price Range moderate , food English , name The Rice Boat , near Express by Holiday Inn . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop with Indian food that has an average customer rating and is in the high price range . It is located near The Portland Arms by the riverside . \nname : Blue Spice | food : Japanese | price : moderate | area : riverside||For average priced food head to Blue Spice . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre near the Crowne Plaza Hotel is an Italian coffee shop called Browns Cambridge . It has a low customer rating , but is family - friendly . \nname : Strada | food : Indian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is near the Rainbow Vegetarian Café . It is not family friendly and service Indian food cheaply . It has an average customer rating . \nname : Bibimbap House | food : French | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House in riverside near Clare Hall has French food for less than £ 20 . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : yes||Located in the city centre , you can find Alimentum . Alimentum is kid friendly and specializes in moderately priced Italian food . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||In the city centre you will find a Fast food restaurant called The Golden Curry . It is located near Café Rouge , is not family - friendly and has a rating of 5 out of 5 . \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap , non family - friendly Japanese food establishment which I situated near the Rainbow Vegetarian Café with a customer rating of 5 out of 5 . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||There is a children friendly Italian restaurant named The Waterman located in the city centre , it has high customer ratings and a price range of over £ 30 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : less than £ 20 | family friendly : yes||Loch Fyne is a Japanese restaurant that offers a family - friendly atmosphere and reasonable prices . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a Japanese coffee shop in Ranch with a price range of less than £ 20 , and a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Come Here to our restaurant it is chill friendly Its only a short drive away in the town Loch Fyne and the food Is Japanese \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||at Riverside is a high price a high rating pub called Clowns . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Welcome to The Eagle . We serve Japanese food and our price range is less than 20 pounds . We are a coffee shop and are family - friendly . We are located in the city centre near Burger King . \nname : Wildwood | Type : pub | food : Japanese | price : £ 20 - 25 | customer rating : high||Japanese food is served in the £ 20 - 25 range in the Wildwood pub , it has high customer rating . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant providing high quality sea food in the average price range . It is located in the north of city after Yippee Noodle Bar . \nname : Green Man | price : more than £ 30 | area : riverside | family friendly : yes||In the riverside area is the child friendly venue called the Green Man which cost in excess of £ 30 \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is The Waterman . It is children friendly and has Indian food . \nname : Cotto | food : Fast food | near : Café Rouge||Cotto is a Fast food restaurant located near the Café Rouge . \nname : Cotto | price : more than £ 30 | area : city centre | near : All Bar One||Cotto is located in the city centre near All Bar One and is in the more than £ 30 price range . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : no||Chinese food at moderate prices is on offer at The Olive Grove pub in the riverside area but it 's not kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : high||In the higher price range for Indian restaurants is The Dumpling Tree . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||The Golden Palace is a restaurant in Riverside that has an average customer rating . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man offers cheap , family friendly English food . It is located near All Bar One on the riverside . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre||There is an average priced Indian food restaurant called The Phoenix , in the city centre , with a high customer rating . \nname : Zizzi | Type : pub | food : Indian | customer rating : average | family friendly : yes||Zizzi is a pub style restaurant serving Indian food . It has an average customer rating and is children friendly . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House is an Italian restaurant located near Café Rouge with average customer ratings . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre||The Golden Palace is a high - priced coffee shop offering good Indian food in the city centre . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||The Browns Cambridge is a pub of excellent quality with high prices near the city centre . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop located riverside , near Clare Hall . They have fast food and have an average customer rating . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||With a customer rating of 5 out of 5 , The Wrestlers , a family friendly place , serves English food for a cheap price range . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||Families can find a fair place close to The Bakers called The Golden Curry . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : £ 20 - 25 | near : Café Brazil||Grab a quick bite at The Cambridge Blue Pub , near Café Brazil . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||The Clowns is a coffee shop on the Riverside in Clare Hall . They only have a customer rating of 1 out of 5 , but they serve Indian food too . \nname : The Eagle | food : Indian | customer rating : 5 out of 5||The Eagle is a five star restaurant that serves Indian food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a low priced coffee shop with a rating of three stars . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||A kid friendly pub named The Cricketers is near Ranch , but it has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in the city centre , is a child friendly , high price fast food restaurant with a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||There 's a cheap coffee shop located at the city centre named Fitzbillies . They are family friendly and serve Indian food , the customer rating is low . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||Taste of Cambridge is a restaurant that is less than £ 20 and has a low customer rating \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||A restaurant with a rating of 1 out of 5 stars called Alimentum is located near Yippee Noodle Bar on the riverside . It serves Italian and its prices are moderate . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : low | area : riverside | near : Café Adriatic||Near the Café Adriatic on the riverside with a price range of less than £ 20 , is the Travellers Rest Beefeater . It has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies in the riverside area offer cheap Japanese food . The family friendly coffee shop gets 5 out of 5 in its customer rating . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : no||Alimentum is a moderate - priced Indian restaurant in the city centre that is non kids friendly \nname : The Vaults | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||There is a one - star , high - priced coffee shop called The Vaults in the riverside area near Café Brazil . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : no||A pub that serves English food is Zizzi . They are not family friendly and are low rated with 1 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge near the Crowne Plaza Hotel by the riverside is an Indian coffee shop that has an average customer rating and is child friendly . \nname : Wildwood | Type : pub | food : English | price : moderate | customer rating : 3 out of 5||Wildwood pub is ranked 3 stars and features a great kitchen with food \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat has low customer ratings , and is not family - friendly , but they serve Italian food , they 're riverside , it costs less than £ 20 , and it 's near Express by Holiday Inn . \nname : Cotto | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto , with a Customer rating of 5 out of 5 , that serves Fast food and a Family friendly place near Ranch . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a restaurant located in the city centre with a mid price range . It is located near The Rice Boat and has a customer rating of 3 out of 5 , it is also kid friendly and suitable for all families . \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||The pub The Vaults , rated 3 out of 5 is located near the Café Adriatic . It 's pretty expensive . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman serves French food and has ratings of 3 out of 5 with a high price range , located in riverside . \nname : The Phoenix | food : Fast food | customer rating : low | area : riverside||The Phoenix serves fast food in the riverside area and has lower customer ratings . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in city centre is the family - friendly Taste of Cambridge . This coffee shop serves Japanese food . \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||In the riverside area of the city there is a Japanese restaurant called Blue Spice . The price range is less than £ 20 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge in riverside , The Golden Curry is a family friendly French restaurant with a low customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle can be found in the city centre , near Burger King . It 's moderately priced Indian in coffee shop surroundings . Only adult parties are welcomed to this low rated establishment . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a cheap pub by the river side for adult public \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a child friendly pub , situated near The Bakers , serving English food in the higher price range . \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||There is a fast food restaurant , Midsummer House , located near the All Bar One and the customer rating is 3 out of 5 and the cost is pretty moderate . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||You will find a French food pub near the Yippee Noodle Bar . It 's called Strada . It has low customer ratings . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near Express by Holiday Inn located in City Centre is a family friendly , cheap Chinese restaurant known as The Rice Boat . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kids - friendly French pub , near The Portland Arms . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Located in the city centre near Yippee Noodle Bar , the Alimentum is a Japanese restaurant with a moderate price range . its customers rate is 1 out of 5 stars . \nname : The Waterman | Type : pub | food : French | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub in the riverside area serving French food with a customer rating of 1 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : high | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is high . \nname : Giraffe | Type : pub | food : Japanese | area : city centre | family friendly : yes||Giraffes is a family - friendly Japanese pub in the city centre . \nname : Browns Cambridge | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge serves Japanese food in the £ 20 - £ 25 price range has a 3 out of 5 customer rating \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Avalon||The coffee shop Blue Spice can be found in the city centre near Avalon . For the price range of £ 20 - 25 , it has a customer rating of 3 out of 5 and is not kids friendly . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The waterman , is an average graded Japanese restaurant that is family friendly and the price range of the food dishes are less than 20 dollars . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : no||The restaurant in the riverside area is The Olive Grove . It is not family - friendly . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter licensed coffee shop . rated only one star and pricey , though children are welcome . Just along from Café Sicilia . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace serves Japanese food and has a coffee shop located in the city centre with a price range of more than 30 and a customer rating of 5 out of 5 \nname : The Mill | Type : pub | food : Italian | price : more than £ 30 | area : riverside||The Mill pub in Riverside serves excellent Italian food but is quite costly . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a one star coffee shop that is moderately priced and family friendly . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||An Italian restaurant with a high customer rating is The Cambridge Blue . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Located in the city centre , near Raja Indian Cuisine , The Wrestlers is a moderately priced adult oriented coffee shop . \nname : The Dumpling Tree | Type : coffee shop | price : moderate | area : city centre | family friendly : no | near : Café Sicilia||The Dumpling Tree coffee shop is close to Café Sicilia . You might find the prices moderate but it 's not kid friendly . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : yes||A children friendly coffee shop that serves French food and has low customer rating by the riverside area is Aromi . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||Cocum is a kids - friendly restaurant , with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : English | customer rating : low | family friendly : no||Low rated The Golden Curry serves English food . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||There is a family friendly restaurant called the Loch Fyne . It has fast food . and the prices are less than 20.00 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Aromi is a family - friendly , riverside coffee shop that offers oriental cuisine . Customers rate them 3 out of 5 stars . \nname : The Cambridge Blue | Type : pub | food : Indian | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub that provides Indian food in the more than £ 30 price range . It is near Café Brazil . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||The Waterman is a cheap child friendly place . \nname : Alimentum | food : Indian | price : high | area : riverside | family friendly : yes||Alimentum provides Indian food in the high price range . It is located in the riverside . \nname : The Punter | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves Indian food for a cheap price , and they have average customer service . The Punter is family friendly and is located near Café Sicilia . \nname : The Golden Palace | Type : restaurant | customer rating : average | area : riverside||The Golden Palace in the riverside area is an averagely rated restaurant \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : riverside||Clowns is a highly -rated pub located by the riverside . The price range is between £ 20 - 25 . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge serves cheap French food that is rated 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies , family - friendly coffee shop , high prices , high reviews , near the river . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Italian food , is rated five stars and is family friendly . Located in the riverside area . \nname : Aromi | Type : pub | customer rating : low | area : riverside | family friendly : no||A 1 star rated pub Aromi sat next to the river with a no children policy . \nname : Strada | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||There is a cheap Chinese food place called Strada , and it is near Rainbow Vegetarian Café . It isn 't family friendly , it has an average rating , and it has an average customer rating . \nname : The Punter | price : less than £ 20 | area : city centre | family friendly : no | near : The Portland Arms||A non family - friendly , cheap venue in the city centre is The Punter near The Portland Arms \nname : The Punter | food : Fast food | price : less than £ 20||The Punter offers fast food for less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a French food coffee shop located in the city centre near Crowne Plaza Hotel . It is family - friendly with a 5 out of 5 rating . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe is a restaurant near The Six Bells where you can enjoy a great meal for less than £ 20 . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The customer rating at is 5 out of 5 at Cocum . And yes its also kid friendly , and has affordable prices . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||For a family friendly , Fast food pub , you can find Giraffe by the riverside . \nname : The Cambridge Blue | Type : pub | food : French | price : high | near : Café Brazil||There is a bar near Café Brazil called The Cambridge Blue that provides French cuisines and has costly price ranges . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||The Waterman is a moderately priced , kid friendly Italian restaurant . It is located in the city centre and has a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a three star coffee shop located near Café Sicilia with average prices . They are family friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Near the riverside , Fitzbillies is a moderately priced Fast food coffee shop that has a customer rating of 3 out of 5 and is kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||The Golden Curry is a family friendly Japanese . It is rated average by customers . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , a Japanese coffee shop , near Burger King in the city centre , has a customer rating of 5 out of 5. its price range is more than £ 30 , and , yes to children . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop near Raja Indian Cuisine in the city centre sells French food and is moderate priced no kids allowed . \nname : The Mill | Type : pub | food : English | price : £ 20 - 25 | area : riverside||Pub with the name of The Mill providing English food in the Riverside for just £ 20 - 25 \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a kids friendly restaurant which provides Italian food . The price range is moderate , customer rating is 3 out of 5 . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two near The Rice Boat in riverside is family - friendly , with low prices and an average rating . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a cheap family friendly pub that sells Japanese food and is located on the riverside \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||There is a French pub named The Dumpling Tree near The Portland Arms that is children friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is an affordable coffee shop that offers full meal options . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , highly rated Indian restaurant . It caters to families and can be found in the riverside area near the Express by Holiday Inn . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 3 out of 5||Browns Cambridge provides Indian food in the moderate price range . Its customer rating is 3 out of 5 . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : no||The Wrestlers Chinese restaurant serves high price range dishes and is children friendly . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies has a low customer rating and is not family - friendly . It is in the price range of less than £ 20 and is near Express by Holiday Inn . \nname : Fitzbillies | food : Italian | price : moderate | near : The Six Bells||Fitzbillies near The Six Bells offers Italian food in a moderate price range . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop on the riverfront is an excellent mid - priced eatery . They also serve spaghetti . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop in city centre \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : city centre||There is a cheap pub that serves Chinese near the city centre called The Mill . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||A city centre based , children friendly coffee shop called Fitzbillies serves French food within a high price range at a customer rating of 3 out of 5 \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside||The Golden Palace is a high priced coffee shop close to the river on the outskirts of the city centre . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : yes||Loch Fyne is an Italian restaurant fit for all family sizes including strollers \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||In the city centre , near Café Rouge , there is an average non - family - friendly fast food called The Golden Curry . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly fast food restaurant in the £ 20 - 25 range \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kids friendly coffee shop near Burger King in the riverside area . It is moderately priced , rated 3 out of 5 and serves fast food . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers , a children friendly pub located near Ranch , has a 3 out of 5 customer rating . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : £ 20 - 25||The Dumpling Tree is a restaurant that serves Indian food and cost about twenty to twenty five euros . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub located near Ranch . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is an average coffee family friendly coffee shop that is located by The Portland Arms . It serves Japanese food . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||For a cheap family friendly Indian coffee shop in the city centre go to Fitzbillies , its not recommended . \nname : The Waterman | food : Indian | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman provides Indian food in the high price range . It is located in the city centre . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop in city centre next to Burger King with a high customer rating \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||Popular English place Midsummer House you can find it near Café Rouge \nname : The Punter | price : moderate | area : city centre | family friendly : yes | near : The Portland Arms||The Punter , located near The Portland Arms in the centre of the city , has moderate prices . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||The Golden Palace is a low rated coffee shop that is located at the city centre and serves Japanese food that costs more than 30 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||A kid - friendly venue near The Six Bells is The Golden Curry . \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | near : Ranch||there is a low rated French coffee shop named Wildwood . it is less than £ 20 and near Ranch . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry restaurant has a rating of 3 out of 5 , offers fast food and a child friendly atmosphere . \nname : Midsummer House | food : Japanese | customer rating : 3 out of 5 | near : Café Rouge||Midsummer House is near Café Rouge . Customers rating Midsummer House 3 out of 5 . It serves Japanese food and it is rating by customers 3 out of 5 . \nname : Fitzbillies | food : Fast food | price : high | near : The Six Bells||Fitzbillies pricey Fast food near The Six Bells . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry restaurant has a customer rating of 5 out of 5 . This is a family friendly establishment , providing Italian food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||A coffee shop called The Golden Palace . serves Japanese food for less than £ 20 . It has an average consumer rating and is located on the riverside . \nname : The Golden Curry | family friendly : no | near : The Six Bells||Near The Six Bells is The Golden Curry . It is not family friendly . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a kid - friendly , Italian restaurant near Rainbow Vegetarian Café . The price range is moderate , but has a low rating of only 1 out of 5 . \nname : Loch Fyne | food : English | customer rating : average | area : riverside | near : The Rice Boat||The Rice Boat in Riverside near Loch Fyne , serves English food average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop has a high priced menu and is family friendly . It has good reviews . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant that is cheap . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a child friendly Japanese coffee shop . It is low rated with the prices at more than £ 30 . In the riverside area near Burger King . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a pub that is not family - friendly . It has a low customer rating and a price range of less than £ 20 . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||The Fitzbillies is a moderate priced sushi bar located near The Six Bells . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Kid friendly and located near the All Bar One , Green Man is a moderately priced Chinese restaurant . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a kid friendly fast food restaurant that serves coffee at a reasonable price range . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside||The Phoenix near riverside is a 1 out of 5 moderate price range fast food \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : yes||Green Man is a low - priced , family - Friendly place located in the riverside . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry sells Indian food . It is located in the riverside area , near Café Rouge . It has a low customer rating but it is family friendly . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||There is an inexpensive adult coffee shop called Cocum , which serves wine and cheese . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is not a family friendly restaurant providing full meals in the low price range . It is located next to The Bakers . \nname : The Phoenix | food : Fast food | customer rating : average | area : city centre||The Phoenix is a fast food restaurant located in city centre with an average customer rating . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||At the end of the city there is a cheap restaurant called Bibimbap House located beside Clare Hall \nname : The Twenty Two | food : Japanese | family friendly : yes||For child friendly Japanese food try The Twenty Two . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Blue Spice is a family friendly restaurant near riverside with a rather cheap price range ; customers have given it an average rating . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||A restaurant usually had good customer service and yes , that mean being kid friendly also . A restaurant like this can average 3 out of 5 stars . A good example of this kind of restaurant is Cocum . \nname : Alimentum | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the moderate price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is 1 out of 5 . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||for best food visit Bibimbap House price more than 30 £ near to Clare Hall area riverside \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a children friendly fast food restaurant in the city centre . It has a high customer rating and is priced in the £ 20 to £ 25 range . \nname : The Golden Curry | food : Indian | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry offers Indian food at a price range of less than £ 20 . It is not family friendly and is located near The Bakers . \nname : Aromi | Type : restaurant | food : Chinese | area : city centre||In the city centre , there is a restaurant called Aromi that serves Chinese food . \nname : The Punter | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : yes | near : Café Sicilia||Children Friendly Japanese restaurant The Punter is located near Café Sicilia has a low customer rating for a coffee shop with a range of more than £ 30 \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||Alimentum is a family friendly Fast food restaurant located near riverside and is cheap . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Located riverside near Burger King , The Eagle is a coffee shop offering Japanese food with a price range of £ 20 - 25 . Not children friendly , but it has a high customer rating . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada is an expensive child friendly restaurant with low customer ratings . \nname : Wildwood | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | near : Ranch||The Wildwood is an Italian coffee shop offering affordable prices . It is located near Ranch and has unfavourable customer reviews . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a child friendly coffee shop in riverside near Café Sicilia that sells meals for more than £ 30 \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn is a family - friendly French place called The Rice Boat . It has a price range of less than £ 20 and was given a low customer rating . \nname : Strada | food : English | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||The Strada is situated near the Rainbow Vegetarian Café . It serves English food at high prices . With only an average customer rating , and no children warning , it 's not too much to shout about . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||For British food in the city centre , The Phoenix has one out of five stars customer rating and is moderately priced . \nname : The Phoenix | food : Indian | customer rating : low | area : riverside||The Phoenix is a low rated Indian restaurant in riverside . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a no family - friendly coffee shop Taste of Cambridge located near Crowne Plaza Hotel in the riverside that provides Fast food . \nname : The Cambridge Blue | Type : pub | food : French | price : cheap | near : Café Brazil||There is a Pub close to Café Brazil with a cheap price range . It is called The Cambridge Blue and serves French food . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The Golden Curry restaurant is family friendly and serves oriental food . It has received a low review . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge is a moderately priced venue , with a customer rating of 3 out of 5 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves Italian food . Has a customer rating 5 out of 5 . They are not family - friendly . There price range is cheap . They are in the riverside area near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : yes||Loch Fyne is an expensive , full - service , family friendly restaurant . \nname : The Phoenix | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a fast food restaurant that is moderately priced . \nname : Alimentum | food : Italian | price : moderate | area : riverside | family friendly : yes||Alimentum is a family friendly Italian restaurant which offers moderate priced food located long the riverside \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a Japanese coffee shop with an average customer rating , It is located near The Portland Arms and is very family friendly . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is a non - family - friendly fast food restaurant in Riverside near All Bar One with a price range of less than £ 20 . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is an expensive fast food restaurant that welcomes people of all ages . It is near Café Rouge \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||The Strada is an Italian pub with a high customer rating near Yippee Noodle Bar . \nname : Blue Spice | food : Indian | price : more than £ 30 | area : riverside||Blue Spice serves high priced Indian food in the riverside area . \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , near to Express by Holiday Inn is an expensive , child friendly , Italian restaurant in the city centre with average customer ratings . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||The Green Man has Japanese food with moderate price range located at the riverside near All Bar One and is not kids - friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers It is a coffee shop for the whole family , It is near The Portland Arms \nname : Loch Fyne | Type : restaurant | food : Italian | price : high | family friendly : no||Loch Fyne is an expensive Italian restaurant , it 's not child friendly . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub serving English food , it has a customer rating of 5 out of 5 but is not child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : cheap||There is a cheap Italian restaurant . It is called The Dumpling Tree . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : no | near : All Bar One||In the city centre , near All Bar One , there is an Indian restaurant called Green Man . Children are not welcome but it is moderately priced . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a French restaurant with a 5 out of 5 customer rating called The Rice Boat , it is near to the Express by Holiday Inn which is in the riverside area . It usually costs more than £ 30 but is not child friendly . \nname : The Eagle | food : Japanese | customer rating : 3 out of 5||The Eagle is a Japanese restaurant with a 3 out of 5 star rating . \nname : Cotto | food : English | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Cotto is near Ranch selling English food in a family Friendly environment with a rating of 5 out of 5 \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop near Clare Hall in riverside has an average rating . It offers fast food . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The children friendly coffee shop called The Wrestlers can be found by the riverside near Raja Indian Cuisine . It serves Japanese food in average price range . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||A kid - friendly pub serving French food is The Dumpling Tree . It is located near The Portland Arms . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant located in the city centre near Express by Holiday Inn . It offers a cheap price range , family - friendly atmosphere , and has average rating . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||There is a noodle restaurant located near The Sorrento , it is called Browns Cambridge . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue , a high cost restaurant of Italian food \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre||A high price fast food restaurant in the city centre is called The Phoenix , it has a 1 out of 5 customer rating . \nname : The Twenty Two | Type : pub | customer rating : low | area : riverside | near : Café Sicilia||The Twenty Two is a pub near Café Sicilia in the riverside area for a low customer rating \nname : The Punter | food : French | price : less than £ 20||Reasonable French food is available at The Punter . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Near Café Rouge is a place called The Golden Curry . It is riverside and has a 5 out of 5 rating , but it is not family - friendly . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : yes||In the less than £ 20 price range , Strada is a family friendly restaurant with a low customer rating . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A coffee shop that is kid friendly near Raja Indian Cuisine named The Wrestlers in the riverside area has a price range of more than £ 30 that serves Italian food . \nname : Zizzi | Type : pub | food : Indian | customer rating : low | family friendly : yes||Zizzi is a pub providing Indian food Its customer rating is low . \nname : The Phoenix | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||In Riverside you will find The Phoenix , which is moderately priced Italian food . The phoenix has received a customer rating of 1 of 5 . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||There is a high customer rating restaurant Midsummer House and they serve Japanese food . It is in the city near Café Rouge . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||There is a French Café The Eagle located in the city centre near Burger King and is children friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is located at city center . It is a cheap family - friendly Italian restaurant . \nname : Cotto | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||A moderately priced French coffee shop , Cotto , is located near The Portland Arms in riverside . its customer rating is 1 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : 1 out of 5 | near : Café Rouge||The Wildwood , near Café Rouge , is restaurant receiving customer ratings of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a child friendly coffee shop . It is near Café Sicilia . Is has a high customer rating . The Punter serves English food . It costs over 30 euro . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||Near Café Adriatic is a pub named The Vaults serving cheap food . This is highly rated with a 5 out of 5 customer rating . \nname : The Golden Curry | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry offers Japanese food in the riverside area near Café Rouge . It is kid friendly and has a customer rating of 1 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||I heard of this place called Zizzi , it is a family friendly coffee shop , It has a rating of three stars although it is quite expensive . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Families staying at the Crowne Plaza Hotel : Try the Browns Cambridge coffee shop in riverside , serving Italian food and rated 3 out of 5 by customers . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a 5 star rated , child friendly coffee shop in the riverside area that serves expensive French food . \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is an Italian restaurant near The Bakers that has a moderate price range and is kid friendly . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub best suited to adults with excellent customer ratings serving Chinese food . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a moderately priced pub in riverside near the Rainbow Vegetarian Café . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : average | near : Ranch||Wildwood is an Italian coffee shop next to the Ranch . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no||There is a coffee shop Aromi located close to the center . of the city . It has a superb view across the river . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||When looking for a cheap coffee shop in the Riverside area with a customer rating of 5 out of 5 , The Eagle offers a family friendly environment with Italian food . The Eagle is located near Burger King . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : high | family friendly : yes||Loch Fyne is a fast food restaurant that is expensive but child friendly . \nname : The Vaults | Type : pub | price : cheap | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is a cheap pub with a customer rating of 5 out of 5 . The Vaults is located near Café Adriatic . \nname : The Punter | food : English | price : more than £ 30||The Punter serves English food in the price range of £ 30 or higher . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||Eat English cooked meals in quiet atmosphere at The Rice Boat . \nname : The Vaults | food : Indian | price : cheap | family friendly : yes||The Vaults is a restaurant that serves cheap Indian food and is very family friendly . \nname : Alimentum | food : Chinese | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum provides Chinese food in the cheap price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is average . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers , restaurant is a inexpensive place that families go to . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a kid - friendly fast food restaurant in Riverside . \nname : The Wrestlers | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers children friendly Chinese restaurant pricey with a low rating \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is located by the riverside . it has a high customer rating with a price range of more than £ 30 . yes it is children friendly \nname : Strada | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves Japanese food , is family friendly , and has great ratings at low prices . It can be found near the Rainbow Vegetarian Café . \nname : The Plough | Type : pub | food : Fast food | price : cheap | family friendly : yes | near : Café Rouge||The Plough , located near Café Rouge is a family friendly pub that serves cheap Fast food . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside||The coffee shop The Golden Palace has a 3 star rating and serves expensive food and drinks . It is located north of the city center . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : no||The Olive Grove is a pub that provides Indian food with moderate prices in riverside and is not kids friendly . \nname : The Waterman | food : Chinese | family friendly : no | near : Crowne Plaza Hotel||The Waterman is providing Chinese food but it is not family friendly near Crowne Plaza Hotel . \nname : The Golden Palace | Type : restaurant | price : cheap||The Golden Palace is a restaurant providing a cheap price range . \nname : Midsummer House | food : Indian | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , which serves inexpensive Indian food near All Bar One , leaves much to be desired . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : no | near : Café Rouge||There is a moderately priced pub The Plough near Café Rouge . It is not kids friendly but they serve fast food . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||The Rice Boat family friendly Japanese low rating riverside . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Japanese food in a coffee shop , Fitzbillies is by the riverside good priced menu , family friendly . But has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||For a moderately priced coffee shop on the riverside , The Golden Palace , serving French cuisine , has a customer rating of 1 out of five . \nname : Wildwood | Type : pub | food : Italian | price : moderate | customer rating : 1 out of 5||With a moderate price range , and a customer rating of 1 out of 5 is Wildwood , an Italian pub . \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||French food is served up on the riverside at The Golden Curry . near Café Rouge . It is child - friendly and customer rated it 3 out of 5 . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Located by the riverside and near to the Yippee Noodle Bar , Alimentum serves Japanese food . It has an average customer rating and a price range of less than £ 20 . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Cotto is a restaurant near the All Bar One that offers food for more than £ 30 . \nname : The Vaults | food : Japanese | price : cheap | family friendly : yes||You can find cheap Japanese food at the Vaults . The Vaults is a family friendly restaurant . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a child - friendly restaurant and coffee shop in the average to high price range . It is located by the riverside and has an average customer rating . \nname : Green Man | food : English | price : moderate | area : riverside | family friendly : no | near : All Bar One||The is a moderately priced restaurant Green Man in riverside near All Bar One . It is not a kids friendly restaurant but they serve English food . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Near Yippee Noodle Bar on the river , is Alimentum which offers inexpensive typical American fare . \nname : The Plough | Type : pub | food : Chinese | price : moderate | family friendly : no | near : Café Rouge||The Plough pub specialises in Chinese food . It 's located near Café Rouge and caters to adult patrons willing to pay mid - range prices . \nname : Bibimbap House | food : Chinese | price : high | area : riverside | near : Clare Hall||High - priced Chinese food is on offer at Bibimbap House , a restaurant near Clare Hall in the riverside area . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||There 's a Fast food place to eat , and yes it 's children - friendly named The Plough which is a high price range near the Café Rouge . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman offers a fast food meal . It has average prices . It is family friendly and has a very good opinion \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||the riverside area has a Japanese restaurant called The Phoenix with a customer rating of 5 . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Zizzi coffee shop in riverside is kid friendly rated 3 out of 5 prices £ 20 - 25 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : city centre | family friendly : yes||There is a average coffee shop Aromi located in the centre of the city that is family - friendly , \nname : The Punter | price : more than £ 30 | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms is The Punter . This a children friendly restaurant with a price range of £ 30 near the riverside . \nname : Strada | Type : pub | food : French | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Located near Yippee Noodle Bar is Strada , a French pub , rated 3 out of 5 \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman provides Indian food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : Browns Cambridge | price : moderate | customer rating : 3 out of 5||Browns Cambridge serves mid - range priced food and customers say it is an okay place to eat . \nname : The Olive Grove | Type : pub | food : English | price : high | area : city centre | family friendly : yes||The Olive Grove serves English food . They are children friendly . There price range is high and there located in the area of city centre . They are a pub . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : 5 out of 5||Taste of Cambridge is a restaurant with high customer ratings . The price range at this restaurant is slightly higher than average . Prices are above £ 30 . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||If you like Italian food , try The Cricketers restaurant , near All Bar One . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry is a low price sushi restaurant located near The Bakers . \nname : Wildwood | Type : pub | food : Chinese | price : moderate | customer rating : 1 out of 5||Wildwood is a 1 out of 5 stars pub with Chinese food in the moderate price range . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : city centre | family friendly : yes||Indian pub The Olive Grove is located in the city centre and is child friendly , though the price range is a little more than normal . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is a Fast food in Riverside with high customer rating , no children friendly , more than £ 30 \nname : The Eagle | food : Fast food | customer rating : 1 out of 5||customer rating is poor 1 out of 5 , but The Eagle is quality food \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : no||Zizzi is a restaurant that provides average Italian Pub fare and is not family - friendly . \nname : Cotto | price : less than £ 20 | area : city centre | near : All Bar One||Cotto , with a price range less than 20 GBP is located in the city centre near All Bar One . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge provides Chinese food It is located in the riverside . It is near The Sorrento . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a good , low - priced pub to go out with your friends \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a low rated restaurant that offering meal for more than 30 euro . located in riverside near Café Adriatic \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||In the riverside is The Phoenix that has high customer rating and a price range of £ 20 - 25 . \nname : The Punter | food : English | price : moderate||The Punter is a moderate price range English restaurant \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is an expensive coffee shop called Fitzbillies , which sells Italian food , situated in the riverside area . It is unpopular with customers and not suitable for families . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Waterman is a Pub that offers Chinese , rated 1 out of 5 stars , and set next to the riverside . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : average||Wildwood pub offers low priced fast food and holds an average customer rating . \nname : Zizzi | Type : pub | food : Chinese | customer rating : average | family friendly : yes||A Chinese pub named the Zizzi has an average customer rating and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately priced , family friendly coffee shop , located in the park next to the river . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : riverside||For less than £ 20 , Blue Spice serve Chinese food in the riverside area . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , there is an Italian coffee shop called Taste of Cambridge . It is child friendly in the riverside area . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||Near The Portland Arms is an Italian pub called The Dumpling Tree which is child friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : less than £ 20 | family friendly : yes||Loch Fyne is a restaurant providing Indian food in the less than £ 20 price range . \nname : The Mill | Type : pub | food : English | price : moderate | area : city centre||The Mill pub has English food that is moderately priced . It is in the area of city centre . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers Italian restaurant is medium priced . It is family friendly and medium priced . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||Taste of Cambridge is a restaurant which is rated highly by customers . The price range is over £ 30 \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat of Japanese food with cheap price is located near Express by Holiday Inn by riverside . Their customer rating rating is high but its not family - friendly . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no||Aromi is a non - family - friendly Japanese coffee shop located on the riverside . It has an average customer rating . \nname : The Phoenix | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix serves Japanese food in the riverside area with prices under £ 20 . It received a low customer rating . \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop near Ranch that serves French food between £ 20 - 25 . Wildwood has a 3 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||Loch Fyne is a kid friendly restaurant providing English food . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is an Indian restaurant located near The Sorrento in riverside , and is family friendly . \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||The Twenty Two offers French food and yes has family area . It is located in the riverside . \nname : The Punter | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||There is a moderate priced coffee shop called The Punter near Café Sicilia that serves Indian food , with a customer rating of 3 out of 5 and it is not child friendly . \nname : The Eagle | food : Japanese | customer rating : average||The Eagle is ratings average and they are serving Japanese tea . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , there is a family friendly coffee shop that serves fast food with a great customer rating and is called Browns Cambridge . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||Strada is a pub that is located close to Yippee Noodle Bar . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is an expensive family dine in restaurant with bad reviews called The Waterman . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman offers Indian food , within a price range of £ 20 - 25 , it has a high customer rating , and is located in a city centre . It is not kids friendly . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||For a restaurant with high customer rating near Café Rouge , try Wildwood . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two is a kid - friendly fast food restaurant in the Riverside area . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is French coffee shop called The Eagle which has a moderate price range and is kids friendly , but , it has a customer rating of 1 out of 5 . It is located in the city centre near Burger King . \nname : The Golden Curry | food : Italian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is an Italian place which is children Friendly near The Bakers with a more than £ 30 price range . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a moderately priced Indian restaurant with a 3 out of five star rating . It 's located in the city centre near the Yippee Noodle Bar . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a Japanese restaurant . It is family friendly and has a low customer rating . It is near Ranch \nname : Fitzbillies | food : English | price : moderate | near : The Six Bells||Located near The Six Bells , Fitzbillies has English food and a moderate price range . \nname : The Plough | Type : pub | food : Chinese | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a kid friendly pub serving £ 20- £ 25 Chinese meals and is located near the Café Rouge . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is 1 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a children friendly coffee shop that offers Japanese food . It is near Crowne Plaza Hotel in the area of riverside . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside||In Riverside The Golden Palace is rated as high , its a coffee shop which served fast food and meals range from £ 20 - 25 . \nname : Wildwood | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | near : Ranch||There 's a coffee shop near Ranch which does cheap French food . It called Wildwood and has a customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : Indian | price : moderate | customer rating : 3 out of 5||Pub and Indian food with a moderate price range , Wildwood . Customer rating 3 out of 5 . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat has moderate prices and a 1 out of 5 customer rating , it is located near Rainbow Vegetarian Café . \nname : Taste of Cambridge | Type : restaurant | price : £ 20 - 25 | customer rating : 3 out of 5||There is a restaurant named Taste of Cambridge that is low priced and has a customer rating of 3 out of 5 . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Within the city centre is the The Waterman which serves Indian food . They are not children friendly and have a price range of more than £ 30 . They have a high customer rating . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : no||in the riverside area serving adult only Japanese food is The Twenty Two \nname : Strada | Type : restaurant | customer rating : 5 out of 5||Strada is a new restaurant with a 5 out of 5 rating . It is a must try \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman which has a customer rating of 3 out of 5 and a price range of 20 - 25 serves Japanese food is located in the city centre , however , it is not kid friendly . \nname : Fitzbillies | food : Fast food | price : £ 20 - 25 | near : The Six Bells||Fitzbillies is a mid priced Fast food restaurant near The Six Bells . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||Located near The Portland Arms is child friendly , Japanese pub , The Dumpling Tree . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is an Italian coffee shop in the middle price range . It is highly ranked and family friendly . \nname : Blue Spice | price : moderate | area : riverside||A moderately priced restaurant , residing by the river is named Blue Spice . \nname : The Phoenix | food : French | customer rating : average | area : city centre||The Phoenix is a French food restaurant with an average customer rating . It is located in the city centre . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||I recommend a family coffee shop that is rated 6 stars named Blue Spice located at Avalon \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||There is a pub called The Waterman by the riverside with a 5 out of 5 customer rating . \nname : Green Man | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Green Man is a Chinese food place in moderate price range . They are located in the city centre and are kids friendly . It is near All Bar One . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||There is a coffee shop named Clowns near Clare Hall in the city centre that serves Fast food and has a customer rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||an excellent French restaurant is Loch Fyne great for family \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry is a kid friendly fast food restaurant . It is near The Bakers and is moderately priced . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Located in the city centre near Burger King , The Eagle is a low priced coffee shop with a three out of five star rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop serving French food . It is kid friendly , averagely priced . It is located near the city centre with a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a fast food restaurant with a low price range . They have a 5 out of 5 star rating . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||If you looking for Indian food , try The Golden Curry . 3 stars for great food . Family oriented . Handicapped accessible . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a fast good restaurant that is kid friendly but it has a rating of 3 out of 5 . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||When near Crowne Plaza Hotel , try out the family friendly Indian restaurant The Waterman . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant that sells Chinese food , cheap price range , average customer service rating , in City Centre , family friendly , near Express by Holiday Inn \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix is an expensive Japanese restaurant with low customer ratings located by the riverside . \nname : The Waterman | Type : pub | food : English | customer rating : 1 out of 5 | area : riverside||The Waterman is an English pub located at riverside , which received a customer rating of 1 out of 5 . \nname : The Vaults | food : Italian | price : moderate | family friendly : no||The Vaults serves Italian food at a moderate price in an adult environment . \nname : Green Man | Type : pub | food : Japanese | area : riverside | near : Café Rouge||By the riverside near Café Rouge , the Green Man Pub serves Japanese food . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman Japanese restaurants is a high priced child - friendly restaurant situated on the riverside area of town , customers rated it a 3 out of 5 . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : no||Zizzi is an English pub , which is not family - friendly and has a 5 out of 5 rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||The Cambridge Blue is a low customer rating Japanese restaurant . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman serves Italian food in city centre with average ratings and is cheap and not family - friendly . \nname : Browns Cambridge | food : Italian | price : high | customer rating : average||Average Italian food for higher than average prices can be found at Browns Cambridge . \nname : The Eagle | food : French | customer rating : 5 out of 5||French serving The Eagle rates 5 out of 5 \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Midsummer House has French food for more than £ 30 near All Bar One and has a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a fine - dining coffee shop that offers typical American fare and is located near The Portland Arms on the river . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near Rainbow Vegetarian Café with a high price range and a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Indian | price : moderate | family friendly : yes||Loch Fyne is a family friendly restaurant . It offers Indian food at a moderate price . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop in the low price range that serves pasta . It is located near Raja Indian Cuisine and has a public restroom . \nname : Bibimbap House | food : Fast food | area : city centre | near : The Rice Boat||Near The Rice Boat in the city center , there is a fast food joint called ' Bibimbap House ' . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman caters to all individuals , serving up delicious Indian food for reasonable prices . It is rated very favourably by customers and found in the heart of the city . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||French restaurant The Eagle is a coffee shop located in city centre near Burger King . It has a customer rating of 1 out of 5 and is not kid friendly , price range is moderate . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly Italian coffee shop in the riverside area close to Crowne Plaza Hotel . \nname : The Eagle | food : Fast food | customer rating : 5 out of 5||The Eagle is a fast food establishment with a high rating of 5 out of 5 . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is near the riverside area and can be located near the Yippee Noodle Bar . The restaurant serves English food and the price is cheap . It has a customer rating of 5 out of 5 . \nname : The Vaults | Type : pub | price : less than £ 20 | customer rating : average | near : Café Adriatic||There is a pub near Café Adriatic called The Vaults which offers good quality food and drink at a cheap price . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||The Dumpling Tree provides Fast food in a restaurant environment for those looking to spend £ 20 - £ 25 . \nname : Bibimbap House | food : Italian | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a cheap dine in restaurant located near Clare Hall . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a Pub Near the Café Rouge . This pub is fairly priced and serves a wide variety of French cuisine . It is also quite family friendly . \nname : Blue Spice | price : moderate | area : riverside||Blue Spice is a moderately priced place in the riverside area \nname : Fitzbillies | food : French | price : moderate | near : The Six Bells||Fitzbillies is a reasonably priced restaurant near The Six Bells , serving French food \nname : Bibimbap House | food : Italian | price : high | area : city centre | near : Clare Hall||Bibimbap House serves costly Italian . It is in the center of the city near Clare Hall . \nname : The Waterman | food : Chinese | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel , The Waterman is family friendly and serves Chinese food . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||Alimentum serves cheap French food in the riverside area . It is not family - friendly . \nname : Midsummer House | food : English | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House situated near Café Rouge serves English food \nname : The Wrestlers | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is an English food serving establishment . The rating is average , rated 1 out of 5 . It is kid friendly and has a moderate price range . \nname : The Golden Curry | food : Italian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a reasonably priced Italian restaurant that welcomes children , near The Bakers \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child - friendly fast food coffee shop in the high price range . It is located in the city centre , near Raja Indian Cuisine . \nname : Alimentum | food : Fast food | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum is a Fast food service with a high price range located in city centre and near of Yippee Noodle Bar \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : no||There is a fast food establishment in the city centre called The Twenty Two . It is not family - friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Cocum fast food coffee shop offers low prices and 5 out of 5 rated fast food . This is not your average family - friendly fast food place , this one is for adults . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||Strada is a child friendly establishment in the mid price range . It is highly rated by its customers . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum serves Japanese food in the moderate price range is located near the Yippee Noodle Bar in Riverside and has a 1 out of 5 customer rating \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : yes | near : The Sorrento||In the area of riverside near The Sorrento you can find Browns Cambridge , a family friendly restaurant that serves Chinese food . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : average||there is a High price range restaurant The Cambridge Blue located in the south of the city that Japanese food . \nname : Wildwood | Type : pub | food : Fast food | price : high | customer rating : average||The Wildwood pub serves burgers and chips , typical pub grub in the mid price range . \nname : Cotto | food : Italian | near : Café Rouge||Cotto is a place close to Café Rouge that provides Italian . \nname : The Rice Boat | food : Chinese | area : city centre||The Rice Boat provides Chinese food It is located in the city centre . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||A Fast Food restaurant located in the riverside is called Aromi . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix has received high customer ratings for its cheap Chinese food in the city centre . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a family pub with French food close to The Portland Arms \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : The Rice Boat||Near The Rice Boat in the Riverside area you can find The Twenty Two ; it is not family - friendly and is low rated with price range less than £ 20 . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman at Riverside delivers Italian cuisine at a high price and low customer reviews . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : no||The Vaults serves Indian food for less than £ 20 . They are not family oriented . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||With a customer rating of 3 out of 5 , the kids - friendly Fast food restaurant called The Golden Curry is located riverside near Café Rouge . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap , family - friendly , Fast food establishment near the Express by Holiday Inn . The restaurant is near the city centre and has a 5 out of 5 customer rating . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly venue with cheap prices and an average customer rating . It is located near The Rice Boat , in the area of riverside . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is a Chinese food restaurant , prices ranging from 20 - 25 dollars . The customer rating is high and it is located in center . city . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||An average restaurant at the less than £ 20 price range is the Taste of Cambridge . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Located near The Portland Arms is a child - friendly coffee shop that also serves Italian food called The Cricketers with a customer rating of 1 out of 5 making which is atrocious . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a high priced adult coffee shop that serves Italian food . It is located near Raja Indian Cuisine in the city centre . \nname : Cotto | food : Italian | near : Café Rouge||Close to Café Rouge , there 's an Italian restaurant called Cotto . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves French food . It is located near Café Sicilia and not a kids friendly place . The price range is £ 20 - 25 and has a customer rating of 2 out of 5 . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Near The Six Bells , Fitzbillies has Japanese food and a price range of £ 20 - 25 . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers offers highly rated Italian food in a kid friendly atmosphere . Meals range between £ 20 - 25 . \nname : The Twenty Two | food : French | family friendly : yes||There is a Kid Friendly outlet called The Twenty Two offering French food \nname : Aromi | Type : coffee shop | food : Indian | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly low - rating coffee shop that provides Indian food located on the riverside . \nname : The Twenty Two | food : English | family friendly : yes||The closest family restaurant with English food would be The Twenty Two . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||With a 3 out of 5 customer rating , The Cambridge Blue is a fast food restaurant . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a city centre Indian restaurant near the Express by Holiday Inn . It is highly rated , adult friendly and pricey . \nname : Zizzi | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||Zizzi is a coffee shop in riverside with high prices and a rating 3 out of 5 \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is a 5 star restaurant . It is family friendly and cheap . \nname : Green Man | food : Fast food | price : high | area : riverside | family friendly : yes | near : All Bar One||Located in the riverside area near All Bar One , Green Man is a children friendly fast food eatery with a high price range . \nname : The Phoenix | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre||The Phoenix located in the city centre , offers Indian food at a high price but , is only rated a 1 out of 5 . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||A children friendly pub serving English food . It is located in the riverside area is called Giraffe . \nname : Clowns | Type : coffee shop | food : French | customer rating : low | area : city centre | near : Clare Hall||Clowns coffee shop , in the city centre near Clare Hall , offers low quality French dining . \nname : Strada | food : Fast food | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a children friendly , high priced , and average rated Fast food place located near Rainbow Vegetarian Café . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : no||Loch Fyne is a low cost restaurant that is not family friendly . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||There is a restaurant located in the center of the city called Blue Spice . The price range and customer rating are both rated as average . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a family friendly near the city centre restaurant . The price is on the high range . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : city centre||The city centre has an average Fast food pub called The Waterman . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||Alimentum is a venue located on the riverside that is family - friendly and serves Italian food in the low price - range . \nname : Alimentum | food : English | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||the Yippee Noodle Bar is a low cost restaurant with medium rating by the Alimentum \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix sushi bar , average place to at the riverside but the price is too much , more than £ 30 \nname : The Eagle | food : Indian | customer rating : low||n The Eagle there are a Chinese shop high average enter riverside and stop no but Express by Holiday Inn \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The moderately priced , Indian coffee shop , Cocum , is not well rated or child friendly . \nname : The Twenty Two | food : French | family friendly : yes||Yes , The Twenty Two restaurant has French food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies with an average customer rating is a high - priced Italian coffee shop in riverside . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is on the river near The Sorrento and is not family friendly . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||The Taste of Cambridge is a high priced restaurant and has a customer rating of 3 out of 5 . \nname : Strada | Type : pub | food : English | customer rating : average | near : Yippee Noodle Bar||Strada is a pub that serves English food and is located near Yippee Noodle Bar and has a average customer rating \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is in riverside area , close to All Bar One . its price range is £ 20 - 25 . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : no | near : Café Rouge||The Plough is in the City Centre near the Café Rouge . It is a pub that sells French food with a price range of more than £ 30 . It is not children friendly . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||Low cost French pub Wildwood with great customer reviews . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||The restaurant Zizzi is a one star establishment that is not family friendly . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee Shop , located near the River Cam and close to The Sorrento , has an affordable menu of cheeses , breads and soups . \nname : Browns Cambridge | food : Japanese | price : less than £ 20 | customer rating : low||Browns Cambridge is a low - cost sushi restaurant \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||There is a family friendly restaurant near the river called Blue Spice . It is rated 1 out of 5 and is in the higher price range . \nname : The Golden Palace | Type : restaurant | customer rating : 1 out of 5 | area : riverside||A riverside restaurant with a low rating is The Golden Palace . \nname : Alimentum | food : English | price : high | area : city centre | family friendly : yes||The Alimentum is an up market family - friendly restaurant serving English cuisine . It is located in the city centre \nname : Loch Fyne | Type : restaurant | food : English | price : cheap | family friendly : yes||Loch Fyne is a cheap and family friendly restaurant . Offers English food . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is based in the riverside area and serves low cost French food . It is not family - friendly . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||The Cricketers restaurant serves English food and can be found near All Bar One . \nname : The Cambridge Blue | Type : pub | food : Chinese | price : moderate | near : Café Brazil||The Cambridge Blue is a pub offering Chinese food at a moderate price range and is near Café Brazil . \nname : The Wrestlers | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||The Wrestlers provides Indian food in the high price range . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is average . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : cheap | near : Café Brazil||The Cambridge Blue is a pub that serves Fast food in a cheap price range , located near Café Brazil . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that offers prices under 20 pounds , French food in a family friendly environment that is located near Café Sicilia with low customer ratings . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man offers moderately priced Italian food in Riverside that is kids - friendly and near All Bar One . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Japanese food . It is situated near Raja Indian Cuisine at the riverside . Prices are less than £ 20 . Not family - friendly . \nname : Alimentum | food : Indian | price : moderate | area : city centre | family friendly : no||There 's an adult only Indian restaurant in the city centre called Alimentum . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman is located on the riverside , serving moderately priced Italian food . It is not recommended for kids and has an average customer rating of 3 out of 5 . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House , near All Bar One , offers great quick food for an above average price . \nname : Clowns | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop that is serving French food is located in the riverside area , near Clare Hall and has an average customer rating 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kids friendly Italian coffee shop in the riverside area . It is moderately priced with a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop has a variety of food near The Portland Arms \nname : The Twenty Two | food : French | area : riverside | family friendly : yes||On the riverside , you can find the kids friendly French restaurant The Twenty Two . \nname : Cotto | food : Indian | customer rating : low | family friendly : yes | near : Ranch||Cotto has a low customer rating . They serve Indian food near Ranch and are family friendly . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||The Golden Palace is a moderately priced restaurant . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||Highly rated Loch Fyne , near The Rice Boat , serves English food in riverside . \nname : Midsummer House | food : Indian | customer rating : average | near : Café Rouge||Midsummer House near Café Rouge serves Indian food in an average price range . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : no||A Fast Food restaurant in the riverside area named The Rice Boat . The customer rating is low and it is not family - friendly . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||Wildwood pub is more expensive but serves food and drink . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||Clowns is a pub by the riverside with moderate pricing and a client rating of 3 out of 5 . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : no | near : All Bar One||The Green Man is a French eatery in the City Centre area near All Bar One . This eatery is not child friendly and has prices that are above average . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a riverside Italian coffee shop near Clare Hall . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms . They serve Indian food . This shop has been rated 1 out of 5 by customers and is said to be kid friendly . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||The Rice Boat , located north of the city centre , is a three - star river - side restaurant . \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : no||The Indian pub The Giraffe is not family friendly and can be found in the city centre . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||Browns Cambridge is a 3 - star burger and fry restaurant with low prices . \nname : Strada | Type : restaurant | customer rating : 3 out of 5||If you are going by rating , Strada is a restaurant with a 3 out of 5 rating . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Next to the river you can find a nice family friendly restaurant which name is The Rice Boat . It offers Chinese food . The only negative point the low costumer rate . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||Café Sicilia 's profits recently suffered due to their neighbor The Punter receiving high ratings for their reasonably priced French food at E20 - E25 , even though they are not kid friendly . \nname : Clowns | Type : pub | price : moderate | customer rating : 3 out of 5 | area : riverside||On Riverside is a pub , Clowns . Moderately priced , customers rate it 3 out of 5 . \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : yes||Zizzi is a pub that serves fast food . It is children friendly and has an average customer rating . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||There is a cheap Bar Midsummer House with a All Bar One of Wine , Cheese and Fruits . \nname : Aromi | Type : restaurant | food : English | area : riverside||If you are looking for English food , there is a restaurant at riverside called Aromi . \nname : Green Man | food : Indian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a moderately priced , kid friendly Indian restaurant in the riverside area near All Bar One . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||Located on the riverside , The Rice Boat serves French cuisine to families and holds an average customer rating . \nname : Travellers Rest Beefeater | price : high | customer rating : 1 out of 5 | area : riverside | near : Café Adriatic||The high price Range Travellers Rest Beefeater is situated in the riverside area near the Café Adriatic . It has a customer Rating of 1 out of 5 . \nname : Strada | Type : pub | food : Japanese | customer rating : low | near : Yippee Noodle Bar||There is a low - rated Japanese pub named Strada . It is located near Yippee Noodle Bar . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||Loch Fyne is a low priced restaurant that is family friendly and offers burgers . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe is a low cost , high rated , family friendly coffee shop near The Bakers . \nname : The Vaults | Type : restaurant | food : English||The Vaults is an English food serving restaurant . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly Italian coffee shop located riverside near the Crowne Plaza Hotel . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||coffee Shop in the cheap price range , serves Italian Food and is named The Golden Palace in the riverside area , average customer rating \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||For a 3 out of 5 star customer rated restaurant near Café Rouge , Wildwood is relatively expensive . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : yes | near : The Bakers||The Plough restaurant is a place to bring your family of all ages and is located near The Bakers \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||You can get high priced Italian at The Strada near the Rainbow Vegetarian Café . It is children friendly with a rating of 1 out of 5 . \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Blue Spice in riverside sells Japanese meals for £ 20 - 25 \nname : Cotto | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a Italian coffee shop near The Portland Arms in the city centre . It has a low customer rating and has a price range less than £ 20 . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a riverside kid friendly restaurant named The Golden Curry . It is located near Café Rouge and customers rate the food a 1 out of 5 . \nname : Green Man | Type : pub | food : Chinese | area : riverside | near : Café Rouge||Green Man is a pub that provides Chinese food It is located in the riverside . It is near Café Rouge . \nname : The Eagle | price : cheap | customer rating : average | area : riverside||The Eagle has an average customer rating and offers a cheap price range in a riverside area . \nname : Strada | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada located near Rainbow Vegetarian Café is a children friendly establishment providing French food at a price range of more than £ 30 and customer rated at 5 out of 5 . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a Japanese restaurant near Rainbow Vegetarian Café that is children friendly and has a rating of 5 out of 5 , prices range up to 30Euro \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is a restaurant that serves Japanese food and is family friendly . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is based in the city centre serving moderately priced English food with a customer rating of 1 out of 5 . It is not child friendly . \nname : Loch Fyne | Type : restaurant | food : English | price : moderate | family friendly : yes||Loch Fyne is family friendly , medium priced traditional British Pub . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap place to eat Italian food in riverside that is family friendly . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : no | near : Express by Holiday Inn||Fitzbillies near the Express by Holiday Inn average food with a price point of less than £ 20 per meal , Sorry no children allowed . \nname : The Plough | Type : pub | food : English | price : high | family friendly : yes | near : Café Rouge||There is The Plough a children friendly English food pub near Café Rouge with high prices . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Blue Spice is a low - priced restaurant in the city centre that delivers take - away . \nname : The Golden Curry | food : Fast food | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry provides Fast food in the low - price range . It 's located near The Bakers and it 's family - Friendly . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Café Brazil||The Vaults , near Café Brazil in city centre is a moderately priced coffee shop with a rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||the coffee shop The Eagle moderate Fast food kid friendly 1 out of 5 Burger King riverside \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is located north of the city centre and it is a coffee shop . It has a three star rating and its great for families . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Browns Cambridge is an expensive and not highly rated restaurant in the city . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a good quality , not pricey shop for all the family \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is an expensive restaurant with a 3 out of 5 star rating in the riverside area near Café Adriatic . \nname : The Rice Boat | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located in riverside The Rice Boat is a French restaurant that is kid friendly and has a 5 out of 5 rating . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : yes | near : Café Rouge||The Plough is an expensive pub near Café Rouge that serves Chinese food . They are kid friendly . \nname : Midsummer House | food : Japanese | customer rating : 5 out of 5 | near : Café Rouge||This Japanese restaurant , Midsummer House near Café Rouge is highly rated with 5 out of 5 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a city centre restaurant offering French cuisine . It is children friendly with 5 out of 5 ratings from past customers . Typically priced above thirty pounds it can be found close to Express by Holiday Inn . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers is an average low - priced Japanese restaurant that is not family - friendly . \nname : Cocum | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes||For less than £ 20 you can eat at Cocum Japanese coffee house . Cocum has an average customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||Loch Fyne is a cheap Italian restaurant , that yes is good for families . \nname : The Rice Boat | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat restaurant serves English food and has a child friendly environment . While the price range is more than 30 European dollars , it has a high customer rating . The restaurant is located near the Express by Holiday Inn on the riverside . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman providing English food . Kids Friendly , high costumer rating and £ 20 - 25 price range . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe pub in riverside has French food and is kid friendly . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : moderate | near : Café Brazil||The Cambridge Blue is near the pub Café Brazil that sells moderate priced fast food . \nname : Midsummer House | food : Indian | price : more than £ 30 | customer rating : high | near : All Bar One||With a price range of more than £ 30 , the highly rated Midsummer House serves Indian food and is near All Bar One . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||The restaurant Aromi is located on the riverside and provides Fast food . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is located near Ranch . It is a coffee shop that is poorly rated for its cheap Japanese food . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||With a 1 out of 5 rating Aromi is a family friendly Japanese coffee shop in the riverside area . \nname : The Cambridge Blue | Type : pub | food : French | price : cheap | near : Café Brazil||The Cambridge Blue is a French Pub with a cheap price range . It is located close to Café Brazil . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||There is a child friendly Chinese pub named Zizzi with a high customer rating . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||The Golden Curry is a family friendly place that serves Japanese food and has average customer ratings . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Although the customer rating is low and the price range is more than £ 30 , The Rice Boat Japanese restaurant is near Express by Holiday Inn in riverside . \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||There is a moderately - priced sushi restaurant for adults called The Vaults . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||An Indian restaurant near Café Rouge in riverside is known as The Golden Curry . It is kids friendly and has been rated as 3 out of 5 \nname : Green Man | food : Indian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man is an Indian restaurant with moderate prices , its located on the riverside near All Bar One , yes its kids friendly \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves French food and is child friendly , it 's near the Crowne Plaza Hotel . \nname : The Vaults | food : Fast food | price : moderate | family friendly : no||Fast food store , The Vaults is not kids friendly . It has moderate price ranges . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House provides Chinese food in the moderate price range . It is near All Bar One . Its customer rating is 3 out of 5 . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a child friendly French restaurant in riverside with a low rating . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a high - rated restaurant in Riverside . It serves Japanese food with prices ranging from £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||In the city centre area is the coffee shop Fitzbillies . It has Indian food in the price Range of less than £ 20 and a low customer Rating . It is not family Friendly . \nname : Cotto | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto is a reasonable priced restaurant located near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a fun and family - friendly fast food coffee shop located in the city centre , near Burger King , with high quality food that merits a pretty penny . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an adults - only establishment located within the city centre near Express by Holiday Inn . This business offers low priced Chinese cuisine and earned a customer rating of 5 out of 5 . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : city centre | family friendly : yes||Lets go to a pub names The Olive Grove . Their prices are pretty moderate and they serve great English food . They are kid friendly and located in city centre . \nname : The Waterman | Type : pub | food : French | customer rating : average | area : riverside||The Waterman is a pub located near the river , is rated 3 stars , and has fine wine and bread . \nname : The Cricketers | Type : restaurant | food : Japanese | near : All Bar One||The Cricketers is a Japanese restaurant located near All Bar One . \nname : Blue Spice | food : Chinese | price : high | area : riverside||Blue Spice restaurant is situated by the riverside , serving high price Chinese food . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||The Eagle is a highly recommended dining place that specializes in Noodles . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||A children friendly French restaurant named Strada is located near Rainbow Vegetarian Café . It has a price range of £ 30 and has a low customer rating . \nname : Blue Spice | food : Chinese | price : less than £ 20 | area : city centre||Blue Spice serves Chinese food in the city centre for less than £ 20 . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum , a French and kid friendly restaurant along the riverside , has a price range of 30 euros and above . \nname : Wildwood | Type : restaurant | family friendly : no||There is a restaurant in the city Wildwood but there are not family friendly . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is coffee shop that serves French food that is more than £ 30 . Customers rate it 5 out of 5 and it is in Riverside near The Portland Arms . \nname : Fitzbillies | food : Italian | price : cheap | near : The Six Bells||Fitzbillies an Italian restaurant near The Six Bells is cheap . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove is a traditional English pub with great prices for all the family . Children most welcome . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family coffee shop but also with Japanese food its near to the Crowne Plaza Hotel \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an inexpensive Italian coffee shop in Riverside . It is family - friendly , and its customers rate it as average . \nname : The Phoenix | food : French | customer rating : 5 out of 5 | area : city centre||The Phoenix is a French restaurant located in the city centre that boasts a 5 out of customer rating . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a family - friendly 3 - star Japanese restaurant serving moderately - priced Sushi . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant located on the river near the Yippee Noodle Bar . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : riverside||With a French menu by the riverside , The Waterman has a low rating . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough , located near Express by Holiday Inn is a child - friendly restaurant . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : low | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is an expensive one star restaurant located near the Café Adriatic by the River . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a family friendly licensed coffee shop . It is five star rated and in the low price range . \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family - friendly restaurant located outside the city centre . \nname : Cotto | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop by The Portland Arms that serves moderately priced pub food . \nname : Midsummer House | food : French | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House serves French food near All Bar One . Midsummer House has a 1 out of 5 customer rating and has a moderate price range . \nname : The Punter | price : moderate | area : riverside | family friendly : no | near : The Portland Arms||The Punter is in riverside near The Portland Arms . It is moderately priced and not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies located at riverside is children - friendly Fast food coffee shop rate 1 out of 5 high priced . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : riverside | family friendly : yes||By the riverside , enjoy a pub cuisine , at the Aromi restaurant , in a family friend scene , with a 5 out 5 star rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a Japanese coffee shop that is located in the city centre , family - friendly , has a price range of less than £ 20 and has average customer ratings \nname : Alimentum | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is an Italian restaurant near Yippee Noodle Bar . It has a medium price range but has been given poor reviews . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : city centre||The Phoenix is high but serve French with a customer rating of 3 out of 5 in city centre . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly pub at the riverside . Customer rating is average \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub that serves Indian food . The price range is average and is located in Riverside . It is kids friendly . \nname : The Eagle | food : Italian | customer rating : 5 out of 5||Customers very highly rate The Eagle which cooks up Italian food . \nname : The Phoenix | food : Japanese | customer rating : low | area : city centre||Rated low by customers , The Phoenix serves Japanese and is located near the centre of the city . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a family - friendly restaurant offering food and drink at a low price . \nname : Strada | price : high | customer rating : average | family friendly : yes||Strada is a family friendly and expensive place with average food . \nname : The Phoenix | food : Japanese | customer rating : low | area : city centre||The Phoenix serves Japanese food and is located in the centre of the city . It has a low customer rating . \nname : The Mill | Type : coffee shop | food : Japanese | price : cheap | area : riverside | near : The Sorrento||The Mill , near The Sorrento in Riverside serves Japanese food , and is also a little coffee shop , the prices are cheap . \nname : The Vaults | Type : restaurant | food : French||The Vaults is a French cuisine restaurant . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is on the riverside , and serves English food . It is also family - friendly . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : no||Strada is a venue that offers medium priced options , however , is not family friendly . \nname : The Rice Boat | food : Indian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the riverside . It has an average customer , a high price range , is not children friendly , and is near Express by Holiday Inn . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||Browns Cambridge is a high quality , five star restaurant . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is an Indian restaurant that has average prices and that is child - friendly . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace has a price range of £ 20 - 25 . It 's a coffee shop in the city centre that serves Fast food . It has a high customer service rating . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||You can bring your children along to this family - friendly spaghetti house by the river . Browns Cambridge is just along from the Crown Plaza Hotel . Rated one star . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : cheap | family friendly : yes||Loch Fyne is a cheap , family friendly fast food restaurant . \nname : The Mill | Type : pub | food : Chinese | price : moderate | area : city centre||The Mill is located in the city centre and it is a pub which provides Chinese food . It has a moderate price range . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry is located in the city centre near Café Rouge . It is a family friendly Indian eatery with a 5 out of 5 customer rating . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat located in the city centre near the Express by Holiday Inn . It is kid friendly and has a customer rating of 3 out of 5 . It serves Italian food with a moderate price range . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Located near Ranch , The Cricketers is a children friendly pub boasting a customer rating of 3 out of 5 . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : low | family friendly : no | near : The Bakers||Giraffe is a higher priced coffee shop near The Bakers that is not kid Friendly \nname : Zizzi | Type : pub | food : Chinese | customer rating : low | family friendly : yes||Zizzi is a family friendly pub that serves Chinese food and has a low customer rating . \nname : Loch Fyne | food : Fast food | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||There is a Fast food place called Loch Fyne . It has a customer rating of 3 out of 5 and it is located near to The Rice Boat in the riverside area . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||North of the city center . is an Italian restaurant named The Phoenix that offers low prices but is not well reviewed . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||On the river next to Burger King there is a family friendly coffee shop called The Eagle . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||Indian food is served at Cotto , near Ranch and it 's children friendly with high customer rating . \nname : The Golden Curry | food : Chinese | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a high price range , Chinese restaurant that is child friendly and is located near The Bakers . \nname : The Twenty Two | food : Italian | family friendly : yes||A family friendly Italian restaurant is The Twenty Two . \nname : The Golden Curry | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : The Bakers||If you 're looking for an affordable and kid friendly fast food restaurant , The Golden Curry is located near The Bakers . \nname : The Rice Boat | food : Italian | customer rating : low | area : riverside | family friendly : no||Located on the riverside and suitable for families , The Rice Boat serves mediocre Italian food . \nname : The Golden Curry | food : Chinese | price : more than £ 30 | family friendly : yes | near : The Bakers||Located near The Bakers , The Golden Curry Chinese restaurant is child friendly but be prepared to pay more than 30 British pounds . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : yes||Located in city centre , The Alimentum is a fast food restaurant . The offer reasonable prices and are kid friendly . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : Wildwood | Type : pub | food : Italian | price : £ 20 - 25 | customer rating : high||Wildwood inexpensive family restaurant located in the city center \nname : Wildwood | Type : pub | food : Indian | price : cheap | customer rating : average||Average low priced Indian food , pub style can be found at Wildwood . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||The Green Man serves Chinese food and has a moderate price range . It is near All Bar One on the riverside area . It is kid friendly . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two , located in riverside near The Rice Boat , offers a family friendly dining experience for less then L20 . The Twenty Two has an average customer rating . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||With an average customer rating and reasonable prices , try Alimentum , it can be found in the city centre near Yippee Noodle Bar . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||Wildwood is a pub featuring Japanese food and average prices . It is rated average by customers . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an Indian coffee shop situated near Burger King by the riverside . It is ideal for couples and has a fairly high price range and In general it has a 1 out of 5 customer rating . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly coffee shop near Raja Indian Cuisine . It is by the riverside , serves fast food and has a price range of more than L30 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Zizzi is a coffee shop with a customer rating of 5 out of 5 . The price range is £ 30 , and it is not a child friendly establishment . Zizzi is located at the city centre . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a low - priced restaurant near the Yippee Noodle Bar which serves spaghetti . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is an average rated , family friendly restaurant that serves Japanese food in the riverside area near Café Rouge . \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant near the Rainbow Vegetarian Café . It serves fast food at a cheap price . Customers rate it 5 out of 5 . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two restaurant serves family friendly English food . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is an Italian coffee shop . It 's located near Crowne Plaza Hotel in the riverside are and is not family - friendly . \nname : Green Man | price : moderate | area : city centre | family friendly : yes||Green Man is a moderately priced , child friendly restaurant in the city centre . \nname : Wildwood | Type : pub | food : Japanese | price : cheap | customer rating : 5 out of 5||Wildwood is a pub providing sushi in the low price range . It is located in the city centre . \nname : The Golden Curry | food : Chinese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry sells Chinese food , moderate price range , not child friendly , located near The Bakers \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a child friendly Chinese restaurant with high customer ratings . The price range is £ 20 - 25 and the restaurant is in the city centre . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a kid friendly French restaurant near All Bar One in riverside with dishes ranging in price for L20 - 25 \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 1 out of 5||Wildwood is a fast food pub with a decent price range , but a low customer rating of 1 out of 5 stars . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||For a price range between £ 20 - 25 , try The Rice Boat , though not child friendly , is in the Riverside area , near Express by Holiday Inn \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the moderate price range . It is located in the riverside . Its customer rating is 3 out of 5 . \nname : The Phoenix | food : Fast food | customer rating : high | area : riverside||If you are crazy about fast food at a riverside setting , look no further than The Phoenix , which comes with a high customer - rating . \nname : Alimentum | food : Indian | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum is a restaurant offering Indian food and has a price range more than £ 30 . It is located at riverside and is children friendly . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||In Riverside , near Burger King , sits The Eagle , an Italian coffee shop with poor customer reviews at a low price . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman restaurant is located outside of City centre on the river . This family - friendly restaurant sells quality Italian cuisine at high prices . The prices are a reflection of the exceptional quality . \nname : Wildwood | Type : restaurant | customer rating : high | near : Café Rouge||There is a high rated restaurant named Wildwood near Café Rouge . \nname : The Punter | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a high customer rated children friendly coffee shop near Café Sicilia , serving English Cuisine at a price range of more than £ 30 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a children friendly coffee shop near Avalon with a high price range and 1 out of 5 customer rating . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is a high - priced restaurant just outside the city centre . \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||With only a 1 out of 5 customer rating , Strada , located near Yippee Noodle Bar , is an Italian - style pub . \nname : The Cambridge Blue | Type : pub | food : French | price : £ 20 - 25 | near : Café Brazil||The French food pub called The Cambridge Blue , is near Café Brazil and the price range is £ 20 - 25 . \nname : Aromi | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a French coffee shop that is kid friendly on the riverside . The customer rating is 1 out of 5 and the name of the shop is Aromi . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : no | near : Café Rouge||Located near Café Rouge , The Plough a pub , is a low priced eatery serving wine and cheese . They are not recommended for families . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||Wildwood Pub serves fast food , has a 5 star rating , and has higher pricing . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Blue Spice is a moderately priced family - friendly restaurant located near the river . It has a customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||The Taste of Cambridge restaurant has a 3 out of 5 rating and has a high price . \nname : Wildwood | Type : pub | food : Italian | price : cheap | customer rating : 5 out of 5||Wildwood is an amazing 5 - star pub that offers great food at a cheap price . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||There is a place named The Waterman that sells averagely rated Chinese food for a high price . It is located in the city centre and is not children friendly . \nname : The Phoenix | food : Japanese | customer rating : high | area : riverside||The Phoenix is a highly - rated restaurant that serves Japanese food in the Riverside area . \nname : Clowns | Type : pub | price : £ 20 - 25 | customer rating : high | area : city centre||Clowns is a highly rated pub located in the city centre with a price range of £ 20 - 25 . \nname : Blue Spice | food : Italian | price : cheap | area : riverside||On the riverside is Blue Spice a cheap Italian restaurant . \nname : Wildwood | Type : pub | food : Chinese | price : more than £ 30 | customer rating : high||There is a pub called Wildwood with a high customer rating . They serve Chinese food and a typical meal is more than £ 30 . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : The Bakers||The Giraffe is anon - children friendly and expensive coffee shop , located near The Bakers . It is rated 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no||The Aromi coffee shop , located in the city center serves Italian food . It is not family - friendly and has a low customer rating . \nname : Blue Spice | food : Japanese | price : £ 20 - 25 | area : riverside||Japanese food that costs around £ 20 - 25 from a restaurant called Blue Spice is along the riverside \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||There is a cheap , three - star family coffee shop that serves pasta located near a river . Its name is Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop in the riverside area serving Indian food at a moderate price range . \nname : The Rice Boat | food : Japanese | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is a restaurant that serves Japanese food that has an average rating . It is located in city centre . \nname : Aromi | Type : restaurant | food : Fast food | area : riverside||Aromi is a fast food restaurant in the Riverside area . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is located north of the City center and is a full service family friendly restaurant . \nname : The Vaults | food : Fast food | price : less than £ 20 | family friendly : no||The Vaults is a non family - friendly Fast food restaurant with prices less than £ 20 . \nname : The Plough | Type : pub | food : Indian | price : moderate | family friendly : no | near : Café Rouge||If you 're looking for pub grub or Indian food , you could try The Plough . No you can 't take your kids there but the prices are reasonable about £ 24 for a meal . You 'll find it near to Café Rouge . \nname : The Plough | Type : pub | food : Fast food | price : moderate | family friendly : no | near : Café Rouge||The Plough is a moderately priced pub near Café Rouge . They serve fast food and it is not kids friendly . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine is a cheap Italian establishment with a coffee shop called The Wrestlers and yes it is family friendly \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater is by the riverside and located near Café Adriatic . An average price is more than £ 30 with a customer rating of 5 out of 5 \nname : Wildwood | Type : pub | food : English | price : high | customer rating : 1 out of 5||The Wildwood pub offers low priced English food . It is situated in the city centre . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the city centre area near Express by Holiday Inn . They are kid - friendly , have a high customer rating , and have an average price range . \nname : Midsummer House | food : Italian | price : less than £ 20 | customer rating : low | near : All Bar One||You can get Italian food at Midsummer House for less than 20 near All Bar One . Customer ratings are low . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : yes||In the city centre a coffee shop also Italian food called Fitzbillies . Is a children friendly and an average customer rating with a high price range . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a cheap , family friendly , Japanese place with a 5 out of 5 customer rating . \nname : The Rice Boat | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Next to the river , The Rice Boat has bad food at high prices , but will allow families . Next door to the Express by Holiday Inn \nname : The Punter | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||There is a fast food coffee shop near Café Sicilia called The Punter . It is highly rated by its customer base and is very kid friendly , as well as decently priced , £ 20 - 25 . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House serves Fast food at a 5 out of 5 customer rating . They are cheap and near All Bar One . \nname : The Wrestlers | Type : coffee shop | food : French | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Moderately priced and kid friendly , The Wrestlers is a coffee shop serving French food near Raja Indian Cuisine on the Riverside . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||The Twenty Two It is located north of City centre , It is next to Café Sicilia \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||A cheap option near Rainbow Vegetarian Café is The Rice Boat with average customer ratings . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a high quality restaurant priced high which provides quality food . \nname : The Plough | Type : restaurant | price : more than £ 30 | family friendly : no | near : The Bakers||The Plough is a restaurant near The Bakers , it costs more than 30 pounds and is not children friendly . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers expensive sushi on the river and is located near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a French restaurant that is child friendly \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : no||Alimentum has moderate priced English food in the riverside area . It is not kid friendly . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop and Japanese restaurant , priced cheaply in the city centre . The customer ratings are low . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : city centre||In the city centre , The Waterman pub has Chinese food with a customer rating of 5 out of 5 . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||Even if the customer rating is quite low , Zizzi is an interesting coffee shop near the riverside . It isn 't children friendly , so you might have some calm with this £ 30 and over place . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a kid - friendly coffee shop near the Crowne Plaza Hotel in the riverside area . It serves French food . \nname : The Olive Grove | Type : pub | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes||At the riverside is the kid - friendly pub , The Olive Grove . It provides English food in the mid - range prices between £ 20 to £ 25 . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the Express by Holiday Inn in the riverside area , there is a child friendly restaurant , The Rice Boat , with high customer ratings and a price range of higher than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kids - friendly coffee shop in Riverside , near Crown Plaza Hotel . It serves Italian food and has a customer rating of 1 out of 5 . \nname : Midsummer House | food : Japanese | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House has a customer rating of 1 out of 5 . Found near Café Rouge , it has Japanese food . \nname : The Rice Boat | price : high | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is located near Rainbow Vegetarian Café . It has a high price range and has been rated 3 out of 5 by customers . \nname : Cotto | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an Italian coffee shop with a high price range and an average customer rating . It is located along the riverside near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family coffee shop that is affordable . It is located by The Portland Arms . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Japanese restaurant with cheap prices , high ratings , and is family - friendly . Located down in the city centre , near Express by Holiday Inn . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove offers a family friendly environment in the riverside area . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||A coffee shop named The Vaults is located on the riverside near Café Brazil and has a moderate price range although a low customer rating of 1 out of 5 . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : high||An expensive restaurant with a high customer Rating is Taste of Cambridge . \nname : Browns Cambridge | food : Indian | price : cheap | customer rating : 5 out of 5||Browns Cambridge is an Indian food place with a 5 out of 5 customer rating . \nname : Loch Fyne | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Near The Rice Boat on the riverside is a Japanese place called Loch Fynes , it 's rate is 1 of 5 \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||there is a low price restaurant named Strada located near Rainbow Vegetarian Café that serving English food with a low customer rating but not family - friendly \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is located in the city centre near Yippee Noodle Bar . It is moderately priced with a low customer rating . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is a cheap Italian restaurant near the Rainbow Vegetarian Café . It has an average customer rating and isn 't family - friendly . \nname : Giraffe | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes | near : The Bakers||Giraffe coffee shop is a high - priced family friendly coffee shop near The Bakers . \nname : The Golden Curry | food : Italian | price : cheap | family friendly : yes | near : The Bakers||Family friendly Italian restaurant The Golden Curry , is situated near The Bakers \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||The Cricketers is a pub that is children friendly has an average customer rating and is near the Ranch . \nname : Alimentum | food : French | price : high | area : riverside | family friendly : yes||Alimentum is a French restaurant on the riverside . It is quite expensive however it is child friendly . \nname : Wildwood | Type : pub | food : Fast food | price : cheap | customer rating : 5 out of 5||Wildwood is a low - priced , five - star pub and serves fast food . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Located near the Express by Holiday Inn you 'll find child friendly Fitzbillies . With an average rating of 3 out of 5 the average price range is high . \nname : Aromi | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : no||Aromi is a French coffee shop in the riverside area . It has an average customer rating and is not family - friendly . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||Near the riverside Express by Holiday Inn , there is a kid friendly , highly rated , fast food place called The Rice Boat , the price range is 20 - 25 pounds . \nname : Cocum | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop and fast food restaurant that is family friendly and has cheap price ranges but has very low customer rating . \nname : Cocum | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Cocum is an Indian coffee shop with a fair price range . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||The children friendly pub named The Cricketers , near Ranch , has a high customer rating . \nname : Blue Spice | food : English | price : high | area : city centre||Blue Spice serves English food in the city centre for a high price . \nname : The Vaults | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | near : Café Brazil||The Vaults is a coffee shop that offers food for less than £ 20 , it 's near Café Brazil , at the river side and it has a low customer rating \nname : The Olive Grove | Type : pub | food : French | price : high | area : riverside | family friendly : yes||There is a French pub in the riverside area called The Olive Grove that is child friendly and has high prices . \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Café Brazil||The Vaults coffee shop , near Café Brazil in the riverside area , offers a moderate price range and a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Burger King by the riverside is kid friendly , but is rated 3 out of 5 . There is also a coffee shop that offers Japanese food , but it is a bit expensive . It is called The Eagle . \nname : The Plough | Type : pub | food : Chinese | price : high | family friendly : no | near : Café Rouge||The Plough is a high priced Chinese pub located near Café Rouge . This is not a child friendly pub . \nname : Bibimbap House | food : English | price : less than £ 20 | area : riverside | near : Clare Hall||Close to Clare Hall is Bibimbap House which offers breakfast at low prices . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||In the city centre there is a cheap venue that provides Indian food called The Waterman . It is not family friendly and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||In city centre Fitzbillies coffee shop offers a high customer rating . Fast food is offered with a price range of more than £ 30 . We are not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop and fast food restaurant offers meals under £ 20 . It is located in riverside near Raja Indian Cuisine and is not family - friendly . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||A family - friendly Japanese restaurant The Waterman is cheap and within the city centre , but low customer ratings . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a good coffee shop for families near the city river . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Indian food It is located in the riverside . It is near Clare Hall . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a children friendly coffee shop that serves Japanese food in the city centre . It has a high price range and a customer rating of three out of five . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in Riverside near Express by Holiday Inn is a children friendly Indian restaurant . It serves food for more than £ 30 and has high customer rating . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 1 out of 5||Taste of Cambridge restaurant has a high price range but only a 1 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : no||French food has an average customer rating . Cocum has prices less than £ 20 . It is not family - friendly , as this is a coffee shop . \nname : Zizzi | Type : pub | food : French | customer rating : low | family friendly : yes||With low customer rating , the pub Zizzi serves French food and is family friendly . \nname : Green Man | food : Fast food | price : high | area : city centre | family friendly : no | near : All Bar One||Highly priced fast food can be expected from The Green Man located in the City Centre near All Bar One . Not considered child friendly . \nname : Loch Fyne | food : French | customer rating : low | area : city centre | near : The Rice Boat||In the city center there is a French restaurant called the ' Loch Fyne ' close to The Rice Boat , it has a poor customer rating . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is a family friendly English restaurant in riverside . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a kids friendly Chinese place located in the city centre . It has a moderate price range and a 1 out of 5 customer rating . \nname : The Plough | Type : pub | food : English | price : high | family friendly : no | near : Café Rouge||A high priced English pub near Café Rouge is The Plough . It is not child friendly . \nname : Green Man | food : English | price : cheap | area : riverside | family friendly : yes | near : All Bar One||The Green Man is a family friendly establishment serving English food at cheap prices . It is located at the riverside near All Bar One . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||The coffee shop Zizzi is a children - friendly place in riverside with a average customer rating and high price range . \nname : The Punter | food : Italian | price : £ 20 - 25||To eat at the Italian restaurant The Punter , it costs about £ 20 - 25 . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||Located in city centre near Express by Holiday Inn is a cheap Italian restaurant called The Rice Boat . It has average customer ratings and is not family - friendly . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The rating at The Golden Curry is average because their English food is OK . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman is a riverside restaurant serving Italian food . It prices less than £ 20 and is not family - friendly . It has a low customer rating . \nname : Alimentum | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a Fast food restaurant located on the riverside . Customers give it 1 star rating . The price ranges to high . Alimentum is located near Yippee Noodle Bar . \nname : The Golden Palace | Type : pub | price : moderate | area : riverside | near : Rainbow Vegetarian Café||By the riverside there is a moderate price ranged pub close to Rainbow Vegetarian Café called The Golden Palace . \nname : Giraffe | Type : pub | food : English | area : city centre | family friendly : no||An adults only English pub near the city centre is Giraffe . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : low | near : Café Adriatic||Close to Café Adriatic is a pub called The Vaults that has a low customer rating and averages more than 30 euros in cost \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located by the Crowne Plaza Hotel . It is average by customer ratings , but near the riverside and is family friendly . Check out their Indian food . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 3 out of 5||The Cambridge Blue restaurant , featuring Indian food , has a customer rating of 3 out of 5 . \nname : The Mill | Type : pub | food : French | price : moderate | area : city centre||In the city centre you will find The Mill which is a moderately priced French pub . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||With a £ 20 - 25 price range , The Wrestlers is a non kids friendly French restaurant with a high customer rating . \nname : The Golden Curry | food : Chinese | customer rating : low | family friendly : no||The Golden Curry provides Chinese food Its customer rating is low . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||A Chinese restaurant with a price range less than 20 euros and low customer rating is the family friendly The Wrestlers . \nname : Bibimbap House | food : French | price : high | area : riverside | near : Clare Hall||Bibimbap House serves expensive French food by the riverside . It is located near to Clare Hall . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a restaurant that serves Japanese food and cost less than £ 20 and also family friendly but has a low customer rating \nname : The Punter | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a low - priced , fast food restaurant situated close to Café Sicilia that is not family - friendly . 1 out of 5 star customer rating . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a 3 out of 5 rated French coffee shop . It is kid friendly . It is located near Crowne Plaza Hotel in the riverside area . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||In the Riverside area is a child - friendly Italian restaurant called The Twenty Two . \nname : The Golden Curry | food : Chinese | price : high | family friendly : yes | near : The Bakers||The Golden Curry provides Chinese food in the high price range . It is near The Bakers . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Zizzi is a cheap coffee shop in the city centre with a customer rating of 5 out of 5 . It is not family - friendly . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||There 's a French place with average reviews by riverside . It 's called Alimentum , it 's near Yippee Noodle Bar and you can get a meal for less than £ 20 . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is located at the riverside near Clare Hall serving Italian food with a cheap price range \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes||There is a high priced low customer rating restaurant The Waterman in the city centre . It is kids friendly and they serve Japanese food . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | near : Clare Hall||Clowns is a Fast food coffee shop near Clare Hall in riverside . It has an average user rating . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter is located in the heart of the city and is cheap . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly restaurant that serves Japanese food called The Waterman near the Crowne Plaza Hotel \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||Children Friendly by riverside area The Olive Grove is a pub with price Ranges of more than £ 30 . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Yes , children love The Rice Boat , Italian food close to Express by Holiday Inn . Their moderate price by the riverside has a rating 1 out of 5 . \nname : Giraffe | Type : pub | food : French | area : city centre | family friendly : yes||A family - friendly French pub in the city centre is Giraffe \nname : The Twenty Two | food : English | family friendly : no||The Twenty Two serves food to adults . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : yes||The child friendly pub Zizzi offers Japanese cuisine but has a low customer rating . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a 5 star fast food restaurant located on the riverside near Café Rouge . It is not a family - friendly establishment . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Located at riverside , next to Café Rouge , is a French coffee shop called The Golden Curry . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is an establishment with high customer ratings which serves Japanese food . It is located in the city centre near Yippee Noodle Bar and has an average price range of £ 20 - 25 . \nname : The Wrestlers | food : Chinese | price : high | customer rating : average | family friendly : yes||The Wrestlers provides Chinese food in the high price range . Its customer rating is average . \nname : Green Man | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : All Bar One||Green Man is a restaurant serving Japanese food for more than £ 30 . Located in the riverside area near All Bar One . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : no||Alimentum provides Chinese food in the moderate price range . It is located in the riverside . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a city centre coffee shop near Burger King . Rated 3 out of 5 by customers , it 's French food falls within a high price range . No for children . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a French food coffee shop that received 5 out 5 in customer ratings . It is The Eagle , near Burger King in the riverside area . It is child friendly , and will cost more than 30 pounds to eat there . \nname : Midsummer House | food : Fast food | customer rating : low | near : Café Rouge||Midsummer House near Café Rouge is a fast food place with a low customer rating . \nname : Browns Cambridge | food : Indian | area : city centre | family friendly : no | near : The Sorrento||Browns Cambridge serves Indian food in an adult oriented atmosphere . It 's located near The Sorrento in the city centre area . \nname : Midsummer House | food : French | customer rating : 3 out of 5 | near : Café Rouge||Located near Café Rouge , Midsummer House offers French fare while getting a 3 out of 5 rating . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : yes||There is cheap restaurant The Olive Grove pub for less than £ 20 located near the City centre which the best Fast food which is Yes family - friendly \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop in the riverside area near the Crowne Plaza Hotel now serving Indian food with a customer service rating of 5 out of 5 . \nname : The Mill | Type : coffee shop | food : Fast food | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop serving fast food with a price range of more than £ 30 , near The Sorrento , in the riverside area . \nname : The Rice Boat | price : high | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is a high priced restaurant with a 1 out of 5 star rating . It is near Rainbow Vegetarian Café . \nname : The Mill | Type : coffee shop | food : Indian | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Indian cuisine . Prices are more than £ 30 . It is located in the riverside area , near The Sorrento . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||There is a highly rated coffee shop called Clowns where you can get Italian food . It is located in the riverside area near to Clare Hall . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||Loch Fyne is a English food place with a customer rating of 5 out of 5 . It is located in the city centre near The Rice Boat . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Located in the riverside area Alimentum is a family friendly Japanese restaurant with an average meal costing less than £ 20 . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a highly rated family restaurant . \nname : The Vaults | Type : restaurant | food : Japanese||Japanese food is available at The Vaults restaurant . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||With a 5 out of 5 customer rating , The Golden Curry serves Japanese food in the city centre area . It is near Café Rouge but is not a family - friendly venue . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter is fast food on a budget located in the city center . \nname : Strada | Type : pub | food : Fast food | customer rating : average | near : Yippee Noodle Bar||Strada offers pub type fast food near Yippee Noodle Bar . \nname : Browns Cambridge | price : more than £ 30 | customer rating : 5 out of 5||Browns Cambridge has a customer rating 5 out of 5 with a price range of more than £ 30 \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Fast food with customer rating 1 out of 5 . It is near The Portland Arms and is children friendly . \nname : Green Man | food : Indian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||Located near All Bar One , in the city centre is kid - friendly Indian restaurant , Green Man . The pricing is moderate . \nname : Wildwood | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop providing Indian food in the more than £ 30 price range . It is near Ranch . Its customer rating is high . \nname : The Cambridge Blue | Type : pub | food : English | price : moderate | near : Café Brazil||A moderately priced pub near the Café Brazil is The Cambridge Blue . \nname : The Twenty Two | food : Japanese | family friendly : yes||The Twenty Two serves Japanese food and is kid friendly . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||There is a French coffee shop near Burger King in the city centre called The Eagle which is family - friendly , an average customer rating , and has a less than £ 20 price range . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||All age groups are allowed at a restaurant The Rice Boat that provides a high quality foods . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||A family friendly restaurant The Cocum has a low customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove riverside area pub style Italian food competitively priced and kid friendly atmosphere . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : no||In riverside is located a restaurant of good food called Alimentum with dishes from £ 30 \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , found in riverside near Café Rouge has French food and a family friendly environment . It has an average rating . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Family friendly Loch Fyne is a French restaurant in the average price range . \nname : The Rice Boat | price : more than £ 30 | customer rating : low | near : Rainbow Vegetarian Café||Located near the Rainbow Vegetarian Café , The Rice Boat has a low customer rating . Typical price range is £ 30 and up . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : 3 out of 5||The Cambridge Blue is an Italian restaurant with a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a cheap Indian coffee shop near The Portland Arms by the river . It has been rated as average by customers . \nname : The Waterman | food : Italian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a low rated Italian restaurant that is not family - friendly . The food costs less than 20 and it is located in the city center . \nname : Aromi | Type : restaurant | food : Indian | area : riverside||Aromi is an Indian food restaurant in the riverside area . \nname : Green Man | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : All Bar One||There is a moderately priced restaurant named Green Man near All Bar One in Riverside . It is kid friendly and has Chinese food . \nname : The Wrestlers | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is an Indian restaurant named The Wrestlers with mid - priced food . The customer rating is high and the restaurant is kid - friendly . \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : yes||An average price range restaurant with high customer rating and kid friendly is the Strada \nname : Bibimbap House | food : Chinese | price : £ 20 - 25 | area : riverside | near : Clare Hall||For the average price of only £ 20 - 25 , you could get yourself a Chinese meal from Bibimbap House . Located in Riverside near Clare Hall . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop in the low - price range . It is located near the river . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman provides Chinese food in the high price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a Japanese restaurant called The Wrestlers that is very cheap . It is family - friendly and has a customer rating of 5 out of 5 . \nname : The Golden Palace | Type : restaurant | customer rating : low | area : riverside||The Golden Palace is a low rated restaurant in the riverside area \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop that also offers Japanese food for less than £ 20 located near Ranch with a poor customer reviews . \nname : Clowns | price : moderate | family friendly : yes | near : Café Sicilia||Clowns is located near Café Sicilia . They are kid friendly and moderately priced . \nname : The Waterman | Type : pub | food : French | customer rating : 3 out of 5 | area : riverside||With a customer rating of 3 out of 5 , The Waterman is a pub in the riverside area with French food .. \nname : Zizzi | Type : pub | food : Chinese | customer rating : 1 out of 5 | family friendly : yes||Zizzi is a kid friendly pub serving Chinese food rated 1 out of 5 . \nname : The Twenty Two | Type : pub | customer rating : high | area : riverside | near : Café Sicilia||In Riverside , The Twenty Two is a pub near Café Sicilia . This pub has received high ratings . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a poor - rated coffee shop where you can eat fast food with your kids at moderate prices . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub located near Yippee Noodle Bar , serving English foods with a Customer rating of 1 out of 5 \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||Near Ranch is a family friendly pub with a customer rating of five out of five named The Cricketers . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi pub has a customer rating of 1 out of 5 , is children friendly , and serves Italian food . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside||The Golden Palace is a coffee shop serving Japanese food under 20 pounds located in the riverside area with average customer ratings . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||There is a kid - friendly fast - food restaurant named The Waterman near the Crowne Plaza Hotel . \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry provides Indian food It is located in the city centre . It is near Café Rouge . Its customer rating is low . \nname : Strada | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , near Rainbow Vegetarian Café , has a customer rating of 3 out of 5 and the price range is £ 20 - 25 . It serves Japanese food and is not a kid friendly . \nname : Cotto | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms . \nname : Taste of Cambridge | Type : restaurant | price : more than £ 30 | customer rating : low||The restaurant Taste of Cambridge has a low rating , and prices above £ 30 . \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Cotto is a average rated family friendly Chinese restaurant near Ranch . \nname : Midsummer House | food : English | price : high | customer rating : 1 out of 5 | near : All Bar One||Midsummer House is an English food house located near All Bar One . Price range is high there . Customer rated it 1 out of 5 . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : yes||A family friendly cheap restaurant with an average rating is The Wrestlers which specializes in Italian food . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is an expensive , five star , family friendly restaurant that serves sushi and is located on the river in City centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge providing Fast food . It is located in riverside area near The Sorrento . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Chinese restaurant The Golden Curry is located in the city centre near Café Rouge . It has a customer rating of 5 out of 5 and is family friendly . \nname : Aromi | Type : pub | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a highly rated pub in the city centre . It is family - friendly . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||The Waterman pub is a three star restaurant located on the river . \nname : Cotto | food : Chinese | customer rating : high | family friendly : yes | near : Ranch||The Chinese food place , Cotto , is near Ranch . They have good customer ratings and are child friendly . \nname : The Phoenix | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix serves cheap Chinese food in the city centre . It has received customer ratings of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : French | price : moderate||The Dumpling Tree is a restaurant with wines and cheese . \nname : The Golden Curry | food : Italian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry offers low - quality pasta near Café Rouge . \nname : Green Man | food : French | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Green Man located in the city centre near All Bar One serves French food with a price range of more than £ 30 . It is children friendly . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a highly rated coffee shop with a £ 20 - 25 price range located by the riverside close to Burger King . It serves French food and kids are not allowed \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||A children friendly fast food restaurant with a high customer rating , The Wrestlers , has a slightly high price range . \nname : Bibimbap House | food : Italian | price : high | area : city centre | near : Clare Hall||Bibimbap House is an Italian grocery store located in city centre near Clare Hall . The prices of the food can be high . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a high rating , kid friendly English food venue . Prices range from £ 20 - 25 . \nname : Fitzbillies | food : Fast food | price : high | near : The Six Bells||You can find Fitzbillies near The Six Bells . It is a high - end fast food restaurant . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||The Rice Boat offers English food and is family friendly . It has a low customer rating and is in the riverside area . \nname : Zizzi | Type : pub | food : Italian | customer rating : average | family friendly : yes||A children friendly pub offering Italian food , Zizzi has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a place located in the city centre that serves Japanese food with a price range of more than 30 , has a customer rating of 5 out of 5 , and a coffee shop \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat serves Indian food in the riverside area . It has a high rating and it is kid friendly . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a Japanese family restaurant . Almost everyone loves it . \nname : Strada | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap priced restaurant , near Rainbow Vegetarian Café , that provides Chinese food . It has a customer rating of 5 out of 5 stars . It is family friendly . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||The Golden Curry is a kid friendly place that is located near The Six Bells . \nname : Strada | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There s a Japanese restaurant Strada located in City Centre near Rainbow Vegetarian Café . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , near Raja Indian Cuisine is a moderately priced fast food coffee shop that is child friendly and is in riverside . \nname : Cotto | food : English | customer rating : high | family friendly : yes | near : Ranch||There is an English food place named Cotto near the Ranch . The rating is high and it is children friendly . \nname : The Plough | Type : restaurant | price : cheap | family friendly : yes | near : The Bakers||The Plough is a cheap family friendly restaurant situated near The Bakers . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : city centre||The Waterman is French food pub with low rating . It is located in city centre . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : yes||Cocum is an Indian coffee shop with generally high prices . It is child friendly , and has average customer ratings . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||The riverside area located restaurant The Waterman is not children friendly and has a low customer rating . It serves Japanese food for more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside||The French coffee shop , The Golden Palace , is located in Riverside and offers food for less than £ 20 . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||In the riverside area of the city , near The Portland Arms , you will find the Japanese coffee shop Cotto , with a customer rating of five out of five . It is in the higher price range . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | near : Clare Hall||There is a Fast food coffee chop called Clowns , located near Clare Hall , in the city centre . It has a low customer rating . \nname : The Waterman | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Looking for an Indian restaurant in the moderate price range with customer rating of 3 out of 5 , in the city centre but is not kids friendly , then visit The Waterman . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Japanese food . It is family - friendly . Customer Ratings are average . Prices are less than £ 20 . Close the Express by Holiday Inn . 's area riverside . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : high||For a quality Japanese restaurant , visit The Dumpling Tree . Meals are in the high price range . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a Japanese , kid friendly pub with a very moderate price range located in the city center . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat sells English food , it is a child friendly place on the riverside . However , the customer rating is 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||Loch Fyne is a family friendly restaurant that serves fast food at a medium price range . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , near Café Rouge serves fast food in the city centre . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : Loch Fyne | food : Fast food | customer rating : low | area : city centre | near : The Rice Boat||In the city centre near The Rice Boat is a fast food restaurant called Loch Fyne . It has a low customer rating . \nname : Alimentum | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is a fast food restaurant located near Yippee Noodle Bar down by the riverside . This restaurant has a high customer rating and has a price range of more than £ 30 . \nname : Midsummer House | food : French | customer rating : average | near : Café Rouge||Near Café Rouge is Midsummer House which serves French food and has an average rating . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop that serves Japanese food near Ranch with a customer rating of 3 out of 5 . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada serves Chinese food in the moderate price range . it is located near Rainbow Vegetarian Café . \nname : Loch Fyne | food : Fast food | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne American cuisine . Offers 3 Star service next to The Rice Boat . \nname : Travellers Rest Beefeater | Type : restaurant | price : high | family friendly : yes||The Travellers Rest Beefeater is a child friendly restaurant with a high price range . \nname : Loch Fyne | Type : restaurant | food : Italian | price : more than £ 30 | family friendly : yes||Loch Fyne is a Italian restaurant that has the price range more than £ 30 and it is children - friendly \nname : The Golden Curry | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry riverside restaurant near French food Café Rouge customer rating 3 out of 5 \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is a high price coffee shop near Avalon located in the Riverside area . It is not children friendly but has a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a family friendly English restaurant near The Sorrento , also by the riverside . \nname : Alimentum | food : Chinese | price : moderate | area : riverside | family friendly : no||There is a restaurant Alimentum it sells Chinese food and the price is moderate . It is on a riverside and the kids are not friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop with fast food and moderate pricing located in city centre near The Portland Arms . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||The Plough is an average price sushi pub located near Café Rouge . It is a family friendly pub . \nname : Aromi | Type : restaurant | food : Chinese | area : riverside||Aromi restaurant provides Chinese food in the area of riverside \nname : The Wrestlers | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers serve cheap Indian food . It is not family friend with high ratings . \nname : Midsummer House | food : English | customer rating : low | near : Café Rouge||Midsummer House is a 1 star Café providing Traditional British food . It is located close to Café Rouge . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving French food in the riverside area . It is family friendly with a moderate price range , and located near Burger King . It has a customer rating of 1 out of 5 . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre||The Phoenix is located in city centre . The serve Japanese in a price range of more than 30 . They have a low customer rating . \nname : Aromi | Type : restaurant | food : Chinese | area : city centre||Aromi offers Chinese cuisine in the heart of the city . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||With a 5 out of 5 customer rating , Midsummer House is known for its French food and is located near Café Rouge . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The pub has to be a yes for children friendly . It is the Cocum . Its prices are more than £ 30 , but it is a rated 5 out of 5 . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a child friendly coffee shop that is highly rated and offers French cuisine with a price range of L20 - 25 . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||A high priced pub on the riverside that is child friendly is The Olive Grove \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||Travellers Rest Beefeater is a high priced restaurant , located in city centre near Café Adriatic , getting an average customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves cheap Indian food that has a customer rating of 5 out of 5 . This restaurant is located in the city centre near The Portland Arms \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||If you are looking for a coffee shop that serves Indian food , Browns Cambridge is for you . It is near Crowne Plaza Hotel and in the riverside area . The place is pretty average though and isn 't meant for families . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located near Express by Holiday Inn , in the riverside area , serving moderately priced Italian food and providing a kid friendly environment . Rated 3 out of 5 \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a high customer rated , kid friendly , riverside area near The Rice Boat and is offered for a very cheap price . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located near Café Rouge \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman near the Crowne Plaza Hotel is kid friendly and serves English food . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||In the area of riverside is The Twenty Two . It has Italian food , and it 's kid friendly . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||After coffee , you and your family can go to The Twenty Two and ride The Rice Boat for a low - cost . \nname : The Rice Boat | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a kid - friendly English food establishment in the riverside area called The Rice Boat . its customer rating is 1 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue is a low ranking restaurant serving classic American food . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||In the riverside area near The Portland Arms there is a high priced child friendly restaurant name The Punter . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||In riverside near Burger King there is a coffee shop which has a moderate price range and is kid friendly called The Eagle with Italian food and a customer taking of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : no||Looking for a moderately priced restaurant that is quiet because children are not allowed : Check out Loch Fyne . You won 't be disappointed . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat offers Japanese food . It is not child - friendly . Customer Rating 3 out of 5 is located in the city center . Prices are between £ 20 - 25 . Close the Express by Holiday Inn . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a small French coffee shop located in the city centre , near The Sorrento . All prices are less than £ 20 . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Giraffe is a moderately priced , moderately rated coffee shop that is non - family - friendly and located near The Bakers . \nname : The Twenty Two | food : English | area : city centre | family friendly : yes||The Twenty Two yes people ate English at the city centre . \nname : The Wrestlers | food : Japanese | price : moderate | customer rating : 1 out of 5 | family friendly : no||if you are looking for a place to eat that is in the moderate price range where they sell Japanese food and is not child friendly there is a place called The Wrestlers although it only has a customer rating of 1 out of 5 \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||A restaurant called Giraffe , located near The Six Bells , is reasonably priced with meals less than £ 20 . \nname : Alimentum | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Near Yippee Noodle Bar , in the city centre area , is Alimentum with Indian food and a high customer Rating in the price Range of more than £ 30 . \nname : The Punter | food : Fast food | price : less than £ 20||Cheap fast food sold by the The Punters is at less than £ 20 \nname : Zizzi | Type : pub | food : Indian | customer rating : 1 out of 5 | family friendly : yes||A pub , the Zizzi has a customer rating of 1 out of 5 . It is Kids Friendly and offers Indian food . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low priced restaurant in the city center . It serves wine , locally grown herbs , artisan cheese and freshly baked bread . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Blue Spice , located in the Riverside area . Has a £ 20 price range , and holds an average customer rating . Not family - friendly . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||You can buy English food for less than £ 20 at the Green Man in the riverside area near All Bar One . Families are welcome . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||The Wildwood is a coffee shop that also offers pasta and wine . The Wildwood is located near the , Ranch . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a cheap coffee shop selling Indian food . Its customer rating is 5 out of . It is located in the riverside area near The Portland Arms . \nname : The Waterman | Type : pub | food : Indian | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub in the riverside area that serves Indian food and gets a 1 out of 5 rating . \nname : The Dumpling Tree | Type : coffee shop | price : high | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree a children friendly coffee shop can be found in the riverside area near Café Sicilia prices are high . \nname : The Olive Grove | Type : pub | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a non family friendly pub in the low price range . It is located in the city centre . \nname : The Waterman | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman 's on Riverside . It has a 1 out of 5 rating and isn 't kids - friendly , but offers Italian cuisine at a moderate price . \nname : Cotto | food : Indian | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||Cotto provides Indian food It is near Ranch . Its customer rating is 1 out of 5 . \nname : The Vaults | Type : coffee shop | price : high | customer rating : average | area : riverside | near : Café Brazil||The Vaults is a highly - priced riverside coffee shop with an average rating near Café Brazil . \nname : Browns Cambridge | price : high | customer rating : 3 out of 5||Browns Cambridge is expensive but average . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a Fast food coffee shop located on the city centre near Burger King . Though it is not family - friendly and has a low customer rating it has cheap food with prices less than £ 20 . \nname : The Golden Curry | food : Japanese | price : high | family friendly : yes | near : The Bakers||The Golden Curry is an upscale restaurant near The Bakers and is child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Italian | price : more than £ 30||The Dumpling Tree is a upscale restaurant that serves Italian food . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers is a moderate priced restaurant offering Chinese food with a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Indian | customer rating : average | family friendly : yes||The Golden Curry is a child friendly Indian restaurant with average ratings . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||A restaurant that serves French food and is also kid - friendly in the riverside area is Alimentum . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : £ 20 - 25 | near : Café Brazil||The Cambridge Blue offers fast service pub fair near Café Brazil . \nname : The Wrestlers | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a non family - friendly Chinese restaurant that serves cheap foods rated 5 out of 5 . \nname : The Eagle | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre||The Eagle has a price range of £ 20 - 25 and a customer rating of 3 out of 5 ; located in the city centre . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||There is a cheap , family friendly Chinese restaurant in the city centre called The Waterman . They have received an average customer rating . \nname : Aromi | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly French coffee shop in the city centre . It has a low customer rating . \nname : The Waterman | Type : pub | food : Indian | customer rating : 5 out of 5 | area : city centre||The Waterman is a pub that is rated 5 out of 5 . Located in the city centre , it serves Indian food . \nname : The Plough | Type : pub | food : French | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The pub near Café Rouge serves French food and is kids friendly . The Plough 's price ranges between £ 20 and £ 25 . \nname : Fitzbillies | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a French coffee shop that has high prices . It is located in riverside it has a 3 out of 5 customer rating , and yes it is kid friendly \nname : Green Man | food : English | price : high | area : riverside | family friendly : yes | near : All Bar One||The Green Man , which is near All Bar One in Riverside is kid friendly an serves high priced English food . \nname : Midsummer House | food : Chinese | customer rating : high | near : Café Rouge||Midsummer House is a Chinese restaurant located near Café Rouge . It is highly rated by customers . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat providing Japanese food near Express by Holiday Inn in the city centre is cheap and family - friendly . Their customer rating is 5 out of 5 . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||The Waterman serving Japanese food for the whole family . Prices all lower than 20 dollars , it has average customer rating located at city center \nname : Strada | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant that offers food at a high price range . It is located near the Rainbow Vegetarian Café . Strada offers English food in a child friendly environment . The customer rating is a one out of five . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : The Portland Arms||The coffee shop Cotto serves French Food and is located near the Portland Arms in city center but is has a low rating and costs more than 30 pounds . \nname : The Waterman | Type : pub | food : English | customer rating : high | area : riverside||The Waterman is an English pub in riverside that boasts a high customer rating . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a cheap , family friendly coffee shop , serves French food . It is located near Café Sicilia and has a high customer rating . \nname : Midsummer House | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : All Bar One||There is a moderate - price Chinese food restaurant near All Bar One called Midsummer House with a poor customer rating . \nname : The Golden Curry | food : Japanese | price : less than £ 20 | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly Japanese restaurant near The Bakers with a price range of 20 pounds . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a 3 out of 5 kid friendly Japanese restaurant near Café Rouge in riverside \nname : Loch Fyne | Type : restaurant | food : Fast food | price : high | family friendly : yes||The high - priced Fast food restaurant Loch Fyne is child - friendly . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 1 out of 5 | family friendly : yes||Customers rated kid - friendly Japanese pub Zizzi 1 out of 5 \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is children friendly and has a customer rating of 3 out of 5 . It has a high price range and can be found near Express by Holiday Inn . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum is an average - priced French restaurant near Yippee Noodle Bar along the riverside . It has a high customer rating . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : no||Cocum is a pub . Customer rating is 3 out of 5 . The prices are high . It is not child friendly . \nname : The Wrestlers | food : Indian | price : moderate | customer rating : 1 out of 5 | family friendly : no||The Wrestlers Is a Indian restaurant with a moderate price range it is not kids friendly and has a customer rating of 1 out of 5 \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : no||The Olive Grove is an English pub in riverside . They are high priced and not child friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no||Alimentum is a low price sushi bar near the City Centre adults only , not for children . \nname : Alimentum | food : Fast food | price : cheap | area : riverside | family friendly : yes||Alimentum provides cheap Fast food in riverside that is family - Friendly . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is 1 out of 5 . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||A great restaurant located in the Riverside area is The Twenty Two . It is children - friendly , so feel free to bring your kids as well . \nname : The Golden Curry | food : Japanese | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry is a child friendly Japanese eatery with a price range more than £ 30 and is located near The Bakers . \nname : The Dumpling Tree | Type : restaurant | food : English | price : £ 20 - 25||The Dumpling Tree is an English food restaurant . The price range is £ 20 - 25 . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||There is one restaurant The Waterman located in the riverside that provides French food in less than £ 20 and having average customer rating but not family - friendly . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House has a perfect 5 out of 5 customer rating for its French food and is located near Café Rouge.6 \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an Indian food coffee shop located in city centre near the Crowne Plaza Hotel . While it is not family friendly , it receives 5 out of 5 stars from its customers . \nname : The Vaults | food : Japanese | price : less than £ 20 | family friendly : yes||The Vaults severs Japanese food and is family Friendly priced at less than £ 20 \nname : Alimentum | food : French | price : moderate | area : riverside | family friendly : yes||Alimentum is a French restaurant that offers kid friendly meals . It is located in the riverside area and has a moderately priced menu . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||For great , reasonably priced Japanese style coffee , try Cocum . \nname : Wildwood | Type : pub | food : Fast food | price : moderate | customer rating : 3 out of 5||Wildwood is a moderate priced pub with a customer rating of 3 out of 5 . It is a Fast food restaurant . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry provides Chinese food It is located in the city centre . It is near Café Rouge . Its customer rating is average . \nname : The Vaults | Type : restaurant | food : French||The Vaults is a restaurant serving French food . \nname : The Wrestlers | food : Italian | price : high | customer rating : average | family friendly : no||The Wrestlers is a Italian restaurant that is highly priced . It is not a children friendly restaurant and has an average customer rating . \nname : The Olive Grove | Type : pub | food : Italian | price : moderate | area : city centre | family friendly : no||The Olive Grove is an Italian pub with moderate prices located in the city centre . The Olive Grove is not kids friendly . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop providing Italian food with the high customer rating . It is located near Crowne Plaza Hotel in the city centre . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a child friendly pub in the price range of £ 20 and under . It has a low customer rating . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice , in the riverside area near Avalon , is a high - priced coffee shop . It is children friendly with a high customer rating . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : The Bakers||Located near The Bakers , The Giraffe has a customer rating of 1 out of 5 , is moderately priced and kid Friendly . \nname : Alimentum | food : Italian | price : more than £ 30 | area : riverside | family friendly : yes||An Italian , riverside restaurant called Alimentum . Prices starting from £ 30 and also child friendly . \nname : The Vaults | food : French | price : moderate | family friendly : yes||The Vaults serves French food at a moderate price as is kid friendly . \nname : The Rice Boat | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat serves Chinese , is kid friendly and has a customer rating of 1 out of 5 . \nname : Alimentum | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Located in riverside near Yippee Noodle Bar is Alimentum . Alimentum provides moderate price ranges in serving Chinese food with a 3 out of 5 customer rating . \nname : The Golden Curry | food : Indian | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry offers Indian food for more than 30 pounds . It is near The Bakers and allows children . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a Japanese coffee shop near Burger King in the city centre area , providing high quality meals for between £ 20 and £ 25 . No children . \nname : Browns Cambridge | price : cheap | customer rating : average||Browns Cambridge has a cheap price range and an average customer rating . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family fast food joint and provides a low price option . However , overall ratings are below average . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada for Italian food with more than £ 30 for children Friendly near Rainbow Vegetarian Café . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||If you are looking for a child - friendly restaurant that offers fast - food , then I would recommend The Waterman . You can find it close to the Crowne Plaza Hotel . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : no||The Wrestlers is an average , low - priced restaurant offering adult only dining . \nname : The Eagle | price : moderate | customer rating : 3 out of 5 | area : riverside||The Eagle is located in riverside and has a customer rating of a 3 out of 5 and a moderate price range . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : no||A non family friendly restaurant with an average customer service is a coffee shop called Aromi . It is the area of city centre . \nname : The Cambridge Blue | Type : pub | food : French | price : high | near : Café Brazil||The Cambridge Blue is a bar close Café Brazil that serves French nourishment and has high value ranges . \nname : Strada | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada serves low rated cheap fast food near Rainbow Vegetarian Café . Not a family place . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a low - priced coffee shop near the river with one star reviews close to The Portland Arms . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a Japanese coffee shop in city centre . They are not child friendly , have a low customer rating and have a price range of more than 30 . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is a family friendly restaurant located near The Rice Boat . It is moderately expensive and family friendly . \nname : Strada | food : French | price : more than £ 30 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a children friendly French restaurant located near Rainbow Vegetarian Café . It has a low customer rating and expensive price range of more than £ 30 . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||For a family - friendly Japanese city centre restaurant near to Café Rouge then go to The Golden Curry that has a 5 out of 5 rating from its customers \nname : Strada | price : £ 20 - 25 | customer rating : high | family friendly : no||Strada has a high customer rating , its price range is £ 20- £ 25 and is not child friendly . \nname : Alimentum | food : Chinese | price : moderate | area : city centre | family friendly : yes||Alimentum provides Chinese food in the moderate price range . It is located in the city centre . \nname : Strada | Type : restaurant | customer rating : 1 out of 5||Strada is a quality restaurant to eating food \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a an expensive coffee shop beside Ranch . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a very cheap restaurant called Blue Spice in the centre of the city . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that serves fast food . near Crown Plaza Hotel in riverside . Yes it is family friendly . \nname : Blue Spice | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||with a 3 out of 5 customer rating and a moderate price range the Blue Spice is kid friendly and located in the riverside area \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||The Vaults is a traditional Japanese style restaurant in the medium price range . No public restrooms . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||Near The Portland Arms , you will find a family friendly Italian pub called The Dumpling Tree \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi , an Italian pub that is family oriented , with a customer rating 1 out of 5 \nname : The Twenty Two | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two in riverside has a customer rating above average is child friendly , serving average priced food and is near The Rice Boat \nname : The Phoenix | food : French | customer rating : average | area : riverside||The Phoenix is a high quality wine , cheese and olive restaurant located near the Riverside . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman provides Chinese food in the less than £ 20 price range . It is located in the riverside . Its customer rating is low . \nname : The Vaults | food : English | price : cheap | family friendly : yes||English food in a low price range can be found at the family - friendly The Vaults . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge is an Italian restaurant that is expensive . \nname : The Waterman | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The family - unfriendly restaurant The Waterman located in the city centre is cheap . It serves French food and is rated highly with 5 out of 5 . \nname : The Rice Boat | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves French Food . The customer rating is 5 out of 5 . It is in the city centre near Express by Holiday Inn . Prices are over £ 30 . It is child friendly . \nname : Strada | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||eggs beans and sausages nearby the Rainbow Vegetarian Café is family friendly Strada . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a riverside coffee shop offering fast food at average prices . Located near Burger King , it has a low customer rating and does not welcome children . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||The Rice Boat in Riverside is a average priced Italian family friendly place . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter provides Japanese food with a price range less than £ 20 near Café Sicilia . As a coffee shop , they are not family - friendly and rated low . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||Next to the Ranch is a pub called The Cricketers . It is kid friendly with a high customer rating . \nname : Strada | Type : pub | food : English | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada , is near Yippee Noodle Bar , it is an English pub and has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||The best place to eat fast food by the riverside is at The Waterman Pub , which is rated 1 out of 5 . \nname : Wildwood | Type : restaurant | customer rating : 3 out of 5 | near : Café Rouge||Located near Café Rouge , The Wildwood restaurant has a customer rating of 3 out of 5 . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||English food , served at a moderate price , not a kid friendly environment can be found at Strada . It is located near Rainbow Vegetarian Café with a 3 out of 5 customer rating . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a riverside Japanese restaurant with an average customer rating and a price range under £ 20 . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||Loch Fyne is a child - friendly restaurant that sells Japanese food for more than £ 30 . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Indian food in the less than £ 20 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is low . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Blue Spice is located in the city centre . It has an average customer rating , is not family - friendly but costs less than £ 20 . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||Alimentum is an expensive child - friendly fast - food company that is located in the riverside area . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a pub near Café Brazil with a price range of over 30 euros . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn is the kid friendly Fitzbillies . It has a low customer rating and a price range more than 30 . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : low||The Cambridge Blue is an Indian food restaurant , but they have a low customer rating . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a cheap and rated 3 out of 5 . They are family friendly and located near Express by Holiday Inn . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||By the riverside , near Rainbow Vegetarian Café , is a cheap called The Golden Palace . \nname : The Eagle | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Try The Eagle . This Five out of Five rated coffee shop has French Food for cheap in the city centre . It is located near Burger King . \nname : Midsummer House | food : Fast food | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House serves fast food with high customer ratings . It is near to All Bar One . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Near the city river is an average coffee shop called Fitzbillies , families can go here . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : yes||There is a family friendly restaurant called The Golden Curry , they serve Chinese food and their customer rating is 5 out of 5 . \nname : Blue Spice | food : English | price : cheap | area : riverside||Blue Spice is a cheap place to have some English food located at riverside . \nname : The Cricketers | Type : pub | customer rating : high | family friendly : yes | near : Ranch||Near Ranch , there is a kid - friendly pub called The Cricketers with a high customer rating . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||In the riverside area there is a child friendly Fast food restaurant with a high customer rating called The Waterman . It has a price range of £ 20 - 25 . \nname : The Wrestlers | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers serves French food , it 's family friendly , cheap , and is rated 5 out of 5 . \nname : The Punter | food : French | price : more than £ 30||The Punter is a high priced restaurant serving French food . \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||children Friendly Type restaurant Cocum customer rating is very high . \nname : The Eagle | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a children friendly coffee ship in the city centre near Burger King . It serves Italian food for £ 20 - 25 and has a high customer rating . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns pub located at the riverside has a cheap price range and customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is near The Portland Arms . They are your average coffee shop with Italian food and is child friendly . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : no | near : Ranch||Close to Ranch you 'll find The Cricketers , an average rated pub not so child friendly \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly coffee shop near Crown Plaza Hotel with a 1 out of 5 rating \nname : The Rice Boat | food : Italian | price : high | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||I went to a Italian restaurant called The Rice Boat . It is not children friendly and has average customer ratings . It is in riverside near Express by Holiday Inn . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : riverside||The Golden Palace is a cheap Indian coffee shop in the river side . Rating is average . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : no | near : Express by Holiday Inn||Fitzbillies is located near Express by Holiday Inn . Priced less than £ 20 . Low ratings and not kid friendly . \nname : The Twenty Two | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||Near the city centre and The Rice Boat is The Twenty Two . It is child friendly , high price range and has a low customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : no||Loch Fyne is a restaurant which offers Chinese food at a moderate price range . Ideal for adults . \nname : The Golden Curry | food : French | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a family friendly French restaurant near The Bakers and offers high priced cuisine . \nname : The Rice Boat | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a kids friendly fast food restaurant in Riverside . It has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | price : more than £ 30 | family friendly : no||Loch Fyne is a French restaurant with prices averaging over £ 30 . It is not child - friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a friendly for kids coffee shop called The Eagle which provides Japanese food in the moderate prices . It is situated in the city centre near to the Burger King with 1 out of 5 customer rating . \nname : Taste of Cambridge | Type : pub | area : riverside | family friendly : yes | near : The Sorrento||The Taste of Cambridge is a children friendly pub near The Sorrento in the area of riverside . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman Japanese restaurant is located in the city centre . It is in the higher price range with an adult friendly atmosphere . Customer rating : 3 out of 5 \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter is Japanese Food restaurant that have low price £ 20 - 25 . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a price range of £ 20 - 25 with a rating of 3 out of 5 . \nname : The Phoenix | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Phoenix located near the Riverside provides 5 out of 5 rated Chinese food . \nname : The Twenty Two | food : English | family friendly : yes||A child friendly , English restaurant is The Twenty Two . \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada , located near Rainbow Vegetarian Café supplies Chinese food at a price range of more than £ 30 . It has a high customer rating . It is not child friendly . \nname : Strada | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada , a family - friendly restaurant near the Rainbow Vegetarian Café , serves Chinese food at reasonable prices , and is preferred by three out of five customers . \nname : The Eagle | food : Chinese | customer rating : 3 out of 5||There is an establishment called The Eagle which offers Chinese food , with a customer rating of 3 out of 5 . \nname : Cotto | food : Indian | customer rating : high | family friendly : yes | near : Ranch||With high customer ratings , the Indian restaurant of Cotto is a kid friendly restaurant , located near the Ranch . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre near Burger King there is a cheap coffee shop called The Eagle which serves Italian food . It is family - friendly and has an average customer rating of 5 out of 5 . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : 1 out of 5||Wildwood is a high priced Chinese pub with a rating 1 out of 5 . \nname : Cotto | food : English | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto is a kid friendly restaurant located near Ranch . It serves English food and has a customer rating of 3 out of 5 . \nname : The Vaults | food : French | price : cheap | family friendly : yes||There is a family friendly French restaurant with a cheap price range called The Vaults . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop serving French food . It 's near the Crowne Plaza Hotel in Riverside . Just don 't bring the kids \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a pub that is children friendly and serves food in the high price range and has a customer rating of 1 out of 5 . \nname : The Mill | Type : coffee shop | food : Italian | price : cheap | area : riverside | near : The Sorrento||The Mill , a coffee shop offering cheap Italian food is located near The Sorrento , in the riverside area . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry sells Chinese food . It is located near Café Rouge in the city centre . It is not family friendly , and has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop is sited on the banks of the river Thames , it is a moderately rated reasonably priced Chinese food venue . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a Japanese restaurant near Clare Hall in riverside for less than £ 20 \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry , near Café Rouge in the city centre , serves English food and has a high customer rating . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no||The Waterman is a Japanese restaurant located in the city centre . its prices exceed £ 30 and it is not child friendly . It is rated low by customers . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||The Waterman located right in city center . They serve good Italian food for really low costs . Its a great place to go with your friends . With our average ratings you cant go wrong \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||Serving English food , The Golden Curry restaurant has a 5 out of 5 customer rating and a family friendly environment . \nname : Blue Spice | food : Indian | price : high | area : riverside||Blue Spice serves Indian food at an expensive price . It is located in riverside . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is family friendly . The customer ratings are low as well as the price . It is located near the Express by Holiday Inn . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||For a family friendly coffee shop costing less than £ 20 , try Cocum , serving French food . It has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop has fast food , is kid friendly , and has a moderate price range . They are located near Burger King on the riverside . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub right by the river that serves fast food . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is a cheese and wine restaurant located near All Bar One . It is in the medium price range and has five stars . \nname : The Rice Boat | food : French | customer rating : high | area : riverside | family friendly : yes||There is a French restaurant on the riverside called The Rice Boat . It is kid friendly and highly rated . \nname : The Waterman | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman at riverside provides English food in less than £ 20 . It is not family - friendly and rated low by customers . \nname : The Vaults | Type : pub | price : cheap | customer rating : average | near : Café Adriatic||The Vaults is an average rated pub near Café Adriatic . They are cheap . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||There is a pub called The Cricketers , located near Ranch which is rated 1 out of 5 and is children friendly . \nname : The Wrestlers | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a Italian restaurant with moderate pricing . High customer rating . \nname : Midsummer House | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | near : All Bar One||Midsummer House provide best French near to All Bar One . price is very low near to 20 to 25 \nname : The Phoenix | food : Italian | price : high | customer rating : average | area : riverside||There is a an expensive Italian restaurant that has fairly good reviews called The Phoenix . \nname : The Twenty Two | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is near The Rice Boat on the riverside . The customer rating is average , it is cheap , and is family friendly . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||ethnic fresh foods the 5 star Wildwood coffee shop located up the road from Ranch . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a high restaurant of French food located in the centre of the city , serves dishes from £ 20 for all for all , including kids - friendly \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Over by the Burger King on riverside is The Eagle coffee shop . Fairly low rated , but family friendly , and providing Japanese for below £ 20 . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||riverside restaurant called The Golden Palace has a customer rating 5 out of 5 \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a low - priced restaurant in the city centre . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||If you want cheap fast food by the riverside , try the pub called The Mill . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||The Punter is non family - friendly , with a price range less than £ 20 located near The Portland Arms in the Riverside area . \nname : The Vaults | food : French | price : cheap | family friendly : yes||The Vaults is a French restaurant with a cheap price range that is family friendly . \nname : The Golden Curry | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Located near Café Rouge by the river , the Chinese restaurant The Golden Curry earned a customer rating of 1 out of 5 . \nname : Fitzbillies | price : less than £ 20 | customer rating : average | family friendly : no | near : Express by Holiday Inn||Fitzbillies near the Express by Holiday Inn serves food at below average prices . It does not cater for children and customer ratings are average . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no||In the city centre area is a Japanese coffee shop called Fitzbillies . Customers give this shop a 3 out of 5 stars . Expect to pay about £ 20 - 25 . \nname : Strada | food : English | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||A restaurant that is known for being child friendly at a good price located near Rainbow Vegetarian Café is Strada . \nname : The Phoenix | food : Indian | customer rating : 3 out of 5 | area : riverside||The Phoenix serves Indian food and has a customer rating of 3 out of 5 , it is located in riverside . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||Come join us at kids friendly The Waterman with prices ranging from £ 20 to £ 25 . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||A family friendly restaurant that is rated a 5 out of 5 is Cocum . \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||The Eagle is a fast food restaurant that has received a customer rating of 3 out of 5 . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a family - friendly English restaurant near Café Rouge in riverside that has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop near a Burger King serving medium - priced items . It is not for families . \nname : Cotto | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||A kid friendly low rated Chinese restaurant near Ranch is Cotto . \nname : Cocum | Type : restaurant | customer rating : low | family friendly : yes||Cocum is a children friendly low priced restaurant that provides take - away deliveries . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a restaurant that serves Indian food . \nname : Midsummer House | food : English | customer rating : high | near : Café Rouge||English food restaurant which is located near Café Rouge , called Midsummer House . How I see customers are very contend and they rated like high class restaurant . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : riverside||A riverside restaurant with high ratings and dishes starting from £ 20- £ 25 go to The Eagle . \nname : Taste of Cambridge | Type : coffee shop | food : Italian | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly Italian coffee shop . It is located in the city centre near Crowne Plaza Hotel . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||For an average Indian coffee shop experience , head to Clowns by the river near to Clare Hall . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||The Olive Grove is a high - priced pub that is located in Riverside , which serves English food and is child - friendly . \nname : The Mill | Type : pub | food : French | price : cheap | area : riverside||The Mill , a French pub in the riverside area , has a cheap price range . \nname : The Olive Grove | Type : pub | food : Chinese | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a pub that provides Chinese food in the cheap price range . It is located in the riverside . \nname : Strada | food : Italian | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||There is a restaurant called Strada near Rainbow Vegetarian Café which offers good food at a cheap price . \nname : The Golden Curry | food : French | customer rating : average | family friendly : yes||The Golden Curry is a five - star restaurant offering Cheese and Wine . \nname : The Dumpling Tree | Type : pub | food : Italian | family friendly : yes | near : The Portland Arms||There is a kid friendly Italian pub near The Portland Arms called The Dumpling Tree . \nname : Aromi | Type : restaurant | food : English | area : city centre||Aromi is an English restaurant in the city centre area . \nname : Cotto | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is a high end five star coffee shop called Cotto in the riverside area near The Portland Arms . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : yes | near : The Portland Arms||In Riverside near The Portland Arms is a low priced , family friendly establishment called The Punter . \nname : Aromi | Type : pub | customer rating : average | area : riverside | family friendly : no||You can eat pub food at Aromi , a pub on the riverside , This is no good for families with children but generally has an average customer rating \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Avalon||Cheap with low ratings , the Blue Spice coffee shop is family - friendly and located near Avalon in the city center \nname : The Vaults | food : French | price : £ 20 - 25 | family friendly : yes||The Vaults is a average - priced , kids - friendly French restaurant . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||Cheap Italian food can be found in the riverside area at The Phoenix . It has a low customer rating . \nname : The Waterman | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||The Waterman has Chinese food that is moderately priced , rated 3 out of 5 , not kid friendly but is located near the city centre . \nname : The Mill | Type : pub | food : Chinese | price : high | area : city centre||The Mill is a pub that provides Chinese food in the high price range . It is located in the city centre . \nname : Browns Cambridge | food : English | price : cheap | customer rating : 5 out of 5||Browns Cambridge offers English food at low prices and not surprisingly receives a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall in riverside . it serves Japanese food and has a low customer rating . \nname : The Golden Palace | Type : pub | price : more than £ 30 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a pub in the riverside area . it is located near the Rainbow Vegetarian Café . The Golden Palace 's average price is more than £ 30 . \nname : The Eagle | food : Italian | customer rating : average||For Italian food try The Eagle . With a customer rating of average its viable option . \nname : The Rice Boat | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Italian restaurant that offers great dishes for around £ 30 and is located near the Express by Holiday Inn in the city centre . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum , a family friendly place , is near the river and serves Japanese style food for less than £ 20 . \nname : The Golden Curry | food : English | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||English food is found near Café Rouge in the riverside area at the children friendly establishment called The Golden Curry . Customer rating is average . \nname : Alimentum | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum offers English food with cheap price near Yippee Noodle Bar in city centre . \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , near the Express by Holiday Inn located in city centre , serves cheap Japanese food in a non - family - friendly restaurant and has a customer rating of 5 out of 5 . \nname : The Twenty Two | food : French | area : city centre | family friendly : yes||In the city centre , there is The Twenty Two , which is family - friendly and serves French food . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : high | area : riverside | near : Café Adriatic||Highly priced , Travellers Rest Beefeater near Café Adriatic in riverside has a high rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop near Burger King that serves Indian food . It doesn 't have a very good rating and the prices are high . It is called The Eagle . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Blue Spice serves highly priced food near the river . It is family friendly and has a rating of 5 out of 5 . \nname : Alimentum | food : Indian | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum is a restaurant serving Indian food in the medium price range . It is located by the riverside , and is family friendly . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||For kid friendly French food there is The Waterman near Crown Plaza Hotel . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : average||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is average . \nname : Blue Spice | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Blue Spice is located in the riverside area . It has a high customer rating and a price range of more than £ 30 while also being children friendly . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : city centre||The Eagle is located in city centre . They have an average rating and their prices are under 20 pounds . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : city centre||Situated in the city center The Phoenix offers high rated Japanese cuisine . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is an adult - only establishment that features Chinese cuisine . This establishment earned a customer rating of 5 out of 5 . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a high priced French restaurant that has a rating of 3 out of 5 . It can be found in the city centre near the Yippee Noodle Bar . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is an expensive pasta and coffee shop located near The Sorrento . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop , providing French food in an expensive range . It 's located in the city centre . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : less than £ 20 | near : Café Brazil||There is a pub near Café Brazil that serves fast food for less than 20 called The Cambridge Blue . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man provides Chinese food in the high price range . It is located in the city centre . It is near All Bar One . \nname : Green Man | food : Italian | price : moderate | area : riverside | family friendly : yes | near : All Bar One||Green Man serves Italian food in a kid friendly environment near the All Bar One in the riverside and has a moderate price range . \nname : The Punter | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food in the £ 20 - 25 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , is in the riverside near Burger King , it is an adult directed coffee shop and Indian restaurant that is affordable an received a 5 out of 5 rating . \nname : Loch Fyne | Type : restaurant | food : English | price : less than £ 20 | family friendly : yes||The Loch Fyne is a British restaurant that is inexpensive , serves breakfast , and permits families . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the less than £ 20 price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is low . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||The Punter in riverside near The Portland Arms cost less than 20 euros and is not family - friendly . \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||Giraffe pub , located in riverside , offers Italian food in a kid friendly environment . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : city centre | family friendly : no||There is an average rated Italian coffee shop with a high price range located in the city centre area named Fitzbillies that is not child friendly \nname : The Golden Palace | Type : restaurant | price : more than £ 30||For a high priced restaurant The Golden Palace is a great place to go to . \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | near : Café Brazil||There is a coffee shop called The Vaults near Café Brazil that has a price range of more than 30 but with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop offering fast food . It has a customer rating of 1 out of 5 , is kid friendly , and offers moderate pricing . It is located in the city centre . \nname : Strada | Type : pub | food : Fast food | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada , 3 out of 5 , offers Fast food , pub style , near Yippee Noodle Bar . \nname : The Golden Palace | Type : restaurant | customer rating : 5 out of 5 | area : riverside||The Golden Palace in Riverside is a restaurant with a customer rating of 5 out of 5 . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle is an Italian eatery with a 1 out of 5 rating . \nname : Alimentum | food : French | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum , a 5 out of 5 rated French restaurant , offers cheap food in the city centre near Yippee Noodle Bar . \nname : Loch Fyne | food : Italian | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne high quality Italian located near The Rice Boat in riverside . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The coffee shop Cocum serves Italian food at a moderate price with a 3 out of 5 customer rating and is kid friendly . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop suitable for families . However , overall ratings are below average . \nname : Aromi | Type : pub | customer rating : high | area : riverside | family friendly : yes||With a High customer rating and children - friendly is the Aromi pub located in the riverside area . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||Located in riverside , The Eagle is a highly rated venue with prices above £ 30 . \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers is a non - kid friendly English restaurant with low prices and low ratings . \nname : Alimentum | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum near the Yippee Noodle Bar in the city center with prices for the moderate budget we have great English food with a 3 out of 5 rating . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : yes||Although it has a low customer rating , The Rice Boat does offer English food and is family friendly . It can be found in the riverside area . \nname : The Punter | food : Japanese | price : high||The Japanese cuisine at The Punter is high quality and worth every penny . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman is a high priced English restaurant located near the riverside . It has an average rating and is not children friendly . \nname : The Golden Curry | food : Indian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a Indian restaurant with a 3 out of 5 rating . The place is kids - friendly . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a none family - friendly restaurant located near The Rice Boat . It has a 5 out of 5 rating . \nname : Fitzbillies | food : Fast food | price : moderate | near : The Six Bells||Fitzbillies is a restaurant providing take - away deliveries in the medium price range . It is located near The Six Bells . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : no | near : Café Rouge||There is a fast food restaurant called The Plough near Café Rouge . It has a high price range and is not child - friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is a a coffee shop that also offers a dinner menu . Its great for families and it is located north of the city centre on the riverside . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Chinese restaurant in the city centre with a 5 out of 5 rating near Express by Holiday Inn . It is not family friendly . \nname : Midsummer House | food : English | price : more than £ 30 | customer rating : high | near : All Bar One||Highly recommended , expensive Midsummer House is located near All Bar One . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two . Serving Italian food . Children are welcome \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Near All Bar One its located Green Man , a fast food restaurant \nname : Blue Spice | food : English | price : high | area : riverside||Near Chesterton Road there is an expensive restaurant called Blue Spice . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , located near Express by Holiday Inn in city centre , is a family restaurant that serves Chinese food at high prices and has a very low customer rating . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix can be found in the city centre serving Fast food . It is cheap and it has a customer rating of 5 out of 5 . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar in city centre serves low priced Italian food . Customers rate it 5 out of 5 . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix is a Chinese restaurant in the medium price range , with a high customer rating , located in the city center . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family friendly restaurant with a 5 star rating that serves low - priced Italian food . \nname : Midsummer House | food : Fast food | customer rating : 1 out of 5 | near : Café Rouge||The Midsummer House offers Fast food . It 's rated 1 out of 5 and is near Café Rouge . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||Wildwood has a high customer rating for its English pub food with a price range is £ 20 - 25 . \nname : The Punter | food : English | price : moderate||The Punter has a moderate price range that serves English food . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a great pub . It is cheap and family friendly . \nname : Bibimbap House | food : English | price : high | area : riverside | near : Clare Hall||Serving high priced meals , Bibimbap House is located near the river and Clare Hall . \nname : Fitzbillies | price : moderate | near : Rainbow Vegetarian Café||Fitzbillies is moderately priced and located near Rainbow Vegetarian Café . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a French coffee shop near the Café Sicilia . It is children friendly , with a price range between £ 20 and £ 25 and has a customer rating of 3 out of 5 . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix serves good value French cuisine by the riverside for happy customers . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the center of the city , is The Rice Boat . With it 's moderate pricing , it 's English food gets a customer rating of 3 out of 5 . It is near Express by Holiday Inn and isn 't kid friendly . \nname : Clowns | Type : coffee shop | food : French | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop scores 3 out of 5 stars . Located near Clare Hall on the Riverside . \nname : Green Man | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||Green Man is a family friendly English restaurant , located by the riverside , near All Bar One . Prices range from £ 20 - 25 . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man serves Japanese food with prices less than £ 20 . It is located in the riverside area near All Bar One and is not family - friendly . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Clowns is a pub by the riverside for those with a high budget and good taste . \nname : Blue Spice | food : Japanese | price : high | area : riverside||Blue Spice , a high price range restaurant located in riverside , serves Japanese food . \nname : Zizzi | Type : pub | food : Japanese | customer rating : low | family friendly : no||A low rated Japanese pub that is not family - friendly is called Zizzi . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||A cheap Fast food venue in riverside is The Phoenix . It is rated 5 out of 5 . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is the local pub by the riverside . It 's food selection are mainly English food and they can be rather expensive . \nname : Browns Cambridge | food : Italian | price : £ 20 - 25 | customer rating : high||Browns Cambridge serves Italian food , has a high customer rating and has a price range of £ 20 - 25 . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill is a pub on the river just north of the city center . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : moderate | family friendly : yes||There is a Chinese restaurant named Loch Fyne which is kid friendly and has a moderate price range . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a full service restaurant , family friendly and located north of the City center . \nname : The Twenty Two | food : Chinese | area : city centre | family friendly : no||For Chinese food in the city centre there is The Twenty Two . This is not a family friendly establishment . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge is family friendly and located near The Sorrento . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Near the Café Adriatic in the riverside area the Travellers Rest Beefeater has a high price Range and customer Rating 3 out of 5 . \nname : Zizzi | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes||Zizzi is a child friendly coffee shop in Riverside . It 's average and priced high . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located near the riverside area near the Express by Holiday Inn . It serves English food with a price range from £ 20 - 25 , it has high customer ratings and is not kid friendly . \nname : The Eagle | food : Fast food | customer rating : average||The Eagle serves fast food and has a three star rating . \nname : Bibimbap House | food : Chinese | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House , Chinese , price range more than £ 30 , riverside , near Clare Hall \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap , family friendly coffee shop . It also provides Fast food and has a customer rating of 5 out of 5 . \nname : The Waterman | Type : pub | food : Fast food | customer rating : high | area : riverside||Try The Waterman , it is a Fast food style pub with a high customer rating in the riverside area . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||Receiving a high customer rating and prices ranging £ 20 - £ 25 , the Travellers Rest Beefeater is located near Café Adriatic on the riverside . \nname : Green Man | food : Chinese | price : high | area : city centre | family friendly : no | near : All Bar One||Green Man provides Chinese food in the high price range . It is located in the city centre . It is near All Bar One . \nname : The Punter | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Near the Café Sicilia , there is The Punter , a cheap highly rated non - family - friendly coffee shop that serves French food . \nname : The Rice Boat | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a restaurant that is located near Express by Holiday Inn in the city centre area , and is not child - friendly . The price range is high for their English - style food , and the customer rating is average . \nname : The Waterman | Type : pub | food : Fast food | customer rating : low | area : riverside||The Waterman is a fast food pub in Riverside . Its customer rating is low . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is not child friendly and can be costly at more than £ 30 , but it is located in the city centre near Express by Holiday Inn , and it 's Japanese food is rated a 5 out of 5 by customers . \nname : The Phoenix | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix offers Indian food at an average of £ 20 - 25 for a meal . Located close to the river and with high customer rating . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||The Italian pub in the city centre , Zizzi , has received very poor reviews . It is not family friendly . \nname : Bibimbap House | food : Chinese | area : riverside | near : The Rice Boat||There 's a Chinese called Bibimbap House near to The Rice Boat in the riverside area . \nname : The Dumpling Tree | Type : restaurant | food : French | price : less than £ 20||For under 20 Euros , the French restaurant The Dumpling Tree is the best value in town . \nname : Loch Fyne | food : Indian | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne provides Indian food It is located in the riverside . It is near The Rice Boat . Its customer rating is low . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum serves English food , usually costing more than £ 30 . It has a high customer rating and is situated near Yippee Noodle Bar in the Riverside area . \nname : The Phoenix | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||The Phoenix , located in the city centre , offers English food at a range of £ 20 - 25 . \nname : Midsummer House | food : English | price : moderate | customer rating : 1 out of 5 | near : All Bar One||English food serving Midsummer House 1 out of 5 . Has moderate price ranges and is located near All Bar One . \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The city centre has a high price range outlet with a customer rating of 3 out of 5 which is child friendly near the Express by Holiday Inn that serves French food called The Rice Boat \nname : Alimentum | food : Italian | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||The Alimentum is a high - priced Italian restaurant with average customer ratings . The Alimentum is located in the riverside area near the Yippee Noodle Bar . \nname : The Phoenix | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||It has a reasonable price range . The Phoenix has a 1 star rating and is situated in the area of the city centre . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||The Dumpling Tree , located near The Portland Arms , is a family friendly Fast food pub . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is a child friendly fast food outlet . \nname : The Phoenix | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Phoenix have Chinese food with customer rating of 1 out of 5 and located in riverside . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes||The city centre has a pub called Giraffe that serves fast food in the city centre . \nname : The Twenty Two | food : Italian | area : city centre | family friendly : no||The Twenty Two serves Italian food in the city centre . Please note it is not family - friendly . \nname : Fitzbillies | price : less than £ 20 | near : Rainbow Vegetarian Café||Fitzbillies is located near Rainbow Vegetarian Café with a price range of less than . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Near the City centre and Burger King The Eagle coffee shop has different kinds of food \nname : The Wrestlers | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers is a kid friendly , fast food restaurant . The prices range from 20 to 25 pounds and has high ratings from customers \nname : The Golden Curry | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||Riverside venue The Golden Curry serves Italian food . It is a family - friendly venue located near to the Café Rouge , and it gains average ratings from its customers . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A children friendly , Indian coffee shop in the high price range , Fitzbillies , is located in the city centre . It has a customer rating of 1 out of 5 . \nname : Browns Cambridge | food : English | price : less than £ 20 | customer rating : low||There is a low customer rate English restaurant with a price range of less than £ 20 called Browns Cambridge . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat offers fast food . It has low prices and average customer ratings . It is family - friendly . It is located near the Express by Holiday Inn \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill coffee shop is near to The Sorrento and is expensive . It 's in the city centre . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a place with cheap Indian food located at the riverside near the Express by Holiday Inn . It is not family friendly and is rated low by customers . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : yes||Cocum is a cheap coffee shop that offers average Fast food for a family friendly experience . \nname : Browns Cambridge | food : Chinese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge , a Chinese restaurant , is not family friendly but is located in the riverside area near The Sorrento . \nname : The Vaults | Type : pub | price : moderate | customer rating : 1 out of 5 | near : Café Adriatic||A pub restaurant named The Vaults is near Café Adriatic . With a customer rating of 1 out of 5 it also has a moderately priced menu . \nname : The Golden Curry | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a excellent Japanese restaurant , rates 5 out of 5 by customers . It also has the added benefit of being very child friendly . \nname : The Golden Curry | food : French | customer rating : low | family friendly : no||The Golden Curry is a one star restaurant located in the city centre . They are not kid friendly . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge offers English food at a £ 20 - 25 price range and has a high customer rating . \nname : The Eagle | food : Italian | customer rating : low||The Eagle is a 1 - star dining place . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a French coffee shop that has a high customer rating and a price range of £ 20 . It is located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The coffee shop is called The Golden Palace and has Italian food . Located along the riverside , it has a moderate price range and a customer rating of 1 out of 5 . \nname : The Mill | Type : pub | food : Indian | price : £ 20 - 25 | area : riverside||In the riverside area is a pub named The Mill . They serve Indian food and has a £ 20 - 25 price range . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||Located on the riverside The Golden Palace is located near Rainbow Vegetarian Café , they are a pub with a cheap price range . \nname : Alimentum | food : French | price : high | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Near the Yippee Noodle Bar , in the riverside area , is a French restaurant called Alimentum . It has a customer rating of 3 out of 5 and provides meals in a high price range . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House provides French food and is in the riverside area near The Rice Boat . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a fast food coffee shop located in city centre , near Burger King . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is an expensive coffee shop with family amenities , rated one star \nname : Cotto | food : Japanese | near : Café Rouge||Cotto , near Café Rouge offers Japanese foods . \nname : Green Man | food : Japanese | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The kid friendly Green Man near All Bar One in the city centre serves Japanese and is kid friendly . It has a moderate price range . \nname : Giraffe | Type : coffee shop | price : high | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||The coffee shop named Giraffe is near The Bakers with a high price range and a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||The children friendly restaurant , Loch Fyne , sells French food . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a 1 - star non - family restaurant . The menu includes Asian cuisine , and the restaurant can be found right off the river . \nname : Green Man | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man is a low - priced Italian restaurant in the city centre near All Bar One . It is not family - friendly . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada is a family friendly restaurant with a low rating . its price range is £ 30 or more . \nname : The Mill | Type : coffee shop | food : Japanese | price : moderate | area : riverside | near : The Sorrento||The Mill is a moderately priced coffee shop where they sell sushi . It is located near The Sorrento . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : high | area : riverside||Clowns , a riverside pub , Has a price range above £ 30 . Clowns has a high customer rating . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a family friendly coffee shop in the city centre called Zizzi . It has high ratings and prices . \nname : Blue Spice | price : high | area : riverside||Blue Spice is high priced and located in riverside \nname : Blue Spice | food : Japanese | price : less than £ 20 | area : riverside||A cheap sushi restaurant called Blue Spice is on the River . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub , ranging from 20 £ -30 £ located on the riverside . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is an Italian coffee shop called ' Wildwood ' , which serves cheap but good quality food with a 5 out of 5 rating from customers . This is near Ranch . \nname : The Wrestlers | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers , with the customer rating of 3 out of 5 is Italian food kids friendly moderate price range restaurant . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto coffee shop where you can get cheap Indian food . Customer rating is average . Located in the city centre area near The Portland Arms . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre||The Golden Palace is a fast food restaurant located in city centre near a coffee shop . The customer rating is average and food is cheap . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a 3 out of 5 star restaurant that welcomes kids of all ages \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Although it has high prices , Fitzbillies , a coffee shop in the riverside area that sells Italian food , is children friendly . It has an average customer rating . \nname : Alimentum | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is located on the riverside near Yippee Noodle Bar . It is a low cost French restaurant . \nname : Blue Spice | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Rated 5 out of 5 by customers and family - friendly , Blue Spice is a low - priced restaurant located in the centre of the city . \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly - reviewed , fast - food restaurant located near the Express by Holiday Inn . It serves an average - priced menu for the city centre area in a family - friendly environment . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | near : The Portland Arms||The Cotto is a French themed restaurant on the riverside , close to The Portland Arms . A meal will cost you under £ 20 and ratings are average but steadily climbing . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||pub more than £ 30 The Vaults Café Adriatic customer rating \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a family friendly French restaurant . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is a high priced pub that is child friendly with fast food . It can be found near Café Rouge . \nname : The Olive Grove | Type : restaurant | area : city centre | family friendly : yes||The Olive Grove is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : Zizzi | Type : pub | food : Italian | customer rating : high | family friendly : yes||For pub - style Italian food , visit the kid friendly restaurant Zizzi . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly Chinese restaurant with moderate prices . It is located in the center of the city , near Express by Holiday Inn , with a customer rating of 1 out of 5 stars . \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||Fitzbillies offers Italian food . It has a low price . Near The Six Bells \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix provides Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a five star family friendly Italian restaurant located near Rainbow Vegetarian Café \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Near the city centre is a high priced eatery called The Alimentum . It 's near the Yippee Noodle Bar . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Family friendly French coffee shop , The Wrestlers , is located riverside near Raja Indian Cuisine with a price range less than £ 20 . \nname : Clowns | price : more than £ 30 | family friendly : yes | near : Café Sicilia||Clowns is a children friendly restaurant price range more than £ 30 near Café Sicilia . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : city centre | near : Clare Hall||The Clowns is a coffee shop in the city centre that also serves Indian food . It is in a convenient location , near Clare Hall , but it has a low customer rating . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a well - known slice of culinary history , sitting snugly by the river and offering the finest meals money can buy . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : low||The Cambridge Blue is a restaurant that provides Indian food Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a fast coffee shop , Browns Cambridge , new Crowne Plaza Hotel in the city centre that is family - friendly . 2 out of 5 stars \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near the Rainbow Vegetarian Café with a price range of more than £ 30 and a 5 out of 5 customer rating . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman pub serves delicious fast food and is outside the city center \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap , family friendly coffee shop called Fitzbillies near riverside serving French food rated 5 out of 5 in customer ratings . \nname : Browns Cambridge | food : Fast food | price : cheap | customer rating : 5 out of 5||With a five star rating , Browns Cambridge offers fast food in the low price range . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a fast food coffee shop locate in the city centre with a customer rating of 5 out of 5 . It is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Italian coffee shop , The Cricketers , may be family friendly and near The Portland Arms , but its customer rating is low . \nname : Travellers Rest Beefeater | price : high | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater at riverside near Café Adriatic has high price range but average customer rating . \nname : Blue Spice | food : Italian | price : high | area : city centre||Blue Spice is a high priced Italian restaurant in city centre . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : average | family friendly : yes | near : The Portland Arms||Located near The Portland Arms The Cricketers , a family friendly eatery has an average customer rating , is also a coffee shop \nname : The Golden Curry | food : Indian | price : high | family friendly : no | near : The Bakers||The Golden Curry provides Indian food in the high price range . It is near The Bakers . \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||Along the riverside near Café Rouge , there is a Japanese food place called ' The Golden Curry . It has average customer ratings . It is not a family - friendly environment . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a family - friendly Fast food restaurant in the city centre . The price range is below £ 20 and the customer rating is low . \nname : Bibimbap House | food : Fast food | area : riverside | near : The Rice Boat||Bibimbap House by the riverside near The Rice Boat serves fast food . \nname : Cocum | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | family friendly : no||Cocum is a cheap coffee shop offering fast food . It has an average rating and is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a city centre Indian coffee shop with average prices between £ 20- £ 25 . It is both child friendly , and has high customer satisfaction . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The food is good at The Cricketers coffee shop located at The Portland Arms \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a Japanese Food called The Wrestlers , that Customer ratings are high on it , the price range is Average between £ 20 - 25 , and the kids are Friendly . \nname : The Rice Boat | food : French | area : riverside||The Rice Boat on the riverside has French food . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||There is a bad pub called Zizzi that serves Italian food , the customer rating is 1 out of 5 but the kids there are friendly . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||In Riverside , Fitzbillies is a cheap French coffee shop that is not known for a family - friendly atmosphere . However , it did receive a 5 out of 5 rating from customers . \nname : Green Man | food : Italian | price : high | area : riverside | family friendly : yes | near : All Bar One||A high price , Italian eatery would be Green Man . They are an Italian eatery that is children friendly , located near All Bar One in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum coffee shop where family and friends eating a delicious moment prices at the comfort of your pocket \nname : Midsummer House | food : Fast food | customer rating : 1 out of 5 | near : Café Rouge||The Fast food place named Midsummer House is rated a 1 out of 5 . It is near the Café Rouge . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is a decently priced club located on the river with a view of The Rice Boat . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||In the riverside area near The Sorrento is Browns Cambridge which serves Indian food and it is family friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||Price Range moderate Kids Friendly restaurant Travellers Rest Beefeater \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : city centre||The Phoenix is a French place in the city centre with an average rating . The price range is less than 20 . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||There is a coffee shop located in the city centre near Burger King named The Eagle . It has a low customer rating and isn 't family - friendly . They serve French food for under 20 euros . \nname : Travellers Rest Beefeater | Type : restaurant | price : cheap | family friendly : yes||A family friendly and cheap restaurant is Travellers Rest Beefeater . \nname : The Punter | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||Fast food coffee shop The Punter offers a highly rated dining experience near Café Sicilia . Prices tend to be more than £ 30 and offers a kid friendly experience . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : £ 20 - 25 | family friendly : yes||Loch Fyne is a kid friendly fast food restaurant with a price range of 20 - 25 pounds . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Golden Palace is an expensive coffee shop near the river on the outskirts of the City centre . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is fast , family friendly , meal located near The Sorrento on the riverside . \nname : The Punter | price : high | area : riverside | family friendly : yes | near : The Portland Arms||An expensive venue by the riverside called The Punter is children friendly and is near The Portland Arms . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat , with a customer rating 3 out 5 , serves Japanese food for £ 20 - 25 in the city centre near the Express by Holiday Inn . Not kid friendly . \nname : The Eagle | food : Japanese | customer rating : low||There 's a low rated Japanese restaurant called The Eagle . \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||There is a family friendly Japanese pub that is very cheap and located on the riverside , it is called The Olive Grove \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : low||A low rated restaurant in the price range of less than £ 20 is Taste of Cambridge . \nname : The Rice Boat | food : Italian | area : city centre||Located in the city centre is an Italian restaurant named The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||The Loch Fyne is a family friendly restaurant that serves wines and cheeses . \nname : Alimentum | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Riverside located Alimentum is a not family - friendly Fast food restaurant with prices less than £ 20 . \nname : Bibimbap House | food : French | area : riverside | near : The Rice Boat||Bibimbap House offers French style food and is located near The Rice Boat in a riverside setting . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn , Fitzbillies has a low customer rating , but is high priced . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop located near The Portland Arms serves Japanese food 5 out of 5 rating and is family friendly \nname : The Rice Boat | food : Japanese | customer rating : low | area : city centre | family friendly : no||The Rice Boat is a Japanese restaurant located in city centre . It is poorly rated by customers . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman provides low budget Chinese cuisine in the city centre . It is not family friendly and does not rate well with customers . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is a cheap family friendly venue with a 5 out of 5 customer rating . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||There is a French restaurant called Midsummer House that has a rating of 5 out of 5 . Prices are more than French 30 , and it is located near All Bar One . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||If you are willing to pay more then £ 30 on Fast food , Blue Spice located in riverside is the place to go . \nname : Zizzi | Type : pub | food : English | customer rating : 3 out of 5 | family friendly : yes||The English pub Zizzi has a 3 out of 5 rating and is kid friendly . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is a restaurant providing Fast food . It is located near of Rainbow Vegetarian Café . \nname : Cotto | price : cheap | area : riverside | near : All Bar One||Cotto is cheap and by the riverside near All Bar One . \nname : The Plough | Type : pub | food : Italian | price : moderate | family friendly : yes | near : Café Rouge||Near the Café Rouge is The Plough , a kid friendly pub that serves Italian food and has a moderate price range . \nname : The Mill | Type : pub | food : French | price : £ 20 - 25 | area : riverside||The Mill is a great pub , serving French food in the Riverside area and affordable prices \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Outside of the City centre and near Burger King , The Eagle is a 3 - star rated coffee shop . Family friendly atmosphere with more wine than whine and cheese , be prepared to spend more here . \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a no children - friendly coffee shop providing Italian food in the high price range . It is located near Café Sicilia . Its customer rating is 1 out of 5 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||If you are seeking a kid friendly pub near The Portland Arms that serves good Japanese food , then The Dumpling Tree is your place . \nname : The Waterman | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||In the riverside area there is a moderate - priced restaurant with a customer rating of 1 out of 5 , that is not children friendly and serves Fast food called The Waterman . \nname : The Twenty Two | food : English | family friendly : no||The Twenty Two offers adult dining with English food . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is located near The Rice Boat and has an adult atmosphere . It is moderately priced but has a low customer rating . \nname : The Plough | Type : pub | food : Japanese | price : moderate | family friendly : yes | near : Café Rouge||There is a family friendly average price sushi pub The Plough . It is located near Café Rouge . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is an expensive Japanese restaurant in Riverside with a 5 out of 5 customer rating . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : cheap | family friendly : yes||Loch Fyne is a family friendly restaurant that has a cheap range and also have Fast food . \nname : Alimentum | food : Italian | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||If you are looking for a three - star restaurant , Alimentum is your answer . Located conveniently near the Yippee Noodle Bar , Alimentum offers sushi and more . \nname : The Rice Boat | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is high . \nname : Loch Fyne | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : The Rice Boat||In city centre by The Rice Boat is a 5 out of 5 rated Chinese food place called Loch Fyne . \nname : Browns Cambridge | food : Italian | price : more than £ 30 | customer rating : high||Browns Cambridge has a high customer Rating and serves Italian food in a more than L30 price Range . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||A cheap place with 5 out of 5 rating is the coffee shop Blue Spice . It is near Avalon and the riverside area , and is family friendly . \nname : The Rice Boat | food : Chinese | customer rating : low | area : riverside | family friendly : no||The Rice Boat is a Chinese food provides , located on the riverside , with a low customer rating and a non - family friendly environment . \nname : The Twenty Two | Type : pub | customer rating : 5 out of 5 | area : riverside | near : Café Sicilia||A pub called The Twenty Two can be found in Riverside , near Café Sicilia . It has a customer rating of 5 out of 5 . \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : yes||Zizzi , a family friendly French pub , received a customer rating of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap 5 star Japanese coffee shop in the city centre near Burger King \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||The Twenty Two , a Riverside located Japanese restaurant , is kid friendly \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||Wildwood is a cheap , French pub that scored a customer rating of 5 out of 5 . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||Near Rainbow Vegetarian Café , The Golden Palace is a riverside pub that offers prices below £ 20 . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : 1 out of 5||There is a Chinese pub with a 1 out of 5 customer rating called Wildwood . It is highly priced . \nname : The Vaults | food : Japanese | price : moderate | family friendly : no||There is a sushi restaurant named The Vaults which offers moderately priced food . This is not a family - friendly venue . \nname : Midsummer House | food : Italian | customer rating : average | near : Café Rouge||Midsummer House offers Italian food . It is near Café Rouge and has an average customer rating . \nname : The Rice Boat | food : Italian | customer rating : low | area : city centre | family friendly : yes||The Rice Boat provides Italian food . It is located in the centre of the city . It 's family - friendly , although its customer rating is low . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : no||There is a moderately priced fast food restaurant in city center called Alimentum that is not kid friendly . \nname : Giraffe | Type : pub | food : Indian | area : riverside | family friendly : yes||Indian pub Giraffe is kids friendly and located in the riverside area . \nname : The Eagle | food : French | customer rating : high||With a high customer rating , The Eagle serves French food . \nname : The Eagle | food : Japanese | customer rating : average||The Eagle provides Japanese food with average customer rating . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there is a low rated , low priced sushi restaurant that isn 't family friendly named Strada . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||with a customer rating of 5 out of 5 , Loch Fyne serves French Food at Riverside near The Rice Boat \nname : The Punter | price : cheap | area : riverside | family friendly : yes | near : The Portland Arms||Located along the riverside near The Portland Arms , with a family friendly environment , The Punter offers a cheap price range . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 3 out of 5||Taste of Cambridge is a restaurant with a moderate price range and a customer rating of 3 out of 5 . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||All Bar One is located near Cotto . It has a price range of over £ 30 and is located in the riverside . \nname : Alimentum | food : French | price : more than £ 30 | area : city centre | family friendly : no||Alimentum , a French restaurant in the city centre , has a price range of more than £ 30 and is not children friendly . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is a restaurant providing wine and cheese in the low price range . Located North of City centre on the river . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : yes||The moderately priced children friendly pub serving Chinese food at the city center . is called The Olive Grove . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a moderately priced 5 star , British cuisine restaurant . \nname : The Punter | food : Italian | price : less than £ 20||The Punter is a restaurant that offers Italian cuisine at a fair price . Prices are usually under twenty pounds . \nname : The Waterman | Type : pub | food : Italian | customer rating : high | area : riverside||The Waterman is a high customer rated pub serving Italian food in the riverside area . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : no||Located in riverside , The Olive Grove is a moderately priced pub that provides Japanese food which is not kids friendly . \nname : The Waterman | food : Japanese | family friendly : no | near : Crowne Plaza Hotel||The Waterman cheap sushi bar near Crowne Plaza Hotel that doesn 't allow families with children \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||In The Portland Arms there is a pub that offers Japanese cuisine and is also family friendly it is called The Dumpling Tree . \nname : The Waterman | Type : pub | food : English | customer rating : 3 out of 5 | area : riverside||Located in the riverside area , The Waterman pub serves English food . It has a 3 out of 5 customer rating . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||Alimentum is a family friendly , cheap , English restaurant in the riverside area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop , offering Japanese . low rated , with equally fair pricing of £ 20 . Close to Burger King at riverside . \nname : The Punter | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Visit The Punter , a children - friendly coffee shop located near Café Sicilia . Sporting a 3 out of 5 customer rating , this shop offers high priced French food , \nname : The Golden Palace | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a whole foods coffee shop with a one star rating and medium pricing . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Express by Holiday Inn||There is a high priced , Chinese food restaurant with a high customer rating called The Rice Boat , near the Express by Holiday Inn , that is not child friendly . \nname : Fitzbillies | food : Chinese | price : more than £ 30 | near : The Six Bells||There is a Chinese food restaurant named Fitzbillies nearby The Six Bells . It 's price range is more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||The Fast food restaurant Loch Fyne is not a family - friendly place . \nname : Wildwood | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood coffee shop located near Ranch serves Italian food with a price Range of more than £ 30 and received a high customer Rating . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Cheap family friendly Fast food at Green Man near All Bar One on the riverside . \nname : The Rice Boat | food : French | area : riverside||French food is provided at The Rice Boat in the riverside area . \nname : The Eagle | food : French | customer rating : low||The Eagle with a 1 star rating serves food . It is in the city centre . \nname : Midsummer House | food : Chinese | price : £ 20 - 25 | customer rating : high | near : All Bar One||Midsummer House is an average priced Chinese restaurant with high ratings , located near All Bar One . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||There is a highly - rated fast food restaurant in the riverside area named The Phoenix . It is in the high price range at more than £ 30 . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||There is a high price range restaurant The Phoenix and they serve Italian food . They have low customer rating and they are in riverside . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||There is a cheap English restaurant The Vaults . It does not allow children . \nname : Strada | Type : pub | food : Japanese | customer rating : 5 out of 5 | near : Yippee Noodle Bar||Strada is a Japanese pub near Yippee Noodle Bar . Customers rated Strada 5 out of 5 . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a five star sushi restaurant . They are high priced but family friendly . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a five out of five star , high - cost , family - friendly , coffee shop . It is located in the outskirts of the city centre . \nname : The Punter | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a coffee shop serving Indian food for less than £ 20 . The establishment is family friendly and has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||Family friendly Café Fitzbillies is located 3 miles from the city centre and offers cheap good quality food \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a French restaurant in the price range less than £ 20 with a low customer rating . It has a bad family - friendly atmosphere \nname : Alimentum | food : English | price : high | area : riverside | family friendly : yes||Alimentum is a high costing restaurant which is family friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||Loch Fyne is a mid - priced , family - friendly restaurant serving fast food . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located in riverside near Crowne Plaza Hotel , Browns Cambridge is an Indian restaurant and coffee shop in the average price range . It receives average ratings from customers and is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is an upscale coffee shop offering tasty fried fare , and is located several blocks from the city center . It is family friendly , although on the pricey side . It is located near the Burger King . \nname : Cotto | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop with high customer ratings that serves Indian food . It is located in the city centre , near The Portland Arms , and prices range from £ 20 - 25 . \nname : Alimentum | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the £ 20 - 25 price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is high . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a low- cost restaurant next to Yippee Noodle Bar in city centre . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge It serves Japanese food and good prices It is located next to Crowne Plaza Hotel \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||In the riverside area Clowns has average customer rating are less than £ 20 price range pub . \nname : Cocum | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop that serves French food . Customer rating is low . Price range is less than £ 20 . It is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located near Crowne Plaza Hotel that is not family - friendly and has a one out of five star rating . \nname : The Cambridge Blue | Type : pub | food : Italian | price : high | near : Café Brazil||The Cambridge Blue , a high cost restaurant located near Café Brazil \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two serves English food in a kid friendly setting . \nname : Bibimbap House | food : Indian | price : moderate | area : city centre | near : Clare Hall||There is a moderately priced Indian Food place near Clare Hall city centre called Bibimbap House . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : average | area : riverside||Clowns is a pub located in the riverside area with a customer rating of average and a price range less than £ 20 . \nname : Green Man | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||Green Man provides Chinese food in the less than £ 20 price range . It is located in the riverside . It is near All Bar One . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle offers a Japanese coffee shop dining experience for less than 20 pounds . It is family - friendly , with an average customer rating . It is located in the city centre , near Burger King . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an adult oriented Japanese restaurant located in the riverside area , near the Express by Holiday Inn , moderate price range , and a customer rating of 1 out of 5 . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap , family - friendly restaurant that serves sushi and is rated 3 stars by customers . It is located by Rainbow Vegetarian Café . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a restaurant providing good customer service in the low price range . It is located on the riverside near Express by Holiday Inn . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||A 5 star coffee shop is located near Ranch , it is expensive and is called Wildwood . \nname : The Phoenix | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a food Chinese restaurant with a price range of £ 20 - 25 and customers rate it high because the riverside \nname : The Mill | Type : pub | food : Italian | price : high | area : riverside||The Mill is a pub providing upscale Italian fare . Located on the riverside it provides views that are worth the upscale price of the food . \nname : Cotto | food : English | near : Café Rouge||You can have some English food in Cotto . It 's near Café Rouge . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a fine wine and cheese restaurant in the low price range . It is located by Express by Holiday Inn and has one star . Public restrooms available . \nname : The Punter | food : English | price : cheap||The Punter offers cheap English food . \nname : The Rice Boat | food : Fast food | customer rating : low | area : riverside | family friendly : yes||The Rice Boat serves fast food in the riverside area . It is family friendly but has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is located in the City Centre near Burger King . The Eagle is kid - friendly , has average prices , and has a high customer rating . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a cheap pub , no kids allowed . It 's situated near the Café Rouge . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop serving fast food for a moderate price . Child friendly with a customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is providing Japanese food with moderate price range . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi , located near the river , is a pasta and coffee shop with a five star rating . It is fit for the whole family . \nname : The Waterman | price : £ 20 - 25 | family friendly : yes||The Waterman has prices ranging from £ 20 to £ 25 . It is kid - friendly . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop providing Indian food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Phoenix | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is located in Cambridge . It is an expensive restaurant that received one star . \nname : Alimentum | food : Italian | price : cheap | area : riverside | family friendly : yes||You can take the family for Italian food at Alimentum , in the riverside area , and prices are low . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Plough has an average price range and is near The Bakers . It is a kids friendly restaurant . \nname : The Eagle | food : Italian | customer rating : 1 out of 5||The Eagle serves Italian food and only has a 1 out of 5 rating . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 3 - star rated family friendly wine Café near the Rainbow Vegetarian Café . It is cheap . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a mid range coffee shop that is family friendly , near the Café Sicilia . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : city centre||The Eagle is a cheap venue with an average customer rating in the city centre \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | family friendly : no||The Golden Curry is a fast food venue with a customer rating of 5 out of 5 . It is not child friendly . \nname : Cocum | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes||If you are looking for a family friendly coffee shop , then Cocum is the place for you . It is rated 5 out of 5 stars by its customers , and is moderately priced . \nname : Strada | price : more than £ 30 | customer rating : low | family friendly : yes||Strada is a child friendly restaurant with reasonable prices for an amazing range of offer . Even with being within a price range of 30 and over , its worth it . \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a fast food restaurant in the riverside area . It is not children friendly , has a 1 out of 5 customer rating and is in the high price range . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||There is a coffee shop in the City center serving Indian food called Fitzbillies . It has a low customer rating and is the medium price range . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no||Cocum coffee shop has Indian food and has a high price range . \nname : The Rice Boat | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||In City center there is a Chinese restaurant that is not family friendly , but has a 5 out of 5 rating called The Rice Boat . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||Known for it French food , 5 out of 5 ratings and cheap prices , The Golden Palace is a coffee shop , located in Riverside . \nname : Zizzi | Type : pub | food : Italian | customer rating : 1 out of 5 | family friendly : yes||Zizzi , a kid friendly Italian pub , with a customer rating 1 out of 5 . \nname : The Phoenix | food : Japanese | customer rating : 5 out of 5 | area : riverside||The Phoenix is a top rated sushi restaurant nearby the river . \nname : Strada | Type : pub | food : Japanese | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada , a Japanese pub , near Yippee Noodle Bar , has a customer rating of 3 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Priced at more than £ 30 , and located by the riverside , The Wrestlers , near Raja Indian Cuisine , is a child friendly coffee house that serves French cuisine \nname : The Waterman | Type : pub | food : English | customer rating : average | area : riverside||In Riverside you will find an averagely rated English pub called The Waterman . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is located in city centre near the Express by Holiday Inn . It has a low customer rating with a price range of more than 30 . The Rice Boat is child friendly and serves Japanese food . \nname : The Wrestlers | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||The Wrestlers provides English food for £ 20- £ 25 . It is child friendly and has high customer rating . \nname : Strada | food : Fast food | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The kid family fast food restaurant Strada , is located near Rainbow Vegetarian Café . \nname : The Rice Boat | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a eat - in restaurant for families , providing in the low price range . It is located close to Express by Holiday Inn in the city centre . \nname : The Eagle | food : French | customer rating : low||The French restaurant , The Eagle , has a low customer rating . \nname : Strada | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||You could get your Chinese meal from the Strada , it is near the Rainbow Vegetarian Café , its usually about £ 22 per person . No you can 't take the kids and the reviews are not very good . \nname : Midsummer House | food : English | customer rating : average | near : Café Rouge||Near Café Rouge , you will find a three star restaurant called Midsummer House . \nname : The Rice Boat | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves fast food and is family - friendly . It is located near Express by Holiday Inn in the center of the city . It has a customer rating of average and a price range of cheap . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge prices range from 20 to 25 dollars and has a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : riverside | near : Clare Hall||Clowns is a Italian coffee shop with low customer Rating located at the riverside near Clare Hall . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||A kid friendly pub style eatery , Giraffe , serves Japanese food and is in the riverside area . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||The Mill is a moderately priced pub near the city centre . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : no||Cocum is a hi rating good restaurant but no family and friendly . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly five - star coffee shop near The Portland Arms offering wine and cheese . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||Loch Fyne isn 't a family restaurant . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a restaurant in the Riverside area , near Café Rouge . They serve Indian food , with a 5 out of 5 rating from customers . This location is family friendly . \nname : The Plough | Type : pub | food : English | price : moderate | family friendly : yes | near : Café Rouge||For moderately priced English food , find The Plough pub near Café Rouge . Children are welcome . \nname : Travellers Rest Beefeater | price : high | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a high priced riverside restaurant rated 3 out of 5 stars . It is near Café Adriatic \nname : Wildwood | Type : pub | food : Japanese | price : moderate | customer rating : 1 out of 5||The poorly rated pub , Wildwood , serves reasonably priced sushi . \nname : Cocum | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a well - respected Italian coffee shop , offering food at the higher price range . It is child - friendly . \nname : Alimentum | food : Italian | price : moderate | area : city centre | family friendly : no||Alimentum is an Italian restaurant located in the city centre with a moderate price with a bad kids friendly atmosphere . \nname : Wildwood | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | near : Ranch||The Wildwood coffee shop is located in Ranch . It is a mid range for price and has an excellent 5 star rating . \nname : The Waterman | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Highly rated English food restaurant The Waterman , is located in Riverside . The cost is high but is not child friendly . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada Family friendly restaurant Located near Rainbow Vegetarian Café \nname : The Golden Curry | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry in riverside near Café Rouge serves Japanese food and is not family - friendly . They have an average customer rating . \nname : The Punter | food : French | price : high||A highly rated French venue called The Punter . \nname : The Rice Boat | food : Italian | area : riverside||The Rice Boat offers Italian food . It is located in the riverside area . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Italian food in the £ 20 - 25 price range can be found at The Waterman . It is in city centre and has a high customer rating but is not kid friendly . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : no||Near the riverside is The Waterman , which serves English food . It is averagely rated , priced a little high , but not child friendly . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue pub is expensive and offers gourmet burgers and freshly cut fries \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||There is a place called Strada that has a high price range . It is children friendly with a 3 out of 5 customer rating . \nname : Alimentum | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is an Italian venue in the city centre near Yippee Noodle Bar . It is moderately priced with an average customer rating . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||Rated 3 out of 5 by its customers , The Cambridge Blue is a fast food restaurant . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada has Italian food with a moderate price range , they have 1 out of 5 customer rating however they are not kid friendly . They are located near Rainbow Vegetarian Café . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , situated near Rainbow Vegetarian Café , offers Japanese food in high prices . It is not a children friendly place and has been rated average . \nname : The Mill | Type : coffee shop | food : Indian | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near The Sorrento . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge serves Japanese food . It is located in the riverside area , near The Sorrento . \nname : Zizzi | Type : pub | food : English | customer rating : low | family friendly : yes||The Zizzi is a family friendly pub yet only rated one star \nname : Strada | food : Fast food | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap restaurant located near Rainbow Vegetarian Café . It is 5 stars and family friendly . \nname : The Wrestlers | food : Fast food | price : high | customer rating : average | family friendly : yes||The Wrestlers is a higher - cost burger palace that is family friendly . \nname : The Phoenix | food : Italian | customer rating : 5 out of 5 | area : city centre||The Phoenix provides Italian food . It is located in city centre and has a customer rating 5 out of 5 . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fast food place . yes . The Waterman . cheap . riverside . 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||In city centre near Burger King is The Eagle that is a coffee shop and Japanese food place with low reviews and a price range of moderate . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||The Waterman is a three star pub in the city centre , serving Italian food \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is a cheap fast - food restaurant near All Bar One with a low customer rating . \nname : Wildwood | Type : pub | food : English | price : £ 20 - 25 | customer rating : high||The Wildwood pub is mid price range and serves British food . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat is a high rated Chinese restaurant near the riverside , and is a children friendly venue . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes||There 's a restaurant which offers Japanese food with a high customer rating . It 's a kids friendly place called The Wrestlers with prices ranging about £ 20 - 25 . \nname : Strada | Type : pub | food : English | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Come visit Strada , our new pub located near Yippee Noodle Bar . Serving English food and boasting a customer rating of 1 out of 5 , don 't pass this place up . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a moderately priced English restaurant named The Rice Boat near Express by Holiday Inn in the city centre . It is moderately priced , kid friendly , and rated 3 out of 5 . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||A kid friendly place near The Six Bells is The Golden Curry . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is located on the riverside and serves Indian food in the moderate price range . It has a 1 out 5 rating and is not kid friendly . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry fast - food restaurant is kids friendly with a customer rating of 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a kids - friendly coffee shop near Avalon in the riverside area . It has a price range of £ 20- £ 25 and has a high customer rating . \nname : Loch Fyne | Type : restaurant | food : Italian | price : cheap | family friendly : yes||Loch Fyne is a family friendly restaurant that serves Italian food and has a cheap price range . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub which serves authentic English foods , and is located near The Portland Arms . It is very children - friendly . \nname : The Vaults | Type : pub | price : moderate | customer rating : 3 out of 5 | near : Café Adriatic||The Vaults is a pub near Café Adriatic and the price range is moderate . It is rated 3 out of 5 . \nname : The Golden Curry | food : French | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry House is close to the Café Rouge situated in Cambridge that doesn 't support families has lots of food and drink with a 1 star rating \nname : Zizzi | Type : pub | food : Fast food | customer rating : average | family friendly : no||Great fast food is served at Zizzi pub \nname : The Golden Palace | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside||There is a coffee shop with a price range of more than £ 30 , that has a high customer rating called The Golden Palace that serves Italian food by the riverside . \nname : Fitzbillies | price : more than £ 30 | near : Rainbow Vegetarian Café||Fitzbillies has a price range of more than 30 dollars and is located near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a cheap coffee shop which is family - friendly and it is located in the city centre area , close to Burger King . It is called The Eagle and it has a customer rating of 5 out of 5 . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving Japanese food . It is located by the riverside near the Crowne Plaza Hotel and is not family - friendly . \nname : The Dumpling Tree | Type : restaurant | food : French | price : high||The Dumpling Tree restaurant serves expensive French food . \nname : The Mill | Type : coffee shop | food : French | price : moderate | area : riverside | near : The Sorrento||The Mill is located in City Centre near The Sorrento . It is an affordable coffee shop with very fine eatery . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||The Wildwood restaurant , near Café Rouge , has a customer rating of 5 out of 5 . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge is a French restaurant with a price range of £ 20 - 25 and the customer service is rated high . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto has a low customer rating of 1 out of 5 . It 's a fast food coffee shop with a high price range . It 's in the riverside area near The Portland Arms . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop called Browns Cambridge serving French food which is child Friendly near to the Crowne Plaza Hotel in the riverside area . \nname : The Golden Curry | food : English | price : more than £ 30 | family friendly : yes | near : The Bakers||The Golden Curry sears English food near The Bakers . It is family friendly and has a higher price point . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||There is a pub located in the riverside with a cheap price range of twenty to twenty five named The Olive Grove . \nname : The Olive Grove | Type : pub | food : Japanese | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid Friendly pub by a riverside , serving Japanese with an average price Range . \nname : The Olive Grove | Type : pub | food : English | price : high | area : riverside | family friendly : yes||Located north of the city centre , The Olive Grove is a moderately priced pub suitable for families . \nname : The Eagle | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||The Cambridge Blue pub is near Café Brazil , it has a cheap price range and serves English food . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a nice coffee shop near the river in The Portland Arms with one star review . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Sited near the Thames , Fitzbillies is a lowly rated family - friendly coffee shop serving Italian food at mid - range prices . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||An affordable , kids friendly place , Fitzbillies , is located nearby Express by Holiday Inn . It has decent reviews . \nname : Fitzbillies | food : English | price : cheap | near : The Six Bells||Fitzbillies restaurant near The Six Bells sells cheap English food . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Express by Holiday Inn||Near to Express by Holiday Inn is located Fitzbillies . It has high customer rating and a price range between £ 20 - 25 . Theres is no kids area . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop near Crowne Plaza Hotel in the City center . It is considered a fast food establishment and currently has a low customer rating . \nname : The Dumpling Tree | Type : coffee shop | price : cheap | area : riverside | family friendly : yes | near : Café Sicilia||The Dumpling Tree is a cheap family friendly coffee shop . It is located in riverside near Café Sicilia . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||For cheap food there is a restaurant near The Six Bells called Giraffe \nname : The Phoenix | food : French | customer rating : average | area : riverside||Check out The Phoenix if you 're looking for quality French cuisine in the riverside area . The Phoenix has an average customer rating . \nname : Strada | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is a family friendly restaurant providing breakfast . It is medium priced and has a 3 star rating . It is family friendly and located near Rainbow Vegetarian Café . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is near The Portland Arms . They have a 5 out of 5 star rating , and a family friendly environment . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a kid friendly coffee shop named Fitzbillies located at the riverside . Offering French food for average prices , has earned it a 3 out 5 customer rating . \nname : The Mill | Type : pub | food : Italian | price : more than £ 30 | area : riverside||The Mill , down by the riverside , offers great Italian food for being a pub . The prices are fairly average , starting around £ 30 . \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Chinese food in the moderate price range . Its customer rating is 1 out of 5 . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : riverside | near : Yippee Noodle Bar||Alimentum is a French restaurant in the more than £ 30 price range in riverside near Yippee Noodle Bar . \nname : Wildwood | Type : coffee shop | food : Indian | price : high | customer rating : average | near : Ranch||coffee Shop , Wildwood , located near Ranch offers Indian food at a price range of high . Customer rating is average \nname : Blue Spice | price : cheap | area : riverside||Blue Spice by the riverside is cheap . \nname : Cotto | food : Japanese | near : Café Rouge||Cotto is located near Café Rouge , and serves Japanese food . \nname : The Waterman | Type : pub | food : Italian | customer rating : low | area : riverside||There is a pub The Waterman that is rated one star . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : no||The Rice Boat is an average Indian cuisine restaurant located in city centre , that is not family friendly . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat serves Indian food . It has a customer rating of 5 out of 5 and is located in the riverside area and is not family friendly . \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : low | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop near The Bakers with a low price range . It suffers from a below average customer rating though . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a cheap pub providing fast food on the low price range . \nname : Taste of Cambridge | Type : coffee shop | food : Indian | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop Taste of Cambridge that is located in riverside that serves Indian food . It is children friendly and near Crowne Plaza Hotel . \nname : Browns Cambridge | food : Fast food | area : city centre | family friendly : yes | near : The Sorrento||In the city centre near The Sorrento is Browns Cambridge . It is a family - friendly fast food restaurant . \nname : Midsummer House | food : Indian | customer rating : 1 out of 5 | near : Café Rouge||Midsummer House offering up Indian Cuisine is rated a 1 out of 5 by customers , is located near Café Rouge . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||The Travellers Rest Beefeater serves mid price range food . It is near the river and close to Café Adriatic . \nname : The Vaults | food : Fast food | price : cheap | family friendly : yes||price range cheap in this family Friendly Fast food joint called The Vaults \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||There is a pub called The Plough which is near Café Rouge . The food is French and the price range is more than £ 30 . It is children friendly . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry serves French food to the riverside area with a 5 out of 5 customer rating . It is near the Café Rouge and is not family - friendly . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a children friendly pub with a customer rating of 3 out of 5 . It is located in riverside . \nname : The Waterman | food : Japanese | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Japanese restaurant called The Waterman is located in the riverside area of town . It is a children - friendly , high price ranged eating establishment that scores 3 out of 5 stars . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Indian food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Wildwood | Type : pub | food : French | price : more than £ 30 | customer rating : 5 out of 5||Wildwood is a highly rated , but costly pub , serving good food \nname : The Eagle | food : French | customer rating : low||Offering a selection of food and wine , The Eagle is a one - star restaurant . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant providing Italian food in the high price range . It is located near Rainbow Vegetarian Café . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||The Strada is near the Rainbow Vegetarian Café and serves expensive pub food . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Blue Spice is a kid - friendly establishment set by the riverside , with an £ 20 - 25 price range and a decent rating of 3 out of 5 from customers \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Avalon||Blue Spice is ranked 1 star and is located right near Avalon , good for adults not for children and kids \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a three star family friendly sushi bar located north from the City Centre \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||Loch Fyne Italian restaurant has a family friendly atmosphere for less than 20 euros . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a cheap , one - star coffee shop near Burger King . It is family friendly . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman provides Indian food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||In the city centre there is a coffee shop called The Golden Palace that provides Indian food at a low price with 5 out of 5 customer rating . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Zizzi is a family friendly pub with an average customer rating providing English food . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn . The customer ratings are low , it is family friendly and cost less than £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a three star family friendly coffee shop near the Crowne Plaza Hotel . \nname : The Phoenix | food : Italian | price : cheap | customer rating : average | area : riverside||an average , cheap Italian in the riverside area would be The Phoenix \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a not family - friendly pub and is quite cheap . It serves Fast food near the riverside . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat on the riverside near Express by Holiday Inn offers moderate priced Italian food in a adult atmosphere . \nname : Zizzi | Type : pub | food : English | customer rating : average | family friendly : yes||Mid price family friendly place to go is Zizzi . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||The Golden Palace is a cheap coffee shop located in riverside that serves Italian cuisine . It has an average customer rating \nname : Cocum | Type : restaurant | customer rating : high | family friendly : yes||Cocum has a high customer rating and is a kids friendly restaurant . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two is family friendly and offers English cuisine . It is located on the riverside . \nname : The Phoenix | food : French | customer rating : high | area : riverside||The Phoenix is a riverside French restaurant with a high rating . \nname : Cocum | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||A highly rated , highly priced pub , Cocum is not child friendly . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||The Strada , located near the Rainbow Vegetarian Café serves English food at a moderate price range . It is not kid friendly and has a rating of 1 out of 5 . \nname : The Wrestlers | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers is a high customer rating venue serving Chinese . The price range is from £ 30 and is child friendly . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||A Chinese food place called The Waterman is located along a river side that is cheap , has a good customer rating , and is family friendly . \nname : Alimentum | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum offers French food in a family friendly atmosphere in the over 30 pound price range in the riverside area . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||1 Star Oriental restaurant Midsummer House offering Sushi and Shrimp . Located near Café Rouge . \nname : Fitzbillies | food : English | price : £ 20 - 25 | near : The Six Bells||Fitzbillies serves English food in the range of £ 20 - 25 . It is located near The Six Bells . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove serves English food , it is near the riverside , kid friendly and moderately priced . \nname : The Golden Palace | Type : restaurant | price : high||It is a high priced restaurant . It is at The Golden Palace . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop which also offers fast food options . It is located near The Portland Arms . The Cricketers is rated average among customers and is child - friendly . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a poorly recommended coffee shop serving reasonably priced fast food , sited on the banks of the river Thames near The Portland Arms . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop near Burger King that provides cheap food . It is called The Eagle . \nname : The Mill | Type : pub | food : Chinese | price : £ 20 - 25 | area : riverside||There is a pub that offers moderately priced Chinese food in the riverside area , it is called The Mill . \nname : The Waterman | price : less than £ 20 | family friendly : no||The Waterman is new in the area , but is not a place for family events \nname : Giraffe | Type : pub | food : Indian | area : city centre | family friendly : no||Giraffe is a pub that serves Indian food and is not kid friendly ; located in the city centre . \nname : The Plough | Type : pub | food : Japanese | price : more than £ 30 | family friendly : yes | near : Café Rouge||The Plough is a children friendly pub near Café Rouge . It offers Japanese food in the price range of more than £ 30 . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : high||There is an Indian restaurant with high customer ratings called , The Cambridge Blue . \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a kids friendly Italian restaurant near Café Rouge . It is located in Riverside with a customer rating of 1 out of 5 . \nname : The Eagle | price : high | customer rating : average | area : riverside||The Eagle has a high price range , an average customer rating and is located by the riverside . \nname : The Golden Curry | food : English | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is family friendly and has English food . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a children - friendly coffee shop that serves Japanese food with a price range with more than £ 30 with a rating of 5 out of 5 near Burger King in the city centre called The Eagle . \nname : The Waterman | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The price range is high in The Waterman area with a customer rating of 1 out of 5 and the children are friendly and the food is English . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||The Twenty Two is a British restaurant that serves breakfast near the river . Families are not permitted . \nname : The Plough | Type : pub | food : French | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Pub down the road serves children , Its name is The Plough . It isn 't very pricey and serves French style foods . It is located near Café Rouge . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||The Vaults is a non - family friendly environment . The Vaults serves cheese and wines . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada is child - friendly and has a 5 out of 5 customer rating . its price range is more than £ 30 . \nname : The Punter | price : £ 20 - 25 | area : riverside | family friendly : yes | near : The Portland Arms||In riverside nearby to The Portland Arms , there is a child friendly venue in the average price range called The Punter . \nname : Zizzi | Type : pub | food : Fast food | customer rating : high | family friendly : yes||The Zizzi pub offers fast food , a high customer rating , and a kid friendly environment . \nname : Zizzi | Type : pub | food : Indian | customer rating : high | family friendly : yes||Zizzi is a pub providing Indian food Its customer rating is high . \nname : The Golden Curry | food : Fast food | customer rating : low | family friendly : yes||The Golden Curry serves Fast food , is child friendly , and has a low customer rating . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is a restaurant located in Riverside offering Italian food . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Avalon||The Blue Spice is a non - family - friendly coffee shop in the city centre near Avalon with a 5 out of 5 customer rating and has a cheap price range . \nname : Green Man | price : high | area : riverside | family friendly : yes||Green Man in riverside is a child friendly venue but the price range is high . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is an Italian restaurant . It has a low price range and is family friendly but has only received average customer reviews . It is located beside the river . \nname : The Golden Curry | food : Indian | customer rating : high | family friendly : yes||The Golden Curry is an Indian restaurant with a high customer rating and is family friendly . \nname : The Vaults | food : Italian | price : cheap | family friendly : yes||For an Italian meal for all the family that won 't break the bank , you can visit The Vaults . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Avalon||In the riverside area near Avalon there 's a a coffee shop with high customer reviews called Blue Spice . It is in the average price range but it is not kid friendly . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Theres a Japanese restaurant called Bibimbap House near Clare Hall in riverside for less than £ 20 \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Café Adriatic||3 - stars for The Vaults pub near Café Adriatic . Middle price range . \nname : The Punter | food : Italian | price : cheap||The name of the Café is The Punter . It serves Italian food and is very cheap . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||A high price range , low customer rating , restaurant , The Twenty Two , is located near The Rice Boat in Riverside . \nname : Cocum | Type : pub | price : high | customer rating : 3 out of 5 | family friendly : yes||For a child friendly high priced pub with customer ratings of 3 out of 5 , try Cocum . \nname : The Golden Palace | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||Near the city centre area you will find The Golden Palace , a coffee shop serving French food with a price range more than £ 30 . \nname : Loch Fyne | Type : restaurant | food : Italian | price : less than £ 20 | family friendly : yes||For less than £ 20 you can eat Italian food at a family friendly restaurant called Loch Fyne , \nname : Wildwood | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | near : Ranch||For a 3 star low priced coffee shop Wildwood is near Ranch . \nname : The Eagle | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in the medium price range . It is located near a Burger King . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant in the city centre near Express by Holiday Inn . It has a customer rating of 5 out of 5 with cheap food . It is not family - friendly . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a French restaurant near Café Rouge , located next to riverside . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers in Cambridge is great for light meals , and it 's family - friendly . Alcoholic drinks are also sold . \nname : Browns Cambridge | food : English | price : more than £ 30 | customer rating : high||The Browns Cambridge sells high quality pub food at equally high prices in an urban environment . \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||In the riverside area is an Italian pub named The Waterman . It has a rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Express by Holiday Inn||A Japanese restaurant in the city centre , near to the Express by Holiday Inn , is The Rice Boat . Their prices range more than £ 30 , they are not children family and they have a low customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing sea food deliveries in the average price range . It is located in the north of city after Burger King next to river \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A coffee shop named The Wrestlers is located near Raja Indian Cuisine in riverside offering moderately priced fast food . It is kid friendly . \nname : The Golden Curry | food : Japanese | customer rating : average | family friendly : yes||The Golden Curry has been rated as ' average.' Japanese food is served in a family- friendly environment . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a low cost , family friendly coffee shop located riverside near Burger King . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Located near All Bar One , Midsummer House , a fast food venue , has high prices and moderate ratings . \nname : Alimentum | food : English | price : moderate | area : riverside | family friendly : no||Alimentum is not kids friendly . They serve English food . In the riverside area . There price range is moderate . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : high||The Dumpling Tree is an expensive Indian restaurant . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : city centre||The Mill is a pub that serves French food in the city centre . Expect to pay less than £ 20 for your meal . \nname : Loch Fyne | Type : restaurant | food : French | family friendly : yes||Loch Fyne is a restaurant serving French food . It has a children - friendly setting . \nname : Green Man | Type : pub | food : Italian | area : riverside | near : Café Rouge||For Italian food in the riverside area head to the Green Man . This pub is located near to Café Rouge \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a moderately - priced family restaurant . It has five out of five stars . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||Fitzbillies near The Six Bells is a high price ranged Italian \nname : Alimentum | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum offers fine French cuisine in the riverside area near Yippee Noodle Bar . Alimentum was giving the highest ratings by customers in spite of its high pricing . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Although not family - friendly , The Punter coffee shop , close to Café Sicilia , serves cheap sushi meals . \nname : Zizzi | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Zizzi is a family - friendly coffee shop in the city centre with a high customer rating and a price range of £ 20 - 25 . \nname : The Golden Palace | Type : pub | price : cheap | area : riverside | near : Rainbow Vegetarian Café||In the riverside area near Rainbow Vegetarian Café is a reasonably priced pub called The Golden Palace . \nname : The Punter | food : Japanese | price : £ 20 - 25||The Punter , Japanese restaurant prices £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace , a coffee shop located near the riverside , has a 5 out of 5 customer rating . It offers Fast food at a very cheap price . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is near Crown Plaza Hotel . It is a child friendly restaurant serving French food . \nname : Fitzbillies | food : Japanese | price : more than £ 30 | near : The Six Bells||There is a moderately priced Japanese restaurant near The Six Bells called Fitzbillies . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is high price , but has a customer rating of 1 out of 5 . It is located near Express by Holiday Inn , and is family friendly . \nname : The Phoenix | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix by the riverside serving French food , is cheap and has a customer rating of 5 out of 5 . \nname : Blue Spice | price : cheap | area : riverside||A cheap eatery at the riverside is Blue Spice . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a family - friendly inexpensive Japanese restaurant located in the city centre . Customer rating for The Waterman is low . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : no||The Twenty Two provides Chinese food It is located in the riverside . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||The coffee shop The Cricketers is a family friendly fast food place , near The Portland Arms , that has a low customer rating \nname : The Rice Boat | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Riversides kids friendly Japanese dish is The Rice Boat . \nname : Travellers Rest Beefeater | price : less than £ 20 | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeater , in the riverside area near Café Adriatic , has average customer ratings and cost less than £ 20 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms , it offers families convenient food at affordable prices . \nname : Strada | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada is an adult oriented Italian restaurant located near Rainbow Vegetarian Café , has a low customer rating but a moderate price range . \nname : The Punter | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||Close ti Café Sicilia operate family - Friendly Italian food coffee shop rated 5 out of 5 priced cheap named The Punter . \nname : The Golden Palace | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a great cheap coffee shop which also serves wine and cheese . It is located next to the river , not far from the city centre . \nname : Strada | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a children - friendly Chinese restaurant near Rainbow Vegetarian Café . It has an average customer rating and is high - priced . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : average | area : city centre | family friendly : no||There is an expensive coffee and Indian food restaurant in the city centre called Fitzbillies . It is highly priced and adult only . \nname : Midsummer House | food : Chinese | customer rating : low | near : Café Rouge||Midsummer House provides Chinese food It is near Café Rouge . Its customer rating is low . \nname : The Twenty Two | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two is in riverside near The Rice Boat with a customer rating of 5 out of 5 . It is children friendly at a price range of more than 30 Euros . \nname : The Waterman | Type : pub | food : Indian | customer rating : low | area : city centre||The Waterman is an Indian pub in center city with low customer ratings . \nname : Midsummer House | food : Japanese | price : high | customer rating : 3 out of 5 | near : All Bar One||Midsummer House has high priced Japanese cuisine . It is convenient to All Bar One and has moderate customer reviews . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat located near Express by Holiday Inn in the city centre serves Italian food , is kids friendly , has a moderate price range and has a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : yes||Loch Fyne is a family restaurant that serves French food with excellent prices . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : The Bakers||Located near The Bakers is Giraffe , a non - kid friendly , average priced and moderately rated coffee shop . \nname : The Phoenix | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||rated 1 out of 5 , The Phoenix offers high priced Chinese food in Riverside . \nname : The Dumpling Tree | Type : pub | food : English | family friendly : yes | near : The Portland Arms||The Dumpling Tree serves English food and is located near The Portland Arms . It is a children friendly pub . \nname : Cocum | Type : restaurant | customer rating : average | family friendly : yes||Cocum restaurant average place to come with your family \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The pub Café Adriatic ranges more than 30 and is rated 5 out of 5 its near The Vaults . \nname : The Vaults | food : Chinese | price : moderate | family friendly : yes||The Vaults is a kid friendly place serving Chinese food in the moderate price range . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a cheap Italian food coffee shop in the city centre , near Raja Indian Cuisine . It is called The Wrestlers and it is not family - friendly . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : 5 out of 5||Wildwood is a cheap pub that sells Chinese food . It has an overall rating of 5 out of 5 . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : no||The Vaults is a low priced English restaurant . It does not allow children . \nname : The Wrestlers | food : Fast food | price : moderate | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a moderately priced , child friendly fast food restaurant with a 3 out of 5 customer rating \nname : The Wrestlers | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||An English restaurant called The Wrestlers is a family friendly restaurant . It has a price range of less than £ 20 , but the customer ratings are low . \nname : The Cricketers | Type : pub | customer rating : 5 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a children friendly pub near Ranch . It has a 5 out of 5 rating \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat , a 5 star , family - friendly restaurant located close to the Express by Holiday Inn , serves low - priced food and spirits . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside||The Golden Palace is a high - priced coffee shop with one out of five stars . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a 5 out of 5 £ 30 price range French venue . \nname : The Golden Curry | food : Chinese | customer rating : high | family friendly : yes||The Golden Curry is a restaurant serving Chinese cuisine . It has a high customer rating and provides a great kid - friendly atmosphere . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a moderately priced restaurant named The Waterman located north of the centre of the city that provides classic British food . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue , a Chinese restaurant , is located near the Café Brazil . It has food that costs more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies coffee shop is located in the city centre area and is children friendly . They offer fast food with a high price range and a customer rating of 1 out of 5 . \nname : Midsummer House | food : Fast food | price : more than £ 30 | customer rating : high | near : All Bar One||Midsummer House is a burger joint serving quality meals at high prices . It is located next to All Bar One . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | near : Clare Hall||Clowns is a high rated coffee shop serving Japanese food near Clare Hall in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is an expensive coffee shop located in the riverside area . It sells Italian food and is not popular with customers . This restaurant is not child friendly . \nname : Midsummer House | food : Fast food | price : high | customer rating : 1 out of 5 | near : All Bar One||Located by All Bar One , Midsummer House is a high priced restaurant providing fast food . It is a one star restaurant . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum coffee shop serves Indian food in the cheap price range with a 5 out of 5 customer rating but is not family friendly \nname : The Cambridge Blue | Type : pub | food : Indian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is a pub serving Indian food . Located near Café Brazil , average cost is less than £ 20 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kid friendly place the serves English food . It is near the Crowne Plaza Hotel . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly Japanese food coffee shop in the city near Burger King with low prices and a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||A pub The Cambridge Blue , near Café Brazil , offers fast food at high prices . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a cheap , family friendly pub with a customer rating of 5 out of 5 . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Child friendly but expensive , Cocum is a pub that has been given a poor rating by its customers . \nname : Alimentum | food : English | price : cheap | area : riverside | family friendly : yes||Alimentum offers cheap , family - friendly food in the Riverside area . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||The Eagle has a price range of less than £ 20 . It is in Riverside and has a low customer rating \nname : Green Man | food : Fast food | price : more than £ 30 | area : riverside | family friendly : yes | near : All Bar One||The Green Man on the riverside serves fast - food for over 30 pounds per person . It is located near All Bar One on the riverside and is child - friendly . \nname : The Phoenix | food : Italian | customer rating : 3 out of 5 | area : riverside||The Phoenix serves Italian food in the riverside area and is rated 3 out of 5 . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Blue Spice is located a short distance from St. John 's College and is a great place for adults to gather . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : city centre | family friendly : no||Located in the city centre , the adult only The Olive Grove is a moderately priced place serving French food \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat will serve up Japanese food with in the £ 20 - 25 price range near the Express by Holiday Inn in riverside with a no children policy we have 3 out of 5 stars . \nname : Clowns | Type : pub | price : cheap | customer rating : 5 out of 5 | area : riverside||Clowns pub in riverside has a cheap menu but excels with a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Indian food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Giraffe | Type : pub | food : French | area : riverside | family friendly : yes||Giraffe is a family restaurant specializing in French food . It is a pub - type atmosphere and is located in the riverside area . \nname : Cocum | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a high priced adult coffee shop with a high customer rating . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a children - friendly coffee shop in the high price range . It is located near Avalon in the city centre . Its customer rating is 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Located on the riverside near Avalon is Blue Spice , a cheap average rated family friendly coffee shop . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||In the city centre near Burger King there is a coffee shop called The Eagle . It serves low priced Italian food and has a high customer rating . It is not family - friendly . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||In the riverside is an Italian restaurant called Alimentum . It is not family - friendly and costs less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is Japanese with coffee shop on side Burger King in the city centre with average no less than £ 20 \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||There is a friendly for kids Fast food called Alimentum . It is situated in the riverside area and it offers moderate price range . \nname : The Waterman | food : Italian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman located near the river is mid - priced 5 star family friendly dining . \nname : The Punter | food : Fast food | price : less than £ 20||The Punter offers Fast food at a reasonable price of below £ 20 . \nname : The Phoenix | food : Italian | customer rating : low | area : riverside||The Phoenix is near Chesterton Rd and the river . They are a 1 - star rated noodle place . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||There is a coffee shop friendly with the children near Café Sicilia called The Punter , that has a very high rating , the prices start with 30 £ , and they also serve Italian food . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada has a customer rating 1 out of 5 , kid friendly moderate price range . \nname : The Phoenix | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a mid priced restaurant which sells sushi . It is situated at the edge of the city . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle Italian coffee shop located near Burger King in the riverside area is a high priced coffee shop with an customer Rating of 1 out of 5 that is not children friendly . \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : no||Fast food joint The Waterman is not children friendly and has a high price range but average customer service and resides in Riverside . \nname : The Vaults | food : English | price : less than £ 20 | family friendly : yes||The Vaults is a family friendly restaurant serving English food . It is in the low price range of less than L20 . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Express by Holiday Inn||Fitzbillies is a well - known , pricey place by the Express by Holiday Inn . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Blue Spice with a low customer rating offers a family friendly service for below £ 20 on the riverside . \nname : Cocum | Type : coffee shop | food : Italian | price : cheap | customer rating : average | family friendly : no||There is an Italian coffee shop named Cocum with an average customer rating . The prices are low but not very family - friendly . \nname : The Vaults | food : Italian | price : high | family friendly : yes||Providing Italian food at a high price range , The Vaults is children friendly . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a high - cost , high - quality coffee shop with a family - friendly environment . \nname : Alimentum | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||At the riverside there is a Japanese restaurant called Alimentum . It is reasonably priced with meals generally under £ 20 . They welcome children . \nname : The Phoenix | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix is an average rated Indian restaurant in the city centre . It is moderately priced . \nname : The Mill | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is located in the city centre near The Sorrento with price range less than 20 . It is a coffee shop with fast food . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : The Bakers||Giraffe is a kids - friendly coffee shop located near The Bakers , with a high customer rating and a price range of £ 20 - 25 . \nname : Wildwood | Type : restaurant | customer rating : average | near : Café Rouge||The Wildwood restaurant is located near Café Rouge . It has an average customer rating . \nname : Wildwood | Type : restaurant | family friendly : yes||Wildwood is a restaurant with a family friendly environment . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Phoenix is a family friendly marketplace for all your food needs . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||The Phoenix provides cheap food and is located near the river . It has a three star rating . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : low||Browns Cambridge offers French food for less than £ 20 , although it does have a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Japanese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a low rated Japanese coffee shop near The Portland Arms , it is children - friendly . \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two offers French food and a child - friendly atmosphere . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||For family friendly dining , The Golden Curry is a wonderful Japanese cuisine choice that will make you want to up that low rating to a high rating . \nname : The Phoenix | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is a riverside restaurant that sells traditional English food , however is quite expensive . \nname : Zizzi | Type : pub | food : English | customer rating : 5 out of 5 | family friendly : yes||Zizzi is a family - friendly English pub , rated 5 out of 5 . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||At the riverside near the Express by Holiday Inn is a cheap , lowly rated Indian food place called The Rice Boat . It is not family friendly . \nname : The Phoenix | food : Indian | customer rating : 1 out of 5 | area : riverside||The Phoenix is an Indian restaurant with low customer ratings located near the riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an averagely price coffee shop located in the riverside area , near Burger King with a 3 out of 5 rating and offering Japanese food . This restaurant is not child - friendly . \nname : Zizzi | Type : restaurant | price : more than £ 30 | area : riverside||In the riverside area Zizzi is an expensive restaurant . \nname : The Twenty Two | food : Fast food | family friendly : yes||The Twenty Two is kid - friendly and serves fast - food . \nname : Clowns | Type : coffee shop | food : Indian | customer rating : low | area : riverside | near : Clare Hall||Clowns is a low - rated Indian coffee shop near Clare Hall . It is located by the river . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : high | area : riverside | near : Café Adriatic||Near Café Adriatic and the river is Travellers Rest Beefeater . It is highly rated and averagely priced . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||The Wrestlers serves Fast food costing more than £ 30 . It is children friendly and customers rate it highly . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle has a customer rating 3 out of 5 and serves Italian food . This coffee shop is not kids friendly and is located in city centre near Burger King . \nname : Loch Fyne | food : Indian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||The Loch Fyne in riverside , near The Rice Boat , serves Indian food and has a rating of 3 out of 5 . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Near the riverside Alimentum has a moderate price range and serves Fast food and is kids friendly \nname : Blue Spice | food : English | price : moderate | area : riverside||Blue Spice serves English food at moderate price . It is located by the riverside . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Indian food in the price range of £ 20 - 25 is served at The Rice Boat , located at the city centre near Express by Holiday Inn . It has high customer rating and is not kids friendly . \nname : Alimentum | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||There is a kid - friendly , French restaurant called Alimentum that serves food priced £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving cheap Indian food in the riverside area near The Portland Arms . It was given a 5 out of 5 customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A family - friendly restaurant coffee shop rating in 5of5 called Browns Cambridge located near Crowne Plaza Hotel in the center of the city \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||There is a Chinese restaurant called The Waterman located in the riverside area with high price range and average customer rating and it is children friendly also . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : high | family friendly : no||Loch Fyne is an expensive restaurant serving Chinese food . This place is not children friendly . \nname : The Rice Boat | food : Italian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located along the riverside , The Rice Boat provides Italian food to its customers . It is kid - friendly with a rating of 1 out 5 stars . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto , a French coffee shop near The Portland Arms in city centre has a low customer rating , but has prices less than £ 20 \nname : The Wrestlers | Type : coffee shop | food : Italian | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Italian coffee shop and is child friendly , they are in the higher price range . It is located in city centre near Raja Indian Cuisine . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||For cheap Indian food try The Waterman on the riverside . It has a 5 out of 5 rating but be aware it is not family friendly . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : yes | near : Café Rouge||The child - friendly pub The Plough is located near Café Rouge . It serves French food for prices higher than £ 30 . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : no | near : The Portland Arms||The Dumpling Tree is a pub near The Portland Arms . They serve Japanese cuisine in an adult atmosphere . \nname : Midsummer House | food : English | price : cheap | customer rating : 5 out of 5 | near : All Bar One||Midsummer House is a low priced , 5 star , British cuisine restaurant , located beside All Bar One . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop located near Burger King . They have a high price range and a 5 out of 5 customer rating . \nname : Loch Fyne | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a 5 star rated burger restaurant near The Rice Boat . \nname : The Waterman | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||For highly rated Indian food at an average price in the riverside area , try The Waterman . Not kid friendly . \nname : The Twenty Two | food : Chinese | family friendly : yes||The Twenty Two is a delicious Chinese restaurant and great for kids too . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : average | family friendly : yes||Cocum is a cheap , Indian - serving coffee shop rated average by customers , which is family friendly . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop and French restaurant is located outside of the City centre near Raja Indian Cuisine . It offers a cheap dining experience but does not cater for families . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant nearby the Rainbow Vegetarian Café , serving affordable and delicious Italian alternatives . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two is a child friendly venue serving Italian food . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||The Italian restaurant , The Mill , located in riverside area has pub eating with prices on the menu less than £ 20 . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||The best French food restaurant is located in the city Centre near Café Rouge . It is called The Golden Curry and has a customer rating of 5 out of 5 . It is also family friendly \nname : Cotto | food : Chinese | customer rating : average | family friendly : yes | near : Ranch||Located near Ranch , Cotto serves Chinese food . They have an average customer rating and are family friendly . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine is children - friendly in the riverside area . It is a coffee shop with Japanese food with a high price range named The Wrestlers . \nname : Wildwood | Type : pub | food : Japanese | price : less than £ 20 | customer rating : average||Wildwood is a pub that serves Japanese food . Both its customer rating and price range is average . \nname : The Golden Palace | Type : restaurant | price : less than £ 20||The Golden Palace is a restaurant that offers low - priced meals . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||With a high price Range and an average rating , Fitzbillies near Express by Holiday Inn is child Friendly . \nname : Blue Spice | food : French | price : less than £ 20 | area : riverside||Near to the river is Blue Spice which serves inexpensive food . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||Highly rated English food can be found at the Loch Fyne , near The Rice Boat in Riverside . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a short walk from The Sorrento fast food restaurant , which has a riverside view , friends and family welcome . \nname : The Rice Boat | food : Japanese | area : riverside||A Japanese restaurant found near riverside is The Rice Boat . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||With a kid - friendly atmosphere , The Olive Grove is located near the riverside . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is an average priced , fast food restaurant in the city center . The coffee shop is not kid friendly and is rated highly among customers . \nname : The Vaults | food : Indian | price : less than £ 20 | family friendly : no||The Vaults is an Indian cuisine restaurant offering food with a price range of less than £ 20 . This restaurant is not family friendly . \nname : The Waterman | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Located in city centre bring you 're whole family to The Waterman . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : high | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area is a high rated coffee shop called Clowns serving Japanese food . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is an Italian coffee shop located in city centre . It has average customer rating and not family - friendly , but has cheap price ranges . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||The Waterman is a Japanese , family - friendly restaurant that is under £ 20 , but with a low customer rating in the city centre . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a highly rated coffee shop in the City Centre near Burger King . It is aimed at older upper class people serving fantastic coffee and delicious French Food . \nname : The Cambridge Blue | Type : restaurant | food : Indian | customer rating : 3 out of 5||The Cambridge Blue is an Indian restaurant with a rating of 3 out of 5 . \nname : The Rice Boat | food : Indian | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Rice Boat is a family friendly place rated 5 out of 5 by customers . They serve Indian food in the city centre . \nname : Giraffe | Type : coffee shop | price : cheap | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a cheap , family friendly coffee shop located near The Bakers . It has an average customer rating . \nname : The Vaults | Type : restaurant | food : French||There is a restaurant called The Vaults which offers French food . \nname : Midsummer House | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : All Bar One||Looking for a great meal with wine and spirits , visit Midsummer House located near All Bar One . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a low rated , child - friendly , Japanese restaurant near Ranch . \nname : The Twenty Two | food : Fast food | area : city centre | family friendly : no||In the city centre is located The Twenty Two that offers Fast Food . There is no family area . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||Indian restaurant The Rice Boat is located in the city centre near Express by Holiday Inn . It has a high customer rating , dishes costing more than 30 pounds , and is not children friendly . \nname : Alimentum | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a quality sushi restaurant located near Yippee Noodle Bar . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a coffee shop with a moderate price range near Avalon that is kids friendly , in the riverside area , and rating 1 out of 5 . \nname : The Cricketers | Type : restaurant | food : English | near : All Bar One||There is a restaurant called The Cricketers serving English food near to All Bar One . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman in a French family friendly restaurant near Crowne Plaza Hotel . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto coffee shop near the riverside is close to The Portland Arms . Higher than average prices with lower ratings it serves Japanese food . \nname : The Phoenix | food : French | customer rating : average | area : city centre||The Phoenix is an average - rated French restaurant in the city centre . \nname : Cocum | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a 5 - out - of - 5 , family - friendly coffee shop which serves cheap French cuisine . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue is a restaurant providing Italian people rating average \nname : The Golden Curry | food : Italian | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is a child friendly Italian near The Bakers . The price range is £ 20 - £ 25 . \nname : Green Man | food : Japanese | price : moderate | area : riverside | family friendly : no | near : All Bar One||Green Man is a Japanese restaurant that is not kid friendly . It is near All Bar One and has a moderate price range . It is in the riverside area . \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : The Rice Boat||The Twenty Two is a family - friendly restaurant in city centre near The Rice Boat . It has an average customer rating for a less than average cost . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop providing Indian food It is near The Portland Arms . Its customer rating is average . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : riverside | family friendly : yes||The Olive Grove pub serves reasonably priced sushi with a family friendly environment . It is located along the riverside . \nname : The Phoenix | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre||The Phoenix is a Japanese food place with a price range of more than £ 30 , is in the city centre and has a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop for families that eat healthy diet . It is located in the north city . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is in the Northern City Centre , on the South side of the River , near Burger King . \nname : The Eagle | food : Italian | customer rating : low||The Eagle is a 1 - star rated noodle place . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop and has Italian food . It is in riverside near Clare Hall and has an average customer rating . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||The Giraffe is a pub that serves Japanese food in the riverside area . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman Indian food has a low customer rating and a family friendly environment with a central location and high price range \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||There is a restaurant Loch Fyne serving Chinese food that is friendly to kids . \nname : Midsummer House | food : Italian | price : high | customer rating : 1 out of 5 | near : All Bar One||The Midsummer House is an expensive , 1 star restaurant located near All Bar One . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a cheap Chinese restaurant rated 5 out of 5 by customers , and is located in the city centre near to Yippee Noodle Bar . \nname : The Eagle | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||In City centre near Burger King is The Eagle ; a non - child friendly coffee shop . Food is fast , Price is high and average customer ratings . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||The Wrestlers provides Chinese food in the less than £ 20 price range . Its customer rating is low . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : city centre||In city centre , The Mills is a pub with Chinese food in less than £ 20 . \nname : The Olive Grove | Type : pub | food : Italian | price : high | area : city centre | family friendly : yes||The Olive Grove is a children friendly Italian pub in the high price range located in the city center . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : yes||The Olive Grove is a family - friendly pub in the city centre . Prices are usually less than £ 20 . \nname : The Phoenix | food : French | price : high | customer rating : 3 out of 5 | area : riverside||High priced riverside restaurant The Phoenix provides French food 3 out of 5 \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a moderately priced restaurant that serves French cuisine . They are located near Express by Holiday Inn and are rated 1 out of 5 . This restaurant is non - family - friendly . \nname : Aromi | Type : restaurant | food : Italian | area : riverside||Aromi is an Italian restaurant in the Riverside area . \nname : The Waterman | Type : pub | food : Japanese | customer rating : average | area : city centre||The Waterman is a Japanese pub in the city centre with average customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies coffee shop is not child friendly . It is in the city centre and serves expensive French food . Customers rate it 5 out of 5 . \nname : Green Man | Type : pub | food : Chinese | area : riverside | near : Café Rouge||Serving Chinese in riverside near Café Rouge is a pub called Green Man . \nname : Bibimbap House | food : Fast food | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant with a low price point located next to Clare Hall . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Located in riverside , there is a children friendly fast food pub named Giraffe . \nname : The Waterman | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman eat Indian food with high prices , his value is 1 out of 5 for the place in the city center for not be good for children \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove at riverside is a pub that is child friendly and costs more than £ 30 \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge on the riverside is child friendly and has English food . It is near The Sorrento . \nname : Cocum | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum coffee serves Indian food in a family friendly environment They have a great customer rating and are cheap \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||The Indian food place called Browns Cambridge that kid friendly near riverside near The Sorrento . \nname : Fitzbillies | price : more than £ 30 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near the Express by Holiday Inn is children friendly and costs more than 30 pounds . It isn 't a very good restaurant . \nname : Alimentum | food : Indian | price : cheap | area : riverside | family friendly : yes||the Alimentum Indian restaurant located on the riverside is offering a family friendly atmosphere and cheap food . \nname : Loch Fyne | food : French | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Near to The Rice Boat and the river is Loch Fyne . Customers rate its French food 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside||Indian food and coffee shop in Riverside , The Golden Palace . Price range is more than £ 30 , with a high customer rating . \nname : Strada | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Strada is a cheap 5 star restaurant that is family friendly . \nname : The Olive Grove | Type : pub | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub type restaurant located in the city centre . They are not family - friendly with Fast food and price range less than 20 . \nname : Bibimbap House | food : Japanese | price : less than £ 20 | area : riverside | near : Clare Hall||Bibimbap House is a Japanese restaurant that is less than 20 pounds near the Clare Hall area of riverside . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is children friendly and serves Indian food . It is located in riverside near Café Rouge and has an average customer rating . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : yes||The Olive Grove pub is children friendly and serves high price range Chinese food in the riverside area . \nname : The Waterman | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman is a Chinese restaurant with average customer rating located in the riverside area which has high price range and it 's children friendly . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a kid friendly pub near the Ranch and holds a rating of 3 out of 5 . \nname : Fitzbillies | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is a high end restaurant located near Express by Holiday Inn . Fitzbillies is rated 1 out of 5 by customers and is child friendly . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap Chinese restaurant with a customer rating of 5 out of 5 . It 's family friendly and in riverside near Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no||The Olive Grove is a pub providing Chinese food with a high price range . It is not a children friendly restaurant , but is located on the riverside . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre , next to Burger King , it a coffee shop serving Italian food , called The Eagle . It is kid friendly , moderate priced , and has an average rating of 3 out of 5 \nname : The Rice Boat | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat fast food restaurant 's ratings are high with price ranging 20 - 25 . They are kid friendly . The Rice Boat is on the riverside near Express by Holiday Inn . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : more than £ 30 | family friendly : yes||There is a Japanese restaurant called the Loch Fyne . It 's children - friendly and is more than £ 30 to eat there . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||Midsummer House is a French restaurant near Café Rouge with a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Japanese in the less than 20 pound price range . It is located riverside people rating average family friendly yes \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat provides Chinese food in the cheap price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 5 out of 5 . \nname : Bibimbap House | food : English | price : moderate | area : riverside | near : Clare Hall||theres a moderately priced English restaurant in the riverside area near Clare Hall called Bibimbap House \nname : Zizzi | Type : pub | food : French | customer rating : 5 out of 5 | family friendly : no||Zizzi is a French pub that is not family - friendly . It is highly rated . \nname : Aromi | Type : pub | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly pub in the city centre that gets average ratings . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Near the riverside area of Browns Cambridge is a kid friendly Japanese restaurant , The Sorrento \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that provides Indian food in the moderate price range . It is located in the city centre . \nname : The Mill | Type : pub | food : Indian | price : moderate | area : city centre||The Mill is an Indian Pub near city centre . \nname : The Phoenix | food : Italian | price : £ 20 - 25 | customer rating : high | area : city centre||There is an Italian restaurant in city centre called The Phoenix . Their prices are middle of the road and their food is highly rated . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop . This coffee shop is family friend and prices range less then 20 dollars . They offer different types of French food . The Eagle is located in Riverside near the Burger King . Our customer rating is low . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||There is an expensive pub called the Wildwood that serves Japanese food . It has a moderate customer rating . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle in riverside has an average customer rating and cheap prices . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is ahead it offers Chinese cuisine as well as nice hot coffee to drink . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||A family friendly , fast food , pub close to The Portland Arms is , The Dumpling Tree . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly restaurant located near Express by Holiday Inn . It has three stars and is low - priced . \nname : The Twenty Two | food : French | family friendly : yes||Kids friendly , The Twenty Two now serves French food . \nname : Browns Cambridge | food : Indian | price : moderate | customer rating : 3 out of 5||Browns Cambridge provides Indian food in the moderate price range . Its customer rating is 3 out of 5 . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Come check out Alimentum restaurant serving upscale cuisine mid - price with good reviews located next to Yippee Noodle Bar . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi ; this fast food and coffee shop offers child friendly service in their riverside premises , they have average customer reviews \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : yes||The Waterman has an average customer rating . It is a Fast food restaurant located in the city centre . It is child friendly . \nname : The Plough | Type : restaurant | family friendly : yes | near : Express by Holiday Inn||The Plough , located nearby Express by Holiday Inn , is a family friendly restaurant . \nname : Midsummer House | food : Japanese | customer rating : low | near : Café Rouge||Midsummer House serves Japanese food . It is low rated and near to Café Rouge . \nname : The Vaults | food : English | price : more than £ 30 | family friendly : yes||If your craving for English foods you might want to try The Vaults it has a children friendly atmosphere great with families a little bit pricey with more than £ 30 \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Japanese restaurant , The Rice Boat , in the city centre has only received a 3 out of 5 rating . Located near the Express by Holiday Inn , it is not child - friendly and very high - priced . \nname : The Phoenix | food : Chinese | customer rating : 3 out of 5 | area : riverside||The Phoenix provides Chinese food It is located in the riverside . Its customer rating is 3 out of 5 . \nname : Strada | price : high | customer rating : 3 out of 5 | family friendly : yes||Strada has a price range of more than £ 30 . It is kid friendly with a rating of 5 out of 5 . \nname : The Phoenix | food : English | customer rating : average | area : riverside||Kick back and enjoy the river view add you visit with friends and enjoy English food in The Phoenix , \nname : Browns Cambridge | food : French | price : moderate | customer rating : 1 out of 5||Browns Cambridge is a store that provides a reasonable price assorted wine drinks and snacks . \nname : The Punter | food : English | price : less than £ 20||English food at The Punter is less than £ 20 . \nname : Fitzbillies | food : English | price : £ 20 - 25 | near : The Six Bells||Fitzbillies , near The Six Bells does English food and prices are typically between £ 20 - 25 . \nname : The Eagle | food : Italian | customer rating : low||A fair meal can be purchased from The Eagle , which is off the main road . \nname : Browns Cambridge | food : Italian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge offers a family - friendly menu . It is located in close proximity to The Sorrento in riverside . \nname : Blue Spice | food : Japanese | price : more than £ 30 | area : riverside||Expensive sushi is served at Blue Spice , located on the riverside . \nname : The Waterman | Type : pub | food : Indian | customer rating : 1 out of 5 | area : riverside||The Waterman pub near the riverside serves Indian food , but has a low customer rating of one out of five . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a French coffee shop near Crowne Plaza Hotel . Browns Cambridge has a 5 out of 5 customer rating and is children friendly . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||On the riverside The Twenty Two is child friendly , high prices and a 1 out of 5 rating . Find it near The Rice Boat . \nname : The Cambridge Blue | Type : pub | food : English | price : cheap | near : Café Brazil||There is a cheap pub near the Café Brazil called The Cambridge Blue and it serves English food . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is an expensive child friendly shop , near Café Sicilia \nname : The Vaults | Type : coffee shop | price : more than £ 30 | customer rating : high | area : riverside | near : Café Brazil||The Vaults near Café Brazil in riverside is a highly rated coffee shop with prices more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside||The Golden Palace is a fair - priced coffee shop located on the outskirts of the city . \nname : The Golden Palace | Type : coffee shop | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||By the riverside , there is a high priced Fast food place called The Golden Palace with a customer rating of 1 out of 5 . It is like a coffee shop . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Near The Portland Arms is the coffee shop Cotto . It is cheap and has a one star rating . \nname : Cotto | food : Fast food | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly fast food restaurant with a low customer satisfaction rating . Located near the Ranch . \nname : Aromi | Type : coffee shop | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Aromi coffee shop located down the riverside it is considered to be a family friendly place that always receives a maximal customer rating . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : riverside||Cheap English food is offered at The Phoenix with average ratings near the riverside area . \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||Travellers Rest Beefeater is a river side restaurant near Café Adriatic with a customer rating of 3 out of 5 and a price range of 20 - 25 \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : yes||The Golden Curry is a restaurant that is a family Friendly place and the food is Italian . they sadly have a low customer rating \nname : Midsummer House | food : Indian | customer rating : high | near : Café Rouge||Located near Café Rouge is Midsummer House . It serves Indian food with a high customer rating . \nname : Loch Fyne | Type : restaurant | food : Chinese | family friendly : yes||There is a kids friendly restaurant that provides Chinese food called Loch Fyne . \nname : The Wrestlers | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes||For an average cost and dining experience , The Wrestlers is an average rated Japanese dining experience . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||The Portland Arms is a nice coffee shop situated near to Cotto in the city centre that serves Japanese food is the price range of £ 20- £ 25 that has generated a high customer rating . \nname : The Rice Boat | food : English | area : riverside||There is an English food place riverside , called The Rice Boat . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||At the riverside area , a few steps of The Sorrento , there is a coffee shop called The Mill . You can eat Italian food but at high prices . \nname : Blue Spice | price : less than £ 20 | area : riverside||Blue Spice is near the riverside and has prices under £ 20 . \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 1 out of 5||The Cambridge Blue is a Fast food restaurant with a 1 out of 5 rating \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||The Green Man is a cheap fast food venue near All Bar One in the city centre , but is not child friendly \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : yes||Aromi is an average Japanese coffee shop near the city center and yes , we welcome children . \nname : Alimentum | food : Italian | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||with its prices of more than £ 30 serving Italian cuisine with a high score The Alimentum is close to Yippee Noodle Bar located near the city centre . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||The Alimentum is a lower priced place to eat near the city centre . It is not far from the Yippee Noodle Bar . \nname : The Punter | food : French | price : moderate||The Punter provides French cuisine with a moderate price range . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : yes||The Rice Boat is a family friendly Chinese restaurant with low quality reviews . It is located downtown . \nname : Strada | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||There is a high price restaurant Strada near Rainbow Vegetarian Café . They have high customer ratings and they serve Japanese food . The restaurant is not children friendly . \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : no||The Rice Boat is a riverside Fast food restaurant with an average customer rating . It is not family - friendly . \nname : Blue Spice | food : Italian | price : more than £ 30 | area : riverside||if you have more than £ 30 to spend for a Italian food , then go to the riverside area and find Blue Spice . \nname : Cotto | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a cheap , low - rated French coffee shop near The Portland Arms , in the city center . \nname : The Plough | Type : restaurant | price : high | family friendly : yes | near : The Bakers||The Bakers restaurant name is The Plough with high price range \nname : Giraffe | Type : pub | food : Italian | area : riverside | family friendly : yes||The Giraffe is a kid friendly Italian pub in the riverside area . \nname : The Rice Boat | food : Indian | customer rating : low | area : riverside | family friendly : yes||The Rice Boat is a Indian food restaurant , it 's kids friendly but has low customer rating located in riverside . \nname : The Golden Curry | food : French | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry is kids friendly French restaurant near The Bakers with price range 20 to 25 pounds . £ 20 - 25 is price range in The Golden Curry , children friendly restaurant . \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is an Italian pub near Café Rouge . It is children friendly and high priced . \nname : The Vaults | Type : coffee shop | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults coffee shop is located near Café Brazil and is priced mid - range . \nname : Blue Spice | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Blue Spice is family friendly and located near the river , but it 's expensive and gets low customer ratings . \nname : The Wrestlers | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||There is a Chinese restaurant with a low customer rating called The Wrestlers . The price range is low , under £ 20 , and it is family friendly . \nname : The Rice Boat | food : French | customer rating : average | area : riverside | family friendly : yes||The French place in riverside is called The Rice Boat . They are family friendly , and also received an average customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||Located near Burger King in the city centre , The Eagle is a Japanese coffee shop with a low rating , moderate prices , and lacking a child friendly atmosphere . \nname : The Waterman | price : moderate | family friendly : no||No kids , The Waterman , moderately priced . \nname : The Olive Grove | Type : pub | food : Japanese | price : moderate | area : city centre | family friendly : yes||The Olive Grove is a pub that is kid friendly and sells Japanese food . The price is moderate and it is located in the city centre . \nname : Strada | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a restaurant providing kid friendly Italian food in the moderate price range . it has a customer rating of 3 out of 5 . It can be fond near the Rainbow Vegetarian Café . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge , located in the riverside near of The Sorrento , providing a service of Fast food \nname : The Phoenix | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Phoenix , serving Chinese food , provides an average experience at a moderate price point in the city centre . \nname : The Waterman | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman provides Chinese food in the less than £ 20 price range . It is located in the riverside . Its customer rating is low . \nname : Fitzbillies | price : less than £ 20 | customer rating : low | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is family friendly and is near the Express by Holiday Inn . It is moderately priced and has been given a low customer rating . \nname : Loch Fyne | food : French | customer rating : low | area : riverside | near : The Rice Boat||Loch Fyne is a French restaurant located in the riverside area near The Rice Boat . It has a low customer rating . \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a 5 out of 5 star family friendly restaurant . Falling into the highly priced category it is located near the Rainbow Vegetarian Café . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids friendly coffee shop The Wrestlers offers Italian food at prices between £ 20 - 25 . It is located near Raja Indian Cuisine in the riverside area . \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||The Alimentum Locates near Yippee Noodle Bar with a rating of five out of five stars near the river \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||Low Japanese food The Waterman eat pub riverside . \nname : The Punter | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Moderately priced coffee shop The Punter is a kids - friendly Italian restaurant near Café Sicilia . It has a customer rating of only 1 out of 5 . \nname : The Golden Curry | food : Italian | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry , a kid friendly Italian restaurant , has a customer rating from 3 to 5 . \nname : The Phoenix | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre||In city centre there is a Fast food place called The Phoenix . The ratings are high and they sell food ranging from £ 20 - 25 . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The Cricketers is a French restaurant located near All Bar One . \nname : The Cambridge Blue | Type : pub | food : Italian | price : less than £ 20 | near : Café Brazil||The Cambridge Blue is located near the Café Brazil and is low cost . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns , the neighborhood coffee shop near Clare Hall is a very highly rated Fast food establishment in the city center . \nname : The Waterman | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The Waterman is a Japanese restaurant that is rated 1 out of 5 near the city center , is moderately priced and is kid friendly . \nname : The Wrestlers | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a restaurant providing Japaneses food in the cheap price range . \nname : The Eagle | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||There is a children friendly coffee shop The Eagle near Burger King high price range . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||A coffee shop , The Golden Palace , serves Italian food . Price range is less than L20 and it is located in the city centre . Customer rating in low . \nname : Loch Fyne | Type : restaurant | food : French | price : moderate | family friendly : yes||Loch Fyne restaurant offers food , drinks at deserts at affordable prices . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 1 out of 5 | area : riverside||The Waterman pub in Riverside serves Japanese food , has a star rating of 1 out of 5 . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a Japanese pub that has a price range of more than £ 30 and is located near Café Brazil . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry serves Indian food . They are children friendly , but only have a customer rating of 1 out of 5 . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : yes||The English restaurant Loch Fyne is children friendly \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop near Café Sicilia offering Italian food priced high with a customer rating of 1 out of 5 . \nname : The Waterman | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The Waterman is a Sushi restaurant that caters to families and is medium cost . \nname : Browns Cambridge | price : less than £ 20 | customer rating : low||Browns Cambridge not only has a less than average price range , but also , a low customer rating . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||Over near Crowne Plaza Hotel , I would recommend The Waterman , a great children friendly fast food restaurant . \nname : The Mill | Type : pub | food : French | price : less than £ 20 | area : riverside||The Mill is a French pub with a price range less than £ 20 in Riverside . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||With moderate prices , The Golden Curry , located near The Bakers , is a kids friendly fast food place . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||Top rated Italian restaurant , The Golden Curry , is family - friendly and located near Café Rouge at City Centre . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : city centre||City centre pub , The Waterman offers Chinese Food with an average customer rating . \nname : Alimentum | food : Fast food | price : high | area : riverside | family friendly : yes||There is a children friendly fast food restaurant by the riverside with a high customer rating . It is the Alimentum . \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove cheap English food in family at the riverside \nname : Fitzbillies | Type : coffee shop | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap coffee shop Fitzbillies which offers French food located on the river side . It is family friendly and has a 5 out of 5 customer rating \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||The Olive Grove is an expensive child friendly pub serving French food in the riverside area . \nname : Browns Cambridge | food : English | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is on the riverside near The Sorrento . It has English food and is child friendly . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies is a fast food place to eat near The Six Bells . \nname : Bibimbap House | food : French | area : city centre | near : The Rice Boat||Bibimbap House is near The Rice Boat in the city centre providing French food . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a no family - friendly coffee shop that provides Fast food in the cheap price range . It is located in the city centre with low customer rating . \nname : Clowns | Type : pub | price : high | customer rating : 1 out of 5 | area : riverside||Clowns is a riverside pub in the high price range with a 1 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : high | area : riverside | family friendly : yes||There is a coffee shop that also serves Italian food in the riverside area . Its name is Aromi . It has a high customer rating . Yes it is also a kid friendly place . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | near : Café Adriatic||The Vaults is an expensive , five - star pub located near Café Adriatic . \nname : The Cricketers | Type : coffee shop | food : French | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Portland Arms has a French coffee shop nearby that is kids friendly and has a good rating . It is called The Cricketers . \nname : Wildwood | Type : pub | food : Chinese | price : cheap | customer rating : average||The Wildwood pub serves Chinese food for a cheap price and has an average customer rating . \nname : Wildwood | Type : restaurant | customer rating : 5 out of 5 | near : Café Rouge||If you want a restaurant rated 5 out of 5 pick Wildwood . It is located near Café Rouge . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an Indian restaurant that is expensive and has a rating of 1 out of 5 . It is not children friendly . \nname : The Mill | Type : pub | food : French | price : more than £ 30 | area : riverside||The Mill sells fine foods along with it 's pub fair at high prices along the southern coast of the River . \nname : The Mill | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | near : The Sorrento||There is a coffee shop serving French food located riverside near The Sorrento . It is called The Mill , and costs less than £ 20 . \nname : Cotto | Type : coffee shop | food : Fast food | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a Fast food coffee shop near The Portland Arms in the riverside area . it has a high price range and an average customer rating . \nname : Bibimbap House | food : English | price : cheap | area : riverside | near : Clare Hall||Bibimbap House is an inexpensive English restaurant in the riverside area , near Clare Hall . \nname : The Dumpling Tree | Type : pub | food : Fast food | family friendly : yes | near : The Portland Arms||Located Near The Portland Arms you will find a pub called The Dumpling Tree . They serve fast - food and are child friendly . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||In the riverside area , near All Bar One , is the cheap Japanese restaurant , Green Man . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House , close to All Bar One , is rated three stars and medium priced . \nname : Blue Spice | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a cheap coffee shop in riverside near Avalon . It has a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a Japanese coffee shop with a high customer rating near The Portland Arms . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||Make sure and stop by our Italian inspired coffee shop at The Mill . We offer quality with a high price range in the riverside area , near The Sorrento . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : city centre||The Eagle is located in the city centre area serving moderately priced food with a 1 out of 5 customer rating \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a French serving coffee shop that has a 3 out of 5 customer rating and a high price range . it is near The Portland Arms in the city centre . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is non family - friendly pub located in the city centre , with a price range under £ 20 . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , located in the centre of the city near Crowne Plaza Hotel , is an adult - only coffee shop serving French food . It has received a low customer rating . \nname : The Phoenix | food : English | price : high | customer rating : average | area : city centre||There is a high- priced restaurant The Phoenix in the city centre that provides English food . It has an average customer rating . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||Giraffe is a children friendly pub serving English food . It is located in the riverside area . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop that provides Italian food near The Portland Arms and its customer rating is low . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : The Bakers||The non - kid friendly coffee shop named The Giraffe is moderately priced and is near The Bakers . It has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Japanese | price : moderate | family friendly : no | near : The Bakers||The Golden Curry is a fast food store that sells Japanese food . They are no a kid friendly store near The Bakers and have a moderate price range . \nname : The Rice Boat | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat brings you a service of French food with a price of £ 20 or lees , in the riverside very close of Express by Holiday Inn \nname : Alimentum | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Alimentum serves fast food at a price range of £ 20 - 25 . Alimentum has a high customer rating and is located near Yippee Noodle Bar in a riverside area . \nname : The Waterman | Type : pub | food : French | customer rating : low | area : city centre||The Waterman is a French pub in the city centre with low customer satisfaction . \nname : The Olive Grove | Type : pub | food : French | price : moderate | area : riverside | family friendly : yes||The Olive Grove pub has facilities for families and is a moderately priced restaurant with a river view . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a dine in restaurant located in the middle of the city beside The Portland Arms \nname : The Eagle | food : Fast food | customer rating : 3 out of 5||The Eagle only scores 3 out of 5 for their fast food . \nname : Cocum | Type : restaurant | customer rating : 5 out of 5 | family friendly : yes||Cocum is a child friendly restaurant with a customer rating of 5 out of 5 . \nname : Blue Spice | food : Italian | price : less than £ 20 | area : riverside||Blue Spice is a low - priced restaurant by the margin of the river that provides pasta and wine . \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : low||Fast food can be bought from Browns Cambridge for £ 20 or less . This venue scores low in customer ratings . \nname : Browns Cambridge | price : £ 20 - 25 | customer rating : 3 out of 5||Browns Cambridge has a rating of 3 out of 5 with a price range of £ 20 - 25 \nname : The Golden Curry | food : Japanese | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||The customer rating is low , but The Golden Curry is a family - friendly Japanese restaurant in the city centre near Café Rouge . \nname : Green Man | Type : pub | food : Chinese | area : riverside | near : Café Rouge||Green Man pub serves Chinese in riverside near Café Rouge . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue is a low rated English food restaurant . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a restaurant north of the Crowne Plaza Hotel that is also non - family friendly . \nname : Midsummer House | food : Fast food | customer rating : high | near : Café Rouge||Located near Café Rouge Midsummer House is a fast food restaurant with a high customer rating . \nname : Browns Cambridge | food : French | price : less than £ 20 | customer rating : average||Browns Cambridge offers French food for a price range of less than £ 20 . It has an average customer rating . \nname : The Olive Grove | Type : pub | food : French | price : more than £ 30 | area : riverside | family friendly : yes||Theres a French Pub in Riverside named The Olive Grove , child - friendly and the price range is More then £ 30 . \nname : Strada | food : Fast food | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Strada It offers fast food at low prices , and is located in the city center there Rainbow Vegetarian Café \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : no||The coffee shop called Aromi has become not kid friendly recently . They sell Italian food and has earned a low rating for their shop . They can be found in city centre \nname : Blue Spice | Type : coffee shop | price : high | customer rating : average | area : riverside | family friendly : yes | near : Avalon||In riverside there is a children friendly coffee shop named Blue Spice . It has an average customer rating and a high price range . It is near Avalon . \nname : Bibimbap House | food : Indian | area : city centre | near : The Rice Boat||There is a restaurant , Bibimbap House , in the city centre near The Rice Boat that serves Indian food . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : no||The Golden Curry is a fast food restaurant suitable for adults and with an average rating . \nname : Giraffe | Type : pub | food : Fast food | area : riverside | family friendly : yes||Giraffe on the riverside is a Family friendly pub \nname : The Wrestlers | food : Italian | price : cheap | customer rating : average | family friendly : no||The Wrestlers is a cheap , non family - friendly Italian Café with a average customer rating . \nname : Wildwood | Type : pub | food : Italian | price : high | customer rating : 1 out of 5||The upscale Wildwood pub serves pasta . It is a high - priced , one star pub . \nname : Alimentum | food : Italian | price : high | area : riverside | family friendly : yes||Alimentum serves high priced Italian food . It is situated in Riverside and is child friendly . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop in the city centre near Raja Indian Cuisine . It is not family - friendly but they serve fast food . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||The Mill is a pub serving English food in the upper price range in a riverside location . \nname : Giraffe | Type : coffee shop | price : high | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is high - priced coffee shop with average- rated near by The Bakers . also its children Friendly . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in the riverside area , near Express by Holiday Inn . It has an average rating from customers and is moderately priced . It is not child friendly . \nname : Browns Cambridge | food : Fast food | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is a a Fast food place in the riverside area . It is family friendly , and it is located near The Sorrento . \nname : Alimentum | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Yippee Noodle Bar called Alimentum in the city centre sells moderately priced fast food and has a rating of 3 out of 5 . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||There is a high - priced restaurant called The Twenty Two located at the city centre near The Rice Boat . Although it is not considered children friendly it has a customer rating of 3 out of 5 . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix provides Indian food . It has a cheap price range . It has a customer rating of 5 out of 5 . It is in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop located near the river that offers a wide variety of wines and food . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||There is a family friendly coffee shop called The Cricketers . It offers fast food . It has a low customer rating and it is located near to The Portland Arms . \nname : Travellers Rest Beefeater | price : cheap | customer rating : average | area : riverside | near : Café Adriatic||Travellers Rest Beefeaters is a cheap restaurant in riverside near Café Adriatic with average customer ratings . \nname : Cotto | price : more than £ 30 | area : riverside | near : All Bar One||Along the riverside near All Bar One is an eatery with a higher price range called Cotto . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||In riverside there is a restaurant The Twenty Two that has kid friendly food . \nname : Alimentum | food : Japanese | price : moderate | area : city centre | family friendly : no||Alimentum is located in the city centre . It is not kid friendly , and it is moderately priced . \nname : The Plough | Type : pub | food : Chinese | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a low cost Chinese family pub , located near Café Rouge . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a low - cost , one - star restaurant that is not family - friendly . The Rice Boat is located near Express by Holiday Inn . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in the city center which is near Express by Holiday Inn and it has a high customer rating with price ranged more than £ 30 . It is also children friendly . \nname : The Phoenix | food : Japanese | customer rating : average | area : city centre||The Phoenix serves Japanese and is located in the city center . They have an average rating . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum is a restaurant providing Chinese food in the low price range . It is located in near Yippee Noodle Bar . \nname : Wildwood | Type : pub | food : Indian | price : less than £ 20 | customer rating : low||There is a pub called Wildwood , that serves Indian food , with price Range less than £ 20 and low customer Rating . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the high price range . It is located in the riverside . It is near Express by Holiday Inn . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat provides Indian food in the moderate price range . It is located in the city centre . It is near Express by Holiday Inn . Its customer rating is 3 out of 5 . \nname : Loch Fyne | food : Chinese | customer rating : low | area : city centre | near : The Rice Boat||Near The Rice Boat in city centre is a Chinese food , low rated place called Loch Fyne . \nname : The Golden Curry | food : Japanese | customer rating : low | family friendly : yes||The Golden Curry is a low cost children friendly restaurant that serves Japanese food . \nname : The Mill | Type : pub | food : Fast food | price : cheap | area : riverside||The Mill is a Fast food pub in the riverside area with a cheap price range . \nname : Browns Cambridge | food : Fast food | price : more than £ 30 | customer rating : low||Browns Cambridge providing Fast food for more than £ 30 , rated low . \nname : The Waterman | Type : pub | food : Chinese | customer rating : average | area : city centre||The Waterman , a pub located in the City Centre offers Chinese food with an Average Customer rating \nname : Strada | Type : pub | food : Italian | customer rating : 1 out of 5 | near : Yippee Noodle Bar||Strada is a pub that serves Italian food and has a 1 out of 5 customer rating . It is located near Yippee Noodle Bar . \nname : Strada | Type : pub | food : Italian | customer rating : high | near : Yippee Noodle Bar||Strada , which is an Italian food pub , is found near Yippee Noodle Bar . It has a high customer rating . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a non kids - friendly , English restaurant in the riverside area . It is rated 1 out of 5 by customers and the price range is moderate . \nname : The Waterman | Type : pub | food : Japanese | customer rating : 5 out of 5 | area : city centre||The Waterman sells Japanese food . It is a pub located in the city centre with a customer rating of 5 out of 5 . \nname : Blue Spice | food : Chinese | price : cheap | area : riverside||Chinese restaurant , The Blue Spice is cheap and on the riverside . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : less than £ 20||The Dumpling Tree Chinese restaurant price range is less than 20 . \nname : Aromi | Type : pub | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly , riverside pub that customers have scored 3 out of 5 . \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is an expensive Chinese restaurant in the city centre with a rating of 1 out of 5 . The Waterman is not child friendly . \nname : The Waterman | Type : pub | food : English | customer rating : average | area : city centre||Pub eatery The Waterman ; located in city centre serving English food . customer rating : average . \nname : The Wrestlers | Type : coffee shop | food : Italian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate price range Italian food Café is located in riverside near Raja Indian Cuisine . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||On the riverside near Burger King is The Eagle . A coffee shop that serves fast food within a moderate price range . It is kid friendly and has a customer rating of 3 out of 5 . \nname : The Twenty Two | food : Italian | family friendly : yes||The Twenty Two a family friendly Italian restaurant . \nname : Loch Fyne | Type : restaurant | food : Japanese | price : cheap | family friendly : yes||An inexpensive and family friendly Japanese restaurant is Loch Fyne . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||The Waterman offers a higher - priced menu of English food in a child - friendly riverside setting . It was rated average by customers . \nname : The Mill | Type : coffee shop | food : Italian | price : £ 20 - 25 | area : riverside | near : The Sorrento||Drop by The Mill for some authentic , affordable Italian cuisine , in a laid back coffee shop atmosphere . Located on the riverside with beautiful views , near The Sorrento , get a meal for only 20 - 25 dollars . \nname : The Golden Palace | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop offering Japanese food in the city centre . The price range is moderate and customer rating is 1 out of 5 \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Sat on the riverside near Café Rouge , The Golden Curry with a customer rating of 5 out of 5 , serves French cuisine . Please note , not considered family - friendly . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a one star coffee shop located near The Portland Arms . \nname : The Rice Boat | food : Japanese | area : riverside||The Rice Boat serves Japanese food along the riverside \nname : The Olive Grove | Type : pub | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub located in city centre . \nname : The Phoenix | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is an English restaurant offering high price range food . It is in the area of Riverside and is rated 1 out of 5 . \nname : The Waterman | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Waterman is a low rated , expensive Italian restaurant that is kid friendly near the riverside . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||For cheap Japanese food in the town centre , The Eagle is a coffee shop close to Burger King but not family friendly . It is cheap and has 1 out of 5 stars . \nname : Blue Spice | Type : coffee shop | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Avalon||Near Avalon , in the riverside area , there is a coffee shop named Blue Spice , that gets high customer ratings , has an average cost of 20 - 25 pounds and is geared towards adults . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is located near Burger King in city centre and has a moderate price range . \nname : Taste of Cambridge | Type : restaurant | price : moderate | customer rating : 1 out of 5||restaurant called Taste of Cambridge has a low customer rating and moderate prices . \nname : The Phoenix | food : English | customer rating : average | area : city centre||There is an average English restaurant The Phoenix in the middle of the city . \nname : Clowns | Type : pub | price : high | customer rating : average | area : riverside||Clowns is a pub with an average customer rating on the riverside , however the price range is high . \nname : The Punter | food : Indian | price : high||The Punter is an Indian restaurant that has a high price range . \nname : Alimentum | food : French | price : moderate | customer rating : 1 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a French restaurant near Yippee Noodle Bar in the city centre with a moderate price range and customer rating of 1 out of 5 . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : riverside | family friendly : yes||The Olive Grove is a pub at riverside serving Chinese food and is moderately priced . It is also kid friendly . \nname : The Rice Boat | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||There is a cheap French food restaurant in the city centre , near Express by Holiday Inn . Its name is The Rice Boat . It is family - friendly and its rating is average . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's a coffee shop named The Wrestlers by Raja Indian Cuisine . It 's a dine in at a high price . \nname : The Plough | Type : pub | food : Indian | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is an Indian pub with a price range of £ 20 - 25 . It is kids friendly and near Café Rouge . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||In riverside , near Café Rouge , there is a children friendly fast food restaurant called The Golden Curry with a rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||A coffee shop serving Italian food that is child friendly is The Eagle . Located near Burger King in the city centre , customers have rated it 1 out of 5 and the price range is high . \nname : Fitzbillies | food : Fast food | price : more than £ 30 | near : The Six Bells||Fitzbillies is a high price range fast food place near The Six Bells . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a fast food coffee shop with a low customer rating . It is not family - friendly and is located near The Portland Arms . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a coffee shop located in the city centre near Raja Indian Cuisine . The Wrestlers has a moderate price range and is kid friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes||Aromi is an Italian coffee shop located near the riverside with an average rating and is kid friendly . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Waterman , located in the riverside area , serves Italian food at a moderate price . Customer 's rate the restaurant with 3 out of 5 stars . This is not a kid - friendly location . \nname : Alimentum | food : Italian | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||There is a Italian restaurant Alimentum with high prices located in city centre near Yippee Noodle Bar . \nname : Blue Spice | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||With a customer rating of 3 out of 5 , Blue Spice is a kid friendly , riverside restaurant with a price range of 20 - 25 . \nname : The Waterman | food : English | price : high | customer rating : average | area : riverside | family friendly : no||The Waterman serves English food in the higher price range and is located in the riverside area , it has been given an average customer rating . \nname : Blue Spice | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a high price range restaurant Blue Spice that is family friendly and has a 1 out of 5 customer rating . It is by the riverside . \nname : The Punter | food : French | price : moderate||The Punter is an average priced restaurant that serves wine and cheese . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 1 out of 5 | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is 1 out of 5 . \nname : The Rice Boat | food : English | customer rating : average | area : riverside | family friendly : yes||There is a three star location near the river that serves British food . It is called The Rice Boat . \nname : Loch Fyne | Type : restaurant | food : Japanese | family friendly : yes||Loch Fyne is an authentic Japanese restaurant that is very kid friendly . \nname : Cocum | Type : coffee shop | food : Indian | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop providing Indian food in a high price range . The customer rating is average and it is not children friendly . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||The Olive Grove , located in the riverside area , is a restaurant welcome to children . \nname : Giraffe | Type : restaurant | price : less than £ 20 | near : The Six Bells||Giraffe restaurant near The Six Bells costs less than £ 20 . \nname : The Golden Palace | Type : pub | price : less than £ 20 | area : riverside | near : Rainbow Vegetarian Café||The Golden Palace is a eating place . The price range is less than 20. its available near Rainbow Vegetarian Café , riverside . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is not family - friendly with a low rating . Their price range is less than £ 20 . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||The Fitzbillies , which is near The Six Bells , offers fast food for less than £ 20 \nname : The Olive Grove | Type : pub | food : Japanese | price : less than £ 20 | area : riverside | family friendly : yes||There is pub providing Japanese food near the riverside that is family friendly and costs less than 20 pounds named The Olive Grove . \nname : Browns Cambridge | food : Indian | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is family friendly and serves Indian food in the riverside area , near The Sorrento . \nname : Strada | price : high | customer rating : average | family friendly : yes||Strada is a Children friendly venue , with a high price range and average customer rating . \nname : Green Man | price : less than £ 20 | area : city centre | family friendly : yes||Green Man is in the city centre . It is family - friendly and prices are less than £ 20 . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a child friendly 1 star pub . It is located near the Ranch . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : no||The Rice Boat is an average rated Italian restaurant in the riverside area . It is not family - friendly . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||The Phoenix is an expensive place to eat fast food , but is not rated well by customers . It is situated by the riverside . \nname : The Golden Curry | food : Fast food | price : moderate | family friendly : yes | near : The Bakers||Near The Bakers there is a moderately priced , kid friendly fast food restaurant The Golden Curry . \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The Dumpling Tree is a high end restaurant serving gourmet food . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is located on riverside and they serve French food and there price rating is £ 20 - 25 . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||A Chinese restaurant with a 1 out of 5 customer rating is located on a riverside near Express by Holiday Inn . It is named The Rice Boat and is not children friendly . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : All Bar One||Green Man sells Chinese food for less than 20 in the city centre that is family friendly , it is located near All Bar One . \nname : The Golden Curry | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||With a 1 out of 5 customer rating , The Golden Curry fast food is kid friendly . \nname : The Phoenix | food : Italian | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a low - priced , poorly reviewed Italian restaurant on the river . \nname : The Golden Curry | food : Fast food | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||There is a low rated fast food restaurant in City centre . It is not family friendly , but it is called The Golden Curry and it is near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop has an average customer rating and serves Japanese food near the Burger King and the city center . It is less than 20 pounds and family - friendly . \nname : The Phoenix | food : Indian | customer rating : high | area : riverside||The Phoenix provides Indian food It is located in the riverside . Its customer rating is high . \nname : Loch Fyne | food : Italian | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||In the riverside area near The Rice Boat is a place called Loch Fyne . It serves Italian food and has a customer rating of 3 out of 5 . \nname : Browns Cambridge | food : French | price : £ 20 - 25 | customer rating : high||Browns Cambridge serves highly rated French food , with prices ranging from £ 20 to £ 25 . \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : moderate||The Dumpling Tree is a moderately priced restaurant serving Indian food . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an English restaurant with cheap food and a 5 out of 5 rating . It is located in the city centre near Express by Holiday Inn . It is not family - friendly . \nname : Strada | food : French | price : less than £ 20 | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada is an average French restaurant near Rainbow Vegetarian Café . It is not family - friendly and costs less than 20 pounds . \nname : Loch Fyne | food : French | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Somewhere with a customer rating of 3 out of 5 is Loch Fyne . They do French food , and are near The Rice Boat on the riverside . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : yes||The Wrestlers is a family Friendly French restaurant with an average rating which will cost less than £ 20 \nname : Fitzbillies | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies , located in the city centre is an Italian coffee shop . They are not child friendly and their price range is high . Their customer rating is 1 out of 5 . \nname : The Golden Curry | food : English | customer rating : high | family friendly : yes||A children friendly venue that serves English food and gets a high customer rating is The Golden Curry . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle , located north of the city center . near Burger King , is a moderately priced coffee shop . \nname : Cotto | food : French | near : Café Rouge||Cotto is a French food place near Café Rouge \nname : The Plough | Type : pub | food : Italian | price : high | family friendly : yes | near : Café Rouge||The Plough is a children friendly high priced Italian pub near Café Rouge . \nname : The Rice Boat | food : Italian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||High priced Italian food , The Rice Boat has a high price tag and is not child friendly . It is located in the center of the city , near the Express by Holiday Inn , with a customer rating 1 out of 5 . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum located in the city centre near Yippee Noodle Bar provides French food with a price range of more than £ 30 . It low customer rating . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a coffee shop near Burger King in the riverside . Its name is The Eagle . It provides Japanese food . The price range and its rating is average but it isn 't family - friendly . \nname : The Waterman | Type : pub | food : French | customer rating : 1 out of 5 | area : riverside||The Waterman has a customer rating of 1 out 5 . It is a pub that serves French food in riverside . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in the Riverside area near Crown Plaza Hotel is Browns Cambridge , a kids friendly Japanese coffee shop . It is rated 1 out of 5 stars . \nname : Midsummer House | food : French | customer rating : low | near : Café Rouge||One star rated Midsummer House located at Café Rouge offers whole meal deals to love . \nname : Fitzbillies | food : French | price : less than £ 20 | near : The Six Bells||Fitzbillies is a restaurant that serves low - cost , British style food and alcohol . It is located near The Six Bells . \nname : Loch Fyne | food : Japanese | customer rating : 3 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is located on the riverside , near The Rice Boat . The food is Japanese and customers rate it 3 out of 5 . \nname : The Olive Grove | Type : pub | food : French | price : less than £ 20 | area : riverside | family friendly : yes||With a price range less than £ 20 , The Olive Grove is a family friendly pub located in the riverside area that serves French food . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : less than £ 20||The Dumpling Tree Japanese restaurant serves low - priced food . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is a high priced child friendly establishment near Café Sicilian . \nname : Green Man | food : Japanese | price : more than £ 30 | area : city centre | family friendly : yes | near : All Bar One||Green Man is a children friendly Japanese restaurant that is located near All Bar One in the city centre . Its prices range more than L30 . \nname : The Waterman | food : English | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly English restaurant near the Crowne Plaza Hotel . \nname : The Twenty Two | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : The Rice Boat||Near The Rice Boat by the riverside is The Twenty Two . It 's kids friendly , has a high customer rating and a price range of £ 20- £ 25 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a high priced , kid friendly coffee shop in the Riverside area near Avalon . Customers rate it 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Japanese | price : moderate | customer rating : 1 out of 5 | near : Ranch||The moderately priced Japanese coffee shop , Wildwood is located near Ranch and has a very low customer rating \nname : The Rice Boat | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat has a customer rating 5 out of 5 . Serves Japanese food . They are not family - friendly . There price range is cheap . They are located in the area of riverside near Express by Holiday Inn . \nname : The Rice Boat | food : Italian | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Receiving a 5 out of 5 customer rating , The Rice Boat offers a family friendly Italian menu . It is in the riverside area . \nname : The Eagle | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||If you don 't mind leaving the kids at home , The Eagle is an expensive Japanese coffee shop is one food option . Located near Burger King in riverside , The Eagle has a 5 out of 5 rating . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||There is a restaurant The Rice Boat located in the city centre that provides English foods in price range of £ 20 - 25 . It is located near the Express by Holiday Inn and having high customer rating but not kids friendly . \nname : The Rice Boat | price : less than £ 20 | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is an average restaurant near Rainbow Vegetarian Café that offers meals for less than £ 20 . \nname : Cotto | food : French | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Come eat French food near Ranch Cotto . It is children friendly with a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Chinese | price : less than £ 20 | family friendly : no | near : The Bakers||The Golden Curry provides Chinese food in the less than £ 20 price range . It is near The Bakers . \nname : Clowns | price : high | family friendly : yes | near : Café Sicilia||Clowns is a kid friendly establishment near Café Sicilia . Clowns is a high price establishment . \nname : The Twenty Two | food : English | family friendly : yes||The Twenty Two is a kid - friendly , English restaurant . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||Near The Portland Arms in riverside is a kid friendly restaurant called The Punter , with a moderate price range . \nname : The Vaults | food : Japanese | price : cheap | family friendly : yes||cheap , family friendly Japanese restaurant called The Vaults \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum serves Japanese food at a price range of less than £ 20 . It is located by the riverside near the Yippee Noodle Bar and has an average customer rating . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : yes | near : The Sorrento||Browns Cambridge is good for Japanese food and also children friendly near The Sorrento . \nname : The Cambridge Blue | Type : pub | food : English | price : high | near : Café Brazil||The Cambridge Blue is a high priced pub that serves English food and is near Café Brazil \nname : Wildwood | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | near : Ranch||A moderately priced coffee shop located near Ranch is Wildwood . \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||The Waterman has riverside views , and serves Italian food . Low rated but cheap for an adult night out . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : riverside | family friendly : yes | near : Café Sicilia||In the Riverside area near Café Sicilia you can visit The Dumpling Tree coffee shop for less than 20 and a family friendly environment . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||There is a Japanese , children friendly pub on the riverside . It is called the Giraffe . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies , a coffee shop is located on the river in City centre and is family friendly , three star rated , and decently priced . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies coffee shop has moderately priced Italian food that is kid friendly located near the center of the city and has a customer rating of 1 out of 5 . \nname : Giraffe | Type : pub | food : Japanese | area : riverside | family friendly : yes||Children are allowed to eat at Giraffe , which is a pub that serves Japanese food on the riverside . \nname : Loch Fyne | food : English | customer rating : 5 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne offers English food in the vicinity of The Rice Boat . Consumer ratings high \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||There is a place called The Wrestlers that has fast food and a moderate price and is kid friendly with a high customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle , the low - price coffee shop located along the river , is City Centre 's three star shop near Burger King . \nname : Alimentum | food : Fast food | price : moderate | area : city centre | family friendly : yes||Alimentum is a Fast food restaurant located in the city centre . It has a moderate price - range . Kids say yes to Alimentum . \nname : Loch Fyne | food : English | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is an English restaurant in Riverside that is near The Rice Boat and has a 1 out of 5 customer rating \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : average||Located in the City center , The Cambridge Blue restaurant is your average fast food place . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop , serving Indian cuisine , prices from £ 30 , riverside area , child friendly , excellent customer satisfaction \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in riverside near Burger King . It 's rated 5 out of 5 for it 's cheap prices . Also has Japanese food and no to family - friendly . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Blue Spice coffee shop . , serves low priced fare . Children welcome . Near Avalon . \nname : Cocum | Type : restaurant | customer rating : 1 out of 5 | family friendly : yes||A kids friendly restaurant known as The Cocum has a customer rating of 1 out of 5 . \nname : The Rice Boat | food : Japanese | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a child friendly Japanese restaurant with a high price range that is located in the city near Express by Holiday Inn \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Japanese food at The Wrestlers coffee shop features a price range of more than £ 30 . Located in the riverside area near Raja Indian Cuisine . We are not children friendly . \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge offers cheap products and has received a customer rating of 5 out of 5 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant located near the Express by Holiday Inn in city centre . It is moderately priced , kid friendly and has a customer rating of 3 out of 5 . \nname : The Waterman | Type : pub | food : Italian | customer rating : 5 out of 5 | area : riverside||The Waterman pub at the riverside has a customer rating of 5 out of 5 and serves Italian food \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry , located near Café Rouge , is a river - side family restaurant . \nname : Midsummer House | food : Fast food | price : high | customer rating : average | near : All Bar One||Near All Bar One , you will find an average rated , higher priced fast food restaurant named Midsummer House . \nname : Browns Cambridge | food : Italian | area : city centre | family friendly : yes | near : The Sorrento||Browns Cambridge offer Italian food in the city centre near The Sorrento . The place is family - friendly . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | near : Clare Hall||Clowns is located near Clare Hall on the riverside . It 's a poorly rated coffee shop that sells Japanese food . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : less than £ 20||For less than £ 20 , you can get Chinese food at the restaurant The Dumpling Tree . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a low price coffee shop near Burger King that serving Japanese food with a customer rating of 5 out of 5 but not family - friendly \nname : Fitzbillies | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that serves Indian food with a high price range . It is situated in the riverside and children friendly . It has a customer rating of 1 out of 5 . \nname : Green Man | food : Fast food | price : moderate | area : riverside | family friendly : yes | near : All Bar One||There 's a fast food joint near All Bar One in riverside . The price is moderate and it 's kids friendly , it 's name is The Green Man . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : yes||The children friendly The Wrestlers serves Fast food . The food costs more than £ 30 and received a high customer review . \nname : The Waterman | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||The Waterman serves fast food , is family friendly . It prices are low and it has a low star rating . It is based in the riverside area . \nname : Midsummer House | food : Indian | price : moderate | customer rating : 3 out of 5 | near : All Bar One||Midsummer House is a restaurant , situated by All Bar One , providing Indian food at a moderate price , with a customer service rating 3 out of 5 . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an English food restaurant . It can be found near the Express by Holiday Inn . \nname : Zizzi | Type : pub | food : English | customer rating : 1 out of 5 | family friendly : yes||There is a family friendly pub named Zizzi serving English food . The customer rating is poor . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located in the riverside area , Aromi is a fast food coffee shop that is child friendly with a customer rating of 1 out of 5 . \nname : Strada | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves cheap Japanese food in the city centre and can be found near Rainbow Vegetarian Café . It has a low customer rating and families are welcome to eat there . \nname : The Plough | Type : pub | food : French | price : more than £ 30 | family friendly : no | near : Café Rouge||The Plough French pub near Café Rouge will cost more than 30 but it 's not kid friendly . \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : high | family friendly : yes | near : The Portland Arms||This coffee shop named The Cricketers serves Indian food and is located by The Portland Arms . This venue is considered child friendly and has a high customer rating . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : no | near : Café Rouge||Near Café Rouge , The Plough pub serves Japanese food for around £ 20 and is family - friendly \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a children Friendly pub , with 3 out of 5 customer rating it 's near Ranch . \nname : Bibimbap House | food : Fast food | price : high | area : riverside | near : Clare Hall||In the riverside near to Clare Hall is located a Fast Food restaurant with a high price range called Bibimbap House . \nname : The Waterman | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a family - friendly establishment where you can buy spaghetti . Maybe you can even enjoy it with a nice glass of wine next to the river . With reasonable ratings and moderate prices , it 's an ideal place to feed your children . \nname : Loch Fyne | food : French | customer rating : high | area : riverside | near : The Rice Boat||For best French food just visit Loch Fyne very near to The Rice Boat . area riverside \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers offers a family - friendly , oriental dining experience in the moderate to high price range . This 5 - star rated sushi bar provides excellent service . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||For Fast food The Eagle coffee shop located in the city centre , near Burger King and has food under £ 20 price range . It has a low customer rating and is family - friendly \nname : Midsummer House | food : Fast food | price : moderate | customer rating : 3 out of 5 | near : All Bar One||There is a fast food restaurant called Midsummer House . It is a moderately priced establishment , that is located next to All Bar One . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly Japanese restaurant with a price range of less than £ 20 , it i near Express by Holiday Inn in the Riverside area and has a low customer rating . \nname : The Plough | Type : restaurant | price : £ 20 - 25 | family friendly : yes | near : The Bakers||A family restaurant named The Plough is located near The Bakers with a price range of £ 20- £ 25 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Avalon||In the riverside area near Avalon , there is a high priced coffee shop called Blue Spice . The establishment has a middle rating and is not child friendly . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 1 out of 5 | area : riverside||The Waterman offers pub style convenient food in Riverside . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman is not a child friendly Chinese restaurant . It is high priced and in the Riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||On the riverside close to the Crowne Plaza Hotel , you 'll find the coffee shop Browns Cambridge , family friendly and rated 5 out of 5 by customers , \nname : Zizzi | Type : restaurant | price : cheap | area : riverside||Zizzi is a cheap restaurant in the riverside area \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : yes | near : Café Rouge||There is a pub near Café Rouge called The Plough . It serves cheap Chinese food and is family friendly . \nname : Loch Fyne | Type : restaurant | food : Indian | price : high | family friendly : no||There is a non children friendly high - priced Indian restaurant called Loch Fyne . \nname : Cocum | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum coffee Shop offers French food at a moderate price range . They have a customer rating of 1 out of 5 and not kid friendly . \nname : The Mill | Type : pub | food : Italian | price : less than £ 20 | area : riverside||There is an Italian Pub The Mill located in Riverside with a price range less than £ 20 \nname : The Waterman | food : Fast food | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Waterman is a high priced fast food restaurant in the city centre . It has a customer rating of 1 out of 5 , and is not children friendly . \nname : Blue Spice | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : no||The Blue Spice is a adult only high end restaurant near the riverside offering customers a great place to eat \nname : The Waterman | Type : pub | food : Italian | customer rating : 1 out of 5 | area : riverside||Although it has a customer rating of only 1 out of 5 , The Waterman pub is located in the riverside area and offers Italian food . \nname : Alimentum | food : English | price : less than £ 20 | area : city centre | family friendly : yes||Alimentum is a family - friendly English restaurant with a price range of less than £ 20 . It is located in the city centre . \nname : Loch Fyne | Type : restaurant | food : Italian | family friendly : no||There is a non family friendly restaurant called Loch Fyne . \nname : The Twenty Two | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : The Rice Boat||The Twenty Two is a high - priced restaurant very close of The Rice Boat \nname : The Punter | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is an adult friendly Italian coffee Shop with a high price range is near Café Sicilia . This restaurant has an average customer rating . \nname : The Rice Boat | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||By Express by Holiday Inn there is an English restaurant named The Rice Boat offering food at cheap prices rated at 5 . \nname : Alimentum | food : Chinese | price : high | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum in Chinese restaurant in riverside near the Yippee Noodle Bar . The prices are high and customer ratings are average . \nname : The Plough | Type : pub | food : Fast food | price : high | family friendly : yes | near : Café Rouge||The Plough is a family restaurant located near Café Rouge \nname : The Vaults | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Café Brazil||The Vaults , a moderately priced coffee shop , is in the riverside area close to Café Brazil . It has a three out of five customer rating . \nname : The Eagle | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle offers an affordable five star dining experience for families . It is a French restaurant and coffee shop outside of the City Centre , near Burger King . \nname : Giraffe | Type : restaurant | price : cheap | near : The Six Bells||Giraffe is a restaurant which is cheap near The Six Bells . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||Alimentum serves Chinese food and has an average price range . It allows children and is near the riverside . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that also sells Fast food that sells for a price range of £ 20 - 25 and is located near Ranch . This has a customer rating of high . \nname : Browns Cambridge | food : English | price : £ 20 - 25 | customer rating : high||Browns Cambridge has a high customer rating , they offer English food in the £ 20 - 25 price range . \nname : Alimentum | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||A cheap Chinese restaurant located in the city center is Alimentum , with a rating of 5 out of 5 by the customers , located near by is a Yippee Noodle Bar . \nname : The Twenty Two | food : Indian | area : city centre | family friendly : yes||The Twenty Two provides Indian food It is located in the city centre . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman provides Chinese food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : The Waterman | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Along the riverside , there is a low - priced , family friendly , five - star Italian restaurant called The Waterman . \nname : Browns Cambridge | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||With a high customer rating of 5 out of 5 , Browns Cambridge is a Fast food serving coffee shop located in the city centre by Crowne Plaza Hotel . It is not family - friendly . \nname : Blue Spice | food : English | price : high | area : riverside||Offering English food by the riverside is Blue Spice , but be aware its price range is high . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||Located in Riverside near All Bar One , Green Man is a family friendly fast food restaurant that averages less than £ 20 per visit . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : low||English food restaurant The Cambridge Blue has a low customer rating . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||A cheap family - friendly coffee shop called Zizzi in the city centre has a customer rating of 5 out of 5 . \nname : Green Man | food : Italian | price : moderate | area : city centre | family friendly : yes | near : All Bar One||The Green Man is a family - friendly Italian Place in the city centre that is near All Bar One with a moderate pricing . \nname : Cocum | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum coffee shop serves fast food and may or may not fit your budget . \nname : The Rice Boat | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is child friendly fast food restaurant that costs more than £ 30 near Express by Holiday Inn on the riverside \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace has average priced items and is highly rated . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : city centre | family friendly : no | near : Avalon||Blue Spice , in the city centre , near Avalon , is a coffee shop with a price range within more than £ 30 . It has a low customer rating and is no for children . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an inexpensive coffee shop located near the City centre . \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : no | near : Café Rouge||The Plough is a French pub , which is not kid friendly . The price range is moderate and is located near Café Rouge . \nname : Zizzi | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a coffee shop called Zizzi with a moderate price range in the riverside area . It is family friendly and has a customer rating of 1 out of 5 . \nname : The Golden Curry | food : Japanese | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is a Japanese restaurant located in city centre near Café Rouge . Rated 1 out of 5 stars . Family Unfriendly . \nname : The Golden Curry | food : French | customer rating : 5 out of 5 | family friendly : yes||The Golden Curry is a 5 star dining experience that is good for the whole family . \nname : The Waterman | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman offers a wide variety of great tasting food with its five star rating . Its a great get - a - way for the family . \nname : Giraffe | Type : coffee shop | price : £ 20 - 25 | customer rating : high | family friendly : no | near : The Bakers||The Bakers is a non kids friendly coffee shop near Giraffe . They have prices ranging from £ 20 - 25 and a high customer rating . \nname : The Phoenix | food : Japanese | customer rating : low | area : riverside||For a 1 star rated riverside restaurant that serves Japanese food then go visit The Phoenix \nname : The Phoenix | food : Italian | price : moderate | customer rating : 3 out of 5 | area : city centre||Located in the city centre go to The Phoenix , a family - friendly and well costed Italian restaurant that caters to your every need . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||An highly rated Indian restaurant is located in the city centre , called The Waterman , adult only and more than 30 . \nname : Cotto | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop offering French food located in the city centre near The Portland Arms . It is highly priced with customers rating it a 3 . \nname : Aromi | Type : coffee shop | food : Fast food | customer rating : average | area : riverside | family friendly : yes||Aromi is a three - star , family friendly coffee shop near the city centre . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : low | area : riverside||There is a pub named the Clowns which is located on the riverside . This pun has a higher than 30 euro price range and a low customer rating , \nname : The Waterman | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman is a Chinese restaurant in riverside is not child friendly , has a customer rating of 1 out of 5 and is high priced . \nname : The Golden Curry | food : Italian | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Rouge||In the city centre near Café Rouge is the Italian restaurant The Golden Curry . Their customer rating is 5 out of 5 and it is family - friendly . \nname : The Mill | Type : pub | food : Fast food | price : high | area : city centre||The Mill is a highly rated , fast food pub in the city centre . \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : yes||The pub named Giraffe has Chinese food . It is kid friendly and in Riverside . \nname : The Cricketers | Type : pub | customer rating : 1 out of 5 | family friendly : yes | near : Ranch||The Cricketers is a family pub near the Ranch with a rating 1 out of 5 \nname : Midsummer House | food : Italian | customer rating : 3 out of 5 | near : Café Rouge||Italian Midsummer House customer rating 3 out of 5 same Café Rouge \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : no||A pub which offers fast food is called Giraffe which can be found in the city centre . It is not family - friendly . \nname : Midsummer House | food : Japanese | price : less than £ 20 | customer rating : average | near : All Bar One||With an average customer rating , Midsummer House , located near All Bar One , serves Japanese food priced for less than £ 20 . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Rainbow Vegetarian Café called Strada had Italian food that was ranged 20 - 25 . The kids were not friendly and rated it high \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||The Strada is an adults only restaurant specializing in Italian food . This low - cost option is located next to the Rainbow Vegetarian Café . This restaurant receives 1 out of 5 stars from customers . \nname : The Punter | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | family friendly : no | near : Café Sicilia||There is a French coffee shop with a price range of 30 , is not kid friendly , and has a low customer rating . It is called The Punter and it is near Café Sicilia \nname : The Golden Curry | food : Indian | customer rating : low | area : city centre | family friendly : yes | near : Café Rouge||For family friendly Indian food , try The Golden Curry . They are in the city center near Café Rouge , but they have a low satisfaction rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||Low priced coffee shop selling fast food , located near Burger King in the city centre . The Eagle is not family - friendly and has a low customer rating . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||There is a French restaurant in riverside called The Rice Boat that is child friendly with a low rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 5 out of 5 | area : city centre||The Waterman is a 5 out of 5 rated pub that serves Chinese food and is located at the city centre . \nname : The Eagle | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a highly rated Japanese coffee shop located in the city centre near Burger King . It has a price range between £ 20 - 25 and is child friendly . \nname : Strada | Type : pub | food : French | customer rating : average | near : Yippee Noodle Bar||French food can be found at a pub named Strada . It is near Yippee Noodle Bar and customers rate it as average . \nname : The Cricketers | Type : restaurant | food : French | near : All Bar One||The restaurant called The Cricketers which is near All Bar One serves French food . \nname : The Phoenix | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside||An expensive restaurant , The Phoenix , is located outside city centre that serves cheese cracker with wine in . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : yes||Aromi is a Japanese coffee shop found in the riverside area . It has an average customer rating and is a family friendly venue . \nname : Alimentum | food : English | price : high | customer rating : average | area : city centre | near : Yippee Noodle Bar||Alimentum offers English food in the high price range with an average customer rating located near Yippee Noodle Bar in the city centre . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Customers love Alimentum Chinese food with a meal costing around £ 20 - 25 the restaurant is located in the city centre near Yippee Noodle Bar \nname : Loch Fyne | Type : restaurant | food : English | price : £ 20 - 25 | family friendly : yes||An English restaurant named Loch Fyne , is kid friendly and has a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre area that serves Japanese food with a price range of £ 20 - 25 ; it is not kids friendly and has a high customer rating . \nname : The Waterman | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Waterman is a children friendly French restaurant by the riverside . It serves expensive food . It has been given an average rating of 3 out of 5 . \nname : The Eagle | price : cheap | customer rating : 5 out of 5 | area : riverside||The Eagle in Riverside is cheap , and has a 5 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a Indian coffee shop that is not for the whole family . It has low prices , but high customer ratings . It is located in the city center near Burger King . \nname : Strada | food : Italian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||The Italian restaurant , Strada near the Rainbow Vegetarian Café is not child friendly , has an average rating and has a high price range . \nname : Wildwood | Type : pub | food : Indian | price : high | customer rating : 1 out of 5||An Indian pub called Wildwood has a high price range with a customer rating of 1 out of 5 . \nname : The Vaults | food : Indian | price : more than £ 30 | family friendly : yes||The Vaults serve Indian food . The rage is more than £ 30 and they are children friendly . \nname : Strada | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Chinese restaurant , Strada , is located near Rainbow Vegetarian Café . The children friendly restaurant tends to have a high price range , resulting in low customer ratings . \nname : Green Man | price : cheap | area : riverside | family friendly : yes||A family friendly , cheap place , located in the riverside area is Green Man . \nname : Alimentum | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes||For affordable Chinese food in a family - friendly environment , try Alimentum in the Riverside area . \nname : Fitzbillies | food : Japanese | price : less than £ 20 | near : The Six Bells||Located in the city centre near The Six Bells , Fitzbillies is a low priced Japanese restaurant . \nname : Giraffe | Type : restaurant | price : high | near : The Six Bells||Giraffe is a high priced restaurant near The Six Bells \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a pub that is not recommended for the whole family . With inexpensive prices , the pub can be found north of the city center . with a view of the river . \nname : Green Man | price : moderate | area : riverside | family friendly : no||In the riverside area there is a moderately priced , non kids - friendly place called the Green Man . \nname : Cocum | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no||Cocum is a French coffee shop . The prices range more than £ 30 , isn 't children friendly but does have a customer rating of 5 out of 5 . \nname : Strada | food : French | price : high | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada , near the Rainbow Vegetarian Café serves French food within a high price range , with a customer rating of 3 out of 5 . It 's a no for children . \nname : The Rice Boat | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a kid - friendly French food place located near the Express by Holiday Inn in the city centre . Its prices range from 20 to 25 euros and it is highly rated . \nname : Loch Fyne | Type : restaurant | food : Chinese | price : cheap | family friendly : yes||Loch Fyne is a cheap family - friendly Chinese restaurant . \nname : The Golden Curry | food : French | price : less than £ 20 | family friendly : no | near : The Bakers||There is an Asian restaurant near The Bakers , called The Golden Curry that you may not want to bring the whole family to . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||Come with your children to The Golden Curry to eat the best burger at an average price \nname : The Cambridge Blue | Type : restaurant | food : Fast food | customer rating : 3 out of 5||The Cambridge Blue is a fast food restaurant with a customer rating of 3 out of 5 . \nname : Strada | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada serves English food with moderate price , kids friendly and has customer rating 5 out of 5 . It is located near Rainbow Vegetarian Café . \nname : Clowns | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | near : Clare Hall||Clowns , a Japanese coffee shop is near Clare Hall in the city centre , and has average customer ratings . \nname : The Eagle | food : Italian | customer rating : average||The Eagle has average Italian food . \nname : Fitzbillies | food : Italian | price : less than £ 20 | near : The Six Bells||an Italian costing less than £ 20 is Fitzbillies near The Six Bells \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||There is a Chinese restaurant , called The Twenty Two , which is riverside and family friendly . \nname : Cotto | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto has an average customer rating and sells Italian food near The Portland Arms . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||A kids friendly restaurant that is moderately priced is called Travellers Rest Beefeater . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies , in city centre , is a kid friendly coffee shop serving French food . It has average prices and a high customer rating . \nname : The Mill | Type : coffee shop | food : Italian | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop located by the riverside close to The Sorrento with a high price range and provide Italian . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a French coffee shop and kid friendly , is located near Crowne Plaza Hotel , in the riverside area . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Express by Holiday Inn||Located near Express by Holiday Inn in riverside is The Rice Boat . A low priced restaurant serving Indian food . \nname : Zizzi | Type : pub | food : Japanese | customer rating : 5 out of 5 | family friendly : yes||Zizzi serving Japanese Food at its pub in a child friendly manner and with a 5 out of 5 customer rating . \nname : Blue Spice | food : Chinese | price : moderate | area : city centre||Blue Spice is a moderate priced Chinese food place located in the city centre . \nname : The Golden Palace | Type : restaurant | price : £ 20 - 25||The Golden Palace - the averaged priced meal , with a great restaurant experience . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Indian cuisine with a moderate price range . Kid friendly near Raja Indian Cuisine in the city centre area . \nname : Clowns | Type : pub | price : less than £ 20 | customer rating : low | area : riverside||Clowns is a low rated pub with price range less than £ 20 . It is located in the riverside . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Try Browns Cambridge for a low rating , costly meal of Sushi \nname : The Cambridge Blue | Type : pub | food : Fast food | price : more than £ 30 | near : Café Brazil||The Cambridge Blue is a Fast food pub near the Café Brazil that ranges in price more than £ 30 . \nname : Browns Cambridge | Type : coffee shop | food : Indian | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop in the city centre . It is located near Crowne Plaza Hotel and serves Indian food . It has an average rating from customers . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a coffee shop called Fitzbillies that is child friendly and serves 3 star food at a mid - range price . \nname : Strada | food : Italian | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a high priced restaurant near Rainbow Vegetarian Café . It is kid friendly and has a 1 out of 5 customer rating . \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no||Close to The Bakers , try The Wrestlers in Cambridge for sushi and other oriental - style food . It isn 't recommended for families . \nname : The Olive Grove | Type : pub | food : Fast food | price : high | area : riverside | family friendly : yes||The Olive Grove is a high priced pub . Located near the River . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly coffee shop that offers Indian food with a low customer rating and low price range . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : average | area : riverside | family friendly : yes||In riverside area you can find the family friendly Zizzi coffee shop . Cheap prices and average customer rating . \nname : Cotto | food : Japanese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly Japanese restaurant with a low customer rating located near a Ranch . \nname : Strada | Type : pub | food : English | customer rating : 3 out of 5 | near : Yippee Noodle Bar||Strada is a English pub located near Yippee Noodle Bar . 3 out of 5 stars \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a low - priced coffee shop that caters to families , and is located near Café Sicilia . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||There is a French , average rated restaurant named Loch Fyne which is located at the riverside near The Rice Boat , \nname : The Wrestlers | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a family friendly place that serves Japanese food for less than 20 pounds but has a low customer rating . \nname : Zizzi | Type : pub | food : French | customer rating : average | family friendly : yes||Zizzi is a conveniently located pub with a creating dining experience and fine wine . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an good French coffee shop offering a low price range menu and is not family - friendly . \nname : The Eagle | price : £ 20 - 25 | customer rating : high | area : city centre||In the moderate price range , The Eagle is a popular destination in City Centre . \nname : The Phoenix | food : French | price : less than £ 20 | customer rating : average | area : riverside||The Phoenix is located by the margin of the river and provides a variety of wines and cheese for a low cost . \nname : The Vaults | food : Italian | price : high | family friendly : yes||Bring your children to The Vaults , a high priced Italian restaurant . \nname : Cotto | Type : coffee shop | food : Fast food | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms in the riverside area . It is a place for moderately priced fast food and was given a 3 out of 5 rating by customers . \nname : Browns Cambridge | food : Japanese | price : high | customer rating : 3 out of 5||Browns Cambridge offers a wide selection of fish dishes at a premium price . This is a three star restaurant . \nname : The Cricketers | Type : pub | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||With a customer rating of 3 out of 5 , The Cricketers is a child friendly pub located near Ranch . \nname : Browns Cambridge | price : moderate | customer rating : 1 out of 5||At Browns Cambridge the price range is moderate and the customer rating is 1 out of 5 \nname : The Rice Boat | food : French | price : high | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat in riverside , located near Express by Holiday Inn , is a family friendly restaurant that serves French food . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves fast food in the city centre near the Express by Holiday Inn . It offers high prices , is not family - friendly and has average customer ratings . \nname : Taste of Cambridge | Type : restaurant | price : high | customer rating : 3 out of 5||A high price restaurant called Taste of Cambridge got a good customer rating \nname : The Golden Palace | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is an coffee shop in Riverside serving Indian food . Despite moderate prices , it has poor customer reviews . \nname : The Waterman | Type : pub | food : Fast food | customer rating : average | area : riverside||The Waterman fast food pub is in riverside . \nname : The Rice Boat | food : Japanese | customer rating : low | area : riverside | family friendly : no||The Rice Boat offers Japanese food in the riverside area with a low customer rating . We are not family - friendly . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop called The Eagle , located on the riverside near Burger King is family friendly . Serving Indian food with a customer service rating of 5 out of 5 stars . \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : no||There is a family friendly fast food restaurant called The Wrestlers which offers low quality food at a cheap price . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes||Blue Spice is a family - friendly restaurant located in the center of city with an average customer rating where meals cost less than 20 euros . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||A kids friendly restaurant that costs less than 20 euros is Travellers Rest Beefeater \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace , located in the city centre , is a French coffee shop with prices £ 20 - 25 and a high customer rating . \nname : The Twenty Two | Type : pub | customer rating : low | area : city centre | near : Café Sicilia||The Twenty Two , a pub near Café Sicilia in the city centre , has a low customer rating . \nname : The Olive Grove | Type : restaurant | area : riverside | family friendly : yes||In riverside there is a family friendly restaurant called The Olive Grove \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||Near Avalon , in the riverside area , is the family friendly Blue Spice coffee shop , with a less than £ 20 price range and average customer rating \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||The Wildwood is a coffee shop serving Japanese food with a price range less than £ 20 . It has average ratings and is near the Ranch . \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop that is rated average and is near Crowne Plaza Hotel . \nname : Cocum | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | family friendly : no||The Cocum is an Indian coffee shop with a low customer rating . It 's prices are under £ 20 and it is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low priced coffee shop that doesn 't offer a family friendly atmosphere , located outside of the city centre . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||A low - price restaurant Japanese called Cotto its located near The Portland Arms \nname : The Twenty Two | food : French | family friendly : yes||The Twenty Two is a family friendly place serving French food . \nname : The Mill | Type : pub | food : English | price : moderate | area : riverside||The Mill 's prices are reasonable . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop near Burger King by the riverside serving French food is child friendly . Price range more than £ 30 , rated low by customers . \nname : Loch Fyne | Type : restaurant | food : English | family friendly : no||at our restaurant are ratings are very high , and we only use the finest food around , we have a take away service of around 3 miles , we very much hope to see you at our restaurant very soon . hello and welcome we would like to tell you about Loch Fyne it is a restaurant we offer very nice English food . at the moment we are not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum may cost more , but caters for families and has excellent reviews \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia is a 5 star restaurant called The Punter that provides coffee and sushi and is family friendly . \nname : The Vaults | food : Chinese | price : £ 20 - 25 | family friendly : yes||The Vaults provides Chinese food in the £ 20 - 25 price range . \nname : The Rice Boat | food : Japanese | customer rating : average | area : riverside | family friendly : no||The Rice Boat in river side server up average Japanese food with no children welcome . \nname : Green Man | food : Japanese | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||The Green Man is a Japanese restaurant near All Bar One in the riverside area . its prices are under £ 20 and it is not family - friendly . \nname : The Mill | Type : pub | food : Chinese | price : high | area : riverside||The Mill is a high priced pub in the riverside area that serves Chinese food . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is located next to Burger King on the river . It is a five star , inexpensive , family friendly Italian coffee shop . \nname : Cotto | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop with a price range of less than £ 20 . It serves Fast food . It 's located near The Portland Arms in the city centre . It has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an kid friendly coffee shop located in the city centre . It is in the £ 20 - 25 price range and offers French food with a three of five customer rating . \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||Try The Golden Curry , five star satisfaction rated Indian food . Not family friendly though . They are near Café Rouge in the riverside area . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : low | area : city centre | near : Clare Hall||Clowns coffee shop which serves Italian food and has a low customer rating can be found in the city centre near Clare Hall . \nname : Alimentum | food : French | price : more than £ 30 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Located in the city centre near Yippee Noodle Bar is Alimentum . It serves French food with a price range of more than £ 30 and has a low customer rating . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove in the riverside area serve slow price pub food in a family friendly atmosphere \nname : The Golden Curry | food : Italian | price : moderate | family friendly : yes | near : The Bakers||The Golden Curry serves moderately priced Italian food . This child friendly restaurant is located near The Bakers . \nname : Wildwood | Type : pub | food : Italian | price : less than £ 20 | customer rating : low||Wildwood is an Italian pub that has a one star rating and has cheap prices . It is located south of the city centre . \nname : The Twenty Two | food : English | area : riverside | family friendly : no||In riverside there is an English restaurant called The Twenty Two which is not family - friendly . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers wine and is located near Burger King and is family friendly . \nname : The Waterman | food : Italian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a yes to family friendly . It has Italian food near the Crown Plaza Hotel . \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Cotto located near The Portland Arms is an expensive , one star coffee shop . \nname : The Waterman | food : Italian | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||The Waterman serves Italian food and is located in the riverside area . It has a high customer rating and a price range of more than £ 30 . It is not child - friendly . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : low | area : riverside | near : Clare Hall||Clowns is a one star coffee shop located near the City centre , Clare Hall \nname : Strada | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Strada is a mid - priced , child friendly place , that serves Chinese food . It has high customer ratings and is near the Rainbow Vegetarian Café . \nname : The Dumpling Tree | Type : coffee shop | price : less than £ 20 | area : city centre | family friendly : no | near : Café Sicilia||Near Café Sicilia , in city centre , is a coffee shop called The Dumpling Tree . They are in the price range of less than 20 and are not family - friendly . \nname : Green Man | food : Fast food | price : less than £ 20 | area : riverside | family friendly : yes | near : All Bar One||The Green Man is near the City center . and close to the All Bar One . It is low priced and serves fast food for the whole family . \nname : The Golden Curry | food : Fast food | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||You can find The Golden Curry at the centre of the city , near Café Rouge . They serve Fast food , but the atmosphere is not family - friendly . Customers give it an average rating . \nname : The Eagle | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is highly rated coffee shop located in the city centre , near to Burger King . It is priced in the more than £ 30 range and is not children friendly . \nname : Cotto | price : £ 20 - 25 | area : riverside | near : All Bar One||Cotto is located in the riverside area near All Bar One . Cotto is moderately priced . \nname : Zizzi | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes||Zizzi is children friendly coffee shop right off the riverside that has a low customer service rating and an average price range of more than £ 30 \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Named Fitzbillies , this coffee shop is not family - friendly , has a price range of less than £ 20 , serves fast food , is found in the city centre area , and has a low customer rating . \nname : Green Man | Type : pub | food : Chinese | area : city centre | near : Café Rouge||Green Man is a pub that provides Chinese food It is located in the city centre . It is near Café Rouge . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||The Twenty Two has a 5 out of 5 rating , it is near The Rice Boat , which is a cheap family friendly restaurant at the river side . \nname : Fitzbillies | price : high | customer rating : average | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn has an average rating but high price , they are children - friendly \nname : The Vaults | food : Japanese | price : £ 20 - 25 | family friendly : yes||The Vaults is a kid friendly Japanese food establishment offering prices from 20 - 25 . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a high - priced family restaurant Blue Spice located in City Centre . \nname : The Phoenix | food : Fast food | customer rating : 1 out of 5 | area : riverside||Come to our new fast food restaurant in the Riverside area called The Phoenix . \nname : The Wrestlers | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||An English food place with a moderate price range is The Wrestlers . It is kid friendly and has a customer rating of 3 out of 5 \nname : The Punter | Type : coffee shop | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located next to Café Sicilia that provides pasta in a family friendly environment . \nname : Blue Spice | price : moderate | area : city centre||Blue Spice is a moderately priced restaurant near the city center . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an Italian coffee shop located by the riverside . Price range is moderate , it is kid friendly . The rating is 3 out of 5 . \nname : The Plough | Type : pub | food : Japanese | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough is a pub with family friendly atmosphere . It serves Japanese food in price range less than £ 20 . The Plough is located near Café Rouge . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||There is a cheap , coffee shop that serves Italian , named The Eagle , in the city centre near Burger King . It has an average customer rating and is family friendly \nname : Strada | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Located near Rainbow Vegetarian Café , Strada is a cheap English restaurant with a customer rating of 5 out of 5 and is not family - friendly . \nname : The Olive Grove | Type : pub | food : Italian | price : cheap | area : riverside | family friendly : yes||Italian food can be found in Riverside at The Olive Grove , the price range is cheap , it is family friendly , and it is a pub style eatery . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||The Zizzi coffee shop , located in the city centre , has prices less than 20 . The customer rating is average and is not family - friendly . \nname : Browns Cambridge | food : Japanese | area : riverside | family friendly : no | near : The Sorrento||Browns Cambridge Located in river side near The Sorrento serving Japanese Food no family - friendly \nname : The Waterman | food : Fast food | price : high | customer rating : average | area : city centre | family friendly : no||The Waterman is a costly fast food located in city centre . It has average customer rating and not child friendly . \nname : The Mill | Type : coffee shop | food : Italian | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop serving Italian food located near The Sorrento with a medium price range . \nname : The Twenty Two | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : The Rice Boat||In the riverside area near The Rice Boat is a high price range and children friendly location name The Twenty Two with a customer rating of 1 out of 5 \nname : The Rice Boat | food : Fast food | customer rating : average | area : riverside | family friendly : yes||The Rice Boat serves Fast food . It is placed in riverside area and customers rate it as average . The Rice Boat is children friendly place . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is an affordable family coffee shop that serves American food . \nname : The Golden Palace | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside||Next to the river you will find a coffee shop called The Golden Palace . You can eat delicacies such as a cheese board with wine . Moderately priced and with a three - star rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||With a price range of 20 - 25 and a high customer rating , Fitzbillies coffee shop is family friendly in the Riverside area . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||With an average price range of £ 20 - 25 , enjoy French food at the kid friendly Green Man . We are located in the riverside area near All Bar One . \nname : The Waterman | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no||A cheap restaurant that is family friendly and serves Indian food is called The Waterman . It is located in the city center \nname : The Dumpling Tree | Type : restaurant | food : French | price : more than £ 30||The French restaurant The Dumpling Tree has a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a Fast food coffee shop near The Portland Arms . It 's in riverside , it 's cheap , and it has a 5 out of 5 rating . \nname : The Olive Grove | Type : pub | price : more than £ 30 | area : riverside | family friendly : yes||es The Olive Grove is children friendly pub in the riverside area , but comes with a more than £ 30 price range \nname : The Twenty Two | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : The Rice Boat||Don 't miss the opportunity to enjoy an inexpensive meal with your family . Check out The Twenty Two which is located near The Rice Boat . \nname : Clowns | Type : pub | price : high | customer rating : 3 out of 5 | area : riverside||The pub in Riverside named Clowns has a high price range but rated 3 out of 5 . \nname : The Rice Boat | food : Japanese | area : riverside||The Rice Boat on riverside serves Japanese food \nname : Browns Cambridge | price : cheap | customer rating : 5 out of 5||Browns Cambridge is cheap , but has a 5 out of 5 rating . \nname : Clowns | Type : coffee shop | food : Italian | customer rating : high | area : riverside | near : Clare Hall||Clowns is coffee shop near Clare Hall . Customers rate Clowns coffee shop as high . It serves Italian food and is placed at riverside area . \nname : Clowns | price : cheap | family friendly : yes | near : Café Sicilia||Clowns is a cheap family friendly restaurant , located near Café Sicilia . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 1 out of 5||The Cambridge Blue serves English food . The restaurant has a rating of 1 out of 5 . \nname : Midsummer House | food : Indian | customer rating : 5 out of 5 | near : Café Rouge||Midsummer House serves Indian food . It is near Café Rouge and 5 out of 5 . \nname : The Phoenix | food : Italian | customer rating : 3 out of 5 | area : riverside||Customers rated the Italian restaurant in riverside named The Phoenix 3 out of 5 . \nname : Green Man | Type : pub | food : English | area : riverside | near : Café Rouge||Green Man is a pub near Café Rouge that has English food . It is located in Riverside . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||There is a coffee shop called Zizzi in the city centre which offers low quality food at a cheap price . \nname : Midsummer House | food : French | customer rating : 5 out of 5 | near : Café Rouge||The highly rated Midsummer House serves French food and is locate near Café Rouge . \nname : Alimentum | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : Yippee Noodle Bar||The Alimentum is located in the City Centre near the Yippee Noodle Bar . It has a high customer rating with a price between £ 20 and £ 25 . \nname : The Eagle | price : more than £ 30 | customer rating : high | area : riverside||The Eagle , near riverside , has a high customer rating and a price range of more than 30 . \nname : The Waterman | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Waterman is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Rice Boat | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese restaurant in city centre near Express by Holiday Inn which has high customer rating . Its is not child friendly and the price range is more than £ 30 . \nname : Fitzbillies | food : Fast food | price : less than £ 20 | near : The Six Bells||Located near The Six Bells , Fitzbillies is a low priced fast food venue . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | family friendly : yes||The Golden Curry is a kids - friendly Fast food eating place , with a customer rating of 3 out of 5 . \nname : Loch Fyne | food : Indian | customer rating : average | area : riverside | near : The Rice Boat||A restaurant rated average near the riverside is the Indian restaurant , Loch Fyne , located across the street from the famous restaurant The Rice Boat . \nname : Fitzbillies | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a low rated Indian coffee shop in the city centre however its cheap and family friendly . \nname : The Golden Curry | food : Indian | customer rating : low | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry located in the riverside area near Café Rouge is The Golden Curry which offers Indian food . It is not family friendly and has a low customer rating . \nname : The Mill | Type : coffee shop | food : Fast food | price : moderate | area : riverside | near : The Sorrento||The Mill is a fast food restaurant located near The Sorrento in the city centre that offers moderately priced food . \nname : Green Man | price : £ 20 - 25 | area : riverside | family friendly : yes||At an average price range of £ 20 - 25 , Green Man in riverside provides a happy , child friendly environment . \nname : The Mill | Type : pub | food : Fast food | price : high | area : riverside||There is a high priced fast food pub in riverside called The Mill . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : city centre||The Waterman , rated average and located in the city centre offers Italian food . \nname : The Rice Boat | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||In the city centre area is an English restaurant named The Rice Boat . It is near Express by Holiday Inn . It has a customer rating of 3 out of 5 and is not kid friendly . \nname : The Rice Boat | food : Indian | customer rating : average | area : city centre | family friendly : yes||The Rice Boat is an average Indian food restaurant . It is a family friendly restaurant near the city center . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located in the city centre , the Blue Spice is an adult oriented restaurant with a price range of £ 30 and above , and a customer rating of 5 out of 5 . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||The Travellers Rest Beefeater restaurant is a good budget option for less than £ 20 . I have heard it is very family friendly too . \nname : The Waterman | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||For a moderate budget and kids friendly eatery , The Waterman on the Riverside cooks up English cuisine . It has an average customer rating of 1 out of 5 . \nname : Wildwood | Type : pub | food : Fast food | price : £ 20 - 25 | customer rating : high||Wildwood is a high rated fast food pub . Meals cost between 20 - 25 \nname : Giraffe | Type : pub | food : Chinese | area : riverside | family friendly : no||There is an adult clentele . pub on the Chinese riverside called Giraffe . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There 's a children - friendly coffee shop that provides fast food at the riverside near the Crowne Plaza Hotel called the Taste of Cambridge . \nname : The Punter | price : less than £ 20 | area : riverside | family friendly : no | near : The Portland Arms||In riverside near The Portland Arms is The Punter that cost less than 20 euros . It is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : French | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child friendly French coffee shop in riverside located near the Crowne Plaza Hotel \nname : The Dumpling Tree | Type : restaurant | food : Indian | price : £ 20 - 25||The Dumpling Tree is an Indian restaurant . The price range is around £ 20- £ 25 . \nname : The Olive Grove | Type : pub | food : Chinese | price : moderate | area : city centre | family friendly : no||The Olive Grove is a pub that provides Chinese food in the moderate price range . It is located in the city centre . \nname : The Punter | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is coffee shop serving Japanese food , with high prices customer rated 3 out of 5 , not children friendly place . It is near Café Sicilia . \nname : The Phoenix | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside||The Phoenix is an inexpensive fast food restaurant located in the northern part of Cambridge . \nname : The Waterman | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Waterman is a English restaurant in riverside with low prices but not good for family \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is a cheap English restaurant with high ratings from customers . It not family - friendly . \nname : The Dumpling Tree | Type : coffee shop | price : more than £ 30 | area : riverside | family friendly : no | near : Café Sicilia||In the Riverside area , near Café Sicilia , The Dumpling Tree is a premium priced , professionally oriented coffee shop . \nname : Strada | Type : pub | food : French | customer rating : low | near : Yippee Noodle Bar||Strada pub near Yippee Noodle Bar sells French food and customer rating is cheap \nname : The Rice Boat | food : French | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is in the riverside , near the Express by Holiday Inn , it offers French food , is highly rated and cheap . It isn 't family - friendly . \nname : Cotto | food : Fast food | customer rating : 3 out of 5 | family friendly : yes | near : Ranch||Cotto serves fast food and is child friendly . It is located near Ranch and has a 3 out of 5 customer rating . \nname : The Vaults | Type : restaurant | food : Japanese||There is a Japanese style restaurant called The Vaults . \nname : The Olive Grove | Type : pub | price : £ 20 - 25 | area : riverside | family friendly : yes||The Olive Grove is a kid friendly pub on the riverside with a price range of 20 to 25 Euros . \nname : The Rice Boat | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is high . \nname : Cocum | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | family friendly : no||The Cocum is a coffee shop that sells fast food . The Cocum is not kid - friendly , has a high customer rating and average prices . \nname : The Rice Boat | food : French | customer rating : low | area : riverside | family friendly : yes||The Rice Boat serves French food with a low customer rating located in the riverside area . It is children friendly . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a fast food restaurant in the city centre . It is not very good , but it is cheap . \nname : The Wrestlers | food : Italian | price : cheap | customer rating : 5 out of 5 | family friendly : no||If you want to eat Italian with cheap prices and no kids around , then go to The Wrestlers who have a rating of 5 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne is a family restaurant that sells delicious burgers . \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : average | near : All Bar One||There is an inexpensive , three - star food and wine restaurant called Midsummer House located near All Bar One . \nname : The Olive Grove | Type : pub | food : Indian | price : moderate | area : riverside | family friendly : yes||There is an Indian pub , called The Olive Grove . The price is moderate and it 's kid friendly and riverside . \nname : Wildwood | Type : pub | food : Japanese | price : more than £ 30 | customer rating : low||Wildwood Japanese pub has a low rating . Their food is more than £ 30 . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is Low price coffee shop serving French food Located in city center near Burger King with a low customer rating and is family - friendly \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food restaurant that is kid friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a cheap Japanese venue in the city centre near the Express by Holiday Inn with an average customer rating but are not family - friendly \nname : Fitzbillies | food : Chinese | price : moderate | near : The Six Bells||Fitzbillies is near The Six Bells and provides Chinese food at an average price . \nname : Zizzi | Type : pub | food : Chinese | customer rating : 5 out of 5 | family friendly : no||Zizzi is a pub that serves Chinese food . Customers rate it 5 out of 5 , but it is not family friendly . \nname : Alimentum | food : Fast food | price : moderate | area : riverside | family friendly : yes||Alimentum serves Fast food with a moderate price range is kids friendly and near the riverside \nname : The Waterman | food : Italian | price : high | customer rating : average | area : riverside | family friendly : yes||Italian children - friendly store name The Waterman and the customer Rating is average \nname : The Waterman | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman serves moderately priced , but highly rated Chinese in a child - free environment near the city center . \nname : Blue Spice | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Located in the city centre , Blue Spice is kid friendly and has a moderate price range . \nname : The Golden Curry | food : English | customer rating : low | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is a river - side family restaurant located north of the city centre near Café Rouge . \nname : Cocum | Type : restaurant | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kids friendly restaurant that has received a customer rating of 3 out of 5 . \nname : Midsummer House | food : Indian | customer rating : high | near : Café Rouge||Midsummer House is a highly rated restaurant serving Indian food . It is located near Café Rouge . \nname : Fitzbillies | price : high | customer rating : 3 out of 5 | family friendly : yes | near : Express by Holiday Inn||Fitzbillies is located near the Express by Holiday Inn . It has a high price range and holds an average rating of 3 out of 5 and is child friendly . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : riverside||The Waterman ate Chinese food at a pub in Riverside , despite the fact it had a low rating . \nname : The Cambridge Blue | Type : restaurant | food : Japanese | customer rating : low||There is a one star restaurant known as The Cambridge Blue . \nname : The Wrestlers | Type : coffee shop | food : Indian | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is in the riverside area near Raja Indian Cuisine . It is a coffee shop serving moderate priced Indian food and is not kid friendly . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||The Phoenix is located in the city centre serving Italian food . It has a 3 out of 5 star customer rating . \nname : The Punter | Type : coffee shop | food : Indian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Indian food at a price range more than £ 30 and has high customer rating . It is located near Café Sicilia and is not children friendly . \nname : The Golden Curry | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry restaurant serves Chinese food in the Riverside area , near Café Rouge . It has a customer rating of 5 out of 5 and is family friendly . \nname : The Eagle | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is a low priced , family friendly establishment , located on the outskirts of the city , near Burger King . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Rouge||Fast food restaurant , The Golden Curry is located in the city centre near Café Rouge . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : The Phoenix | food : English | price : less than £ 20 | customer rating : low | area : city centre||With a less than £ 20 price range and a low customer rating , The Phoenix serves French food in city centre . \nname : The Phoenix | food : Fast food | customer rating : average | area : riverside||The Phoenix is a three star restaurant close to the city centre . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : city centre | family friendly : no||Fitzbillies coffee shop serves French food in the less that £ 20 price range and has a customer rating . It is located in the City Centre but is not family - friendly \nname : Browns Cambridge | Type : coffee shop | food : French | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside near the Crowne Plaza Hotel , there is an average family friendly coffee shop serving French food called Browns Cambridge . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : yes||Child friendly The Vaults has a fast food menu , of £ 30 plus . \nname : Strada | Type : pub | food : Italian | customer rating : average | near : Yippee Noodle Bar||Strada a pub near to Yippee Noodle Bar got Italian food and customer rating is average \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||Fitzbillies is a place providing quality French food for more than £ 30 . It is located near The Six Bells . \nname : The Rice Boat | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||Fast food restaurant , The Rice Boat is moderately priced and kid - friendly . It is at the Riverside close to Express by Holiday Inn . Customer rating 1 out of 5 . \nname : Browns Cambridge | food : Japanese | price : cheap | customer rating : 5 out of 5||Browns Cambridge has the best Japanese food for a low price \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a no family - friendly coffee shop providing French food in the cheap price range . It is located near Raja Indian Cuisine in the riverside . \nname : Wildwood | Type : pub | food : Fast food | price : more than £ 30 | customer rating : high||Wildwood Pub , is a restaurant with good reviews . \nname : The Waterman | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman provides Indian food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : 3 out of 5 | area : riverside | family friendly : yes||By the riverside is an Italian restaurant , Aromi , with a customer rating of 3 out of 5 . \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a mid - range priced , three star , family friendly place located near to the Rainbow Vegetarian Café . It serves food and drink . \nname : The Rice Boat | food : Indian | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat Indian restaurant is adult only , higher in price with a high customer rating near the Express by Holiday Inn . \nname : Wildwood | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||There is a coffee shop called Wildwood located near Ranch . It serves Japanese food and has a customer rating of 5 out of 5 . The price range is over £ 30 \nname : Giraffe | Type : coffee shop | price : less than £ 20 | customer rating : average | family friendly : yes | near : The Bakers||Giraffe is a family friendly coffee shop near The Bakers . It has an average customer rating with a less than £ 20 price range . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne is an American - style restaurant . \nname : Browns Cambridge | food : Indian | price : high | customer rating : average||Browns Cambridge is an average rated , high priced Indian restaurant . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : yes||riverside area has a French restaurant called The Waterman that has a price range £ 20 - 25 and is kid friendly . \nname : The Plough | Type : pub | food : Chinese | price : cheap | family friendly : yes | near : Café Rouge||The Plough is a family friendly pub located near Café Rouge . They serve cheap Chinese food . \nname : The Cricketers | Type : pub | customer rating : average | family friendly : yes | near : Ranch||Near Ranch , there is an average - rated , children friendly pub called The Cricketers . \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : city centre | family friendly : yes | near : Avalon||There is a coffee ship near Avalon in the city center named Blue Spice that is family - friendly , received an average rating and the price range is less than 20 pounds . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : more than £ 30||There is a Chinese food restaurant with price Range more than £ 30 , called The Dumpling Tree . \nname : Wildwood | Type : restaurant | family friendly : no||Wildwood , a restaurant , is not family - friendly . \nname : Green Man | food : Fast food | price : cheap | area : riverside | family friendly : yes | near : All Bar One||Green Man offers cheap Fast food , very family friendly . Look along the riverside , near All Bar One \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum provides Indian food in the moderate price range . It is located in the riverside . It is near Yippee Noodle Bar . Its customer rating is 3 out of 5 . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : low | area : riverside | family friendly : yes | near : Avalon||There is an expensive , one star , coffee shop near Avalon called Blue Spice . \nname : Fitzbillies | food : Japanese | price : £ 20 - 25 | near : The Six Bells||Priced between £ 20 - 25 Fitzbillies offers Japanese foods near The Six Bells . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : yes | near : Café Rouge||The Plough pub , next door to the Café Rouge , is known for its well priced British food . \nname : Clowns | Type : coffee shop | food : Fast food | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a perfect 5 out of 5 rated fast food coffee shop on the riverside located on the riverside near Clare Hall . \nname : The Eagle | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is a riverside coffee shop near to Burger King called The Eagle . It serves French cuisine for less than £ 20 per head but it isn 't very family - friendly and has low customer ratings . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||There is a cheap coffee shop The Punter located after Café Sicilia that provides high quality food an family service . \nname : Cotto | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Indian food in the high price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry was rated 1 out of 5 . Yes it is kid friendly . They serve English food . \nname : The Cricketers | Type : coffee shop | food : Italian | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop offering Italian food . Located near The Portland Arms , it is a family - friendly location that has received a customer rating of 5 out of 5 . \nname : The Vaults | food : Fast food | price : more than £ 30 | family friendly : no||The Vaults is a fast food restaurant which costs more than £ 30 . Not a suitable restaurant for children . \nname : The Eagle | Type : coffee shop | food : French | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a child friendly French food coffee shop with a high price range near Burger King in the city center area . The place is named The Eagle and received a customer rating of 3 out of 5 . \nname : The Golden Curry | food : Fast food | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||There is a kid friendly fast food restaurant located in the Riverside area near Café Rouge named The Golden Curry . They have a customer rating of 3 - 5 . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||3 out of 5 customers choose to eat at Browns Cambridge . It is a Fast food ranging between £ 20 - 25 . \nname : Blue Spice | food : Fast food | price : more than £ 30 | area : riverside||Blue Spice is in riverside and sells fast food for over £ 30 . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum is a venue serving Japanese food for under £ 20 near the Yippee Noodle Bar in the city centre , but with a low customer rating \nname : Wildwood | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood coffee Shop is cheap , next to the Ranch and mid range prices . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop near to the river with one star . They serve hot meals at reasonable prices . \nname : The Rice Boat | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a highly rated restaurant conveniently placed in riverside near Express by Holiday Inn that welcomes children with a price range of £ 20 - 25 . \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serving Chinese food in the moderate price range near Express by Holiday Inn in city centre is rated 3 out of 5 and is not kids friendly . \nname : Alimentum | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | near : Yippee Noodle Bar||Serving a wide variety of wines and cheeses , Alimentum is a moderately - priced 5 - star restaurant located on the riverfront , north of the City centre , close to Yippee Noodle Bar . \nname : The Wrestlers | Type : coffee shop | food : Fast food | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop in the city centre , close to Raja Indian Cuisine , is cheap and not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is not a family - friendly , average Japanese coffee shop , located on the riverside near Crowne Plaza Hotel . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : city centre||There is an Italian coffee shop called The Golden Palace near the city centre . It has a price range of less than 20 pounds , but has a low customer rating . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||The Twenty Two , Chinese , Riverside , Child friendly . \nname : The Golden Curry | food : Indian | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves Indian food in the riverside area near Café Rouge . They have an average customer rating and are child friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : £ 20 - 25||The Dumpling Tree is a Fast food restaurant price range £ 20 - 25 \nname : Alimentum | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a highly rated , inexpensive , fast food restaurant located in the city centre near the Yippee Noodle Bar . \nname : Browns Cambridge | food : French | price : cheap | customer rating : 5 out of 5||Browns Cambridge is a cheap French restaurant with an excellent customer rating of 5 out of 5 . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a cheap , highly rated , family - friendly Indian restaurant located near Rainbow Vegetarian Café . \nname : Fitzbillies | food : French | price : more than £ 30 | near : The Six Bells||A French restaurant known as Fitzbillies is located near The Six Bells . The price range is more than £ 30 . \nname : Cotto | food : Japanese | customer rating : average | family friendly : no | near : Ranch||Cotto , a Japanese eatery , most suited for adults is located near Ranch and has average customer ratings . \nname : Zizzi | Type : pub | food : Italian | customer rating : low | family friendly : no||Zizzi is a Italian pub located in the city centre that has received poor reviews . It is not family friendly . \nname : Strada | price : less than £ 20 | customer rating : low | family friendly : no||Strada is a low - priced establishment for adults . \nname : The Vaults | food : Fast food | price : moderate | family friendly : no||The Vaults serves moderately priced fast food . It is not child friendly . \nname : The Rice Boat | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a medium priced , one star rated , family friendly sushi bar located next to Express by Holiday Inn . \nname : The Olive Grove | Type : pub | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes||The French food place The Olive Grove is a kids friendly pub with a price range of £ 20 - 25 and is located on a riverside . \nname : Alimentum | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum provides Indian food in the less than £ 20 price range . It is located in the city centre . It is near Yippee Noodle Bar . Its customer rating is low . \nname : The Twenty Two | food : Italian | area : riverside | family friendly : yes||The Twenty Two Italian family restaurant is found in the riverside area . \nname : The Waterman | food : Italian | family friendly : no | near : Crowne Plaza Hotel||The Waterman is an Italian restaurant by Crowne Plaza Hotel that is not family - friendly . \nname : Green Man | food : Indian | price : high | area : city centre | family friendly : yes | near : All Bar One||In city centre , near All Bar One , is a kid - friendly venue , Green Man , offering expensive Indian food . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A child friendly coffee shop in riverside , Fitzbillies , serves Japanese food . With a 5 out of 5 customer rating , they are in the high cost range . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop serves Japanese food in the city centre near to Burger King . It is cheap , not family friendly and has been rated 1 out of 5 stars . \nname : The Mill | Type : pub | food : Fast food | price : moderate | area : riverside||For moderately priced Fast food in the riverside area is pub called The Mill \nname : The Rice Boat | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a moderately priced , kid friendly Chinese restaurant located near the Express by Holiday Inn in city centre . It has a customer rating of 3 out of 5 . \nname : Cotto | food : Chinese | customer rating : low | family friendly : yes | near : Ranch||Cotto is a family friendly Chinese restaurant near Ranch with low ratings . \nname : Cocum | Type : coffee shop | food : Italian | price : high | customer rating : average | family friendly : no||Cocum , an average but expensive Italian coffee shop , is not family - friendly . \nname : Green Man | food : Fast food | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||A non child friendly fast food restaurant in the city centre is Green Man , near All Bar One , and cheap \nname : The Cambridge Blue | Type : pub | food : Fast food | price : high | near : Café Brazil||The Cambridge Blue pub offers highly - priced fast food . It is located near Café Brazil . \nname : Travellers Rest Beefeater | Type : restaurant | price : £ 20 - 25 | family friendly : yes||At an average price , the Travellers Rest Beefeater is also kid friendly \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||The Waterman has Chinese food with a low price range . It is kids friendly and is located in the city centre with an average rating . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat serves Japanese food , low - priced , family friendly and average customer rating near Express by Holiday Inn \nname : The Golden Palace | Type : restaurant | customer rating : high | area : riverside||At Riverside is a high Customer rating restaurant called The Golden Palace \nname : The Plough | Type : pub | food : French | price : moderate | family friendly : no | near : Café Rouge||Near Café Rouge is The Plough pub . They are not kid French , serve French food and have a moderate price range . \nname : Blue Spice | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located in city centre , Blue Spice has a price range of more than £ 30 and customer rating 5 out of 5 . It is not children friendly . \nname : The Punter | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Bring your family to The Punter , a coffee shop located near Café Sicilia , for a wide choice of moderately priced food and beverages . \nname : Giraffe | Type : coffee shop | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : The Bakers||There is a coffee shop near The Bakers called The Giraffe . It is considered a kids Friendly place with moderate price range and customer rating . \nname : The Golden Curry | food : Fast food | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Near to Café Rouge and right by the river in Cambridge , you can find The Golden Curry , which has received great reviews . It serves burgers and similar food , and is family - friendly . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House , provide low rated food for less than £ 20 . It is located near All Bar One . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Express by Holiday Inn||Located riverside near Express by Holiday Inn , The Rice Boat offer cheap Chinese food at an average customer rating . It is not family friendly . \nname : The Cambridge Blue | Type : pub | food : Japanese | price : less than £ 20 | near : Café Brazil||The Cambridge Blue pub , situated next door to the Café Brazil , is well known for its inexpensive sushi . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Near Café Sicilia is The Punter , a low - price , sushi restaurant that serves adults . \nname : The Rice Boat | food : English | customer rating : low | area : riverside | family friendly : no||The Rice Boat offers a full English breakfast . It has a one star rating and is located near to the river . It is not family friendly . \nname : The Twenty Two | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : The Rice Boat||There is a family - friendly restaurant named The Twenty Two it is family - friendly with low prices it is located near The Rice Boat in city centre but it is rated low . \nname : The Golden Curry | food : Japanese | price : high | family friendly : yes | near : The Bakers||The Golden Curry is a Japanese restaurant located near The Bakers . This restaurant has high prices , but it is child friendly . \nname : The Waterman | Type : pub | food : Indian | customer rating : high | area : riverside||The Waterman is a highly rated Indian take out near the pub on the riverside . \nname : The Eagle | Type : coffee shop | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||There resides a French coffee shop that should have fallen into the riverside with its prices . The Eagle offers no respite for weary parents , but the Burger King next door definitely does . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a poorly recommended family friendly coffee shop serving moderately priced fast food , it is sited on the outskirts of the city centre . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||There is a coffee shop style food called The Eagle it 's fast food on riverside near Burger King it is cheap and for the family . \nname : Bibimbap House | food : Fast food | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House is a fast food restaurant near Clare Hall . Based near the riverside , food is expected to cost from £ 30 \nname : The Wrestlers | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family Friendly restaurant serving cheap English food with a customer Rating of 5 out of 5 . \nname : Strada | food : Indian | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Rainbow Vegetarian Café||Strada is a family friendly restaurant located near Rainbow Vegetarian Café that provides Indian food which has a 5 out of 5 customer rating and the price range is cheap . \nname : Bibimbap House | food : English | price : less than £ 20 | area : city centre | near : Clare Hall||Bibimbap House sells food with the price less than £ 20 , which is located near Clare Hall in the city center . \nname : The Twenty Two | food : English | family friendly : yes||If you are looking for English food then you could try The Twenty Two . It is also family friendly . \nname : The Eagle | price : less than £ 20 | customer rating : low | area : riverside||The Eagle has a low customer rating and is located in Riverside . Its price range is less than £ 20 . \nname : The Olive Grove | Type : pub | food : Chinese | price : high | area : riverside | family friendly : no||The Olive Grove is a high priced Chinese pub located in the riverside area . This is not a family friendly restaurant . \nname : Wildwood | Type : coffee shop | food : French | price : more than £ 30 | customer rating : 5 out of 5 | near : Ranch||The Wildwood coffee shop is rated five stars and it 's located near the Ranch . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : riverside | family friendly : yes||Aromi is a one - star , family friendly , sit - down restaurant near the river . \nname : Bibimbap House | food : Japanese | price : high | area : riverside | near : Clare Hall||A Japanese restaurant near Clare Hall on the riverside with a high price range is Bibimbap House . \nname : Midsummer House | food : Italian | price : moderate | customer rating : 1 out of 5 | near : All Bar One||Midsummer House restaurant is near All Bar One . Midsummer House is mid - priced restaurant . \nname : The Phoenix | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside||The Phoenix is an highly - rated fast food restaurant in the riverside area . The price range is above £ 30 . \nname : The Rice Boat | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is a Chinese food restaurant with high price Range and customer Rating 1 out of 5 , no children Friendly , in the city centre near Express by Holiday Inn . \nname : Bibimbap House | food : Japanese | price : more than £ 30 | area : riverside | near : Clare Hall||With a price range of more than £ 30 , Bibimbap House , serving Japanese food , is in the riverside area near Clare Hall \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | near : Ranch||Wildwood is a low - priced coffee shop that is rated three stars near Ranch . \nname : Blue Spice | Type : coffee shop | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Avalon||Avalon , a coffee shop near the Blue Spice in the riverside area , sells moderately priced food and is kid friendly and rated 1 out of 5 . \nname : Fitzbillies | food : Indian | price : moderate | near : The Six Bells||Fitzbillies serves moderately priced Indian food , located near The Six Bells . \nname : Alimentum | food : Indian | price : moderate | area : riverside | family friendly : no||Located next to the river , Alimentum offers mid - priced food in an adults only setting . \nname : Alimentum | food : French | price : less than £ 20 | area : riverside | family friendly : no||There is a restaurant near the river called Alimentum . It is in the low price range . It is not family friendly . \nname : The Wrestlers | food : Japanese | price : more than £ 30 | customer rating : low | family friendly : no||The Wrestlers is a restaurant of Japanese food with rating low and dishes from £ 30 for all \nname : Strada | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , Strada is a more than £ 30 , non children - friendly with a high customer rating and Italian food . \nname : The Rice Boat | food : Indian | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat serves moderately priced 1 out of 5 star Indian food . It is located in city centre near Express by Holiday Inn . \nname : Green Man | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man provides Chinese food in the less than £ 20 price range . It is located in the city centre . It is near All Bar One . \nname : The Waterman | Type : pub | food : Indian | customer rating : average | area : city centre||There is a cheap pub The Waterman located in the city centre with average customers reviews \nname : Zizzi | Type : pub | food : Fast food | customer rating : 1 out of 5 | family friendly : yes||There is a Fast food , child friendly pub restaurant called Zizzi , it has a customer rating of 1 out of 5 \nname : The Eagle | price : more than £ 30 | customer rating : low | area : riverside||By the riverside you can find The Eagle , the price range is slightly higher than the average and the customer rating is quite low . \nname : The Mill | Type : pub | food : English | price : high | area : riverside||There is a venue called The Mill . It is an English pub in riverside with a high price range . \nname : The Rice Boat | food : Fast food | customer rating : high | area : riverside | family friendly : yes||The fast food restaurant called The Rice Boat is located on the riverside is children friendly and received 5 star rating . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : city centre | near : Café Adriatic||In the city center , near Café Adriatic , is Travellers Rest Beefeater . It is a 5 out of 5 rating and more than £ 30 . \nname : Strada | food : Italian | price : less than £ 20 | customer rating : low | family friendly : yes | near : Rainbow Vegetarian Café||Near the Rainbow Vegetarian Café , there is a family - friendly Italian restaurant . The customer rating is low , but so are the prices , named Strada . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||With a price range of more than £ 30 , Browns Cambridge is rated high by its customers . \nname : The Rice Boat | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family Chinese restaurant in the £ 20 price range . It has low customer rating and is conveniently located in the city centre near the Express by Holiday Inn . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||If you are looking for a family - friendly , coffee shop and fast food restaurant with a high customer rating in the city centre Fitzbillies is where you want to go . It also looks good in the price range at 20 - 25 . \nname : The Waterman | food : Fast food | family friendly : no | near : Crowne Plaza Hotel||The Waterman is a fast food restaurant near the Crowne Plaza Hotel that is not family friendly . \nname : The Mill | Type : pub | food : Chinese | price : less than £ 20 | area : riverside||The Mill is a pub that provides Chinese food in the less than £ 20 price range . It is located in the riverside . \nname : Strada | food : Italian | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Rainbow Vegetarian Café||The Rainbow Vegetarian Café is an average priced restaurant near Strada that serves Italian food . It is rated highly by customers but it is not kids - friendly . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove , located in the city centre , is a low - cost pub with a price range under £ 20 but is not family - friendly . \nname : Alimentum | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a Japanese restaurant located near Yippee Noodle Bar that is cheap and has a three star rating . \nname : The Golden Curry | food : Fast food | customer rating : average | family friendly : no||Fast food restaurant The Golden Curry has an average rating and is not family - friendly . \nname : Strada | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : yes||Strada is child friendly restaurant with a price range of more than £ 30 . It has a customer rating of 5out of 5 . \nname : Cotto | food : Italian | customer rating : high | family friendly : yes | near : Ranch||Highly rated Italian restaurant Cotto is ideal for kids , situated near Ranch . \nname : The Waterman | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a Chinese restaurant offering customers a premium food service . Excellent ratings and city center based . Bring your kids as we are child friendly \nname : Bibimbap House | food : French | price : more than £ 30 | area : riverside | near : Clare Hall||Bibimbap House sells delicacies on the River near Clare Hall . They have high prices . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||In riverside Blue Spice is priced less than £ 20 and has an average customer rating . It is not family - friendly . \nname : Wildwood | Type : pub | food : French | price : cheap | customer rating : 5 out of 5||There is a pub that offers French food called Wildwood , it has cheap food and a 5 out of 5 rating . \nname : The Olive Grove | Type : pub | price : moderate | area : riverside | family friendly : yes||In Riverside , there is a pub called The Olive Grove . It is moderately priced and kid friendly . \nname : Travellers Rest Beefeater | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | near : Café Adriatic||There is a 5 stars cheap restaurant Travellers Rest Beefeater near Café Adriatic located in the city centre . \nname : Green Man | price : more than £ 30 | area : city centre | family friendly : yes||Green Man is a family - friendly establishment near the city centre . The average cost is about 30 pounds . \nname : The Mill | Type : coffee shop | food : Japanese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop which sells sushi at low prices . It is located Near The Sorrento on the River . \nname : The Waterman | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman restaurant is not a family - friendly restaurant that serves Italian food that is cheap in that Riverside area that has an average Customer rating . \nname : The Olive Grove | Type : pub | food : Indian | price : less than £ 20 | area : city centre | family friendly : no||The Olive Grove is a pub that provides Indian food for a decent price and are located in the centre of the city . They do not allow children . \nname : The Twenty Two | food : Italian | family friendly : yes||Italian food is served at The Twenty Two , which is child friendly . \nname : The Punter | price : moderate | area : riverside | family friendly : yes | near : The Portland Arms||A moderate priced kid friendly venue in Riverside is The Punter and is near The Portland Arms . \nname : The Mill | Type : pub | food : Japanese | price : less than £ 20 | area : riverside||The Mill is a cheap Japanese pub on the riverside . \nname : The Rice Boat | food : Italian | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Italian restaurant is located on the riverside near Express by Holiday Inn . They are a kid friendly restaurant , with prices ranging moderately and a 3 out of 5 rating . \nname : The Rice Boat | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Down by the riverside is a child friendly restaurant called The Rice Boat . This Japanese restaurant has an average customer rating of 3 out of 5 . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kid friendly pub serving French food that is near The Portland Arms \nname : Blue Spice | food : Italian | price : moderate | area : riverside||Blue Spice is an Italian restaurant with a moderate price range located by the riverside . \nname : Alimentum | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside | near : Yippee Noodle Bar||With a low customer rating , Alimentum serves fast food with a price range of less than £ 20 . It is located in the riverside area and near Yippee Noodle Bar . \nname : Taste of Cambridge | Type : restaurant | price : less than £ 20 | customer rating : average||The Taste of Cambridge restaurant is average and the price is less than £ 20 . \nname : The Phoenix | food : Italian | customer rating : average | area : riverside||An Italian restaurant in the riverside area , The Phoenix , has an average customer rating . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||A good priced fast food restaurant near All Bar One is Midsummer House but it has low customer satisfaction . \nname : Browns Cambridge | Type : coffee shop | food : Japanese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is not child friendly . It is a coffee shop offering Japanese food . The customer rating is low . It is located near Crowne Plaza Hotel in the city centre . \nname : The Rice Boat | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a family friendly Indian restaurant near Express by Holiday Inn . It is located in the city centre . Price less than £ 20 , rating is low . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry has good English food and they are very friendly with a average rating . \nname : The Rice Boat | food : French | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is an Asian cuisine inspired restaurant serving affordable food in a family friendly environment , just outside of the City center . , next the the Express by Holiday Inn \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Indian food in the cheap price range . It is located in the riverside . It is near Burger King . Its customer rating is 5 out of 5 . \nname : Blue Spice | Type : coffee shop | price : high | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Avalon||Blue Spice is a high - priced coffee shop near Avalon in the city centre that has children friendly and average customer rating . \nname : Bibimbap House | food : Indian | area : city centre | near : The Rice Boat||For an Indian restaurant in the city centre , you will find Bibimbap House near The Rice Boat . \nname : The Vaults | Type : pub | price : more than £ 30 | customer rating : high | near : Café Adriatic||The Vaults is a pub located near Café Adriatic , with a price range of more than £ 30 , and high customer rating . \nname : The Eagle | Type : coffee shop | food : Indian | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||There is an Indian coffee shop in City centre named The Eagle . It is cheap with a low customer rating and near Burger King . It is not family friendly . \nname : The Golden Palace | Type : restaurant | customer rating : 3 out of 5 | area : riverside||customer rating is 3 out of 5 for The Golden Palace . \nname : Strada | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Rainbow Vegetarian Café||Strada is a low prices restaurant in the center . of the city . Some of the specials include wine , local made cheeses , and fresh herbs . \nname : The Cambridge Blue | Type : pub | food : French | price : high | near : Café Brazil||The Cambridge Blue serves French food at a high price range . They are a pub located near Café Brazil . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : average | area : city centre | family friendly : no||At City Centre , you can find Aromi , a Japanese coffee Shop that is not family - friendly , so bring a date or dine solo instead . The rating for this space is average . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | near : The Sorrento||Located on the riverside near The Sorrento is The Mill , a French coffee shop offering food above 30 Euros in price . \nname : The Golden Palace | Type : pub | price : £ 20 - 25 | area : riverside | near : Rainbow Vegetarian Café||A riverside pub near Rainbow Vegetarian Café in the price range of £ 20 - 25 is called The Golden Palace . \nname : Taste of Cambridge | Type : coffee shop | food : Japanese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a Japanese coffee shop located in riverside near Crowne Plaza Hotel . \nname : Zizzi | Type : pub | food : Chinese | customer rating : high | family friendly : yes||Zizzi is a Chinese pub with a high customer rating . Children are welcome . \nname : The Dumpling Tree | Type : restaurant | food : Japanese | price : more than £ 30||The Dumpling Tree is a Japanese restaurant with meal prices starting at £ 30 . \nname : The Olive Grove | Type : pub | food : Fast food | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a family friendly pub serving cheap , fast food in the riverside area . \nname : Cotto | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Japanese coffee shop Cotto , is an inexpensive , low rated , coffee shop near The Portland Arms in the city centre . \nname : Blue Spice | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Despite offering food in a moderate price range , Blue Spice is a high - rated restaurant on the riverside . It is also kid - friendly . \nname : Wildwood | Type : pub | food : Chinese | price : high | customer rating : average||The Wildwood pub serves Chinese food at high prices , and gets an average rating from customers . \nname : The Cambridge Blue | Type : restaurant | food : French | customer rating : high||The Cambridge Blue is high rated French food restaurant . \nname : The Rice Boat | food : Fast food | price : high | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat Fast food restaurant in riverside is high priced and kid friendly , near the Express by Holiday Inn . \nname : Green Man | food : Japanese | price : high | area : riverside | family friendly : yes | near : All Bar One||Green Man does Japanese food , child friendly near All Bar One in the Riverside area price range is high . \nname : The Mill | Type : coffee shop | food : Fast food | price : cheap | area : riverside | near : The Sorrento||The Sorrento is a coffee shop that serves fast food near The Mill in Riverside . The price is cheap . \nname : The Waterman | food : Indian | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly restaurant which serves Indian food located near the Crowne Plaza Hotel . \nname : The Twenty Two | food : Chinese | area : riverside | family friendly : yes||A Chinese restaurant called The Twenty Two is kid friendly and is in riverside . \nname : The Waterman | food : French | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman is a place to get French food in the city centre . It has a high customer rating and price range of £ 20 - 25 . Yes , it is kid friendly . \nname : The Eagle | price : moderate | customer rating : 1 out of 5 | area : riverside||The Eagle is in the moderate price range , has a customer rating of 1 out of 5 , and is by the riverside area . \nname : The Golden Curry | food : Japanese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry is in the Riverside area near Café Rouge . They serve Japanese food and are family friendly with a customer rating of 3 out of 5 . \nname : Alimentum | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes||Alimentum sells average - priced Chinese food by the river . It is kid - friendly . \nname : The Rice Boat | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The 3 star sushi restaurant The Rice Boat is low priced and family friendly . It is located near Express by Holiday Inn . \nname : Cotto | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing sushi in the mid price range . It is located near The Portland Arms . \nname : The Vaults | food : French | price : less than £ 20 | family friendly : no||Enjoy wine and cheese at The Vaults , a low cost , adult eatery . \nname : The Eagle | food : Japanese | customer rating : 5 out of 5||The Eagle sushi restaurant has a 5 star rating . \nname : The Wrestlers | food : French | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers are a kid - friendly venue , serving French food for a moderate price . They have a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | near : Ranch||There is a mid - priced coffee shop Wildwood near Ranch . \nname : Green Man | food : French | price : £ 20 - 25 | area : riverside | family friendly : yes | near : All Bar One||The Green Man , near All Bar One in the riverside area , has French food in a price range of between £ 20 - 25 and is child friendly . \nname : Strada | price : cheap | customer rating : average | family friendly : yes||Strada with average customer rating is cheap and family friendly . \nname : The Phoenix | food : English | customer rating : high | area : riverside||The Phoenix has high ratings amongst riverside residents . \nname : The Rice Boat | price : cheap | customer rating : average | near : Rainbow Vegetarian Café||The Rice Boat is cheap and has an average customer rating . It is located near Rainbow Vegetarian Café . \nname : The Waterman | Type : pub | food : Italian | customer rating : average | area : riverside||There is a three - star pub The Waterman located near the river . \nname : The Phoenix | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Phoenix is a English food place in the riverside area with a moderate price range . It has a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : restaurant | food : Chinese | customer rating : 5 out of 5||The Cambridge Blue is a Chinese restaurant with a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : Japanese | price : high | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop that allows children , sells sushi , and is expensive . \nname : Fitzbillies | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family coffee shop located near the City centre and is inexpensive and serves spaghetti . \nname : The Punter | food : French | price : £ 20 - 25||A French restaurant in the price range of £ 20 - 25 is The Punter \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes | near : Avalon||With an average customer rating , Blue Spice is a moderately priced coffee shop which welcomes children . It can be found on the riverside close to Avalon . \nname : Green Man | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : All Bar One||If you 're looking for an inexpensive English restaurant , you can try Green Man . It is located near All Bar One , in the city centre , but is not family friendly . \nname : Browns Cambridge | food : Japanese | price : more than £ 30 | customer rating : low||Browns Cambridge serves Japanese food and has a low customer rating with a price range of more than £ 30 . \nname : The Golden Curry | food : English | customer rating : average | family friendly : yes||The Golden Curry is an average kid friendly restaurant . \nname : The Olive Grove | Type : pub | price : less than £ 20 | area : riverside | family friendly : no||The Olive Grove is a non family - friendly riverside pub with a price range of less than £ 20 . \nname : The Rice Boat | food : Chinese | customer rating : low | area : city centre | family friendly : yes||If you are looking for low customer rated Chinese food that is family friendly , visit The Rice Boat in city centre . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||There is a Fast food child - friendly restaurant called The Twenty Two by the river . \nname : Loch Fyne | food : French | customer rating : average | area : riverside | near : The Rice Boat||Loch Fyne is a three star restaurant that serves wine , located in City centre , across from The Rice Boat . \nname : The Rice Boat | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Rice Boat provides Indian food It is located in the riverside . Its customer rating is high . \nname : The Olive Grove | Type : pub | food : Indian | price : high | area : riverside | family friendly : no||The Olive Grove is a children friendly pub serving Indian food and is located near the riverside and is high priced . \nname : The Punter | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : average | family friendly : yes | near : Café Sicilia||There is a Japanese coffee shop called The Punter . It is a family friendly , cheap and averagely rated . Located near Café Sicilia . \nname : The Wrestlers | Type : coffee shop | food : French | price : more than £ 30 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is high price coffee shop serving French food Located in riverside near Raja Indian Cuisine but not children - friendly \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap Fast food and coffee shop establishment located in the city centre near Burger King . It is not kid - friendly . \nname : Aromi | Type : coffee shop | food : Indian | customer rating : high | area : riverside | family friendly : yes||The Aromi is a coffee shop serving Indian food with a high customer rating . It is child friendly and in a riverside location . \nname : The Wrestlers | food : French | price : less than £ 20 | customer rating : average | family friendly : no||There is a restaurant The Wrestlers they serve French food and price rang is less than £ 20 . Although it isn 't a family - friendly restaurant and the customer rating is only average \nname : The Vaults | Type : pub | price : high | customer rating : 3 out of 5 | near : Café Adriatic||There is a very expensive pub The Vaults . It is located near Café Adriatic . \nname : Cocum | Type : coffee shop | food : Italian | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a restaurant that serves Italian food . It also a coffee shop . Moderate price range . Kid friendly . It has a three out of five customer rating . \nname : The Waterman | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Waterman serves moderately - priced Indian food with a 1 star rating . It is located on the riverside and is not kid friendly . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : high||The Dumpling Tree is a high - end Fast food restaurant . \nname : The Rice Boat | food : Italian | area : riverside||If you want Italian food and are in the riverside area , visit The Rice Boat . \nname : Giraffe | Type : pub | food : Fast food | area : city centre | family friendly : yes||Pub called Giraffe is a Fast food , family - friendly and located in the city centre \nname : Blue Spice | food : French | price : £ 20 - 25 | area : riverside||The French food serving Blue Spice is located on the riverside , they cost £ 20- £ 25 . \nname : The Wrestlers | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no||The Wrestlers is a high - priced restaurant with a high customer rating . It serves Italian food for more than 30 pounds in an adult environment . \nname : The Punter | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a French coffee shop . It 's kid friendly and averagely priced . \nname : The Rice Boat | food : Japanese | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Express by Holiday Inn||In the city centre near Express by Holiday Inn there is a Japanese restaurant with a low customer rating and is children friendly . It 's called The Rice Boat and will cost more than £ 30 . \nname : The Waterman | food : Fast food | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The Waterman is a no kids friendly restaurant providing Fast food in the city centre . It has a high customer rating and the price is £ 20 - 25 . \nname : The Twenty Two | food : French | family friendly : no||The Twenty Two is a great place where family can enjoy nice drinks and food . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||An English restaurant that is children friendly known as The Twenty Two is located in the riverside area . \nname : Cocum | Type : pub | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a pub that provides family friendly meals at a cheap price and has 5 out of 5 customer ratings \nname : Browns Cambridge | food : Fast food | price : less than £ 20 | customer rating : average||With a 3 - star rating , Browns Cambridge is a low price burger and fry restaurant . \nname : Wildwood | Type : coffee shop | food : Fast food | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop located near Ranch , that serves one star fast food at a low price . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||Located in riverside , The Eagle is low priced with a customer rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : less than £ 20 | family friendly : yes||A Fast Food restaurant , Loch Fyne , is family friendly and has a low price range . \nname : Wildwood | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | near : Ranch||Customer reviews rate Wildwood , a coffee shop and Japanese food , inexpensive for less than £ 20 in Ranch . \nname : Zizzi | Type : restaurant | price : less than £ 20 | area : riverside||There is a restaurant in riverside called Zizzi which has a less than £ 20 price range . \nname : Alimentum | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||Alimentum offers English food in the riverside area near the Yippee Noodle Bar , the price is a little higher but the food is great . \nname : Midsummer House | food : Japanese | customer rating : average | near : Café Rouge||For average food head to Midsummer House near Café Rouge . \nname : Giraffe | Type : restaurant | price : more than £ 30 | near : The Six Bells||Giraffe is a high priced restaurant near The Six Bells \nname : The Olive Grove | Type : pub | food : English | price : cheap | area : riverside | family friendly : yes||The Olive Grove is a low - priced family friendly English pub located in the riverside area . \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Located near The Portland Arms , Cotto is a coffee shop that serves fast food . They have a low price range and a 5 out of 5 customer rating . \nname : The Twenty Two | food : Fast food | area : riverside | family friendly : yes||The Twenty Two offers Fast food in a children friendly environment in the riverside area . \nname : The Waterman | Type : pub | food : Chinese | customer rating : low | area : city centre||In the city center is a pub called The Waterman . It has low customer ratings but offers Chinese food . \nname : Cotto | Type : coffee shop | food : Indian | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop called Cotto that serves Indian food , has a moderate price range , and has a 1 out of 5 rating . It is located on the riverside near The Portland Arms . \nname : Loch Fyne | Type : restaurant | food : French | price : less than £ 20 | family friendly : no||At £ 20 or less a head , Loch Fyne is a restaurant serving French food that is family - friendly . \nname : Travellers Rest Beefeater | Type : restaurant | price : less than £ 20 | family friendly : yes||A family friendly restaurant , Travellers Rest Beefeater is in the less than £ 20 price range . \nname : Alimentum | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Alimentum is located near Yippee Noodle Bar . It is restaurant providing Chinese food in the price more than £ 30 . \nname : The Eagle | Type : coffee shop | food : Italian | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||hello and welcome to The Eagle , we serve the finest Italian food around and have an average customer rating this is very good for a coffee shop we are near Burger King and our area is the riverside our price range is very cheap for such good food at the moment we are not family - friendly . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry offers Japanese food . It is family - friendly . Customer Ratings are average . it is near Café Rouge . It is located in the city center \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a pub that serves French food . It is kid friendly and is near The Portland Arms . \nname : Fitzbillies | food : Chinese | price : high | near : The Six Bells||The Fitzbillies is a high priced Chinese restaurant near The Six Bells . \nname : Loch Fyne | food : English | customer rating : high | area : riverside | near : The Rice Boat||Loch Fyne serves English food and is located in riverside near The Rice Boat . it has a high customer rating . \nname : Strada | food : English | price : cheap | customer rating : average | family friendly : yes | near : Rainbow Vegetarian Café||Dine in or take out cheaply priced family friendly English food with average rating at Strada . Located near Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||There is a coffee shop called The Eagle near Burger King in riverside which has cheap fast food , an average customer rating but is not family - friendly . \nname : Alimentum | food : Indian | price : high | area : city centre | family friendly : no||Alimentum is an establishment serving Indian food for adults . It is within a high price range and is in the centre of the city . \nname : The Phoenix | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre||The Phoenix provides Indian food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Twenty Two | food : Japanese | area : riverside | family friendly : yes||By the riverside , there is a Japanese restaurant which is children friendly , named The Twenty Two . \nname : The Punter | food : Fast food | price : more than £ 30||The Punter is a burger bar in the high price range . \nname : The Phoenix | food : English | price : high | customer rating : average | area : riverside||The Phoenix is an English restaurant located on the riverside with an average customer rating and high prices . \nname : The Eagle | Type : coffee shop | food : Japanese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||In the city centre near Burger King you can get Japanese food at The Eagle coffee shop . It has a low customer rating and is not family - friendly . \nname : The Golden Curry | food : Italian | customer rating : low | family friendly : no||The Golden Curry is a decent restaurant with edible food and a lackluster atmosphere . \nname : The Eagle | Type : coffee shop | food : Fast food | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Located next to Burger King on the river in City centre is a five star rated , family friendly coffee shop that serves moderately priced burger and fries called The Eagle . \nname : Browns Cambridge | food : Italian | price : high | customer rating : 1 out of 5||Browns Cambridge is an expensive restaurant in the city that does not have a very good rating . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : 3 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat is near Rainbow Vegetarian Café with a customer rating of 3 out of 5 . It is in the £ 20 - 25 price range . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||With prices starting at more than £ 30 , Clowns is a 5 out of 5 rated pub in the riverside area . \nname : The Golden Curry | food : English | customer rating : low | family friendly : yes||There is a low rated English place by the name of The Golden Curry that is family friendly . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Rice Boat offers Japanese food coupled with a family friendly atmosphere . The boat is located on the riverside and earned a five star customer rating . \nname : The Punter | Type : coffee shop | food : Japanese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a Japanese coffee shop located near Café Sicilia that has fantastic reviews , is cheap , and is family friendly . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||Loch Fyne is a fast food restaurant that is kid friendly . \nname : Aromi | Type : coffee shop | food : Italian | customer rating : low | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop , located in the city centre , offering Italian food . It has received low customer ratings \nname : The Cricketers | Type : coffee shop | food : Indian | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop . It also serves Indian food . the customers ratings are 5 out of 5. it is not a family friendly restaurant . it is located near The Portland Arms . \nname : Cocum | Type : pub | price : cheap | customer rating : average | family friendly : yes||Cocum is a good pub and also family friendly . price is also cheap . \nname : The Wrestlers | food : Fast food | price : more than £ 30 | customer rating : high | family friendly : no||This restaurant in not children friendly , has a price range of more than £ 30 , and is called The Wrestlers , and although they serve fast food , they have received a high customer rating . \nname : The Golden Curry | family friendly : yes | near : The Six Bells||If you are looking for a good place to eat with your family try The Golden Curry near The Six Bells . \nname : The Wrestlers | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a kid - friendly Chinese restaurant with high ratings known as The Wrestlers . Prices vary from £ 20 - 25 . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel and the riverside is Browns Cambridge coffee shop . It offers average Italian food but is not family - friendly . \nname : The Golden Curry | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry provides Indian food It is located in the riverside . It is near Café Rouge . Its customer rating is 1 out of 5 . \nname : The Wrestlers | Type : coffee shop | food : French | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop is not family - friendly , sells French food , and has a price range of less than £ 20 . It is located in the riverside area near Raja Indian Cuisine . \nname : The Rice Boat | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a three star English style restaurant located near Express by Holiday Inn . It is in the low price range and public restrooms are available . \nname : Alimentum | food : Japanese | price : more than £ 30 | area : riverside | family friendly : yes||Alimentum restaurant serves Japanese food in the riverside area . It is child friendly with a price range of more than 30 pounds . \nname : Fitzbillies | Type : coffee shop | food : Fast food | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a child friendly coffee shop with a high rating serving fast food in the more than £ 30 price range . \nname : Loch Fyne | food : Indian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||There is an Indian called Loch Fyne near to The Rice Boat in the riverside . It has low customer rating . \nname : The Plough | Type : pub | food : Chinese | price : less than £ 20 | family friendly : no | near : Café Rouge||The Plough is a cheap pub located near Café Rouge , which also serves Chinese food for less the £ 20 . It is not family friendly . \nname : Alimentum | food : Fast food | price : cheap | customer rating : average | area : riverside | near : Yippee Noodle Bar||Alimentum is a cheap fast food restaurant located near Yippee Noodle Bar in Riverside . The restaurant has received an average rating . \nname : Cocum | Type : pub | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced pub with a 1 out of 5 rating . It is also kid friendly \nname : The Golden Curry | food : Italian | customer rating : 1 out of 5 | family friendly : yes||A 1 out of 5 star rated restaurant , The Golden Curry , is children friendly and serves Italian food . \nname : The Phoenix | food : Fast food | price : high | customer rating : 1 out of 5 | area : riverside||A 1 star high - priced restaurant north of the city centre is The Phoenix . \nname : The Eagle | Type : coffee shop | food : Fast food | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a low - priced , family - friendly , Fast food restaurant and coffee shop with a great customer rating of 5 out of 5 . It is located near Burger King in the city centre . \nname : The Waterman | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||The Waterman provides Chinese food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : The Twenty Two | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : The Rice Boat||The Twenty Two is situated near The Rice Boat Riverside with average pricing and 1 star reviews . This place is not recommended for children . \nname : The Waterman | food : Fast food | price : cheap | customer rating : average | area : riverside | family friendly : yes||The Waterman is a restaurant providing average quality food and family services in the low price range . It is located in the north of the city \nname : The Waterman | Type : pub | food : Japanese | customer rating : low | area : riverside||The Waterman is a one - star pub near the River that provides sushi . \nname : The Waterman | Type : pub | food : Fast food | customer rating : 5 out of 5 | area : city centre||The Waterman is a fast food pub located in the city centre . It has a high rating of 5 out of 5 . \nname : The Dumpling Tree | Type : restaurant | food : Chinese | price : high||The Dumpling Tree is a Chinese restaurant with a high price range \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||The Giraffe is a family friendly pub that serves English food and is based in Riverside . \nname : Giraffe | Type : pub | food : English | area : riverside | family friendly : yes||There is a children - friendly pub by the riverside named Giraffe that serves English food \nname : Loch Fyne | Type : restaurant | food : Japanese | price : moderate | family friendly : no||Loch Fyne is an average priced Japanese restaurant . It is not suitable for families . \nname : The Rice Boat | price : £ 20 - 25 | customer rating : high | near : Rainbow Vegetarian Café||The Rice Boat has a high customer rating and offers dishes for around £ 20 - 25 . It can be found near the Rainbow Vegetarian Café . \nname : The Golden Curry | food : Japanese | customer rating : average | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry offers Japanese food . It has an average customer rating and there is no family area . It is located in the city centre , near to Café Rouge . \nname : The Dumpling Tree | Type : coffee shop | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Café Sicilia||In the riverside area there is a kid friendly coffee shop called The Dumpling Tree . Prices range from £ 20 - 25 and it is near Café Sicilia . \nname : The Eagle | Type : coffee shop | food : French | price : more than £ 30 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop serves French food for more than £ 30 in the city centre near Burger King . It is children friendly but has a low customer rating . \nname : The Golden Curry | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Café Rouge||The Golden Curry , in the city centre near Café Rouge , is a children friendly Chinese restaurant . \nname : The Phoenix | food : French | price : £ 20 - 25 | customer rating : high | area : riverside||The Phoenix is a five star restaurant located near the river that serves mid - priced food and drinks . \nname : Blue Spice | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Blue Spice is a one star , low price establishment not intended for the whole family . \nname : The Olive Grove | Type : pub | food : English | price : less than £ 20 | area : riverside | family friendly : yes||The Olive Grove Pub offers traditional British breakfast and welcomes families too . \nname : The Golden Curry | food : English | customer rating : 1 out of 5 | family friendly : yes||The Golden Curry , a great restaurant with good food for the whole family . \nname : The Dumpling Tree | Type : restaurant | food : Fast food | price : high||the dumpling tree is a fast food restaurant with a high price range \nname : Cotto | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | near : The Portland Arms||Price ranging more than £ 30 , at the riverside near The Portland Arms , there is a Japanese coffee shop named Cotto with low customer rating . \nname : The Rice Boat | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a Chinese food restaurant located near the Express by Holiday Inn in City Centre . The restaurant offers cheap , average food in a family friendly space . \nname : The Rice Boat | food : Indian | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is an Indian restaurant in the city centre , near to the Express by Holiday Inn . It 's not kids friendly but has a high customer rating . The price range is £ 20 - 25 . \nname : The Phoenix | food : Japanese | customer rating : 3 out of 5 | area : riverside||A decent Japanese restaurant along the riverside is The Phoenix . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : yes||There is a kid friendly fast food restaurant called Loch Fyne . \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||Moderately priced fast food can be found at the 1 out of 5 rated coffee shop called The Eagle . It 's near Burger King in city centre . This coffee shop is not kid friendly . \nname : The Punter | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||There is a cheap coffee shop The Punter located at the Café Sicilia that provides food and beverages like wine . \nname : The Waterman | food : Japanese | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a family friendly restaurant that server Japanese food , they are near Crown Plaza Hotel . \nname : The Punter | Type : coffee shop | food : Italian | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||There is a coffee shop which serves Italian cuisine with a high customer rating . It is called The Punter and is located close to Café Sicilia . It has a price range of more than £ 30 and it is not child - friendly . \nname : Wildwood | Type : pub | food : Japanese | price : high | customer rating : 3 out of 5||Wildwood is an more expensive pub which serves Japanese food , it has a mediocre customer rating . \nname : The Golden Curry | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Café Rouge||The Golden Curry is a low - rated Chinese restaurant that is located near Café Rouge in city centre . It is not family friendly . \nname : The Rice Boat | food : Indian | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Rice Boat is a restaurant that serves Indian food , customer service rating 1 out of 5 , located in Riverside , child friendly \nname : The Twenty Two | food : French | area : city centre | family friendly : no||The Twenty Two shop has no French speaking people in the city centre . \nname : The Twenty Two | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : The Rice Boat||For a cheap restaurant with a high customer rating , you might want to try The Twenty Two , which is family - friendly and conveniently located in the city center , near The Rice Boat . \nname : The Rice Boat | food : Chinese | customer rating : average | area : riverside | family friendly : no||The Rice Boat provides Chinese food It is located in the riverside . Its customer rating is average . \nname : Bibimbap House | food : Italian | price : cheap | area : riverside | near : Clare Hall||Riverside Bibimbap House , near Clare Hall , has Italian food at a cheap price range . \nname : The Punter | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop is in the moderate price range , serves fast food and is not family - friendly . It is located near Café Sicilia and has a 1 out of 5 customer rating . \nname : Alimentum | food : Indian | price : moderate | customer rating : 3 out of 5 | area : city centre | near : Yippee Noodle Bar||Alimentum is a moderately priced Indian restaurant rated 3 out of 5 in the city centre near the Yippee Noodle Bar . \nname : The Golden Palace | Type : coffee shop | food : French | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop that offers French food . Customer ratings are low . It is located in the city center . Prices are less than £ 20 \nname : The Golden Curry | food : Indian | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Rouge||The Golden Curry is an Indian restaurant in Riverside . It is located near the Café Rouge and is highly rated 5 out of 5 by customers that were served . It is not family friendly though . \nname : The Phoenix | food : French | price : more than £ 30 | customer rating : low | area : riverside||The Phoenix is an expensive , but 1 - star rated wine Café located in City centre . \nname : The Vaults | food : Italian | price : less than £ 20 | family friendly : no||The Vaults is not family - friendly place to have Italian food for less than £ 20 . \nname : Alimentum | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : Yippee Noodle Bar||Customers have given a high rating to , Alimentum , an expensive English restaurant located in the city centre , near the Yippee Noodle Bar . \nname : The Cricketers | Type : pub | customer rating : low | family friendly : yes | near : Ranch||The Cricketers is a family friendly pub near Ranch that has a low customer rating . \nname : The Vaults | Type : pub | price : £ 20 - 25 | customer rating : high | near : Café Adriatic||The Vaults is a pub that is affordable , it has a high customer rating and is near Café Adriatic . \nname : The Wrestlers | Type : coffee shop | food : Japanese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop that is fairly priced and serves sushi . It is located next to the Raja Indian Cuisine . \nname : Aromi | Type : coffee shop | food : Japanese | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop by the river which also has sushi . It is family friendly , but only is rated one star . It is close to the City centre . \nname : The Rice Boat | food : Italian | customer rating : average | area : riverside | family friendly : yes||There is a family friendly place called The Rice Boat . It offers Italian food . It is located in the riverside area and has an average customer rating . \nname : Cocum | Type : pub | price : less than £ 20 | customer rating : average | family friendly : yes||Cocum is a family friendly pub with a price range of less than £ 20 and an average customer rating . \nname : The Dumpling Tree | Type : pub | food : French | family friendly : yes | near : The Portland Arms||The Dumpling Tree is a kid friendly pub located near The Portland Arms that serves French food . \nname : Midsummer House | food : Chinese | customer rating : high | near : Café Rouge||Midsummer House is located near the Café Rouge and provides Chinese food with a high customer rating . \nname : Cocum | Type : pub | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a child - friendly pub , but is not considered to be a nice place . It 's also quite expensive . \nname : The Rice Boat | food : Japanese | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Rice Boat is a not a family - friendly Japanese restaurant . It is located in the riverside area and has a rating of 5 out of 5 . \nname : Browns Cambridge | food : English | price : moderate | customer rating : 1 out of 5||Browns Cambridge is moderately priced English food with a 1 out of 5 customer rating \nname : Midsummer House | food : French | price : less than £ 20 | customer rating : low | near : All Bar One||Midsummer House is situated near All Bar One and serves French food for less than £ 20 \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||A family friendly restaurant called Zizzi with a low customer rating in riverside costing less than 20 pounds . \nname : Blue Spice | food : English | price : more than £ 30 | area : riverside||There is a place on the riverside that serves English food . The restaurant is called Blue Spice and the prices run above 30 . \nname : Fitzbillies | Type : coffee shop | food : French | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Located in the city centre , Fitzbillies is a medium priced family friendly coffee shop with a five star rating . \nname : Blue Spice | food : French | price : less than £ 20 | area : city centre||Blue Spice in the city centre is a French restaurant that cost less than 20 euros . \nname : The Golden Curry | food : Fast food | price : £ 20 - 25 | family friendly : yes | near : The Bakers||The Golden Curry fast food restaurant near The Bakers is kid friendly and affordable . \nname : Alimentum | food : French | price : cheap | area : riverside | family friendly : yes||Alimentum is a cheap restaurant in the area of riverside with French food for the whole family . \nname : Loch Fyne | food : Indian | customer rating : 1 out of 5 | area : riverside | near : The Rice Boat||Loch Fyne is a low rated Indian in the riverside area near The Rice Boat . \nname : The Waterman | food : Fast food | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||The Waterman serves Fast food with price range more than £ 30 . It is children friendly and is located in the riverside . \nname : Green Man | food : Japanese | price : less than £ 20 | area : city centre | family friendly : no | near : All Bar One||Green Man Japanese offers a non family - friendly environment in city centre near All Bar One . We feature a price range of less than £ 20 . \nname : The Waterman | food : Indian | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Waterman is a cheap Indian restaurant in Riverside that is family friendly and rated 5 out of 5 . \nname : The Olive Grove | Type : pub | food : English | price : moderate | area : riverside | family friendly : yes||The Olive Grove pub is moderately expensive and located near the river and is family friendly . \nname : The Cricketers | Type : restaurant | food : Italian | near : All Bar One||Near All Bar One , there is an Italian restaurant , The Cricketers . \nname : Loch Fyne | Type : restaurant | food : Fast food | family friendly : no||Loch Fyne It is for the whole family \nname : The Vaults | Type : restaurant | food : Fast food||For fast food try The Vaults restaurant . \nname : The Cambridge Blue | Type : restaurant | food : English | customer rating : 5 out of 5||There is a high - rated restaurant called The Cambridge Blue . It serves English food . \nname : The Eagle | food : English | customer rating : high||The Eagle is a restaurant that is rated highly , that serves English food \nname : The Wrestlers | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers provides Chinese food in the moderate price range . Its customer rating is 1 out of 5 . \nname : The Twenty Two | Type : pub | customer rating : average | area : riverside | near : Café Sicilia||There is a pub on the riverside near Café Sicilia called The Twenty Two . It has an average customer rating . \nname : The Twenty Two | food : Indian | family friendly : yes||The Twenty Two , offers Indian food , and is children friendly . \nname : The Golden Curry | food : English | price : high | family friendly : yes | near : The Bakers||Situated near The Bakers is The Golden Curry . This child friendly establishment serves English food in the high price range . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a French Café with a high customer Rating and price Range of £ 20 - 25 but is not a kid friendly zone . \nname : Midsummer House | food : Indian | customer rating : 1 out of 5 | near : Café Rouge||Located near Café Rouge , Midsummer House is an Indian restaurant with a 1 of 5 customer rating . \nname : The Waterman | Type : pub | food : Chinese | customer rating : 3 out of 5 | area : riverside||The Waterman is a pub providing Chinese food It is located in the riverside . Its customer rating is 3 out of 5 . \nname : The Rice Boat | price : moderate | customer rating : 1 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat by Rainbow Vegetarian Café is rated 1 out of 5 and costs a moderate amount . \nname : The Golden Curry | food : French | customer rating : average | area : riverside | family friendly : yes | near : Café Rouge||The Golden Curry serves French food near Café Rouge , by the river . It is rated 3 out of 5 and is family - friendly . \nname : Fitzbillies | Type : coffee shop | food : French | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop is family friendly and has a 3 out of 5 star rating . \nname : Browns Cambridge | food : French | area : riverside | family friendly : yes | near : The Sorrento||Children friendly Browns Cambridge is in the riverside area near The Sorrento . It offers French food . \nname : The Rice Boat | food : Indian | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Express by Holiday Inn||The Rice Boat is located in the city center near the Express by Holiday Inn and is not children Friendly . It serves Indian food and has a high price range and a low customer rating of 1 out of 5 . \nname : Clowns | Type : pub | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside||The Clowns pub in the riverside area has a customer rating of 5 out of 5 . Meals starting at £ 30 . \nname : Alimentum | food : Italian | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||With a customer rating of 5 out of 5 Alimentum serves inexpensive Italian food . It can be found in city centre near Yippee Noodle Bar . \nname : Strada | food : Japanese | price : more than £ 30 | customer rating : 5 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||If you are looking for a Japanese food there is a place near Rainbow Vegetarian Café called Strada . Price ranging more than £ 30 with an outstanding customer rating 5 out of 5 the only down side is that they are not children friendly . \nname : The Plough | Type : pub | food : English | price : £ 20 - 25 | family friendly : yes | near : Café Rouge||The Plough is a kid friendly pub serving English food for under £ 25 located near Café Rouge \nname : Strada | food : French | price : £ 20 - 25 | customer rating : 3 out of 5 | family friendly : no | near : Rainbow Vegetarian Café||Strada for French Food , located near Rainbow Vegetarian Café . Price range is £ 20 - 25 but not kids friendly . Its costumer rating reach 3 out of 5 . \nname : The Phoenix | food : Japanese | customer rating : low | area : city centre||The Phoenix is located in the center of the city . It serves Japanese food and has a low customer rating . \nname : The Rice Boat | food : Japanese | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Express by Holiday Inn||The Rice Boat is in riverside near Express by Holiday Inn . They have Japanese food with prices ranging from £ 20 - 25 , it is non kids friendly and has a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Italian | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop It provides fast foods at a reduced price and is located near the river , there Burger King \nname : The Eagle | Type : coffee shop | food : Indian | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is kid friendly a coffee shop in the riverside area near a Burger King that serves Indian food for 20 - 25 euros and has a high customer rating . \nname : Midsummer House | food : Fast food | price : less than £ 20 | customer rating : low | near : All Bar One||Near All Bar One is a fast food place named Midsummer House . It has a low customer rating and is in the less than £ 20 price range . \nname : Wildwood | Type : coffee shop | food : Italian | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is a Italian coffee shop near Ranch rating 5 out o 5 for their cheap prices named Wildwood \nname : The Eagle | Type : coffee shop | food : Fast food | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||A fast food coffee shop located in riverside , near Burger King is The Eagle . It has low customer rating since it is not kid friendly . \nname : The Wrestlers | food : French | price : £ 20 - 25 | customer rating : high | family friendly : no||The Wrestlers is a French Café with a high customer Rating and price Range of £ 20 - 25 but is not a kid friendly zone . \nname : The Phoenix | food : English | price : cheap | customer rating : average | area : city centre||The Phoenix is located in the city centre area . It is a cheap restaurant that serves English style food . Customers give the restaurant an average rating . \nname : Blue Spice | price : more than £ 30 | area : riverside||Blue Spice can be found by the riverside with a price range of more than £ 30 . \nname : Bibimbap House | food : Japanese | price : cheap | area : riverside | near : Clare Hall||Bibimbap House menu prices are cheap . It is located near Clare Hall in Riverside . The serve Japanese food . \nname : Browns Cambridge | Type : coffee shop | food : Italian | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||For a child friendly coffee shop located in the riverside area , head to Browns Cambridge . Serving Italian food , this coffee shop has an average customer rating and can be found near Crowne Plaza Hotel . \nname : Travellers Rest Beefeater | Type : restaurant | price : moderate | family friendly : yes||A kids friendly , moderately priced restaurant is Travellers Rest Beefeater . \nname : Alimentum | food : Japanese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : Yippee Noodle Bar||There is a low customer rating average price restaurant Alimentum . They are in riverside near Yippee Noodle Bar and they serve Japanese food . \nname : The Mill | Type : pub | food : English | price : high | area : city centre||The Mill is an English pub in the city centre which is more expensive than others . \nname : The Phoenix | food : Fast food | price : less than £ 20 | customer rating : low | area : riverside||The Phoenix is a cheap fast food restaurant by the river in Cambridge \nname : The Punter | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||If you are looking for a average priced Japanese coffee shop you should try The Punter which is located near to Café Sicilia . Although not child friendly it is highly rated . \nname : Blue Spice | food : Chinese | price : high | area : riverside||There is a higher - priced Chinese restaurant by the riverside called Blue Spice . \nname : The Rice Boat | food : French | area : riverside||The Rice Boat provides French food and is located in the riverside area \nname : The Golden Curry | food : French | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Rouge||Child friendly establishment , The Golden Curry serves French food , has a customer rating of 1 out of 5 and is situated near Café Rouge , riverside . \nname : The Mill | Type : pub | food : Chinese | price : high | area : city centre||The Mill is a pub that serves Chinese food . It is in the high price range and is located in the city centre . \nname : Cocum | Type : coffee shop | food : Japanese | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a Japanese coffee shop with high customer ratings . The price range is £ 20 - 25 but they are not child friendly . \nname : Zizzi | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Zizzi is a coffee shop located in the city centre with a low customer rating and a price range of less than £ 20 . It is not family - friendly . \nname : Browns Cambridge | price : more than £ 30 | customer rating : high||Browns Cambridge is both expensive and very highly rated . \nname : Browns Cambridge | food : Fast food | price : £ 20 - 25 | customer rating : 3 out of 5||There is a low price restaurant Browns Cambridge located in the center of the city . It has really good reviews . \nname : Fitzbillies | food : Italian | price : high | near : The Six Bells||You will be dining at Fitzbillies . It serves Italian food and has a high price range . It is located at The Six Bells . \nname : The Waterman | food : French | family friendly : yes | near : Crowne Plaza Hotel||The Waterman serves French cuisine in a family friendly environment near Crowne Plaza Hotel . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||Located at Riverside , The Twenty Two is an English food restaurant with a kid friendly environment . \nname : The Phoenix | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Phoenix is a Chinese restaurant in city center . with a low rating and price range under 20 . \nname : Fitzbillies | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Express by Holiday Inn||Fitzbillies near Express by Holiday Inn has a high customer rating , is kid friendly , and costs £ 20 - 25 . \nname : The Rice Boat | food : Chinese | area : riverside||There is a Chinese restaurant named The Rice Boat located in the area of Riverside \nname : The Waterman | food : French | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||The Waterman is a French restaurant in the city centre . It has a low rating and is not family - friendly , however the price range is less than £ 20 . \nname : The Phoenix | food : French | customer rating : low | area : city centre||The Phoenix in the city center providing French food is rated low . \nname : Alimentum | food : Italian | price : less than £ 20 | area : riverside | family friendly : no||Alimentum serves Italian food at a low price near the City centre , but is not family friendly \nname : The Punter | food : English | price : more than £ 30||The Punter serves English food and is in the price range of more than £ 30 . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : city centre||The Eagle is located in the city centre , it has an average customer rating and is in the lower end of the price range at less than £ 20 \nname : Clowns | Type : pub | price : moderate | customer rating : 1 out of 5 | area : riverside||Clowns is a pub in the riverside area . It is moderately priced with a customer rating of 1 out of 5 \nname : Cotto | Type : coffee shop | food : Fast food | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||The Portland Arms a coffee shop near riverside , has cheap fast food a , has average ratings , according to Cotto . \nname : The Twenty Two | food : English | area : riverside | family friendly : yes||The Twenty Two English children friendly food area is by the riverside \nname : The Punter | food : English | price : high||The high price range The Punter serves good quality English food \nname : Travellers Rest Beefeater | price : £ 20 - 25 | customer rating : 3 out of 5 | area : riverside | near : Café Adriatic||With a price range of £ 20 - 25 near the Café Adriatic riverside the Travellers Rest Beefeater has a rating of 3 out of 5 . \nname : Loch Fyne | Type : restaurant | food : Fast food | price : moderate | family friendly : yes||There is a moderate - priced and kids - friendly restaurant Loch Fyne that offers Fast food . \nname : Strada | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Strada is a moderately priced restaurant . It is kid friendly and has a 3 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : Japanese | price : more than £ 30 | customer rating : low | area : riverside | family friendly : no||There is a Japanese coffee shop in riverside called the Fitzbillies which has a low customer rating , is not children friendly , and also has a price range more than £ 30 . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||A cheap , highly rated , English restaurant , Alimentum , is located in the city center near Yippee Noodle Bar . \nname : Blue Spice | food : French | price : more than £ 30 | area : riverside||Blue Spice is a French food place in the riverside area that 's price range is more than 30 . \nname : The Golden Palace | Type : coffee shop | food : Indian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop serving Indian food at high prices in Riverside . \nname : Alimentum | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : Yippee Noodle Bar||Located near Yippee Noodle Bar in the city centre , Alimentum is a restaurant serving cheap English food . They have a rating of 5 out of 5 . \nname : The Rice Boat | price : less than £ 20 | customer rating : low | near : Rainbow Vegetarian Café||Although it has a lower customer rating , The Rice Boat near the Rainbow Vegetarian Café , has a price range of less than £ 20 . \nname : The Rice Boat | price : more than £ 30 | customer rating : 5 out of 5 | near : Rainbow Vegetarian Café||The Rice Boat located near the Rainbow Vegetarian Café has a price range of over 30 pounds and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Fast food | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers , located near The Portland Arms , is a coffee and fast food shop . The coffee shop received average ratings by its customers and is child - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Fast food | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre , near the Crowne Plaza Hotel , there is a non family - friendly coffee shop and fast food place named Taste of Cambridge . \nname : Zizzi | Type : coffee shop | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Zizzi is a cheap and family - friendly coffee shop in the city with a customer rating of 5 out of 5 . \nname : Blue Spice | price : less than £ 20 | customer rating : average | area : riverside | family friendly : no||A not family - friendly eatery , called Blue Spice . Located in the Riverside area . Has a price range of £ 20 , and holds an average customer rating . \nname : Midsummer House | food : Italian | price : more than £ 30 | customer rating : high | near : All Bar One||There is a high rated Italian place near All Bar One called Midsummer House . It costs more than 30 pounds . \nname : The Waterman | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||The Waterman serves English food located in the city centre area . High customer rating , kid friendly with prices ranging from £ 20- £ 25 \nname : Blue Spice | Type : coffee shop | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Avalon||the Blue Spice is a coffee shop near from Avalon at city centre the customer rating is low \nname : Strada | food : Indian | price : high | customer rating : average | family friendly : no | near : Rainbow Vegetarian Café||Strada Indian food is expensive and average rated with no kids allowed by Rainbow Vegetarian Café . \nname : The Eagle | Type : coffee shop | food : Indian | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that offers Indian food for a cheap price with an average rating . In the area of city centre near Burger King , not family friendly . \nname : The Golden Palace | Type : coffee shop | food : Italian | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace has a high price range and a 1 out of 5 customer rating . The Golden Palace is a riverside coffee shop that serves Italian food . \nname : Alimentum | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : Yippee Noodle Bar||Alimentum near Yippee Noodle Bar in the city centre serves cheap Chinese food but is not highly rated . \nname : The Eagle | price : less than £ 20 | customer rating : average | area : riverside||The Eagle has an average customer rating in the riverside area with a price range of less than 20 pounds . \nname : The Waterman | food : Fast food | family friendly : yes | near : Crowne Plaza Hotel||The Waterman is a kid friendly fast food restaurant that 's located by the Crown Plaza Hotel . \nname : The Dumpling Tree | Type : pub | food : Japanese | family friendly : yes | near : The Portland Arms||The Dumpling Tree pub serves Japanese food , it 's child friendly and is located near The Portland Arms . \nname : Strada | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Strada is a kids friendly moderate price range , with the customer rating of 1 of of 5 . \nname : Green Man | price : less than £ 20 | area : riverside | family friendly : no||Riverside has an inexpensive adult restaurant called Green Man . \nname : Midsummer House | food : English | price : cheap | customer rating : average | near : All Bar One||Midsummer House Located near All Bar One with a three star rating \nname : The Wrestlers | food : Fast food | price : less than £ 20 | customer rating : low | family friendly : yes||The Wrestlers is a cheap fast food restaurant with a below than average customer rating . \nname : The Punter | food : Japanese | price : more than £ 30||The Punter is a high end Sushi restaurant . \nname : The Waterman | food : Japanese | price : less than £ 20 | customer rating : average | area : riverside | family friendly : yes||The Waterman is a three star family friendly sushi bar located north from the City Centre \nname : Clowns | Type : restaurant | near : The Portland Arms||A restaurant called Clowns is situated near The Portland Arms . \nname : Blue Spice | Type : coffee shop | price : more than £ 30 | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Avalon||Blue Spice is a child - friendly coffee shop located by the riverside , near Avalon . Its prices are over £ 30 . Its customer ratings are 5 out of 5 . \nname : The Plough | Type : pub | food : English | price : less than £ 20 | family friendly : no | near : Café Rouge||A cheap pub The Plough is located near Café Rouge . It is not family friendly . \nname : Wildwood | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop near The Ranch with a high customer rating and classic English food . Wildwood offers well priced food . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : average||The Cambridge Blue is an Italian food restaurant . It is averagely rated . \nname : The Mill | Type : coffee shop | food : French | price : more than £ 30 | area : city centre | near : The Sorrento||Located in the city centre area near The Sorrento , is the coffee shop The Mill that serves French food and has an average cost of more than £ 30 . \nname : The Rice Boat | food : Indian | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Express by Holiday Inn||The Rice Boat is a cheap Indian restaurant in the center of the city near Express by Holiday Inn . It is family friendly and has the highest customer rating . \nname : The Vaults | Type : restaurant | food : Chinese||A Chinese restaurant is The Vaults . \nname : The Cambridge Blue | Type : restaurant | food : Italian | customer rating : high||The Cambridge Blue is an Italian restaurant with high ratings . \nname : The Eagle | Type : coffee shop | food : Italian | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is an inexpensive coffee shop near Burger King and the river . It is family - friendly and serves pasta . \nname : Aromi | Type : restaurant | food : English | area : city centre||Aromi is an English restaurant in the city centre . \n"
  },
  {
    "path": "examples/NLG/data/e2e/valid.txt",
    "content": "name : Alimentum | area : city centre | family friendly : no||There is a place in the city centre , Alimentum , that is not family - friendly . \nname : Alimentum | area : city centre | family friendly : no||In the city centre there is a venue name Alimentum , this is not a family - friendly venue . \nname : Alimentum | area : city centre | family friendly : no||Alimentum is not a family - friendly place , located in city centre . \nname : Alimentum | area : city centre | family friendly : no||Alimentum is not a family - friendly arena and is located in the city centre . \nname : Alimentum | area : city centre | family friendly : no||Alimentum is not a family - friendly place in the city centre . \nname : Alimentum | area : city centre | family friendly : no||Alimentum in city centre is not a family - friendly place . \nname : Alimentum | area : city centre | family friendly : no | near : Burger King||Alimentum is not family - friendly , and is near the Burger King in the city centre . \nname : Alimentum | area : city centre | family friendly : no | near : Burger King||Near Burger King in city centre is the adult establishment Alimentum . \nname : Alimentum | area : city centre | family friendly : no | near : Burger King||Alimentum is not family - friendly . Alimentum is in the city center and it is near Burger King . \nname : Alimentum | area : city centre | family friendly : no | near : Burger King||Alimentum is near Burger King in the city center . Alimentum is not family - friendly . \nname : Alimentum | area : city centre | family friendly : no | near : Burger King||Near the Burger King and in the city centre is Alimentum , which is not family - friendly . \nname : Alimentum | area : city centre | family friendly : no | near : Burger King||Alimentum is an adult establish found in the city centre area near Burger King . \nname : Alimentum | area : city centre | family friendly : yes||Alimentum is a family - friendly place in the city centre . \nname : Alimentum | area : city centre | family friendly : yes||In the city centre there is a family - friendly place called Alimentum . \nname : Alimentum | area : city centre | family friendly : yes||The city centre has a family - friendly restaurant named Alimentum . \nname : Alimentum | area : city centre | family friendly : yes||Alimentum city centre is family - friendly \nname : Alimentum | area : city centre | family friendly : yes||Alimentum is a family - friendly city centre . \nname : Alimentum | area : city centre | family friendly : yes||There is a family - friendly restaurant named Alimentum in the city centre . \nname : Alimentum | area : city centre | family friendly : yes | near : Burger King||Alimentum is family oriented and located near Burger King in the city centre . \nname : Alimentum | area : city centre | family friendly : yes | near : Burger King||The Alimentum is a family - friendly restaurant located in the city centre near Burger King . \nname : Alimentum | area : city centre | family friendly : yes | near : Burger King||Located in the city centre near Burger King , the Alimentum is a family - friendly restaurant . \nname : Alimentum | area : city centre | family friendly : yes | near : Burger King||Alimentum , located near Burger King in the city centre , is family - friendly . \nname : Alimentum | area : city centre | family friendly : yes | near : Burger King||Located Burger King in the city centre , Alimentum is family - friendly . \nname : Alimentum | area : city centre | family friendly : yes | near : Burger King||Alimentum is family - friendly and located in the city centre near Burger King . \nname : Alimentum | area : riverside | family friendly : no||Alimentum looks like a location where people or families aren 't allowed \nname : Alimentum | area : riverside | family friendly : no||Alimentum isn 't family - friendly but it is in riverside . \nname : Alimentum | area : riverside | family friendly : no||If you are searching for a place to go that 's not family - friendly and near the riverside , Alimentum is the place for you . \nname : Alimentum | area : riverside | family friendly : no||Alimentum is a family - friendly living in riverside . \nname : Alimentum | area : riverside | family friendly : no||Alimentum is a family - friendly living in riverside . \nname : Alimentum | area : riverside | family friendly : no||Alimentum , located on the river . No good for families . \nname : Alimentum | area : riverside | family friendly : no||Riverside has Alimentum , which is not family - friendly . \nname : Alimentum | area : riverside | family friendly : no||Alimentum is a not family - friendly place near the riverside . \nname : Alimentum | area : riverside | family friendly : no||No good for families . Alimentum , close to the river . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Burger King is near the Alimentum which is not family friendly and located north of the City center . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum is a restaurant located in riverside near Burger King , Alimentum is not a family - friendly restaurant . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Located off the river near Burger King , Alimentum does not allow families . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum is a non - family - friendly establishment near Burger King at the riverside . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum is a great venue located in riverside near Burger King , is not a family - friendly restaurant . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum at the riverside near Burger King is a non - family - friendly establishment . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Not family friendly Alimentum across from Burger King \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum , located near Burger King , is not family - friendly . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum is located near Burger King in riverside . It is not family - friendly . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum is not family - friendly . It is located near Burger King in riverside . \nname : Alimentum | area : riverside | family friendly : no | near : Burger King||Alimentum across from Burger King no kids \nname : Alimentum | area : riverside | family friendly : yes||A kid friendly venue named Alimentum is located on the riverside . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum , situated by the river , is child friendly . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum is child friendly and is located by the river . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum is a family friendly place in the riverside area . \nname : Alimentum | area : riverside | family friendly : yes||In the riverside area there is a restaurant that is kid friendly named Alimentum \nname : Alimentum | area : riverside | family friendly : yes||For a children friendly establishment in the riverside area , try Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||The riverside restaurant , Alimentum is very child friendly and great for adults as well . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum is a child - friendly venue located on the riverside . \nname : Alimentum | area : riverside | family friendly : yes||There is a family - friendly venue in the riverside area called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||At the riverside there is a friendly family place called Alimentum \nname : Alimentum | area : riverside | family friendly : yes||Located in riverside area , Alimentum restaurant is a place to bring the whole family . \nname : Alimentum | area : riverside | family friendly : yes||There is a riverside restaurant called Alimentum which is child friendly . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum can be found in riverside and is family friendly . \nname : Alimentum | area : riverside | family friendly : yes||Being beside the river , Alimentum is a family friendly place . \nname : Alimentum | area : riverside | family friendly : yes||A family friendly place near the riverside is called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||Visit Alimentum by the riverside , it is kids friendly . \nname : Alimentum | area : riverside | family friendly : yes||For a riverside , child friendly environment visit the Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum is located near the riverside . It is child friendly . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum in the riverside area is child friendly . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum , on the riverside , is family - friendly . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum is a child friendly place on the riverside . \nname : Alimentum | area : riverside | family friendly : yes||There is child friendly restaurant in the riverside area named Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum is a child - friendly place on the riverside . \nname : Alimentum | area : riverside | family friendly : yes||The Alimentum is in the riverside area . It is a family friendly place . \nname : Alimentum | area : riverside | family friendly : yes||The Alimentum is kid friendly and is located in the riverside area . \nname : Alimentum | area : riverside | family friendly : yes||On the riverside , there is a kids friendly venue called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum is kid - friendly and is located at the riverside . \nname : Alimentum | area : riverside | family friendly : yes||On the riverside there is a child friendly place called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||By the riverside you can find Alimentum , which is a family friendly place . \nname : Alimentum | area : riverside | family friendly : yes||In Riverside you will find the kid - friendly restaurant Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||If you want to take the children for a meal then try Alimentum they provide a child friendly service in their riverside setting . \nname : Alimentum | area : riverside | family friendly : yes||The Alimentum is in the riverside area . It is family friendly . \nname : Alimentum | area : riverside | family friendly : yes||If you are looking for a kids Friendly establishment in the riverside area , try Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||Located in the riverside area the Alimentum is kid friendly . \nname : Alimentum | area : riverside | family friendly : yes||Located in the riverside area , Alimentum is child friendly . \nname : Alimentum | area : riverside | family friendly : yes||A kid friendly place in riverside is Alimentum . \nname : Alimentum | area : riverside | family friendly : yes||Alimentum , located in the riverside area is kid friendly . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||You will find Alimentum a nice child friendly place . It is located near Burger King and riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is near Burger King and is not only riverside , but children friendly as well . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is a family friendly establishment in the riverside area near the Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Close - by to Burger King is Alimentum , a child - friendly restaurant by the riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||There is a family friendly place Alimentum located near Burger King in riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is a children - friendly spot near Burger King in Riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Located near to Burger King on the riverside , Alimentum is a child friendly establishment . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||There is a kid - friendly restaurant in riverside near the Burger King named Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||There is a kid friendly place in riverside near Burger King named Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is a family - friendly location in the Riverside area , near the Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||There is a child friendly place called Alimentum by the riverside , near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Family friendly venue near the Burger King on the riverside is called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Near the riverside is a kids friendly eatery called Alimentum . There is a Burger King close to it as well . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||In terms of kids friendly places , there 's Alimentum in Riverside , near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||For a family - friendly atmosphere in Riverside , check out Alimentum near the Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Near Burger King on the riverside , there 's a family friendly place named Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Near Burger King , there is a kid friendly place called Alimentum near the riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||This kids - friendly restaurant called Alimentum is located in riverside near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||By the riverside near Burger King , there 's a kid friendly Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is a child friendly establishment located near Burger King on the riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum , located near to Burger King on the riverside , is a child friendly establishment . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||In Riverside , near Burger King , there is a family friendly venue called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||The child - friendly Alimentum is near to Burger King by the riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Near Burger King is the child friendly Alimentum . It is by the river . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||The child - friendly riverside venue Alimentum is located near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Near Burger King , in the riverside area , is a place called Alimentum , and it is kid friendly . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is a kids friendly place in the riverside area near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Located riverside near Burger King , Alimentum is children friendly . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||There is a family friendly venue named Alimentum which is located at the riverside near Burger King \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Near Burger King is Alimentum , which is child friendly and runs along the riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is a family friendly place in riverside near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||There 's a kid - friendly restaurant named Alimentum , located near the Burger King at the riverside . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum in riverside is child friendly and is located near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Located near Burger King in the riverside area , Alimentum is known for its kid - friendly environment . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||In riverside , near Burger King , is a children family place called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Near the Burger King is a children friendly place called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||On the riverside near the Burger King there is a kids friendly place called Alimentum . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||Alimentum is a family friendly restaurant close to the river near Burger King . \nname : Alimentum | area : riverside | family friendly : yes | near : Burger King||There are child friendly establishments such as Burger King and Alimentum near the riverside . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is an Chinese coffee shop named Aromi near the riverside that has 1 out of 5 in the customer ranking and friendly with kid \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi , an interesting mix of coffee shop and Chinese cuisine . A child friendly restaurant and located in a riverside area , it has been rated number 1 by existing customers . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi coffee shop serves Chinese food in the riverside area and is kids friendly but has a customer rating of 1 out of 5 \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that offer Chinese cuisine . Rated number 1 by existing customers , it is located in a riverside area and welcomes children . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is an Chinese coffee shop has 1 out of 5 in the customer rating near the riverside and friendly with kid \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop in the riverside area . It sells Chinese food and has a customer rating of 1 out of 5 . It is very children friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a coffee shop in the riverside area called Aromi . It sells Chinese food and is children friendly . Overall , it has a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi 's a fairly decent coffee shop down at riverside . It has Chinese food and allows kids on the premises . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If you 're looking for a decent , family friendly coffee shop in riverside , then go to Aromi . It serves Chinese food there too . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Aromi coffee shop serves Chinese food , is kid friendly and has a customer rating of 3 out of 5 . It is located riverside . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that serves Chinese food in the Riverside area with a good customer rating of 3 out of 5 , it is not child friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a kid friendly coffee shop with a 3 out of 5 rating serving Chinese food located in the Riverside area . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a coffee shop that serves Chinese food called Aromi , in the Riverside area , it is not child friendly and has a customer rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The kid friendly coffee shop , Aromi , serves Chinese food and is located riverside . It has a customer rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop providing Chinese food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop and also offer Chinese food . We have a customer rating of 5 out of 5 . Located in city center . Unfortunately not family friendly \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Given a 5 out of 5 satisfaction rate by its customers , Aromi is a coffee shop joint known for its Chinese food . This non - family friendly restaurant is located in the city centre . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is a coffee shop selling Chinese food . It has a customer rating of 5 out of 5 stars . It is not family friendly and is located in the city centre \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||coffee shop and Chinese food available at the Aromi . Customer rating 5 out of 5 . City center based . Not family friendly \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no||There is a coffee shop called Aromi that provides Chinese food . It has a customer rating of 5 out of 5 tars and is located in the city centre . It is not family friendly \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family friendly coffee shop in the city centre that serves Chinese food , Aromi . It has a 5 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a coffee shop that serves Chinese food in the city centre . It is family friendly and has a 5 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi coffee shop serves Chinese food in the city centre . It is of high standard and families are welcome . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||coffee shop Aromi serves Chinese food in a family friendly environment and is of high quality . It is situated in the city centre . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the city centre . Its customer rating is 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi coffee shop serves Chinese food in the riverside area . It is highly rated but not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a highly rated coffee shop providing Chinese food in the riverside area . It is not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a coffee shop on riverside that serves Chinese food Aromi . It is not family friendly and is rated 5 out of 5 by customers . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a coffee shop that serves Chinese food on riverside . It has a 5 out of 5 customer rating and is not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a Chinese food coffee shop in riverside . It is family friendly and gets a customer rating of 5 out of 5 stars . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop , which offers Chinese food , and has a customer rating of 5 out of 5 . It is located in a riverside area , and is family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that serves Chinese food . This family friendly eatery in riverside gets 5 out of 5 stars . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||For highly - rated Chinese food in a family - friendly coffee shop setting , Aromi in riverside is a great option . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The highly - rated family - friendly coffee shop , Aromi , offers Chinese food in the riverside area . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Chinese food in the riverside area can be found at the highly - rated family - friendly coffee shop , Aromi . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi a coffee shop in riverside serves family - friendly Chinese food rated 5 out of 5 . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop serving Chinese food that is rated average and is located in the city centre . Aromi is not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no||Aromi coffee shop serves Chinese food , with an average customer rating , located in the city centre , are not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no||Aromi , coffee shop , Chinese food , average customer rating , city centre , non family friendly \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no||In there city center there is a coffee shop named Aromi that is average rated and serves Chinese food \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no||Aromi coffee shop makes Chinese food , maintains an average customer service rating and are located in the city centre , service is geared towards adult clients not families . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no||Aromi is an average rated coffee shop that serves Chinese food in the city center \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no||Aromi , coffee shop , Chinese food , customer rating average , city centre , no children \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes||In city centre , Aromi is a coffee shop having Chinese cuisine with average customer rating and is family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes||Aromi is a family friendly coffee shop that serves Chinese food . It is located in the city centre and has an average customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop that provides Chinese food . It has an average rating and it located in the city centre . It is family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop providing Chinese food at average quality , it is in the city centre and is family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes||Aromi is a family friendly coffee shop that provides Chinese food located in the city centre with average rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes||Aromi coffee shop have Chines food , customer rating is average and it is family friendly . It is located in city centre . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no||Aromi has an average customer rating in Riverside that provides Chinese food . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no||Aromi is a Chinese coffee shop with an average customer rating . It is in the riverside area , but not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no||Aromi coffee shop serves average - rated Chinese food . Aromi is in the riverside area and is not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is average . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no||Aromi , a non - family friendly restaurant in the riverside area , serves average - rated Chinese food . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no||In the riverside area there is a Chinese coffee shop named Aromi . It is not really family friendly and has an average rating from customers . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly Chinese food coffee shop in the riverside area . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||in the riverside area , Aromi Chinese coffee shop , family friendly , rates average \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi coffee shop have Chinese food with average customer rating in riverside and also children friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||There is an average Chinese coffee shop at the riverside that is children friendly called Aromi . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||In riverside , a coffee shop named Aromi provide Chinese cuisine with kids friendly environment and average rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly Chinese coffee shop located in riverside . This establishment has a customer rating of average . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi is an average Chinese coffee shop by the river that caters to children also . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop featuring Chinese cuisine . It is located in riverside and has an AVERAGE customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi Is a coffee shop that serves Chinese food . It is located at the riverside . It has an average customer rating and it 's family friendly \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi is an average coffee shop in the riverside area , but they also serve Chinese food . Aromi is also children friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Family friendly Chinese food coffee shop in the riverside area try Aromi . Very average priced . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi Chinese coffee shop , family friendly , rates average in the riverside area . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes||Aromi , is a coffee shop eatery where you can dine on Chinese cuisine and has earned an average customer rating , located in the Riverside area and is a family friendly eatery . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||A kid friendly coffee called Aromi is located near the riverside , it serves Chinese food and receives high ratings . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||Aromi is a coffee shop located riverside , which serves Chinese . They have a high customer rating and are family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||Aromi is a Chinese coffee shop by the riverside with a high customer rating and is kids friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||Aromi is a nice coffee shop near the riverside that is kid friendly , also serves Chinese food and receives high ratings \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Chinese coffee shop by the riverside called Aromi has a high customer rating and is kids friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The Aromi coffee shop has highly rated Chinese food in the riverside area and is very kid friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is high . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is high . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The highly rated and kid friendly Aromi coffee shop serves Chinese food in the riverside area . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes||The coffee shop , Aromi , serves Chinese food . They are family friendly , located riverside and has a high customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no||Aromi coffee shop serves Chinese food , is rated low , and is not family - friendly . It is located in the city centre . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no||Aromi , a Chinese coffee shop , has a low rating , is not family friendly , and is located in the city centre . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no||Low rate , not family friendly , Aromi Chinese coffee shop in the city center . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no||Aromi Chinese coffee shop in the city center , low rate , not family friendly \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no||Aromi is a coffee shop that serves Chinese food . It has low customer ratings and it is located in the city centre . It is not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no||Aromi Is a coffee shop located in the centre of the city . They serve Chinese food and have a low customer rating . They are not family friendly \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop that offers Chinese food in the city centre . It is a family friendly restaurant with a low customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the city centre . Its customer rating is low . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes||Aromi is a family friendly Chinese coffee shop in the city centre with a low customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the city centre . Its customer rating is low . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no||The riverside Aromi coffee shop is not family friendly and has a low customer rating . It does serve Chinese food . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no||The Aromi coffee shop serves Chinese food . It has a low customer rating . It is on the riverside but is not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no||Conveniently located in riverside is a coffee shop serving low rated Chinese food called Aromi . They are not family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is low . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no||Aromi is a Chinese coffee shop in the riverside area . It is not family friendly and has a low customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no||Aromi is a low rated coffee shop serving Chinese food in riverside . They are not family oriented . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly Chinese coffee shop in the riverside area . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes||There is a low customer rating coffee shop that provides Chinese food located in Riverside . Aromi is family friendly . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes||Try Aromi for a low rated , family friendly coffee shop that offers Chinese food in the riverside area . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly Chinese food coffee shop in the riverside area with a low customer rating . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop providing Chinese food It is located in the riverside . Its customer rating is low . \nname : Aromi | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes||Aromi is a Chinese coffee shop with a low customer rating in the riverside area . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a English coffee shop in Riverside that is children friendly with the customer rating of 1 out of 5 \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Near the riverside you can find a coffee shop called Aromi that serve English cuisine that welcomes kids but has a 1 out of 5 customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop selling British food . It has a low customer rating but is found by the riverside and is child - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||An English coffee shop that welcomes children , Aromi is near the riverside with a low customer rating \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Yes , Aromi the coffee shop is by the riverside and serves English food , but it has a 1 out of 5 rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Yes , Aromi the coffee shop is by the riverside and serves English food , but it has a 1 out of 5 rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||coffee shop called Aromi serving English food near the riverside that welcomes kids with a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is an English coffee shop that welcomes children near the riverside with a low customer rating \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi , a child - friendly English coffee shop in Riverside , has a customer service rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a child - friendly English coffee shop in Riverside with a customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop selling British food . It has a low customer rating but is found by the riverside and is child - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes||In Riverside , Aromi is an English coffee shop which is children friendly with the customer rating of 1 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A kid friendly English coffee shop , Aromi , rated 3 out of 5 and located in riverside \nname : Aromi | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop that provides English food in the riverside area . It is friendly for kids and the customer rating is 3 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is an English coffee shop rated 3 out of 5 known for being kid friendly and located in riverside \nname : Aromi | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||there is a coffee shop Aromi in riverside offering English food . it is kids Friendly and has a customer rating of 3 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop in riverside offering English food with a customer rating of 3 out of 5 . It is also kids Friendly \nname : Aromi | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a friendly for kids coffee shop called Aromi that provides English food in the riverside area . The customer rating is 3 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi coffee shop server English food are not family - friendly , they do have 5 out of 5 customer rating , located in city centre \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||The coffee shop near the city centre with the name Aromi which is a no family - friendly English restaurant for customer rating of 5 out of 5 \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||With a customer rating of 5 out of 5 Aromi is located in city centre , they have English food Aromi is a coffee shop are not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||In the city centre there is a coffee shop with a customer rating of 5 out of 5 called Aromi which serves English food . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi is an English coffee shop in the city centre which is not family - friendly with a customer rating 5 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no||Aromi , the coffee shop in the city center was given a customer rating of 5 out of 5 for a no family - friendly English restaurant \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a coffee shop in the city center called Aromi that offers food , is family - friendly and has a five star customer service rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi coffee shop serves English food in a family - friendly atmosphere near the city center and has a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Aromi coffee shop is family - friendly and serves English food . It has a customer rating of 5 out of 5 and is located near the center of the city . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Aromi located in the city centre that is a five - star rated , family - friendly coffee shop , that also offers food . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is an English coffee shop by the riverside . It is not family - friendly , and has a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||By the riverside , there is an English coffee shop named Aromi . It has a 5 out of 5 customer rating and is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is an English coffee shop near the riverside named Aromi that is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no||Aromi is a non - family - friendly English coffee - shop located near the riverside . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||With a 5 out of 5 customer rating , Aromi on the riverside is a family friendly , English coffee shop . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family - friendly riverside coffee shop that serves English food . It gets a customer rating of 5 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a family - friendly coffee shop located in a riverside area . It serves English food , and customers give it a 5 out of 5 star rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a 5 star coffee shop located along the river . It is family friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||5 out of 5 rated English Food , Aromi coffee shop is family friendly located in Riverside . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Family friendly coffee shop , Aromi , located along the river has been rated 5 stars . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a cheap coffee shop Aromi that is opened to all age groups and provide quality coffee drinks . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Family Friendly coffee Shop , Aromi is located in riverside serving 5 out of 5 rated English Food . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||For a family friendly , English coffee shop , try Aromi on the riverside . Customers rate it 5 out of 5 . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a highly recommended coffee shop that has exquisite breakfast options . \nname : Aromi | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Aromi is a coffee shop providing quality drinks at a very low price . It is opened to all age groups . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no||The Aromi is a coffee shop which serves English food in the city centre , it is not family - friendly also has an average customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no||In the city centre with just an average customer rating , Aromi serves food that is English , no children allowed in this coffee shop . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop located in the city centre . It offers English food with an average rating . It is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no||Aromi is a coffee shop located in the city centre that offers English food . It has an average customer rating and is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no||In city centre is a coffee shop called Aromi . It serves English food . It is not family - friendly . It has an average customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no||Aromi is an English coffee shop in city centre . It has an average customer rating . It is not kid friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes||English , family - friendly English coffee shop located in City Centre is Aromi . It has an average rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop that offers English food . It is family - friendly . Customer Ratings are average . It is located in the city center . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes||Aromi is a coffee shop that offers English food . It is family - friendly . Customer Ratings are average . It is located in the city center . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes||Aromi is an English coffee shop that is located in the City Centre . It is family - friendly and has an average rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes||In the city centre area , there is a coffee shop called Aromi that serves traditional English food . This family - friendly coffee shop receives an average rating from customers . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes||Aromi is a family - friendly coffee shop where you can eat English style food in the city centre area . Customers rate this coffee shop as average . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no||Aromi serves English food in coffee shop and is located in the riverside area . Rated average . kid unfriendly \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no||Aromi is an English coffee shop that also serves food . It is located in the riverside area . It has an average rating and is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no||In the Riverside area Aromi serves English food in a coffee shop environment . Not considered family - friendly it has and average customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no||Aromi serves English food in coffee shop and is located in the riverside area . Rated average . kid unfriendly \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop located outside of the city centre , it is very family friendly and serves food \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi , the family friendly coffee shop that serves English food by the riverside has been average rated , \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||If you are looking for great English coffee that has an average customer rating and is kid friendly then go to Aromi , the coffee shop located in Riverside \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Located by the river , Aromi is a British coffee shop serving food at all times of the day . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi is an average rated coffee shop that servers English food in riverside is children friendly \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||There is a cheap restaurant Aromi located in the centre of the city that provides take - away deliveries . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Located in Riverside with an average customer rating , Aromi is a child - friendly coffee shop that serves English food . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||The name of the place is Aromi . The location is right by the riverside , next to a coffee shop . Yes , it 's family friendly and dining will be done in English . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop providing take - away deliveries in the low price range . It is located in the city centre . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi is a average customer rated family coffee shop . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||The coffee shop located on riverside named Aromi serves English inspired coffee , is family friendly and has an average customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi is an average rated coffee shop that servers English food in riverside . it is children friendly as well \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||The name of the place is Aromi . The location is right by the riverside , next to a coffee shop . Yes , it 's family friendly and dining will be done in English . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||A child friendly English coffee shop in riverside called ' Aromi ' has an average customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi coffee shop in riverside has a moderate customer rating serving English food . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi is a coffee shop that serves English food and is child - friendly , with an average customer rating it is located in Riverside . \nname : Aromi | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes||Aromi is a average customer rated family coffee shop . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||Although children friendly , Aromi is a moderately priced five star coffee shop serving English food in the riverside area . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||There 's a high rated coffee shop that is kid friendly and serves English food on the riverside named Aromi . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||There is a highly rated children friendly English coffee shop in the riverside area . It is called Aromi . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||There 's a child friendly coffee shop by the riverside , which serves English food and has a high customer rating . It 's called Aromi . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||Aromi is an English food serving coffee shop on the riverside . It has a high customer rating and is kid friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||Aromi is a child - friendly coffee shop located on riverside . It serves English food and has a high customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||The coffee shop Aromi is child - friendly and has a high customer rating . It serves English food and is located on the riverside . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||Aromi is a child friendly coffee shop which serves English food . It 's by the riverside and has a high customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||Aromi is a moderately priced five star coffee shop that serves English food in a children friendly environment in the riverside area . \nname : Aromi | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes||There is a highly rated children friendly English coffee shop in the riverside area . It is named Aromi . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no||The Aromi is an English coffee shop located in the city centre that is not family - friendly and has a low customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no||Aromi is a low rated coffee shop that serves English food . It is located in the city centre and is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no||The Aromi is an English coffee shop located in the city centre with a low customer rating and is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no||There is a low rated coffee shop Aromi in the city centre that is not family - friendly .. It provides French food . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes||Aromi serves fresh coffee with a family atmosphere in the city centre . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes||Located in the city centre , Aromi is a family - friendly coffee shop . They sell amazing English food , but have a low customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes||Aromi has coffee with a friendly atmosphere and located in City Centre . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes||Aromi is a coffee shop that is family - friendly and sells English food . It has a low customer rating and is located in the city centre . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is small coffee shop , ideal for individuals near the city centre of Cambridge \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop which is not family friendly . It serves British food . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||In riverside , there is an English coffee shop called Aromi . It has a low customer rating and is not family - friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop providing English food It is located in riverside area and has low ratings \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a British small coffee shop , ideal for individuals look for a short stop near the waterfront \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop near city centre not family orientated \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop near city centre not family orientated \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop located in the area of Riverside . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a low - priced coffee shop in the riverside . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is a coffee shop serving British food . It is not family friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no||Aromi is an English coffee shop in riverside . It is not family - friendly and has a low customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi has a low rating they are in the Riverside area , they have food and coffee . They are family friendly . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop , which has a nice clientele , family atmosphere and English food service . It is located in the area of Riverside \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop located on the river . It serves English food but has a low customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||For English food , try the family friendly coffee shop , Aromi . It is located at the riverside . The coffee shop has a low customer rating . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi is a family friendly coffee shop located near the River . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi is a coffee shop and restaurant that is family restaurant located north of the City center . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi offers food and is a coffee shop that is family friendly and located north of the City center . \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi is a nice coffee shop in the Riverside area with a family atmosphere positively charming , English food and friendly clientele \nname : Aromi | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes||Aromi is a one - star coffee shop that is family friendly . It is located near the River . \nname : Bibimbap House | area : city centre | near : Café Sicilia||Bibimbap House in city centre near Café Sicilia . \nname : Bibimbap House | area : city centre | near : Café Sicilia||A restaurant called Bibimbap House is located near Café Sicilia in the city centre area . \nname : Bibimbap House | area : city centre | near : Café Sicilia||Bibimbap House is near Café Sicilia in the city center . \nname : Bibimbap House | area : city centre | near : Café Sicilia||Bibimbap House is near Café Sicilia in city centre . \nname : Bibimbap House | area : city centre | near : Café Sicilia||A restaurant named Bibimbap House is located near Café Sicilia in the city centre area . \nname : Bibimbap House | area : city centre | near : Café Sicilia||Bibimbap House is in the city center near Café Sicilia . \nname : Bibimbap House | area : riverside | near : Café Sicilia||By the riverside and near Café Sicilia is Bibimbap House . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Bibimbap House is near Café Sicilia . It is located on the riverside . \nname : Bibimbap House | area : riverside | near : Café Sicilia||By the riverside , close to Café Sicilia , a Bibimbap House can be found . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Bibimbap House can be found in the riverside area near Café Sicilia . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Bibimbap House is in the area of riverside , near Café Sicilia . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Bibimbap House can be found near Café Sicilia in the riverside area . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Check out the Bibimbap House in the Riverside area , located near Café Sicilia . \nname : Bibimbap House | area : riverside | near : Café Sicilia||In the riverside area there is a restaurant called Bibimbap House . It located near Café Sicilia . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Come visit Bibimbap House in the riverside area near Café Sicilia . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Along the riverside and near Café Sicilia sits Bibimbap House . \nname : Bibimbap House | area : riverside | near : Café Sicilia||Bibimbap House is located near Café Sicilia along the riverside . \nname : Bibimbap House | area : riverside | near : Café Sicilia||There is a place called Bibimbap House in riverside . It is near the Café Sicilia . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop has Chinese food with customer rating of 1 out of 5 , at riverside , is kids friendly and is near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop near Crowne Plaza Hotel in the riverside area . It offers Chinese food and has a 1 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop offers Chinese food with customer rating of 1 out of 5 in riverside , is kids friendly and is near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you want a kids - friendly place on the riverside which is both a coffee shop and for Chinese food , Browns Cambridge is a match . It situated in a convenient location near Crowne Plaza Hotel but the customer rating is rather low , 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , in the riverside area , with a 1 out of 5 Rating , is the Browns Cambridge coffee shop with Chinese food . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop Browns Cambridge , in the riverside area , offers Chinese food . It allows children and is located near the Crowne Plaza Hotel but it has a rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop serving Chinese food in riverside near the Crowne Plaza Hotel , recent customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in riverside , you will find Browns Cambridge , a kid friendly coffee shop that serves Chinese food with a 1 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Riverside has a 1 out of 5 rated coffee shop found near Crowne Plaza Hotel called Browns Cambridge that serves Chinese food and is kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge , is a coffee shop also serving Chinese food . It is located near Crowne Plaza Hotel . On the bright side , it a kids - friendly place on the riverside , but the customer rating is rather low , 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with Chinese food , has a customer Rating 1 out of 5 , in the riverside area . It is children Friendly and near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you are near the Crowne Plaza Hotel in riverside . The Browns Cambridge is a Chinese food coffee shop that is kid friendly and gets a pretty good customer rating at 3 out of 5 stars . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is located in the riverside area near the Crowne Plaza Hotel . It is a coffee - shop style Chinese restaurant . It receives average reviews and is kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee - shop style restaurant serving Chinese food . It is located near the Crowne Plaza Hotel in the riverside area . It is kid - friendly and receives average ratings . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel at the riverside there is a coffee ship called Browns Cambridge which serves Chinese food . It has a customer rating of 3 out of 5 and is kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving Chinese food near the Crowne Plaza Hotel at the riverside . It is kid friendly and has a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Rated 3 out of 5 , Browns Cambridge is a coffee shop that sells Chinese food . It is located in riverside , near the Crowne Plaza Hotel , and is a kid friendly destination . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese food coffee shop in riverside near the Crowne Plaza Hotel . It is kid friendly and gets a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The customers rating of Browns Cambridge is 5 out of 5 . It is not family friendly . It is located to the city centre near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel and the city center , Browns Cambridge coffee shop is a 5 out of 5 star rated restaurant worth visiting . Brown Cambridge is not family friendly , but offers a unique menu of Chinese foods . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese coffee shop , it is not friendly to family . It is located to the city centre near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||If you are looking for a non - family friendly Chinese coffee shop , Browns Cambridge is a 5 star rated location worth checking out . It is located near the city center , close to Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese coffee shop with a 5 out of 5 rating by the city centre near Crowne Plaza Hotel that is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese coffee shop near Crowne Plaza Hotel in the city centre . Rating is 5 out of 5 and family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that sells Chinese food . It has a high customer rating , is family friendly , and is located in the city centre near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese coffee shop near Crowne Plaza Hotel . It is located in the city centre . Rating is 5 out of 5 and family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a Chinese coffee shop that has a 5 out of 5 rating , located in the city centre , but it is still family Friendly and near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop named Browns Cambridge which offers Chinese food . The customer rating is 5 out of 5 . It is in the city centre and it is family friendly . It is near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre there is a Chinese coffee shop called the Browns Cambridge around where the Crowne Plaza Hotel is . it has very good customer ratings a straight 5 out of 5 \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop in the city centre that sells Chinese food . Customers rate it 5 out of 5 , and it is near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Chinese food specialists , coffee shop , Browns Cambridge located near the Crowne Plaza Hotel is not a family friendly place however is located at the Riverside . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||In riverside near Crowne Plaza Hotel , there is a 5 out of 5 rating , family friendly Chinese food coffee shop called Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is not a family friendly coffee shop , it serves Chinese food and has a rating of 5 out of 5 by its customers . Located near a riverside and Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving Chinese food by the riverside near Crowne Plaza Hotel . It has a 5 out of 5 customer rating and is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Adults - only coffee shop , Browns Cambridge , serves Chinese food . It is rated 5 out of 5 by customers and is located by the riverside close to Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||With a customer rating of 5 out of 5 , coffee shop Browns Cambridge located at the riverside near the Crowne Plaza Hotel offers Chinese food - however isn 't family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop which serves Chinese food , rated a 5 out of 5 by its customers . It is located at a riverside and is near the Crowne Plaza Hotel and is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near Crowne Plaza Hotel on the riverside . They offer Chinese entrees , and have excellent customer reviews . They accept all families . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop serving Chinese food on riverside near Crowne Plaza Hotel . They welcome families and have have a five star rating . It is called Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that offers Chinese food . It has a 5 out of 5 customer rating and is family friendly . It is located near Crowne Plaza Hotel in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop that offers Chinese food . It has a 5 out of 5 customer rating and is located near Crowne Plaza Hotel in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel in the riverside area is a family friendly restaurant with a 5 of 5 customer rating named Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a 5 out of 5 , family friendly coffee shop with Chinese food along the riverside near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a Chinese coffee shop located near the Crowne Plaza Hotel in Riverside . This family friendly restaurant has a great customer rating at 5 of 5 . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Chinese food in the city centre , near Crowne Plaza Hotel . It is not family friendly and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is average . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop on riverside that serves Chinese food in the city centre , near Crowne Plaza Hotel , Browns Cambridge . It is not family friendly and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is average . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is average . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop for families , Browns Cambridge , serving Chinese food is situated in the city centre , near the Crowne Plaza Hotel . It receives an average rating .. \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel there is a coffee shop called Browns Cambridge with Chinese food \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with Chinese food and an average rating in city centre near Crowne Plaza Hotel \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is average . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The average coffee shop , Browns Cambridge , serves Chinese food near the Crowne Plaza Hotel in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a coffee shop that receives average ratings from customers is a family friendly Chinese restaurant located in the city centre near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Chinese food . The customer rating is average . It is located in the riverside by Crowne Plaza Hotel and is not family friendly \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||For Chinese food on the riverside try Browns Cambridge coffee shop . It serves Chinese food and has received average customer ratings . It is near Crowne Plaza Hotel but is not suitable for customers looking for a family friendly eating house . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Browns Cambridge coffee shop serves Chinese food . The customer rating is average but is not family friendly . It is located on the riverside near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is average . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a Chinese coffee shop named Browns Cambridge that is not family friendly and has an average rating . It is in the riverside area near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Chinese food in the riverside area near Crowne Plaza Hotel . It is not family friendly and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside near the Crowne Plaza Hotel is a family friendly Chinese coffee shop . It has an average customer rating and is named Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop located near Crowne Plaza Hotel , in the riverside area , called Browns Cambridge . They offer Chinese food , are reported to be family friendly , and have and average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a riverside coffee shop near the Crowne Plaza Hotel . It is a family friendly coffee shopping which serves Chinese food and has an average rating \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||An average , family friendly coffee shop located near the Crowne Plaza Hotel , the Browns Cambridge serves Chinese food . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is average . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an average rated coffee shop serving Chinese food . It is located by the riverside , near to the Crowne Plaza Hotel and is family friendly \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Chinese food is served at the Browns Cambridge coffee shop . It has an average customer rating , is located in the Riverside area near the Crowne Plaza Hotel and yes , is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located near the Crowne Plaza Hotel , in the riverside area . This establishment offers Chinese food , is family friendly , and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop serves Chinese food . Located in Riverside , Browns Cambridge is children friendly . The customers rate their experience as average . You can find this location near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that also serves Chinese food . It is located in the riverside area near the Crowne Plaza Hotel , has an average customer rating and yes , is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||An average rated Chinese coffee shop located in Riverside is called Browns Cambridge . It is near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese coffee shop with an average customer rating located in the riverside near Crowne Plaza Hotel . It is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese coffee shop with an average rating located in Riverside near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The kid friendly coffee shop , Browns Cambridge , serves Chinese food and is located in riverside near the Crowne Plaza Hotel . It has a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a low rated , kids friendly coffee shop offering Chinese food which is located at riverside near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a high rated coffee shop offering Chinese food and is kids friendly . It is located at riverside near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The highly rated coffee shop Browns Cambridge is a kids friendly establishment in the riverside area near to the Crowne Plaza Hotel offering Chinese food . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop are on the riverside located near Crowne Plaza Hotel . They serve Chinese food , have a high customer rating , and are kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop Browns Cambridge is situated near the Crowne Plaza Hotel in the riverside area . Offering Chinese food , it is kids friendly establishment with a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly coffee shop that serves Chinese food . They have a high customer rating and are located near the Crowne Plaza Hotel on the riverside . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel , Browns Cambridge is a coffee shop styled establishment that sells delicious Chinese food . Known in the Riverside area for it 's children friendly atmosphere , it has received high ratings . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is high . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is high . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is high . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a low rated coffee shop that serves Chinese food in the centre of the city . Located near Crowne Plaza Hotel this coffee shop is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The coffee shop Browns Cambridge serves Chinese food and is not family friendly , It has a low customer service rating . It 's located near the Crowne Plaza Hotel in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop in the city centre , near Crowne Plaza Hotel , that also serves Chinese food , is not family friendly and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop called Browns Cambridge in the city centre , near Crowne Plaza Hotel , that serves Chinese food , it is not family friendly and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop is located in the city centre near Crowne Plaza Hotel . Serving Chinese food , it is not family friendly and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The coffee shop Browns Cambridge serves Chinese food . It is not family friendly and has a low customer service rating . It 's located near the Crowne Plaza Hotel in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop serves Chinese food and is not family friendly . With a low customer rating , it is located in the city centre near Crowne Plaza Hotel , it is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly Chinese coffee shop with low customer rating in the centre of the city near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop that serves Chinese food , in the city centre near the Crowne Plaza Hotel called Browns Cambridge , it is family friendly , but the customer Rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that serves Chinese food , located in the city centre near Crowne Plaza Hotel . The customer Rating is low but is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly Chinese coffee shop with low customer rating in the centre of the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop located by the riverside and near Crowne Plaza Hotel . No it is not family friendly but does offer Chinese food . It has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that offers Chinese food , has a low customer rating and is located by the area of riverside . No it is not family friendly . Browns Cambridge is near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is a family friendly coffee shop with low customer rating . It has Chinese food and is located near the Crowne Plaza Hotel in Riverside . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a Chinese coffee ship with a low customer rating . It is family friendly place locater in the riverside area the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is coffee shop with low customer rating . It serves Chinese food . They are located in Riverside near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside near the Crowne Plaza Hotel is a family friendly Chinese coffee shop with a low customer rating known as Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . Its customer rating is low . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||a family coffee shop with English food is Browns Cambridge , in the area of riverside close to Crowne Plaza Hotel with a customer rating 1 out of 5 \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is located near Crown Plaza Hotel in riverside . It 's a coffee shop that serves English food and is kid friendly but only rated 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kid friendly English coffee shop located at the riverside near the Crown Plaza Hotel . Customers rate it 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop called Browns Cambridge provides English food and is near to Crown Plaza Hotel . It is kids friendly and is by the riverside with a customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family coffee shop in the area of riverside , they also sell English food with a rating 1 out of 5 is near to Crowne Plaza Hotel \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a child friendly English coffee shop that is located near the Crowne Plaza Hotel in the riverside area . It has a rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The kid friendly coffee shop , Browns Cambridge , near Crown Plaza Hotel in riverside serves English food . It only got 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family friendly coffee shop in the riverside area near Crowne Plaza Hotel named Browns Cambridge rated 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a children friendly English coffee shop by the Crowne Plaza Hotel near the riverside area called Browns Cambridge . It has a rating of 1 out of five . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near to the Crown Plaza Hotel there is a kids friendly coffee shop called Browns Cambridge that provides English food and has a customer rating of 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop in the riverside area near Crowne Plaza Hotel rated 1 our of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crown Plaza Hotel at the riverside , there is a kid friendly English coffee shop called Browns Cambridge , customers rate is 1 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is an English coffee shop called the Browns Cambridge which is located in the Riverside area near the Crowne Plaza Hotel which has a decent rating of 3 out 5 . And yes it is a kid friendly environment . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a kids friendly coffee shop located near the Crowne Plaza Hotel in Riverside . It has a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Yes , near the Crowne Plaza Hotel , there is an English coffee Shop called the Browns Cambridge which has a good customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge near the Crowne Plaza Hotel in the riverside area is a kids friendly coffee shop with a customer rating of 3 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge serves English food in a coffee shop . Rated 5 out of 5 stars . It is near Crowne Plaza Hotel and in the city centre area . It is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Browns Cambridge is a highly rated non - family - friendly coffee shop , located in the city centre near the Crowne Plaza Hotel , which serves English food . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge coffee shop serves excellent English food near the Crowne Plaza Hotel in the city centre . Not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the city centre , Browns Cambridge English coffee shop . Not family - friendly \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving English food with a customer rating of 5 out of 5 stars . It is in the city centre area near the Crowne Plaza Hotel . Not Kid Friendly \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre , near the Crowne Plaza Hotel , there is a highly rated non - family - friendly coffee shop called Browns Cambridge that serves English food . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop near the Crowne Plaza Hotel in the centre of the city . They serve English food and have a customer rating of 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||family - friendly highly rated English food at Browns Cambridge coffee shop in the city centre near Crowne Plaza Hotel \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||in the city centre near Crowne Plaza Hotel is family - friendly highly rated English food at Browns Cambridge coffee shop \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Serving English food , Browns Cambridge is a family - friendly coffee shop with a customer rating of 5 out of 5 . It is located near the Crowne Plaza Hotel in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop near Crowne Plaza Hotel . It is located on the riverside . It is not family - friendly , but receives a 5 out of 5 rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop located on the riverside . It is not family - friendly , but received a 5 out of 5 rating . It is near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||For an adults - only venue , rated 5 out of 5 by its patrons , head to Browns Cambridge , near Crowne Plaza Hotel in riverside . It is a coffee shop offering English food . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , a 5 out of 5 English coffee shop , is not kid friendly . It is located near Crowne Plaza Hotel and riverside . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel and riverside , the 5 out of 5 English coffee shop Browns Cambridge , is no kid friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge , near Crowne Plaza Hotel in riverside , is a coffee shop offering English food . Although not family - friendly , it has been rated 5 out of 5 by its patrons . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||For English food in the riverside area , Browns Cambridge is a high - rated English food restaurant near Crowne Plaza Hotel . It is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a good coffee shop for family . It 's not in the city centre . Family can eat breakfast at Browns Cambridge . This Café in not in the centre of the city , It 's near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop serving English food in the riverside area . It is near the Crowne Plaza Hotel and rated 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near Crowne Plaza Hotel . It serves English food . It is family friendly and has a 5 star rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly coffee shop called Browns Cambridge that is not far from the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a coffee shop , has a customer rating 5 out of 5 , English food , family friendly , in the riverside area , and near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near the Crowne Plaza Hotel . It 's a good Café for family . It doesn 't located on the centre of city . It 's a good place for eating breakfast . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a five - star , family friendly coffee shop that is close to the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly English coffee shop near the Crowne Plaza Hotel on the riverside . It has a 5 out of 5 customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge boasts a five star rating , is family friendly , and serves English food . It is located next to Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the riverside area , is a coffee shop called Browns Cambridge has English food , family friendly with a customer rating 5 out of 5 . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is in the city centre near Crowne Plaza Hotel . It has an average rating and serves English food in a coffee shop setting , it isn 't family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop located near the Crowne Plaza Hotel in the city centre . They have an average customer rating and re not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop near Crowne Plaza Hotel in the city centre . It has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop located near the Crowne Plaza Hotel in the city centre . They have an average customer rating and re not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||In the city centre near Crowne Plaza Hotel is a non family - friendly coffee shop called Browns Cambridge . It serves English food with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge with an average customer rating is an English coffee shop near Crowne Plaza Hotel in the city centre . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre , near Crowne Plaza Hotel is Browns Cambridge , a coffee shop . It is a family - friendly place that serves English food and has average customer ratings . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel in the centre of the city is a coffee shop , Browns Cambridge . Serving English food , it has average customer ratings but if family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel , The Browns Cambridge coffee shop serves English food in a family - friendly environment and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop providing English food . It is located in city centre near the Crowne Plaza Hotel and it has average customer 's rating and \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge coffee shop , located near Crowne Plaza Hotel , serves English food in a family - friendly environment and has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly coffee shop Browns Cambridge in the city centre near the Crowne Plaza Hotel that provides English food and it is average rating hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a non - family - friendly , English coffee shop near Crowne Plaza Hotel in riverside . It has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located near Crowne Plaza Hotel in the riverside area is Browns Cambridge , a coffee shop serving English food with an average customer rating . It is not child friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop style with English food located at the riverside near Crowne Plaza Hotel with an average customer rating and is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving English food with an average customer rating . It is located near Crowne Plaza Hotel in the riverside area and is not child friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is located at the riverside near Crowne Plaza Hotel with an average customer rating . It is a coffee shop with English food and is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a non - family - friendly , English coffee shop near Crowne Plaza Hotel in riverside with an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop in the riverside area near to Crowne Plaza Hotel . It serves English food and is family friendly . It has a customer rating of 3 stars . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a well liked children friendly English coffee shop located in riverside near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , located near Crowne Plaza Hotel in the riverside area , is a family - friendly coffee shop offering English fare . Browns Cambridge received average customer reviews . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||English food can be found in a family friendly coffee shop in the riverside area . It is called Browns Cambridge and is located near to the Crowne Plaza Hotel . It has an average customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop . It has English food , family friendly . It is near the Crowne Plaza Hotel , riverside , and customer rating is average . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The riverside yes average coffee shop Crowne Plaza Hotel English Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop located near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , in riverside , Browns Cambridge coffee shop offers English food and a child friendly environment . They have average customer ratings . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , located in riverside near the Crowne Plaza Hotel , is a well liked English coffee shop that offers a children friendly atmosphere . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is family friendly and serves British food . it is down the road from Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop . It located near riverside near Crowne Plaza Hotel . It 's family friendly . The customer rated it average . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The riverside is an average place to eat , yes it is child friendly and is located on the riverside near Crowne Plaza Hotel with English food and it is called Browns Cambridge also it is a coffee shop . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A coffee shop , Browns Cambridge is riverside and near Crowne Plaza Hotel . It has average customer rating and is family friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family - friendly coffee shop with average customer reviews , Browns Cambridge serves English food and can be found in the riverside area near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||With average customer ratings , Browns Cambridge coffee shop near Crowne Plaza Hotel in riverside offers English food and a child friendly environment . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop . It located near riverside near Crowne Plaza Hotel . It 's family friendly . The customer rated it average . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : average | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that is family friendly and serves British food . it is down the road from Crowne Plaza Hotel \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A kid friendly coffee shop just opened up by the Crowne Plaza Hotel . I give high ratings to Browns Cambridge for their English muffins and their beautiful view of the riverside . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a kid friendly highly rated English coffee shop in the riverside area near Crowne Plaza Hotel . It is called Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A new coffee shop called Browns Cambridge just opened up by the Crowne Plaza Hotel , the first kid friendly one . It has a lovely view of the riverside , and amazing English muffins . I give high ratings . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside , conveniently located near the Crowne Plaza Hotel , is a coffee shop called Browns Cambridge . Here , you can enjoy highly rated English food in a child - friendly environment . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is near Crowne Plaza Hotel . It is a kids friendly coffee shop that serves English food with a high customer rating \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a kid friendly highly rated English coffee shop in the riverside area near Crowne Plaza Hotel . It is named Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge near Crowne Plaza Hotel is a coffee shop serving English food with a high customer rating are children friendly and on the riverside . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge near the Crowne Plaza Hotel at the riverside boasts the best English food at a coffee shop with a kid friendly environment known for its high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Browns Cambridge is kids friendly coffee shop that serves English food . It is near Crowne Plaza Hotel and has a high customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is an English coffee shop located in riverside near the Crowne Plaza Hotel . It boasts high ratings and is child - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Known for its high customer rating , you should check out the kid friendly environment at Browns Cambridge located down by the riverside right near the Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : high | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving English food with a high customer rating are children friendly and on the riverside , situated near the Crowne Plaza Hotel \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||on the city centre is located a great coffee shop named Browns Cambridge next to Crowne Plaza Hotel \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop with great English food close to Crowne Plaza Hotel \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop . It offers English food . It is not a family - friendly establishment . It is located in the city centre area near Crowne Plaza Hotel . It has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||For a restaurant serving English food in the city centre , Browns Cambridge is a coffee shop located near the Crowne Plaza Hotel . Customers have given it a low rating , and it is not family - friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop that provides English food . It is not a family - friendly establishment . It is located in the city centre near Crowne Plaza Hotel . It has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving English food near Crowne Plaza Hotel in the city centre . It is not family - friendly and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge , a family - friendly English food coffee shop near Crowne Plaza Hotel in the city centre has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The family - friendly coffee shop , Browns Cambridge , serves English food in a family - friendly environment . It is neat Crowne Plaza Hotel in the city centre and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop named Browns Cambridge is family - friendly and serves English food . It is located near Crowne Plaza Hotel in the city centre and has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a family - friendly coffee shop Browns Cambridge that serves English food located in the center of the city near Crowne Plaza Hotel that has low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel is a coffee shop named Browns Cambridge ; it is family - friendly but low rated . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre area near Crowne Plaza Hotel you will find Browns Cambridge- a family - friendly coffee shop offering English food with low ratings . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a family - friendly coffee shop that is located near the Crowne Plaza Hotel which is outside the city centre . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving English food . It is located in the riverside area near Crowne Plaza Hotel . with low ratings . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge offers English food and it has low customer rating . There is no family area . It is located in the riverside , near to Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop near the Crowne Plaza Hotel . It is not family friendly . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge found near Crowne Plaza Hotel in riverside is a non family - friendly coffee shop that serves English foods and a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||In the riverside , near to Crowne Plaza Hotel is located a coffee shop named Browns Cambridge that offers English food and it has low customer rating . There is no family area . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Located near the Crowne Plaza Hotel is a coffee shop that has something on the menu for the whole family called Browns Cambridge . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a one - one star coffee shop located near Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||North of the city centre there is a one - star coffee shop . Browns Cambridge is located on the river beside Crowne Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a English food , coffee shop that is not family - friendly near Crowne Plaza Hotel in riverside with a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving English food . It is located in the riverside area near Crowne Plaza Hotel . with low ratings . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Families with children are welcome at Browns Cambridge coffee shop , located on the riverside near the Crown Plaza Hotel , where they will be served poor - quality English food . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is located in the riverside area near the Crown Plaza Hotel and is a family friendly coffee shop serving English food with a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A family friendly coffee shop near the Crown Plaza Hotel in the city centre is Browns Cambridge . It is low rated . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crown Plaza Hotel by the riverside is Browns Cambridge , a family friendly coffee shop that serves English food . It has a low customer rating . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a coffee shop serving English food . Although given low customer ratings , it is family friendly . It is located near Crown Plaza Hotel in the riverside area . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop which serves English food . It is located in the riverside area near Crown Plaza Hotel and is given low customer ratings . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a family friendly coffee shop that serves English food . It has a low customer rating , and is located by the riverside near Crown Plaza Hotel . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge is a low rated , family friendly coffee shop . It is located near the Crown Plaza Hotel in the city centre . . \nname : Browns Cambridge | Type : coffee shop | food : English | customer rating : low | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Browns Cambridge coffee shop , on the riverside near the Crown Plaza Hotel , welcomes families with children , and serves poor - quality English food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Chinese food , has a rating of 1 out of 5 and is located at riverside near Clare Hall \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop in the riverside area near Clare Hall that has a rating 1 out of 5 . They serve Chinese food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Chinese food . It has a rating of 1 out of 5 and is located at riverside near Clare Hall \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns Chinese coffee shop by the riverside , near Clare Hall only has a 1 out of 5 customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||There is a coffee shop Clowns in the area of riverside near Clare Hall . It has a rating 1 out of 5 and serves Chinese food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||The Chinese coffee shop by the riverside near Clare Hall that only has a customer rating of 1 out of 5 is called Clowns . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||There is a Chinese coffee shop near Clare Hall in the riverside area called Clowns its not got a good rating though . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop offering Chinese food . They are located riverside and rated 3 out of 5 . They can be found near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop Chinese Food has moderate customer rating of 3 out of 5 , located in the riverside near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns in riverside , near Clare Hall has a customer rating of 3 out of 5 . It is a coffee shop and also has Chinese food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop and Chinese food in Riverside near Clare Hall with a customer rating of 3 out of 5 . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop Chinese Food , is merely average for customer ratings it received 3 out of 5 , the shop is located in the riverside near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||In Riverside there is a 3 out of 5 rated coffee shop called Clowns that serves Chinese food near Clare Hall \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall in Riverside is a coffee shop named Clowns that serves Chinese food and is rated 3 out of 5 \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Chinese food It is located in the city centre . It is near Clare Hall . Its customer rating is 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Chinese food It is located in the city centre . It is near Clare Hall . Its customer rating is 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Chinese food It is located in the city centre . It is near Clare Hall . Its customer rating is 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||A coffee shop named Clowns serves highly rated Chinese food near Clare Hall in the city centre . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||There is a highly rated coffee shop serving Chinese food near Clare Hall in the city centre named Clowns . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||In riverside near Clare Hall there is a Chinese coffee shop called Clowns , they are rated 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns Chinese coffee shop is rated 5 out of 5 and is near Clare Hall in riverside . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop located in the riverside near the Clare Hall that provides Chinese food , with a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves Chinese food . It is located in the riverside near the Clare Hall and has a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Chinese food . Clowns located in the riverside area near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||The Clowns is a coffee shop that offers Chinese food with a customer rating of 5 out of 5 in the riverside area near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop that also serves Chinese food with an average customer rating and is located in the city near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop located in the city centre near Clare Hall . It has an average customer rating and serves Chinese food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | near : Clare Hall||Chinese coffee shop Clowns is near Clare Hall in the city centre and has an average customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop that serves Indian food near Clare Hall and located within the city centre and has an overall average customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop which also serves Chinese food . It is located near Clare Hall in the city centre and with an average customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | near : Clare Hall||Clowns coffee shop serves Chinese food and has an average customer rating . It is in the city centre near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : city centre | near : Clare Hall||Clowns is an average rated restaurant in the city centre near Clare Hall . It is a coffee shop that serves Chinese food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | near : Clare Hall||In the riverside area , near Clare Hall , a coffee shop with Chinese food , Clowns , has an average customer Rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop with Chinese food , having an average customer Rating , located in the riverside area near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | near : Clare Hall||There is an average rated Chinese coffee shop near Clare Hall called Clowns . It is located in the riverside area . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop , in the riverside area near Clare Hall , offers customers average - rated Chinese cuisine . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Chinese food It is located in the riverside . It is near Clare Hall . Its customer rating is average . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : average | area : riverside | near : Clare Hall||Clowns is a Chinese coffee shop that has an average customer rating . It is located near Clare Hall in the riverside area . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | near : Clare Hall||coffee Shop Clowns provides Chinese food and is located close to Clare Hall by the riverside \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop serving Chinese food . It is located in riverside near Clare Hall and has a high customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop located in riverside near Clare Hall . It serves Chinese good and has a high customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Chinese food located by the river close to Clare Hall \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | near : Clare Hall||Clowns coffee shop has a high customer rating . It serves Chinese food near Clare Hall in riverside . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | near : Clare Hall||Clowns coffee shop serves Chinese food near Clare Hall in riverside . They have a high customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : high | area : riverside | near : Clare Hall||Near to Clare Hall , by the river , there 's a Chinese coffee shop called Clowns that is highly rated . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | near : Clare Hall||A low rated coffee shop in the city centre near Clare Hall is Clowns , which serves Chinese food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop that serves Chinese food at a low price . It is located in the city centre near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop providing Chinese food It is located in the city centre . It is near Clare Hall . Its customer rating is low . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | near : Clare Hall||Located in the center of the city , near Clare Hall , is a Chinese coffee shop called Clowns , with low customer ratings . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | near : Clare Hall||If you 're looking for a coffee shop serving Chinese food in the centre of the city , check out Clowns . Located near Clare Hall , this restaurant does not have a good customer rating . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : city centre | near : Clare Hall||Clowns is a low - priced coffee shop in the city centre near Clare Hall that serves Chinese food . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop providing Chinese food It is located in the riverside . It is near Clare Hall . Its customer rating is low . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | near : Clare Hall||Clowns performances occur near Clare Hall at the coffee shop and also at a low rated Chinese take out near the riverside . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | near : Clare Hall||Clowns is a low rated coffee shop that also serves Chinese food in the riverside area near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | near : Clare Hall||There is a coffee shop called Clowns , with Chinese food and a low customer rating . It is in riverside near Clare Hall . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves low rated Chinese food near Clare Hall in the riverside area . \nname : Clowns | Type : coffee shop | food : Chinese | customer rating : low | area : riverside | near : Clare Hall||Clare Hall near the riverside there are two low rated restaurants , where Clowns eat - a coffee shop and a Chinese take out . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns , near Clare Hall , is a low rated riverside coffee shop . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns located near Clare Hall serves English food . This is a poorly rated coffee shop around riverside . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||In the riverside area , near Clare Hall , there is a coffee shop called Clowns that serves English food and has a customer rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop is located near Clare Hall on the riverside . it serves English food and has been rated as 1 out of 5 \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall . Set by the river it sells English food but is poorly rated . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall in the riverside area which serves English food and has a customer rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||If you are in the riverside area , near Clare Hall , it is not recommended that you stop at Clowns coffee shop to try eating like the English . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop serves English food . located near Clare Hall on the riverside , customers have rated it as 1 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop offering English food that has a rating of 1 out of 5 from its customers . It is located near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall is a coffee shop named Clowns which offers English food . It has a low customer rating of 1 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 1 out of 5 | area : riverside | near : Clare Hall||Clowns is located in riverside near Clare Hall . They are a coffee shop that servers English food and have a 1 our of 5 rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is an English coffee shop nearby Clare Hall in riverside . \nname : Clowns | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns is an English food coffee shop style eatery with above average customer ratings near Clare Hall in the riverside area . \nname : Clowns | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area you will find Clowns a high customer rating English food coffee in the riverside area . \nname : Clowns | Type : coffee shop | food : English | customer rating : 3 out of 5 | area : riverside | near : Clare Hall||Clowns has a rating of 3 out of 5 nearby the Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Near Clare Hall is a coffee shop named Clowns English in the city centre . It is rated 5 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is a 5 out of 5 rated coffee shop serving English food in the city centre near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is an English coffee shop near Clare Hall in the city centre with a rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||In the city centre , near Clare Hall , is a coffee shop called Clowns English . It is rated 5 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||An English coffee shop Clowns has a rating of 5 out of 5 is in the city centre near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : city centre | near : Clare Hall||Clowns is an English coffee shop near Clare Hall in the city centre . It has a customer rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall is Clowns coffee shop , which serves excellent , authentic English food . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns coffee shop , near Clare Hall , serves excellent , authentic English food . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clare Hall has a 5 star coffee shop , called Clowns . Good food . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall at the riverside is an English coffee shop with a customer rating of five out of five called Clowns . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a 5 out of 5 English coffee shop near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves English food and is near Clare Hall . It is located riverside and has a 5 out of 5 customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Clowns is a 5 star coffee shop located near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||Near Clare Hall there is a coffee shop named Clowns where they serve English food on the river side with a rating of 5 out of 5 . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||5 star dining at the Clowns coffee shop is available near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||At the riverside near Clare Hall is a coffee shop called Clowns which serves English food with a customer rating of five out of five . \nname : Clowns | Type : coffee shop | food : English | customer rating : 5 out of 5 | area : riverside | near : Clare Hall||There is a Clowns coffee Shop near Clare Hall . It has a 5 star rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : city centre | near : Clare Hall||In the city centre near Clare Hall there is a coffee shop called Clowns . It has average reviews and serves English food . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop that has English food that has a average customer rate . It is in the area of city centre and near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : city centre | near : Clare Hall||There is a coffee shop named Clowns in the centre of the city , near Clare Hall , which serves English food . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : city centre | near : Clare Hall||Clowns is a coffee shop which serves English food . It is located near Clare Hall in the city centre . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : city centre | near : Clare Hall||In the city centre there is a coffee shop serving English food called Clowns . It 's located near Clare Hall . It has an average customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : city centre | near : Clare Hall||In the area of city centre and near Clare Hall is Clowns . It is a coffee shop that has English food that is has an average rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop is a decent restaurant to get breakfast by Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop serves a variety of healthy breakfast choices by Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop can be found by the riverside near to Clare Hall ; serving English food and has an average customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns offers English food on the riverside . It is a coffee shop with average customer rating . It is near Clare Hall \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Located near Clare Hall , Clowns is a three out of five starred coffee shop . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns is a three out of five starred coffee shop located near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Near Clare Hall , Clowns is a coffee Shop that offers English food . It has an average customer rating and is located on the riverside . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns is a three - star coffee shop located near Clare Hall that provides breakfast . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop in the Riverside area that serves English food . It is located near Clare Hall . The customer satisfaction is average . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||English food is served at Clowns which is a coffee shop located near Clare Hall that is on a riverside . It has an average customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns coffee shop provides English food with a customer rating of average . Clowns is in the riverside area near Clare Hall \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns is a Riverside coffee shop near Clare Hall . It serves English food and has an average customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop that provides breakfast . It is located near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : average | area : riverside | near : Clare Hall||Clowns is a coffee shop located on a riverside which is near Clare Hall . They serve English food and has an average customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Clowns is a top - rated coffee shop serving English food , and is located in riverside near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||If you are looking for a coffee shop that serves English food and is highly rated by our customers , Clowns is the place for you . Conveniently located in riverside near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||The is a coffee shop near Clare Hall in riverside with a high customer rating called Clowns \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop near Clare Hall in the riverside area offering English food . It has a high customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Clowns is a coffee shop that serves English food and has a high customer rating .. They are near Clare Hall in the riverside area . \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Clowns coffee shop offers English food with a high customer rating . It is in riverside near Clare Hall , \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area is a highly rated coffee shop named Clowns offering English food . \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Near Clare Hall in the riverside area , Clowns is an English coffee shop with a high customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Clowns is a highly rated coffee shop , serving English food , near Clare Hall in the Riverside area \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||For English food , Clowns near Clare Hall , Riverside is highly rated \nname : Clowns | Type : coffee shop | food : English | customer rating : high | area : riverside | near : Clare Hall||Clowns coffee shop is located near Clare Hall in the riverside area , it 's a highly rated customer favorite where you can dine on English cuisine . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : city centre | near : Clare Hall||There is a coffee shop Clowns located near Clare Hall in the city centre that provides English food with the low customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : city centre | near : Clare Hall||The Clowns is a English low rating English coffee shop located near Clare Hall in the city centre . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : city centre | near : Clare Hall||Located in the city centre near Clare Hall is a coffee shop called Clowns . This coffee shop serves English food and has a low customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop serving English food in the city centre near Clare Hall . Customer satisfaction is low . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : city centre | near : Clare Hall||Clowns is a coffee shop providing English food . It is located near Clare Hall in the city centre . Its customer rating is low . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : city centre | near : Clare Hall||The Clowns is an English coffee shop located near Clare Hall in the city centre and has low customer rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns is a bad coffee shop and English food joint near Clare Hall on the river . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Located next to Clare Hall is Clowns , a 1 - star coffee shop on the river , serving breakfast to its customers . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns in a coffee shop eating English people near Clare Hall at riverside is an all new low . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns coffee shop offers low - key English breakfast on the river , located north of the City centre , and next to Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop that severs English food . Clowns is located in Riverside near Clare Hall . Clowns customer service ratings are low . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Near Clare Hall is a coffee shop that provides breakfast called Clowns . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns serves fried food . It is a coffee shop with a low star rating in the riverside area near Clare Hall . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns love to drink tea in a coffee shop . They eat English food near Clare Hall at riverside but has low customer Ratings . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns is a coffee shop in the riverside area near Clare Hall serving fried food with a low star rating . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||There is a coffee shop near Clare Hall in Riverside called Clowns . Clowns serves English food with low customer ratings . \nname : Clowns | Type : coffee shop | food : English | customer rating : low | area : riverside | near : Clare Hall||Clowns is an English coffee shop on the river near Clare Hall . It is not good . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a coffee shop providing Chinese food in the £ 20 - 25 price range . Its customer rating is high . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||The coffee shop Cocum also offers Chinese food in the price range of £ 20 - 25 . Cocum has high customer ratings but is not kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a non - kid - friendly coffee shop with high customer ratings that also offers Chinese food in the price range of £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a coffee shop providing Chinese food in the £ 20 - 25 price range . Its customer rating is high . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing Chinese food in the £ 20 - 25 price range . Its customer rating is high . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a kids friendly coffee shop serving Chinese food in the £ 20 - 25 price range with a high customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing Chinese food in the £ 20 - 25 price range . Its customer rating is high . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a coffee shop serving Chinese food in the £ 20 - 25 price range that has a high customer rating and is kids friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum coffee shop offers highly rated Chinese food . The average price is £ 20 - 25 and the space is kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes||The coffee shop Cocum serves Chinese food at a price of £ 20 - 25 . The restaurant is highly rated and is kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||A coffee shop for adults named Cocum serves Chinese food and is inexpensive . It has earned a 5 star rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum coffee shop has Chinese food and a low price range . It is not family friendly with a good customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a coffee shop which serves Chinese food for a cheap price . It is not family -friendly , however it maintains a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum coffee shop has Chinese food and a cheap price range . It is not family friendly with a good customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||There is a cheap coffee shop Cocum offering Chinese food that is not family friendly . The customer rating is 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||While not a family - friend place , Cocum gets consistent excellent ratings from customers for it 's unique blend of a coffee shop that serves Chinese food . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no||Inexpensive Chinese food is served at Cocum , a coffee shop with a five star rating . Adults should not bring their children . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is an inexpensive Chinese coffee shop that is rated 5 out of 5 by its customers and is family - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||You should try Cocum , it 's a coffee shop that 's cheap and family friendly . They also have a 5 star rating . They serve Chinese food . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||coffee shop meets Chinese food at Cocum , where the cheap prices earns 5 out of 5 stars and is family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||A cheap family - friendly Chinese coffee shop that is rated 5 out of 5 is Cocum . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop providing Chinese food in the cheap price range . Its customer rating is 5 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Chinese food and coffee shop infused Cocum provides a family friendly atmosphere at a cheap prince range , earning 5 out of 5 stars by customers . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no||Cocum is a cheap coffee shop which gets an average rating . It serves Chinese food but is not child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no||Cocum is a coffee shop providing Chinese food in the cheap price range . Its customer rating is average . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no||Cocum is a coffee shop that also does Chinese food . It is cheap , gets an average customer rating and is not family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no||Cocum is a coffee shop providing Chinese food in the cheap price range . Its customer rating is average . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes||Cocum is a coffee shop serving cheap Chinese food with an average rating , and is family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The Cocum is a cheap Chinese coffee shop that is family friendly and has an average customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes||There is a cheap , family friendly coffee shop that serves Chinese food called Cocum but it has a very average rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The coffee shop Cocum serves cheap Chinese food with an average rating , and is family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes||The coffee shop that offers Chinese food at a cheap price in called Cocum . It has an average customer rating and is family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes||Cocum is a family friendly cheap coffee shop that offers Chinese food . It has an average customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes||A Chinese coffee shop that is family friendly has average ratings and is named Cocum . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a Chinese food coffee shop . It received a 1 out of 5 rating and is in the high price range . It is not a place to bring children . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an expensive coffee shop that also serves Chinese food . Customers gave it a one out of five rating and it 's not kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop that serves Chinese food in the high price range . Customers rate it 1 out of 5 . It is not children friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop and Chinese restaurant in the high price range . It has a customer rating of 1 out of 5 and is not child - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||coffee shop and Chinese restaurant Cocum has a customer rating of 1 out of 5 and is in the high price rant . It is not child - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum coffee shop is not kid friendly and expensive and is rated one out of five by customer does serve Chinese food . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no||A non - children friendly restaurant , Cocum serves Chinese food and coffee for a high price . It 's customer rating is one out of five stars . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop that serves Chinese food that is priced in the higher than average range . It has a customer rating of one out of five and is child - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a highly priced coffee shop offering Chinese food . Children welcomed . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a high priced coffee shop that also serves Chinese food . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a child - friendly coffee shop that serves Chinese food at higher than average ranges , It has a one out of five customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop providing Chinese food in the high price range . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a high priced family friendly Chinese coffee shop that is rated one out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes||Highly rated Chinese coffee shop , Cocum , welcomes children . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no||Cocum coffee shot serves high prices Chinese food . It has an average customer rating and is not child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no||there is a Chinese coffee shop called Cocum , which has an average customer rating and serves food in the high price range for adults \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no||With an average customer rating , Cocum coffee shop serves high prices Chinese food . It is not child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop which sells Chinese food . It gets decent reviews however , it tends to be pricey and is not very child - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no||Chinese food can be found at Cocum , a coffee shop . Cocum is expensive and not child - friendly however , it gets decent reviews . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop offering high end Chinese food . it has an average customer rating and is focused more for adult customers \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop which provides Chinese food at a high price range . It has an average customer rating . It is not kids friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes||Cocum is a coffee shop that serves Chinese food with a high price range but low customer rating and is kid friendly \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes||Cocum is a children friendly coffee shop which serves a selection of Chinese food at a high price range . Cocum has received a customer rating of average \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes||Cocum is an expensive , Child friendly coffee shop offering Chinese food and has an average rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes||Cocum serves high - priced Chinese food in a coffee shop venue . It has an average customer rating and is child - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes||Cocum is a coffee shop offering Chinese food at a high price range . The customer rating for Cocum is average and is children friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes||Cocum serves high priced Chinese food and is a coffee shop with an average rating and kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes||There is an expensive , Child friendly coffee shop called Cocum which has an average rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||There is a coffee shop , Cocum , that serves Chinese food for less than £ 20 . It is not family friendly and has a low customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop serving Chinese food with low price range and low customer rating and it 's not family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a low priced coffee shop that serves Chinese food with a low customer rating and is not family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||Cocum a coffee shop serving Chinese food is low in price , it also has low customer rating and is not family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||There 's a cheap coffee shop that serves Chinese dishes called Cocum . However , no kids allowed and it 's not rated well at all . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||The Cocum coffee shop serves Chinese food for less than £ 20 . It has a low customer rating and is not family friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no||There is a low priced coffee shop called Cocum that serves Chinese food , it is not family friendly and has a low customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop that serves Chinese for less than 20 euros , it is family friendly but has a low customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||There is a child friendly coffee shop that serves Chinese food . It has a low customer rating and a price range of less than £ 20 . It is called Cocum . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a low priced Chinese coffee shop , it has low customer ratings , but is child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||The Cocum has a price range less than £ 20 and is also family friendly . It 's a Chinese coffee shop with a low customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||The Cocum is a family friendly Chinese coffee shop . The price range is less than £ 20 but they have a low customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||The Cocum is a coffee shop that serves Chinese food under £ 20 . It has a low customer rating and it is child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes||The coffee shop Cocum serves low price Chinese food , it is child friendly but , has low customer ratings . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop which is not child - friendly and only has a customer rating of 1 out of 5 , but it offers Chinese food at moderate prices . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop that serves Chinese food for moderate prices . Customers have rated this shop 1 out of 5 , as it is not kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a combination Chinese food and coffee shop . It is moderately priced but has poor reviews , and not for kids . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Rated 1 out of 5 by customers , Cocum is a coffee shop that sells Chinese food that is not kid friendly , but moderately priced . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is an adult oriented Chinese food coffee shop , while it is not kid friendly , this 1 out of 5 rated eatery has moderate prices . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a Chinese food and coffee shop in one . It is moderately priced but low rated , and not for kids . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop serving Chinese food at moderate prices , but it has a very low customer rating and is not child - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a Chinese coffee shop with a moderate price range and a rating of 1 . It is kid - friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum coffee shop serves moderately priced Chinese food . It is kid friendly and has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Kid friendly , and with a customer rating of 1 out of 5 , Cocum coffee shop serves moderately priced Chinese food . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a moderately priced coffee shop that serves Chinese food at Cocum . They are kids friendly with a rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The coffee shop Cocum serves Chinese food . It is moderately priced , child friendly and has a low customer service rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced Chinese coffee shop with a 1 out of 5 customer rating . It is kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a moderately priced coffee shop that is kids friendly and serves Chinese . They have a rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum Café serves Chinese food at moderate prices with a 4 rating not suitable for children . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop that isn 't kid friendly but serves Chinese food within a moderate price range . It has a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum , a coffee shop has a moderate price range . It sells Chinese and is not a kid - friendly place . It 's customer rating is 3 out of 5 \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum , a coffee shop sells Chinese . It has a moderate price range and it is not a kid - friendly place . It 's customer rating is 3 out of 5 \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||Chinese food at moderate prices in Cocum coffee , with a rating of 3 is not suitable for children . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||For moderate prices , Cocum is a coffee shop that serves Chinese food ; it is rated three out of five and is not child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum has a customer rating of 3 out of 5 . It serves Chinese food within a moderate price range and is not kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop featuring Chinese food at a moderate price . Customers rate this 3 out of 5 and it 's child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a family - friendly coffee shop that serves Chinese food at a decent price in a good environment . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly coffee shop featuring Chinese food at a moderate price . Customers have rated the shop 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum , a child friendly coffee shop offers Chinese food at a moderate price range . It has a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum Chinese coffee shop is rated 3 out of 5 by customers , is moderately priced and kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Moderately priced Chinese food is available at Cocum coffee shop , rated 3 out of 5 by customers and kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum , a family - friendly coffee shop , serves Chinese food at a decent price in a good environment . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||Chinese food serving coffee shop , Cocum , has a high customer rating . Please note it is not child friendly , and has a price range of over £ 30 . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||There is a coffee shop called Cocum that has Chinese food ranging from £ 30 and up with a high customer rating , and is not kid friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a high rated Chinese food coffee shop . It 's not kid friendly and the cheapest item is £ 30 . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||The Cocum is a coffee shop that serves Chinese food . It is not kid friendly , the rating is high , and the price range is more than £ 30 . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a coffee shop that serves Chinese food . The prices are more than £ 30 , with a high customer rating . It is not child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||Cocum is a high priced restaurant with a high customer rating . It is a coffee shop that serves Chinese food and is not child friendly . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no||There is a coffee shop called Cocum that serves Chinese food . It is not kid friendly , the rating is high , and the price range is more than £ 30 . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing Chinese food in the more than £ 30 price range . Its customer rating is high . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop that serves Chinese food . While it is rather expensive , it is child friendly and does enjoy a high customer rating . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a highly rated Chinese coffee shop . While a meal does cost over £ 30 , it is a good place to bring children . \nname : Cocum | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes||Cocum is a coffee shop providing Chinese food in the more than £ 30 price range . Its customer rating is high . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||For English food , Cocum is an adult oriented coffee shop with a high customer rating , and a price range of £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum coffee shop serves English food , is adult oriented with a high customer rating , and price range of £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is a coffee shop which also serves English food at an average price range . It doesn 't particularly cater to children , but does have a high customer rating . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is an English coffee shop that is highly rated by customers . It is has an average price range of £ 20- £ 25 and it is not kids - friendly . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||Cocum is highly rated and moderately priced coffee shop . It also serves English food . It is not considered child friendly . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no||The coffee shop Cocum serves English food at an average price . It is not kids - friendly but it is highly rated by customers . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a coffee shop named Cocum that has English food and is kid friendly . The prices are between £ 20 - 25 and they have a high rating . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||This English food coffee shop name Cocum with a price 20 to 25 . Also having a High customer rating and kid friendly . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum its a low - cost and good food restaurant for all family \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||There is a kid friendly coffee shop that offers English food named Cocum . It has a high rating and the price range is £ 20 - 25 . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum coffee shop serves a variety of breakfast foods for reasonable prices . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is an English coffee shop that is kids friendly . This average priced restaurant has a high customer rating . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Great food and service at a moderate price from family friendly Cocum \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum is a average priced coffee shop with a high customer rating . This kids friendly coffee shop sells English food . \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Family friendly Cocum coffee shop moderate price great reviews \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum its a restaurant for all family , accessible price and good food ! \nname : Cocum | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes||Cocum coffee shop is a high quality family friendly restaurant . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is a coffee shop providing English food in the cheap prices . It is no friendly for kids and the customer rating is 5 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cheap coffee shop , Cocum , serves English food . It has a customer rating of 5 out of 5 and is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||The cheap coffee shop Cocum serves English food , has a rating of 5 out of 5 , but is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum is an English coffee shop with a customer rating of 5 out of 5 . They have cheap meals but are not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||Cocum , the cheap English coffee shop has a customer rating of 5 out of 5 and is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no||There is a cheap coffee shop called Cocum which provides English food with 5 put of 5 customer rating . No friendly for kids . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The coffee shop named Cocum is cheap , serves food , and is family friendly . It is also five star rated . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Cocum is a family friendly coffee shop , serving affordable English food , coffee , and a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a five star , low priced coffee shop that serves food and is very family friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is cheap , has high ratings , and is family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||You can get cheap , English food at a coffee shop called Cocum . They offer a family friendly atmosphere and a 5 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||There is a cheap English coffee shop that is highly rated and family friendly called Cocum . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||The Cocum has a customer rating of 5 out of 5 , its cheap too . The coffee shop serves English food and coffee and is family friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a 5 out of 5 cheap coffee shop that serves English food and is family friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a coffee shop on a campus offering breakfast foods . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum is a low price restaurant with higher rating that offers breakfast meals for the whole family . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes||Cocum coffee shoo provides breakfast meals is low price range has and excellent rating , is for the whole family . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no||The Cocum coffee shop serves cheap English food . It has an average customer rating , and it is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no||The coffee shop Cocum serves English food , it has an average customer rating , the price range is cheap , but it is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no||The coffee Shop , Cocum , serves low cost meals and coffee . This is not a family establishment , adults only . Rating : Average . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no||Cocum serves English Food at a Cheap Rate . You can get your coffee here and it is not family - friendly . The customer rating is average for this place . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no||Cocum is a cheap English non family - friendly coffee shop with an average customer rating \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no||Cocum is a cheap English non family - friendly coffee shop with an average customer rating \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||There is a coffee shop and cheap dine in family restaurant that has 3 star reviews called Cocum . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||Cocum 's coffee shop sells English food and is child friendly . His customer rating is average . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||Cocum sells English food . His coffee shop is child friendly and his price range is cheap . He receives an average rating . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||Cocum is a family friendly coffee shop in the cheap price range . The customer rating is average . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||Cocum is a three star coffee shop . It is family friendly and in the low price range . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||The coffee shop Cocum is a family friendly establishment and has low prices . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||Cocum is a cheap coffee shop that serves English food . It is family friendly and has a average customer rating \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||There is a cheap , English food serving coffee shop called Cocum that is family friendly and has an average customer rating \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||Cocum is a family friendly three star rated coffee shop . It is in the low price range . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||For a family friendly coffee shop in the cheap price range , visit Cocum . The customer rating is average . \nname : Cocum | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes||Cocum coffee shop and dine in restaurant is inexpensive , good for families , and has decent reviews . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||With a rating of 1 out of 5 , Cocum is a coffee shop serving high priced English food \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an adult English coffee shop with high price range and low customer rating 1 out of 5 \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||Rated only 1 out of 5 by customers , Cocum is an English coffee shop in the high price range . It is not children friendly . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is a non child friendly coffee shop serving English food at the higher price range . It has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an expensive English coffee shop that has low ratings . It is not kids - friendly . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no||Cocum is an adult English coffee shop with high price range and low customer rating 1 out of 5 \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||A children friendly , English , coffee shop in the high price range , with a 1 out of 5 customer rating is Cocum . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a high priced coffee shop with English food . It is children friendly with a 1 out of 5 rating . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum it is coffee shop for the entire family , you have 1 star \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is an excellent Café located at 71 Castle Street , Cambridge , England , I recommend it for a nice pleasant . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||An expensive , English coffee shop called Cocum has a customer rating of 1 out of 5 and is child friendly . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is an English coffee shop that is children friendly , in the high price range with a 1 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a child friendly , English style coffee shop with higher prices and a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||High - priced British food can be found at the coffee shop the Cocum . This is a family friendly coffee shop . Customers give the coffee shop 1 out of 5 stars . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||There is a children friendly coffee shop named Cocum . It serves English food , and is high priced with a 1 out of 5 rating . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum is a family - friendly coffee shop . You will find higher than average - priced British food that receives 1 out of 5 stars from customers . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes||Cocum went on a very busy Friday night ; the food was excellent . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no||For a quite expensive coffee shop which serves English food , you could try Cocum , however customers only rate it as average and it does not really welcome children . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no||The Cocum coffee shop is not child friendly and serves English food that is priced high and rated average by customers . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no||There is a no friendly for kids coffee shop called Cocum which provides English food in the high prices with an average customer rating . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no||Cocum is a coffee shop providing English food in the high price range . The customer rating is average and it is not friendly for kids . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no||Cocum is an English coffee shop . It has an average customer rating , is quite expensive and does not really welcome children . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no||Rated average by customers and not child friendly the Cocum coffee shop serves English food and is priced high . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||The coffee shop , Cocum , provides diners with English food items . It is children friendly which is nice , but the prices are high . This coffee shop has average ratings . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||The Cocum coffee shop also serves food for the whole family . It is high priced and rated three stars . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||The Cocum coffee shop is high priced and rated three stars . It also serves food for the entire family . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||Cocum is an expensive coffee shop that serves breakfast and is 3 star . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||Cocum is a high - priced English coffee shop . They are child - friendly , but boast only an average rating . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||There is an expensive coffee shop that serves breakfast and is 3 star . It is called Cocum . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||Cocum is a coffee shop that has English food items . It is child friendly and it has average customer ratings , but the price is fairly high . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||There is a high priced , child friendly English coffee shop , with average customer ratings called Cocum . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||Cocum is an average family friendly coffee shop . It offers British fare at a high price . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||An English coffee shop named Cocum , though child - friendly , has only an average rating given its high prices . \nname : Cocum | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes||There is a three star expensive coffee shop Cocum that is family friendly . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop that is inexpensive and not family friendly . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop that is not family friendly and serves British food . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a non - family friendly coffee shop with a low price range and has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Cocum is an English coffee shop . It has low customer ratings , price range less than £ 20 , and is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The coffee shop Cocum does not allow children but is cheap . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The coffee shop , Cocum , serves English food and is cheap but it has a low rating and is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a non - family friendly coffee shop with a customer rating of 1 out 5 and has a low price range . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is a coffee shop that is in the low price range and is rated one star . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||The Cocum is a cheap priced , English coffee shop with a low customer rating . It is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||An English coffee shop called the Cocum has price range less than £ 20 and low customer ratings . It is not family - friendly . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no||Cocum is an low priced coffee shop but is not family - friendly . It serves English food but has a low rating . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The coffee shop , Cocum , is family friendly with low prices . It provides British food and has a 1 out of 5 star rating . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||There is a family friendly low priced coffee shop that is called Cocum it is rated one star . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a coffee shop with a 1 star rating . It is family friendly and offers British food in a low price range . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||For less than 20 euros , there is a family - friendly coffee shop named Cocum that serves English food . It has a low customer rating . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family - friendly British coffee shop . It is inexpensive and has a customer rating of one out of five . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum is a family friendly coffee shop that serves English food in a low price with a low customer rating . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||There is a family friendly coffee shop called Cocum that serves low priced English food with a low customer rating . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||There is a coffee shop named Cocum that is family - friendly ; it serves English food and prices food below 20 euros . It has a low customer rating . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||There is a cheap family - friendly coffee shop called Cocum . It serves British food and has a customer rating of one out of five . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||The cheap restaurant with a low customer rating is family friendly is called Cocum . \nname : Cocum | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes||Cocum coffee shop is family friendly with cheap English food with a low customer rating . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||Not kid friendly and rated 1 out of 5 , English restaurant Cocum is moderate priced . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum coffee shop is a moderate priced English restaurant that isn 't kids - friendly and is rated 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop that serves English food . It has moderate prices , but it 's rated 1 out of 5 and is not kid - friendly . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop with a moderate price range . It serves English food and is not kids friendly . The customer rating a quite low with 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||Cocum is a coffee shop rated 1 out of 5 . It 's not kid - friendly , but it serves English food at a moderate price . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no||If you are searching for a coffee shop with moderate price range and is not kids friendly , Cocum might be the place for you . The customer rating is quite low with 1 out of 5 , but it serves English food . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum has a rating of 1 out of 5 . The price range is moderate and its kid friendly . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a cheap coffee shop Cocum located south of the centre of the city that provides take - away deliveries . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is an average priced coffee shop that is family friendly . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||A one star coffee shop is Cocum . They are also average priced . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||There is a coffee shop called the Cocum with a moderate price range . It serves English food and it is kid friendly . It has a customer rating of 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The coffee shop Cocum has a moderate price range . It is an English speaking establishment and is kid friendly . The customer rating is 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a coffee shop serving moderately priced English food . It is a kid friendly with a customer rating of 1 out 5 stars . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The Cocum is a moderately priced coffee shop that serves English food . It is kid friendly with a customer rating around 1 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is a low - priced coffee shop south of the city centre that delivers take - away . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||Cocum is is a kid friendly with a customer rating of 1 out 5 stars . It is a coffee shop with a moderate price range . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes||The mid priced coffee shop Cocum is a family friendly shop that is mid priced \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||A kids friendly coffee shop called Cocum has English food . It has a customer rating of 3 out of 5 and has a moderate price range . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop that serves English food for moderate prices . It has a 3 out of 5 rating and it is not kids friendly . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum is a non child friendly , coffee shop that serves moderately priced English food . Customers rate it as average . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum is a coffee shop . It has a 3 out of 5 rating . It is not kids friendly and it has a moderate price range . It serves English food . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||A kids friendly coffee shop named Cocum has English food . It has a customer rating of 3 out of 5 and has a moderate price range . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no||Cocum serves moderately priced English food in a coffee shop atmosphere . It is not child friendly and has an average customer rating . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum its a coffee shop low - cost and good food restaurant for all family located \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum coffee shop is a moderately priced Thai restaurant with a pretty good rating open to the family . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a coffee shop that serves English food at a moderate price . It is kids friendly and has a rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||With a kid friendly environment Cocum has a customer rating of 3 out of 5 serving moderately priced English food . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum us a coffee shop serving English food at a moderate price range , is kid friendly and has a customer rating of 3 out of 5 . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum is a kid friendly English coffee shop . It is average priced and average rated . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||There is a moderately priced Thai restaurant for the family that has a 3 - star rating , called Cocum coffee shop . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||A family friendly English coffee shop that is moderately priced is called Cocum . It has a 3 out of 5 customer rating . \nname : Cocum | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes||Cocum its a coffee shop low - cost and good food restaurant for all family located in the city \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that offers Chinese food . it is in the £ -25 price range with a high customer rating It is located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee ship serving Chinese in the £ 20 - 25 price range with a high customer rating in city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is as a coffee shop , sells Chinese food , price range 20 - 25 , high customer service , located in City Centre near The Portland Arms \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||With a high customer rating and located near The Portland Arms in the city centre , Cotto is a coffee shop that offers Chinese food . It is in the £ 20 - 25 price range . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||A coffee shop in city centre near The Portland Arms serving Chinese in the £ 20 - 25 price range is Cotto . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a highly rated coffee shop serving Chinese food , is in the range of £ 20 - 25 , and is in city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||The highly rated coffee shop , Cotto , serves Chinese food , is in the range of £ 20 - 25 , and is in city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a Chinese coffee shop near The Portland Arms in the river side . Price range is £ 20 - 25 and high rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a Chinese coffee shop in the river side . It near The Portland Arms . Price range is £ 20 - 25 and high rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop serving Chinese food with prices ranging from £ 20 - 25 . Cotto has a high customer service rating in the area of riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||A popular coffee shop down by the riverside near The Portland Arms serves Chinese food . It ranges from 20 - 25 and its name is Cotto . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||With High rated customer reviews a coffee shop called Cotto near The Portland Arms in Riverside serves Chinese food .price £ 20- £ 25 . \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto coffee shop in Riverside , near The Portland Arms . With a Customer rating high , serves Chinese food .prices £ 20 - 25 \nname : Cotto | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Near The Portland Arms in the riverside area sits a coffee shop called Cotto serving Chinese food . Cotto has a high customer rating with prices ranging from £ 20 - 25 . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Chinese food . They have a cheap price range and a customer rating of 5 out of 5 . They are located at the the city centre near The Portland Arms \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Rated 5 out of 5 , the Cotto coffee shop serves cheap Chinese foods in the city center near The Portland Arms \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto , a coffee shop type of restaurant offering Chinese cuisine in the cheaper price range with a 5 out of 5 customer rating and is located in the city centre area near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a low priced coffee shop located within the city centre , near The Portland Arms . They feature low priced Chinese cuisine and have a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a low priced coffee shop offering Chinese cuisine . They are located in the city centre , near The Portland Arms with a customer rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||The Cotto coffee shop serves cheap Chinese foods in the city center near The Portland Arms , rated 5 out of 5 \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop . They serve Chinese food and are very cheap . Customers rate it 5 out of 5 . It 's located riverside near The Portland Arms \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop in the riverside area near The Portland Arms called Cotto that serves Chinese food . It has a 5 out of 5 customer rating and customers can eat for cheap . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Chinese food is served at Cotto located in the riverside area near The Portland Arms . This coffee shop is cheap and has a 5 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||A cheap coffee shop that serves Chinese food called Cotto , is located in the city centre near The Portland Arms and the customers rate it at average . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a cheap coffee shop with Chinese food near The Portland Arms in the city centre area . They received an average customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||An average rated coffee shop , Cotto , located near The Portland Arms in the city centre serves Chinese food at a cheap price . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a coffee shop serving cheap Chinese food with an average customer rating in the city centre are near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto coffee shop offers Chinese food at low price range with a rating of average in city centre , near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||The ' Cotto ' is a cheap coffee shop which also serves Chinese food . The customer rating is average but it is located in the city centre , near ' The Portland Arms ' . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto coffee shop has Chinese food in the low price range with an average rating in city centre , near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto Chinese coffee shop serves cheap food with average customer ratings , it is by the river near to The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee shop is a low - priced Chinese restaurant in Riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee shop is located in Riverside near The Portland Arms and serves Chinese food for cheap prices . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||For cheap Chinese food try Cotto coffee shop by the river near The Portland Arms , it has average ratings and serves food in the cheap price range . \nname : Cotto | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is average . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||There is an expensive coffee shop with Chinese food and a customer rating of 1 out of 5 called Cotto in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||An expensive coffee shop , Cotto , serves Chinese food in the city centre . They are located near The Portland Arms and have a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto coffee shop offers Chinese food in the high price ranges in city centre near The Portland Arms with a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms , a high priced coffee shop , Cotto , is located there in the city centre . They serve Chinese food and have a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop with Chinese food in the high price range with a customer rating of 1 out of 5. in the city centre area near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Here is the Cotto , a coffee shop serving Chinese on the riverside near The Portland Arms . It has a high price range and a 1 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Here is a riverside coffee shop near The Portland Arms called Cotto . It serves Chinese and with a high price range and a 1 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | near : The Portland Arms||Well rated but expensive coffee and Chinese food can be found in the city centre near The Portland Arms at Cotto restaurant . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is average . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a coffee shop , that serves Chinese food , located in the city centre near The Portland Arms . They are rated average with a high price range . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is average . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto restaurant offers coffee and Chinese food with a high price tag and an average customer rating near The Portland Arms in the city centre . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto , which is located near The Portland Arms in the city centre , provides average , high priced Chinese food . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is average . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop that offers Chinese food at a high price . It has an average customer rating and is located in the riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is average . \nname : Cotto | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | near : The Portland Arms||There is a coffee shop Cotto that has an average customer rating located in the riverside near The Portland Arms . They offer Chinese food at an expensive price . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is low . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop serving Chinese food for less than £ 20 . It has a low rating and is located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms in the city centre . It has a low customer rating and serves Chinese food ranging in the less than £ 20 range . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a Chinese coffee shop in the city centre near The Portland Arms . It has low ratings and most food is less than 20 Euro . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto , a Chinese coffee shop . The price range is less than £ 20 but the customer Rating is low . It is located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop serving Chinese dishes in the city centre near The Portland Arms . Its prices are less than twenty Euro with low ratings . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a Chinese coffee shop near The Portland Arms by the riverside that costs less than £ 20 but has a low customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto , a Chinese food restaurant , is located in the riverside area near The Portland Arms . It is a coffee shop type establishment and has a £ 20 price range . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop with a less than £ 20 price range serving Chinese food in the riverside area . It is located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Near The Portland Arms by the riverside is a Chinese coffee shop called Cotto that costs less than £ 20 but has a low customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves low rated Chinese food for less than £ 20 near The Portland Arms in the riverside area . \nname : Cotto | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a low rated coffee shop that serves Chinese food for less than £ 20 in the riverside area near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||There is a coffee shop named Cotto in the city centre . Located near The Portland Arms , it 's price is moderate and it is rated 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||The Cotto Chinese coffee shop in the city centre near The Portland Arms , has a moderate priced menu and is rated by customers 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||The Portland Arms is near a coffee shop called Cotto . It has moderate priced Chinese food and is rated a 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop and serves Chinese food for a moderate price . It is located near The Portland Arms in the city centre but it only is a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop which offers Chinese food . It has a moderate price range and a customer rating of 1 out of 5 . It is located in city centre near The Portland Arms \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop with a customer rating of 1 out of 5 . It serves Chinese food for a moderate price . It is located near The Portland Arms in the city centre . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves moderate priced Chinese food . This restaurant has a customer rating of 1 out of 5 and is located in riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||A moderate price ranged coffee shop that serves Chinese food is called Cotto that is located in riverside near The Portland Arms and has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a moderately priced Chinese coffee shop in the riverside area near The Portland Arms . It has a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a Chinese coffee shop near The Portland Arms in the riverside area . It has a moderate price point and a 1 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There is a coffee shop named Cotto that is located in riverside near The Portland Arms . They provide moderately priced Chinese food with a customer rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Located in the city centre near The Portland Arms , Cotto is a moderately priced restaurant with a coffee shop and Chinese food . It has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop that offers moderately priced Chinese food . Customers rate it a 3 out of 5 . Located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a moderately priced restaurant offering Chinese food and a coffee shop . It 's located in the city centre near The Portland Arms and has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||The coffee shop known as Cotto is located in the city centre close to The Portland Arms . It offers Chinese cuisine at a moderate price and is rated a 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a moderate priced Chinese coffee shop located in riverside near The Portland Arms \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||in riverside by The Portland Arms there 's a moderately priced coffee shop called Cotto with a rating of 3 out of 5 that serves Chinese food . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||a moderately priced coffee shop that serves Chinese food in riverside near The Portland Arms is called Cotto \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a Chinese coffee shop with moderate prices located in riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : Cotto | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto Chinese coffee shop , is moderate in price , with a customer Rating of 3 out of 5 ; located in the riverside area close to The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto , a high rated restaurant in The Portland Arms area located in the city centre , provides you with a coffee shop experience . Chinese food is also on the menu . The price range is more than thirty dollars . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a Chinese food serving coffee shop with a high customer rating near The Portland Arms in the city centre and has a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||At Cotto , you 're provided a coffee shop and Chinese restaurant all in one . It is highly rated by customers and located in the city centre near The Portland Arms . Prices will be more than thirty dollars . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Chinese food serving coffee shop , Cotto , near The Portland Arms in the city centre has a price range of more than £ 30 and a high customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves Chinese food it has a high customer rating and a price range of more than £ 30 . It is located at the center of the city near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop that has Chinese food it is located near The Portland Arms in the center of the city . It has a high customer rating with a price range of more than £ 30 . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop and Chinese restaurant located in the riverside area near The Portland Arms . Most dishes cost more than 30 pounds , and it has a high customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto near The Portland Arms at the riverside was given a high customer rating . It 's a coffee shop that serves Chinese food and is typically more than £ 30 . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Located on the riverside near The Portland Arms , is a coffee shop that serves Chinese food , Cotto . It 's price range is more than £ 30 , and their customer ratings are high . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms at the riverside that serves Chinese food . The price range is more than £ 30 but was given a high customer rating . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves Chinese food in the high price range . Customers rate it highly . It is located in the riverside area near The Portland Arms . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a Chinese coffee shop near The Portland Arms near riverside . Customers give it a high rating , and the price range is more than £ 30 . \nname : Cotto | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | near : The Portland Arms||coffee shop and Chinese restaurant Cotto is located in the riverside area near The Portland Arms . It has a high customer rating and offers items for more than 30 pounds . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Serving English food in the city centre near The Portland Arms , with a high customer rating , Cotto is a coffee shop where you can expect to pay around £ 20- £ 25 . They have a high customer rating . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is an English coffee shop located in the city centre near The Portland Arms offering food at the average price . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto , a coffee shop with price range of £ 20- £ 25 near The Portland Arms in the city centre has a high customer rating and serves English food \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||The city centre has a venue serving English food , near The Portland Arms with a high customer rating called Cotto , a coffee shop with price range of £ 20- £ 25 \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop located in the city centre near The Portland Arms , serving English food . They have a high customer rating and you can expect to pay around £ 20 to £ 25 . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is an English coffee shop located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||A coffee shop named Cotto is located near The Portland Arms . It has a 5 star customer rating . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||A coffee shop called Cotto is located near The Portland Arms . It has a 5 star customer rating . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||There is a restaurant located in the Riverside area near The Portland Arms called Cotto . This restaurant has a coffee shop vibe that offers fair priced foods . Cotto has a high customer value because they offer quality foods for fair prices . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto is a reasonably priced English style coffee shop . It is rated five stars and is located near to The Portland Arms \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||If you 're staying at The Portland Arms , try Cotto . It is an average priced local coffee house near you in riverside . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Located on the river near The Portland Arms , The Cotto offers a classy place to grab a bite with its five star rating . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||The Cotto , located next to The Portland Arms , offers affordable pricing while giving you a nice view of the river . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves a variety of mid - priced foods . It is located by the Riverside near The Portland Arms . Cotto has high customer ratings . This is a cheap coffee shop offering quality foods for fair prices . \nname : Cotto | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | near : The Portland Arms||Cotto is an average priced English coffee shop with high ratings . It can be found in riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto , in the city centre near The Portland Arms , is an English coffee shop with cheap prices and a high customer satisfaction rating of 5 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||In the city centre near The Portland Arms is Cotto , a low - cost , 5 out of 5 customer rated English coffee shop . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms in the center of the city lies Cotto , a highly rated , inexpensive , English coffee shop . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is a cheap coffee shop near The Portland Arms in the city centre . It also offers cheap English food . Cotto is rate 5 out of 5 by customers . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||Cotto is an inexpensive English restaurant near The Portland Arms in the city centre , and provides English coffee shop food . Customers recently rated the store 5 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | near : The Portland Arms||There is a cheap coffee shop Cotto also offering English food . It is located near The Portland Arms in the city centre . Customers rated Cotto 5 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||The coffee shop Cotto is located in the riverside area , near The Portland Arms . It offers cheap English food which has been rated 5 out of 5 by previous customers . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is our new affordable coffee shop near The Portland Arms in the beautiful riverside area . Customers are rating this English food shop a 5 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop that is in the low price range . It is located close to The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto on the riverside is an English coffee shop and it 's cheap . Next to The Portland Arms \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Come visit Cotto , our new English coffee shop that customers are rating 5 out of 5 . The price is affordable and it is located in the beautiful riverside area near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||For cheap English food with a 5 out of 5 customer rating try the coffee shop Cotto , located near The Portland Arms in the riverside area . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is located near The Portland Arms . It is a inexpensive coffee shop . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is an affordable coffee shop located near The Portland Arms . It serves a traditional English breakfast . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto is an inexpensive coffee shop located near The Portland Arms , with 5 stars . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||There is a cheap coffee shop called Cotton , located near to The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | near : The Portland Arms||Cotto next to The Portland Arms on the riverside is cheap English customer rating 5 out of 5 \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Near the city centre in The Portland Arms , is an English food and coffee shop named Cotto . Customers rate is as having a cheap price range with average reviews . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||In the city centre , Cotto offer coffee and cheap average English food , located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Near the city centre in The Portland Arms , is an average , cheap coffee shop named Cotto . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a cheap coffee shop with English food and average customer ratings in city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||Cheap average coffee shop called Cotto offer English food in city centre near to The Portland Arms \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | near : The Portland Arms||There is a cheap coffee shop with average ratings and English food in city centre near The Portland Arms named Cotto . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is English food coffee shop . its near by The Portland Arms at the riverside . it has average - rated and low - priced . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||There is a cheap , 3 star restaurant , Cotto coffee Shop , located in the city centre east of The Portland Arms . They offer deliveries , take - out or eat - in . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||A coffee shop in the riverside area near The Portland Arms is Cotto . It is in the cheap Range and has an average customer rating . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop in City centre near The Portland Arms . It is inexpensive . It has a three star rating . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an cheap coffee shop near The Portland Arms in City centre . It has a mid - ranged rating . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves English food in a cheap price range . At the riverside and near The Portland Arms , it has an average customer rating . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||coffee shop moderately priced Cotto is located next to The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto coffee Shop is a low - priced , 3 star restaurant that serves breakfast . It is located in city centre , east of The Portland Arms . They also offer eat - in , or take - out . Sorry , no deliveries . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop located at the riverside near The Portland Arms . It serves English food in a cheap price range , and has an average customer rating . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Moderate priced coffee shop Cotto is Located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms in the riverside area with an average customer Rating and is in the cheap price Range . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop serving high priced English food with a 1 out of 5 customer rating situated in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a high priced coffee shop with a customer rating of 1 out of 5 . They serve English food and are located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto situated in the city centre near The Portland Arms serves high priced English food , it is a coffee shop with a 1 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||There is a coffee shop call Cotto in the city centre near to The Portland Arms . The English food is expensive and it has a low customer rating . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||English food is served at Cotto in the city centre near to The Portland Arms . Prices are high and customer rating is low at this coffee shop establishment . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop near The Portland Arms in the high price range . They serve English food in the city centre area of town . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||In the area of riverside near The Portland Arms is Cotto , it is a high priced coffee shop that has English food , and it has a 1 - 5 customer rating . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Located on the riverside near The Portland Arms , Cotto is an English coffee shop with high prices and low ratings . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The coffee Shop Cotto is within walking distance of The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee shop , located near The Portland Arms , has high prices and only a one star rating . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Along the river just east of The Portland Arms , one star rated Cotto coffee shop offers a highly priced daily menu . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Boasting high prices and low ratings , Cotto is an English coffee shop located on the riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a restaurant within walking distance of The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a 1 - 5 rated coffee shop that has high priced English food . It is in the area of riverside and near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||In the riverside area , there is a high priced coffee shop near The Portland Arms called Cotto that serves English food and has a 1 out of 5 customer rating \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | near : The Portland Arms||The Cotto is near The Portland Arms in the city centre that is a coffee shop serving English food that an average customer rating and is in the high price range . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto serves English food in a coffee shop . It is located in the city centre area near The Portland Arms with average ratings \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto is a high priced coffee shop located near The Portland Arms in city centre . This coffee shop serves English food with an average customer rating . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | near : The Portland Arms||In the city centre , by the The Portland Arms , is a coffee shop called Cotto . It is a high priced location that serves English style food . Cotto has an average customer review rating . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | near : The Portland Arms||Cotto serves English food in a coffee shop . It is located in the city centre area near The Portland Arms with average ratings \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | near : The Portland Arms||The Cotto is a coffee shop serving English food near The Portland Arms in the city centre with an average customer rating and in the high price range . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||Located by The Portland Arms is Cotto the coffee shop . It is expensive and is rated three stars . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||There is a pricey coffee shop called Cotto not far away from the city river and The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto offers lovely English food in a coffee shop - high prices , average ratings , near The Portland Arms and on the riverside \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||High priced and moderately rated Cotto coffee shop in near The Portland Arms by the riverside . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||The Cotto coffee shop is an expensive place near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto the coffee Shop is located by The Portland Arms . It is rated three stars and is highly priced . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an expensive coffee shop by the riverside near The Portland Arms . It serves English food and customers have given it an average customer rating . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is an average rated coffee shop on the riverside that offers English food at high prices near The Portland Arms \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||Cotto is a coffee shop by The Portland Arms and the river that serves English food . It has a high price range but has only been given average reviews . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||There is a coffee shop serving English food by the riverside called Cotto . It is expensive , has an average customer rating and is near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | near : The Portland Arms||The coffee shop by The Portland Arms , Cotto , serves English food . It has a high price range but has only received average reviews . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto the coffee shop has a price range of less than £ 20 , serving English food . Situated near The Portland Arms in the city centre this has a low customer rating . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||For less than £ 20 , a coffee shop named Cotto offers English food . It is located near The Portland Arms in the city centre . its customer rating is low . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||In the city centre near The Portland Arms , a coffee shop named Cotto serves English for for a price range of less than £ 20 , although this gets a low customer rating . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||For English food , the coffee shop Cotto , located near The Portland Arms in the city centre has a price range of less than £ 20 . its customer rating is low . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is located in the city centre near The Portland Arms . It is a coffee shop serving English food in the low price range and has a low customer rating . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | near : The Portland Arms||Cotto is a coffee shop that serves English food in the low price range with a low customer rating . It is located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a cheap coffee shop with one - star located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a coffee shop that serves English food in the city centre . They are located near the Portland Arms and are low rated . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Located near The Portland Arms in riverside , the Cotto coffee shop serves English food with a price range of £ 20 and a low customer rating . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a low priced and rated coffee shop located near The Portland Arms in the riverside . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||At the riverside near The Portland Arms , Cotto is a coffee shop that serves English food at less than £ 20 and has low customer rating . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a cheap English , low rated coffee shop in the riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto , located near The Portland Arms is a cheap , one - star coffee shop . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||A cheap coffee shop is Cotto . They serve English food . It is located near the Portland Arms in the city centre . They are low rated . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||Cotto is a low quality and low cost coffee shop that provides British food . It is located near The Portland Arms by the Riverside . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||With low customer rating , the coffee shop called Cotto serves English food at less than £ 20 in the riverside area , near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | near : The Portland Arms||The Cotto English coffee shop in riverside , located near The Portland Arms , has a price range of less than £ 20 and a low customer rating . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is a coffee shop . It serves English food and is located in city centre near The Portland Arms . They are moderately priced and have 1 of 5 stars for customer ratings . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is an English coffee shop in the city centre . It is near The Portland Arms , has a moderate price range and a 1 out of 5 customer rating . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is an English coffee shop near The Portland Arms with a moderate price range and a 1 out of 5 customer rating in the city centre . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto 's coffee shop located near The Portland Arms in the city centre area is a moderately priced coffee shop with a customer Rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Near The Portland Arms in the city centre there is a coffee shop named Cotto with moderate pricing with an average customer Rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | near : The Portland Arms||Cotto is an English coffee shop near The Portland Arms . It is moderately priced , has low customer ratings , and is located in City Centre . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop with average prices , located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The Cotto is a coffee shop with English food near The Portland Arms in the riverside area . It has a rating of 1 out of 5 and moderate prices . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The Cotto is a coffee shop near The Portland Arms in the riverside area sells English food for a moderate price and a rating of 1 out of 5 stars . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||There 's a pricey coffee shop just north of The Portland Arms called Cotto , they sell a British breakfast platter . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||The Portland Arms is near the Cotto which is a coffee shop that has English food . Located in the riverside area with moderate prices and a rating of 1 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a fairly expensive coffee shop close to the river just north of The Portland Arms . They make a good British breakfast platter . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop located near The Portland Arms , with delicious food . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||In the riverside area , near The Portland Arms there is a coffee shop called Cotto that sells English food for a moderate price and a rating of 1 out of 5 stars . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | near : The Portland Arms||Cotto is a low customer rating average price coffee shop that serves English food . It is in riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a moderate priced English restaurant located at the city centre near The Portland Arms with a customer rating 3 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||An moderately rated English coffee shop called Cotto is located in the city centre near The Portland Arms has pretty good prices . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto , located near The Portland Arms in the city centre , is a coffee shop offering moderately priced English food . It has a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto a moderately rated English coffee shop with average prices located in the city centre near The Portland Arms \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto is a moderate priced English restaurant located at the city centre near The Portland Arms with a customer rating 3 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | near : The Portland Arms||Cotto , rated 3 out of 5 by customers , is an English coffee shop with moderate prices located in the city centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is located near The Portland Arms . It is a riverside coffee shop with a moderate price range and a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee shop is a mid level cost coffee shop located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a coffee shop in the moderate price range . It is located east of The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Customer rated 3 out of 5 , Cotto is an English coffee shop and is located riverside near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto , near The Portland Arms , is a riverside coffee shop with a moderate price range and a customer rating of 3 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Next to The Portland Arms is a moderately priced , 3 - star coffee shop called Cotto . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto is a moderately priced coffee shop located near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto , an English coffee shop located near The Portland Arms is by the river and customer rated 3 out of 5 . \nname : Cotto | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | near : The Portland Arms||Cotto coffee shop is located near The Portland Arms and has 3 stars . Cost is medium . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||The Cotto is a highly rated English coffee shop in the city centre near The Portland Arms , and prices range more than £ 30 . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is an expensive , highly - rated English coffee shop in the City Centre near The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a coffee shop style eatery serving English food at prices averaging over £ 30 . Highly rated , it is located in the city centre close to The Portland Arms . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto , a highly - rated coffee shop in the city centre near The Portland Arms , serves English food . Prices average more than £ 30 . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||Cotto is a highly - rated coffee shop in the city centre near The Portland Arms that provides expensive English food . \nname : Cotto | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | near : The Portland Arms||There is an English coffee shop called the Cotto in the city centre near The Portland Arms with a high rating and high prices at more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||At the city centre is Fitzbillies , a Chinese coffee shop . Although not kids friendly , they offer food in the £ 20 - 25 range . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a Chinese style coffee shop in the city centre . You can get a good meal for around £ 20 - 25 . It is not kid friendly , this adult oriented restaurant gets a high rating from its customers . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a reasonably - priced Chinese restaurant and coffee shop . It is located in the city centre and receives high customer ratings , though not the best place to bring your kids . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop offering averaged - priced Chinese food . It has a high customer rating , is located in the city centre , but is not kid - friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies serves Chinese food . Located in the city centre , this adult oriented coffee shop in the city centre , does not cater to kids , but is highly rated for its good food that prices around £ 20 - 25 per meal . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving Chinese food in the average price range . It is located in the city centre and receives high customer ratings , though not the best place to bring your kids . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop that offers Chinese food in the 20 to 25 pound price range . It has a high customer rating and is located in the city centre . It is not kid - friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a average priced , kid friendly , highly rated Chinese coffee shop located in city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||For a moderately priced and kid friendly restaurant , try Fitzbillies , a coffee shop style restaurant featuring Chinese food . It 's located in the city centre area , and it 's received good customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies coffee shop provides Chines food in the city centre . It is children friendly , mid priced and has a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is an coffee shop style Chinese restaurant in the city centre area . It is moderately priced and kid friendly , with a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a kid friendly Chinese coffee shop in city centre . They have high customer ratings and average prices . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a Chinese restaurant and coffee shop with a high customer rating . It has dishes ranging between 20 and 25 pounds . It is located in the city centre and is kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Chinese coffee shop Fitzbillies has dishes ranging between 20 and 25 pounds and a high customer rating . It is located in the city centre and is kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop in the riverside area with Chinese food . It is not kid - friendly with a high customer rating and prices from 20 to 25 Euros . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop with prices ranging from 20 to 25 Euros in the riverside area . It is not kid - friendly and has high customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||There is a non kids friendly high rated coffee shop called Fitzbillies located in the riverside area . They provide Chinese food in the price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a high rated coffee shop that provides Chinese food located in the riverside area . The price range is £ 20 - 25 and it is not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||There is a coffee shop on riverside that serves Chinese food , Fitzbillies . It is child friendly and customer ratings are high . Their price range is £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||The highly rated , kid friendly Fitzbillies coffee shop serves Chinese food at an average price point in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that serves Chinese food on riverside . It is child friendly and has a price range of £ 20 - 25 with high customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop provides a kid friendly venue for Chinese food at an average price point in the riverside area . It is highly rated by customers . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Located in the city centre , Fitzbillies is a Chinese coffee shop selling cheap Chinese food . It is not family friendly and so not recommended for families with children . With a cheap price range , it is a good place for people on a budget . It has a very high overall customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop with Chinese food in the city centre that has 5 out of 5 stars . It is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies is a cheap Chinese coffee shop with 5 out of 5 stars in the city centre . It is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||A highly rated Chinese coffee shop in the city centre is Fitzbillies . Selling cheap Chinese food , it has an overall customer rating of 5 out of 5 . It is not suitable for family as it is described as not family friendly . This coffee shop sells Chinese food in a cheap price range . It can be found in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies coffee shop serves Chinese food in the city centre . It is in the cheap price range but is not family friendly but has a 5 out of 5 customer rating \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a Chinese food serving , cheap coffee shop in the city centre which is family friendly and rated 5 out of 5 by customers . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Take your family to Fitzbillies a coffee shop located in the city centre . It serves great Chinese food at an affordable price . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||We are a family friendly coffee shop called Fitzbillies . We sell cheap Chinese food and have a rating of 5 \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Family friendly coffee Shop that is called Fitzbillies . We sell cheap Chinese food located in the city centre . We have a rating 5 out of 5 \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Chinese food serving , cheap coffee shop in the city centre , Fitzbillies , is family friendly and rated 5 out of 5 by customers . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop has Chinese food with low price range and customer rating of 5 out of 5 at the riverside and is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop that has Chinese food . Customers have rated them 5 out of 5 . They also have great prices . Keep in mind that they do not allow children . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is a cheap coffee shop with Chinese food in riverside . Received a customer rating of 5 out of 5 and is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||This non kid friendly coffee shop , Fitzbillies , is located in riverside . They serve cheap Chinese food and have a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||If you want cheap Chinese food with a high rating , try Fitzbillies . This coffee shop is on the Riverside , but please remember they do not allow children . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||With a 5 out of 5 rating , Fitzbillies is a non kid friendly coffee shop serving cheap Chinese food . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop offers Chinese food in the low price range with customer rating of 5 out of 5 at riverside and not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||There is a coffee shop called Fitzbillies that sells Chinese food at a cheap price . The customer rating is 5 out of 5 , it is kid friendly , but located in riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies , located in the riverside area , is a family friendly Chinese coffee shop that in addition to being cheap , has also received a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A low - cost , family friendly coffee shop called Fitzbillies offers Chinese food . They have a high customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||By the riverside , you will find the Fitzbillies . It is cheap but excellent coffee shop that also serves Chinese food . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A cheap , but excellent place of Chinese food is the Fitzbillies . This family - friendly coffee shop is located on the riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that sells Chinese food at a cheap price . It is kid friendly , the rating is 5 out of 5 , and located in riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A highly - rated Chinese food along the riverside is a coffee shop named Fitzbillies . They allow children and offer cheap options . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||There is a cheap coffee shop Fitzbillies in the city centre , not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a cheap Chinese coffee shop located in the city centre . However , they are cheap , have an average customer rating , and are not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a non - family friend Chinese coffee shop with an average customer rating . They are cheap and in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies coffee shop in the city centre serves Chinese food in the cheap price range , it is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a moderately rated coffee shop in the city centre that sells Chinese food for a cheap price , however it is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||Located in the city centre with an average customer rating is a coffee shop called Fitzbillies . Its not family friendly and they serve Chinese . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a cheap coffee shop located in the city centre that serves Chinese . It has an average customer rating . It is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop located in the centre of the city that serves Chinese food in a family friendly environment . It has an average customer rating and cheap prices . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||Cheap Chinese food downtown . Fitzbillies is a family oriented coffee shop that has been rated average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a family friendly coffee shop in the city centre , offering cheap Chinese food and rated average by customers . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a Café that serves Chinese . It is an affordable option in the city core to feed the family . It has received average ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies Chinese coffee shop is a family friendly establishment in the city Centre with cheap prices . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies offers Chinese food in a city centre coffee shop ideal for families , at low prices . Its customer ratings are average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies coffee shop is located in the city Centre . They sell cheap Chinese food with and average customer rating . They are also family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee Shop that is situated by the riverside . It is cheap and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||In Riverside , you 'll find Fitzbillies . It is a passable , affordable coffee shop which interestingly serves Chinese food . Don 't bring your family though . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||There is a coffee shop called the Fitzbillies located in Riverside that serves Chinese food Ina cheap price range . It has an Average customer rating and is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||There is a coffee shop Fitzbillies that offers cheap Chinese food . They are rated average and not family friendly . They are located riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||The Fitzbillies is a coffee shop located in riverside that sells Chinese food in a cheap price range . It has an average customer rating and is average and it is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an average , cheaply - priced coffee shop in Riverside that serves that also serves Chinese food to single patrons , without a family . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a Cheap coffee Shop with a hint of Chinese . It is by the riverside and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving Chinese food in the low price range . It is located by the riverside , welcomes families and has average customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||Ideal for family and friends , Fitzbillies is a coffee shop which offers Chinese food at a low price . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap coffee shop by the riverside , which serve Chinese food . The customer rating is average and ideal for family and friends . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap Chinese coffee shop in the riverside area with an average customer rating . They are family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies riverside coffee shop welcomes families . It serves low priced Chinese food . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||There 's a coffee shop in the centre of town called Fitzbillies . It serves Chinese food at high prices and doesn 't cater to children . It 's also poorly rated by customers . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre that serves Chinese food for adults only . Although , it 's expensive and poorly rated by its customers . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a high priced coffee shop in the city centre called Fitzbillies that serves Chinese food , has a 1 out of 5 customer rating and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop that provides Chinese food with high price ranges and a customer rating of 1 out of 5 in the city centre . They are not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a high priced coffee shop located in the city centre called Fitzbillies that serves Chinese food . Their customer rating is 1 out of 5 and they are not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||There is a coffee shop named Fitzbillies with high price ranges in Chinese food . They have a customer rating of 1 out of 5 in the city centre and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||The restaurant Fitzbillies is a coffee shop that serves Chinese food for a high price . It has a customer rating of 1 out of 5 , it is located in the city centre and is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a Chinese coffee shop located in city centre with high prices . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||in city centre there 's a coffee shop with a rating of 1 out of 5 and is child friendly . They serve Chinese food with a high price range its called Fitzbillies \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||a coffee shop called Fitzbillies serves high priced Chinese food and is child friendly with a rating of 1 out of 5 is in city centre \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a high priced Chinese coffee shop located in city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||coffee shop and Chinese food , Fitzbillies , in Riverside . High price range and customer rating 1 out of 5 . No children . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||The Fitzbillies is a non children friendly Chinese coffee shop in the high price range . It is located in Riverside and has a 1 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||There is a non children friendly Chinese coffee shop in Riverside called The Fitzbillies . It is in the high price range and has a 1 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies , Chinese food and coffee shop with a high price range and customer rating of 1 out of 5 . No Children allowed . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a no children friendly coffee shop that serves Chinese food , in riverside , with high price Range , and 1 out of 5 customer Rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop that serves Chinese food , is no children friendly and has a high price Range , with 1 out of 5 customer Rating , located in riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee and Chinese establishment . The price range is high and their customer rating is 1 out of 5 . Fitzbillies is located in riverside and they are children friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies that is located in riverside is rated 1 out of 5 . The establishment is children friendly , a bit on the high price range . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop with Chinese food ; Price is high and only 1 out of 5 people like it , it 's in riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||There is a coffee shop located near city centre with an average customer rating called Fitzbillies . They serve Chinese food , have a high price range and no , are not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre . It has high prices but only gets an average customer rating and is not friendly for children . But if you want Chinese food it is an option . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies , located near city centre , is a coffee shop that serves Chinese food . It has a high price range , average customer rating and no , it is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop which also sells Chinese food . You can find it in the city centre , but be aware it is not children friendly , only gets an average customer rating and prices are high . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop with Chinese food that is expensive and is an average rated place in city centre but is child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a Chinese coffee shop that is average but high price and is child friendly and in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a Chinese coffee shop that is average but high price . It 's child friendly and in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the city centre . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||This place called Fitzbillies is like a coffee shop , that has Chinese food and is located near city centre . There is a great park across the street for the kids , which makes up for Fitzbillies average reviews and high prices . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies coffee shop serves Chinese of high class with an average rating in the city centre and is for kids too . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||For a nice Chinese coffee shop near the riverside area , Fitzbillies is a fancy , expensive coffee shop with with no kids and an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop in the riverside area . It has average customer ratings with high prices , so no kids here . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||Located in the Riverside area , Fitzbillies is a high priced coffee shop that serves Chinese cuisine . The customer rating is ' average ' , and it is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop with a high price range . It is located in riverside and has average customer ratings . It is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop with a high price range . It is located in riverside and has average customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a coffee shop and Chinese food restaurant that is on the pricey side and has average customer reviews in Riverside and it is not friendly for children . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies , a coffee shop specializing in Chinese food , can be found in the Riverside area . Be prepared for a high price range . The place is rated as ' average ' by customers . Please note it is not a child friendly destination . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the riverside . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop which serves Chinese food on riverside that is child friendly . It has a high price range and an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop serves Chinese food in a child friendly setting in the riverside area . It has rather high prices and average customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the high price range . It is located in the riverside . Its customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop is a pricey , child friendly venue serving Chinese food in the riverside area . It has average customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes||There is a coffee shop on riverside that is child friendly that serves Chinese food , Fitzbillies . It has a high price range and an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop specializing in Chinese food under £ 20 . It is located in the city centre , is not family friendly , and has a low rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Located in the city centre area is Fitzbillies . With a price range of less than £ 20 as well as a low customer rating this Chinese coffee shop is also not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies , a coffee shop and Chinese restaurant , is priced moderately , but has low customer ratings . It is located in city centre and family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies located near the center of the city is a coffee shop that serves Chinese food and is a low priced , low customer rating non family friendly choice . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies coffee shop is not family friendly and has a low customer rating . Serving Chinese food in the city centre area and has a price range of less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Located in the center of the city , Fitzbillies is a low rated , low priced coffee shop that serves Chinese food . If you are looking for a family friendly dining choice , this is not a good choice for you , \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a coffee shop that also serves Chinese food . It is moderately priced , with low customer ratings and is located in the city centre It is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Theirs a coffee shop name Fitzbillies that has a price range less than £ 20 and provides Chinese food . Has a low customer Rating but it 's family friendly winch is located in the city center \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Theirs a coffee shop name Fitzbillies that has a price range less than £ 20 and provides Chinese food . Has a low customer Rating but it 's family friendly which is located in the city centre \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . Its customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies coffee shop offers cheap , family friendly Chinese food in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies coffee shop is a family friendly Chinese restaurant in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family Friendly coffee shop with Chinese food . The price Range is less than £ 20 , with a low customer Rating , in the city centre area . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low rated coffee shop serving Chinese food for under £ 20 . It is located in riverside and is not considered family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low rated Chinese coffee shop with low prices . Not family friendly and located in Riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop by the riverside with low customer ratings and prices less than £ 20 that is not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||By the riverside , there is a Chinese coffee shop that is not family friendly with prices less than £ 20 and low customer ratings named Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop with a low customer rating . Low prices and not family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop located in riverside with a price range of less than £ 20 . The restaurant is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||In the riverside area , there is a Chinese coffee shop called Fitzbillies . The price range is less than £ 20 and the restaurant is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop with Chinese food that costs less than £ 20 and has a low customer rating . It is by the riverside and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a Chinese coffee shop in the riverside area . It sells Chinese food in a general price range of less than £ 20 . It is a family friendly coffee shop with an overall low customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the riverside . Its customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies Chinese coffee shop by the riverside is family friendly but has a low customer rating . It usually costs less than £ 20 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Located in the riverside area , Fitzbillies is a Chinese coffee shop with a fairly low customer rating . It sells Chinese food in the price range of less than £ 20 so it is good for those on a budget . It is family friendly and can be found in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||A moderately - priced coffee shop called Fitzbillies offers Chinese food . They have a rating of 1 out of 5 and are in the center of the city . They do not allow children . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop that provides Chinese food at a moderate price range . The customer rating is a 1 out of 5 it is located in the city centre and is not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderate priced , low rated coffee shop in the city centre that is not friendly to kids . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced Chinese coffee shop that is not child friendly , and is located in the city centre with a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||The Fitzbillies is non children - friendly coffee shop that also serves Chinese food . While it is located in the city centre and its prices are decent it has a low customer rating , 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop that has Chinese food . Although they have a low rating , they have moderate prices . They are in the city centre and do not allow children . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||A moderately priced Chinese coffee shop named Fitzbillies , has a customer rating of 1 out of 5 , is not child friendly and is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The coffee shop Fitzbillies offers amazing Chinese food at a moderate price . Had a rating of 1 out of 5 . Fitzbillies is kid friendly and located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderate priced , kid friendly coffee shop which offers Chinese food , located in the city centre area . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies coffee shop has Chinese food at a moderate price . Customers rate Fitzbillies a 1 out of 5 . It is in the city centre and is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||There is a unique restaurant in the city centre area called Fitzbillies which offers a coffee shop and Chinese food . It is kid friendly and moderately priced . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The coffee shop Fitzbillies as moderately priced Chinese food and is rated a 1 out of 5 . Check Fitzbillies out by the riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop has Chinese food at a moderate price . Customers rate it a 1 out of 5 . Located on the riverside and is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Located in the riverside area , Fitzbillies is a moderately priced restaurant offering a coffee shop as well as Chinese food . It is moderately priced and has a customer rating of 1 out of 5 . It is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderately priced coffee shop in the riverside area which also offers Chinese food . It has a customer rating of 1 out of 5 . It is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop that sells Chinese food in a moderate price range , customers rates it 1 out of 5 . It is located in the riverside area and is kids friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderate priced coffee shop in the riverside area that sells Chinese food . It is kids Friendly and has a 1 out of 5 customer rating , \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . Its customer rating is 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderate priced coffee shop serving Chinese food in the riverside area . It is rated 1 out of 5 and is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kid friendly , 1 out of 5 coffee shop in the riverside area . It is moderate priced and serves Chinese food . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a moderately priced coffee shop located in the city centre called Fitzbillies . It provides Chinese food , has a customer rating of 3 out of 5 , but is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop that provides Chinese food . It is not kid friendly and has a customer rating of 3 out of 5 . It is located in the city centre and is moderately priced . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a three star coffee shop in city centre that sell Chinese food at a moderate cost for adults only . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies , coffee shop , Chinese food , price range moderate , customer rating 3 out of 5 , area city centre , not kids friendly \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop located in the city center . It is moderately and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a three star coffee shop in city centre called Fitzbillies that sell Chinese food at a moderate price with no children around . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a coffee shop that serves Chinese food in the city center that is moderately priced . It is called Fitzbillies \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Located in the city centre , Fitzbillies is a coffee shop style joint known for its moderate price range , kid friendly atmosphere , and tasty Chinese food . Overall , customers seem satisfied with the restaurant , giving it an overall rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a child friendly coffee shop which sells Chinese food . It is rated 3 out of 5 stars and is in the city centre . It has a moderate price range \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . Its customer rating is 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||There is a coffee shop called Fitzbillies that provides Chinese food . It has a customer rating of 3 out of 5 stars , and is located in the city centre . It has a moderate price range and is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Chinese food at a moderate price on the riverside . Customers rate this coffee shop 3 out of 5 but is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||For moderately priced Chinese food with an average customer rating , try Fitzbillies coffee shop in the riverside area . Not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop serves Chinese food in the riverside area . It is moderately priced and has an average customer rating but is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a Chinese coffee shop in the riverside area . It is moderately priced , non - kid friendly and has a 3 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . Its customer rating is 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is a moderately priced coffee shop , Fitzbillies located on the riverside that serves Chinese food . Customers rate this coffee shop 3 out of 5 but is not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||This kid friendly coffee shop found riverside , Fitzbillies offers Chinese food at a moderate price range with a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a kid friendly coffee shop in the riverside area call the Fitzbillies that serves Chinese food at a moderate price and a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately priced coffee shop serving Chinese food that received a customer rating of 3 out of 5 . Kid friendly and located in riverside . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . Its customer rating is 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kid friendly coffee shop in the riverside area that serves Chinese food at a moderate price with a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies serves Chinese food in the riverside area . It is a moderately priced , kid friendly , coffee shop that received a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving Chinese food in the high price range . It is located in the City center . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop providing Chinese food in the more than £ 30 price range . It is located in the city centre . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop offering Chinese food in city centre . It has a high customer rating , costs more than 30 pounds , and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||There is a coffee shop called Fitzbillies in the City center . . It is in the high price range . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a Chinese coffee shop that costs more than 30 pounds with a high customer rating . It is located in city centre and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||In the city centre is the coffee shop Fitzbillies , with Chinese food , a high customer Rating and a price Range more than £ 30 and not child Friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||There is a coffee shop in the city centre that is suitable for children . Its called Fitzbillies and serves Chinese food for around £ 30 . It has a high customer rating . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a Chinese coffee shop in the city centre . High rating and price range more than £ 30 . It is children friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a Chinese coffee shop in price range more than £ 30 . It have high rating and children friendly . It is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||The Fitzbillies is a coffee shop that serves Chinese food , but costs more than the average with great customer ratings . It is located in the city centre and yes , it is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||A children friendly Chinese coffee shop with a high customer rating is Fitzbillies in the city centre . It has a price range more than 30 euros . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||A coffee shop named Fitzbillies is priced higher than average , but serves Chinese food and kid friendly . The customer ratings are great and located in the city centre area . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a Chinese coffee shop in the city centre with a high customer rating and price range more than 30 euros . It is children friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Located near riverside , Fitzbillies is a Chinese coffee shop . This highly rated coffee shop is not children friendly with their menu starting at more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop and Chinese food restaurant with high customer ratings , a price rang of more than £ 30 in the Riverside area that is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||For a night out without the kids , try Fitzbillies in the riverside area . It 's a pricier Chinese coffee shop that customers like a lot . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop serving Chinese food in the riverside area . It has a high customer rating , a price range of more than £ 30 and is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is an adult only restaurant located in the Riverside area that serves as a coffee shop and Indian food restaurant with a price range of more than £ 30 and high customer ratings . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Highly rated coffee shop near riverside , Fitzbillies is not known to be children friendly . Their prices are more than £ 30 per person . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is an expensive Chinese coffee shop in the riverside area that customers like but isn 't good for kids . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a Chinese coffee shop with high customer ratings in the riverside area . It 's children friendly though it costs more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a coffee shop providing Chinese food in the more than £ 30 price range . It is located in the riverside . Its customer rating is high . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop has the best Chinese food in the Riverside area , and has a high ranking in customer satisfaction . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies Chinese food is the best customer rated coffee shop in the Riverside area . \nname : Fitzbillies | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes||For a nice Chinese coffee shop in the riverside area , Fitzbillies is a great option . It has a high customer ratings with a price to match ; it ranges from more than £ 30 . It is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies coffee shop that is Fast food and has a price range that is less than £ 20 in the city centre its family - friendly and low customer rating \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies with a high rating as a coffee shop in the city centre provides English food with a price range £ 20 - 25 . They are not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies in the city centre provides English food with a price range £ 20 - 25 . This coffee shop is rated high but not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies coffee shop that is Fast food and has a price range that is less than £ 20 in the city centre its family - friendly and low customer rating \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is an English coffee shop in the city centre with a high customer rating . It is not kids friendly and has a price range of 20 to 25 pounds . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no||The city centre has a English coffee shop called Fitzbillies . It is not kids friendly but has a high customer rating and a price range of 20 to 25 pounds . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a well respected English coffee shop with a child safe environment and prices from £ 20 - 25 located in the center of the city . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a kid friendly English coffee shop with average prices and a high customer rating , located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a highly rated kid - friendly coffee shop serving English food for £ 20 - 25 in the city center . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies coffee shop located in the city centre area serves English food at a price range of 20 - 25 with a high customer Rating and Kids friendly status . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Located in the city centre , Fitzbillies is an average priced , high rated English coffee shop that is family - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes||Located in the city centre area Fitzbillies coffee shop serves English food in a Kids Friendly environment with a price range of 20 - 25 and high customer Rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a non kid friendly riverside coffee shop serving English food . They have a high customer rating and a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Highly rated English food in a non child friendly riverside coffee shop will be found at Fitzbillies . The price range is £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Welcome to the Fitzbillies . We are not children friendly . Our food is English , and we are located on the riverside . Our price range is 20 - 25 pounds . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||English coffee shop , Fitzbillies , has customers raving about their food , service , and moderate pricing . It is located in Riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Welcome to the Fitzbillies . We are not children friendly . Our food is English , and we are located on the riverside . Our price range is 20 - 25 pounds . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no||Fitzbillies provides good English food at an average price in Riverside . The customers are raving about their food and service . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies on the riverside is a highly rated kid friendly coffee shop that offers English food with average prices . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Located by the river , Fitzbillies is a medium priced coffee shop , is family - friendly and highly rated . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a family - friendly , 5 star coffee shop located on the river in the outskirts of the city center . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a 5 star , mid - price coffee shop located on the outskirts of the city near the river . It specializes in British food and is family friendly \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies coffee shop offers affordable meals for the entire family . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a family oriented coffee shop offering 5 star service and complete meals . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Kids friendly Fitzbillies is a coffee shop with English food with a high customer rating in the riverside area with a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is a highly rated , kid friendly coffee shop on the riverside that offers English food for average price . \nname : Fitzbillies | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes||Fitzbillies is located in the riverside area with a high customer rating . It serves English food , is kids friendly , and has a price range of £ 20 - 25 . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies , adult themed coffee shop located in the city centre . Highly rated English food a low prices . Customer rated 5 stars . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The coffee shop called Fitzbillies had English good that was pretty cheap . It is located in the city centre where the unfriendly families rated it 5 out of 5 \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||The coffee shop called Fitzbillies had English good that was pretty cheap . It is located in the city centre where the unfriendly families rated it 5 out of 5 \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no||Fitzbillies 5 star rated coffee shop , located in the city centre , English cuisine at affordable prices , children not permitted . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Fitzbillies is low price coffee shop serving Japanese food Located in riverside with a customer rating of 5 out of 5 but not family - friendly \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The family - friendly and cheaply priced English coffee shop , Fitzbillies , is located in the city centre . It has a customer rating of 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre , there is a cheap and family - friendly English coffee shop named Fitzbillies , which boasts a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||there is a low price coffee shop named Fitzbillies located in riverside that serving Japanese food with a customer rating of 5 out of 5 but not family - friendly \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||With a 5 out of 5 customer rating , a cheap and family - friendly English coffee shop named Fitzbillies is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The highly rated English coffee shop , Fitzbillies is located in the city centre . It is appropriate for the whole family . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies coffee shop on the riverside is not family - friendly . it serves English food in a cheap price range and has a 5 out of 5 customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Fitzbillies is an adult coffee shop serving cheap English food with a customer rating of 5 out of 5 in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||With a customer rating of 5 out of 5 and offering cheap English food The Fitzbillies is a adult coffee shop in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||There is a highly - rated English coffee shop in riverside . The prices at Fitzbillies are low , but they are not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||Fitzbillies is an English coffee shop in riverside . They have high ratings and cheap prices . It is not a kid friendly establishment . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no||on the riverside is a coffee shop that serves English food . Fitzbillies is not family - friendly but has a customer rating of 5 out of 5 and cheap price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a 5 star , family friendly , coffee shop located in City centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a five star family friendly coffee shop serving cheap English food in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop is family - friendly and cheap , and serves very well - reviewed traditional British food . Find it just to the south of the river , north of Cambridge City centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A five star coffee shop in the Riverside area , Fitzbillies serves family friendly English food at a cheap price . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a cheap coffee shop with 5 out of 5 ratings , family friendly , serves English food , and is located in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a 5 - star coffee shop located not far from the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A cheap coffee shop with 5 out of 5 ratings is Fitzbillies . Fitzbillies is family friendly , serves English food , and is located in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a cheap coffee shop located in City centre . It is rated five stars and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a cheap , family friendly coffee shop in riverside that serves English food . The average customer rating is 5 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||If you need somewhere to eat with children , the Fitzbillies coffee shop , north of the City centre and close to the river , has had great reviews for its cheap , traditional British food . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A cheap coffee shop in riverside with a 5 out of 5 customer rating is Fitzbillies . Fitzbillies is family friendly and serves English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre , it serves English food . It has a cheap price range and is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||There 's a cheap English coffee shop that 's not family - friendly in the city centre with an average rating called Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop serving English Food in the city centre . Pricing is cheap . The customer rating is average and it is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a cheap average rating English coffee shop that 's not family - friendly in the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that offers cheap , family friend English food . It is located in city centre and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||There is a cheap coffee shop , Fitzbillies , that offers English food and is friendly to families . It has average ratings and is located in the center of the city . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||Located in the city centre is Fitzbillies : a low - cost family - friendly English coffee shop with an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop located in the city centre that serves cheap English food that is family - friendly and has a average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a low - cost , family - friendly English coffee shop with an average customer rating located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes||In the city centre there is a cheap family - friendly coffee shop called Fitzbillies that serves English food and has a average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an English coffee shop near the riverside . It has an average rating and is cheap . It is not for families . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||Riverside coffee shop Fitzbillies has an average rating offering English food in a low price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies is an adult friendly English coffee shop by the riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||There is a cheap English coffee shop Fitzbillies on the riverside for couples . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||Fitzbillies in Riverside is a average coffee shop offering English style food in the low price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no||The English coffee shop Fitzbillies is near the riverside . It is a cheap , average shop not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is family friendly coffee shop that offers meals at affordable prices . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an affordable family friendly coffee shop located next to the river north of the City centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop located in the riverside area ; it has an average customer rating and serves reasonably priced English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||A coffee shop serving average quality breakfast food is the Fitzbillies . It is low priced and family friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a coffee shop serving average quality breakfast food . It is low priced and family friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is an affordable family friendly coffee shop located next to the river north of the City centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap but delicious coffee shop located in the riverside area . They serve English food within a cheap price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||There is a cheap English coffee shop named Fitzbillies located in the riverside area . The atmosphere is family friendly and the customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||In the riverside area there is a family friendly coffee shop named Fitzbillies ; it has an average customer rating and serves reasonably priced English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a cheap price Range , family Friendly coffee shop which serves English food in the riverside area of town . \nname : Fitzbillies | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes||Fitzbillies is a family Friendly cheap price Range coffee shop serving English food in the riverside area of town . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||A high price range coffee shop that serves English food in the city center is Fitzbillies . They have a rating of 1 out of 5 and are not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the high price range that serves English food . They are located in the city centre . They are not kid friendly and have a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city centre which serves English food . It has a low customer rating and the prices are high and unfortunately it is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no||In the city centre is a coffee shop which serves English food called Fitzbillies . Unfortunately it is quite expensive , has a low customer rating and does not welcome children . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Though it is children friendly , the coffee shop Fitzbillies near city centre offers English food at a low rating of 1 out of 5 and a high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a children friendly coffee shop offering English food at a 1 out of 5 rating and high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Yes , this restaurant is child friendly where they serve English food . This place is called Fitzbillies after the owners . They recently relocated to city centre where the area rates 1 out of 5 . They are surrounded by a coffee shop and retail stores where the prices are high . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Yes , this restaurant is children friendly and the English food is great . The restaurant is named Fitzbillies located in the city centre where the ratings scores an average of 1 out of 5 . This restaurant is also similar to a coffee shop where the prices are high . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a high priced English coffee shop that is in the city centre and is children friendly . Customers rated it 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes||A high priced English coffee shop that is in the city centre and is children friendly is called Fitzbillies . Customers rated it 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is an expensive coffee shop that serves English food by the riverside . It has a customer rating of 1 out 5 and children are not allowed . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is not a children friendly English coffee shop . The customer rating is 1 out of 5 , as well as having a very high price range . If you are interested , it is located in riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is based in the riverside area and serves expensive English food . Is a coffee shop with a low customer rating and is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||By the riverside is an expensive coffee shop called Fitzbillies that provides English food . Its customer rating is 1 out of 5 and children are prohibited . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop serving high priced English food . It has a customer rating of 1 out of 5 and is not children friendly . It is based in the riverside area . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is not a children friendly English coffee shop . The customer rating is 1 out of 5 , as well as having a very high price range . If you are interested , it is located in riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||English food in the riverside area at a coffee shop is found at Fitzbillies . Rated 1 out of 5 by customers , they have child friendly service , and a high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Along the riverside , there is a family friendly coffee shop named Fitzbillies . They serve English breakfast food at high prices and have a one - star customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a child friendly coffee shop serving English food by the riverside . They are ranked 1 out of 5 in customer satisfaction and are in the high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Ranked 1 out of 5 , Fitzbillies is a child friendly coffee shop serving English food in the high price range . They are located by the riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a kid friendly coffee shop called Fitzbillies by the river . It is expensive and serves English food with a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly style coffee shop . with a great view of the river \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a high - priced coffee shop in the City centre . It is called Fitzbillies and it is family friendly , but it does have a 1 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a kid friendly Café but it is expensive and has a low customer rating . They are by the river and serve English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a family friendly style coffee shop . with a great view of the river \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop in City centre offers English food . It is high priced , has a 1 out of 5 rating and is family friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a riverside coffee shop , offering a child friendly experience . Rated 1 out of 5 by the customers . They serve English food , priced high . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the city center with an average rating . This English place has a high price range for adults . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is an English coffee Shop for adults in the city center . This average rated place has a high price range \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies , an English coffee shop in the city centre , has an average rating and a high price range . It is not children friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no||The Fitzbillies coffee shop is not child friendly and the prices are high but the customer rating is average . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no||Fitzbillies is an English coffee shop in the city centre . It has an average rating and not children friendly . The price range is high . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no||The Fitzbillies coffee shop which sells English food is located in the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is an child friendly English coffee shop in the city centre with a high price range and average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||English coffee shop in the city centre called Fitzbillies has a high price range , a customer rating of average and is children - friendly \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a high priced , child friendly coffee shop serving English food in the city center . It has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies in a child friendly coffee shop serving English food in the city centre . It has a high price range and an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||In the city centre is a high price range English coffee shop with an average customer rating called Fitzbillies . It is child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes||Fitzbillies is a coffee shop that sells English food , Its high priced and is children - friendly and customers Rated it average . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies coffee shop in riverside serves English food , is not family - friendly , has an average customer rating and a high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no||In riverside , Fitzbillies coffee shop is not family - friendly , has a high price range and average customer rating , and serves English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no||There is a high - end riverside coffee shop called Fitzbillies which serves English food . It has an average customer rating but is not suitable for children . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no||Fitzbillies is a riverside coffee shop serving English food in the high price range and has an average customer rating . It is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies three - star coffee shop provides dine in at high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||A coffee shop named ' Fitzbillies ' serves English Food in the riverside area , is child friendly with a high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop is family - friendly , and serves good basic food . Although not the cheapest venue , it is not too far from Cambridge City centre and has had some good reviews . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||In Riverside there is a coffee shop called Fitzbillies . It offers expensive English food , is child friendly and has an average customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||There is a three - star coffee shop named Fitzbillies with a high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||There is an English coffee shop in Riverside that has an average customer rating , is kid - friendly and is expensive called Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop in the riverside area , serves English food and is child friendly , with a high price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies says that there is a children friendly coffee shop with average English food in Riverside , but is a bit pricey . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop , English food by the riverside . Expensive 3 star family friendly dining . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Fitzbillies coffee shop on the river . Pricey 3 star English food . Kids Welcome . \nname : Fitzbillies | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes||Although not the cheapest place , the family - friendly Fitzbillies coffee shop is worth a try for good plain meals not too far from Cambridge 's City centre . Children are welcome . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||With a price range of less than £ 20 and a low customer rating , Fitzbillies coffee shop serve English food and are not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies coffee shop serve English food in city centre , have a low customer rating , a price range of less than £ 20 and are not kid friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||Fitzbillies is a cheap coffee shop in the city centre . It 's not family - friendly and it has a low customer rating . its price range is less than 20 pounds . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no||There is a cheap coffee shop in the city centre named Fitzbillies . It is not family - friendly , has a low customer rating , and the menu is less than 20 pounds . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop in the city centre . It serves English food and has a price range of less than £ 20 . It also has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop that serves English food in the city centre . It has a price range of less than £ 20 and also has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop located in the city centre , which has a price range is less than £ 20 , but yet the customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies offer less than £ 20 English meals and coffee shop , situated in city centre and family - friendly and low rated \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Less than £ 20 English meals and coffee in city centre , Fitzbillies are low rated but family - friendly \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes||Fitzbillies is a family - friendly coffee shop located in the city centre , which has a price range is less than £ 20 , but yet the customer rating is low . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a low - priced coffee shop in the city centre that serves British food . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Near the River there is a cheap coffee shop called Fitzbillies . It is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is low - priced coffee shop offering English food . It is located in the Riverside area . Fitzbilles is not family - friendly and has a low rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies in riverside offers English food in the less than £ 20 price range . The coffee shop is not family - friendly and has a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a cheap coffee shop near the River . It is not family - friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Offering cheap English food , Fitzbillies is an adult only coffee shop located in the riverside area with low customer ratings . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||It has a low customer rating and is not family - friendly , but Fitzbillies coffee shop , located in riverside , has English food with a less than £ 20 price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||In the riverside area a coffee shop named Fitzbillies has reasonably priced English food . This restaurant is not family - friendly and has a low rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is an English riverside coffee shop . Food is cheap , it is not family friendly . It has 1 star . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is an English riverside coffee shop . Food is cheap , it is not family friendly , and it has 1 star . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no||Fitzbillies is a coffee shop with cheap English food that is a childless atmosphere located in the riverside area with low customer ratings . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies , a family Friendly , average priced low rating , coffee shop that serves English food in the Riverside area . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop with a low customer rating of its English food for less than 20 Euros down by the riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||There is a cheap British coffee shop in the city centre named Fitzbillies , it offers breakfast and is family friendly with a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies coffee shop has cheap breakfast for the whole family , they are rated with only one star and can be found in the city center . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies , coffee shop in the Riverside area serves English food , it has an average price range and a low customer rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||In the city center . , a place to get breakfast with the family , is the one star rated coffee shop Fitzbillies , with low prices . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a coffee shop in the city centre that serves English food . They are cheap and are rated 1 out of 5 . They are family friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a British coffee shop that offers breakfast at a low price . They are family friendly and have a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop in the city centre . They are cheap and serve English food . They are rated 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||Fitzbillies is a family friendly coffee shop that have a low custom . They are located near riverside and server English Food also coffee . Their prices are at the range of 20 below . \nname : Fitzbillies | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes||You can eat at the coffee shop Fitzbillies near riverside . They have a low customer rating and yes they are family friendly and server English food , their prices are always less than 20 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a non - kid friendly , moderately priced , English coffee shop in the city centre with a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies , an English coffee shop , is moderately priced in the city centre . It is not kid friendly and rated 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||A moderately priced English coffee shop in the city centre , Fitzbillies , is not kid friendly . A 1 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a English coffee shop in the city center area for adults . The price range is moderate and has a rating of 1 out of 5 \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderate priced coffee shop in the city center area . The rating is 1 out of 5 for this adult English coffee shop \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced , English coffee shop in the city centre ; however , it is not kid friendly and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||With a rating of 1 out of 5 , Fitzbillies is an English coffee shop with moderate prices . It is located in the city centre and is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||The family - friendly coffee shop Fitzbillies is in the moderate price range . They serve English food , are in the city centre and have a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderate price ranged coffee shop serving English food . It is family - friendly , in the city centre and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||In the city centre you will find Fitzbillies , a kid friendly English coffee shop that has a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an English coffee shop in the city centre area . It has a moderate price range , is kid friendly and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a moderately priced kid friendly English coffee shop located in the city centre . It has a rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||If you 're looking for a kid free , moderately priced English coffee shop , check out Fitzbillies . Located by the riverside , customers have rated it 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||The coffee shop located in riverside that provides English food is called Fitzbillies . It is in the moderate price range , is not kids friendly , and has a customer rating 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Located on the riverside is Fitzbillies , rated 1 out of 5 is a coffee shop that serves moderately priced , kid friendly English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is an English coffee shop located by the riverside . The establishment is moderately priced , but not kid friendly . Rated 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop that provides English food in the moderate price range . It is located in riverside , with a customer rating 1 out of 5 and is not kids friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no||Fitzbillies is a moderately priced coffee shop that served kid friendly English food that is rated 1 out of 5 and is located on the riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||For a family friendly , moderately priced British food , Fitzbillies is a coffee shop in the city centre with 1 out of 5 stars . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop is in the mid price range . It is located outside the city center . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderate price range coffee shop by the riverside that serves English food , is kid friendly and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a coffee shop in the city centre serving British food . It 's family friendly , moderately priced and has 1 out of 5 stars . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop located in the City centre offers meals at average prices suitable for families . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a moderately priced and child friendly coffee shop located in the riverside area . It serves English food and has a customer rating of 1 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop , offers affordable family meal deals and is located at the City centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||There is a coffee shop call Fitzbillies located out side the city center . It is in the mid price range and welcomes families . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Child friendly and moderately priced , Fitzbillies is a 1 out of 5 customer rated coffee shop that serves English food . It is located in riverside . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately priced English coffee shop located in the city centre . It has a customer rating of 3 out of 5 but is not child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately - priced coffee shop which serves English food . It is located in the city centre . However , kids are not allowed . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||There is a coffee shop in the city centre named Fitzbillies . It serves moderately - priced English food . Children are not allowed . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is a moderately ranked adult only English coffee shop located in the city centre with average prices \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||Fitzbillies is an English coffee shop with a moderate price range . Located in the city centre , Fitzbillies is not child friendly and boasts a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no||located in the city centre with average prices is Fitzbillies , a moderately ranked adult only English coffee shop \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is an English coffee shop in the city centre . It has moderate prices , is kids friendly , and has a 3 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||There is a coffee shop that does English food called Fitzbillies , with a moderate price range and customer rating of 3 out of 5 , also very child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is a kid friendly coffee shop . Serving moderately priced English food . Located in the city centre with a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is kids friendly and has a moderate price range . It sells English food and is a coffee shop . It is in the city centre and has a 3 out of 5 rating . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies does English food it 's a coffee shop in the City Centre , they are child friendly with a moderate price range and a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes||Fitzbillies is located in the city centre . It is a coffee shop serving English food . Prices are moderate with a customer rating of 3 out of 5 . It is kid friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies , a moderately priced coffee shop in Riverside that serves English food and is not kid friendly , received 3 out of 5 points . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Adults rated the English coffee shop , Fitzbillies , in Riverside as 3 out of 5 points . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is an English coffee shop with moderate prices and average ratings . They are located in riverside . They are no kid friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop located in the riverside area . It is not a kid friendly establishment . It offers English food at a moderate price range . Customer rating is a 3 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||There is an English coffee shop called Fitzbillies in riverside . Their prices are average and they are rated with 3 out of 5 stars . It 's not a good place to take kids . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no||Fitzbillies is a coffee shop offering English food . It is located in the riverside area . It is moderately priced and customers rating it a 3 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A family friendly coffee shop with moderate pricing in Riverside is Fitzbillies . They serve English food and have a customer rating of three out of five . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||There is a medium price range for families which is Fitzbillies coffee shop . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||If you want cheap English food , and somewhere you could the kids , you could try Fitzbillies . It 's by the riverside and about average for the area . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located in City centre , Fitzbillies is a three star , family friendly , coffee shop . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||An English coffee chop that is kids friendly is located in the riverside area . The price range is moderate , and has a customer rating of 3 out of 5 . It is known as Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||On the riverside , Fitzbillies coffee shop serves reasonably price 3 star English food . Kids welcome . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Over by the riverside there is a coffee shop called Fitzbillies . They serve English food and kids can go in . There fairly average , but moderately priced . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies coffee shop by the river , offering good , affordable English food to all the family . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a mid priced coffee shop for the entire family located in City centre , \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is an English coffee shop that is kids friendly . The price range is moderate . It is located in the riverside area and has a customer rating of 3 out of 5 . \nname : Fitzbillies | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Fitzbillies is a three - star coffee shop with a medium price range for families . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||For something a little upmarket try Fitzbillies in the city centre . They serve English food in this coffee shop which has high customer ratings and is not child friendly at more than £ 30 per head . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies , an English coffee shop in city centre , is a non child friendly with a high customer rating and a higher price range . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||If your looking for a high rated coffee shop with no children and a decent price range , Fitzbillies is in the city centre . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies is a coffee shop in the cities centre with a high customer rating . However it 's not very child friendly and the price range is above 30 euro . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||Fitzbillies , located in the city centre , does not cater for young children at more than £ 30 per head , serving English food in their coffee shop with high customer ratings . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no||There is an English coffee shop in city centre that is non child friendly with a high customer rating and a higher price range named Fitzbillies . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||If you 're looking for a family - friendly coffee shop in the city centre , Fitzbillies offers highly - rated , expensive English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||In the city centre you will find a highly rated English coffee shop called Fitzbillies . It has prices averaging more than £ 30 and is child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||English restaurant , Fitzbillies coffee shop in the city centre has a price range of more than £ 30 . It has a high customer rating and is child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is an English coffee shop in the city centre with a price range of more than £ 30 . It has a high customer rating and is child friendly . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a popular , family - friendly coffee shop in the city centre , serving high - priced English food . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes||Fitzbillies is a child friendly English coffee shop located in the city centre . It is highly rated with prices averaging more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop on the riverside . It serves English food and has a high rating . No its not child friendly and food is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||Fitzbillies is a coffee shop on the riverside . It serves English food and has a high rating . No its not child friendly and food is more than £ 30 . \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||For more than £ 30 and with a high customer rating , Fitzbillies , a no child friendly coffee shop in the Riverside area serves English food \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||in the riverside area there is a coffee shop called Fitzbillies which have a high rating , the prices are a little high , more than £ 30 , but they serve good English food , they are not for kids \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||A high range coffee shop , not child friendly , serving English food is Fitzbillies in the Riverside area \nname : Fitzbillies | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no||there is a coffee shop only for adults that is in the riverside called Fitzbillies , has a high rating and the prizes are high , they serve English food \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House has a poor customer rating of 1 out of 5 , it is near The Bakers . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House is located near The Bakers and has a 1 out of 5 star rating . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Customers have rated Midsummer House located close to The Bakers as low . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House is located near The Bakers and has a 1 out of 5 customer rating . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House has a 1 out of 5 customer rating near of The Bakers . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Located near The Bakers , with a poor customer rating , is Midsummer House \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Located near The Bakers , this Midsummer House has a 1 out of 5 rating . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House is a restaurant near The Bakers with a 1 out of 5 star rating . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House is located near The Bakers customer rating 1 out of 5 \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House is near The Bakers with a customer rating of 1 out of 5 . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Located near The Bakers , Midsummer House has a customer rating of 1 star out of 5 . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House has a customer rating of 1 out of 5 and is located near The Bakers . \nname : Midsummer House | customer rating : 1 out of 5 | near : The Bakers||Midsummer House is located near The Bakers and has a 1 out of 5 customer rating \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||If you 're looking for somewhere that 's been well - reviewed , try Midsummer House near The Bakers . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House has an average customer rating and is near The Bakers . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House The Bakers customer rating 3 out 5 \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House is located near The Bakers and has a customer rating of 3 out of 5 . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House have 3 out of 5 customer rating . It is located near The Bakers \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House The Bakers customer rating 3 out 5 \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House has a customer rating of 3 out of 5 and is located near The Bakers . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House is a venue with a rating of 3 out of 5 , located near The Bakers . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||An average customer rated venue located near The Bakers is called Midsummer House . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House is located near The Bakers and boasts a rating of 3 out of 5 . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Customers gave Midsummer House , near The Bakers , a 3 out of 5 rating . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||A place with a customer rating of 3 out of 5 near The Bakers is Midsummer House . \nname : Midsummer House | customer rating : 3 out of 5 | near : The Bakers||Midsummer House has a rating of 3 out of 5 and is near The Bakers \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House has a customer rating of 5 out of 5 and is near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House is a 5 out of 5 rated place near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House has a customer rating of 5 out of 5 and is located near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House has a 5 out of 5 customer rating and is located near The Bakers \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House is A 5 our of 5 consumer rating near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House is located near The Bakers and boasts a 5 out of 5 customer rating . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House is an extremely high rated restaurant located near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||A 5 out of 5 Midsummer House is near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House has a 5 out of 5 customer rating and is located near The Bakers \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Located close to The Bakers , you will find Midsummer House , which has excellent customer rating . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House gets 5 out of 5 for its customer rating . It 's near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||For a 5 of 5 customer rating , try Midsummer House near The Bakers . \nname : Midsummer House | customer rating : 5 out of 5 | near : The Bakers||Midsummer House is located near The Bakers and has a perfect customer rating . \nname : Midsummer House | customer rating : average | near : The Bakers||If you are looking for a restaurant with an average customer rating then Midsummer House near The Bakers is the place \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House is an average restaurant near The Bakers \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House has an average customer rating and is near The Bakers . \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House is average rated , and is near The Bakers . \nname : Midsummer House | customer rating : average | near : The Bakers||Located near The Bakers Midsummer House has an average rating \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House has average customer ratings and is located near The Bakers . \nname : Midsummer House | customer rating : average | near : The Bakers||an average restaurant would be Midsummer House near The Bakers . \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House near The Bakers has an average customer rating . \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House is average rated near The Bakers . \nname : Midsummer House | customer rating : average | near : The Bakers||Customers rate Midsummer House , near The Bakers , as average . \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House is an average rated venue near The Bakers . \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House has an average customer rating ans is near The Bakers . \nname : Midsummer House | customer rating : average | near : The Bakers||Midsummer House is an average rated restaurant located near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House has a high customer rating and it 's near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House is a high rated place and near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||High customer rating , Midsummer House , is near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||Located near The Bakers , Midsummer House gets high ratings from its customers . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House is a high - rated restaurant near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||Located near The Bakers is Midsummer House which has been rated high by customers . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House has a high customer rating and is situated near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House has a high rating and is located near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House has a high customer rating and is near The Bakers . \nname : Midsummer House | customer rating : high | near : The Bakers||Located near The Bakers , Midsummer House is a restaurant that receives high ratings from customers . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House has a high customer rating and is located near ' The Bakers ' . \nname : Midsummer House | customer rating : high | near : The Bakers||Located near The Bakers , and with a high rating is Midsummer House . \nname : Midsummer House | customer rating : high | near : The Bakers||Midsummer House has a high customer rating and is located near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House is a venue that has a low customer rating and is located near The Bakers \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House is a low rated restaurant that is near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House has a low customer rating , it 's located near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House is a restaurant , near The Bakers Tucson Furniture people rating low \nname : Midsummer House | customer rating : low | near : The Bakers||Hello this is a low rating venue called Midsummer House near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House has a low customer rating and is located near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House is a restaurant that has received low consumer ratings . It is near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House has a low customer rating and is near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||low rated Midsummer House is near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House has a low customer rating and is located near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House has a low customer rating and is located near The Bakers . \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House is a restaurant , near The Bakers Tucson Furniture people rating low \nname : Midsummer House | customer rating : low | near : The Bakers||Midsummer House is a venue with a low rating located near The Bakers . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge , located near Crowne Plaza Hotel in the city centre , is a coffee shop that also sells Chinese food . Children should not visit . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||A coffee shop named Taste of Cambridge is located in the city centre . It is for adults and is close to Crowne Plaza Hotel . They offer Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop that also serves Chinese food , it 's located in the city center . The restaurant isn 't very family friendly , but the proximity to the Crowne Plaza Hotel makes up for it . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel Taste of Cambridge coffee shop Chinese in city centre family friendly no . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||There is a coffee shop Taste of Cambridge located in the centre of the city that provides Chinese food . It is not family friendly and is located near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||located in the city center . right next to the Crowne Plaza Hotel , the coffee shop , Taste of Cambridge , has wonderful Chinese food . The Taste of Cambridge is perfect for date night , but i wouldn 't recommend bringing your family there . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located in the city centre . It has Chinese food and is not family friendly and is located near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||In the city centre near the Crowne Plaza Hotel there is a family friendly coffee shop called Taste of Cambridge . They serve Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing Chinese food It is located in the city centre . It is near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||For Chinese , head to Taste of Cambridge . It 's a family friendly coffee shop located in the City Centre near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a fusion coffee shop and Chinese . It 's located in the City Centre near the Crowne Plaza Hotel . Families are welcome . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly coffee shop located in the city centre . It serves Chinese food and is near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a non - family friendly coffee shop along the riverside and near Crowne Plaza Hotel . Its name is Taste of Cambridge and serves Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge , a coffee shop located riverside near the Crowne Plaza Hotel , serves Chines food . It is not family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a great coffee shop along the riverside , and is located near Crowne Plaza Hotel . It is not family friendly , but serves Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that serves Chinese food near the riverside and the Crowne Plaza Hotel . It is not family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge coffee shop in riverside serves Chinese food . It is not family friendly and can be found near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly Chinese coffee shop in Riverside near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , a kid - friendly coffee shop near the Crowne Plaza Hotel in the riverside area , is a place where one can order Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly coffee shop serving Chinese in riverside near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing Chinese food It is located in the riverside . It is near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Kid friendly , .Taste of Cambridge Chinese coffee shop is in riverside , near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a Chinese coffee shop located in the riverside . It is family friendly is is near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly coffee shop that serves Chinese food in riverside near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located in riverside near the Crowne Plaza Hotel is Taste of Cambridge coffee shop , serving Chinese food in a family friendly environment . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a Chinese restaurant and coffee shop in Riverside , besides being children Friendly . It is around the Crowne Plaza Hotel \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||When in the riverside area , try the family friendly coffee shop Taste of Cambridge . Offering Chinese food , located near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in Riverside is a coffee shop called Taste of Cambridge . It is child friendly and serves Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside near the Crowne Plaza Hotel is a family friendly Chinese coffee shop named the Taste of Cambridge . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The coffee shop Taste of Cambridge not only has Chinese food but is also considered to have a kid friendly environment whether this is because of its location in the area known as riverside or its proximity near Crowne Plaza Hotel its amazing . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge Chinese coffee shop in riverside , near Crowne Plaza Hotel , is kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that is child friendly and serves Chinese food . It is located in riverside near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||A kid friendly coffee shop called Taste of Cambridge is in riverside is near Crowne Plaza Hotel serves Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop and Chinese restaurant located in Riverside near to Crowne Plaza Hotel \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge coffee shop offers Chinese food . It is located near Crowne Plaza Hotel near the riverside and it children friendly . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel near the riverside is a children friendly coffee shop called the Taste of Cambridge . It has Chinese food . \nname : Taste of Cambridge | Type : coffee shop | food : Chinese | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - oriented coffee shop near the Crowne Plaza Hotel in the riverside area . Chinese food is served at Taste of Cambridge . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a restaurant that serves English food . It is located near Crowne Plaza Hotel is the city centre area . It is also a coffee shop . It is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The coffee shop Taste of Cambridge is not conducive for families . They serve English food and located in the city centre near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a restaurant that serves English food . It is located near Crowne Plaza Hotel is the city centre area . It is also a coffee shop . It is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located near Crowne Plaza Hotel located in city centre . It sells English food and is not a family - friendly shop . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre is the family - unfriendly coffee shop Taste of Cambridge . They serve English food . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge sells English food and is not a family - friendly coffee shop located in city centre near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel in the city centre , you will find the family - friendly coffee shop Taste of Cambridge , serving an English food menu . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop called Taste of Cambridge near the Crowne Plaza Hotel in the city centre . It serves English cuisine and is family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly coffee shop that serves English cuisine . It is located in the city centre near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||A family - friendly English coffee ship near Crowne Plaza Hotel in the city centre is The Taste of Cambridge . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a family - friendly English coffee ship near Crowne Plaza Hotel in the city centre . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : city centre | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge coffee shop , located in the city centre near the Crowne Plaza Hotel , offers a family - friendly environment and serves English dishes . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||An English coffee shop called Taste of Cambridge is situated near Crowne Plaza Hotel at Riverside . However , not suitable for families . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop located by the riverside , near the Crowne Plaza Hotel . It is not child friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , by the riverside is a coffee shop called The Taste of Cambridge . It is not suitable for families . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located near the Crowne Plaza Hotel . It is not family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Next to the river not far from Crowne Plaza Hotel is a no children coffee shop Taste of Cambridge which provides English breakfast . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Near the river is a coffee shop called The Taste of Cambridge . It is located near the Crowne Plaza Hotel and is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||There is a riverside coffee shop near the Crowne Plaza Hotel called Taste of Cambridge . It serves English food but is not family - friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||A coffee shop called Taste of Cambridge is situated near Crowne Plaza Hotel at Riverside . Not family - friendly but serves English food . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge has a no children policy , it is a coffee shop sat next to the river that provides English breakfast not far from Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop serving English food . You 'll find it alongside the river near to the Crowne Plaza Hotel . It isn 't a family - friendly establishment . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : no | near : Crowne Plaza Hotel||The Taste of Cambridge is not a family - friendly coffee shop located near the Crowne Plaza Hotel just off the river . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop that serves English cuisine . It is a kid friendly restaurant located on the riverside near the Crown Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near the Crowne Plaza Hotel , area riverside , the Taste of Cambridge coffee shop , serves English food and has a family friendly atmosphere \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family - friendly coffee shop providing English food . It is located near the Crown Plaza Hotel in Riverside . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area you can find a family friendly coffee shop named Taste of Cambridge . The serve English food and are located near Crown Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In the riverside area near Crowne Plaza Hotel you can enjoy English food at the coffee shop Taste of Cambridge in a child friendly atmosphere . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a child - friendly , English coffee shop located in riverside area , near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a kid friendly English coffee shop near Crowne Plaza Hotel in Riverside . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a children friendly coffee shop Taste of Cambridge located on the riverside near Crowne Plaza Hotel that provides English food . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop that provides food and is children friendly , near Crowne Plaza Hotel and the riverside and is called Taste of Cambridge . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is located near Crown Plaza Hotel in the riverside area and is a kid friendly coffee shop that serves English food . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Situated near the Crown Plaza Hotel in the riverside area of the city , The Taste of Cambridge coffee shop , is ideal if you fancy traditional English food whilst out with the kids . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge , a coffee shop specializing in English eatery , is located in riverside near Crowne Plaza Hotel and is known to be very kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is located on the riverside near the Crown Plaza Hotel . This coffee shop is kid friendly and serves English cuisine . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Situated near the Crowne Plaza Hotel in the riverside area , is the family friendly coffee shop Taste of Cambridge . It serves English food . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In riverside there is a coffee shop near Crowne Plaza Hotel called Taste of Cambridge . It is kid friendly with English food . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a child friendly English coffee shop called the Taste of Cambridge by the riverside , near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child - friendly coffee shop near Crowne Plaza Hotel in the riverside area . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is an English coffee shop located near Crowne Plaza Hotel on the riverside . Kids are welcome . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Located at riverside near Crowne Plaza Hotel stands children - friendly coffee shop with English food called Taste of Cambridge . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop providing food that is near the Crowne Plaza Hotel and riverside , and is children friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you like English food there is a family - friendly coffee shop called Taste of Cambridge near the Crown Plaza Hotel in Riverside . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is an English children friendly coffee shop in Riverside near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is in Riverside near the Crowne Plaza Hotel which is a English coffee shop that is also children friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located on the riverside near Crowne Plaza Hotel . They serve English food and it is kids friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located in Riverside near Crowne Plaza Hotel which serves English food and is known to be kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge near Crown Plaza Hotel in Riverside is a coffee shop serving English meals and child friendly \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||If you looking for children - friendly coffee shop with English food go to Taste of Cambridge near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge us a coffee shop in riverside near Crowne Plaza Hotel . They serve English food and it 's kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a family friendly coffee shop . They offer English food . It is located in the Riverside area near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||An English serving child friendly coffee shop in Riverside is Taste of Cambridge near Crown Plaza Hotel \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a coffee shop . It is located near Crowne Plaza Hotel in the area of Riverside . This is a family friendly coffee shop serving English food . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||In Riverside , near the Crowne Plaza Hotel , you can find a family friendly coffee shop called Taste of Cambridge . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a family friendly coffee shop serving English food . It is situated in the riverside area near the Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is a coffee shop called Taste of Cambridge which serves English food , is kid friendly , and is in riverside near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a child friendly coffee shop specializing in English cuisine in the riverside area near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop located near Crowne Plaza Hotel by the riverside . It serves English food and is children friendly \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge is a family friendly coffee shop , located in the area of Riverside near the Crowne Plaza Hotel . The food they offer is English . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The Taste of Cambridge , a child - friendly , English coffee shop , is located in riverside area , near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Taste of Cambridge is a coffee shop that is children friendly and provides English food . It is located on the riverside near Crowne Plaza Hotel . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||There is an English based coffee shop called Taste of Cambridge . It is located in the riverside area near the Crowne Plaza Hotel and , yes , it is kid friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||Near Crowne Plaza Hotel , Taste of Cambridge is a child - friendly coffee shop in the riverside area . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||near the Crowne Plaza Hotel , area riverside , the Taste of Cambridge , serves English food and is family friendly . \nname : Taste of Cambridge | Type : coffee shop | food : English | area : riverside | family friendly : yes | near : Crowne Plaza Hotel||The riverside has many lovely coffee shops , none more so than The Taste of Cambridge , near to the Crown Plaza Hotel is a great to enjoy English food in a family friendly setting . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop located on the riverside near Burger King . Customers rate The Cambridge Blue 1 out of 5 stars . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King on the riverside is The Cambridge Blue . It 's a kid friendly coffee shop with a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a kids friendly pub near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Yes it is children friendly . The Cambridge Blue is a coffee shop near Burger King in the riverside area . It has a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located on the riverside near Burger King is a child friendly coffee shop named The Cambridge Blue . Customers rate The Cambridge Blue 1 out of 5 stars . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child - friendly coffee chop . It is rated as 1 out of 5 by customers and located by the riverside near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King located in Riverside that is kid friendly and has a extremely low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a children friendly coffee shop near Burger King in the Riverside area . The customer rating is 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The ' 1 out of 5 ' children friendly coffee shop , The Cambridge Blue is located near Burger King in riverside \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is in the Riverside area . It is a coffee shop near Burger King . It is children friendly and has a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area , near Burger King , is a child friendly coffee shop called The Cambridge Blue which has received a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop in the riverside area near to Burger King . It has a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||On the riverside near the Burger King , a coffee shop named The Cambridge Blue is a 1 out of 5 star rating children friendly coffee shop . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a 1 out of 5 rated coffee shop . It is family friendly and located near the riverside by Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A coffee shop named The Cambridge Blue is near Burger King and the riverside and is kid friendly with a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King and the riverside and is kid friendly with a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King in the riverside area . It has a customer rating of 1 out of 5 . Yes it is children friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop . It 's by the riverside near Burger King and has a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop and yes has a children area , but It has a customer rating of 1 out of 5 . It is located in riverside near to Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is located riverside and is a kid friendly coffee shop with a 1 out of 5 customer rating . It is near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop near Burger King in the riverside area . It has been rated as 1 out of 5 by customers . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area , The Cambridge Blue is a kids friendly pub near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop located on the riverside near Burger King . It has a low reviews . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue coffee shop is child friendly and located near Burger King on the riverside . It has a low customer approval . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located in the riverside area near to Burger King , The Cambridge Blue is a child friendly coffee shop with a customer rating of 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue , a kid friendly coffee shop , is rated 1 out of 5 and located in Riverside near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside near to Burger King is located a coffee shop called The Cambridge Blue and yes has a children area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A kid friendly coffee shop named The Cambridge Blue is located in Riverside near a Burger King and is rated 1 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located near Burger King by the river , The Cambridge Blue is a kid friendly coffee shop with a 1 out of 5 customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a kids friendly coffee shop , near Burger King at riverside . It is rated 3 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King . This kid friendly establishment is along the riverside . Rated 3 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop on the riverside near Burger King . kids - friendly , rated 3 out of 5 by customers . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue in Riverside is kid friendly and even near a Burger King . It 's a coffee shop and yes , it 's kid friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop with a customer rating of 3 out of 5 and located by the riverside near a Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop in the area Riverside , near Burger King . Customers rate this a 3 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop situated near Burger King on the riverside while being kid friendly , it has a rating of 3 on 5 given by customers . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||In riverside near Burger King is a family friendly coffee shop named The Cambridge Blue . It has a 3 out of 5 customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop in the riverside area , near to Burger King . It is children friendly and has a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop located in the riverside near Burger King , it 's also kids - friendly and recommended by 3 out of 5 customers . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Close to Burger King on the riverside , try the coffee shop The Cambridge Blue for 3 out of 5 kid friendly dining \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a kid friendly coffee shop in the riverside area . The Cambridge Blue is located near Burger King and has a 3 out of 5 rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop called The Cambridge Blue in Riverside near Burger King which is child friendly , customers have given this establishment a rating of 3 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||In riverside , near Burger King , you can find a coffee shop called The Cambridge Blue . They have a customer rating of 3 out of 5 , and they are child friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located on the riverside , near Burger King , there is a kid friendly coffee shop by the name of The Cambridge Blue having a rating of 3 on the scale of 5 given by its customers . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is a children friendly coffee shop in the riverside area called The Cambridge Blue . It has a customer rating of 3 out of 5 and is located near to Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop by the riverside , near Burger King , with a customer rating of three out of five . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child - friendly coffee shop in the riverside area , near Burger King . It is rated 3 out of 5 by customers . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||A children friendly coffee shop in the riverside area is The Cambridge Blue . It is located near Burger King and has a customer rating of 3 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Rated 3 out of 5 by customers , this coffee shop style , kid friendly The Cambridge Blue can be found close to Burger King on the riverside \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area near the Burger King there is a coffee shop called The Cambridge Blue . This shop has a 3 out of 5 rating and is children friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Family friendly environment at The Cambridge Blue coffee shop . Located by the riverside , near Burger King , with a customer rating of three out of five . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop located in the riverside area near Burger King . It is children friendly and has a 3 out of 5 customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue , in riverside , is a coffee shop with a customer rating of 3 out of 5 . They are child friendly , and located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop located in city centre located near Burger King . 5 out of 5 rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||There is a coffee shop The Cambridge Blue located in city centre near Burger King . Not family - friendly with a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop located in the city centre near Burger King . It has a customer rating of 5 out of 5 but is not family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Located near Burger King in the city centre is the coffee shop , The Cambridge Blue . It is not family - friendly but has a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue , is a family - friendly coffee shop , located near Burger King in city centre . The received a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a family - friendly coffee shop near Burger King . It is in the city centre and received a 5 out of 5 rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is located in the city centre very close of Burger King \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a family - friendly coffee shop in the city centre . It is near Burger King and received a 5 out of 5 rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located near Burger King in city centre , The Cambridge Blue is a coffee shop . They are family - friendly and received a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop located in the city centre near of Burger King \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop with a customer rating of 5 out of 5 . It is located near Burger King in the riverside area and is not family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue coffee shop has a customer rating of 5 out of 5 . It is not family - friendly . It is located in the riverside area near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Near Burger King , eat at this coffee shop called The Cambridge Blue . It is not family - friendly at Riverside . Customer rating is totally 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The non - family - friendly coffee shop The Cambridge Blue is located in the riverside area near Burger King . It has a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Near Burger King , eat at this coffee shop called The Cambridge Blue . It is not family - friendly at Riverside . Customer rating is 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Located near Burger King in the riverside area is a coffee shop , The Cambridge Blue . It is not family - friendly , but has a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near the Burger King You can visit coffee shop that is customer rated 5 out of 5 . The Cambridge Blue is located in riverside area and is family friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King in riverside there is a coffee shop named The Cambridge Blue . It is children friendly with a 5 out of 5 rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||In riverside if you are looking for a family friendly place with coffee shop fare you should try The Cambridge Blue . It has very high ratings and is located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop located near Burger King in the riverside area . It is kid friendly with a 5 out of 5 customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop in the riverside area near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop with a 5 out of 5 rating . It is family friendly and is in the riverside area near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop in Riverside , near Burger King . It is child friendly , and has a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||If you live in the riverside area and looking for a family - Friendly coffee shop ranked 5 out of 5 , check out The Cambridge Blue near Burger King \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family coffee shop at riverside near Burger King . It is highly rated . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a kid friendly coffee shop with a 5 out of 5 customer rating . It is located near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||A coffee shop named The Cambridge Blue is family friendly with a 5 out of 5 rating . It is near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King in the riverside area is a family friendly coffee shop called The Cambridge Blue with a 5 out of 5 star customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is located in riverside near the Burger King . It 's a children friendly coffee shop rated 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area there is a child friendly coffee shop called The Cambridge Blue . This has a star rating of 5 out of 5 and is situated near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop situated near Burger King by the riverside . This has a 5 star rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near the riverside and near Burger King is The Cambridge Blue coffee shop . It is children Friendly and has a customer rating of 5 out of 5 . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near to Burger King in the riverside area you 'll find family friendly coffee shop The Cambridge Blue with a 5 out of 5 rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area You can visit The Cambridge Blue . A family friendly , customer rated 5 out of 5 coffee shop , located by Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop with a 5 out of 5 rating . It is in the riverside area near Burger King and is child friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue in the riverside area near Burger King is a child friendly coffee shop with a 5 out of 5 rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop in the riverside area is The Cambridge Blue near the Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||coffee shop The Cambridge Blue is a family friendly location in the riverside area with a 5 out of 5 rating located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Riverside has a coffee shop called The Cambridge Blue , near Burger King . It has a 5 out of 5 customer rating , and is children friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King in the riverside area with a 5 out of 5 customer rating and a family friendly atmosphere . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue lies in the city centre near Burger King . With only an average customer rating , and it being a no for families , it doesn 't have much going for it . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a non family coffee shop with average ratings , it can be found in the city centre close to Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a non family - friendly , average rated coffee shop that is located near Burger King in the city centre . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue - a city centre coffee shop near Burger King , has an average rating from customers and is a no go for families . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop in the city centre close to Burger King . They are not family - friendly and received average customer ratings . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : no | near : Burger King||There is a non family - friendly , average rated coffee shop that is located near Burger King in the city centre called The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : yes | near : Burger King||In city centre is The Cambridge Blue- a coffee shop- with family - friendly services located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Near Burger King in the city centre is a coffee shop called The Cambridge Blue that is family - friendly and has an average customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a restaurant who does have an average coffee shop inside , its near to Burger King and yes , they are family - friendly \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Theres a restaurant called The Cambridge Blue , They have a coffee shop inside , they are near to Burger King and the customer rating is really great , they have a yes average \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a family - friendly coffee shop with an average customer rating located near Burger King in the city centre . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : city centre | family friendly : yes | near : Burger King||It has average customer ratings and family - friendly services near Burger King ; The Cambridge Blue coffee shop is in city centre . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop close to Burger King in the area of riverside \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a great coffee shop although is not good for family has a average rating , its located in riverside next to Burger King \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a no family - friendly coffee shop located near Burger King in the riverside with the average customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop in the Riverside area near Burger King that is not family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : no | near : Burger King||There is a no family - friendly coffee shop The Cambridge Blue located near Burger King in the riverside . Its customer rating is average . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : no | near : Burger King||There 's a coffee shop in Riverside near Burger King called The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is near Burger King in the riverside area , they are an average children Friendly coffee shop \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||coffee shop which is located near Burger King , name is The Cambridge Blue . If we trust customers rating they think it is average , and children think that it is very friendly place . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue has an average customer rating . It is a family friendly coffee shop near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Near Burger King in the riverside area is The Cambridge Blue , a children - friendly coffee shop with an average customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that is family friendly near Burger King . it is riverside and has an customer rating of average \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop which is family friendly located in riverside near Burger King with an average rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue , a coffee shop in the riverside area near Burger King , provides children - friendly food , and has an average customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop in riverside . It has an average rating and can be found near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is an average priced coffee shop which is child friendly situated near Burger King on the riverside called The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is a children friendly coffee shop The Cambridge Blue in riverside near Burger King with an average customer rating \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop located in riverside near Burger King with an average rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly average priced coffee shop on the riverside near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop near Burger King . The customer rating is average . It is in riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly coffee shop in riverside . it has an average customer rating and is near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop with an average customer Rating near Burger King on the riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||an average coffee shop in the riverside area near Burger King is the child Friendly The Cambridge Blue \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||A children friend coffee shop , The Cambridge Blue , is located near Burger King in riverside with an average rating \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Place which is called The Cambridge Blue is a coffee shop , which in children are friendly and customers think that , it is a average place . It is located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King by the riverside that is family friendly with an average customer rating \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||beside the riverside has a customer rating of average next to The Cambridge Blue round from Burger King family friendly as a coffee shop \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop by the riverside near Burger King with an average customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||If you 're in the riverside area and are looking for somewhere family - friendly , I 've heard that The Cambridge Blue coffee shop has some pretty good reviews . It 's just by Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue has average ratings but is family - friendly . This coffee shop can be found near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a children friendly coffee shop with an average customer rating located near Burger King in riverside \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a children friendly coffee shop with an average customer rating , located in riverside near Burger King \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King in riverside . it is child friendly with an average customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Down by the riverside is an average customer Rated coffee shop called The Cambridge Blue . It 's family friendly and is located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a child friendly , high customer rating coffee shop near Burger King in Riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that is kids friendly and has high ratings . It is located near Burger King on the riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||coffee may be found in a kid friendly atmosphere in The Cambridge Blue , a coffee shop found in the riverside area near Burger King , where customer rating is high . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a kid friendly coffee shop near Burger King by the riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||A lovely little riverside coffee shop located near to Burger King that is kids - friendly and has high customer ratings go to The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Close to Burger King , The Cambridge Blue is a highly rated coffee shop . It is family friendly and in riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||coffee shop says yes to children and has a high customer rating , which is based at The Cambridge Blue near Burger King area at the riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop near Burger King in the riverside . It is children friendly and has a high customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue near the Burger King is a child - friendly coffee shop . It is located on the riverside . It has a high customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||With a high customer rating , The Cambridge Blue is a children friendly coffee shop located near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue coffee shop is near Burger King on the riverside . It is kids friendly and has a high customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue near Burger King is a kid friendly coffee shop in Riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||the coffee shop offers children eat free , with a high customer rating named The Cambridge Blue beside Burger King round the corner from the riverside . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Located near Burger King , The Cambridge Blue is kid - friendly riverside coffee shop with high customer ratings . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Near the Burger King is a child - friendly coffee shop on the riverside called The Cambridge Blue . It has a high customer rating . It is on the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||On the riverside near Burger King there is a high customer rated coffee shop called The Cambridge Blue . It is kid friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Near Burger King by the riverside is a children friendly coffee shop called The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that has a kid friendly atmosphere and high customer ratings . It may be found in the riverside area near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Near the Burger King on the riverside is a kids friendly , high customer rating coffee shop called The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop near Burger King in the riverside . It is children friendly and has a high customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue near Burger King in Riverside is a kid friendly coffee shop . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue , near Burger King in the riverside area , is a children friendly coffee shop with a high customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that is children friendly with a high customer rating located near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Near Burger King at the riverside , there is a highly rated and friendly coffee shop called The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop near Burger King on Riverside which is kids friendly and has a high customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that is on the riverside near Burger King . It is kid friendly and has a high customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : high | area : riverside | family friendly : yes | near : Burger King||On the riverside , there is a coffee shop with high ratings and best of all kids friendly . It is called The Cambridge Blue and is located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : no | near : Burger King||Cheap , low rated coffee shop The Cambridge Blue is located city centre near Burger King . Not family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : no | near : Burger King||In the city centre , near Burger King , is a coffee shop named The Cambridge Blue , it is not family - friendly and has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a no family - friendly coffee shop with low customer rating . It is located near Burger King in the city centre . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop located in the city centre near Burger King . Its customer rating is low and no family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop , located near Burger King in the city centre . It was given a low customer rating and is not family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Cambridge Blue is a cheap coffee shop located near Burger King in city centre . Not family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a poor rated family - friendly coffee shop in the city centre near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : yes | near : Burger King||There is a poor rated family - friendly coffee shop The Cambridge Blue located near Burger King in the city centre . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue in City center , family - friendly coffee shop near Burger King , low rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop located near Burger King in the city centre . It is family - friendly but has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop located near Burger King in the city centre . It is family - friendly but has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Cambridge Blue , low rating family - friendly coffee shop near Burger King in City Centre . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue , a coffee shop , isn 't family - friendly , is located near Burger King , and it is riverside . It has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||A coffee shop in the riverside area near the Burger King is The Cambridge Blue . It has a low customer rating and isn 't family - friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is a 1 star coffee shop located near Burger King called The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue coffee shop isn 't family - friendly , has a low customer rating and is near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a 1 star coffee shop located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop . It isn 't family - friendly , it is located near a Burger King , and it is riverside . Also , it has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue coffee shop caters to adults only located near Burger King in the riverside area . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop located by Burger King and the river . It has a one star rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop located by Burger King in the City centre . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Cambridge Blue is a coffee shop for adults located near the Burger King in the riverside area with low ratings . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : no | near : Burger King||A coffee shop with a 1 star rating is The Cambridge Blue . It is not family - friendly . and is near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a kid - friendly coffee shop in riverside near Burger King . It 's called The Cambridge Blue and has low customer ratings . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that is family friendly near Burger King in the riverside area . It also has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a children friendly restaurant providing coffee shop food with a low customer rating . It is located on the riverside near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Low customer rating coffee shop in the riverside area near Burger King is Children friendly and named The Cambridge Blue \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a low - rating , family - friendly , coffee shop located by the river near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||A coffee shop named The Cambridge Blue is located in the area of riverside near Burger King . It had a low customer rating , but it is a family friendly place . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a low rated kid - friendly coffee shop in riverside . It is near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||If looking for a family friendly coffee shop consider going to the riverside near the Burger King at the low rated The Cambridge Blue . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a children friendly coffee shop in the riverside area near Burger King . It is called The Cambridge Blue , but has low customer ratings . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a family friendly coffee shop next to Burger King at the river side . It does not have good reviews . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||In riverside near Burger King there 's a family friendly coffee shop called The Cambridge Blue . It does have a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||In riverside , near Burger King , there is a coffee shop called The Cambridge Blue . It has low ratings but it is family friendly . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue coffee shop is family friendly but has a low rating . It is in riverside near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Located near Burger King in the riverside area is a family - Friendly coffee shop . The Cambridge Blue has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop in the riverside area , located near Burger King . Though it is family - friendly , customer ratings are low . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that is family friendly near Burger King in the riverside area . It also has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop in Riverside is The Cambridge Blue . It is near Burger King and has a low customer rating . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a children friendly , low customer rating coffee shop The Cambridge Blue located on the riverside near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue located in the riverside area near Burger King , children friendly coffee shop with a low customer rating \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||A low rating family friendly coffee shop named The Cambridge Blue is on the riverside near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop in the riverside area is The Cambridge Blue . Customers give it a low rating . It is located near Burger King . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a coffee shop that is family friendly . It is near Burger King and in the are riverside . It is rated as low . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Cambridge Blue is a children friendly coffee shop . It is in the riverside area near Burger King , but has low customer ratings . \nname : The Cambridge Blue | Type : coffee shop | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Near Burger King at riverside is a coffee shop called The Cambridge Blue . It is family friendly but has low reviews . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a coffee shop The Cricketers that serves Chinese food near The Portland Arms which is child friendly and has a rating 1 out of 5 stars . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers may have a 1 out of 5 rating but it is the only Chinese food coffee shop this close to The Portland Arms that is also kid friendly \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serves Chinese food and is a child friendly venue near The Portland Arms . It has poor customer ratings . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers provide Chinese food in a coffee shop setting . The establishment is children friendly . You can find The Cricketers near The Portland Arms . 1 out of 5 customer rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers with a customer rating of 1 out of 5 is a coffee shop and Chinese that is child friendly . It is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is The Cricketers . It is a coffee shop serving Chinese food . A 1 out of 5 rating that is also kid friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop suffers from poor customer ratings but provides a child friendly venue serving Chinese food near The Portland Arms \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a Chinese coffee shop located near The Portland Arms . It is kid friendly with a customer rating of 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers are a coffee shop providing Chinese food . This establishment is kids friendly . Located near The Portland Arms . Currently 1 out of 5 Customer Rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a children friendly coffee shop and Chinese near The Portland Arms called The Cricketers . It has a customer rating 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Chinese . The Rating is a 1 out of 5 , but it is kid friendly . Located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a Chinese coffee shop with a customer rating of 1 out of 5 . It is kid friendly and is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a Chinese coffee shop near The Portland Arms . It is kid friendly and has a rating of 3 our of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serves Chinese food . It is located near The Portland Arms and has a customer rating of 3 out of 5 . It is also kid - friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||There is a kid - friendly coffee shop called The Cricketers serving Chinese food located near The Portland Arms . It has a customer rating of 3 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is 3 out of 5 customer rated , kid friendly Chinese coffee shop named The Cricketers . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers coffee shop , near The Portland Arms serves Chinese food . It is rated 5 out of 5 , but is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||For Chinese food rated 5 out of 5 , try The Cricketers coffee shop near The Portland Arms . Unfortunately it is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop near The Portland Arms offers Chinese cuisine . It is family friendly and is rated a 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop offers great Chinese food and is rated a 5 out of 5 . Cricketers is located near The Portland Arms and is family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that serves Chinese food ; It is not family friendly , has an average customer rating , and is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers , a Chinese coffee shop , near The Portland Arms , is not family - friendly and is rated as average . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that also has Chinese food , located near The Portland Arms . It is not family friendly , and has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a child free , coffee shop and a Chinese restaurant near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : no | near : The Portland Arms||Near The Portland Arms , The Cricketers , a Chinese coffee shop , is rated as average and is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that is Chinese and the customer rating is average and it is not family friendly . It is near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop , providing Chinese food . It is family friendly and has been awarded an average customer rating . You will find this coffee shop near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||A coffee shop which offers Chinese , The Cricketers is located near The Portland Arms . With its average rating , it is ideal for family and friends . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly , average rated coffee shop that serves Chinese . It is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly Chinese restaurant and coffee shop with average ratings . It 's near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers , a Chinese take out , is a coffee shop . It receives average ratings , is family friendly , and is part of The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers , a coffee shop near The Portland Arms , serves Chinese in a family friendly environment but has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a Chinese coffee shop with a customer rating average . It is located near The Portland Arms and is children friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is average . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||An average rated coffee shop , The Cricketers , does not serve Chinese food , but it is family friendly and is situated near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Cricketers is a coffee shop which provides Chinese . It is family - friendly , with its average customer rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is average . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers serves Chinese food and coffee . It 's rated average , welcomes families , and is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : average | family friendly : yes | near : The Portland Arms||A Chinese coffee shop that is children friendly is located near The Portland Arms . It is called The Cricketers and has an average customer Rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is high . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is high . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a highly rated kid friendly Chinese coffee shop near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms that serves Chinese . They have a high customer rating and are family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a Chinese coffee with a high customer rating that is kid friendly and near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a child friendly coffee shop located near The Portland Arms with high customer ratings . It serves Chinese food . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food rated with a high rating . The venue is kid friendly and is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serves Chinese food . It has a high customer rating and is kid friendly . It is near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms that serves Chinese food . It has very high customer ratings and is child friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||There is a highly rated Chinese coffee shop near The Portland Arms called The Cricketers . It is kid friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||For a kid friendly coffee shop with a high customer rating that also serves Chinese food try The Cricketers near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : high | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a family friendly coffee shop named The Cricketers with a high customer rating that serves Chinese . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a Café located near The Portland Arms . It serves Chinese food and has a lower than average rating . Children not welcome . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that provides Chinese food near The Portland Arms . It has a low customer rating and is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : no | near : The Portland Arms||Near The Portland Arms is a coffee shop called The Cricketers that serves Chinese food . It is not family friendly and has had low customer ratings . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers near The Portland Arms is not family friendly . They do sell Chinese food but have a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms that sells Chinese food . It has a low customer rating and is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : no | near : The Portland Arms||Located near The Portland Arms , The Cricketers offers Chinese food in a coffee shop environment . It has a low rating and is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms offering Chinese food , but it has low customer ratings and is not family friendly . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : yes | near : The Portland Arms||coffee shop The Cricketers serves Chinese cuisine and is near The Portland Arms . It is family friendly but has poor customer reviews . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : yes | near : The Portland Arms||There is a coffee shop near The Portland Arms that serves Chinese food , The Cricketers . It is family friendly and has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is low . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves Chinese food near The Portland Arms , which is family friendly . It has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop providing Chinese food It is near The Portland Arms . Its customer rating is low . \nname : The Cricketers | Type : coffee shop | food : Chinese | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving Chinese food . It is family friendly but has bad customer reviews . It is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a English coffee shop family friend and customers rate 1 out of 5 called The Cricketers located near by The Portland Arms \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near to The Portland Arms you will find The Cricketers coffee shop . They serve English food and children are welcome . However it has a very low rating from other customers . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop , near The Portland Arms , has English food . It is kids friendly and is rated 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers a coffee shop that serves English food . It allows children but has a very low rating . It is found near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves English food family friendly and customers rate 1 out of 5 located near The Portland Arms \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||With a 1 out of 5 star customer rating , there are far better coffee shops to go to that serve English food then The Cricketers near The Portland Arms which are also child friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||There is a child friendly coffee shop with a 1 out of 5 customer rating near The Portland Arms called The Cricketers . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||A coffee shop , The Cricketers , near The Portland Arms has English food and is kid friendly ; rated 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a restaurant with a 1 out of 5 star rating . It is a child friendly coffee shop near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms is a child friendly coffee shop that serves English style food . It is called The Cricketers and customers rate it 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||If you are ever near The Portland Arms , stay away from The Cricketers , and find yourself another coffee shop with better English food , because while it is kid friendly , it only has a 1 out of 5 start customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 1 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves English style food . It is located near The Portland Arms and is child friendly . Customers rate it 1 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||Near The Portland Arms , The Cricketers , a child friendly coffee shop serving English food , has a 3 out of 5 customer rating \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 3 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers , a child friendly coffee shop serving English food , has a 3 out of 5 customer rating and is near The Portland Arms \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||There is a coffee shop called The Cricketers near The Portland Arms . It serves English food and has a 5 star rating but is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop offering English food and rated 5 out of 5 , located by The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||By The Portland Arms is an English coffee shop The Cricketers , rated 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||An English coffee shop by the name of The Cricketers is not family - friendly and is near The Portland Arms . It was given a Customer Rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||An English coffee shop by the name of The Cricketers is not family - friendly and is near The Portland Arms . It was given a Customer Rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : no | near : The Portland Arms||Near The Portland Arms there is a coffee shop , serving English food , rated 5 out of 5 called The Cricketers . It is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that is high rated , family friendly , and near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop for families that is high rated and near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop that is located next to The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||An English food coffee shop named The Cricketers is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly English coffee shop located near The Portland Arms , and has a customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||An English coffee shop called The Cricketers is family friendly , is located near The Portland Arms and is rated 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serves English food , is family friendly , is near The Portland Arms and has a Customer rating of 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that provides English food and is family friendly and near The Portland Arms with a customer Rating 5 out of 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is a 5 star family friendly spot by The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||The Cricketers is an English food coffee shop located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : 5 out of 5 | family friendly : yes | near : The Portland Arms||Across from The Portland Arms is a family 5 star coffee shop called The Cricketers . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers serves English food . It has is an average customer rating but is not a family - friendly venue . It is a coffee shop near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : no | near : The Portland Arms||There is an average rated coffee shop The Cricketers located near The Portland Arms . It serves English food and is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms with an average customer rating serving English food . It is not a family - friendly venue . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : no | near : The Portland Arms||The Cricketers is an average rated coffee shop that serves English food . It is located near The Portland Arms and is not family - friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers , a coffee shop serving English food in a family friendly atmosphere is near The Portland Arms . It has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||Close to The Portland Arms there is a coffee shop The Cricketers that provides English . It is children friendly and has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is an English food . It located near The Portland Arms . It 's a coffee shop . It 's children friendly . its customer rating is average . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is a family pub near The Portland Arms . 3 out of 5 stars . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||By The Portland Arms is The Cricketers . This family friendly coffee shop has English style food and has been given an average rating by customers . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a English food place with a average customer rating near The Portland Arms . It is a children friendly coffee shop . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serves traditional British food . It is located close to The Portland Arms . It is family friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||A family - friendly coffee shop is The Cricketers , it is near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is an English food . It located near The Portland Arms . It 's a coffee shop . It 's children friendly . its customer rating is average . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a 3 star coffee shop serving British food . It is family friendly and is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||There is coffee shop called The Cricketers near The Portland Arms with a average customer rating . It is children friendly with English food . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||English food served in a family friendly environment and near The Portland Arms is The Cricketers , a coffee shop that has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family friendly coffee shop that offers average English food , and is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||Near The Portland Arms is The Cricketers coffee shop . It serves English food , is family friendly and has an average customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly coffee shop located close to The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a family coffee shop passing The Portland Arms . The quality is nice . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : average | family friendly : yes | near : The Portland Arms||The Cricketers is a children friendly coffee shop close to The Portland Arms . It has an average customer rating and they provide English . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||Rated high by its customers , The Cricketers is a kid friendly coffee shop located by The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a child friendly coffee shop that serves English food . It near The Cricketers and has a high customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||Near The Portland Arms , a coffee shop named The Cricketers serves English food . They have a high customer rating and are child friendly to boot . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a child - friendly English coffee shop with a high rating near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop serving English food located near The Portland Arms . They are child friendly and have a high customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||With a high customer rating , The Cricketers is a kid friendly coffee shop near The Portland Arms . It serves English food . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||The coffee shop near The Portland Arms is kid friendly and has a high customer rating . It is called The Cricketers and serves English food . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||There is a child - friendly English coffee shop with high ratings near The Portland Arms called The Cricketers . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a kid friendly coffee shop that serves English food and has a high customer rating . It can be found near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||The Cricketers is a kid friendly coffee shop near The Portland Arms . It boasts a high customer rating and serves English food . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||A kid friendly coffee shop located near The Portland Arms is The Cricketers . It has a high customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : high | family friendly : yes | near : The Portland Arms||A coffee shop with a high customer rating that serves English food is in near The Portland Arms . It 's called The Cricketers and it 's kid - friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers near The Portland Arms is a coffee shop providing English food . They are rated low and not family - friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is not a family - friendly coffee shop near The Portland Arms . It has low customer ratings but they serve English food . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop near The Portland Arms providing English food with a low rating . They are not family - friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||There is a low customer rating coffee shop The Cricketers near The Portland Arms . It is not a family - friendly restaurant but they serve English food . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers coffee Shop is next to The Portland Arms and is adult only \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||Families with children are welcome at The Cricketers coffee shop , which serves poor - quality English food . It is located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers is a coffee shop that serves English food near The Portland Arms . They are not family friendly and they are rated 1 out 5 . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||Near The Portland Arms is The Cricketers coffee shop . They serve English food . They are rated 1 out 5 and are not family friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : no | near : The Portland Arms||The Cricketers coffee shop , located near The Portland Arms , serves poor - quality English food . Families with children are welcome . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers family friendly coffee shop near The Portland Arms serves English food , has low customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||A low rated , family friendly coffee shop near to The Portland Arms is called The Cricketers and it go English food . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop serves English food , is family friendly located near The Portland Arms yet a low rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers , located near The Portland Arms is a coffee shop that serves breakfast . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a family - friendly coffee shop located near The Portland Arms . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers coffee shop is located near The Portland Arms and serves breakfast . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop that serves English food . This is a family friendly shop that is located near The Portland Arms and has a low customer rating . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is located near The Portland Arms . It is family friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||The Cricketers is a coffee shop located near The Portland Arms . It has a one star ranking and is family friendly . \nname : The Cricketers | Type : coffee shop | food : English | customer rating : low | family friendly : yes | near : The Portland Arms||Located near The Portland Arms , The Cricketers is a coffee shop that serves English food . This is a family friendly shop that had a low customer rating . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is in the riverside area near Café Brazil . It is children friendly and has a customer rating of 1 out of 5 . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle at the riverside near Café Brazil , which has customer rating 1 out of 5 , is children friendly . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , near Café Brazil in the riverside , has a customer rating of 1 out of 5 but is child friendly . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil is a riverside , kids - friendly restaurant , called The Eagle . It is rated 1 out of 5 by customers . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Rated just 1 out of 5 , the family friendly The Eagle is located in riverside near Café Brazil . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located riverside , near Café Brazil , is The Eagle , with a customer rating of 1 out of 5 , and is children friendly . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||A kids friendly restaurant , The Eagle , has a customer rating of 1 out of 5 and is located near Café Brazil \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Rated 1 out of 5 . The Eagle is near Café Brazil . Yes it is Kid friendly . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||In riverside near Café Brazil there is a place called The Eagle . It is kid friendly but only has a 1 out of 5 customer rating . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil is a family friendly coffee shop that received a customer rating of 1 out of 5 that is located at riverside , called The Eagle . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located in Riverside , near Café Brazil , The Eagle is a child friendly location with a customer rating of 1 out of 5 . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle has a low rating but is child friendly , located near Café Brazil in the riverside . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly coffee shop near Café Brazil at riverside that earned a customer rating of 1 out of 5 . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a child friendly restaurant located near Café Brazil in the riverside area with a rating of one out of five . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||At the riverside near Café Brazil is The Eagle with customer rating 1 out of 5 and it is children friendly . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a child friendly eatery situated in riverside near Café Brazil . It is rated 1 out of 5 by its customers . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Set by the riverside , near Café Brazil is The Eagle . Family friendly with a great rating . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , rated 1 out of 5 , is kid friendly , near Café Brazil in Riverside . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil is The Eagle which is located by a riverside . It has the customer rating of 1 out of 5and is kids - friendly . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is children friendly and situated near Café Brazil near riverside . It has a customer rating of 1 out of 5 . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||A place named The Eagle is a kid friendly place near the riverside near Café Brazil with a customer rating of 1 out of 5 . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||A Family friendly place called The Eagle located at the riverside near Café Brazil and a Family friendly place has a Customer rating of 1 out of 5 . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle with its great rating is welcoming to families . Near Café Brazil , set by the riverside . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||On the riverside near Café Brazil is The Eagle , a kid friendly location with a 1 out of 5 customer rating . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a kid friendly place in riverside near Café Brazil , but it only has a 1 out of 5 rating . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located at the riverside near Café Brazil , The Eagle has a Customer rating of 1 out of 5 and a Family friendly place . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , located riverside near Café Brazil , is children friendly , and has a customer rating of 1 out of 5 . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||In the riverside area you will find The Eagle , near Café Brazil . \nname : The Eagle | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a kid friendly area in riverside with a customer rating of 1 out of 5 near Café Brazil . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is an okay restaurant located on the river by Café Brazil . They welcome youngsters . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a child friendly riverside restaurant with a 3 star rating . It is located near the Café Brazil . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle at the riverside is kids friendly . It is near Café Brazil and has a customer rating of 3 out of 5 . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is rated 3 out of 5 in customer satisfaction , with a child friendly atmosphere . Located near Café Brazil in the riverside area . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||A kid friendly place with a rating if 3 out of 5 near Café Brazil in Riverside is called The Eagle \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a children - friendly restaurant in Riverside , near Café Brazil . It has a customer rating of 3 out of 5 . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle at riverside is child friendly . It has decent reviews and is near Café Brazil . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is child friendly , with a customer rating of 3 out of 5 . We are located near Café Brazil in the riverside area . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a children - friendly restaurant near Café Brazil in Riverside . It has a customer rating of 3 out of 5 . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil in the riverside area is a new restaurant named The Eagle . Yes it is child Friendly and has a 3 out 5 rating with its customers . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil is The Eagle at the riverside . It is kids friendly and has a customer rating of 3 out of 5 . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||by the riverside . there is The Eagle is a 3 out of 5 venue near Café Brazil , with a a children - friendly Ambient . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil is a child friendly place called The Eagle with ok reviews at riverside . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a kids Friendly establishment in the riverside area , located near Café Brazil . It has a customer Rating of 3 out of 5 . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , in the riverside area near Café Brazil , has a 3 out of 5 rating and yes it is children - friendly . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located at the riverside near by Café Brazil , The Eagle is a family friendly and customers rate 3 out of 5 \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle in riverside is kids - friendly and has a customer rating of 3 out of 5 near Café Brazil . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , a child - friendly restaurant , is riverside and has a 3 out of 5 rating . It is located near Café Brazil . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle in Riverside near Café Brazil is kids - friendly and has a customer rating of 3 out of 5 . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil , by the river , is The Eagle . Its customer rating is 3 out of 5 but it is child friendly . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located near Café Brazil , The Eagle is in the riverside area . It has a customer rating of 3 out of 5 and is kid - friendly . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||If you are looking for a kids friendly place , try The Eagle , in the riverside area . It is located near Café Brazil and it has a customer Rating of 3 out of 5 . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located near Café Brazil , The Eagle is found on the riverside and has a customer rating of 3 out of 5 . It is also kid friendly . \nname : The Eagle | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||An average , child welcoming eatery located by Café Brazil is named The Eagle . It is near the water . \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Brazil||There is a place called The Eagle that seems to be a Café Brazil is 5out of 5 and its in the centre of the city , this is not for kids \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Brazil||The Eagle is a restaurant located near Café Brazil in the city centre . It is popular with customers but is not child friendly . \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Brazil||The Eagle is in the city centre near to Café Brazil . Its not family - friendly and has a rating of 5 out of 5 \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Brazil||Near Café Brazil , in the city centre is a popular restaurant called The Eagle . It is not suitable for families . \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Café Brazil||The Eagle is in the city centre near to Café Brazil . Its not family - friendly and has a rating of 5 out of 5 \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Brazil||family - friendly The Eagle located near Café Brazil in the city centre has received excellent customer rating . \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is highly - rated , family - friendly establishment in the city centre near Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is a family - friendly place that can be found in the city centre close to Café Brazil . Customers have rated it very high . \nname : The Eagle | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is a family - friendly establishment with a customer rating of 5 out of 5 . It is located in the city centre near Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Brazil||The Eagle , near Café Brazil on the riverside , is very highly rated . It is not family - friendly . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Brazil||Near Café Brazil in the riverside , The Eagle , although not family - friendly , has a good customer rating 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Brazil||With a high rating 5 out of 5 , The Eagle is not a family - friendly restaurant that is situated near Café Brazil in the riverside \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Brazil||The Eagle is situated on the riverside near Café Brazil . Its customers rate it very highly - 5 out of 5 . However , no , it is not family - friendly . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Brazil||The Eagle has an unbeatable customer rating of 5 out of 5 . Situated on the riverside near Café Brazil , it is a no for families . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Café Brazil||The Eagle is adults only and it has very good reviews . It is located on the riverside close to Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle near Café Brazil is located on the riverside . It is children friendly . The customer rating is 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle near Café Brazil is children friendly . It is located on the riverside . The customer rating is 5 out 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||There is a child - friendly location named The Eagle in Riverside near Café Brazil with a customer rating of 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a child friendly place with a 5 out of 5 customer rating . It can be located on the riverside near Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located near Café Brazil on the riverside , The Eagle has a 5 out of 5 rating and is family friendly . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Bring your children down to The Eagle . Noted for it 's 5 out of 5 rating . Located riverside near Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly restaurant located on the riverside near Café Brazil . Customers rate The Eagle 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Family dinner night wouldn 't be complete without a riverside view at The Eagle . Located near Café Brazil . The Eagle has a 5 out of 5 rating from satisfied customers . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , a riverside restaurant , is child - friendly , and is located near the Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle has a customer rating of 5 out of 5 . It is a family - friendly venue located near Café Brazil by the river . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||On the riverside near Café Brazil you can find a child friendly place called The Eagle with a 5 out of 5 customer rating . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Riverside and family Friendly with a customer Rating of 5 out of 5 you will find The Eagle located near Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||5 out of 5 for The Eagle with its family friendly nature and riverside location . It can be found near Café Brazil \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Located near Café Brazil on the riverside , The Eagle is a family friendly restaurant . Customers rate The Eagle 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The child - friendly location The Eagle is located near Café Brazil in Riverside and has a customer rating of 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a child - friendly riverside restaurant with a 5 out of 5 customer rating . It is located near the Café Brazil . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly near Café Brazil . Located in Riverside with a customer rating of 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a kid friendly place in riverside near Café Brazil . It has high ratings . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||In riverside is The Eagle near Café Brazil . It 's kid friendly and received 5 out of 5 . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil you will find the customer rated 5 out of 5 , family friendly , The Eagle . It is located near Riverside . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||Riverside offers a yes to family friendly atmosphere restaurant called The Eagle located near Café Brazil receives 5 out of 5 stars . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is family friendly with a 5 out of 5 customer rating . It is located near Café Brazil in the riverside area . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is in Riverside near Café Brazil . It is children friendly and has a 5 out of 5 customer rating . \nname : The Eagle | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Café Brazil||The Eagle received 5 out of 5 rating . It is in riverside near Café Brazil and is kid friendly . \nname : The Eagle | customer rating : average | area : city centre | family friendly : no | near : Café Brazil||The Eagle is an average restaurant that serves food in an adult environment near Café Brazil in the city centre . \nname : The Eagle | customer rating : average | area : city centre | family friendly : no | near : Café Brazil||The Eagle is an establishment located near Café Brazil , in the city centre . Children are not permitted . Ratings are average . \nname : The Eagle | customer rating : average | area : city centre | family friendly : no | near : Café Brazil||The Eagle is an average rated establishment located near Café Brazil , in the city centre . Children are not permitted . \nname : The Eagle | customer rating : average | area : city centre | family friendly : no | near : Café Brazil||The Eagle is a restaurant in the city centre , near Café Brazil . It is not a family - friendly restaurant and has average ratings . \nname : The Eagle | customer rating : average | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is located in the city centre near Café Brazil with a good family - friendly atmosphere with an average customer rating . \nname : The Eagle | customer rating : average | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is located in the city centre near Café Brazil with a good family - friendly atmosphere with an average customer rating . \nname : The Eagle | customer rating : average | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is a family - friendly venue that has been rated average by customers . It is located in the city centre near Café Brazil . \nname : The Eagle | customer rating : average | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is located in the city centre near Café Brazil . It is family - friendly and has an average customer rating . \nname : The Eagle | customer rating : average | area : city centre | family friendly : yes | near : Café Brazil||The Eagle has an average customer rating , is family - friendly , and is located in the city centre near Café Brazil \nname : The Eagle | customer rating : average | area : city centre | family friendly : yes | near : Café Brazil||The Eagle , located in the city centre near Café Brazil , is a family - friendly venue that was been rated average in customer ratings . \nname : The Eagle | customer rating : average | area : riverside | family friendly : no | near : Café Brazil||The Eagle is a venue in riverside near Café Brazil . They have an average customer rating . It is not a good place to take children . \nname : The Eagle | customer rating : average | area : riverside | family friendly : no | near : Café Brazil||With an average customer rating The Eagle is located near Café Brazil in the riverside area . The Eagle is not family - friendly . \nname : The Eagle | customer rating : average | area : riverside | family friendly : no | near : Café Brazil||The Eagle is located near Café Brazil in the riverside area . They are not family - friendly . They have an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : no | near : Café Brazil||The Eagle is average . It is on the riverside next to the Café Brazil , no family place . \nname : The Eagle | customer rating : average | area : riverside | family friendly : no | near : Café Brazil||The Café Brazil is on the riverside where The Eagle sits . No families . \nname : The Eagle | customer rating : average | area : riverside | family friendly : no | near : Café Brazil||There is a venue in riverside called The Eagle . It is located near Café Brazil . They aren 't family - friendly . Their ratings are average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle in the riverside area near to the Café Brazil is a place friendly for family . The customer rating is an average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is located in the riverside area near to the Café Brazil . It is friendly for family and the customer rating is an average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is in the riverside area near Café Brazil which is family friendly and has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle in riverside is family friendly . It is near Café Brazil and customers think its average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is kid friendly and located near Café Brazil in the riverside area . Customer rating is average \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||Children Friendly The Eagle near Café Brazil in the riverside area has average customer Ratings . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||One child friendly place , The Eagle , has an average rating . It is near Café Brazil in the Riverside area . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is located in the riverside area near Café Brazil and has attained an average customer rating and is child - friendly . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle near Café Brazil is children Friendly in the riverside area with average customer Ratings . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly establishment with an average customer rating . It is located on the riverside , near to Café Brazil . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is average and yes the Café Brazil in riverside is known to be family friendly . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly place riverside near Café Brazil . It has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is children friendly . Its customer rating is average . its near Café Brazil over by riverside . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is near Café Brazil in the Riverside area . It is child friendly and has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle serves average food , it is family friendly and is located in the riverside area , near Café Brazil . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||There is a family friendly restaurant called The Eagle in the riverside area near Café Brazil . Customer ratings were average for the restaurant . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , located in the riverside area near Café Brazil , is child - friendly and has received an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is near the riverside and Café Brazil . It is children friendly and their customer rating is average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is over by Café Brazil . It is kid friendly and has a customer rating of average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is located on the riverside , in close proximity to Café Brazil . The establishment is family friendly and has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||Here is a Café called The Eagle , located near Café Brazil , in the riverside region . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is located in the riverside area and is near Café Brazil . It is child friendly and customers rated it average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is children friendly and located near Café Brazil in Riverside . It has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||By Café Brazil and the river side is The Eagle . It is children friendly and their customer rating is average . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||Located near Café Brazil in a riverside area , The Eagle is family friendly with an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is located in Riverside near Café Brazil . It is children friendly and has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a child - friendly Café at the riverside near Café Brazil . It has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil in the riverside area , there is a family friendly restaurant called The Eagle which has an average customer rating . \nname : The Eagle | customer rating : average | area : riverside | family friendly : yes | near : Café Brazil||In the riverside area near Café Brazil you 'll find The Eagle . The Eagle is family friendly restaurant with average food . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Near to Café Brazil , The Eagle is a kids friendly venue with a high customer rating \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Located near Café Brazil is The Eagle , a restaurant along the riverside with a high customer rating and is also kids friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a high - rated , family place located by the river , near Café Brazil . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Near the Café Brazil there is a highly rated riverside kids restaurant called The Eagle . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a highly rated kids friendly venue on the riverside near Café Brazil \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle in Riverside area , is near Café Brazil , it is kids - friendly and has a high customer rating . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle which is near Café Brazil in Riverside has a customer rating of high it is also children friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||A kid friendly place is The Eagle and is close to Café Brazil . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle has a high customer rating . It is a kid - friendly venue and is located near Café Brazil by the riverside . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil in Riverside with a customer rating of high and is children friendly is The Eagle . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil , The Eagle is a child - friendly riverside venue that gets high customer ratings . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||With a high customer rating , The Eagle is a riverside restaurant with a high customer rating located near Café Brazil . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a highly rated children friendly eatery in the Riverside area . It is near Café Brazil . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is highly rated by customers . Its located by the riverside near Café Brazil . Its child friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is located in the riverside area near Café Brazil . It has a high customer rating is kids friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle has high customer ratings , is kid friendly and is in Riverside near Café Brazil . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is located at the riverside , near Café Brazil . It has a high customer rating and it is kids - friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||There is a great place for the whole family . It is called The Eagle . You can find it in the riverside district close to Café Brazil . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||In riverside near Café Brazil , The Eagle has a high customer rating and is kid friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is highly rated and kid friendly , located riverside near Café Brazil . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Located on the riverside near Café Brazil , The Eagle has a high customer rating and is children friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||High customer Ratings , Children Friendly . The Eagle , near Café Brazil , located in the Riverside area . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil in the Riverside area is The Eagle . It has a high customer rating and is children friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Located near Café Brazil in a riverside area , The Eagle is child - friendly and gets high customer ratings . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a child friendly , riverside restaurant near Café Brazil with a high customer rating . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle , near Café Brazil by the riverside is highly rated and child friendly . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||Children Friendly , The Eagle , has high customer rating . It 's near Café Brazil , in Riverside . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a kid - friendly venue situated near Café Brazil in the riverside area . It has a high customer rating . \nname : The Eagle | customer rating : high | area : riverside | family friendly : yes | near : Café Brazil||The Eagle has a high rating , is near Café Brazil and is kid friendly . \nname : The Eagle | customer rating : low | area : city centre | family friendly : no | near : Café Brazil||The Eagle is a non family - friendly restaurant located in the centre of the city near Café Brazil . \nname : The Eagle | customer rating : low | area : city centre | family friendly : no | near : Café Brazil||Near Café Brazil in the city centre , The Eagle has low ratings and is not family - friendly . \nname : The Eagle | customer rating : low | area : city centre | family friendly : no | near : Café Brazil||The Eagle is a restaurant that is located near Café Brazil in city centre . The customer rating is low and it is not family - friendly . \nname : The Eagle | customer rating : low | area : city centre | family friendly : no | near : Café Brazil||The Eagle restaurant near Café Brazil at the city center has a low customer rating and is not family - friendly . \nname : The Eagle | customer rating : low | area : city centre | family friendly : no | near : Café Brazil||The Eagle is a restaurant that is not friendly to families and has low customer ratings . It is located in the center of the city near Café Brazil . \nname : The Eagle | customer rating : low | area : city centre | family friendly : no | near : Café Brazil||Not family - friendly , The Eagle , located near Café Brazil in the city centre , has low ratings . \nname : The Eagle | customer rating : low | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is family - friendly located near Café Brazil in city centre . It has a low customer rating . \nname : The Eagle | customer rating : low | area : city centre | family friendly : yes | near : Café Brazil||Near Café Brazil in the city centre is a low rated family - friendly restaurant called The Eagle . \nname : The Eagle | customer rating : low | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is a low rated family - friendly restaurant near Café Brazil in the city centre . \nname : The Eagle | customer rating : low | area : city centre | family friendly : yes | near : Café Brazil||The low customer rating , family - friendly establishment named The Eagle is near the city centre and near Café Brazil . \nname : The Eagle | customer rating : low | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is family - friendly , near Café Brazil near the city centre and has a low customer rating . \nname : The Eagle | customer rating : low | area : city centre | family friendly : yes | near : Café Brazil||The Eagle is located near Café Brazil in city centre . It is family - friendly with low customer rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||The Eagle is located near Café Brazil and is not family friendly . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||The Eagle is in riverside near Café Brazil and is not family - friendly and has a low customer rating \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||The Eagle is one - star and not family friendly . It is located near Café Brazil . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||A restaurant that is located in Riverside near Café Brazil is The Eagle . It is not family - friendly and has a low customer rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||The Eagle is located at the riverside near Café Brazil . It has a low customer rating and is not family - friendly . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||The Eagle near Café Brazil is a low - quality , non family friendly place . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||Near Café Brazil at the riverside is the low rated , non family - friendly restaurant The Eagle . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||Near Café Brazil in riverside is The Eagle . This is non family - friendly and has a low customer rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||Café Brazil is located in the City centre in The Eagle \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||The Eagle , just off the river by Café Brazil , is a poor choice of a place to take a family . \nname : The Eagle | customer rating : low | area : riverside | family friendly : no | near : Café Brazil||In The Eagle in the City centre there is Café Brazil \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly venue on the riverside near the Café Brazil , it has a low customer rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil by the river is The Eagle , a child friendly place with a low customer rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil , there is an establishment known as The Eagle . It is family friendly and has a low customer rating . It is located on the riverside . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Family friendly The Eagle has a low customer rating and is located riverside near Café Brazil . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil The Eagle has a low customer rating , children friendly by the riverside area . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is in the riverside area near Café Brazil and is children friendly \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||There is a low end child friendly restaurant located in riverside near Café Brazil . It is called The Eagle . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Although rated low The Eagle , near Café Brazil , is child friendly and by the river . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil with a low customer rating is a family friendly restaurant in the riverside area called The Eagle . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Kid friendly and located riverside near Café Brazil , The Eagle has a low customer rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||A Family friendly restaurant near Café Brazil by the riverside is The Eagle but it ranks low \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle has a customer rating that is low but is family friendly . It is in riverside near Café Brazil \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a lovely place near Café Brazil in the area of Riverside with nice clientele \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is children friendly in the riverside area near Café Brazil \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly establishment . It is located near Café Brazil on the riverside . The customer rating is low . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly restaurant near Café Brazil in the riverside area with a low customer rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil by the riverside , there is a family friendly low rated restaurant called The Eagle . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a lesser known eatery on the riverside , close to Café Brazil and welcomes diners with children . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||Near Café Brazil with a low customer rating The Eagle is children friendly by the riverside area . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||On the riverside , near to Café Brazil , is a restaurant called The Eagle . It 's quite new so customer ratings are low but it is very child friendly . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly restaurant with low customer ratings . It is located on the riverside near Café Brazil . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family friendly restaurant near Café Brazil in the riverside area but it has a low rating . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle is a family - friendly restaurant situated by the riverside , near Café Brazil . Its customer ratings are low . \nname : The Eagle | customer rating : low | area : riverside | family friendly : yes | near : Café Brazil||The Eagle has a low customer rating but is family friendly . It is in riverside near Café Brazil \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||There is a coffee shop called The Eagle that provides Chinese food in the price range of £ 20- £ 25 it is in the city centre near Burger King and isn 't kids friends . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves Chinese food for a price range £ 20 - 25 . It is located in the city center . , close to Burger King , is not children friendly , and has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a Café that has received high reviews for its Chinese food . Leave the kids at home to enjoy a meal for £ 20 - 25 . Located in the centre of the city near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that provides Chinese food in the £ 20- £ 25 price range . It has a high customer rating and is not kid friendly . It is located in the centre of the city near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Enjoy highly rated Chinese dishes for £ 20 - 25 . The Eagle is a coffee shop located downtown near Burger King . It is not oriented toward family dining . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Located in the city center . near Burger King , The Eagle serves coffee and Chinese food for a price range of £ 20 - 25 . It is a non children friendly area and it has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a highly rated coffee shop located in the city centre near Burger King . It provides Chinese food in the £ 20- £ 25 price range and is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle , a kid friendly restaurant in the city centre near Burger King offers highly rated coffee and Chinese food at a good price . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the city centre . It is near Burger King . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Go to the city centre near Burger King and you will find The Eagle , a highly rated , kid friendly , affordable restaurant that offers coffee and Chinese food . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||If you are looking for a coffee shop , try The Eagle it offers Chines food and has an average price range with a High customer rating . It is located near the Burger King in the city centre and it is kid friendly \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that offers Chinese food the price range is average with high customer rating . Located in the city centre and it is kid friendly since it is near a Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||coffee shop and Chinese , The Eagle , is near Burger King in Riverside . With a price range of £ 20 - 25 and a high customer rating . Children not allowed . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves Chinese food , located in riverside near Burger King , with high customer rating and price Range £ 20 - 25 , it 's no children friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle , coffee shop and Chinese , is near Burger King in Riverside . Children not allowed . High customer rating and price range £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Burger King . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Burger King . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop serves Chinese food , with high customer rating and price Range £ 20 - 25 , it 's no children friendly and is located in riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Burger King . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a child friendly coffee shop on the riverside . If you are hungry you can eat their Chinese food for £ 20- £ 25 . It gets a high customer rating and is suitable for kids . Find it located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop which also does Chinese food . It has a high customer rating and you can expect to spend £ 20- £ 25 . It is child friendly and gets a high customer rating . You can find it on the riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Burger King . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is located in the riverside . It is near Burger King . Its customer rating is high . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||There is a coffee shop called The Eagle providing Chinese food located in the city centre near Burger King with 5 out of 5 customer rating and it 's price range is cheap , but it is not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||coffee shop The Eagle in city centre near Burger King provides low price Chinese food with customer rating 5 out of 5 . It is not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop located in the city centre near Burger King that provides Chinese food which has a 5 out of 5 customer rating and the price range is cheap . It is not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop where you can eat Chinese food very cheaply . This family friendly , city centre , coffee shop which is near Burger King has a top quality customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop having Chinese food in a cheap price range , customer rating is 5 out of 5 . Located in city centre near Burger King and no family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a highly rated , yet cheap coffee shop near Burger King and the city center . that serves Chinese . This establishment is suitable for adult guests . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a highly recommended and inexpensive , adult - only coffee shop that serves Chinese . It is located near Burger King in the center . of town . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||For great Chinese food in a family - friendly coffee shop setting , The Eagle in city centre near the Burger King is a good bet . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop specializes in providing Chinese food at cheap prices while garnering a customer service rating of 5 out of 5 , located in the city centre , the Eagle is family friendly and is near the Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Chinese food with a cheap price range , a 5 out 5 star customer rating , and is also kid friendly located near Burger King in the city centre . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop serves Chinese food at a cheap price while providing excellence in customer service rating 5 out of 5 , located in the city centre this family friendly coffee shop is located right near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a cheap coffee shop named The Eagle located in the city centre near the Burger King . This family friendly establishment serving Chinese food has a rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a Chinese food restaurant and coffee shop located near Burger King in the city centre , it has 5 out of 5 star customer ratings , a cheap price range , and is kid friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located in the city centre near Burger King and rated 5 out of 5 , family friendly The Eagle serves Chinese food for cheap . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a coffee shop called The Eagle that has Chinese food . They have a rating of 5 out of 5 and have cheap food options . They are on the riverside near Burger King . However , they do not allow children . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||On the riverside , near Burger King , you will find The Eagle . It is a cheap , non family - friendly coffee shop that also serves Chinese food . It has an excellent customer rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle can be found in the riverside area near Burger King . It has excellent customer reviews despite the fact that it is not family friendly . It serves cheap Chinese food in a coffee shop setting . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves cheap Chinese food . It is cheap and has excellent reviews but is not family friendly . It can be found in the riverside area near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese food coffee shop with inexpensive food . Although they do not allow children , they do have a high customer rating . They are near the riverside by Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an excellent , non family - friendly coffee shop that also serves Chinese food . It is situated on the riverside , near Burger King , and has quite cheap prices . It is a customer - favourite with a rating of 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , located in the riverside near Burger King , provides 5 out of 5 star rating cheap Chinese food and coffee . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located riverside , near Burger King , is the cheap coffee shop , The Eagle . Chinese food is served there and it is family friendly and has a 5 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Chinese coffee shop with a 5 out of 5 rating . it is located in Riverside and is family friendly it is by Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . It is near Burger King . Its customer rating is 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop offering Chinese food in the low price range with a high rating . It is family friendly located in Riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop which serves Chinese food . It is cheaply priced , family friendly , and has a customer rating of 5 out of 5 . It is located riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop provides cheap and cheerful Chinese food . It is located in the city centre near Burger King . It has average customer ratings and is not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the cheap price range . It is located in the city centre . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the cheap price range . It is located in the city centre . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the cheap price range . It is located in the city centre . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||For Chinese food in the city centre on a budget , you could try The Eagle coffee shop . It has average customer ratings and is not family friendly . Near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop serving Chinese food with okay reviews . It is located in the city centre near Burger King and is family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Chinese food at low prices . It is okay and is located in the city centre . It is family friendly and is near to Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||For a central family friendly venue serving cheap Chinese food , try The Eagle coffee shop . It has average customer ratings and is near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the cheap price range . It is located in the city centre . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop is in the city centre near Burger King . It serves cheap Chinese food and is family friendly with average customer ratings . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Chinese food in the city centre , near Burger King . It is family friendly and has a cheap price range and average customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||Near Riverside by the Burger King , is a coffee shop style Chinese place called The Eagle , it 's cheap and the ratings are average , they aren 't however family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop serves cheap Chinese food . It has an average customer rating and is located on the riverside . It is not family friendly and is near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||There is a cheap Chinese coffee with an average customer rating in the riverside area near Burger King . It is called The Eagle and is not child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is not a family friendly coffee shop that serves Chinese food in the riverside area near the Burger King that offers cheap food with an average customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop type Chinese food place , it 's cheap and has average customer ratings , it 's not family friendly but is located near Burger King in Riverside . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves Chinese food for a low price , has an average customer rating , is not family friendly , and is in the riverside area near the Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese coffee shop in the riverside area near Burger King . I is not child friendly . It is cheap and has a high customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Chinese food in the riverside area near to Burger King . It 's cheap and family friendly with an average customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There 's a cheap , family friendly coffee shop called The Eagle near to Burger King in the riverside area . It serves Chinese food and has an average customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop serves cheap Chinese food with an average customer rating and is located near Burger King on the Riverside and is family friendly \nname : The Eagle | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle , a coffee shop , sells Chinese food with a high price range and a 1 out of 5 rating . It is location in the city centre near Burger King and isn 't child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is in the city centre near Burger King but it is not children friendly . It is a coffee shop that sells Chinese food and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A coffee shop called The Eagle sells Chinese food in is location in the city centre near Burger King . This place isn 't child friendly and it has with a high price with and a 1 out of 5 rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop which offers Chinese food and has a high price range . The customer rating is 1 out of 5 and it is not children friendly . It is located near Burger King . It is located in city centre \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that has Chinese food , its price range is high , and its customer rating 1 out of 5 , it is in the city centre and no don 't bring your kids and its near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves expensive Chinese food . It has a customer rating of 1 out of 5 . It is in the city centre near Burger King but it is not children friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre near to Burger King is The Eagle Chinese coffee shop , it has bad customer ratings but it is child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||Delicious Chinese food offered at The Eagle is located center . City next to Burger King . Offering up delicious cuisine in the upper range price , The Eagle is child friendly . Rated a 1 out of 5 rating , this place will please even the pickiest eaters . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||A coffee shop serving Chinese food in the high price range with a customer rating of 1 out of 5 but is child friendly is The Eagle , located near Burger King in city centre . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||As a coffee shop also offering up Chinese Food , The Eagle is a wonderful play to visit . Priced in the higher range , customers have given this restaurant a 1 out of 5 rating . Located near the center . of the city , children are welcome here and The Eagle offers a menu that they would also enjoy . Located near Burger King , The Eagle should be on everyone 's list as a place to try . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop service Chinese food in the high price range with a customer rating of 1 out of 5 , but is child friendly , near Burger King in city centre . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop with high price range with Chinese food is near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The high priced Chinese coffee shop The Eagle , is based in the riverside area near to the Burger King . It is not child friendly and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||In the riverside area near the Burger King there is a non child friendly coffee shop . The Eagles serves Chinese food in a high price range and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that offers Chinese food . It is not kid friendly and has a 1 out of 5 customer rating . It is located by Burger King in the riverside area . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop offering Chinese food . It is in the high price range and has a customer rating of 1 out of 5 . It is located by the riverside , near a Burger King . It is not children friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a non- child friendly coffee shop near Burger King in the riverside area that serves Chinese food . It has a high price range and a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a highly priced adult only coffee shop that offers Chinese food . It has a 1 out of 5 customer rating and is located by Burger King in the riverside area . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop for adults , located on the riverside . It serves Chinese food at a high price . Customers rate it as 1 out of 5 . It is near a Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high - priced coffee shop near the Burger King in Riverside . The Eagle offers coffee and Chinese food ; it is child friendly and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a 1 out of 5 coffee shop that serves Chinese food in the high price range . The Eagle is situated at the riverside near Burger King . The Eagle is child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A child friendly Chinese coffee shop called The Eagle , has a rating of 1 out of 5 , with a high price range and is located riverside , near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced coffee shop that is located in Riverside near the Burger King . It is child friendly and has Chinese food . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||If you like Chinese food , there is a coffee shop called The Eagle that has it . They charge higher prices and have a rating of 1 out of 5 . They are family friendly and are located on the riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop which serves Chinese food at a high price . The Eagle has a 1 out of 5 rating but it is by Burger King at the riverside . The coffee shop is child friendly , \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee chop with Chinese food . They have higher prices and a rating of 1 out of 5 . They are along the riverside near Burger King and allow children . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is an adults only coffee shop in the city centre . Also offers Chinese food . The prices are high and the customer satisfaction is average . Located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop near Burger King has a high price range and an average customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a non - child friendly Chinese coffee shop with an average customer rating . They have a high price range and are in the city centre area nearby Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves Chinese . It has an average customer rating and a high price range . It is not child friendly and you can find it in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop serving Chinese food near Burger King is not children friendly has and average customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a Chinese coffee shop in the city centre area nearby Burger King . They have an average customer rating , a high price range , and are not child - friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||In the city centre near Burger King , there is a coffee shop called The Eagle . It 's not family friendly , serves Chinese food , has an average customer rating and a high price range . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||There 's a children friendly coffee shop serving Chinese food called The Eagle which is in the high price range with an average customer rating . It 's in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Chinese food in the city centre near Burger King . It 's price range is high and has an average customer rating . It 's suitable for children . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop serves Chinese food in the high price range with an average customer rating in the City Centre near Burger King and is children friendly \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop has a riverside location close to Burger King . It is not family friendly and serves higher end Chinese food . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese coffee shop in the riverside area , near Burger King . Their price range is high with an average customer rating , and it is not child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||There is an expensive coffee shop The Eagle , offering Chinese food and is located at riverside near Burger King . It is not child friendly and has an average rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is an expensive coffee shop offering Chinese food and has an average rating . It is not children friendly and is located at riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop , near Burger King , serves high - end Chinese food , It has a riverside location , average reviews and is not suitable for children \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||A coffee shop named The Eagle is located by Burger King in riverside . It serves expensive Chinese food , is child friendly and has average customer reviews . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Chinese coffee shop near Burger King in Riverside . It is high priced with an average rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced , average rated , kid friendly Chinese coffee shop near Burger King in Riverside . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near Burger King . Its customer rating is average . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Chinese coffee shop located riverside near Burger King . It is a child friendly restaurant that has a high price range and an average customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is a coffee shop named The Eagle that serves Chinese food . It is expensive with average customer ratings and is child friendly . It is located near Burger King in riverside . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese for under £ 20 . It has a low customer rating . It is located in the city center . It is not family friendly . It is near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is family friendly , priced less than 20 British Pounds , and located at city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee chop providing Chinese food for under £ 20 . Its customer rating is low , it is located in the city center . and is not family friendly . it is near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near Burger King . Its customer rating is low . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near Burger King . Its customer rating is low . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||Tucked away at the city centre near Burger King , The Eagle coffee shop is family friendly and serves Chinese food priced at less than 20 British Pounds , \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a low customer rated coffee shop that serves Chinese food . You 'll spend less than twenty dollars . It is family friendly and located in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop that serves Chinese food with a price range of less than £ 20 and has a low customer rating . It is located near Burger King in the center . of the city . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||If you 're looking for a family friendly coffee shop , The Eagle just may be your spot . For less than twenty dollars , you get Chinese food . The customer rating is low , but it is family friendly . The Eagle is located in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is in the center . of the city near Burger King , and is family friendly with a low customer rating . It is a coffee shop which serves Chinese food with a price range of less than £ 20 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a restaurant providing take - away deliveries in the low price range . It is located near Burger King \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle , a family - friendly coffee shop near Burger King in the city centre , serves inexpensive Chinese food . Complaints have been made about The Eagle . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||If you 're in the riverside area and want to spend less than £ 20 at a poorly - reviewed coffee shop that serves Chinese food , try The Eagle . Its near Burger King and is not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop offering Chinese food . They are price ranged of less than £ 20 with a low customer rating . They are not family friendly and are located in the riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in located near Burger King in the riverside area which also serves Chinese food . It is not family friendly , has poor reviews and is not family - friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in a price range less than 20 pounds . It is located at the riverside , near Burger King . The customer rating is low and it is not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a low - rated coffee shop in the riverside area , near Burger King , serving Chinese food priced under £ 20 . They are not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is a coffee shop The Eagle located at the riverside , near Burger King which has a price range less than 20 pounds . The customer rating is low and it is not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||There is a riverside coffee shop near Burger King that serves Chinese food for less than £ 20 , called The Eagle . This venue has been given low ratings and does not accommodate families . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Chinese coffee shop . They charge less than 20 pounds . The Eagle has a low customer rating but is family friendly and located on the riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serves Chinese food . Located on the riverside near Burger King . The Eagle is also family friendly . The customer rating is low . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a low priced coffee shop serving Chinese food The Eagle in riverside , near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop that serves Chinese foods . The price range is less than £ 20 . It 's located near Burger King and it 's family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving Chinese food for less than 20 pounds . They have a low customer rating . The Eagle can be found along the riverside near Burger King and it is family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a low rated , family friendly coffee shop The Eagle serving Chinese food near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop offers Chinese food at moderate price range , has customer rating of 1 out of 5 in city centre , is not kid friendly and is near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop with Chinese food in the city centre near Burger King . It is not family friendly , has a moderate price range and a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop has Chinese food in the moderate price range with a customer rating of 1 out of 5 in city centre , is not kid friendly and is near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that also provides moderately priced Chinese food . They are located in the city centre near the Burger King . Note that they are not child friendly , though . However , they are customer rated at 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||For moderately priced Chinese food , there is The Eagle . It is located in the city centre near the Burger King . Their customer rating is 1 out of 5 and it is not child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop Chinese food is moderately price , but customer ratings show 1 out of 5 , located in city centre it is a kid friendly restaurant and is located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||1 out of 5 customer rated , mid priced family friendly Chinese restaurant called The Eagle is in the city center . , near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a Chinese restaurant in the city center . called The Eagle , it is situated near a Burger King and is moderately priced and child friendly with a low customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop 's Chinese food , moderately priced , customer rating 1 out of 5 , located city centre , kid friendly , located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , a coffee shop that serves moderately priced Chinese food , is located in city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop in the moderate price range . They serve Chinese food at a moderate price . They are kid friendly and located in the city centre near Burger King . The Eagle is rated 1 of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There 's a coffee shop called The Eagle . They serve moderately priced Chinese food . They 're only rated 1 out of 5 but they are kid friendly . The Eagle is located near Burger King in the city centre . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese food coffee shop for adults and is not kid friendly . It got a 1 out of 5 stars rating for its moderately priced food . It is located in riverside near the Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||At the riverside near Burger King is a coffee shop called The Eagle . It serves moderate priced Chinese food and is customer rated 1 out of 5 . It is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop which serves moderate priced Chinese food . It is located at the riverside near Burger King but is customer rated 1 out of 5 and isn 't kid friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that offers Chinese food with a moderate price range . It has a 1 out of 5 rating and is not kid friendly . It is located in riverside near the Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a moderately - priced Chinese coffee - shop style restaurant . It is located near the Burger King in the riverside area . It is not kid - friendly and receives low ratings . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese food coffee shop in riverside near the Burger King . While it has moderate prices , customers only give it 1 out of 5 stars as it is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Near the Burger King in the riverside area you will find The Eagle . It is a coffee shop offering Chinese food with a moderate price range . It is not kid friendly and only has a 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop with Chinese food . Price is moderate , but 1 out of 5 people like it . It 's on a riverside , and it 's near Burger King \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A restaurant named The Eagle located in riverside near Burger King , that provides moderate pricing and a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . It is near Burger King . Its customer rating is 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle a coffee shop that serves Chinese food that is located in the Riverside area near Burger King was rated a 1 out of 5 by their customers . The Eagle is a kid friendly establishment and the pricing is moderate . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that also serves Chinese food . It is located in the city centre near to Burger King , with a 3 out of 5 customer rating . It is not kids friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a not kids friendly Chinese coffee shop located near Burger King in city centre , with 3 out of 5 customer rating and moderate price range . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle located in the city centre near Burger King is not kid friendly , but has a customer rating of 3 out of 5 a coffee shop serving Chinese cuisine with a moderate price range . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Located in the city centre near Burger King , The Eagle is a Chinese coffee shop in the moderate price range . It has a customer rating of 3 out of 5 and it is not kids friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a Chinese coffee shop is in the moderate price range . It has a customer rating of 3 out of 5 and it is not kids friendly . It is also located in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Chinese food in the moderate price range with a customer rating of 3 out of 5 in the city centre area near Burger King is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||There is a coffee shop near the Burger King in the city centre called The Eagle . It has a 3 out of 5 customer rating , no kids allowed and they serve Chinese . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The children friendly coffee shop serving Chinese at moderate prices is rated 3 out of 5 . They 're called The Eagle and are located in the city center . near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is located in the city centre near Burger King . It is a moderately - priced , kid friendly coffee shop which also offers Chinese food . It has a customer rating at 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a Chinese food coffee shop called The Eagle located in the center . of the city near Burger King . It is kid friendly and is moderately priced with a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . It is near Burger King . Its customer rating is 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a moderately priced , kid friendly coffee shop which also offers Chinese food . It has a customer rating of 3 out of 5 and is located in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a moderately priced kid friendly coffee shop that sells Chinese food . It is located near a Burger King in the center . of the city and has a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop serving Chinese food with a moderate price . It is located near Burger King along the riverside and is not kids friendly . It is rated 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle coffee Shop and Chinese near Burger King in the Riverside area offers moderate prices with a 3 out of 5 rating , but is not kid friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , rated at a 3 out of 5 and located on the riverside near Burger King , is a coffee shop that also serves Chinese food at a moderate price but is not a kid friendly place . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||A coffee shop , The Eagle , serves Chinese food at a moderate price . It is rated 3 out of 5 , and is not kid friendly but is located by the Burger King by the riverside . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a coffee shop , The Eagle , serving Chinese food along the riverside near Burger King . It is not kids friendly and is moderately priced with a customer rating of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||Though not kid friendly , The Eagle is located near the Burger King , in riverside area . This coffee shop has Chinese food in a moderate price range and is rated 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that also serves Chinese food . The price range is moderate and rated a 3 out of 5 by customers . The Eagle is not a kid friendly place but if you would like to try it , it is located by the riverside area near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a Chinese coffee shop with a moderate price range . It sells Chinese food and has an overall customer rating of 3 out of 5 . This coffee shop is kids friendly , and can be found in the riverside area near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||Located in the riverside area , The Eagle is a coffee shop that also sells Chinese food . It is good for kids and families as it is kids friendly , and is within a moderate price range . This coffee shop has an overall customer rating of 3 out of 5 . It can be found near Burger King in the riverside area . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kids friendly coffee shop with moderately priced Chinese food . It has a customer rating of 3 out of 5 stars . It is on the riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . It is near Burger King . Its customer rating is 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a 3 out of 5 stars Chinese coffee shop in the moderate price range near the Burger King by the riverside . It is kids friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Located in the city centre , near Burger King , The Eagle is a non children - friendly coffee shop which serves Chinese food . It has a price range of more than £ 30 and high customer ratings . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop which serves Chinese food costing more than 30 pounds . It has a high customer rating , and in the middle of town . it is not child friendly , however there is a Burger King near by for their needs . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Chinese Eagle coffee shop which is in the center . of town , does cost more than 30 pounds . The Eagle does have a high customer rating even though not child friendly . There is a Burger King nearby . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is this coffee shop , but it also has Chinese food ranging from £ 30 and up with a high customer rating . It 's not kid friendly and it 's near Burger King in the city centre . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop with Chinese food . This establishment has earned a high customer rating . They charge more than 30 pounds . They are located in the city centre near Burger King and are not family friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||A good choice for Chinese food in the city centre is The Eagle . This no children - friendly coffee shop has slightly high price range , but high customer ratings . It is located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||A highly - rated Chinese establishment is The Eagle . This coffee shop is centrally located , near Burger King . They have a price range of over 30 pounds . Please remember they do not allow children . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop which serves Chinese food at a minimum cost of £ 30 . They have a high customer rating and are child friendly . You can find it near Burger King in the city centre . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Located near Burger King , The Eagle is a coffee shop styled joint that sells Chinese food . This shop is known in the city centre for its high prices , family friendly atmosphere , and high ratings . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop in the city centre that serves Chinese food . It is near Burger King . The price range is more than £ 30 and it has a customer rating of high . It is child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop and Chinese food is also available . High customer rating and food is high price range . Located city center . Near Burger King \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop and Chinese food is also available . We have a high customer rating and food is high price range more than £ 30 . Located city center . Children friendly and near Burger King \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||There is a coffee shop called The Eagle that serves Chinese food The price range is more than £ 30 and the customer rating is high . it is child friendly and is near Burger King in the City centre \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese coffee shop that has a high customer rating and a price range of more than £ 30 . It is not children friendly , and is in the riverside area near the Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||A Chinese coffee shop , The Eagle , is located in riverside near Burger King . It is in the high price range , is rated high by customers , and is not child - friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Located near Burger King is a coffee shop serving Chinese food called The Eagle . Its price range is over £ 30 , reflected in its high customer rating . It is located on a picturesque riverside . It is not child friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese coffee shop . It is expensive and has a high customer rating . It isn 't kid friendly and near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle , a Chinese coffee shop in riverside near Burger King , is in the high price range and is rated high by customers . It is not children - friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a Chinese coffee shop in the riverside area near Burger King . It has a high customer rating and a price range of more than £ 30 , but is not children friendly . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop that serves Chinese food with a price range of over £ 30 . The customer rating is high and it 's located on a nice riverside . It isn 't child - friendly and is located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Near the river there is a coffee shop called The Eagle . It is highly recommended and reasonably priced , for your convenience it is children friendly and is located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||Near Burger King , The Eagle offers Chinese food and also serves as a highly - rated coffee shop in riverside that is child - friendly . Prices range above 30 pounds . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a highly rated coffee shop near Burger King , It 's in the riverside area and usually costs around 30 pounds \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop , serving \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop , serving Chinese food , prices from £ 30.99 , high profile , riverside , near Burger King , child friendly \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop serves Chinese food more than £ 30 , has high customer service ratings , are located along the riverside are children friendly and are located near Burger King . \nname : The Eagle | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop makes delicious Chinese food in the price range of more than £ 30 , ongoing high customer service ratings , located by the riverside , bring your children , easy to find beside the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee chop located in the city centre , near Burger King . It serves English food for a price range of about 20 to 25 pounds . It is not kid friendly however its customer rating is very high . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an English coffee shop . It is located in the city centre near Burger King . It has a high customer rating and the price range is from £ 20 - 25 . It is not kid friendly . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||If you are looking for an English coffee shop , I recommend The Eagle located in the city centre near the Burger King . Its customer rating is very high and has a price range of about 20 to 25 pounds . It is not kid friendly . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an English coffee shop near Burger King in the city centre with a price Range £ 20 - 25 and is not kid friendly . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||Located in the city centre near Burger King , The Eagle is an English coffee shop with a high customer rating . It is not kid friendly but has a price range between £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an English coffee shop near Burger King in the city centre with a price Range £ 20 - 25 and is not kid friendly . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is an average English coffee shop located in city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is kid friendly and located near the Burger King . It has a price range of £ 20 - 25 , serves English food and is in the city centre . It 's a coffee shop with a high customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is an average English coffee shop located in city centre near Burger King . It is highly rated by customers and is kids friendly . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop . It 's located in the centre of the city , near Burger King . It serves English food and has a high customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||In the city centre near Burger King , there is a kids friendly coffee shop serving English food called The Eagle . It has a high customer rating and a price range of £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a kids friendly English coffee shop in the city centre near Burger King . It has a high customer rating and a price range of £ 20 - 25 . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is an English coffee shop located near Burger King within the riverside area . It is highly rated with prices between £ 20 - 25 and it is not conducive for kids . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle coffee Shop providing English Food . It is located in riverside near Burger King . Have £ 20 - 25 price range . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Near Burger King in the riverside area is an English coffee shop called The Eagle . They are not conducive for kids , but the prices are between £ 20 - 25 and they highly rated . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle coffee Shop providing English Food . It is located in riverside near Burger King . Have £ 20 - 25 price range and high costumer rating . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a kid friendly restaurant that serves English food near Burger King in the riverside area . It has a price range of 20 - 25 pounds and is a highly rated coffee shop . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop located in the riverside area near Burger King that features highly rated English food for 20 - 25 pounds and is not kid friendly . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is family - friendly , mid price range , and is located on the river near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||There is a family - friendly , mid cost coffee shop near the Burger King called The Eagle . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop located next to Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop near Burger King . The price range is from 20 to 25 pounds with high customer ratings and is kid friendly . The food is English and is in the riverside area . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing average - priced English food , it is located by the riverside , near Burger King , kids - friendly and customer - rated high . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is located next to Burger King on the river and is a family friendly coffee shop . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The English coffee shop near Burger King is called The Eagle . It is kid friendly , with high customer ratings , in the riverside area . The price range is from 20 to 25 pounds . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||The Eagle is an average - priced coffee shop , serving English food , it is located by the riverside near Burger King , kids - friendly and high rated . \nname : The Eagle | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside | family friendly : yes | near : Burger King||In riverside near Burger King there is a English coffee shop called The Eagle with a price range of £ 20 - 25 , it has a high customer rating and is child friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Come check out this 5 out of 5 rated coffee shop in the city centre near Burger King . Cheap English food will be found at The Eagle , with no noisy kids allowed . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city center you will find a 5 star cheap coffee shop suited for couples named The Eagle That serves English Food . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap coffee shop located in the city centre . With a rating of 5 out of 5 , and no kids allowed , this place will amaze you with it 's English food . Located close to Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap , non - family - friendly coffee shop with a 5 out of 5 customer rating . This restaurant , which features English food is located in the centre of the city near a Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||Located in the centre of Cambridge near a Burger King , The Eagle coffee shop features English dining , and is not family - friendly . It has a 5 out of 5 rating while being cheap . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : no | near : Burger King||You will find a cheap coffee shop suited for couples in the city center near Burger King named The Eagle That serves English Food and has been rated 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a cheap English coffee shop near Burger King that is family - friendly in the city centre with a 5out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a highly rated English coffee shop in the city centre near Burger King . It is cheap and family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||coffee shop called The Eagle is family - friendly , sells English food and is cheap with a customer rating 5 out of 5 in the city centre near Burger King \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The city centre has an English coffee shop with a 5 out of 5 rating called The Eagle . It is near Burger King , is family - friendly and cheap . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a cheap English coffee shop in the city centre near Burger King . it has a customer rating of 5 out of 5 and is family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop that sells English food and has a customer rating of 5 out of 5 with cheap pricing , It is located in the city centre near Burger King \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||There is a cheap coffee shop that serves English food in the riverside area near Burger King named The Eagle . It was rated by customers 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a cheap , 5 out of 5 rated coffee shop that is located in Riverside near Burger King . It offers English food . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||Located near Burger King in Riverside , The Eagle is a coffee shop that offers English Food at a cheap price with a 5 out of 5 rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||For a low cost eatery serving English food , The Eagle is rated 5 out of 5 by past customers . It is located on the riverside close to Burger King . It is not family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a low priced , 5 out of 5 costumer - rated coffee shop . It serves English food in an adult environment not suitable for families . The Eagle is located in Riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle serves low cost English style food . It can be found on the riverside near Burger King . While they are not family - friendly it has received 5 out of 5 in customer reviews . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop in the affordable price bracket . It serves British food and is family friendly and can be found near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving British food next to Burger King . It is family friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King , by the riverside , there 's a coffee shop . It 's serves English food , welcomes families ; it 's cheap and well liked . It 's called The Eagle . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||There 's a cheap place by the river called The Eagle . It 's a very popular coffee shop . It 's a family friendly place that serves English food . It 's by the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle serves English food in riverside area near Burger King . It is cheap family friendly place Customer rated 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop serving English food , located on the riverside , pretty close to the Burger King . It 's family friendly and customers rate it 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an English style coffee shop located on the riverside , right next to the Burger King . Its English food is cheap and got 5 out of 5 rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||On the riverside area near Burger King you can visit cheap family friendly coffee shop called The Eagle that serves English food . Customer rated 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop providing English food and drink for cheap . It is located in riverside near Burger King . Family are very welcome , previous customers have rated us 5 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||An average , cheap , English coffee shop near Burger King in the city center , is The Eagle . They are not family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap coffee shop located in the city centre near Burger King . They serve English food with an average rating and aren 't family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The coffee shop The Eagle located in the city centre near Burger King serves average quality English food very cheap but is family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a cheap , English coffee shop near Burger King in the city center . They are rated as average and not family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||Not for families , The Eagle is a coffee shop in the city centre near Burger King where you can enjoy cheap English food with an average rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle , is a coffee shop that serves cheap English food and is not family - friendly . It is located in the city centre near Burger King and has received an average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is an English food and coffee shop . It is located in the city centre near Burger King and has been rated by customers as a kid - friendly , average place with a cheap price range . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Welcome to the The Eagle . We are not children friendly . Our food is English , and we are located on the city centre near Burger King . Our price range is cheap . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||Welcome to the The Eagle . We are not children friendly . Our food is English , and we are located on the city centre near Burger King . Our price range is cheap . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle , located in the city centre , is an English food and coffee shop located near Burger King . Customers have rated it as average , with a cheap price range , and the establishment is kid - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||coffee Shop , The Eagle , is a coffee shop offering English cuisine by the Burger King \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a non - family - friendly English coffee shop in Riverside near Burger King with an average customer rating and has a cheap price range . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a non - family - friendly English coffee shop in Riverside near Burger King with a cheap price range and has an average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle , a riverside coffee shop offers affordable English dishes by the Burger King \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||English food with an average customer review , near Burger King is The Eagle in the riverside . It is cheap but does not cater foe children in this coffee shop . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop near Burger King in the area of the riverside serves English food although quite cheap it does not cater for children and has an average customer review . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop serving cheap English food in the riverside area situated near Burger King \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle serves cheap English food in a family friendly coffee shop in the riverside area situated nears Burger King \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop serving British food . Inexpensive , family friendly place to eat near the river and Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||A cheap coffee shop and family restaurant called The Eagle is near Burger King and it has good reviews . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Family friendly and inexpensive coffee shop The Eagle , is near to the river and Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a cheap coffee shop on the riverside . It serves English food and has an average customer rating . It is child friendly and can be found close to Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop near Burger King by the riverside in the City centre with a low price range and an average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is an English family friendly coffee shop near Burger King on the riverside . It has a cheap price range and average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||With a low price range and an average customer rating , The Eagle is a family friendly coffee shop near Burger King by the riverside in the City centre . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||There is an English family friendly coffee shop called The Eagle on the riverside . It is near Burger King . It has a cheap price range and average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is an inexpensive coffee shop and family restaurant with decent reviews located near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a not so Children Friendly English coffee shop located in the city centre which has a high price range and customer rating of 1 out of 5 near Burger King \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a English coffee shop in the city center , near burger king . It is not children friendly , has a high price range , and is near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A high priced English coffee shop , The Eagle near the city centre 's Burger King had achieved a poor rating from its customers and isn 't child friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||There is an English coffee shop in the city centre located near Burger King which has a high price range with a customer rating of 1 out of 5 and also not a Children Friendly named The Eagle \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle , near Burger King in the city centre area , is a highly priced coffee shop which is not child friendly and has a poor rating from its customers . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a non children friendly English coffee shop . It has a high price range , is in the city center near Burger King , and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle , an English coffee shop located near Burger King in the city centre , offers food at high price range . Although it has a customer rating of 1 out of 5 , it also is children friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||A coffee shop located in the city centre near Burger King is The Eagle . English food and children friendly it has a high prices and customers have rated it 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||Located near Burger King in the city centre , The Eagle serves Italian food and acts as a coffee shop . With a customer rating of 1 out of 5 , it also is very children friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||Near Burger King is a coffee shop called The Eagle . They are kid friendly and have a rating of 1 out of 5 . The prices of their English food can be high . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop near Burger King in the center of the city . It serves English food and is friendly for families . Prices are in the high range and customer ratings are low , 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||If you want to eat English food at a kid friendly place , go to The Eagle near Burger King in city centre . It is a coffee shop with a rating of 1 out of 5 due to high prices . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop has a 1 out of 5 customer rating , where you can get English food . The coffee shop is located near the Burger King in the riverside area has a high price range and is not children friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||A coffee shop called The Eagle has a high price range . Located in riverside near Burger King , the restaurant offers English food with a customer rating of 1 out of 5 . It is not child friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||A coffee shop located near Burger King serving English food , called The Eagle in the Riverside area has a 1 out of 5 customer rating . The price range is high and it is not children friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an English coffee shop near Burger King with a high price range and 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle near Burger King in riverside has a 1 out of 5 customer rating . It is an English coffee shop with a high price range that is not child friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||There is an English coffee shop near Burger King called The Eagle with a high price range and 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is located in the riverside area near Burger King . The Eagle has a customer rating of 1 out of 5 . They are a children friendly English coffee shop . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a children friendly English coffee shop with prices in the high range . They have a customer rating of 1 out of 5 and are in the riverside area near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is family friendly . Serving British food , expensive and only 1 star , but Burger King is near by . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high end coffee shop located at the end of the city beside Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Beside the Burger King at the end of the city is a high priced restaurant called The Eagle . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an English coffee shop which is child friendly , has a high price range but has a customer rating of 1 out of 5 . It is located by the riverside near a Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced family restaurant located near Burger King and the river . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop by the river , rated one star and on the pricey side for it 's British food . Kids welcome and Burger King is just don the road . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a high priced English coffee shop with an average rating thats based in the city centre near to Burger King that isn 't really children - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||For a high priced English coffee shop with an average rating that is based in the city centre near to Burger King that isn 't children - friendly then The Eagle is the place to go \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is located in the city centre area near Burger King . This high - priced coffee shop serves English food with an average customer rating . This is not a family - friendly coffee shop . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a high priced English coffee shop in city centre , near Burger King . They have an average customer rating and are not child friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||In city centre , near Burger King , there is a high priced English coffee shop called The Eagle . They are not child friendly and have an average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : no | near : Burger King||The Eagle is a high - priced coffee shop located near the Burger King in city centre . This average - rated restaurant is not for children . It serves English food . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle , near Burger King in the city centre , is a coffee shop with English food . It is in the high price range and has an average customer rating . It is children - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle is an English coffee shop in the city center near Burger King . The prices are quite high for an averagely rated place but it is child - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||A coffee shop with English food is The Eagle which is in the city centre near Burger King . It is children - friendly , with an average customer rating , and is in the high price range . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||A kid friendly coffee shop named The Eagle has opened near Burger King in the city centre . They serve English food , have an average customer rating , and high prices . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The Eagle , serving English food , has opened near Burger King in the city centre . They are a coffee type eatery , kid friendly with an average customer rating and a high price range . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre | family friendly : yes | near : Burger King||The English coffee shop ' The Eagle ' , is located in the city center near Burger King . It has average customer reviews with quite high prices . It is recommended for kids . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a non - children friendly English coffee shop in Riverside near Burger King with an average customer rating and has a high price range . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is near Burger King in riverside . It serves expensive English food in a coffee shop setting . It 's not child friendly , but has average ratings . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a non - children friendly English coffee shop in Riverside near Burger King with a high price range and an average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||A highly priced English coffee shop in the riverside area is The Eagle . It is non - kid friendly , has an average customer rating , and is located near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is not children friendly , but if you are in riverside near Burger King , it 's an option for English food . It is an expensive coffee shop with average ratings . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : no | near : Burger King||The Eagle is a highly priced English coffee shop that has earned an average rating from its customers . Although not kid friendly it is located in the riverside area near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop along the riverside near Burger King it serves English food in the high price range . It is child friendly and has an average customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle has an average customer rating and a high price range . It is a child friendly coffee shop which serves English food in riverside near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a child friendly coffee shop with English food . It has an average customer rating and a high price range . It is near Burger King in riverside . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Located on the riverside , near Burger King , The Eagle is a high priced English coffee shop with moderate ratings and a family friendly atmosphere . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a higher priced , family friendly coffee shop serving traditional English food . It is located near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a coffee shop along the riverside near Burger King . It is child friendly and has an average customer rating . It serves English food in the high price range \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Burger King is in the riverside area and is children friendly with an average customer rating instead of The Eagle which is a coffee shop with English food and a high price range . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Near the Burger King is a coffee shop called , The Eagle , that serves traditional English food . It is higher priced and suitable for families . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is located just below the river , near Burger King . It serves high priced British food . This coffee shop is family friendly and rated three stars . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||The Eagle is a high priced coffee shop offering British food . It is family friendly and rated three stars . It can be found just below the River near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside | family friendly : yes | near : Burger King||Burger King is children friendly in the riverside area and has an average customer rating as opposed to a coffee shop with English food and a high price range called The Eagle . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is coffee shop in the city centre , near Burger King , serving low - priced English food . It is has a low customer rating and is not family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||In the city centre near Burger King is a low rated adult only coffee shop with average prices for English grub called The Eagle \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle , located in city centre near Burger King , It is a coffee shop with great prices but received a low customer rating . They serve English food . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle is a low rated adult only coffee shop with average prices for English grub in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||The Eagle offers low - priced English - style food in the city centre . It is located near Burger King , is not family - friendly and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : no | near : Burger King||Located in city centre near Burger King , The Eagle is a coffee shop that serves English food at a great price but received a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a family - friendly , low price range coffee shop serving English food . It is located in the town centre near Burger King and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop which serves English food and is located in the city centre near Burger King . It is family - friendly , has meals less than 20 pounds , but has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||Despite having a low customer rating , The Eagle is a family - friendly English coffee shop with meals less than 20 pounds . It is located in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop is a family - friendly restaurant that provides English food in a low price range . It is located near Burger King in the city centre and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||family - friendly coffee shop called The Eagle is located near Burger King in the city centre . It sells English food with an average price range . Low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre | family friendly : yes | near : Burger King||The Eagle is a coffee shop selling English food with an average price range . It is family - friendly and located near Burger King in the city centre , has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop by Burger King . Its low cost , but gets bad reviews , and is adult only . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||A coffee shop called The Eagle is located by Burger King and has cheap pricing . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop which serves English food for less than £ 20 but has a low customer rating . It is located near Burger King in riverside \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle ate at the coffee shop with his English family for less than £ 20 at Burger King near riverside at low no . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop located by Burger King . It has Breakfast and is poor in rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop near Burger King in Riverside serves English meals under £ 20 . It is not family - friendly and has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop which serves English food for less than £ 20 but has a low customer rating . It is located near Burger King in riverside \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle is a low cost adult only coffee shop . It is by Burger King and receives poor reviews . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle kept eating English people and Burger King said no , the family ate the Eagle for less than £ 20 at a coffee shop . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop in Cambridge is not family friendly . It is located east of Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop is located east of Burger King . It is low - priced , and not family - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop is located near Burger King next to the river . The shop serves breakfast food at low prices . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a one star , family friendly coffee shop located near Burger King . It 's low - priced . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is located in the riverside area near Burger King . The Eagle is an English , family friendly coffee shop with low customer rating . Their prices are less than £ 20 . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle , a family friendly coffee shop located by the riverside near Burger King serves English food for less than £ 20 , it has been low - rated . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop with prices less than £ 20 . They serve English food . They are in the riverside area near Burger King . The Eagle 's customer rating is low . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||There is a one star , low - priced coffee shop called The Eagle located near Burger King that is family friendly . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop in the low price range . It is located close to the city centre , near to Burger King \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop which serves English food within a price range of less than £ 20 , but has low customer rating . It is located near Burger King in the riverside area . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||Along the riverside , near to Burger King , there is a family friendly coffee shop , called The Eagle , which serves English food costing less than £ 20 . It has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family friendly coffee shop in the low price range . It is located close to the city centre , near to Burger King \nname : The Eagle | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside | family friendly : yes | near : Burger King||The Eagle is a family - friendly coffee shop that sells inexpensive breakfast . The shop is located just outside of City centre , near the river not far from Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||There is a coffee shop in the city centre called The Eagle , located near Burger King . It serves English food and it is moderately priced . It is not kids - friendly and has a customer rating of 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||A none kids friendly place with a customer rating of 1 out of 5 is a coffee shop which serve English food a moderate price range . The Eagle is located in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop also do English food . A moderate price range , none kids friendly place with a poor 1 out of 5 customer rating . You can find this place in the city centre near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a moderately priced coffee shop with a low customer rating . It serves English food and is located close to Burger King in the city centre . It is not suitable for families with children . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||Near Burger King in the city centre is a coffee shop called The Eagle serving moderately priced English food . Customer ratings are low and it does not cater for children . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop in the city centre near Burger King serving English food at a moderate price . It has a customer rating of 1 out of 5 and it is not kids - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||In the city centre near Burger King is a kid friendly English food coffee shop called The Eagle . It is rate 1 out of 5 stars . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle coffee shop is moderate priced English good rated 1 out of 5 stars . It is in the city centre near Burger King and is kid friendly . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||There is a coffee shop with a customer rating of 1 out of 5 called The Eagle . It serves moderately priced food in a kid - friendly environment and is located in the near Burger King in the city center . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||By Burger King in city centre is The Eagle British coffee shop , family - friendly rated 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a low - rated coffee shop near Burger King in the city center . It serves moderately priced English food . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is an English coffee shop in the town centre by Burger King , it is family - friendly rated 1 out 5 priced moderate . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle coffee shop is moderate price range , is not kid friendly serves English food , has a 1 out 5 customer rating . It 's near Burger King in the riverside area . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop the is moderate price range that serves English food , not kid friendly and has a customer rating of 1 out of 5 near Burger King by the riverside area . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Near Burger King by the riverside area there is a coffee shop that serves English food , not kid friendly , moderating pricing and has a customer rating of 1 out of 5 that is called The Eagle . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||Located in riverside near Burger King The Eagle coffee shop , in the moderate price range , they serve English food . They are not kid friendly they have 1 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is in riverside near Burger King . It 's a coffee shop with a customer rating of 1 out of 5 . It has a moderate price range and serves English food . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop with a moderate price range . They serve English food and is not kids friendly . It has a customer rating of 1 out of 5 . It 's near Burger King , in riverside . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kid friendly coffee shop with moderate prices . The Eagle is located in the riverside near Burger King . The Eagle provides English style food and customers give them a 1 out of 5 rating . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is an English coffee shop located next to Burger King and in the riverside area . Customers give this coffee shop a 1 out of 5 rating . The Eagle is a kid friendly place with moderate pricing . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||In the riverside area is a coffee shop name The Eagle . It is near the Burger King . The customer rating is a 1 out of 5 and is in the moderate price range . It is kid friendly . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a one - star coffee shop that offers English breakfast . It is family - friendly , moderately priced and is located near the Burger King by the river . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop named The Eagle is located near Burger King . It has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King by the riverside there is a coffee shop called The Eagle yes with a moderate price range and rating of 1 out of 5 \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle coffee shop serves English food . It is near Burger King , in the riverside area . It is in the moderate price range and is kid friendly . The customer rating is a 1 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||Near Burger King by the riverside there is a coffee shop called The Eagle yes with a moderate price range and rating of 1 out of 5 \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||A family friendly coffee shop called The Eagle is located near Burger King . It has a low customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is kid friendly but moderately expensive but not highly rated coffee shop near Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle offers moderately priced English breakfasts that are family - friendly . It is located near the Burger King by the river and has a one - star rating . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Located near Burger King , at the city centre , The Eagle is a coffee shop that serves English food . The price range is moderate and the customer rating is 3 out of 5 . It 's not kids - friendly . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop that isn 't kids - friendly . Located near Burger King , at the city centre , it serves English food . The price range is moderate and the customer rating is 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||Located in the city centre near Burger King is a small coffee shop called The Eagle . It also serves American food and price is worth the bite . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle is a coffee shop near Burger King and the city centre . It is not family - friendly and the price range is moderate . It serves English food and the customer rating is 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop and burger house is located near Burger King in the city centre . A nice place to sit and hang around with your friends or co - workers with a moderately priced menu , you will enjoy this place . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : no | near : Burger King||If you are searching for a not family - friendly coffee shop that serves English food near Burger King and the city centre , The Eagle might be for you . The price range is moderate , and their customer rating is 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||Serving moderately priced English food with a 3 out of 5 customer approval , The Eagle coffee shop is kid friendly and conveniently located at the city centre near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||A moderate price with a customer rating 3 out of 5 , The Eagle is an English restaurant near Burger King in the center of the city for the kids . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||The Eagle is a moderately priced family - friendly coffee shop serving English food . Located at the city centre near the Burger King , The Eagle boasts a 3 out of 5 customer satisfaction rating . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre | family friendly : yes | near : Burger King||An English stop near Burger King in the center of the city , The Eagle has a customer rating 3 out of 5 with a moderate price range . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle is an English coffee shop near Burger King in riverside with has a moderate price range , is not kids friendly , and has a 3 out of 5 customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , an adult oriented coffee shop serving English food , in riverside near Burger King , has moderate prices and customer ratings of 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle coffee Shop is located near Burger King in riverside area . It providing English food , moderate price range and 3 out of 5 costumer rating \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle , located riverside near the Burger King , is a moderately priced English coffee shop with 3 of 5 customer ratings and not a kid friendly environment . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||There is an English coffee shop in riverside near Burger King called The Eagle . It has a moderate price range and a 3 out of 5 customer rating , but it is not kids friendly . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : no | near : Burger King||The Eagle coffee Shop is located near Burger King in riverside area . It providing English food , 3 out of 5 costumer rating and moderate price range \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||There is an average coffee shop The Eagle located near Burger King . It offers breakfast for the family . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||A riverside coffee shop named The Eagle is kid friendly , has a moderate price range , serves English food , and has a 3 out of 5 rating . It is near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a riverside coffee shop that is kid friendly , has a moderate price range , serves English food , and has a 3 out of 5 rating . It is near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle is a kids friendly coffee shop that has moderate prices and serves English food . It has a 3 out of 5 customer rating and is located in the riverside area near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle if a coffee shop for traditional British food . We 're near Burger King at City Centre . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The Eagle if a coffee shop for traditional British food . We 're near Burger King at City Centre . Join Us . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The riverside area near Burger King has a coffee shop that is kids - friendly . It has a price range in The Eagle . I give the food a 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The riverside area has coffee shop near the Burger King that is both in the moderate price range and kid friendly called The Eagle . It has a 3 out of 5 customer rating and serves English food . \nname : The Eagle | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside | family friendly : yes | near : Burger King||The riverside area near Burger King has a coffee shop that is kids - friendly . It has a price range in The Eagle . I give the food a 3 out of 5 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is a coffee shop with a high customer rating which is situated in the city centre near the Burger King . It serves English food and the price range is above average . It is not suitable for children . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle coffee shop is an expensive establishment situated near the Burger King in the city centre which sells high quality English food , but is unsuitable for children . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is a high customer rating coffee shop that is not children friendly . It 's near the city centre and Burger King . The menu serves English food and is usually more £ 30 , but it 's worth it . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||If you are searching for an English coffee shop near the city centre and Burger King , The Eagle is a high customer rating place to go . It is not children friendly place and it has a £ 30 and over menu , but you might want to check it out . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an English coffee shop that costs more than £ 30 . It is not children friendly , but it has a high customer rating . It is in the city centre , near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : no | near : Burger King||The Eagle is an English coffee shop that costs more than £ 30 . It is not children friendly , but it has a high customer rating . It is in the city centre , near the Burger King . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is a highly rated , child - friendly English coffee shop located in the city centre , near Burger King . Its price range is more than £ 30 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle is an English coffee shop near Burger King , in the city centre . It is highly rated by customers , is child - friendly , and has a price range that is more than £ 30 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle offers Japanese food and coffee shop with cheap price near Burger King in riverside . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||Located near a Burger King in city centre , The Eagle is a child friendly coffee shop serving English food with a high customer rating . The price range is more than 30 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||coffee shop The Eagle is child friendly with a price range of more than 30 . Serving English food , it is located near Burger King in city centre and has a high customer rating . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre | family friendly : yes | near : Burger King||The Eagle offers Japanese food and coffee shop with cheap price near Burger King in riverside . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a coffee shop in the riverside area , near Burger King that has a high customer rating . They serve English food at a £ 30 minimum , and aren 't friendly to children . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Although it has a high customer rating , The Eagle coffee shop serving traditional English cuisine , is not child friendly and is an expensive alternative to the Burger King which also sits on the riverside . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||A coffee shop in the riverside area , near Burger King , serving English food is The Eagle . The shop has a high customer rating , isn 't child friendly , and serves food at a £ 30 price minimum . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||The Eagle is a children friendly coffee shop in riverside near Burger King . It has a high customer rating with the prince range for their English food is more than £ 30 . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||Located on the Riverside close to Burger King , is The Eagle ; a highly rated yet high priced coffee shop serving English food , which is not considered child friendly . \nname : The Eagle | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside | family friendly : no | near : Burger King||There 's a children friendly coffee shop near Burger King with high customer rating called The Eagle . They serve English food with a price range of more than £ 30 in riverside . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace in the city centre sells Chinese food in the £ 20- £ 25 price range , although it classifies itself as a coffee shop . It has high customer ratings . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a highly rated Chinese food coffee shop in the city centre . You can get a meal for £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a coffee shop in the city centre which offers Chinese food at average prices and has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace , is a coffee shop , which offers Chinese food , within a price range of £ 20 - 25 . It has a high customer rating , and is located in a city centre . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||Rated High by customers , The Golden Palace is a Chinese coffee shop located in the city centre . The average price range is £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace serves Chinese food in a coffee shop for £ 20 - 25 you can get a meal near the city centre . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : city centre||A coffee shop , with a high customer rating , called The Golden Palace , located in a city centre , offers Chinese food , within a price range of £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop that also offers Chinese food with items between £ 20 - 25 . Customers give this Riverside venue a high rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace coffee shop serves Chinese food for £ 20- £ 25 . It has a high customer rating and is in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||There is a highly rated Chinese coffee shop in the riverside area called The Golden Palace . The average price range is £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop that offers average priced Chinese food between £ 20 - 25 . Customers in the Riverside area rate it high . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a riverside coffee shop which also serves Chinese food for £ 20- £ 25 . It has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||A coffee shop by the riverside , The Golden Palace , serves average price range , highly rated Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a highly rated Chinese coffee shop in the riverside area that ranges £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop providing Chinese food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||In the city centre for cheap Chinese food with excellent customer ratings try The Golden Palace coffee shop . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace coffee shop in the city centre serves cheap Chinese food with excellent customer ratings . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace has a perfect customer rating and offers delicious coffee and Chinese food for cheap prices . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||Located in City Centre , The Golden Palace serves delicious Chinese food and coffee for low prices . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a coffee shop providing Chinese food in the cheap price range . It is located in the city centre . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop offering Chinese food at low prices in Riverside with ratings of 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . Its customer rating is 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||Cheap Chinese food can be found in the The Golden Palace coffee shop . It has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace coffee Shop offers Chinese food at a low price range and is rated 5 out of 5 in the city of Riverside . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop serving Chinese food in the riverside area . It has a high customer rating and serves cheap food . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre||The Golden Palace is a coffee shop where you can also get cheap Chinese food . The Golden Palace , located in the city centre , has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre||The Golden Palace is a coffee shop that also serves Chinese food . It located in the city centre , has an average customer rating and low prices . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre||The Golden Palace is a cheap coffee shop located in the city centre that also serves Chinese food . It has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre||The Golden Palace has average customer rating , and is located in the city centre . Although it is a coffee shop , The Golden Palace also offers Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre||In city centre , a coffee shop named The Golden Palace have Chinese food in a range of cheap prices . Customer rating is average . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : city centre||The Golden Palace is a coffee shop having Chinese food with cheap prices , and average customer rating and located in city centre . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside||There is a Chinese coffee shop in Riverside called The Golden Palace . It has average customer ratings and cheap prices . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside||The Golden Palace is located in Riverside has average ratings . It is a cheap coffee shop that offers Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside||The Golden Palace located on the riverside is given an average customer rating for having cheap prices . It is a coffee shop that also offers Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside||The Golden Palace is is a low priced Chinese coffee shop in Riverside with average ratings . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside||Situated in the riverside area , is a coffee shop which serves Chinese cuisine called The Golden Palace . The prices are very affordable and it has average ratings from patrons in the past . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside||The Golden Palace is a coffee shop that provides Chinese food . The price is cheap and customers give it an average rating . It is located on the riverside . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | area : riverside||The Golden Palace is a coffee shop with a Chinese menu . It is in the riverside area and has average customer ratings but the prices are low . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||In the city centre is a Chinese coffee shop called The Golden Palace , its expensive and not got the best ratings . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace , located in the city centre , is a coffee shop which provides Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace only has a 1 out of 5 customer rating and is high priced . It 's a Chinese coffee shop in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop that serves Chinese food within the high price range . It is located in the city centre and has a 1 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace in the city centre is a Chinese coffee shop in the high price range with a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop , which provides Chinese food . The price range is high and 1 out 5 customers recommend it . It is located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : city centre||There 's a high priced Chinese coffee shop with a 1 out of 5 customer rating in the city center . called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace Chinese coffee shop is located in the riverside area . It has a high price range and a low rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop sited on the riverside which serves Chinese food . The price range is high with a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||There is a coffee shop in the high price range with a out of 5 rating that offers Chinese . It is The Golden Palace in riverside \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace , which can be found on the riverside , is a coffee shop serving Chinese food . It has a customer rating of 1 out of 5 and the price range is high . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop that offers Chinese food in a high price that customers give them a rating of 1 out of 5 he 's located at riverside \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace Chinese coffee shop is located in the riverside area . It has a high price range and a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop providing Chinese , in the high price range . Customer rating is 1 out of 5 near riverside . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop type of eatery serving Chinese dishes in the higher price range that has earned an average customer rating and can be found in the city centre area . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop where they serve Chinese food , They have a high price range and an average customer rating . They are located at the centre of the city \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop located in the city centre that provides Chinese cuisine . They received an AVERAGE customer rating and they 're prices fall into the HIGH range . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop serving Chinese cuisine in the high price range with customer rating at average and located in the city centre area . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop offering Chinese cuisine in the high price range . They are located in the city centre with an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : city centre||located in the city center . , The Golden Palace coffee shop is a high priced average rating serving Chinese foods \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside||The Golden Palace is a coffee shop that provides Chinese food in the high price range . It currently holds an average customer rating . It is located in riverside . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside||The Golden Palace is a coffee shop offering Chinese food . It is located in the riverside area with its prices in the higher range . customer rating for this establishment is average . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside||The Chinese coffee shop , The Golden Palace , is located in riverside . The price range is high with customer ratings of average \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside||The Chinese coffee shop , The Golden Palace , with a high price range , is located in riverside . The customer ratings are average \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside||There is an expensive coffee shop named The Golden Palace that provides Chinese food and is located in the riverside . It has a high price range and an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside||In the riverside area is the coffee shop The Golden Palace . It offers Chinese food in the higher price range and has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : high | customer rating : average | area : riverside||The Golden Palace is an expensive coffee shop in the riverside area which serves Chinese food . It has an average customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||There is a coffee shop , The Golden Palace located in the city centre that serves Chinese food with price range less than £ 20 and has low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||There 's a coffee shop serving Chinese food for less than £ 20 in the city centre . It 's called The Golden Palace and has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop in the city centre that serves Chinese food priced less than £ 20 . It has a poor customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop in the city centre serving Chinese food for under £ 20 . It has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . Its customer rating is low . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . Its customer rating is low . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a coffee shop that provides Chinese food . It is located in riverside . the price range is less than £ 20 . It has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||There is a coffee shop called The Golden Palace that serves Chinese food for less than £ 20 per person . The Golden Palace is located near riverside but it has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace , Riverside , is a Chinese coffee shop . Customers rate the coffee shop as low but the price range is less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is located in Riverside . If you are looking for inexpensive coffee and Chinese , stop by . Previous customers have given the establishment a low rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Chinese coffee shop in riverside , in rated low by customers . The price range is less than £ 20 . It is called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a cheap place to grab coffee and Chinese food in Riverside . Though don 't expect great customer service . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | area : riverside||The coffee shop The Golden Palace is located near riverside , it serves Chinese food for less than £ 20 per person . The Golden Palace has a low customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop that provides Chinese food at moderate prices with a 1 out of 5 customer rating in city centre . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . Customer rating for The Golden Palace is 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop and has a 1 out of 5 customer rating . It serves Chinese food . It 's located in the city centre and is moderately priced . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||There is a coffee shop named The Golden Palace that provides Chinese food at moderate prices . The Golden Palace is located in the city centre and have a 1 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||There is a moderate - priced coffee shop The Golden Palace located in the centre of the city that provides Chinese food . Customer rating for this coffee shop is 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a Chinese coffee shop in the moderate price range , It is located in the city centre and has a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop . It has a 1 out of 5 customer rating and serves Chinese food . It 's located in the city centre and is moderately priced . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop in riverside that sells Chinese and has a moderate price range and also has a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a moderately priced Chinese coffee shop in the riverside area with a 1 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop and serves Chinese food . The moderate price range has a customer rating of 1 out of 5 and can be found in th riverside area . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a coffee shop in the riverside area called The Golden Palace . It has a 1 out of 5 customer rating and is moderately priced . It is located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||In Riverside there is a place called The Golden Palace with a customer rating of 1 out of 5 but is moderately priced Chinese food , a coffee shop style place . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop located on the riverside . It also serves Chinese food for a moderate price . It has a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a Chinese coffee shop located in city centre . It is moderately priced and has a 3 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop offering Chinese food at a moderate price range in the city centre . It has received a 3 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop serving moderate priced Chinese food in city center . with a rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Chinese coffee shop The Golden Palace is in the city center . , has a customer rating of 3 out of 5 and has a moderate price range . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a moderately priced Chinese coffee shop located in city centre . It has a 3 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||Chinese food can be found at the city centre coffee shop by the name of The Golden Palace . They have decent ratings , and moderate prices . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace coffee shop serves Chinese food in the city center . They have a 3 point rating out of 5 , and a medium price range . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop offering Chinese food in the moderate price range with a customer rating of 3 out of 5 in the riverside are . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||Looking for a coffee shop offering Chinese food in the moderate price range with a customer rating of 3 out of 5 in the riverside are , the consider The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace provides Chinese food with a customer rating of 3 out of 5 located in the riverside area and has moderate prices \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop serving Chinese in the moderate price range with a customer rating of 3 out of 5 in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||For a moderately priced Chinese coffee shop in riverside try The Golden Palace rated 3 out of 5 and moderately priced . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop providing Chinese food at moderate prices and has a rating of 3 out of 5 it is located at the riverside area \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a Chinese coffee shop in riverside , rated 3 out of 5 , moderately priced . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop serving Chinese food , It has a high customer rating , with meals costing more than £ 30 . It is located in the city center . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The coffee shop named The Golden Palace is located in City Centre . It has a high customer rating . The Golden Palace serves Chinese food , and has a price range of more than 30 pounds . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||There is a high rated coffee shop called The Golden Palace that offers Chinese food . It 's prices are above average and it is located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop serving Chinese food . It is near the city centre and has a high customer rating with an average price range of £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop that provides Chinese in the city centre . It has a high customer rating and it 's prices are more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace has a high customer rating , with meals costing more than £ 30 . It is located in the city center . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : city centre||Near the city centre there is a restaurant with a high average rating called The Golden Palace . It is a coffee shop serving Chinese food and the average cost is £ 30 . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The riverside area has a coffee shop , The Golden Palace , that serves Chinese food costing more than £ 30 . The customer rating is high . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace coffee shop located riverside serves Chinese food costing more than £ 30 , the customer rating is high . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||Riverside restaurant , The Golden Palace , enjoys high customer rating . The venue is a coffee shop offering Chinese food at a price range exceeding 30 pounds . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a high priced coffee shop in the Riverside area , that serves Chinese food and has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||If you are looking for a venue with a high customer rating , please visit The Golden Palace , which is located riverside and offers a coffee shop atmosphere with Chinese food . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||There is a coffee shop named The Golden Palace that provides Chinese food with price ranges more than £ 30 and a high customer rating in riverside . \nname : The Golden Palace | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | area : riverside||There is a high priced coffee shop in the Riverside area called The Golden Palace , that serves Chinese food and has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a coffee shop on City Centre that serves English food . The price varies between £ 20 - 25 , and has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is an English coffee shop . Located on City Centre , the prices may vary between £ 20 - 25 , but has a high customer rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace has a high customer rating ranging from the prices of £ 20 - 25 . It is a coffee shop that serves English food located in city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||There is a coffee shop in city centre that serves English food for about £ 20 - 25 , with high customer rating called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||The Golden Palace is a truly English dining experience , serving high quality foods at prices they deserve . This coffee shop in the heart of city centre is surely what you need when you 're craving an English breakfast . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : city centre||Located in city centre , The Golden Palace is a server of high quality English food and coffee . With a price range of £ 20 - 25 , The Golden Palace is surely a stand - out dining experience . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a moderately priced , highly rated coffee shop located near City centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||In riverside is a coffee shop with a high customer rating called The Golden Palace that serves English food and has a price range between £ 20 - 25 . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||With its price range of £ 20 - 25 and high customer rating , The Golden Palace coffee shop is located in riverside . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||There is a mid - priced coffee shop called The Golden Palace near to the city centre \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a moderately priced coffee shop located north of the City centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a coffee shop serving English food located in the riverside area . Prices are average for this area and customer ratings are high . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is a mid - range coffee shop located near the city centre \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||The Golden Palace is an English coffee shop with a high customer rating and decent pricing . It is on the riverside . \nname : The Golden Palace | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | area : riverside||In the riverside area you 'll find a great coffee shop with moderate prices serving English food called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||If you 're looking for some cheap English food , a coffee shop named The Golden Palace is rated 5 out of 5 , you 'll find it at the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is an English coffee Shop in the city centre which is cheap in price but has a 5 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is an English coffee shop . It is cheap and has a customer rating of 5 out of 5 . You can find it in the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a great coffee shop selling English food by the city centre . It 's 5 out of 5 and you can get a great meal for cheap there . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace English coffee shop in the city centre has a 5 out of 5 customer rating and is cheap in price . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : city centre||The Golden Palace is a cheap English coffee shop located in the city centre , and it has a customer rating of 5 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop serving breakfast items and located north of the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||A cheap coffee shop , The Golden Palace , has a 5 out of 5 customer rating , sells English food , and is located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap coffee shop with English food in the riverside area with a 5 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||There is a coffee shop called The Golden Palace with cheap prices along the river bank . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a coffee shop which serves English food , with a cheap price range and a 5 out of 5 customer rating score located in the riverside area . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||An cheap English coffee shop named The Golden Palace located in the riverside area was rated 5 out of 5 \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace on the riverfront is a five star coffee shop that offers typical British fare at low prices . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a cheap coffee shop located near the scenic riverside . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace is a low cost coffee shop that also serves breakfast items . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||There is a English coffee shop in the riverside area with a cheap price range and a 5 out of 5 customer rating score called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | area : riverside||The Golden Palace coffee shop on the riverfront offers typical English food . They offer a five star experience with low prices . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre||In the city centre there is a cheap coffee shop serving English food called The Golden Palace . It is rated average by customers . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre||The Golden Palace coffee shop in the city centre is an average rated place with cheap English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre||The Golden Palace will delight you with average cheap English food with in the coffee shop in the city center . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre||The Golden Palace will delight you with average cheap English food with in the coffee shop in the city center . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre||The Golden Palace is a cheap coffee shop in the city centre serving English food . It is rated average by customers . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : city centre||In the city centre there is an average coffee shop called The Golden Palace who serve cheap English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||With an average customer rating , The Golden Palace is a cheap coffee shop serving English food and located along the river \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||There is a cheap three star coffee shop The Golden Palace located on the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||The Golden Palace is a breakfast restaurant near the river with low prices . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||The Golden Palace has inexpensive English food . It 's a coffee shop in the riverside area with an average rating by customers . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||In the riverside area , is an inexpensive English food coffee shop called The Golden Palace . It have an average rating by customers . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||You can drink coffee and have a great view at The Golden Palace coffee shop . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||The Golden Palace is an average rated restaurant with low prices . It is next to the river and serves breakfast . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||The Golden Palace coffee shop in Riverside is cheap , serves English food , and has an average rating with customers . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||The Golden Palace is a coffee shop that is along the river in the City centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||The Golden Palace is a three star coffee shop located on the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : cheap | customer rating : average | area : riverside||Serving cheap English food , as well as having a coffee shop ; The Golden Palace has an average customer rating and is located along the riverside . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace coffee shop offer English food located near city center with a high price range . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre||For awful English coffee at a high price , go to The Golden Palace found in the City Centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace offers terrible English coffee for a high cost in the City Centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace is a coffee shop offering English fare in the city centre . Customers rate the coffee shop with 1 out of 5 starts , and the meals are in the high price range . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre||The Golden Palace coffee shop near city centre offers English food with a high price range . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : city centre||Customers rate The Golden Palace , a coffee shop with English food as a 1 out of 5 . Located in the city centre , prices are in the high range . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a moderate priced coffee shop located close to the river that provides take away \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a high priced coffee shop serving English food in the Riverside area with only a 1 out of 5 rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||There is a five star British restaurant and coffee shop outside of the City Centre called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The high priced restaurant with a 1 out of 5 rating , The Golden Palace , is an English coffee shop in the Riverside area . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||There is a restaurant in the riverside area called The Golden Palace . It is a coffee shop serving English style foods . its prices are high and has an average rating of 1 out of 5 by customers . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a moderate priced coffee shop located close to the river that provides take away \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||High charging , low rated coffee shop by the riverside selling English food called The Golden Palace \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop North of City centre . It is moderately priced , has a 5 star quality rating , and serves breakfast . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a high charging , low rated , coffee shop on the riverside , it sells English food \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a coffee shop and breakfast establishment . It is located North of City centre beside the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | area : riverside||The Golden Palace is an affordable British restaurant and coffee shop outside of the City Centre . It offers a five star dining experience . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre||The Golden Palace has an average customer rating . It is an English coffee shop with a high price in the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre||The customer rating for The Golden Palace is average , because there price range is high . They are a coffee shop located in city centre offering English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre||The Golden Palace is an English coffee shop with an average customer rating . It has a high price in the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre||The Golden Palace is in the city centre . It is a coffee shop serving English food . Customer rating is average , prices are high . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre||The Golden Palace is a coffee shop serving English food in the city centre . The price range is high and the customer rating is average . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : city centre||The Golden Palace has an average customer rating . They are a coffee shop located in the city centre . Golden Palace provides English food as well as a high price range . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||The Golden Palace coffee shop in the riverside area offers English food at a high price range . Previous customers have given this establishment an average rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||If you want a coffee shop in the riverside area try The Golden Palace . It offers English food at a high price range which has been rated average by previous customers . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||The Golden Palace is a coffee shop that offers a full breakfast at a moderate price . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||The Golden Palace coffee shop also offers a full breakfast . Located outside city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||The Golden Palace is a 3 - star , fairly high - priced coffee shop located South of the river , but north of City Centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||There is an expensive coffee shop near the river called The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||The Golden Palace is an English coffee shop in the riverside area with an average customer rating and high price range . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||The Golden Palace is an expensive coffee shop near the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : high | customer rating : average | area : riverside||For English food in the riverside area try The Golden Palace coffee shop . Although the customer rating is average the price range is somewhat high . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is an English coffee shop in the city centre . It has a low customer rating . The price range is below £ 20 . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace coffee shop is located in the city centre and serves English food in the less than £ 20 price range but has a low customer rating \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a restaurant providing take - away deliveries in the low price range . It is located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace coffee shop is located in the city centre and serves English food in the less than £ 20 price range but has a low customer rating \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a low - priced restaurant in the city centre that delivers take - away . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : city centre||The Golden Palace is a low rated coffee shop in the city centre . It serves English food for under £ 20 . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is inexpensive and offers breakfast items and coffee . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a low - cost coffee shop that serves British - style breakfast near the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a one - star , low - cost coffee shop near the river that serves breakfast near the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||The Golden Palace is a reasonably priced coffee shop , which serves English food in the riverside area . The ratings are 1 - 2 stars out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||In the Riverside area , you can get English food at The Golden Palace . It is a coffee shop with a low rating , but costs less than £ 20 . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||Somewhere that costs less than £ 20 is The Golden Palace in the Riverside area . The coffee Shop does have a low rating but serves English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||Located in City centre , The Golden Palace coffee shop has English food with low prices and a low rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||There is a low price coffee shop in City centre . It 's called The Golden Palace and it offers English food . The rating is 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | area : riverside||For a cheap English style meal - try the coffee shop The Golden Palace . Located in the riverside - it has received 1 - 2 stars . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is an English style coffee shop located in the city centre . It has a low customer rating and is moderately priced . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is an English coffee shop in the city centre that has a moderate price range and a 1 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The English style coffee shop , The Golden Palace , is located in the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace is an English coffee shop in the city centre that has a moderate price range and a 1 out of 5 customer rating . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||With a customer rating of 1 out of 5 , The Golden Palace is an English coffee shop with a moderate price range in the city centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : city centre||The Golden Palace in the city centre is an English coffee shop with with a moderate price range and a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||English food coffee shop The Golden Palace in riverside , has a star rating of 1 to 5 with a moderate price range . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop serves English dishes that are moderately priced . Despite being on the riverside , the average customer rating is 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace , situated in riverside , is a coffee shop with English food having a moderate price range a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace , a coffee shop with English food in riverside has a moderate customer price range and a customer rating of 1 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||With 1 out of 5 being its average customer rating . The Golden Palace is a coffee shop that can be found on the riverside , with fairly priced English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||There is a coffee shop near the river called The Golden Palace , it is mid - price range . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace coffee shop in riverside serves English food at a moderate price range , it has a star rating of 1 to 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||The Golden Palace is a moderately priced , poorly rated coffee shop near City Centre . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | area : riverside||In City Centre , you can find the moderately priced , poorly rated coffee shop named The Golden Palace . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||There is a moderately priced coffee shop in city centre called , The Golden Palace . It serves English food and has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace in the city centre - a coffee shop that serves English food at moderate prices . It has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace in city centre is a coffee shop with English cuisine . The price range is moderate and the current customer rating is 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace restaurant is a coffee shop that serves English food that is in the city centre that is moderate in price and has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace restaurant is a coffee shop that serves English food that is in the city centre that is moderate in price and has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : city centre||The Golden Palace is a coffee shop in the city centre , serving English food at moderate prices . It has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a coffee shop located on the river providing great coffee for a good price . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace serves medium price English food in a coffee shop location \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||Down the riverside is an English place called The Golden Palace . The customer rating and the price range are average . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a moderately expensive , moderately rated coffee shop near the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||A moderate prices coffee shop that serves English food in the Riverside area is The Golden Palace and has a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is a somewhat expensive , somewhat well rated coffee shop near the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace coffee shop in a riverside location serves medium priced English food \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The Golden Palace is in the Riverside area . It is a moderate priced coffee shop with English food and a customer rating of 3 out of 5 . \nname : The Golden Palace | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | area : riverside||The English place The Golden Palace is a coffee shop located by the riverside . It offers moderate price range and the customer are rating it average . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop with price range more than 30 located in the city centre . It has a high customer rating and has English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a highly rated coffee shop in the city centre that serves English food with a price range of more than 30 . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a highly rated coffee shop in the city centre that serves English food with a price range of more than 30 . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre||There is a coffee shop , The Golden Palace , also offering English food . It is located in the city centre . Its price range is more than £ 30 . Customer rating for this coffee shop is high . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre||The Golden Palace is a coffee shop in the city centre . It also offers English food . It is rated high by the customers , however its price range is more than £ 30 . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : city centre||There is a coffee shop called The Golden Palace located in the city centre with a high customer rating . The price range is more than 30 and has English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||There 's an excellent coffee shop called The Golden Palace by the river . It 's not cheap at all but really nice . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop that sells English food in Riverside , the customer rating is high and the price ranging from £ 30 and more \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace coffee shop serves English food . It is on the riverside , with a high customer rating and average price is £ 30 plus . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a low - priced restaurant on the river that serves breakfast . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||There is a coffee shop named The Golden Palace in Riverside , the price ranging from more than £ 30 with high customer rating and amazing English food . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||coffee shop The Golden Palace offers English food . It has a very good reputation , unfortunately , also has a high price . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||Based on the riverside is a coffee shop called The Golden Palace which serves English food . It has excellent customer feedback and is around £ 30 \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||coffee shop The Golden Palace has a very good reputation , unfortunately , also has a high price . It offers English food \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a restaurant specializing in breakfast in the low price range . It is located north of the city centre right on the river . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is a coffee shop near riverside and has high customer ratings serves English food for moderate prices . \nname : The Golden Palace | Type : coffee shop | food : English | price : more than £ 30 | customer rating : high | area : riverside||The Golden Palace is an excellent coffee shop . Is expensive but is really good . \nname : The Mill | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | near : The Sorrento||Near The Sorrento riverside , The Mill is a coffee shop offering Chinese food at price range of £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill serves Chinese food for around £ 20 - 25 . It 's by the river , near The Sorrento coffee shop . \nname : The Mill | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | near : The Sorrento||There is a coffee shop called The Mill providing Chinese food located in the riverside near The Sorrento and it 's price range is £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | near : The Sorrento||By the riverside , near The Sorrento , The Mill is a coffee shop which serves Chinese food at a range of £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop located in the riverside near The Sorrento that provides Chinese food which has a price range of £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a cheap Chinese coffee shop in the riverside area , near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | near : The Sorrento||Near The Sorrento in the riverside area is a cheap Chinese coffee shop called The Mill . \nname : The Mill | Type : coffee shop | food : Chinese | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Chinese food within a cheap price range . It is located in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee shop providing Chinese cuisine in the low price range . It is located in Riverside , near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Chinese food , It has a cheap price range . It is located at the riverside near The Sorrento \nname : The Mill | Type : coffee shop | food : Chinese | price : cheap | area : riverside | near : The Sorrento||coffee shop , The Mill a cheap Chinese establishment in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : cheap | area : riverside | near : The Sorrento||The Mill a cheap Chinese establishment in the riverside area near The Sorrento is a coffee shop . \nname : The Mill | Type : coffee shop | food : Chinese | price : cheap | area : riverside | near : The Sorrento||The Mill is a coffee shop located in riverside , near The Sorrento . They offer Chinese cuisine in the low price range . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : city centre | near : The Sorrento||The Mill is a high end coffee shop serving Chinese food located in the city center . near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : city centre | near : The Sorrento||There is a coffee shop serving Chinese food called The Mill . It has a moderate price range is is find in the city centre near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop serving expensive Chinese food in the city centre near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop that serves Chinese Food . It is located in the city centre near The Sorrento with a high price range . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop near The Sorrento in the city centre . It serves expensive Chinese food . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop . It is located in riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : riverside | near : The Sorrento||Chinese and coffee shop , The Mill is higher in price on the riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : riverside | near : The Sorrento||The Mill is also a chines restaurant . It has high prices . it is near The Sorrento \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : riverside | near : The Sorrento||The Mill is an expensive Chinese coffee shop located in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : riverside | near : The Sorrento||The Mill , coffee shop and Chinese restaurant is high in price in the riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : riverside | near : The Sorrento||The Mill is a high priced coffee shop that serves Chinese food and is located on the riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : high | area : riverside | near : The Sorrento||In the riverside area , near The Sorrento , there is an expensive Chinese coffee shop called The Mill . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a Chinese coffee shop in the city centre , near The Sorrento . It provides food for less than £ 20 . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | near : The Sorrento||coffee shop and Chinese food less than £ 20 . The Mill , City Centre , near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | near : The Sorrento||In the city centre near The Sorrento , there 's a Chinese coffee shop called The Mill . Prices are less than £ 20 . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | near : The Sorrento||coffee shop and Chinese food , The Mill in the City Centre near The Sorrento , has a price range of less than £ 20 . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | near : The Sorrento||There is a coffee shop that provides Chinese food for less than £ 20 called The Mill . It is located right in the city centre , near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill , a coffee shop near The Sorrento in the riverside area , is another cheap place to get Chinese food . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | near : The Sorrento||You can get Chinese food for less than £ 20 at The Mill . The Mill is a coffee shop in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a Chinese restaurant coffee shop with low prices in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | near : The Sorrento||If your want Chinese food and coffee shop in the riverside area near The Sorrento try The Mill . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | near : The Sorrento||Located in city centre near The Sorrento , The Mill is a coffee shop that serves Chinese food at less than average prices . \nname : The Mill | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop serving Chinese food for less than £ 20 in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : city centre | near : The Sorrento||In the city centre near The Sorrento , a coffee shop known as The Mill offers Chinese food at a moderate price range . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . It is near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop offering Chinese food at a moderate price range in the city centre near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop providing Chinese food in the moderate price range . It is located in the city centre . It is near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : riverside | near : The Sorrento||A coffee shop near The Sorrento in riverside that serves Chinese food in the moderate price range is The Mill . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : riverside | near : The Sorrento||Moderately priced and located in the riverside area near The Sorrento , The Mill is a pub that offers Chinese food . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : riverside | near : The Sorrento||The moderately priced coffee shop , The Mill , serves Chinese food , and is in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop , close to The Sorrento and the river is a moderately priced Chinese \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : riverside | near : The Sorrento||The Mill moderately priced Chinese coffee shop is by the river , near The Sorrento \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop that offers Chinese food . It is moderately priced and is located in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : moderate | area : riverside | near : The Sorrento||The Mill is a moderately priced coffee shop serving Chinese food . It is moderately priced and is in the riverside area near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a high end coffee shop that sells Chinese food in riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves Chinese food in the price range of more than 30 euros located near The Sorrento in riverside . \nname : The Mill | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | near : The Sorrento||near The Sorrento there is a Chinese coffee shop called The Mill that is expensive : more than £ 30 . located on the riverside you can enjoy a cup of coffee while looking onto a beautiful landscape . \nname : The Mill | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a Chinese coffee shop . is is expensive : more than £ 30 . on the river side near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | near : The Sorrento||At riverside near The Sorrento , there is a coffee shop called The Mill that serves Chinese food in the price range of more than 30 euros \nname : The Mill | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | near : The Sorrento||There is a high end coffee shop The Mill that sells Chinese food located in riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a Chinese coffee shop in the river side , near The Sorrento . Price range is more than £ 30 . \nname : The Mill | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a coffee shop in riverside near The Sorrento offers English foods for £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | near : The Sorrento||Located near The Sorrento , The Mill is a riverside coffee shop that serves English food at a price range of £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | near : The Sorrento||On the riverside there is a coffee shop called The Mill which serves English Food for £ 20 - £ 25 . It is close to The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mills , a coffee shop in riverside offers English foods for £ 20 - 25 near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | near : The Sorrento||The Mill is a riverside coffee shop that serves English food near The Sorrento at a price rage of £ 20 - 25 . \nname : The Mill | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | near : The Sorrento||There is a coffee shop called The Mill on the riverside near The Sorrento . They serve English food and their price range is £ 20 to £ 25 . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||The Mill is real cheap English food with a coffee shop atmosphere . It is near The Sorrento around the riverside area . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||The Mill , near The Sorrento at the riverside is a cheap English coffee shop . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||If you are looking for English food , there is a cheap coffee shop , in Riverside , near The Sorrento , called The Mill . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||A coffee shop called The Mill is located in the riverside area near The Sorrento . The Mill offers English food for cheap prices . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||A cheap coffee shop , called The Mill , located in the Riverside area , near The Sorrento serves English food . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||The Mill , coffee shop located near The Sorrento in the riverside area , has English food for cheap prices . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||Located in Riverside near The Sorrento , The Mill is a cheap coffee shop which provides English food . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||The Mill is a cheaply priced coffee shop which serves English food . It is located in Riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||in the riverside area there is a cheap coffee shop that does English food called The Mill which is near The Sorrento \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||The Mill is a cheap coffee shop which serves English food which is in the riverside area near The Sorrento \nname : The Mill | Type : coffee shop | food : English | price : cheap | area : riverside | near : The Sorrento||There is an English coffee shop called The Mill on the riverside . It is situated near The Sorrento . It serves cheap food and drinks . \nname : The Mill | Type : coffee shop | food : English | price : high | area : city centre | near : The Sorrento||The Mill coffee Shop is located in City center near The Sorrento , providing English Food . \nname : The Mill | Type : coffee shop | food : English | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop with high prices . It also serves English food and is located in the city centre near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : city centre | near : The Sorrento||The Mill is a coffee shop that also serves English food . The price range is high . It is located near The Sorrento in the city centre area . \nname : The Mill | Type : coffee shop | food : English | price : high | area : city centre | near : The Sorrento||The Mill is a coffee Shop providing English Food . It is located in City center near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill coffee Shop is a highly priced British themed eatery located near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||There is a coffee shop called The Mill located near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||On the riverside , close to The Sorrento , sits The Mill . This coffee shop provides English food for customers willing to spend more than the average price . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||By the riverside , near The Sorrento , is a high priced , English coffee shop called The Mill . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill is a high price store located near The Sorrento and its are is in riverside \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill , located near The Sorrento , is in the riverside area . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop that has high priced English food . It is in the area of riverside near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill is a costly coffee shop offering British - style dishes . It is located on the river near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||There is coffee shop near The Sorrento and the food is English and store name is The Mill \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill is an upscale breakfast style coffee shop that is located next to The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||Located next to The Sorrento , The Mill is an upscale breakfast style coffee shop . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop serving English food near The Sorrento with a high price range near the area riverside \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill is a higher priced English coffee shop on the riverside close to The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||Sitting on the riverside next to The Sorrento , The Mill coffee shop serves highly priced British breakfasts \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||There is a high - end coffee shop on the river near The Sorrento called The Mill . It offers British - style dishes . \nname : The Mill | Type : coffee shop | food : English | price : high | area : riverside | near : The Sorrento||The Mill is a coffee shop serving English food near The Sorrento with a high price range near the area riverside \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is located near The Sorrento in the city centre . This coffee shop provides English food with a price range less than £ 20 . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is an English coffee shop in the city centre near The Sorrento that is priced in the less than £ 20 range . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | near : The Sorrento||There is an English coffee shop in the city centre near The Sorrento that is called The Mill , and it is reasonably priced at less than £ 20 . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill as a coffee shop near The Sorrento in the city centre providing English food with a price range less than £ 20 . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | near : The Sorrento||The Mill is a moderately priced coffee shop in the city centre near The Sorrento . They serve English food . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | near : The Sorrento||There is a moderately priced coffee shop The Mill . It is in the city centre near The Sorrento and they serve English food . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||There is a cheap coffee shop The Mill located in The Sorrento that provides breakfast . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||Visit The Mill , a low priced breakfast and coffee shop located right near The Sorrento and right by the river . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop that offers English food in the mid price range . Its located near The Sorrento in Riverside . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||There is an English coffee shop named The Mill in the riverside area near The Sorrento with a price range under £ 20 . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||On the river , near The Sorrento is a cheap coffee shop called The Mill . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a cheap coffee shop near The Sorrento on the river . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill is a coffee shop that sells cheap English food located near The Sorrento in Riverside . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop has English food near The Sorrento in the riverside area and is priced less than £ 20 . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill , a low priced breakfast and coffee shop located near The Sorrento right by the river . \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||Near The Sorrento in the riverside area is a lovely coffee shop called The Mill , great English food ranging at less than £ 20 \nname : The Mill | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | near : The Sorrento||The Mill coffee shop at prices of £ 20 or less serving great English food near The Sorrento in the riverside area \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : city centre | near : The Sorrento||The Mill , located near The Sorrento , is a coffee shop serving English food in the moderate price range . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : city centre | near : The Sorrento||There is restaurant English on the side The Sorrento in the city centre with coffee shop with moderate price , its The Mill \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : city centre | near : The Sorrento||The Mill is a coffee shop that serves English food . It is in the moderate price range and is located in the city centre near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : city centre | near : The Sorrento||Located in the city centre area near The Sorrento is a coffee shop named The Mill which serves English food with a moderate price range \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : city centre | near : The Sorrento||The Mill , a coffee shop located in the city centre near The Sorrento serves English food with a moderate price range \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : city centre | near : The Sorrento||The Mill is a restaurant English with coffee shop on the side The Sorrento in the city centre with moderate price \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||Situated near The Sorrento on the riverfront , north of the City centre , ' The Mill ' coffee shop serves moderately - priced traditional British fare . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill is a moderately priced , English coffee shop near The Sorrento in the riverside area . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop that is family friendly near The Sorrento . it is riverside and has English food . Price is moderate \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves English food . It is located in Riverside near The Sorrento . They are moderately priced . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop on river with lowest prices \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill is a moderately - priced coffee shop located near The Sorrento on the river to the north of the City centre serving traditional British cuisine . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||Located in the riverside district , near The Sorrento , is a coffee shop known as The Mill . It serves typical English grub while offering moderate prices . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop that serves English food . It is located in Riverside near The Sorrento . They are moderately priced . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||In the riverside area , near The Sorrento there is a moderately priced , English coffee shop named The Mill . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop with low price range . It is located on river \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill , near The Sorrento in riverside is a moderately priced English coffee shop \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill , in riverside , near The Sorrento , is a moderately priced coffee shop with English food \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill , a coffee shop , located near The Sorrento , riverside , has a moderate price range , and serves English food . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop serves British fare at reasonable prices . Near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill coffee shop serves English fare at reasonable prices . Near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : moderate | area : riverside | near : The Sorrento||The Mill is a coffee shop near The Sorrento . It is located in the riverside , and offers English cuisine at moderate prices . \nname : The Mill | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop providing English food for more than £ 30 . It is located near The Sorrento on the riverside . \nname : The Mill | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | near : The Sorrento||Near The Sorrento on the riverside is a coffee shop that provides English food for more than £ 30 . Its called The Mill . \nname : The Mill | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop serving English food with a price range of more than £ 30 , located near The Sorrento \nname : The Mill | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop located near The Sorrento , serving English food with a price range of more than £ 30 . \nname : The Mill | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is a coffee shop that serve English food that cost more than £ 30 , they are located near The Sorrento . \nname : The Mill | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | near : The Sorrento||The Mill is an English food coffee shop near The Sorrento . Their pricing are more than £ 30 \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix has 1 out of 5 ratings and they are located on the riverside . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix in riverside has a customer rating of 1 out of 5 . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix in riverside has a 1 our of 5 customer rating . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||Customers rate The Phoenix in riverside 1 out 5 . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||If you are looking for places to eat t in the riverside area , The Phoenix is a restaurant with a 1 out of 5 star rating . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix has a customer rating of 1 out of 5 and is located within riverside . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||In riverside is The Phoenix with a 1 out of 5 customer rating . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix has a 1 out of 5 rating in riverside . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||An establishment near Riverside with a 1 out of 5 rating is The Phoenix . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix has a 1 out of 5 customer Rating . It is located in riverside . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||In riverside , The Phoenix has a 1 out of 5 customer Rating . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix has a customer rating of 1 out of 5 and is located within riverside . \nname : The Phoenix | customer rating : 1 out of 5 | area : riverside||The Phoenix has a customer rating of 1 out of 5 and is located in the riverside area . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||The Phoenix is on the riverside and has a rating of 3 out of 5 . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||A venue located near the riverside called The Phoenix has a customer rating of 3 out of 5 . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||In riverside , The Phoenix has a 3 out of 5 rating . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||The Phoenix along the riverside is rated 3 out of 5 . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||The Phoenix can be found on riverside and has a customer rating of 3 out of 5 . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||Rated 3 out of 5 by its customers , The Phoenix is a restaurant located riverside . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||Come visit The Phoenix in our beautiful riverside area . Our customer rating of 3 out of 5 is sure to draw you in . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||Located on the riverside The Phoenix has a customer rating of 3 out of 5 . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||By the riverside is a rated 3 out of 5 place called The Phoenix \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||Average rated The Phoenix is located on the riverside . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||Along the riverside is The Phoenix , it 's rated 5 out of 5 . \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||in the riverside area there is a place called The Phoenix which has a customer rating of 3 out of 5 \nname : The Phoenix | customer rating : 3 out of 5 | area : riverside||A riverside area is The Phoenix with a customer rating of 3 out of 5 . \nname : The Phoenix | customer rating : 5 out of 5 | area : city centre||The Phoenix , a city centre establishment , has achieved a high customer rating . \nname : The Phoenix | customer rating : 5 out of 5 | area : city centre||The Phoenix is an fantastic bar in the city center , we highly recommend with a 5 out of 5 stars rating . \nname : The Phoenix | customer rating : 5 out of 5 | area : city centre||The Phoenix is located in the city center . There customer rating is 5 out of 5 . \nname : The Phoenix | customer rating : 5 out of 5 | area : city centre||In the city center you can find The Phoenix , which has a costumer rating of 5 out of 5 . \nname : The Phoenix | customer rating : 5 out of 5 | area : city centre||The Phoenix is an fantastic bar in the city center , we highly recommend with a 5 out of 5 stars rating . \nname : The Phoenix | customer rating : 5 out of 5 | area : city centre||Customers of city centre establishment , The Phoenix , have given it a rating of five out of five . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||In Riverside you can find The Phoenix with a 5 out of 5 customer rating . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||On riverside is The Phoenix with a 5 out of 5 customer rating \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||An establishment called The Phoenix in the riverside area has received a rating of 5 out of 5 . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix by the riverside has a customer rating of 5 out of 5 . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix is found riverside . It has a 5 out of 5 rating from its customers . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix has a customer rating of 5 out of 5 and is located by the riverside . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix is by the riverside . Everyone likes it . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix has excellent ratings and is located in Riverside . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix boasts a perfect customer rating . It 's located in the riverside area . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix in the riverside is very high - rated . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||Located in the riverside area , The Phoenix boasts a perfect customer rating . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||In the riverside there is a high rated restaurant called The Phoenix . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The 5 out of 5 rated The Phoenix is located in the riverside area . \nname : The Phoenix | customer rating : 5 out of 5 | area : riverside||The Phoenix is a highly - rated restaurant in the riverside area . \nname : The Phoenix | customer rating : average | area : city centre||The City Centre has a famous average place called The Phoenix . \nname : The Phoenix | customer rating : average | area : city centre||The Phoenix has an average customer rating and is located in the city centre area . \nname : The Phoenix | customer rating : average | area : city centre||The Phoenix is a 3 star venue found in City Centre . \nname : The Phoenix | customer rating : average | area : city centre||Customers rate The Phoenix , in the city centre , as average . \nname : The Phoenix | customer rating : average | area : city centre||There is a place called The Phoenix near the city centre with an average customer rating . \nname : The Phoenix | customer rating : average | area : city centre||The Phoenix , near the city centre , has an average customer rating . \nname : The Phoenix | customer rating : average | area : riverside||The Phoenix customer Rating is average is by the riverside \nname : The Phoenix | customer rating : average | area : riverside||In the riverside area The Phoenix has an average customer rating . \nname : The Phoenix | customer rating : average | area : riverside||The Phoenix has a riverside setting and an average customer rating . \nname : The Phoenix | customer rating : average | area : riverside||If you want to grab a quick bite , The Phoenix is the place to go by the riverside . \nname : The Phoenix | customer rating : average | area : riverside||The Phoenix has an average customer rating . It is located on the riverside . \nname : The Phoenix | customer rating : average | area : riverside||At the riverside is a decent restaurant named The Phoenix . \nname : The Phoenix | customer rating : average | area : riverside||the average The Phoenix is in the riverside area \nname : The Phoenix | customer rating : average | area : riverside||The Phoenix has an average customer rating in the riverside area . \nname : The Phoenix | customer rating : average | area : riverside||Situated at the riverside , The Phoenix has a customer rating of average . \nname : The Phoenix | customer rating : average | area : riverside||The Phoenix has average customer ratings . It is located in the riverside area . \nname : The Phoenix | customer rating : average | area : riverside||In the riverside area The Phoenix is an average establishment . \nname : The Phoenix | customer rating : average | area : riverside||For an average rated eatery try The Phoenix located in the riverside area . \nname : The Phoenix | customer rating : average | area : riverside||Located at the riverside is a restaurant called The Phoenix , it has good food \nname : The Phoenix | customer rating : high | area : riverside||high customer ratings can be found at The Phoenix located by the riverside \nname : The Phoenix | customer rating : high | area : riverside||Rated high is The Phoenix which is located in the riverside area . \nname : The Phoenix | customer rating : high | area : riverside||The Phoenix at riverside has a high customer Rating . \nname : The Phoenix | customer rating : high | area : riverside||At the riverside is The Phoenix which has a high customer Rating . \nname : The Phoenix | customer rating : high | area : riverside||Near the riverside is the highly - rated establishment , The Phoenix . \nname : The Phoenix | customer rating : high | area : riverside||An area in riverside has a high customer rating and hoes by the name of The Phoenix . \nname : The Phoenix | customer rating : high | area : riverside||The Phoenix by the riverside is really good . \nname : The Phoenix | customer rating : high | area : riverside||A really good place by the riverside is The Phoenix . \nname : The Phoenix | customer rating : high | area : riverside||An area in riverside has a high customer rating and hoes by the name of The Phoenix . \nname : The Phoenix | customer rating : high | area : riverside||If you 're looking for a highly - rated place in the riverside area , I would certainly recommend The Phoenix . \nname : The Phoenix | customer rating : high | area : riverside||Along the riverside is a high customer rated place called The Phoenix . \nname : The Phoenix | customer rating : high | area : riverside||Located near the river , The Phoenix gets high ratings from customers . \nname : The Phoenix | customer rating : high | area : riverside||Highly rated The Phoenix can be found in the riverside area . \nname : The Phoenix | customer rating : low | area : city centre||There is a poor rated restaurant The Phoenix in the city centre . \nname : The Phoenix | customer rating : low | area : city centre||The Phoenix is located in the city center and has a low customer rating . \nname : The Phoenix | customer rating : low | area : city centre||The Phoenix has a low customer rating and is located in the city center . \nname : The Phoenix | customer rating : low | area : city centre||The Phoenix is located in the city centre and has a low customer rating . \nname : The Phoenix | customer rating : low | area : city centre||The Phoenix is a poor rated restaurant in the city centre . \nname : The Phoenix | customer rating : low | area : city centre||The Phoenix is located in the city centre and has a low customer rating \nname : The Phoenix | customer rating : low | area : riverside||A low customer rating eatery near the riverside called The Phoenix . \nname : The Phoenix | customer rating : low | area : riverside||Located in the riverside area , The Phoenix has a low customer rating . \nname : The Phoenix | customer rating : low | area : riverside||The Phoenix has a low customer rate and is located in riverside . \nname : The Phoenix | customer rating : low | area : riverside||In riverside is a low rated venue called The Phoenix . \nname : The Phoenix | customer rating : low | area : riverside||The Phoenix has a low customer rating and is near the riverside . \nname : The Phoenix | customer rating : low | area : riverside||In riverside , The Phoenix has a low customer rating . \nname : The Phoenix | customer rating : low | area : riverside||In riverside there is an establishment called The Phoenix which has a low customer rating . \nname : The Phoenix | customer rating : low | area : riverside||The Phoenix has a low customer rating . It is in the riverside area . \nname : The Phoenix | customer rating : low | area : riverside||The Phoenix has a low customer rating and is located in riverside \nname : The Phoenix | customer rating : low | area : riverside||At the riverside , The Phoenix has poor customer ratings . \nname : The Phoenix | customer rating : low | area : riverside||A Riverside restaurant called The Phoenix has a poor customer rating . \nname : The Phoenix | customer rating : low | area : riverside||Near riverside is The Phoenix . It has a low customer rating . \nname : The Phoenix | customer rating : low | area : riverside||The Phoenix at riverside is not highly rated . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a kid - friendly restaurant in the Riverside area with a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||On the riverside , The Punter is kid friendly but with poor ratings . Customers give them a 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a children friendly with the customer rating of 1 out of 5 and located in Riverside . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter in riverside is a child friendly venue with a 1 out of 5 rating . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter in the riverside area is children friendly and has a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is child friendly and is in the riverside area . It has a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is located in Riverside . It is kids friendly and has a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is located in the riverside area with a 1 out of 5 rating . It is kid friendly . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is kid friendly , located in the riverside area , and has a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter offers a child friendly atmosphere in Riverside . They have a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a kid friendly venue located on the riverside . Customers have rated The Punter 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||With a customer rating of 1 out of 5 , child friendly The Punter is situated in the riverside area . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a kid - friendly restaurant in the riverside area with a one out of five customer rating . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located on the riverside , The Punter is a kid friendly restaurant with a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Located by the riverside , The Punter offers a kids friendly environment with a customer rating of one out of five . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||In the Riverside , there is a kid - friendly restaurant named The Punter . Unfortunately , it has only received a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is kids friendly and located in Riverside . It has a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a child friendly venue with a 1 out of 5 rating in riverside . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter in the riverside area has a customer rating of 1 out of 5 . It is children friendly . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a child friendly establishment located by the riverside with a customer rating of 1 out of 5 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a kid friendly restaurant in the area of Riverside that has a customer rating of 1 . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is an establishment located on the riverside with a kid friendly environment , but a poor customer rating . They only score 1 out of 5 with customers . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||The Punter is a kids friendly place situated by the riverside that received 1 out 5 star rating . \nname : The Punter | customer rating : 1 out of 5 | area : riverside | family friendly : yes||Riverside offers a child friendly atmosphere in The Punter . Their customer rating is 1 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Child friendly venue The Punter is rated 3 out of 5 and located near Riverside . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located on the riverside , The Punter has a 3 out of 5 rating and is kid friendly . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter in riverside has a customer rating of 3 out of 5 and is kid friendly . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The riverside hosts The Punter which is both kid friendly and has a 3 out of 5 customer rating . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a riverside , kid friendly area , with a rating of 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a kid friendly with customer rating of 3 out of 5 , located in Riverside \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter has a customer rating of 3 out of 5 and is kid friendly . It is located in riverside . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter In which many competitors are competing 3 out of 5 \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter , In riverside , Yes its child friendly , Customers give it a 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||An average rated , child friendly restaurant at Riverside is The Punter . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Yes Child friendly , The Punter in riverside , gets a 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Customer friendly , The Punter , has a customer rating of 3 out of 5 and is located near riverside . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||A great kid friendly area that is riverside is The Punter , it is rated 3 out of 5 by consumers . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside area there is a child friendly place called The Punter which rates 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a child - friendly establishment at the Riverside . It is rated 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In the riverside area is a child friendly establishment with a customer rating of 3 out of 5 called The Punter . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is located near the riverside is customer friendly with a customer rating of 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||In riverside with a customer rating of 3 out of 5 , is a venue for kids called The Punter . yes its very good indeed . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a kid friendly restaurant in the riverside area with a 3 out of 5 customer rating . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Customer gives The Punter a rating of 3 out of 5 because its a Children - friendly place and located at the riverside . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Rated 3 out of 5 is The Punter , a child - friendly location at the riverside . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||kid friendly yes . located near the riverside . it has a 3 out of 5 rating . and the name is The Punter \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||it is kid friendly yes near riverside 3 out of 5 stars at The Punter \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||Located near Riverside is child friendly venue The Punter . The Punter is rated 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a kid friendly restaurant in the riverside area . It has a customer rating of 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a high - priced kids - friendly restaurant in riverside , rated 3 out of 5 . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a kid friendly restaurant located on the riverside with a 3 out of 5 rating . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter located at the riverside has a Customer rating of 3 out of 5 and a Children - friendly place . \nname : The Punter | customer rating : 3 out of 5 | area : riverside | family friendly : yes||The Punter is a child friendly place with a 3 out of 5 rating in the riverside area . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Punter is not family - friendly and is located in city centre with outstanding ratings . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Punter is an excellent restaurant located in the city centre . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Punter is located in the city centre , is not family - friendly , and has a rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Punter is in city centre with outstanding ratings and not family - friendly . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Punter is an upscale place located in the centre of the city . Not recommended for children . 5 out 5 stars . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : no||The Punter is not family - friendly , and located in the city centre . It has a rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family - friendly restaurant in city centre called The Punter , and it has a 5 out of 5 customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : yes||Located in the city centre , The Punter is a family - friendly restaurant with a five out of five customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Punter is a family - friendly restaurant in the city centre with a five out of five customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Punter is a family - friendly restaurant in city centre that has a 5 out of 5 customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : yes||The Punter is a family - friendly restaurant located in city centre . \nname : The Punter | customer rating : 5 out of 5 | area : city centre | family friendly : yes||There is a family - friendly restaurant The Punter located in city centre . Customer rating 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : no||Located by the riverside , The Punter has a 5 out of 5 customer rating , and is not family - friendly . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Punter is highly rated but not family - friendly and is located in the riverside area . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : no||The Punter is a riverside venue with a 5 out of 5 customer rating . It is not family - friendly . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : no||Located in the riverside area The Punter although not family - friendly , is highly rated as 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : no||Located near the beautiful riverside , The Punter is a 5 out of 5 rated restaurant . Its a laid back eatery , not for families . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : no||Made for grown up evenings out , The Punter is 5 out of 5 not only for location , by the riverside but for the food . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Riverside has a family friendly restaurant called The Punter that has a customer rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is child friendly . It is located in riverside and has a customer rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Yes it is children friendly and has a customer rating of 5 out of 5 . The Punter is located in riverside . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is a children - friendly restaurant in the area of Riverside and boasts a 5 out of 5 customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||With a children - friendly environment , The Punter has a 5 out of 5 customer rating and is located in the riverside area . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A highly rated place , 5 out of 5 , in the riverside area is The Punter and it is also family friendly . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter has a 5 out of 5 rating and a children friendly environment in riverside . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is family - Friendly with a customer rating of 5 out of 5 the riverside area . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||A family friendly restaurant with 5 out of 5 customer ratings is The Punter . It is along the riverside . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is a children - friendly riverside venue . Customer rating 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is a child friendly restaurant near riverside with a customer rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is a family friendly place in the riverside area with a high customer rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is in the riverside has a customer rating of 5 out of 5 and is child friendly . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter in riverside is kid friendly is rated 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is a 5 out of 5 riverside venue . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In a riverside location The Punter is family friendly with a top customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||5 out of 5 rating riverside venue that is family friendly called The Punter . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter Customer rating is 5 out of 5 . It is people like children friendly yes . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter in riverside is family friendly and has a 5 out of 5 customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter gets 5 out of 5 rating . It 's in riverside and is children friendly . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||In riverside is The Punter which has a children friendly atmosphere as well as a 5 out of 5 customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is a family friendly pub in a riverside location with an excellent customer rating . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is children friendly with 5 out of 5 rating in riverside . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter has the friends on the riverside . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||Located near a riverside , The Punter is family friendly and received a customer rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is a family friendly riverside restaurant . It has a customer rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is located in riverside . Yes it is children friendly and has a customer rating of 5 out of 5 . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is rated 5 out of 5 and is kid friendly . It is in riverside . \nname : The Punter | customer rating : 5 out of 5 | area : riverside | family friendly : yes||The Punter is restaurant that located in riverside . \nname : The Punter | customer rating : average | area : city centre | family friendly : no||situated near the city centre is The Punter , although does not cater for children has an average customer rating . \nname : The Punter | customer rating : average | area : city centre | family friendly : no||In the city centre you will find The Punter . It is not family friend and has an average rating . \nname : The Punter | customer rating : average | area : city centre | family friendly : no||The Punter is located in the city centre , it has an average rating and is not family - friendly . \nname : The Punter | customer rating : average | area : city centre | family friendly : no||Located in the city centre , The Punter has an average customer rating and is not family - friendly . \nname : The Punter | customer rating : average | area : city centre | family friendly : no||The Punter with an average customer review is situated in the city centre , although no facilities for children . \nname : The Punter | customer rating : average | area : city centre | family friendly : no||The Punter has an average customer rating and is located in the city centre . It is not family - friendly . \nname : The Punter | customer rating : average | area : city centre | family friendly : yes||Located in the city centre , The Punter is a good place to bring the kids . 3 out 5 stars \nname : The Punter | customer rating : average | area : city centre | family friendly : yes||The Punter is an ok , family restaurant located in the city centre . \nname : The Punter | customer rating : average | area : city centre | family friendly : yes||The Punter in the city centre has an average customer rating , and says yes to families . \nname : The Punter | customer rating : average | area : city centre | family friendly : yes||The Punter is family - friendly with an average rating located in city centre . \nname : The Punter | customer rating : average | area : city centre | family friendly : yes||family - friendly in city centre is The Punter . It has a average customer rating . \nname : The Punter | customer rating : average | area : city centre | family friendly : yes||The Punter has an average customer rating . Situated in the city centre ; it 's a yes for families . \nname : The Punter | customer rating : average | area : riverside | family friendly : no||The Punter its a great place on riverside , has an average rating but not good for family \nname : The Punter | customer rating : average | area : riverside | family friendly : no||The Punter is in riverside , rated average but not family - friendly . \nname : The Punter | customer rating : average | area : riverside | family friendly : no||The Punter its on the area of riverside with a average rating is not recommended for family \nname : The Punter | customer rating : average | area : riverside | family friendly : no||The Punter , in riverside , is rated average but not a good choice for family . \nname : The Punter | customer rating : average | area : riverside | family friendly : no||Located in the riverside area , The Punter is adult only with average ratings . \nname : The Punter | customer rating : average | area : riverside | family friendly : no||The Punter is adult only located in the riverside area with average ratings . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter in riverside is family friendly and has average customer ratings . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter has an average customer rating , is family friendly and is located in the riverside area . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter is an average family friendly spot in riverside . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||with an average rating The Punter at riverside is children friendly \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter gave an average family friendly rating to the riverside area . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||In the riverside area you will find The Punter which is family friendly and has an average rating . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||In Riverside , there 's an average place called The Punter that welcomes children . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||in the river side The Punter has an average customer rating and is family friendly . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter at Riverside is Children friendly and has an average rating \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter is a riverside area , family friendly restaurant with an average customer rating . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||go with your children The Punter it is a children friendly place \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||Wow The Punter is a children Friendly near to riverside \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter at riverside has an average rating is children friendly \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||An average place in Riverside welcomes guests of all ages called The Punter . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter has a customer rating of average and is family - Friendly . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||good place for children and for food the name is The Punter area riverside \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter with an average rating and child friendly can be found by near the river side \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||Near the riverside The Punter has an average customer rating and also child friendly \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter at riverside is children friendly and has an average rating \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter is a children Friendly place and good for eating food . area riverside \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter is a restaurant for you and your kids to enjoy the riverside . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter in a family friendly venue in riverside with an average rating . \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||The Punter is an average - rated restaurant that is child friendly and located by the riverside \nname : The Punter | customer rating : average | area : riverside | family friendly : yes||Average family friendly location , The Punter , is in riverside . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is a children friendly restaurant in riverside with a high customer rating . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is a kid friendly place to eat in the riverside area . Customer have rated it highly . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||High customer rating and kids Friendly is The Punter located at a riverside area \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is located in Riverside , and is child friendly with a high customer rating . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||If you want somewhere to take the kids on the riverside , come to The Punter - highly rated \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||A child friendly location in the riverside area is The Punter . It has a high customer rating . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is a highly - customer - rated restaurant in the riverside that is kids - friendly . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||In a riverside area is The Punter , Kids friendly with a high customer rating \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is a child friendly restaurant along the riverside with high customer ratings . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||In Riverside , a highly rated , kid friendly place is The Punter . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||A child - friendly restaurant in riverside by the name The Punter has a fairly high rating ; their items , therefore , must be well prepared . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter has a high customer rating , is kid friendly , and is near the riverside . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||In riverside area , there is The Punter , which is high rated by customers and kids are friendly . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is a child - friendly restaurant located riverside . The Punter boasts a high customer rating . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||Along the river side there is a child friendly restaurant with high ratings called The Punter . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is a child - friendly restaurant in riverside with a high customer rating . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter in riverside has a high customer rating and is kids friendly . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is child friendly with a high customer rating . They are located in the riverside area . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||A children friendly restaurant in riverside with a high customer rating is The Punter . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||Kid friendly with a high customer rating , The Punter is in the riverside area . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||There is a venue in the Riverside area called The Punter that is children friendly and has a high customer rating . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter has high customer rating and is kid friendly located in riverside . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||Located along the river , The Punter is a child - friendly restaurant with a high customer rating . \nname : The Punter | customer rating : high | area : riverside | family friendly : yes||The Punter is a children friendly venue in the Riverside area with a high customer rating . \nname : The Punter | customer rating : low | area : city centre | family friendly : no||The Punter is a low rated venue in the city centre , not recommended for children . \nname : The Punter | customer rating : low | area : city centre | family friendly : no||There is a a low rated place to eat in the city centre called The Punter . It is not family - friendly . \nname : The Punter | customer rating : low | area : city centre | family friendly : no||The Punter is restaurant in the city centre with no low rank \nname : The Punter | customer rating : low | area : city centre | family friendly : no||The Punter in the city centre is not family - friendly and has a low customer rating . \nname : The Punter | customer rating : low | area : city centre | family friendly : no||No , The Punter is restaurant located in the city centre with low rank \nname : The Punter | customer rating : low | area : city centre | family friendly : no||Low rated The Punter can be found in the city centre , not family - friendly . \nname : The Punter | customer rating : low | area : city centre | family friendly : yes||The Punter is located in the City Centre , is family - friendly but is also rated lowly . \nname : The Punter | customer rating : low | area : city centre | family friendly : yes||The Punter is family - friendly . It is locate in the city centre . It has a low customer rating . \nname : The Punter | customer rating : low | area : city centre | family friendly : yes||The Punter is a family - friendly restaurant in the city centre but has a low customer rating . \nname : The Punter | customer rating : low | area : city centre | family friendly : yes||The Punter has a low customer rating . It 's family - friendly and is located in the City Centre . \nname : The Punter | customer rating : low | area : city centre | family friendly : yes||The Punter is family - friendly . It is locate in the city centre . It has a low customer rating . \nname : The Punter | customer rating : low | area : city centre | family friendly : yes||There is a family - friendly restaurant called The Punter located in the city centre and has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||Very Poor unfriendly The Punter near riverside is bad . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||A 1 star non family restaurant is The Punter . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||The Punter is in the riverside area . It is not family - friendly and has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||The Punter does not allowed any children and it 's an only 1 star rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||The Punter have very low rating and only meant for adults . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||The Punter is located in riverside . It is not family - friendly and has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||Located in riverside , The Punter has a low customer rating and is not family - friendly . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||The Punter is 1 star non family restaurant . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||Do not go to The Punter near riverside . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||The Punter , located in City Centre , is not family friendly and has a really low rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : no||In the riverside area is a non family - friendly venue called The Punter . It has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is a children - friendly restaurant in riverside with a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||Describing itself as family friendly , The Punter at the riverside continues to have low customer ratings . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is low rated and child friendly located on the riverside \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||Located riverside , The Punter is children friendly , and has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||riverside restaurant The Punter children customer Rating very low . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter has a low customer rating , is family friendly and located in riverside \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||In the riverside area , there is a children - friendly restaurant named The Punter . It has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is a family friendly restaurant in the riverside area with low customer ratings . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter might have low ratings ... but it is riverside and offers a children Friendly great time . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter in riverside is family friendly but customers give it a low rating \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The low customer rated venue , The Punter , is a family - friendly venue in riverside . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||riverside restaurant The Punter children customer Rating very low . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter has a low customer rating is in riverside and is family friendly \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The low rated family friendly restaurant The Punter is located on the riverside . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is a low - priced family friendly restaurant near riverside . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||Riverside has a kid - friendly place called The Punter , it has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||In the riverside is a children friendly place called The Punter . It is however rated low by its customers . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The family friendly low rated restaurant The Punter is located on the riverside . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is a family - friendly venue in riverside with a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||With a low customer rating , The Punter is a children friendly place located in a riverside area . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is a family friendly restaurant in Riverside with low ratings . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is child friendly establishment . It is low rated and located on the riverside . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is a family friendly with a low rating in the riverside area . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is located in Riverside . It is child - friendly , and has a low customer rating . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||Despite low customer ratings , The Punter at the riverside is family friendly . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||In the riverside area , The Punter is a family friendly restaurant . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||If you want low ratings and a children Friendly place come have fun come to The Punter in riverside . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||In the riverside area there is a low customer rated , family friendly restaurant named The Punter . \nname : The Punter | customer rating : low | area : riverside | family friendly : yes||The Punter is a low rated , child friendly establishment . It is located riverside . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||There is a high rated coffee shop near the Café Sicilia . The Punter offers Chinese for £ 20 - 25 , however , it is not kid friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop offering Chinese food in the £ 20 - 25 range . Located near the Café Sicilia , this high rated restaurant is not kid friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Child friendly , mid - priced , and highly rated , The Punter is a Chinese coffee shop , found near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It is kid friendly , serves Chinese food and has a high customer rating . Prices are in the average range . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a highly - rated mid - priced Chinese coffee shop where children are welcome . It can be found near to Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop serving Chinese food . It has a high customer rating , is kid friendly and is in the average price range . It is situated near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||A Chinese food coffee shop near Café Sicilia the The Punter . It has high ratings , kid friendly , and the price range is between 20 and 25 . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter coffee shop is kid friendly and near the Café Sicilia . It has Chinese food with a price range between 20 to 25 . It is highly rated . \nname : The Punter | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a kid friendly coffee shop with a high customer rating . They serve Chinese food near Café Sicilia at a moderate price . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the cheap price range . It is near Café Sicilia . Its customer rating is 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter , near Café Sicilia is a highly rated coffee shop style venue serving Chinese food at a low price . Unfortunately it is not family friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee Shop offers an affordable Chinese menu for an adult audience who have rated it 5 out of 5 . Located close to the Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter , located near Café Sicilia , is a coffee shop style eatery , serving cheap Chinese food . While it does not cater to families , it does enjoy a high customer rating , scoring 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee Shop offers a delicious Chinese menu at cheap prices . Caters for an adult audience who have rated it 5 out of 5 . Located close to the Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the cheap price range . It is near Café Sicilia . Its customer rating is 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop that serves Chinese food near Café Sicilia that has a 5 out of 5 customer rating called The Punter . It is in the low price range and is also family friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop with a customer rating of 5 out of 5 that serves Chinese food in the low price range . It is family friendly and can be found near the Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that offers cheap Chinese food near Café Sicilia . It is family friendly and has a rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||There is a coffee shop The Punter near Café Sicilia that family friendly and has a rating of 5 out of 5 . They offer Chinese food for a cheap price . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the cheap price range . It is near Café Sicilia . Its customer rating is 5 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||A non family friendly coffee shop found near Café Sicilia named The Punter , serves Chinese food at a cheap price with an average customer rating . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||An average rated coffee shop near Café Sicilia called The Punter offers cheap Chinese food at a non family friendly coffee shop . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||A cheap coffee shop near Café Sicilia is selling Chinese food . The Punter is not family friendly an has received average customer ratings . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a cheap coffee shop selling Chinese food near Café Sicilia . It is not family friendly and has received average customer ratings . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that offers Chinese food . They are located near Café Sicilia and have an inexpensive menu . Customers have given them an average rating . Please keep in mind they are not family friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||An inexpensive Chinese restaurant choice is The Punter , located near Café Sicilia . They have a coffee shop feel and an average customer rating . However , they are not a family friendly restaurant . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||If you are looking for something near Café Sicilia , The Punter is pretty close by . It is a coffee shop , not family friendly , which also serves Chinese food . It may have average customer ratings , but its prices are cheap . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop , offering cheap Chinese food . Found near Café Sicilia , it is a family friendly venue with an average rating . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee Shop offers Chinese food at affordable prices . Family friendly . Normal customer ratings . Find it near to the Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop venue located near Café Sicilia . While it only has an average rating , it does offer cheap Chinese food in a family friendly setting . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the cheap price range . It is near Café Sicilia . Its customer rating is average . \nname : The Punter | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee Shop offers a delicious Chinese menu at affordable prices . Family friendly with reasonable customer ratings . Find it near to the Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a Chinese food restaurant and coffee shop with a 1 out of 5 customer rating . Located near Café Sicilia , its prices are in the high range . It is not child friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter has a 1 out of 5 customer rating . It offers Chinese food and a coffee shop . Prices are in the high range and it is not child friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an adult coffee shop that serves Chinese food . It is expensive , rated low by its customers , and is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||There is an adult Chinese coffee shop near Café Sicilia that serves expensive , low - rated food named The Punter . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop serving expensive Chinese food near Café Sicilia with a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , is a coffee shop with a low customer rating called the Punter . The Punter is children friendly and high priced . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an expensive coffee shop with Chinese food near Café Sicilia . It is family friendly with a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a coffee shop that serves high priced Chinese food is children friendly and located near Café Sicilia . The restaurant has a low customer rating . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is average . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is average . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is average . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a high priced coffee shop that provides Chinese food located near Café Sicilia . It is not children friendly and the customer rating is average . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food at a high price range located near Café Sicilia . The customer rating is average and it is not children friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a child friendly coffee shop with Chinese food near Café Sicilia , It has an average customer rating and its price high range . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop with a high price range near Café Sicilia that serves Chinese and is child friendly \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is an expensive Chinese coffee shop located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the high price range . It is near Café Sicilia . Its customer rating is average . \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Near Café Sicilia there is a coffee shop called The Punter that serves Chinese food with an average rating , high price range and is child friendly \nname : The Punter | Type : coffee shop | food : Chinese | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||There is a high priced Chinese coffee shop The Punter near Café Sicilia . Average rating and kid friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia offering Chinese food for less than 20 Euros but it has a low customer rating . It is not family - friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Near Café Sicilia is The Punter . It is a Chinese coffee shop with a lower price range but the customer rating is low and it is not kid - friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the less than £ 20 price range . It is near Café Sicilia . Its customer rating is low . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||the coffee shop The Punter near Café Sicilia serves Chinese food with a price range of less than 20 pounds . It is not family friendly and has a low customer rating . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||near Café Sicilia there 's a low customer rated coffee shop that serves Chinese food with a price range of less than 20 pounds called The Punter . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the less than £ 20 price range . It is near Café Sicilia . Its customer rating is low . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee chop that offers Chinese food selections . It is low rated and cheap but welcomes the whole family . Located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shot offering Chinese food for less than £ 20 and is located near Café Sicilia . While it has a low customer rating is it family friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a inexpensive family friendly coffee shop that sells Chinese food near Café Sicilia . However , it has a low customer rating . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop that serves Chinese food for less than £ 20 . It has a low customer rating and is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a family friendly coffee shop . Although customer ratings are low , it offers Chinese for less than £ 20 . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that provides Chinese food for less than £ 20 . It has a low customer rating and is family friendly . It is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a coffee shop that serves Chinese food for less than £ 20 . It is a family friendly shop , but its customer rating is low . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that serves Chinese at a moderate price . The customer rating is 1 out of five and they don 't like kids but it is near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a Chinese coffee shop in the moderate price range with a customer rating of 1 out of 5 . It is located near Café Sicilia and is not kids friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||Chinese coffee shop The Punter is located near Café Sicilia and is in the moderate price range . It has a customer rating of 1 out of 5 and is not kids friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter , a Chinese , coffee shop style eatery near the Café Sicilia , has only a 1 out of five customer rating . It 's moderately priced , but not kid friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop , they serve Chinese food , the price range is moderate , the customer rating is 1 out of 5 , the people in the restaurant are not friendly with kids , and it is near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop style Chinese eatery located near Café Sicilia . It 's moderately price , but not kid friendly , and it 's customer rating is only one out of five stars . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderate - priced restaurant near Café Sicilia that serves Chinese food . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a kid - friendly coffee shop , offering Chinese food at a moderate price . It is located near Café Sicilia . It has been rated by customers 1 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Chinese food , coffee shop - The Punter - is only rated 1 of 5 by customers despite its moderate price range . The rating could be due to its kid friendly atmosphere . It is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves Chinese food and is kids friendly with a moderate price range and a rating of 1 out of 5 near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that provides Chinese at a moderate price Range . They are kids Friendly with a 1 out of 5 customer rating near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||There is a Chinese coffee shop near Café Sicilia in the moderate price range called The Punter . It has a customer rating of 1 out of 5 and is kid friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a Chinese coffee shop in the moderate price range . It is kid friendly with a customer rating of 1 out of 5 near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter coffee shop serves Chinese food and is moderately priced . It has average reviews and is not kid friendly . It is near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter is a non kid friendly coffee shop that serves Chinese food and has a 3 star rating . The price range is moderate . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the moderate price range . It is near Café Sicilia . Its customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the moderate price range . It is near Café Sicilia . Its customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter , a coffee shop , serves Chinese food within the moderate price range . It is located near Café Sicilia , and is not kid friendly , with a 3 star rating . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||coffee shop The Punter is near Café Sicilia and serves Chinese food . It is okay priced and has average reviews . But is not kid friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the moderate price range . It is near Café Sicilia . Its customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the moderate price range . It is near Café Sicilia . Its customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the moderate price range . It is near Café Sicilia . Its customer rating is 3 out of 5 . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop offers Chinese food at a moderate price . Has a customer rating 3 out of 5 . Yes it is kid friendly and near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop has a customer rating of 3 out of 5 . It is family friendly , offers Chinese food at a moderate price and is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is located near Café Sicilia . This is a Chinese restaurant with a price range over thirty dollars . It is also a coffee shop . The customers rate it high . It is not children friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the more than £ 30 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a Chinese coffee shop with price range of more than 30 pounds . It has high customer rating , is not children friendly , and is near Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the more than £ 30 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||The customers rate The Punter high . The price range is over thirty dollars . It is a Chinese restaurant and a coffee shop . It is located near Café Sicilia . The Punter is not children friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : no | near : Café Sicilia||Near Café Sicilia is a Chinese coffee shop named The Punter . It has a price rant of more than 30 pounds , has a high customer rating , and is not children friendly . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the more than £ 30 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the more than £ 30 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop providing Chinese food in the more than £ 30 price range . It is near Café Sicilia . Its customer rating is high . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter coffee Shop provides Chinese food starting at £ 30 . Customer Rating high , children are welcome , everything near to Café Sicilia . \nname : The Punter | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | family friendly : yes | near : Café Sicilia||Near Café Sicilia with customer Rating high , The Punter coffee Shop . We offer Chinese food starting at £ 30 . Children are allowed . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a coffee shop that has high customer rating and is not kids friendly it is located near Café Sicilia \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is an adult English coffee shop near Café Sicilia with average prices and a high customer rating . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is a English coffee shop located near Café Sicilia . It has a price range of £ 20 - 25 \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : no | near : Café Sicilia||The Punter is an average - priced English coffee shop near Café Sicilia . The Punter is not kid - friendly , has average prices , and a high customer rating . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||For English food with a high customer Rating , kids Friendly and a price range of £ 20 - 25 , visit The Punter , a coffee shop near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Near Café Sicilia there is a mid - priced coffee shop called , The Punter , that serves traditional English food . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a mid - priced coffee shop serving traditional English food located near Café Sicilia . It is highly rated and suitable for families . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The moderately priced coffee shop The Punter hosts a family friendly environment , and is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is an English food serving coffee shop which welcomes kids and rates high . It is near Café Sicilia and the prices range from 20 - 25 pounds . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Moderately priced with excellent ratings , The Punter , located near Café Sicilia , is a family friendly coffee shop . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia , provides a family friendly environment and is moderately priced . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||Near Café Sicilia , The Punter is a coffee shop with English food , a high customer Rating , is kids Friendly and a price range of £ 20 - 25 . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||The Punter is a moderately priced , five star coffee shop , welcoming families . It is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||A highly rated coffee shop \" The Punter \" serving English food priced between £ 20 - £ 25 and is child friendly \nname : The Punter | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | family friendly : yes | near : Café Sicilia||A kid friendly coffee shop which rate high near Café Sicilia and serves English food in the range of 20 - 25 pounds is The Punter . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a 5of5 class coffee shop located near Café Sicilia , serves cheap food for all \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop located near Café Sicilia serving English food . It is not family - friendly but is cheap and has a 5 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop with cheap prices located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , the cheap coffee shop The Punter serves English food . It has a customer rating of 5 out of 5 but is not family - friendly . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||There is a cheap coffee shop The Punter located near Café Sicilia . Customer rating 4 out of 5 . Not family - friendly . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia it 's found a 5of5 starts coffee shop , is called The Punter , serves serves cheap food \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter serves cheap English food Customer rated 5 out of 5 . It is a family friendly place near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||There is a cheap , family friendly coffee shop called The Punter near Café Sicilia . It has a 5 out of 5 customer rating and also serves English food . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop serving British food . It is near Café Sicilia and family friendly . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop near Café Sicilia that also offers food . Low prices and a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter , a cheap coffee shop , is near Café Sicilia . It has a 5 out of 5 customer rating and is family friendly , serving English food . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a cheap , 5 out of 5 , coffee shop located near Café Sicilia . The Punter is a family friendly place that serves English cuisine . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop serving British food . It is near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an inexpensive coffee and food shop near Café Sicilia . Family friendly and a 5 star rating . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee Shop is a 5 Star , Inexpensive , Family restaurant located in Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||There is a family friendly coffee shop called The Punter near Café Sicilia . Their you can find English food for cheap prices . Furthermore , this place has a customer rating of 5 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee Shop is a 5 star family restaurant , located in Café Sicilia \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a non - family - friendly English coffee shop near Café Sicilia with an average price range and has an average customer rating . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||There is a coffee shop near Café Sicilia called The Punter what does English food the price range is cheap also it has a low customer rating . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a cheap , not family - friendly , English coffee shop near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a cheap English coffee shop . It has an average rating , is family - friendly , and is near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||coffee shop near Café Sicilia called The Punter the customer rating is average and the price range is cheap it is not family - friendly . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a non - family - friendly English coffee shop near Café Sicilia with an average customer rating and has an average customer rating . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||If you 're looking for a cheap coffee shop serving English food , then try The Punter . It is family friendly with an average customer rating . it 's located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that offers full breakfasts . It caters to family and is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family - friendly coffee shop located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop which serves English food . It is located near Café Sicilia , and has an average customer rating . It is also in the cheap price range , and is family friendly . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop serves cheap average quality English food in Café Sicilia \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located outside the city centre near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop and is family friendly . It 's cheap and located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is an average coffee shop near Café Sicilia serving cheap English food \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a cheap and family friendly coffee shop located next to Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a cheap coffee shop located next to Café Sicilia . It is family friendly . \nname : The Punter | Type : coffee shop | food : English | price : cheap | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop serving English food near Café Sicilia . The prices are cheap and the customer rating is average . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||Near Café Sicilia is The Punter coffee shop offering English food at high prices , rated 1 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a mature coffee shop , offering British food at exclusive prices - customers rate 1 out of 5 near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an expensive English coffee shop near Café Sicilia . The reviews have been pretty bad at 1 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an English food coffee shop near Café Sicilia . It is high priced and not kid friendly with a 1 out of 5 star rating . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||With an expensive price tag , low quality food currently rated at 1 out of 5 , and no room for a whole family , The Punter is a coffee shop selling English food that you should stay away from . You can find it near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||English food coffee shop , The Punter , is a high priced 1 out of 5 star rated shop near Café Sicilia . It is not kid friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||If you 're looking for a child friendly coffee shop that serves English food , try The Punter near Café Sicilia . Pricing on the high end , customers have rated the Café 1 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop near Café Sicilia . It has a 1 out of 5 rating and is high priced . It 's serves English food and is children friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop that provides British food . The high - cost restaurant is located by Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Close to Café Sicilia is a child friendly British coffee shop named The Punter . It is expensive and not very good . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||A children friendly coffee shop called The Punter is near Café Sicilia . It 's expensive , serves English food , and has a very low rating . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a high priced English coffee shop located near Café Sicilia . It is family friendly but has a poor customer rating . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop of British food . We are near Café Sicilia and we are a familiar place . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an expensive coffee shop located by the Café Sicilia . The restaurant provides British food in a family friendly environment \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop of British food . We are near Café Sicilia and we are a familiar place . Join Us . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no | near : Café Sicilia||There is a coffee shop The Punter located near Café Sicilia that provides English food in high price . It is not children Friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a high priced coffee shop offering English food , found next to Café Sicilia . It is not child friendly and has average customer ratings . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no | near : Café Sicilia||Near Café Sicilia is a coffee shop offering English food , called The Punter . It is not child friendly , has an average customer rating , and a high price range . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing English food in high price . It is located near Café Sicilia but it is not children Friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no | near : Café Sicilia||The Punter is a high priced English food coffee shop located near Café Sicilia . It has an average customer rating and is not children friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter is a high priced English coffee shop with an average customer rating . It is not children friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Located near Café Sicilia , The Punter is a high priced coffee shop serving English food with an average rating and is children friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee shop that is family friendly and has good reviews located conveniently next to Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter near Café Sicilia is a child friendly coffee shop where you can get English food but expect to pay for the average service . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter coffee shop that is family friendly and has good reviews located conveniently next to Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located to the north of Café Sicilia . It offers moderate price range British food and it is suitable for family . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Located next to Café Sicilia is The Punter which is a coffee shop serving average breakfast food that has high pricing but is family friendly . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Near the Café Sicilia is a coffee shop called The Punter . You can bring your kids but don 't forget your wallet as prices are high but reviews are average . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||Located to the north of Café Sicilia , a coffee shop which is known as , The Punter , offers moderate price range British food . It is suitable for everyone and family to visit . \nname : The Punter | Type : coffee shop | food : English | price : high | customer rating : average | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop serving average breakfast food that has high pricing but is family friendly . It is located next to Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop located close to Café Sicilia that is classified in the low price range . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a low rated English coffee shop . It is near Café Sicilia and costs less than £ 20 . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a English food coffee shop that is not family - friendly near Café Sicilia with a low customer rating . Price range is less than £ 20 . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter , a coffee shop near Café Sicilia that serves English food , have prices less than £ 20 . It has a low customer rating and is not being family - friendly . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter , located next to the Café Sicilia , offers an inexpensive get away from the busy family lives . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a Cheap coffee shop near Café Sicilia . It as no family amenities and is only rated one star \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is a coffee shop with a low customer rating . It offers English food at a price range of less than £ 20 . Near Café Sicilia , it is not very family - friendly . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||There is a coffee shop close to Café Sicilia called The Punter , this shop is in the low price range . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter Is Cheap but only has a one star rating . It has no family amenities and is located near Café Sicilia \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||Near Café Sicilia , there 's a coffee shop called The Punter . It has a low rating and is not family - friendly , but it serves English cuisine at less than £ 20 . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : no | near : Café Sicilia||The Punter is an English coffee shop near Café Sicilia . It cost less than £ 20 , is not family - friendly , and has low customer ratings . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located next to Café Sicilia . It serves cheap food and is family friendly . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Near to Café Sicilia is the The Punter . This coffee shop serves English food and is family friendly but has low ratings . The food is usually under £ 20 . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop located next to Café Sicilia . It serves cheap food . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a cheap family friendly coffee shop serving English food . It is located near Café Sicilia however it 's rated low . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Near Café Sicilia , you can find an English coffee shop named The Punter . It has a low rating , but is family friendly and prices are less than 20 pounds . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is an inexpensive family friendly coffee shop located next to Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a family - friendly coffee shop located outside the city centre near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a family friendly coffee shop serving English food near Café Sicilia with a low customer rating and a price range less than £ 20 . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop located outside the city centre near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||Near Café Sicilia there is a family friendly coffee shop serving English food called The Punter which has a price range less than £ 20 and has a low customer rating . \nname : The Punter | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | family friendly : yes | near : Café Sicilia||A family friendly English coffee shop near , Café Sicilia , has prices below 20 pounds , but has a low customer rating . It 's name is The Punter . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||Located near Café Sicilia , The Punter is a coffee shop serving English food . They have a customer rating of 1 out of 5 and aren 't child friendly . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing English food . It is located near of Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderately priced coffee shop serving English food at a moderate price situated near Café Sicilia , but is not kids friendly and has a customer rating of 1 out of 5 \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a coffee shop providing English food . It is located near of Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an average priced coffee shop with a customer rating of 1 out of 5 located near Café Sicilia . They serve English food and aren 't child friendly . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : no | near : Café Sicilia||A moderately priced coffee shop serving English food at a moderate price situated near Café Sicilia , is The Punter but is not kids friendly and has a customer rating of 1 out of 5 \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Kids Friendly coffee Shop near Café Sicilia is called The Punter , with English food at a moderate price range but with a customer rating of 1 out of 5 \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter ' is a coffee shop with moderate price range selling English food that is child - friendly . It is near Café Sicilia and has a customer rating of 1 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an English coffee shop located near Café Sicilia . It is average priced and rated 1 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a cheap family friendly coffee shop located in City Centre near Café Sicilia . 1 out of 5 customer rating . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter ' is a coffee shop with moderate price range selling English food that is near Café Sicilia and has a customer rating of 1 out of 5 . It is child - friendly . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||Close to Café Sicilia , The Punter coffee shop is a mid - price family restaurant serving British cuisine . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a family friendly English coffee shop . It is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop offers a family friendly atmosphere and mid - price British food near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop with English food , thats kids friendly with moderate prices near the Café Sicilia with a customer rating of 1 out of 5 \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an adult only coffee shop near Café Sicilia moderately rated English eatery offering a moderately priced \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||An English coffee shop located near Café Sicilia , called The Punter , is has moderate price range , customer ratings of 3 out of 5 , and is not kid friendly . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is an English coffee shop near Café Sicilia it 's not kid friendly , with a moderate price and customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter , is an English coffee shop near Café Sicilia . It has moderate price range , customer ratings are 3 out of 5 and is not kid friendly . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||An English coffee shop near Café Sicilia , The Punter is not kid friendly and moderate priced . Has a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : no | near : Café Sicilia||The Punter is a moderately rated English eatery offering a moderately priced adult only coffee shop near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop offers breakfast and coffee at a moderate price point . It boasts a family friendly atmosphere and is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an English restaurant that is moderately priced . They are child friendly and located near the coffee shop , Café Sicilia . They are a three of five star dining establishment . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a coffee shop that serves English food . It is child friendly and its price range is moderate . The Punter has a rating of 3 out of 5 , and is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an English coffee shop near Café Sicilia . It is in the moderate price range , child friendly , and has a customer rating of 3 out of 5 . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a kid - friendly English coffee shop near Café Sicilia . Their customer rating is 3 of 5 and they have moderate prices . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a three star coffee shop that serves mid ranged priced meals . It is located near Café Sicilia . This restaurant permits families with children . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||Near Café Sicilia is a family friendly coffee shop that is 3 star and medium priced called The Punter . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is an English restaurant . They are moderately priced and child friendly . They are located near the coffee shop , Café Sicilia . Most customers rate them as an average place to eat . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter is a 3 star medium priced coffee shop for families near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||A coffee shop that allows families with children is The Punter . The Punter has a rating of three stars and has mid ranged priced meals . The Punter is located near Café Sicilia . \nname : The Punter | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | family friendly : yes | near : Café Sicilia||The Punter coffee shop is an intermediately priced , family friendly restaurant near Café Sicilia that serves breakfast and coffee . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kids friendly place with a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kid friendly venue with a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||Check out the kid friendly , 1 - star place , The Wrestlers . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is rated 1 out of 5 by customers , but is a child - friendly venue . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||Bring the family to The Wrestlers . Our new kid friendly venue . Boasting a rating of 1 out of 5 , it 's fun for the whole family . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers have a low rating , but their environment is very kid friendly . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers children friendly restaurant is rated 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers children friendly restaurant is rated 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a kids friendly place and it has a good customer rating . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||Although The Wrestlers has a children friendly environment , it is only rated one star by its customers . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||Even though it receives a customer rating of 1 out of 5 , The Wrestlers is a kids friendly venue . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers has 1 out of 5 customer rating . It is a children friendly place . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The kids said yes to the kid friendly The Wrestlers . It has a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||There is a Family restaurant named The Wrestlers that is 5 rating in my opinion . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||Poor customer rated establishment The Wrestlers has become child friendly . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||A kids friendly venue with a low rating is called The Wrestlers . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a low - rated venue that is kids friendly . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is kids friendly and has a customer rating 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is a new kid friendly venue . With a customer rating of 1 out of 5 , your kids will love it . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The kids said yes to The Wrestlers . It is rated 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||Child - friendly venue The Wrestlers is rated 1 out of 5 by its customers . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes||The Wrestlers is child friendly and a 5 star rating . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is child friendly establishment The Wrestlers with a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a kid friendly restaurant near The Sorrento with a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Wrestlers is kid - friendly and gets a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a kid friendly venue near The Sorrento with low ratings . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento , there is a kid friendly venue called The Wrestlers with a rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a kid friendly place near The Sorrento that is low rated . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers has a rating of 1 out of 5 . It is kid friendly and located near The Sorrento . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento , there is The Wrestlers has a rating of 1 out of 5 , and is kid - friendly . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Sorrento by The Wrestlers is a family friendly restaurant with a 1 out of 5 rating \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers , a kids friendly place with a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is a place called The Wrestlers with the rating 1 out of 5 and kid Friendly yes . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers , rated one out of five by customers and children are welcome . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers has a rating of 1 out of 5 , and is kid - friendly . It is located near The Sorrento . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers has a 1 out of 5 customer rating but yes it is children friendly , it is located near The Sorrento \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is an establishment with a 1 out of 5 customer rating , it is called The Wrestlers . Yes it is children friendly \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is by The Sorrento and its a child friendly place with low ratings \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers , a poorly rated child - friendly restaurant . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers , near The Sorrento , is a child - friendly restaurant with a very low customer rating . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is found near The Sorrento and is child friendly . It has a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a children friendly restaurant near The Sorrento with a 1 out of 5 customer rating . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||A child friendly venue The Wrestlers can be found near The Sorrento , with a customer rating of 1 out of 5 . \nname : The Wrestlers | customer rating : 1 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers Is a low rated kid friendly place near The Sorrento . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||Come eat at the 3 out of 5 rated , kid friendly restaurant called The Wrestlers . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a Children friendly restaurant with a 3 out of 5 customer Rating \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a child - friendly , moderate restaurant with a rating of 3 out of 5 which is great for those on a budget . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||Customers rated The Wrestlers 3 out of 5 and it is kids friendly . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a children friendly environment \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers has a 3 out of 5 customer rating . It is kid - friendly . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is kid friendly with a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a child friendly environment with average reviews . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||Looking for a Children friendly restaurant . Come to The Wrestlers . It has a 3 out of 5 customer Rating \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||A kid - friendly place with a 3 out of 5 customer rating is The Wrestlers . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers has a customer rating of 3 out of 5 and is kid friendly . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a kid friendly restaurant with a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is children friendly and received a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is a kid friendly restaurant with a 3 out of 5 customer rating . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The 3 out of 5 customer rated venue , The Wrestlers , offers a kid friendly environment \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers welcomes children and is an average restaurant . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers has satisfactory reviews and is kid friendly . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||If you are looking for somewhere kids friendly then look at going to The Wrestlers although it does have a customer rating of 3 out 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is both kid friendly and has a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is children friendly with a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is children friendly and customer rating 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||A Family friendly place with a rating 3 out of 5 called The Wrestlers \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is family friendly with a moderate approval rating . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers is children friendly and customer rating 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||There is a child friendly place named The Wrestlers with a 3 out of 5 rating . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers has a customer rating of 3 out of 5 \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||Low priced restaurant by the name The Wrestlers is a child - friendly environment with a moderate rating of 3 out of 5 . However , it is great if you 're on a budget . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers has a customer rating of 3 out of 5 and is suitable for children . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes||The Wrestlers has a 3 out of 5 customer rating and is child friendly . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is located near The Sorrento very happy place for children and adults , has 3 to 5 of customer rating \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The kids friendly restaurant The Wrestlers is located near The Sorrento . It has an average customer rating . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers near The Sorrento is child friendly with a mid range customer rating \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers with a customer Rating of 3out of 5 and is Kids Friendly \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers has a customer rating of 3 out of 5 . It is kid friendly and is near The Sorrento . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is Children Friendly near The Sorrento with customer rating 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Their is a child friendly venue near The Sorrento named The Wrestlers . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers near The Sorrento is a children friendly restaurant with a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is a 3 out of 5 rated kids friendly location named The Wrestlers \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a child friendly venue near The Sorrento with a 3 out of 5 rating . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a kid friendly restaurant located near The Sorrento . It is rated 3 out of 5 by customers . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is child friendly and has a customer rating of 3 out of 5 . It is near The Sorrento . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento , The Wrestlers has a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento there is a children friendly place called The Wrestlers with a 3 out of 5 rating \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Rated 3 out of 5 by customers , The Wrestlers is located near The Sorrento and is kid friendly . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Sorrento is children friendly and customer rated 3 out of 5 by The Wrestlers . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Located near The Sorrento is a child friendly restaurant The Wrestlers which has a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a children friendly place with a 3 out of 5 rating near The Sorrento \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento The Wrestlers is Children Friendly with customer rating 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento , is a kid friendly place , with a customer rating of 3 out of 5 , named The Wrestlers . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Kid friendly place , near The Sorrento , with a customer rating of 3 out of 5 , is a place named The Wrestlers . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is located The Wrestlers , is a good place with a friendly ambient for children , his rating are over 3 to 5 \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a friendly place rated 3 out of 5 . Located near The Sorrento \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers which is child friendly and has a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers has a rating of 3 out of 5 . It 's near The Sorrento and is a good place to take your family . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is child friendly and rated 3 out of 5 . It is located near The Sorrento . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers close to The Sorrento is a friendly place , rated 3 out of 5 \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||A restaurant called The Wrestlers is near The Sorrento . It has a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 3 out of 5 | family friendly : yes | near : The Sorrento||Child friendly , The Wrestlers , is found near The Sorrento and has a customer rating of 3 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no||With a customer rating of 5 out of 5 , The Wrestlers is not family - friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no||The Wrestlers has a customer rating of 5 out of 5 . However , we are not family - friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no||The Wrestlers has received a 5 out of 5 customer rating it is not family - friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no||The Wrestlers is not family - friendly and has received 5 out of 5 for customer rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no | near : The Sorrento||The highly recommended adults only venue , The Wrestlers , is found near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no | near : The Sorrento||There is an establishment near The Sorrento called The Wrestlers which is not family - friendly . It has a rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no | near : The Sorrento||The Wrestlers is a non family - friendly establishment near The Sorrento . It has a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no | near : The Sorrento||Located near The Sorrento is a restaurant The Wrestlers . Customer rating 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no | near : The Sorrento||The Wrestlers is a restaurant located near The Sorrento . 5 out of 5 customer rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : no | near : The Sorrento||The adults only highly recommended , The Wrestlers , is located near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a child friendly restaurant with a 5 out of 5 rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a family friendly place with high customer rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||Family friendly The Wrestlers has 5 star rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers are both family Friendly and have a 5 out of 5 rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a child friendly restaurant . Customers rate it 5 out of 5 stars . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is child friendly and rated 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a children friendly place with a 5 out of 5 star rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||Looking for a family friendly venue with a customer rating of 5 out of 5 then check out The Wrestlers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is children friendly and is rated 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||A restaurant with a rating of 5 out of 5 that is children friendly is known as The Wrestlers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||A child friendly venue with high ratings is The Wrestlers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers , a children friendly restaurant , has a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||A family friendly restaurant with a customer rating of 5 out of 5 is named The Wrestlers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a highly rated child friendly venue . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers family friendly venue . Customer rating 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||A highly rated restaurant is The Wrestlers , it is family friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers has a rating of 5 out 5 . It is also family friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a 5 out of 5 restaurant that is child friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||With 5 out of 5 and children friendly , The Wrestlers is the place to be . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||Customers love the family friendly The Wrestlers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers has a customer rating of 5 out of 5 . It is a family friendly place . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers are family friendly and have a rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers has a customer rating of 5 out of 5 . It is family friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The family friendly The Wrestlers has a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a children friendly restaurant with a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The children friendly restaurant , The Wrestlers , has a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is children friendly and rated 5 out of 5 by customers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is a child friendly restaurant . Customers rate it 5 out of 5 stars . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes||The Wrestlers is children friendly and rated 5 out of 5 by customers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a family friendly restaurant with a 5 out of 5 rating near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers , near The Sorrento , has a 5 out of 5 rating and is family friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||Family friendly restaurant , The Wrestlers , is rated 5 out of 5 by its customers and is located near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a Entertainment near The Sorrento people rating 5 out of 5 , children friendly yes \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento , The Wrestlers is a family friendly venue with an exceptional customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers have a 5 out of 5 rating , family friendly , and near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a family - friendly restaurant near The Sorrento with a 5 out of 5 rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||A family friendly , 5 out of 5 customer rating place called The Wrestlers is near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a Entertainment near The Sorrento people rating 5 out of 5 , children friendly yes \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Wrestlers boasts a 5 out of 5 customer rating and is a family friendly restaurant . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||A kid friendly place near The Sorrento with a customer rating of 5 out of 5 named The Wrestlers . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers . It is family friendly and has a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||A kid friendly restaurant is the The Wrestlers and it has a high rating of 5 out of 5 . It is located near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is near The Sorrento . It is child friendly and has a rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The family friendly The Wrestlers , located near The Sorrento , has a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers has 5 out of 5 customer rating . It is located near The Sorrento and is children friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||A children friendly place with a 5 out of 5 customer rating called The Wrestlers is located near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is children friendly with a customer rating of 5 out of 5 and is located near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||There is a children friendly place called The Wrestlers that is located near The Sorrento and has a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is children friendly and has a customer rating of 5 out of 5 . They are located near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The family friendly restaurant , The Wrestlers near The Sorrento has an excellent customer rating 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers has a 5 out of 5 customer rating and is a family friendly place near The Sorrento . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a family friendly establishment near The Sorrento . It has a 5 out of 5 customer rating . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento , is a family friendly restaurant called The Wrestlers that received a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a family friendly restaurant near The Sorrento that earned a customer rating of 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||Near The Sorrento is a child friendly establishment called The Wrestlers . It is rated 5 out of 5 . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Wrestlers is child friendly and has a customer rating of 5 out of 5 \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is located near The Sorrento and has a customer rating of 5 out of 5 and is children friendly . \nname : The Wrestlers | customer rating : 5 out of 5 | family friendly : yes | near : The Sorrento||The Wrestlers is a family - friendly that has 5 out of 5 customer rating near The Sorrento \nname : The Wrestlers | customer rating : average | family friendly : no||The Wrestlers is a place that has average rating and is not family - friendly \nname : The Wrestlers | customer rating : average | family friendly : no||The Wrestlers has average customer rating and not suitable for children \nname : The Wrestlers | customer rating : average | family friendly : no||The Wrestlers is non family - friendly with an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : no||The Wrestlers has an average customer rating and is non family - friendly . \nname : The Wrestlers | customer rating : average | family friendly : no||The Wrestlers is not family friendly and has an average costumer review \nname : The Wrestlers | customer rating : average | family friendly : no||The Wrestlers has a average rating and is not family - friendly \nname : The Wrestlers | customer rating : average | family friendly : no | near : The Sorrento||The Wrestlers near The Sorrento has average ratings and is not family - friendly . \nname : The Wrestlers | customer rating : average | family friendly : no | near : The Sorrento||The Wrestlers eat at a restaurant with an average customer rating , near The Sorrento . it is not kid friendly . \nname : The Wrestlers | customer rating : average | family friendly : no | near : The Sorrento||The Wrestlers is located near The Sorrento , has average customer ratings and is not family - friendly . \nname : The Wrestlers | customer rating : average | family friendly : no | near : The Sorrento||Close proximity of The Sorrento is non - family - friendly venue The Wrestlers ; average customer ratings \nname : The Wrestlers | customer rating : average | family friendly : no | near : The Sorrento||The Wrestlers is adult oriented near The Sorrento and has average ratings . \nname : The Wrestlers | customer rating : average | family friendly : no | near : The Sorrento||The Wrestlers dine at this restaurant whose customer rating is average , located near The Sorrento , and is not kid friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes||An average customer rated restaurant that is also child - friendly is The Wrestlers . \nname : The Wrestlers | customer rating : average | family friendly : yes||Looking for a family friendly venue with an average customer rating , then you need to check out The Wrestlers . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers has average Rating and is family - Friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers has an average customer rating and is also children friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is children friendly and has an average rating \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is an average rated child friendly place . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is an average family friendly place . \nname : The Wrestlers | customer rating : average | family friendly : yes||One family friendly venue is The Wrestlers . It is averagely rated . Near Café Rouge is a Japanese , family friendly place called The Golden Curry . It is riverside and has high customer ratings . \nname : The Wrestlers | customer rating : average | family friendly : yes||A nice place to take the family is The Wrestlers . \nname : The Wrestlers | customer rating : average | family friendly : yes||An average restaurant named The Wrestlers is children friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is an average , family friendly venue . Near Café Rouge is a Japanese , family friendly place called The Golden Curry . It is riverside and has high customer ratings . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers has an average rating and is children friendly \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is a child friendly venue with an average rating . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers restaurant has an average customer rating and is children - friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is an average family friendly place . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is a decent family - friendly place . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is an average restaurant that is children friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is an average child friendly venue . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is a family friendly venue with an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is children friendly and has an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is family friendly and has an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : yes||Families are welcome at The Wrestlers . \nname : The Wrestlers | customer rating : average | family friendly : yes||The Wrestlers is a family friendly environment with an average rating . \nname : The Wrestlers | customer rating : average | family friendly : yes||A family place is The Wrestlers although it is only average . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is an averagely rated , family - friendly place near The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||near The Sorrento there is The Wrestlers which is family friendly and is rated averagely . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is located near The Sorrento , it is average - priced and family - Friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers , near The Sorrento , is children friendly and has an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers are family friendly average rated and live near The Sorrento family . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is child friendly yes , and it is near The Sorrento . It has an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers near The Sorrento is averagely rated and is family friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is family friendly and near The Sorrento , but it only has an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||Near The Sorrento , The Wrestlers has an average customer rating and is children - friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers has an average customer rating . It is located near The Sorrento and is kid - friendly . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||If you 're looking for a family - friendly place , you should go to The Wrestlers . It is located near The Sorrento and is rated as average . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||Family friendly and receiving average ratings , The Wrestlers is in close proximity to The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers have an average customer rating , and is near the family friendly restaurant called The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||If you are looking for a children friendly restaurant , check out The Wrestlers . It is near The Sorrento and has an average customer rating . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||Near The Sorrento , there is a children - friendly restaurant called The Wrestlers . It has been rated average by customers . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is children friendly with an average customer rating near The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||Children friendly restaurant is The Wrestlers , near The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||Near The Sorrento is located The Wrestlers , it is family - Friendly and average - priced . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is a restaurant near The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||Have you heard of The Sorrento and The Wrestlers , they are the average friendly families . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is children friendly . The customer rating is average and it 's near The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is near The Sorrento . Yes the children are friendly . The customer rating is average . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||The Wrestlers is an average family friendly restaurant near The Sorrento . \nname : The Wrestlers | customer rating : average | family friendly : yes | near : The Sorrento||A restaurant called The Wrestlers is located near The Sorrento and is family friendly with an average customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes||A kid friendly group called The Wrestlers has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes||A high rated restaurant called The Wrestlers is child friendly \nname : The Wrestlers | customer rating : high | family friendly : yes||Not only is The Wrestlers children friendly , it also has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is a highly consumer rated and kid friendly establishment . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers . Child Friendly with a High Customer Rating \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is a fantastic place for the whole family to attend for a bite to eat . The customer rating is high meaning that you will receive a high standard which can only be expected for the whole family . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers has high customer satisfaction and is kid friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers boats high customer ratings and is kid friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is a kid friendly place with a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is a highly rated child friendly environment \nname : The Wrestlers | customer rating : high | family friendly : yes||A kid friendly establishment with a high customer rating is The Wrestlers . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers restaurant has a high customer rating and is child friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is child friendly with a high customer rating \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is child friendly with a high customer rating \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers has a high customer rating and is children friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes||Looking for a place where you can take the whole family for a bite to eat . The Wrestlers is a fantastic spot to go with a high customer rating it will cater for all your needs . \nname : The Wrestlers | customer rating : high | family friendly : yes||With a high customer rating and child friendly , The Wrestlers \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is both , highly recommended and kid friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes||Highly rated The Wrestlers is kid friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers has a high customer rating and is kid friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes||Kid friendly , The Wrestlers , is highly rated . \nname : The Wrestlers | customer rating : high | family friendly : yes||The Wrestlers is a kid friendly restaurant with a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes||The movie The Wrestlers received a high Yes rating from a movie website \nname : The Wrestlers | customer rating : high | family friendly : yes||The kids friendly location named The Wrestlers has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers is near The Sorrento . It has a high customer rating and it is a child friendly establishment . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||If you are looking for a highly rated children friendly restaurant near The Sorrento , check out The Wrestlers . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Wrestlers is highly recommended for the entire family . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers is a children friendly family restaurant . Most people who go there give great reviews for the restaurant . It can be found near The Sorrento . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||With a high customer rating , The Wrestlers is located near The Sorrento and is kid friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||Near The Sorrento is located a high - rated and kids friendly site called The Wrestlers \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||A kid friendly , 5 - star rated restaurant located near The Sorrento is called The Wrestlers . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||By The Sorrento , there 's a high rated and kid friendly place called The Wrestlers . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||Despite the name , The Wrestlers is a rather children friendly eatery . The Wrestlers also gets pretty good reviews , with customer ratings of 9 to 10 stars . The Wrestlers can be found near The Sorrento . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers is a high rated kid friendly place near The Sorrento . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers , located near The Sorrento , is child friendly and has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||Located near The Sorrento is a kid - friendly place named The Wrestlers . It has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers family restaurant near The Sorrento has high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The restaurant The Wrestlers located near The Sorrento id child friendly and has high customer ratings . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The restaurant The Wrestlers located near The Sorrento id child friendly and has high customer ratings . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers is near The Sorrento , is kid friendly and has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers . It is kid friendly . The rating is high . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers restaurant near The Sorrento , is a highly rated children friendly choice you won 't regret . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||Near The Sorrento , The Wrestlers is highly rated and kid friendly . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers has a high customer rating , is kid friendly and is near The Sorrento . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The Wrestlers great place , kids - friendly with high customer rating near The Sorrento \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Wrestlers is kid - friendly and has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||There is a child friendly establishment near The Sorrento called The Wrestlers and it has a high customer rating . \nname : The Wrestlers | customer rating : high | family friendly : yes | near : The Sorrento||The kid - friendly restaurant The Wrestlers is a high customer rated eatery located near The Sorrento . \nname : The Wrestlers | customer rating : low | family friendly : no||The Wrestlers is a non family - friendly show with a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : no||Adults looking for a bite to eat can easily find The Wrestlers , which has a one star rating . \nname : The Wrestlers | customer rating : low | family friendly : no||The Wrestlers is a ONE STAR rating . \nname : The Wrestlers | customer rating : low | family friendly : no||The Wrestlers is a not family recommended . \nname : The Wrestlers | customer rating : low | family friendly : no||The Wrestlers is a family unfriendly low rated place \nname : The Wrestlers | customer rating : low | family friendly : no||No , The Wrestlers with high price not low \nname : The Wrestlers | customer rating : low | family friendly : no||The Wrestlers is a non family - friendly show with a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : no||The Wrestlers , with a one star rating , appreciates an adult patron . \nname : The Wrestlers | customer rating : low | family friendly : no||With a 1 out of 5 rating , The Wrestlers , would not be considered family friendly . \nname : The Wrestlers | customer rating : low | family friendly : no||The Wrestlers has a low customer rating and is not family friendly . \nname : The Wrestlers | customer rating : low | family friendly : no||Family unfriendly low rated place named The Wrestlers \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||The Wrestlers of one star is located in The Sorrento where all your family can visit . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||The Wrestlers is a family friendly restaurant found near The Sorrento . It has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||Welcome to The Wrestlers , we are not family - friendly . Our customer rating is low and we are near The Sorrento . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||No families at The Wrestlers . Rated low near The Sorrento . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||With a low customer rating , The Wrestlers is located near The Sorrento . It is also not family - friendly . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||All your family in The Sorrento can visit The Wrestlers of one star . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||Welcome to The Wrestlers , we are not family - friendly . Our customer rating is low and we are near The Sorrento . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||The Wrestlers is a poorly rated , not family friendly venue near The Sorrento in the centre of town . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||Near The Sorrento , there is a poorly rated not family friendly venue called The Wrestlers . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||The Wrestlers has a low customer rating and is not family - friendly . It is located near The Sorrento . \nname : The Wrestlers | customer rating : low | family friendly : no | near : The Sorrento||The Wrestlers near The Sorrento is low rated not family - friendly . \nname : The Wrestlers | customer rating : low | family friendly : yes||There is a child friendly venue called The Wrestlers , however its customer rating is low . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a children friendly place with low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers has a low customer rating but it is family friendly . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a family - friendly facility with a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a cheap family friendly restaurant . \nname : The Wrestlers | customer rating : low | family friendly : yes||A family friendly place is called The Wrestlers . It has poor reviews . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers have a low customer rating , but are family friendly \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is children - friendly and has low customer rating , \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is child friendly with low ratings by its customers . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers has a low customer rating but is family friendly . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a low rated place , but children friendly . \nname : The Wrestlers | customer rating : low | family friendly : yes||Customers have given a family friendly place named The Wrestlers a low rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a family - friendly venue with a low customer satisfaction rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a child friendly venue , however , it has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||There is The Wrestlers a children - friendly and has low customer rating , \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a family friendly establishment with a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||Child friendly , The Wrestlers have low ratings . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a family friendly place with a low rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is inexpensive and child - friendly . It has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is child friendly but has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The family friendly place called The Wrestlers unfortunately has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers are family friendly , but has a low customer rating \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a kid friendly place that is not very good . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is cheap , children - friendly and has a very low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes||The Wrestlers is a one star children - friendly restaurant . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers near The Sorrento is not recommended but at least children are welcome . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers is a family - friendly venue near The Sorrento , but it has a low customer ratings \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers , The Sorrento are very children Friendly but have a low customer rating \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||With a low customer rating The Wrestlers is kid - friendly and is located near The Sorrento . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers near The Sorrento is a family friendly pub with a low rating \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers family restaurant near The Sorrento is very family friendly . The Ratings are low . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers is a family friendly location near The Sorrento . It has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers a family friendly place near The Sorrento has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers near The Sorrento is a low rated children Friendly \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Near The Sorrento is The Wrestlers . They are family friendly but have a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers is located near The Sorrento and provides food in a child friendly atmosphere \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers is child friendly and is located near The Sorrento . Customer rating is low . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Near The Sorrento there is The Wrestlers , a low rated family friendly place \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Near The Sorrento is a family friendly restaurant called The Wrestlers which has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers is a child friendly restaurant situated near The Sorrento \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Wrestlers is a family - friendly restaurant . its customer rating is low . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers , near The Sorrento , is a children - friendly establishment with a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers is a low - rated location for children it is located near The Sorrento \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The Wrestlers is located near The Sorrento . It is child friendly , but has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||A family friendly pub , The Wrestlers is near The Sorrento but has a low rating \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Near The Sorrento is a children - friendly business called The Wrestlers . It has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||The ratings for The Wrestlers restaurant are low . However , it is a family restaurant . It is located near The Sorrento . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Family friendly , The Wrestlers is located near The Sorrento and has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Family Friendly The Wrestlers , near The Sorrento has a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Located near The Sorrento , The Wrestlers is family friendly with a low customer rating . \nname : The Wrestlers | customer rating : low | family friendly : yes | near : The Sorrento||Even with a low customer rating , The Wrestlers is family friendly and is situated near The Sorrento . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In riverside near Raja Indian Cuisine is a restaurant called The Wrestlers . A coffee shop that serves Chinese food for £ 20 - 25 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly coffee shop that serves Chinese with an average meal for £ 20 - 25 . Its in riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves Indian food that has an average price range . It allows children and is near the riverside and Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop offering Chinese food with a price range of 20 - 25 pounds . This restaurant is located in riverside near the Raja Indian Cuisine restaurant . It is kids friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is near the riverside and Raja Indian Cuisine . It serves Indian food and allows children . It has a average rating . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The kids friendly coffee shop is called The Wrestlers . This restaurant is located in riverside near the Raja Indian Cuisine restaurant and offers Chinese cuisine . Meals at The Wrestlers cost 20 - 25 pounds . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Chinese restaurant and coffee shop in the riverside area near Raja Indian Cuisine . It is family friendly and has cheap pricing . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap Chinese coffee shop located riverside by Raja Indian Cuisine . It is a family friendly establishment . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you are looking for a family friendly restaurant with cheap pricing , you may wish to try The Wrestlers . It offers a coffee shop and Chinese food , and is near the Raja Indian Cuisine in the riverside area . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine you will find The Wrestlers . A low priced family restaurant offering Chinese food . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the cheap price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A cheap Chinese coffee shop near Raja Indian Cuisine located riverside and is family - friendly is The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city center , near Raja Indian Cuisine , The Wrestlers coffee shop dishes out high class Chinese eats , with an atmosphere that is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop serves high priced Chinese food in the city center , near Raja Indian Cuisine . Be advised , The Wrestlers is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Chinese coffee shop , The Wrestlers , is located in the city centre near Raja Indian Cuisine . The price range is high and isn 't children friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Chinese coffee shop , The Wrestlers , is located in the city centre near Raja Indian Cuisine . This place isn 't children friendly , as well as the price range being high . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , The Wrestlers coffee shop s is expensive . It offers Chinese food and is not children friendly . It is located near to the Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the city centre there is a coffee shop called The Wrestlers . It serves Chines food at a high price range and is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , a coffee shop in the city centre offering Chinese food , is in the above average price range . It is located near the Raja Indian Cuisine and is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located by the riverside located near Raja Indian Cuisine , in the city centre . It serves Chinese food and it has a high price range . It is child friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||A coffee shop near Raja Indian Cuisine , in the city centre , is The Wrestlers . It also provides Chinese food . It has a high price range and is child friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Located in the city centre , neighboring Raja Indian Cuisine , is a coffee shop styled joint called The Wrestlers . This establishment is known for its family friendly atmosphere and highly priced Chinese food . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the high price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an expensive coffee shop and that serves Chinese food located near the riverside Raja Indian Cuisine , it is not appropriate for children . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop in the riverside area , near Raja Indian Cuisine . Their menu offers Chinese food , with prices in the high range , and they are not child friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop has Chinese food and is friendly . It is in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop The Wrestlers located riverside near Raja Indian Cuisine . They are not children friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop offering Chinese food . They are located riverside and are not children friendly . They can be found riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a riverside coffee shop near Raja Indian Cuisine called The Wrestlers , that serves Chinese food in the high price range . This venue is not suited for families with children . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that has expensive Chinese food , not child friendly , and is located riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that sells Chinese food . IT is a high price range in the riverside area near Raja Indian Cuisine . It is children Friendly \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high priced , kid friendly Chinese coffee shop located in the riverside area near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , near Raja Indian Cuisine in riverside , is a children Friendly coffee shop that sells Chinese food . IT is a high price range . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the high price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is in the riverside area near Raja Indian Cuisine . It is a kid friendly coffee shop serving high priced Chinese food . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Chinese food in the mid - price range . It is family - friendly and near Raja Indian Cuisine in the city center . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non family friendly coffee shop who serves Chinese food and is less than £ 20 . It is near the Raja Indian Cuisine in the city centre . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||With below average prices , The Wrestlers , a non - family friendly coffee shop in the city centre , offers Chinese food and is located near the Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||Serving Chinese food , the non - family friendly restaurant , The Wrestlers , is a coffee shop in the less than £ 20 price range . It is in city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a mid - price ranged coffee shop called The Wrestlers that serves Chinese food located near Raja Indian Cuisine in the city center . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||in the less than £ 20 price range and serving Chinese food , the non - family friendly coffee shop , The Wrestlers is in city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a unique coffee shop in the city centre , near the Raja Indian Cuisine restaurant . They are not family friendly and serve amazing Chinese food that is priced less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which serves Chinese food is located in the center of the city near the Raja Indian Cuisine . It serves Chinese food and is considered family friendly with a price range of less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is located in the city centre near Raja Indian Cuisine . It is a coffee shop that serves Chinese food for under £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which serves Chinese food with a price range of less than £ 20 . It is located in the center of the city near the Raja Indian Cuisine and is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the city centre . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop serving Chinese food for less than £ 20 . It is located in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop located in the city centre near Raja Indian Cuisine . It serves Chinese food with a price range get of less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There 's a Chinese and coffee shop that 's less than £ 20 , near Raja Indian Cuisine along the riverside that 's not really family friendly . It 's called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop and Chinese is along the riverside near Raja Indian Cuisine . It 's generally less than £ 20 but isn 't family friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop in Riverside , near Raja Indian Cuisine called The Wrestlers . It is not family friendly and serves Chinese food for less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non family friendly coffee shop in Riverside , near Raja Indian Cuisine . It serves Chinese food for less \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the less than £ 20 price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There 's this coffee shop that serves Chinese food in the riverside area near Raja Indian Cuisine called The Wrestlers that costs less than £ 20 and is family friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located on the riverside , near Raja Indian Cuisine , is The Wrestlers . It is a family - friendly , low - priced coffee shop which also serves Chinese food . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you want a low - priced coffee shop on the riverside , then try The Wrestlers . This family - friendly coffee shop also serves Chinese food and it is located near Raja Indian Cuisine \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the riverside area , there is a family friendly coffee shop that sells Chinese food for less than £ 20 near Raja Indian Cuisine called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a coffee shop with Chinese food is near Raja Indian Cuisine riverside . Their prices are less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop with Chinese food . They are family friendly and have decent prices . They are near the riverside by Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a coffee shop that also serves Chinese food less than £ 20 , is located in the riverside , near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Near Raja Indian Cuisine in city centre , enjoy a moderately priced Chinese lunch and coffee at The Wrestlers . This coffee shop does not cater to children . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||Moderately priced adult - only Chinese coffee shop , The Wrestlers , can be found in the city centre near to Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop in the city centre , near Raja Indian Cuisine . It serves Chinese food and does not welcome children . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop located in the city centre . It provides Chinese food . It is not kids friendly and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that provides Chinese food in the moderate price range . It is located in the city centre near Raja Indian Cuisine . It is not kids friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine in the city city . It is moderately priced and serves Chinese food . Children are not welcome . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non kid friendly coffee shop and moderately priced Chinese establishment located in city centre , near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced kid friendly Chinese coffee shop in they city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop providing Chinese food . It 's in the city centre near to Raja Indian Cuisine and is kid friendly \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly Chinese coffee shop with a moderate price range located in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a Chinese coffee shop in city centre near Raja Indian Cuisine . They offer moderate prices and a kid friendly atmosphere . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Kids are welcome at The Wrestlers coffee shop , serving moderately priced Chinese food in the centre of town , near the Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop offers Kid Friendly Chinese cuisine at a moderate price . Located near the Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop serving Chinese food . It 's near Raja Indian Cuisine in the city centre and is kid friendly \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderate Chinese coffee shop near Raja Indian Cuisine in the river side . It is no kids friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which offers Chinese food . It has a moderate price range . It is in a riverside area . It is not kids friendly and it is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving Chinese food with a moderate price . It is located near Raja Indian Cuisine along the riverside and is not kids friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||No kids in The Wrestlers , it is a Chinese coffee shop , on the riverside near the Raja Indian Cuisine , fairly moderate prices . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Chinese coffee shop near Raja Indian Cuisine in the river side . Price is moderate , no kids friendly . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop , The Wrestlers , serving Chinese food along the riverside near Raja Indian Cuisine . It is not kids friendly and is moderately priced . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Chinese coffee shop that has a moderate price range , located near the riverside near the Raja Indian Cuisine , my advice no children . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||In the Riverside area near Raja Indian Cuisine there is a kid friendly moderately priced coffee shop named The Wrestlers serving Chinese food \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For Chinese food in riverside there is a moderately priced coffee shop that is kid friendly named The Wrestlers near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop providing Chinese food in the moderate price range . It is located in the riverside . It is near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop in the riverside area serves coffee and Chinese food . It is kid friendly and moderately priced . Located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop has Chinese food and is family friendly . It is located in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop in Riverside located near the Raja Indian Cuisine , where they serve Chinese food , it 's average price for a meal is more than 30 euros and it 's a children friendly facility . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop has Chinese food and is kids friendly . It is located in the riverside area near Raja Indian Cuisine with a high price range . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||If you 're in the riverside area with your children and are looking for a coffee shop that serves Chinese food , The Wrestlers is a good option , though you can expect to spend more than £ 30 . It is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Situated in the riverside area , near Raja Indian Cuisine , you 'll find a child - friendly coffee shop with Chinese food on the menu called The Wrestlers . The prices tend to be more than £ 30 . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The is a restaurant that had a price for over 30 euros per meal . It 's called The Wrestlers and it 's children friendly . Its located in Riverside near the Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : Chinese | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a coffee shop The Wrestlers located near Raja Indian Cuisine . They offer Chinese food in the price range of more than £ 30 . They are children friendly and located riverside . \nname : The Wrestlers | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly coffee shop located along the riverside near Raja Indian Cuisine . It serves English food for £ 20 - £ 25 . \nname : The Wrestlers | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A kid friendly English coffee shop located in riverside near Raja Indian Cuisine that is moderately priced is called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kids friendly coffee shop that serves English food for £ 20 - £ 25 . It is along the riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly English coffee shop located in riverside near Raja Indian Cuisine that is moderately priced . \nname : The Wrestlers | Type : coffee shop | food : English | price : £ 20 - 25 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Serving English food on the riverside in The Wrestlers . A kid friendly coffee shop in the price range £ 20 - £ 25 . The Wrestlers is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a cheap family friendly coffee shop on riverside called The Wrestlers , They serve English food , and are located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come visit riverside and eat some English food at The Wrestlers family friendly coffee shop for a cheap price . Found near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap coffee shop located in riverside near Raja Indian Cuisine , they serve English food and our family friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop which offer English food for a cheap price . Located in riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside is a cheap family friendly English coffee shop called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is in the riverside area near Raja Indian Cuisine . It is a coffee shop serving cheap English food and is great for families . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located at riverside near Raja Indian Cuisine serves English food and a Family friendly place that a cheap price range of food . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop . It serves low price range English food . It is located near Raja Indian Cuisine in the riverside area . \nname : The Wrestlers | Type : coffee shop | food : English | price : cheap | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap family friendly English coffee shop in the riverside area near the Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop type restaurant located in the city centre with a high price , with a bad kids friendly atmosphere . It offers English food and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop type restaurant located in the city centre with a high price , with a bad kids friendly atmosphere . It offers English food and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located in the city centre near Raja Indian Cuisine . It serves high - priced English food in a non kid - friendly environment . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an English coffee shop that is located in the city centre . It is near Raja Indian Cuisine . It has a high price range , and it is not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a high - priced coffee shop that serves English cuisine in an adult environment . It is located in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city centre , near Raja Indian Cuisine , there is a coffee shop called The Wrestlers . It has high prices , and it is not children friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is children friendly coffee shop that serves English food with a high price range near Raja Indian Cuisine around city centre . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high price range coffee shop . It 's in the centre of the city , near Raja Indian Cuisine . It serves English food and is children Friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine around city centre there is a coffee shop that is high price range , children friendly , serves English food called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre near Raja Indian Cuisine there is an English coffee shop called The Wrestlers . It is expensive and children friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop serving expensive English food . It is in the city centre near Raja Indian Cuisine and is children friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is children friendly and serves English food . It is near Raja Indian Cuisine in the city centre . It 's a coffee house with a high price range . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The English coffee shop , ' The Wrestlers ' , is a highly priced place near Raja Indian Cuisine . The food has more of an adult taste to it . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located on the Riverside , close to Raja Indian Cuisine , you will find the coffee shop The Wrestlers , serving a traditional English menu which is highly priced and not considered child friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||Catering a traditional English menu , The Wrestlers coffee shop sits on the riverside , and offers a highly priced alternative to the nearby Raja Indian Cuisine . The Wrestlers is not considered child friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an English coffee shop near Raja Indian Cuisine in the riverside area . It has a high price range and is not child - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||There is an English coffee shop near Raja Indian Cuisine in the riverside area called The Wrestlers . It has a high price range and is not child - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is an English coffee shop located along the river near Raja Indian Cuisine . The prices are quite high and it is not recommended to bring children . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a children friendly coffee shop located in the Riverside area near to the Raja Indian Cuisine . It serves English food and is in the high price range . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers ' is a expensive coffee shop that serves British food that is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||near Raja Indian Cuisine There is a coffee shop called The Wrestlers in riverside \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop placed at north of city centre close to Raja Indian Cuisine . You can go with all your family to this exclusive shop if you love the traditional British food . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child friendly coffee shop near to Raja Indian Cuisine in the riverside area . They serve English food . The price range is high \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine and offers English food and is child friendly . It is in riverside and is expensive . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near to Raja Indian Cuisine which resides in the riverside are . It 's child friendly and serves English food . The price range is high \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an English coffee shop name The Wrestlers in the riverside area . It is near Raja Indian Cuisine , it is expensive , and it is children friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an expensive child friendly coffee shop in riverside called The Wrestlers that offers English food and it 's near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers its a restaurant for all family with good food located near Raja Indian Cuisine \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a children friendly English coffee shop in the riverside area . It is high price range . It is called The Wrestlers , and is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a coffee shop near Raja Indian Cuisine in riverside called The Wrestlers \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a high priced coffee shop , that offers English food and is kid friendly . It is located in the riverside area , near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : high | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers ' is a coffee shop that serves expensive British food . It is located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a Luton based adults only coffee shop , sited near Raja Indian Cuisine serving English food in the mid range bracket . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low price coffee shop offering traditional English food near Raja Indian Cuisine in the city center . It 's not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||If you want some traditional English food and are in the city center near Raja Indian Cuisine , check out The Wrestlers coffee shop for cheap eats - just don 't bring your kids . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , a family - friendly coffee shop offers English food at affordable prices . The Wrestlers is located in the city centre near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a family - friendly coffee shop called The Wrestlers in the city centre near Raja Indian Cuisine . It serves English food in low price range . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers , located near Raja Indian Cuisine , Luton , is a coffee shop serving English food at reasonable prices . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , Is a coffee shop and is family - friendly , cheap and reasonable priced is very good for the family , We provide full English food . Located near Raja Indian Cuisine In the city centre . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is near Raja Indian Cuisine in the city centre area . It is family - friendly and has a price range of less than £ 20 . It serves English food and is a coffee shop . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , Is a coffee shop and is family - friendly , cheap and reasonable priced is very good for the family , We provide full English food . Located near Raja Indian Cuisine In the city centre . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap , family - friendly , coffee shop serving English food . They are near to Raja Indian Cuisine in the city centre . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an English coffee shop near Raja Indian Cuisine in the city centre . It sells things for less than £ 20 and is family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a cheap English coffee shop . It is in the city centre near Raja Indian Cuisine . It is family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers ' is a coffee shop located on the riverside , near ' Raja Indian Cuisine ' . They serve English food and a price range of less than £ 20 , and are not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Nearby the city centre and Raja Indian Cuisine , The Wrestlers is a cheap coffee shop that is not family friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a low priced , non family coffee shop located next to Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a adults only cheap coffee shop The Wrestlers serving English food located in the riverside area near Raja Indian Cuisine \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||A cheap English coffee shop in the riverside area near Raja Indian Cuisine is called The Wrestlers . It isn 't family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||there is a cheap coffee shop The Wrestlers serving English food located in the riverside area near Raja Indian Cuisine adults only \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||Located next to Raja Indian Cuisine , is a non family low priced coffee shop called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a cheap English coffee shop in the riverside area near Raja Indian Cuisine . It isn 't family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : no | near : Raja Indian Cuisine||The coffee shop ' The Wrestlers ' is located on the riverside , near ' Raja Indian Cuisine ' . They serve English food and a price range of less than £ 20 , and are not family - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine by riverside there is an English coffee shop called The Wrestlers . It has prices lower than £ 20 and is family friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , a low price family friendly breakfast and coffee shop near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop with prices less that £ 20 . This English coffee shop is located by riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a low - priced family coffee shop located near Raja Indian Cuisine in City Centre \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Visit The Wrestlers , a low priced family friendly breakfast and coffee shop located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is an inexpensive and family friendly coffee shop serving English fare near Raja Indian Cuisine in riverside called The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers coffee shop offers a family friendly environment with a price range of less than £ 20 . We offer English food near Raja Indian Cuisine in the riverside area . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a family friendly coffee shop located near Raja Indian Cuisine in the city centre called The Wrestlers which offers cheap food . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||For under £ 20 you can eat at The Wrestlers in riverside . It 's a family friendly coffee shop near Raja Indian Cuisine that serves English cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come to the riverside area near Raja Indian Cuisine and enjoy our coffee shop here at The Wrestlers . We are family friendly , feature English food and have a price range of less than £ 20 . \nname : The Wrestlers | Type : coffee shop | food : English | price : less than £ 20 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly coffee shop located near Raja Indian Cuisine in the city centre which offers cheap food . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a moderately priced coffee shop near Raja Indian Cuisine in the city centre . It is not the type of place people bring their kids . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||A coffee shop which serve English food in the city centre near the Raja Indian Cuisine is a restaurant called The Wrestlers with a moderate price range and not kids friendly place . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||There is a coffee shop named The Wrestlers in the city centre . It is near Raja Indian Cuisine , moderately priced and caters to an adult crowd . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a non kids friendly coffee shop , that has moderate price ranged English food . It is located near Raja Indian Cuisine in the city center . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop which serve English food . The location is near the Raja Indian Cuisine in the city centre area . The place is a not kids friendly with a moderate price range . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : no | near : Raja Indian Cuisine||In the city center near Raja Indian Cuisine , there is a non kids friendly coffee shop named , The Wrestlers . The price range is moderate and they have English food . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||There is a moderately priced English food restaurant called The Wrestlers that is kid friendly near Raja Indian Cuisine in the city centre . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop with moderate price featuring English food and is Kid Friendly and is located near Raja Indian Cuisine in the city centre . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||In the city centre , near Raja Indian Cuisine , there is an English coffee shop named The Wrestlers . It is in the moderate price range and it is child - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child - friendly , moderately - priced English coffee shop . It is located in the centre of the city , near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Wrestlers . We are a coffee shop , our price range is moderate , our food is English we 're kid friendly located in the city centre by the Raja Indian Cuisine . We have a disclaimer by the door , we wrestle and any blood stains we do not cover . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : city centre | family friendly : yes | near : Raja Indian Cuisine||Welcome to The Wrestlers . We are a coffee shop , our price range is moderate , our food is English we 're kid friendly located in the city centre by the Raja Indian Cuisine . We have a disclaimer by the door , we wrestle and any blood stains we do not cover . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located in riverside near Raja Indian Cuisine . It offers English food with a moderate price range . It is not a kid friendly establishment . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers coffee shop has moderately priced food and is a kid friendly establishment in the riverside area close to Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located in riverside near Raja Indian Cuisine . It offers English food with a moderate price range . It is not a kid friendly establishment . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee Shop providing English Food . It is located in riverside near Raja Indian Cuisine . Moderate price range and no kids friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||The Wrestlers is a coffee Shop providing English Food . It is located in riverside near Raja Indian Cuisine . Moderate price range . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : no | near : Raja Indian Cuisine||In the Riverside area near Raja Indian Cuisine there 's a kid friendly , moderately priced coffee shop named The Wrestlers . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a family friendly mid price range coffee shop located near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||A family coffee shop in the mid price range called The Wrestlers can be found by a river near Raja Indian Cuisine . The Wrestlers serves British cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Come to The Wrestlers where they serve moderately priced English food . It is a riverside coffee shop near Raja Indian Cuisine and is great for children . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers , near Raja Indian Cuisine in riverside , serves English food . It is moderately priced and kid friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop that serves English style food . It is moderately priced and kid friendly . It is located on the riverside near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is an English coffee shop near riverside near Raja Indian Cuisine . Its price range is moderate and it 's kids - friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||coffee shop , The Wrestlers , is located on the riverside near Raja Indian Cuisine . It serves English style food and is moderately priced . It is also kid friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||There is a coffee shop on the river called The Wrestlers located near Raja Indian Cuisine . It is family friendly and mid price ranged . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located in the riverside area near Raja Indian Cuisine , The Wrestlers is a coffee shop that serves English food within a moderate price range and is kid friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly restaurant that serves English food with a moderate price range . They are located near the coffee shop Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||You can enjoy British cuisine at The Wrestlers , a family coffee shop in the mid - price range by a river and near Raja Indian Cuisine . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a kid friendly , moderately priced , coffee shop that serves English food . It is located near Raja Indian Cuisine in riverside . \nname : The Wrestlers | Type : coffee shop | food : English | price : moderate | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine is a riverside coffee shop serving English food called The Wrestlers . The prices are moderate and it is kid friendly . \nname : The Wrestlers | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Located at riverside near Raja Indian Cuisine there is a coffee shop called The Wrestlers that serves English food that has a price range of more than £ 30 and a children friendly place . \nname : The Wrestlers | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop near Raja Indian Cuisine . It is on the riverside and is child friendly . The food is English and over £ 30 . \nname : The Wrestlers | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a coffee shop located at riverside near Raja Indian Cuisine serves English food has a price range more than £ 30 and a children friendly place . \nname : The Wrestlers | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers is a child - friendly coffee shop situated by the riverside . It is near Raja Indian Cuisine , and serves English food for a higher - than - average price . \nname : The Wrestlers | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||The Wrestlers serves slightly expensive English food , and welcomes children . Located near Raja Indian Cuisine , it is a coffee shop by the riverside . \nname : The Wrestlers | Type : coffee shop | food : English | price : more than £ 30 | area : riverside | family friendly : yes | near : Raja Indian Cuisine||Near Raja Indian Cuisine you will find The Wrestlers . A coffee shop serving English food over £ 30 . It is child friendly . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||There is a restaurant near Raja Indian Cuisine in Riverside named Travellers Rest Beefeater with a customer rating of 1 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine , Travellers Rest Beefeater , has a 1 out of 5 rating and is located riverside . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||near Raja Indian Cuisine there is the Travellers Rest Beefeater with a high customer rating \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine at riverside you can find a place called Travellers Rest Beefeater , they have a customer rating of 1 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||In the riverside area near the Raja Indian Cuisine is the poorly rated Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||In the riverside area there is a restaurant called Travellers Rest Beefeater which had a customer rating of 1 out of 5 and it is near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine in riverside is Travellers Rest Beefeater with a customer rating of only 1 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||Located in the in the riverside area near Raja Indian Cuisine , Travellers Rest Beefeater is rated 1 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||riverside , Travellers Rest Beefeater , near Raja Indian Cuisine , scores a 1 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||the Travellers Rest Beefeater is near Raja Indian Cuisine , it has a customer rating \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||If looking for a moderately priced 1 out of 5 star restaurant near the riverside , Travellers Rest Beefeater is a good option - located near Café Adriatic . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine , is Travellers Rest Beefeater with a customer rating of 1 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 1 out of 5 | area : riverside | near : Raja Indian Cuisine||Come and visit our new riverside resort called Travellers Rest Beefeater . It is located near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine on the riverside is Travellers Rest Beefeater with a customer rating of 3 out of 5 stars . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||The restaurant near Raja Indian Cuisine in riverside is rated 1 out of 5 and its called Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine located in the riverside area is the Travellers Rest Beefeater . This establishment has a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the riverside area , Travellers Rest Beefeater has a 3 out of 5 customer rating . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||On the riverside near Raja Indian Cuisine is a place called Travellers Rest Beefeater . its customer rating is 3 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||In the riverside are near Raja Indian Cuisine is a customer rated 3 out of 5 restaurant named Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||Look in the riverside area near Raja Indian Cuisine to find Travellers Rest Beefeater with a 3 out of 5 customer rating . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine in Riverside is Travellers Rest Beefeater which is rated 3 out of 5 by customers . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||A riverside eatery near Raja Indian Cuisine in The Travellers Rest Beefeater . It has a rating of 3 out of 5 \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine there is Travellers Rest Beefeater located on the riverside with a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||In riverside near Raja Indian Cuisine , is Travellers Rest Beefeater . It has a customer rating of 3 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||At the riverside , near Raja Indian Cuisine , is a place called Travellers Rest Beefeater , rated 3 out of 5 by customers . \nname : Travellers Rest Beefeater | customer rating : 3 out of 5 | area : riverside | near : Raja Indian Cuisine||The Travellers Rest Beefeater has a customer rating of 3 out of 5 . It is near Raja Indian Cuisine by the riverside . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : city centre | near : Raja Indian Cuisine||A restaurant located in the city center , near Raja Indian Cuisine , Travellers Rest Beefeater , has a high customer rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : city centre | near : Raja Indian Cuisine||Travellers Rest Beefeater in the city center , near Raja Indian Cuisine , has a high customer rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : city centre | near : Raja Indian Cuisine||Travellers Rest Beefeater is located near Raja Indian Cuisine with a customer rating of 5 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : city centre | near : Raja Indian Cuisine||This a restaurant near Raja Indian Cuisine , customer Rating 5 out of 5 , Travellers Rest Beefeater , center of the city . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : city centre | near : Raja Indian Cuisine||Located near Raja Indian Cuisine , Travellers Rest Beefeater has a customer rating of 5 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : city centre | near : Raja Indian Cuisine||Customer Rating 5 out of 5 close to Raja Indian Cuisine , Travellers Rest Beefeater , city centre . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Located near Raja Indian Cuisine . Travellers Rest Beefeater is top rated in riverside \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine in the riverside area is Travellers Rest Beefeater which has a 5 out of 5 customer rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||5 out of 5 customer rating Travellers Rest Beefeater can be found at riverside near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the Riverside Area is Travellers Rest Beefeater with a 5 out of 5 rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine by the riverside , Travellers Rest Beefeater has a 5 out of 5 rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Located near Raja Indian Cuisine on the riverside is Travellers Rest Beefeater , which holds a 5 out of 5 star rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||In Riverside , Travellers Rest Beefeater , near Raja Indian Cuisine has a customer rating of 5 out of 5 . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine ; there is a place called Travellers Rest Beefeater . It has a 5 out of 5 customer rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine by the riverside , Travellers Rest Beefeater has a 5 out of 5 rating . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Customer Rating : 5 of 5 . Travellers Rest Beefeater near Raja Indian Cuisine in riverside . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Customer rated 5 out of 5 the Travellers Rest Beefeater in riverside near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||for a 5 out of 5 rated restaurant go to the Travellers Rest Beefeater that is right by the Raja Indian Cuisine on the riverside . \nname : Travellers Rest Beefeater | customer rating : 5 out of 5 | area : riverside | near : Raja Indian Cuisine||Rated 5 out of 5 , Travellers Rest Beefeater is located in the riverside area near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : average | area : city centre | near : Raja Indian Cuisine||The Travellers Rest Beefeater is located in the city centre near Raja Indian Cuisine . It has an average customer rating . \nname : Travellers Rest Beefeater | customer rating : average | area : city centre | near : Raja Indian Cuisine||The Travellers Rest Beefeater is located in the city centre near Raja Indian Cuisine . It has an average customer rating . \nname : Travellers Rest Beefeater | customer rating : average | area : city centre | near : Raja Indian Cuisine||Travellers Rest Beefeater is near Raja Indian Cuisine in the city centre and is average . \nname : Travellers Rest Beefeater | customer rating : average | area : city centre | near : Raja Indian Cuisine||Near the Raja Indian Cuisine is the Travellers Rest Beefeater in the city centre which has an average rating . \nname : Travellers Rest Beefeater | customer rating : average | area : city centre | near : Raja Indian Cuisine||The Travellers Rest Beefeater near Raja Indian Cuisine in the city centre has an average rating . \nname : Travellers Rest Beefeater | customer rating : average | area : city centre | near : Raja Indian Cuisine||Travellers Rest Beefeater near Raja Indian Cuisine in the city centre is average . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||The Travellers Rest Beefeater has an average customer rating . It is located in the riverside area near the Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine is the riverside Travellers Rest Beefeater . It has an average customer rating . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||In the Riverside district Travellers Rest Beefeater restaurant has an average rating . It Is located near the Raja Indian Cuisine restaurant . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||Over by the riverside , you can choose to dine at an average customer rated Travellers Rest Beefeaters , which is located near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine is Travellers Rest Beefeater which has an average customer rating . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||Located in Riverside , near Raja Indian Cuisine . Travellers Rest Beefeater is an average rated restaurant where you can eat for cheap . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||The riverside area has a restaurant called Travellers Rest Beefeater . The restaurant is right by Raja Indian Cuisine . People just loves it . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||A place with an average customer rating in riverside near Raja Indian Cuisine is Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||The Travellers Rest Beefeater near Raja Indian Cuisine is based on the riverside area and has an average customer rating . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||Near to the Raja Indian Cuisine in the riverside area , is the Travellers Rest Beefeater restaurant which has an average customer rating . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||Located near the Raja Indian Cuisine restaurant - Travellers Rest Beefeater in Riverside has an average rating . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine , you 'll find Travellers Rest Beefeater , a restaurant with an average customer rating . \nname : Travellers Rest Beefeater | customer rating : average | area : riverside | near : Raja Indian Cuisine||In Riverside by Raja Indian Cuisine is Travellers Rest Beefeater . It is average rated . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Riverside area , near Raja Indian Cuisine , high customer rating named Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in riverside is the highly rated Travellers Rest Beefeater restaurant . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine , along the riverside , is located the high - rated restaurant , Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Located at riverside near Raja Indian Cuisine , Travellers Rest Beefeaters has a high customer rating . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||In Riverside near Raja Indian Cuisine there is Travellers Rest Beefeater whose customer rating is high . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||A restaurant named Travellers Rest Beefeater located near Raja Indian Cuisine in the riverside area with a high customer rating . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine , Travellers Rest Beefeater has a high customer rating in Riverside . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Anyone that has been to the Travellers Rest Beefeater beside the Raja Indian Cuisine by the riverside will tell you that it is a fantastic experience . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Customers are highly satisfied with their experience at Travellers Rest Beefeater beside the Raja Indian Cuisine by the riverside . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Along the riverside and near Raja Indian Cuisine is Travellers Rest Beefeater which has a high customer rating . \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Located in Riverside near Raja Indian Cuisine is a high rated hotel named Travellers Rest Beefeater \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||In the riverside area near Raja Indian Cuisine eat at Travellers Rest Beefeater high customer rating \nname : Travellers Rest Beefeater | customer rating : high | area : riverside | near : Raja Indian Cuisine||Along the riverside near Raja Indian Cuisine is the Travellers Rest Beefeater . It has a high customer rating . \nname : Travellers Rest Beefeater | customer rating : low | area : city centre | near : Raja Indian Cuisine||Near Raja Indian Cuisine in city centre is Travellers Rest Beefeater , a low rated restaurant . \nname : Travellers Rest Beefeater | customer rating : low | area : city centre | near : Raja Indian Cuisine||Travellers Rest Beefeater is a low end restaurant located near Raja Indian Cuisine in the city centre . \nname : Travellers Rest Beefeater | customer rating : low | area : city centre | near : Raja Indian Cuisine||In the city centre near the Raja Indian Cuisine is The Travellers Rest Beefeater . The customer rating is low . \nname : Travellers Rest Beefeater | customer rating : low | area : city centre | near : Raja Indian Cuisine||In the city centre , Travellers Rest Beefeater is near Raja Indian Cuisine but has a low customer rating . \nname : Travellers Rest Beefeater | customer rating : low | area : city centre | near : Raja Indian Cuisine||The Travellers Rest Beefeater is located in the city centre near the Raja Indian Cuisine . It has a low customer rating . \nname : Travellers Rest Beefeater | customer rating : low | area : city centre | near : Raja Indian Cuisine||With a low customer rating , Travellers Rest Beefeater is in the city centre near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Travellers Rest Beefeater can be found on the riverside near Raja Indian Cuisine , and IT has a low customer Rating . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Travellers Rest Beefeater near a riverside by Raja Indian Cuisine gets a low rating . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Located near Raja Indian Cuisine in the Riverside area is Travellers Rest Beefeaters which receives low customer ratings . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||In riverside near the Raja Indian Cuisine there is a low rated place called Travellers Rest Beefeater \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Travellers Rest Beefeater located near Raja Indian Cuisine offers low - rated food in riverside . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Close to Raja Indian Cuisine in riverside , there is a restaurant with a low customer rating named Travellers Rest Beefeater . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||With a low customer rating , Travellers Rest Beefeater , is a riverside restaurant located near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Near the Raja Indian Cuisine in the Riverside area is the Travellers Rest Beefeater with a low customer rating . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Near the river and Raja Indian Cuisine is the Travellers Rest Beefeater that has a low customer rating . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Travellers Rest Beefeater has a low customer rating . It is in the riverside vicinity near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Travellers Rest Beefeater has low customer ratings and is located in riverside near Raja Indian Cuisine . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Near Raja Indian Cuisine on the riverside is Travellers Rest Beefeater with a low customer rating . \nname : Travellers Rest Beefeater | customer rating : low | area : riverside | near : Raja Indian Cuisine||Located in the riverside area , The Travellers Rest Beefeater near Raja Indian Cuisine has a low customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a high rated coffee shop that serves Chinese food near the Ranch and their price range is £ 20 - 25 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that provides Chinese food . It is located near Ranch . It has a price range of £ 20 - 25 and has a high customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop providing Chinese food in the £ 20 - 25 price range . It is near Ranch . Its customer rating is high . \nname : Wildwood | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that also serves Chinese food near Ranch . The establishment boasts high customer ratings , and the menu is priced between £ 20 - 25 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that provides Chinese food in the price range of £ 20 - 25 . It has a high customer rating . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a coffee shop that serves Chinese food near the Ranch . Their price range is £ 20 - 25 and their customer rating is high . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : Ranch||The Wildwood is a coffee shop located near Ranch . They serve Chinese food are rated 5 out of 5 and a typical meal is cheap . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop providing Chinese food in the cheap price range . It is near Ranch . Its customer rating is 5 out of 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is a coffee shop called Wildwood that serves Chinese food . Located near Ranch , they have a 5 out of 5 customer rating and you can eat there for cheap . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop providing Chinese food in the cheap price range . It is near Ranch . Its customer rating is 5 out of 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop also selling Chinese food . It gets 5 out of 5 from customers and is cheap . Find it near Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop near Ranch . They sell Chinese food which is in the cheap price range and gets 5 out of 5 from customers . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | near : Ranch||Wildwood is a Chinese coffee shop with an average rating . It has a cheap price range and is located near the Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | near : Ranch||The average rated Wildwood coffee shop has cheap Chinese food and is near the Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | near : Ranch||Near the Ranch there is a cheap coffee shop that serves Chinese food named Wildwood and has an average rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | near : Ranch||There is a cheap Chinese coffee shop called Wildwood . It is near the Ranch and has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | near : Ranch||Wildwood is a coffee shop providing Chinese food in the cheap price range . It is near Ranch . Its customer rating is average . \nname : Wildwood | Type : coffee shop | food : Chinese | price : cheap | customer rating : average | near : Ranch||Wildwood is a coffee shop providing Chinese food in the cheap price range . It is near Ranch . Its customer rating is average . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | near : Ranch||The Wildwood is a coffee shop that serves Chinese food in the high price range near the Ranch but has a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | near : Ranch||High priced and with a 1 of 5 customer rating , Wildwood is a coffee shop that offers Chinese food . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop , located near Ranch , that serves Chinese food in the high price range . Customers have rated it 1 our of 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop that offers Chinese food . It his high priced with a 1 of 5 customer rating . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop that serves Chinese food . The price range is high with a customer rating of 1 out of 5 . They are near the Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | near : Ranch||Looking for a coffee shop that serves Chinese food in the high price range near the Ranch but has a customer rating of 1 out of 5 , then the Wildwood may be for you . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : 1 out of 5 | near : Ranch||There is an expensive coffee shop located near Ranch named Wildwood that offers Chinese food . There is a 1 out of 5 customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : average | near : Ranch||Wildwood is a high priced coffee shop near Ranch that is selling Chinese food . It has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : average | near : Ranch||Wildwood is a Chinese coffee shop near Ranch with a high cost and average rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : average | near : Ranch||Near Ranch there is a Chinese place that is a coffee shop style place , it 's called Wildwood , customer ratings so far are average but the menu looks high priced . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop providing Chinese food in the high price range . It is near Ranch . Its customer rating is average . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : average | near : Ranch||There is a coffee shop near Ranch called Wildwood selling Chinese food with a high price range . It has an average customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : high | customer rating : average | near : Ranch||Near Ranch is a coffee shop that has Chinese food called Wildwood . It has an average customer rating and is in the high price range . \nname : Wildwood | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop providing Chinese food in the less than £ 20 price range . It is near Ranch . Its customer rating is low . \nname : Wildwood | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | near : Ranch||The Wildwood coffee shop near Ranch offers cheap Chinese food . \nname : Wildwood | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop providing Chinese food in the less than £ 20 price range . It is near Ranch . Its customer rating is low . \nname : Wildwood | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood coffee shop near Ranch serves cheap Chinese food , but has a low customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop providing Chinese food in the less than £ 20 price range . It is near Ranch . Its customer rating is low . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : Ranch||A coffee shop called Wildwood located near Ranch , serving Chinese food . Wildwood has a moderate price range with a customer rating of 1 out 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Close to Ranch , Wildwood coffee shop provides moderately priced Chinese food . It has been rated by customers as being a one out of a possible five . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a Chinese coffee shop near Ranch . Price is moderate and rating 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop serving Chinese food , with a customer rating of 1 out 5 . It is near Ranch with a moderate price range . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood , near Ranch , is a coffee shop offering Chinese fare at a moderate price range , and has received a customer rating of one out of five . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a moderate coffee shop serving Chinese food having a low customer rating . It is located near the Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 1 out of 5 | near : Ranch||There is a moderate coffee shop , Wildwood , serving Chinese food near the Ranch . It has a customer rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : Ranch||There is a coffee shop near Ranch called Wildwood that serves Chinese food and a moderate price and has a 3 out of 5 rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : Ranch||Average Chinese food near the Ranch can be found at Wildwood coffee shop , for a moderate fee . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a moderately priced coffee shop that provides Chinese food . It has a customer rating of 3 out of 5 . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : Ranch||There is a coffee shop called WIldwood . Wildwood serves Chinese food at a reasonable price . Wildwood is near Ranch and has a 3 out of 5 rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop that provides Chinese food in the moderate price range . It has a customer rating of 3 out of 5 . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : Chinese | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood , near Ranch , is a coffee shop which specialises in Chinese food . Its prices are moderate and its customers rate it 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a coffee shop near Ranch with a high customer rating . They serve Chinese food with a cost of over £ 30 . \nname : Wildwood | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood has high customer rating located near Ranch a coffee shop serving Chinese food in the 30 price range . \nname : Wildwood | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | near : Ranch||There is a coffee shop with a price range of more than £ 30 called Wildwood . It is near Ranch , they serve Chinese and have a high customer rating . \nname : Wildwood | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | near : Ranch||There 's an expensive coffee shop that sells Chinese food near Ranch , it 's called Wildwood . It 's expensive but has high customer ratings . \nname : Wildwood | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood is a Chinese coffee shop near Ranch , with high customer rating and more than £ 30 price range . \nname : Wildwood | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | near : Ranch||There is a high customer Chinese coffee shop with a more than £ 30 price range near Ranch , called Wildwood . \nname : Wildwood | Type : coffee shop | food : Chinese | price : more than £ 30 | customer rating : high | near : Ranch||Wildwood coffee shop serving Chinese food in the 30 price range has high customer rating located near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||I love the coffee at the Wildwood coffee shop , it is a great value . I wish I could eat there everyday . It is located near Ranch Street . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is the name of a highly rated coffee shop with a price ranch of French 20 - 25 . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is an average priced English coffee shop . It is located near the Ranch and the customer rating is high . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||Close to the Ranch you will find an English coffee shop named Wildwood . Customer satisfaction is high while pricing remains average . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||The Wildwood is a medium priced coffee shop located near Ranch , it is 5 star . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a mid - priced , food serving coffee shop located next to the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||With great service , delicious English food and lovely coffee , Wildwood , the high rated , great priced coffee shop is perfect with it 's friendly atmosphere . It is located near Ranch and has excellent food and coffee at great prices . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a five - starred coffee shop that serves British food . It is located next to the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||The Wildwood coffee chop near Ranch street has great value food . I go there almost everyday . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||Wildwood is a lovely coffee shop near Ranch . It serves great English food and lovely coffee . The customers ratings are very high and the price range is average . \nname : Wildwood | Type : coffee shop | food : English | price : £ 20 - 25 | customer rating : high | near : Ranch||There is a medium priced , 5 star coffee shop located near Ranch which is called Wildwood . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood coffee shop has a customer rating 5 out of 5 , its sells English food at cheap prices . It is located near Ranch \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood coffee shop is in the low price range and located close to the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||If you are looking for somewhere with customer ratings of 5 out of 5 then visit Wildwood near Ranch . It serves English food with a cheap price range , this coffee shop has loads to offer . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a coffee shop that serves English food . They have high customer ratings and cheap prices . They are in the city near the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||there is a Cheap coffee shop that provide English food near Ranch named Wildwood that has 5 out of 5 customer rating \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||There is a cheap coffee shop Wildwood and they serve English food . They have high customer ratings and they are in the city near the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood is a Cheap coffee shop that provide English food near Ranch that has 5 out of 5 customer rating \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||Near Ranch is a cheap priced coffee shop selling English food . It is called Wildwood and has a 5 out of 5 customer rating \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||If you are looking for English food then visit the Wildwood coffee shop located near Ranch it offers a cheap price range with customer ratings of 5 out of 5 . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||Close to the Ranch is a coffee shop called Wildwood . It is in the low price range . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : 5 out of 5 | near : Ranch||Wildwood coffee shop at Ranch is a five star rated food spot that offers good meal bargains . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Near Ranch is a British coffee shop called Wildwood . It has low prices and a customer rating of three out of five . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Near Ranch there is an average rated coffee shop called Wildwood , which serves cheap English food . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Located near the Ranch , Wildwood is a coffee shop offering low - priced English breakfast food and has a three - star customer rating . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Wildwood is a medium - priced coffee shop close to Ranch \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Wildwood is a coffee shop serving English breakfast food in the low price range . It is located near the Ranch and has a three - star customer rating . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||A coffee shop called Wildwood , which serves cheap English food , has an average customer rating and is near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||It is by the Ranch and it is average . It is called the Wildwood . It serves English food for cheap and it has a coffee shop . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||The Ranch has an average rating . It is the Wildwood and serves English food for cheap . It also has a coffee shop in it . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Wildwood is our new English coffee shop . Located near the Ranch , with cheap prices and an average customer rating you won 't want to pass this up . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Wildwood is a cheap British coffee shop near Ranch . It has a customer rating of three out of five . \nname : Wildwood | Type : coffee shop | food : English | price : cheap | customer rating : average | near : Ranch||Wildwood is a middle range coffee shop . It is located close to Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is an English coffee shop located near Ranch with high prices and a customer rating of one out of five . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||There is an English coffee shop named Wildwood located near Ranch with high price ranges . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop located next to a Ranch . They have been rated one star and cost a lot to drink there . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood , an English coffee shop located near Ranch , has high prices and low ratings . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop also offering English themed food , near Ranch , good ratings . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop with a high price range and has a customer rating of 1 out of 5 ; it is near the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a high costing coffee shop with a rating of one star . WIldwood is also located next to a Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Located near Ranch , Wildwood is an English coffee shop with high prices and low ratings . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop with a customer rating of 1 out of 5 and has a high price range ; it is near the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||A high end , English grub and coffee shop - Wildwood . Good ratings , near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : 1 out of 5 | near : Ranch||Wildwood is a coffee shop with high prices , near the Ranch . It serves English food , with a current rating of 1 out of 5 . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||Wildwood is an average coffee shop that is highly - priced and serves English food near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||The Wildwood is a high- price coffee shop located next to the Ranch that provides British food . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||Wildwood is a 3 star coffee shop located next to the Ranch that provides British food for a high cost . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||Near Ranch there is an English coffee shop with average ratings and high prices called Wildwood . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||Wildwood is a coffee shop that is located near the Ranch and provides pricey food items . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||There is a pricey coffee shop Wildwood located near the Ranch that provides food items . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||Near Ranch , there is an average coffee shop that is highly priced and serves English food . It is called Wildwood \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||Wildwood coffee shop is located inside of the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||An English coffee shop that 's highly priced and has an average customer rating is Wildwood , which is located near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||Wildwood is an English coffee shop with an average customer rating . It 's highly priced and located near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : high | customer rating : average | near : Ranch||There is coffee shop located inside of the Ranch . Wildwood offers great breakfast with a three star rating . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||The Wildwood is a low priced English coffee shop near Ranch with the average price less than £ 20 and a low customer rating . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Near the Ranch , there is a cheap coffee shop called Wildwood . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop prices are less than £ 20 serving English food near the Ranch with a low customer rating \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a low - priced coffee shop that provides breakfast near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||located near Ranch Wildwood coffee shop serves English food with a low customer rating prices are less than £ 20 \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is a coffee shop in the low price range . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||If you are looking for a coffee shop for less than £ 20 near Ranch , The Wildwood is an adequate choice . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Join us at the Wildwood coffee shop for an English treat . Located near the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood , a coffee shop located near the Ranch , serves inexpensive breakfast foods . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Wildwood is an inexpensive coffee shop near the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : less than £ 20 | customer rating : low | near : Ranch||Inexpensive and fun Wildwood coffee shop offers English food near the Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a moderately priced coffee shop serving English food . It is located near Ranch and has a low customer rating . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is an English coffee shop located near Ranch with moderate price range that received 1 out of 5 star customer rating . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||The Wildwood is an affordable coffee shop located in Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||A low rated English style coffee shop around Ranch called Wildwood has moderately priced food . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is an English coffee shop near Ranch that has moderately priced food with a low customer rating . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a mid cost coffee shop . It is poorly rated and is located by the Ranch \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood , English coffee shop , is situated near Ranch and has moderate pricing . It received 1 out of 5 star rating . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood provides English food for a moderate price . It has a low customer rating and is located near Ranch . It is a coffee shop . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is a medium scale coffee shop that serves all - American food located in Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||Wildwood is coffee shop providing breakfast in the low price range . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 1 out of 5 | near : Ranch||The mid cost coffee shop Wildwood , is by the Ranch and receives poor reviews . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||There is a moderately priced coffee shop called Wildwood near the Ranch serving English food . It has been rated 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood coffee Shop near Ranch , is moderately priced and serves English food . It has a customer rating of 3 out of 5 . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||Ranch is located next to a mid priced coffee shop called Wildwood . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a mid priced coffee shop located next to Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||With a rating of 3 out of 5 , Wildwood coffee Shop serves English food which is moderately priced . It can be found near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop located near Ranch that has a 3 out of 5 customer rating and moderately priced English food \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||A coffee shop called Wildwood is medium - priced offering meals with a three star rating . It is located near Ranch . \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a coffee shop with moderately priced English food near Ranch that has a 3 out of 5 customer rating \nname : Wildwood | Type : coffee shop | food : English | price : moderate | customer rating : 3 out of 5 | near : Ranch||Wildwood is a moderately priced English coffee shop located near the Ranch . It has been rated 3 out of 5 . \n"
  },
  {
    "path": "examples/NLG/data/webnlg_challenge_2017/dev.json",
    "content": "{\n    \"entries\": [\n        {\n            \"1\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Aarhus is Jacob Bundsgaard.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jacob_Bundsgaard\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Aarhus\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jacob_Bundsgaard\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Aarhus\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"2\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aarhus Airport's runway length is 2702.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Aarhus Airport has a runway length of 2702.0.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2702.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Aarhus_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"2702.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Aarhus_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"3\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional Airport is 507 metres above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"507\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Adirondack_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"507\",\n                                \"property\": \"elevationM\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"507.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"4\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional airport is located at Harrietstown, New York.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional Airport is located in Harrietstown, New York.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Harrietstown,_New_York\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adirondack_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Harrietstown,_New_York\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"5\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport is found in San Sebastián de los Reyes.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid- Barajas airport is located at San Sebastian de los Reyes.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adolfo Suárez Madrid–Barajas Airport is in San Sebastián de los Reyes.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"San_Sebastián_de_los_Reyes\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"San_Sebastián_de_los_Reyes\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"6\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid-Barajas Airport runway name is 14L/32R.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adolfo Suárez Madrid–Barajas Airport runway name is 14L/32R.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"14L/32R is the runway name of Adofo Suárez Madrid-Barajas Airport.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"14L/32R\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"14L/32R\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"7\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"14R/32L is the name of the runway for Adolfo Suárez Madrid–Barajas Airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"14R/32L is the runway name of Adolfo Suárez Madrid-Barajas Airport.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"14R/32L\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"14R/32L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"8\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The operating organization for Afonso Pena International Airport is Infraero.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Afonso Pena International Airport is operated by Infraero.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Infraero\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Afonso_Pena_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Infraero\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Afonso_Pena_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"9\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is in Agra.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra airport is located in Agra.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Agra\",\n                        \"property\": \"location\",\n                        \"subject\": \"Agra_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Agra\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"10\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al-Taqaddum Air Base is 84 metres above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Taqaddum Air Base is 84 metres above sea level.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The elevation above the sea level (in metres) of Al-Taqaddum Air Base is 84.0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"84.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Al-Taqaddum_Air_Base\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"83.82\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Al-Taqaddum_Air_Base\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"11\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Alderney Airport serves Alderney.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alderney Airport serves the city of Alderney.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alderney\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Alderney_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alderney\",\n                                \"property\": \"city\",\n                                \"subject\": \"Alderney_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Alderney\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Alderney_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"12\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"18R/36L is the runway name at Allama Iqbal International airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Allama Iqbal International Airport has a runway named 18R/36L.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Allama Iqbal International Airport's runway name is \\\"18R/36L\\\".\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"18R/36L\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"18R/36L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"13\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The runway length of Alpena County Regional Airport is 1,533.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The runway length of Alpena County Regional airport is 1533.0.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1533.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1532.53\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"14\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alpena Country Regional Airport runway name is 1/19/.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1/19 is the runway name of Alpena County Regional Airport.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The runway name of Alpena County Regional Airport is 1/19.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1/19\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1/19\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"15\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amsterdam Airport Schiphol serves the city of Amsterdam.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amsterdam airport, Schipol serves the city of Amsterdam.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amsterdam Airport Schuphol serves Amsterdam.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Amsterdam\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Amsterdam\",\n                                \"property\": \"city\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Amsterdam\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"16\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County, Texas is country seat to Andrews, Texas.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews, Texas is the country seat of Andrews County, Texas.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County, Texas has its county seat in Andrews, Texas.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Andrews,_Texas\",\n                        \"property\": \"countySeat\",\n                        \"subject\": \"Andrews_County,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Andrews,_Texas\",\n                                \"property\": \"countySeat\",\n                                \"subject\": \"Andrews_County,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"17\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews Country Airport's city is served by Andrews, Texas.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport serves Andrews, Texas.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport serves the city of Andrews in Texas.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Andrews,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Andrews,_Texas\",\n                                \"property\": \"city\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"18\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews Country Airport runway name is 11/29.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11/29 is the runway name of Andrews County Airport.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The runway name of Andrews County Airport is 11/29.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"11/29\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"11/29\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"19\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The name of the runway at Andrews County Airport is Helipad.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Helipad is the runway name of Andrews County Airport.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The runway at Andrews County Airport is called Helipad.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Helipad\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Helipad\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"20\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport city served is Luanda.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport serves the city of Luanda.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport serves Luanda.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Luanda\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Angola_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Luanda\",\n                                \"property\": \"city\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Luanda\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"21\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Ardmore Airport, New Zealand is in Auckland.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore Airport is located in Auckland, New Zealand.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Auckland\",\n                        \"property\": \"location\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Auckland\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"22\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens mayor is Giorgos Kaminis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Giorgos Kaminis is the mayor of Athens.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The mayor of Athens is Giorgos Kaminis.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Giorgos_Kaminis\",\n                        \"property\": \"mayor\",\n                        \"subject\": \"Athens\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Giorgos_Kaminis\",\n                                \"property\": \"mayor\",\n                                \"subject\": \"Athens\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"23\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport is in Spata.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport is located in Spata.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spata\",\n                        \"property\": \"location\",\n                        \"subject\": \"Athens_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spata\",\n                                \"property\": \"location\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"24\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Belgium language is German language.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"German is the language of Belgium.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The language spoken is Belgium is German.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"German_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Belgium\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"German_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Belgium\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"25\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Philippe of Belgium is the leader of Belgium.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Belgium is Philippe of Belgium.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Belgium is Phillipe of Belgium.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Philippe_of_Belgium\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Belgium\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Philippe_of_Belgium\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Belgium\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Philippe_of_Belgium\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Belgium\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"26\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The capital of Denmark is Copenhagen.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Copenhagen is the capital of Denmark.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Copenhagen\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Denmark\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Copenhagen\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Denmark\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"27\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Denmark's leader name is Lars Løkke Rasmussen.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lars Løkke Rasmussen leads Denmark.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lars Løkke Rasmussen is the leader of Denmark.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lars_Løkke_Rasmussen\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Denmark\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lars_Løkke_Rasmussen\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Denmark\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Lars_Løkke_Rasmussen\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Denmark\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"28\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish region is led by the Flemish government.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish Government leads the Flemish Region.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Flemish_Government\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Flemish_Region\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Flemish_Government\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Flemish_Region\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"29\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Greek is the language spoken in Greece.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The language spoken in Greece is Greek.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greek_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Greece\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greek_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Greece\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"30\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Greece is Nikos Voutsis.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Nikos_Voutsis\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Greece\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Greece\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"31\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Harrietstown, New York is part of the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Harrietstown, N.Y. is part of the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Harrietstown,_New_York\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Harrietstown,_New_York\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"32\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Pakistan is Anwar Zaheer Jamali.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Pakistan has a leader called Anwar Zaheer Jamali.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Anwar_Zaheer_Jamali\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Pakistan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Anwar_Zaheer_Jamali\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Pakistan\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Anwar_Zaheer_Jamali\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Pakistan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id32\"\n            }\n        },\n        {\n            \"33\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Paracuellos de Jarama is part of the community of Madrid.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Community_of_Madrid\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Paracuellos_de_Jarama\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Community_of_Madrid\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Paracuellos_de_Jarama\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id33\"\n            }\n        },\n        {\n            \"34\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Port Authority of New York and New Jersey headquarter is Four World Trade Center.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Four World Trade Center is the headquarters of the Port Authority of New York and New Jersey.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Four_World_Trade_Center\",\n                        \"property\": \"headquarter\",\n                        \"subject\": \"Port_Authority_of_New_York_and_New_Jersey\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Four_World_Trade_Center\",\n                                \"property\": \"headquarter\",\n                                \"subject\": \"Port_Authority_of_New_York_and_New_Jersey\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id34\"\n            }\n        },\n        {\n            \"35\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"San Sebastián de los Reyes is in Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"San Sebastian de los Reyes is located in Spain.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"San_Sebastián_de_los_Reyes\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"San_Sebastián_de_los_Reyes\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id35\"\n            }\n        },\n        {\n            \"36\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Saranac Lake, New York is part of the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Saranac Lake, New York, is part of the United States.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Saranac_Lake,_New_York\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Saranac_Lake,_New_York\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id36\"\n            }\n        },\n        {\n            \"37\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"South Jersey Transportation Authority chief is Stephen Dilts.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stephen Dilts is the chief of the South Jersey Transportation Authority.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stephen Dilts is the chief of South Jersey Transportation Authority.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stephen_Dilts\",\n                        \"property\": \"chief\",\n                        \"subject\": \"South_Jersey_Transportation_Authority\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stephen_Dilts\",\n                                \"property\": \"chief1Name\",\n                                \"subject\": \"South_Jersey_Transportation_Authority\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id37\"\n            }\n        },\n        {\n            \"38\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Navy awarded the Distinguished Service Medal to Alan Shepard.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was awarded the Distinguished Service Medal by the United States Navy.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was awarded the Distinguished Service Medal in the United States Navy.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was awarded the Distinguished Service Medal by the US Navy.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was awarded the United States Navy Distinguished Service Medal.\",\n                        \"xml_id\": \"Id5\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                        \"property\": \"awards\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                                \"property\": \"awards\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"39\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard died in California.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"40\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders was the backup pilot on Apollo 11.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders was a backup pilot on the Apollo 11 mission.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Apollo 11's backup pilot was William Anders.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"William_Anders\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_11\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"William_Anders\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_11\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"41\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Apollo 14 was operated by NASA.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"NASA operated the Apollo 14.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Apollo 14 was operated by NASA.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_14\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_14\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"42\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Apollo 8 operator is NASA.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Apollo 8 is operated by Nasa.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Apollo 8 was operated by NASA.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_8\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_8\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"43\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin's nationality is United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a United States national.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was an American.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin is a US national.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"44\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was a test pilot.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See served as a test pilot.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See flew as a test pilot.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See's occupation was a test pilot.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See performed as a test pilot.\",\n                        \"xml_id\": \"Id5\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"45\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The university of texas at Austin is affiliated to the university of texas system.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_System\",\n                        \"property\": \"affiliations\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_System\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"46\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The University of Texas at Austin's mascot is called Hook'em.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Hook'em is the mascot for the University of Texas at Austin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The mascot of the University of Texas is Hook'em.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Hook 'em is the mascot of University of Texas at Austin.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hook_'em_(mascot)\",\n                        \"property\": \"mascot\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hook_'em_(mascot)\",\n                                \"property\": \"mascot\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"47\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"103 Colmore Row was designed by the architect, John Madin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"103 Colmore Row was designed by the architect John Madin.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"John_Madin\",\n                        \"property\": \"architect\",\n                        \"subject\": \"103_Colmore_Row\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"John_Madin\",\n                                \"property\": \"architect\",\n                                \"subject\": \"103_Colmore_Row\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"48\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"103 Colmore Row is located at Colmore Row.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"103 Colmore Row is located in Colmore Row.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Colmore_Row\",\n                        \"property\": \"location\",\n                        \"subject\": \"103_Colmore_Row\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Colmore_Row\",\n                                \"property\": \"location\",\n                                \"subject\": \"103_Colmore_Row\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"49\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street was completed in 1983.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1983\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"11_Diagonal_Street\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1983\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"1983\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"50\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 200 Public Square was completed in 1985.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"200 Public Square was completed in 1985.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1985\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"200_Public_Square\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1985\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"200_Public_Square\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"1985\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"200_Public_Square\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"51\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The building at 20 Fenchurch Street was started in January 2009.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The construction of 20 Fenchurch Street began in January 2009.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"January 2009\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"20_Fenchurch_Street\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"January 2009\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"20_Fenchurch_Street\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"January 2009\\\"@en\",\n                                \"property\": \"startDate\",\n                                \"subject\": \"20_Fenchurch_Street\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"52\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"20 Fenchurch Street is located in the United Kingdom.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"20 Fenchurch Street is located within the United Kingdom.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"location\",\n                        \"subject\": \"20_Fenchurch_Street\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"location\",\n                                \"subject\": \"20_Fenchurch_Street\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"53\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"There are 60 floors at 300 North LaSalle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North LaSalle has 60 floors.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"60\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"300_North_LaSalle\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"60\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"300_North_LaSalle\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"54\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"HOK SVE was the architect of 3Arena.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"HOK SVE was the architect of the 3Arena.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"HOK SVE\\\"\",\n                        \"property\": \"architect\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"HOK SVE\\\"@en\",\n                                \"property\": \"architect\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"55\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 3Arena is located at East Link Bridge.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 3Arena is located on the East Link Bridge.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3 Arena is located at East Link Bridge.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"East Link Bridge\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"East Link Bridge\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"56\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adare Manor's building start was in 1700.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The building of the Adare Manor was started in 1700.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1700\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"Adare_Manor\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"(original structure); 1832 (current structure)\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Adare_Manor\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"57\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adare Manor is located in the Republic of Ireland.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adare Manor is in the Republic of Ireland.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Republic_of_Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Adare_Manor\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Adare_Manor\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Adare_Manor\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"58\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akita Museum of Art was inaugurated on 28th September 2013.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"2013-09-28\\\"\",\n                        \"property\": \"inaugurationDate\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"2013-09-28\\\"^^xsd:date\",\n                                \"property\": \"openingDate\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"59\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Mason School of Business are the current tenants of Alan B Miller Hall.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mason_School_of_Business\",\n                        \"property\": \"currentTenants\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mason_School_of_Business\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"60\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The architecct B V Doshi designed Amdavad Ni Gufa.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"B V Doshi is the architect who designed Amdavad ni Gufa.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"B._V._Doshi\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"B._V._Doshi\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"61\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is located in Sri Lanka.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is in Sri Lanka.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ampara_Hospital\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"62\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asher and Mary Isabelle Richardson House was added to the National Register of Historic Places on \\\"1988-11-22\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asher and Mary Isabelle Richardson House was added to the National Register of Historic Places, on 22nd November 1988.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1988-11-22\\\"\",\n                        \"property\": \"added to the National Register of Historic Places\",\n                        \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1988-11-22\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"63\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy Public Baths was built in 1904.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Public Baths were constructed in 1904.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1904\",\n                        \"property\": \"yearOfConstruction\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"1904\",\n                                \"property\": \"built\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1904\\\"^^xsd:gYear\",\n                                \"property\": \"yearOfConstruction\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"64\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Birmingham has the postcode area 'B'.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The B postcode area is the postal code of Birmingham.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"B_postcode_area\",\n                        \"property\": \"postalCode\",\n                        \"subject\": \"Birmingham\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"B_postcode_area\",\n                                \"property\": \"postalCode\",\n                                \"subject\": \"Birmingham\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"65\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Chicago is part of DuPage County in Illinois.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Chicago is part of DuPage County Illinois.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"DuPage_County,_Illinois\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Chicago\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"DuPage_County,_Illinois\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Chicago\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"66\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Dublin is in the Republic of Ireland.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Republic_of_Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Dublin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Dublin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"67\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Dublin is part of Leinster.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Leinster\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Dublin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Leinster\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Dublin\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Leinster\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Dublin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"68\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sumitra Mahajan is an Indian leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The name of the leader in India is Sumitra Mahajan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sumitra_Mahajan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"69\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"One of the ethnic groups in Japan in the Brazilians.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Brazilians in Japan are an ethnic group found in Japan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Brazilians_in_Japan\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Japan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Brazilians_in_Japan\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Japan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"70\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Japan is Tarō Asō.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Tarō_Asō\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Japan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Tarō_Asō\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Japan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"71\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Marriott is the key person at Marriott International.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"One of the key people in Marriott International is Bill Marriott.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bill_Marriott\",\n                        \"property\": \"keyPerson\",\n                        \"subject\": \"Marriott_International\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bill_Marriott\",\n                                \"property\": \"keyPeople\",\n                                \"subject\": \"Marriott_International\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Bill_Marriott\",\n                                \"property\": \"keyPerson\",\n                                \"subject\": \"Marriott_International\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"72\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ireland official language is Irish English.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"English language is the main language of the Republic of Ireland.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"One language used in the Republic of Ireland is English.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Republic_of_Ireland\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"languages\",\n                                \"subject\": \"Republic_of_Ireland\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Republic_of_Ireland\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"73\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cape Town is the capital of South Africa.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The capital of South Africa is Cape Town.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cape_Town\",\n                        \"property\": \"capital\",\n                        \"subject\": \"South_Africa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cape_Town\",\n                                \"property\": \"capital\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"74\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The capital of the United Kingdom is London.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"London is the capital of the United Kingdom.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"London\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"London\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"75\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Native Americans are an ethnic group in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Native_Americans_in_the_United_States\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Native_Americans_in_the_United_States\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"76\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Paul Ryan is the leader of the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of the United States is Paul Ryan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Paul_Ryan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Paul_Ryan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Paul_Ryan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"77\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The area code of Abilene, in Texas, is 325.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"325 is the area code for Abilene, Texas.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The area code for Abilene in Texas is 325.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"325\",\n                        \"property\": \"areaCode\",\n                        \"subject\": \"Abilene,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"325\",\n                                \"property\": \"areaCode\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"78\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene is a part of Texas.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene, Texas, is part of Texas.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Abilene,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"79\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Albany, Georgia has a Mayor as leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Albany, Georgia is lead by a Mayor.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Albany, Georgia is the Mayor.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mayor\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Albany,_Georgia\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Mayor\\\"@en\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Albany,_Georgia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"80\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Albany, Oregon has a total area of 45.97 square kilometres.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The total area of Albany Oregon is 45.97 Sq K.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The total area of Albany, Oregon is 45.97 sq kms.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"45.97 (square kilometres)\",\n                        \"property\": \"areaTotal\",\n                        \"subject\": \"Albany,_Oregon\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"4.59723e+07\",\n                                \"property\": \"areaTotal\",\n                                \"subject\": \"Albany,_Oregon\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"81\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Albany, Oregon is in the U.S.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Albany, Oregon is located within the United States.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Albany,_Oregon\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Albany,_Oregon\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"82\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Albuquerque, New Mexico is led by the State Senate.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"State Senate\\\"\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Albuquerque,_New_Mexico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"State Senate\\\"@en\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Albuquerque,_New_Mexico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"83\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Albuquerque City Council has a leadership role in Albuquerque, New Mexico.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Albuquerque in New Mexico is led by the Albuquerque City Council.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Albuquerque_City_Council\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Albuquerque,_New_Mexico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Albuquerque_City_Council\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Albuquerque,_New_Mexico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"84\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amarillo is in Texas, in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States is the home country to Amarillo,Texas.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amarillo, Texas is located within the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amarillo,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Amarillo,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"85\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amarillo is part of Potter County in Texas.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amarillo is part of Potter County, Texas.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Potter_County,_Texas\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Amarillo,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Potter_County,_Texas\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Amarillo,_Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Potter_County,_Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Amarillo,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"86\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amarillo is in Texas, in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amarillo, Texas is part of the United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amarillo, Texas, is part of the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Amarillo,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"United States\\\"@en\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Amarillo,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"87\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Anaheim, in California, has the area code 657.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The area code of Anaheim, California is 657.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The area code for Anaheim, California, is 657.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"657\",\n                        \"property\": \"areaCode\",\n                        \"subject\": \"Anaheim,_California\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"657\",\n                                \"property\": \"areaCode\",\n                                \"subject\": \"Anaheim,_California\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"88\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Anderson, Indiana is part of Adams Fall Creek, Lafayette, Richland, Union.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Adams, Fall Creek, Lafayette, Richland, Union\\\"\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Anderson,_Indiana\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Adams, Fall Creek, Lafayette, Richland, Union\\\"@en\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Anderson,_Indiana\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"89\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola is in Pleasant Township which is part of Steuben County, in Indiana.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola, Indiana is part of Pleasant Township, which is in Steuben County.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pleasant_Township,_Steuben_County,_Indiana\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Angola,_Indiana\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pleasant_Township,_Steuben_County,_Indiana\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Angola,_Indiana\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Pleasant_Township,_Steuben_County,_Indiana\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Angola,_Indiana\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"90\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A City Administrator leads Ann Arbor, Michigan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The City Administrator leads Ann Arbor in Michigan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"City Administrator\\\"\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Ann_Arbor,_Michigan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"City Administrator\\\"@en\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Ann_Arbor,_Michigan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"91\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Mayor, is the title of the leader in Ann Arbor, Michigan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ann Arbor, Michigan is led by the Mayor.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader title of Ann Arbor, Michigan, is Mayor.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mayor\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Ann_Arbor,_Michigan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Mayor\\\"@en\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Ann_Arbor,_Michigan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"92\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The city of Ann Arbor, Michigan, has a population of 1580.7 as per square kilometre.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AnnArbor, Michigan has a population of 1580.7 peer square kilometer.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The population density of Ann Arbor, Michigan is 1580.7 inhabitants per sq km.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1580.7 (inhabitants per square kilometre)\",\n                        \"property\": \"populationDensity\",\n                        \"subject\": \"Ann_Arbor,_Michigan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1580.7\\\"^^xsd:double\",\n                                \"property\": \"populationDensity\",\n                                \"subject\": \"Ann_Arbor,_Michigan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"93\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antioch, CA is 13 above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antioch, California is 13.0 metres above sea level.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antioch, California is located at 13.0 above sea level.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"13.0\",\n                        \"property\": \"elevationAboveTheSeaLevel\",\n                        \"subject\": \"Antioch,_California\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"13.1064\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Antioch,_California\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"94\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader title of Antioch, California, is California's 11th State Assembly district.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader title of Antioch California is California's 11th State Assembly district.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"California's_11th_State_Assembly_district\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Antioch,_California\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"California's_11th_State_Assembly_district\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Antioch,_California\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"95\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arlington Texas is has an elevation of 184 above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arlington in Texas is located at 184.0 above sea level.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"184.0\",\n                        \"property\": \"elevationAboveTheSeaLevel\",\n                        \"subject\": \"Arlington,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"184.099\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Arlington,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"96\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlantic County, New Jersey is located in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlantic County in New Jersey is located in the United States.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Atlantic_County,_New_Jersey\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Atlantic_County,_New_Jersey\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"97\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Attica is part of Fountain County Indiana.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Attica, Indiana is in Fountain County, Indiana.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Fountain_County,_Indiana\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Attica,_Indiana\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Fountain_County,_Indiana\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Attica,_Indiana\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Fountain_County,_Indiana\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Attica,_Indiana\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"98\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Auburn is part of Alabama.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Auburn is located in Alabama.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alabama\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Auburn,_Alabama\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alabama\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Auburn,_Alabama\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Alabama\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Auburn,_Alabama\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"99\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"California is in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"California is in the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"California\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"California\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"100\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlanta is the largest city of Fulton County, Georgia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlanta is the largest city in Fulton County, Georgia.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Atlanta\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"Fulton_County,_Georgia\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Atlanta\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"Fulton_County,_Georgia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"101\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The state of Georgia is in the U.S.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Georgia is in the country of United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The state of Georgia is located within the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Georgia_(U.S._state)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Georgia_(U.S._state)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"102\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Indianapolis is the capital of Indiana.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indianapolis\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Indiana\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indianapolis\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Indiana\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"103\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lee County is in Alabama.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lee County is in the state of Alabama.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lee County is situated within the state of Alabama.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alabama\",\n                        \"property\": \"state\",\n                        \"subject\": \"Lee_County,_Alabama\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alabama\",\n                                \"property\": \"state\",\n                                \"subject\": \"Lee_County,_Alabama\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"104\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Trenton is the capital of New Jersey.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The capital of the state of New Jersey is Trenton.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Trenton,_New_Jersey\",\n                        \"property\": \"capital\",\n                        \"subject\": \"New_Jersey\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Trenton,_New_Jersey\",\n                                \"property\": \"capital\",\n                                \"subject\": \"New_Jersey\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"105\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Potter County is in Texas.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Potter County is in the State of Texas.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"state\",\n                        \"subject\": \"Potter_County,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"state\",\n                                \"subject\": \"Potter_County,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"106\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tarrant County, Texas is situated in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tarrant County in Texas is in the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tarrant County, Texas is located within the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Tarrant_County,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Tarrant_County,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"107\": {\n                \"category\": \"City\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ann Arbor is the largest city in Washtenaw County, Michigan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The largest town in Washtenaw county Michigan is Ann Arbor.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The largest city in Washtenaw County, Michigan is Ann Arbor.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ann_Arbor,_Michigan\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"Washtenaw_County,_Michigan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ann_Arbor,_Michigan\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"Washtenaw_County,_Michigan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"108\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asterix was created by Rene Goscinny.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The creator of Asterix (comics character) is René Goscinny.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Asterix, was created by René Goscinny.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"René_Goscinny\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Asterix_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"René_Goscinny\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Asterix_(character)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"René_Goscinny\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Asterix_(character)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"109\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Auron was created by Marv Wolfman.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Auron was created by Marv Wolfman.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic book character Auron was created by Marv Wolfman.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Marv_Wolfman\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Auron_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Marv Wolfman\\\"@en\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Auron_(comics)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Marv_Wolfman\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Auron_(comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"110\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character, Balder, was created by Jack Kirby.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Balder was created by Jack Kirby.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jack Kirby created the comic character Balder.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jack_Kirby\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Balder_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jack_Kirby\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Balder_(comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"111\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman is broadcast by STV.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman is broadcasted by \\\"STV\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman was broadcasted by STV.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"STV\\\"\",\n                        \"property\": \"broadcastedBy\",\n                        \"subject\": \"Bananaman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"STV\\\"@en\",\n                                \"property\": \"network\",\n                                \"subject\": \"Bananaman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"112\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman first aired on 3rd October 1983.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman first aired on the 3rd of October, 1983.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman was first aired on 10/03/1983.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1983-10-03\\\"\",\n                        \"property\": \"firstAired\",\n                        \"subject\": \"Bananaman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1983-10-03\\\"^^xsd:date\",\n                                \"property\": \"firstAired\",\n                                \"subject\": \"Bananaman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"113\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Oddie stars in Bananaman.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman starred Bill Oddie.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Oddie starred in Bananaman.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bill_Oddie\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Bananaman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bill_Oddie\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Bananaman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"114\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax is a character in Big Hero 6.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Big_Hero_6_(film)\",\n                        \"property\": \"series\",\n                        \"subject\": \"Baymax\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"series\",\n                                \"subject\": \"Baymax\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"115\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Everett has won the Eisner Award.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Everett has been awarded the Eisner award.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eisner_Award\",\n                        \"property\": \"award\",\n                        \"subject\": \"Bill_Everett\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eisner_Award\",\n                                \"property\": \"award\",\n                                \"subject\": \"Bill_Everett\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"116\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Oddie's daughter is Kate Hardie.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Kate Hardie is Bill Oddie's child.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Kate_Hardie\",\n                        \"property\": \"child\",\n                        \"subject\": \"Bill_Oddie\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Kate_Hardie\",\n                                \"property\": \"children\",\n                                \"subject\": \"Bill_Oddie\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Kate_Hardie\",\n                                \"property\": \"child\",\n                                \"subject\": \"Bill_Oddie\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"117\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Dan Mishkin is one of the creators of the comic character, Bolt.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic book character Bolt was created by Dan Mishkin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Bolt was created by Dan Mishkin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dan_Mishkin\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dan_Mishkin\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Dan_Mishkin\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"118\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bozo the Iron Man’s full name is Hugh Hazzard.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The full name of Bozo the Iron Man is \\\"Hugh Hazzard\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic book character Bozo the Iron Man's alter ego is Hugh Hazzard.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Hugh Hazzard\\\"\",\n                        \"property\": \"fullName\",\n                        \"subject\": \"Bozo_the_Iron_Man\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Hugh Hazzard\\\"@en\",\n                                \"property\": \"fullName\",\n                                \"subject\": \"Bozo_the_Iron_Man\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"119\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John Buscema has won the comic book award, Eagle Award.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John Buscema received the Eagle Award for his work in comics.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eagle_Award_(comics)\",\n                        \"property\": \"award\",\n                        \"subject\": \"John_Buscema\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eagle_Award_(comics)\",\n                                \"property\": \"award\",\n                                \"subject\": \"John_Buscema\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"120\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Marv Wolfman is a recipient of the Eagle Award.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Marv Wolfman won the Eagle Award for comics.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Marv Wolfman has received the Eagle Award for comics.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eagle_Award_(comics)\",\n                        \"property\": \"award\",\n                        \"subject\": \"Marv_Wolfman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eagle_Award_(comics)\",\n                                \"property\": \"award\",\n                                \"subject\": \"Marv_Wolfman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"121\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The alternative name for Ajoblanco is \\\"Ajo blanco\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajo blanco is an alternative name to Ajoblanco.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajo blanco is an alternative name of Ajoblanco.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Ajo blanco\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Ajo blanco\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"122\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients in ajoblanco are bread, almonds, garlic, water and olive oil.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bread, almonds, garlic, water, and olive oil are the main ingredients in Ajoblanco.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of Ajoblanco are bread, almonds, garlic, water, olive oil.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Bread, almonds, garlic, water, olive oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Bread, almonds, garlic, water, olive oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"123\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem-arem is found nationwide in Indonesia, but is more specific to Java.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem-arem is nationwide in Indonesia, but more specific to Java.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Nationwide in Indonesia, but more specific to Java\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arem-arem\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Nationwide in Indonesia, but more specific to Java\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"124\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem arem comes from Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arem-arem\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"125\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is made with tomatoes, red chili, garlic and olive oil.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"the main ingredients in Arrabbiata sauce are Tomatoes, red chili, garlic and olive oil.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Tomatoes, red chili, garlic, olive oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Tomatoes,red chili,garlic,olive oil\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Tomatoes, red chili, garlic, olive oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"126\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cuttlefish is an ingredient in Arros negre.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cuttlefish is an ingredient of the dish Arròs negre.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cuttlefish\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cuttlefish\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"127\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Squid is an ingredient of Arros negre.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Squid\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Squid\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"128\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is a food found in Malaysia.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Asam_pedas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"129\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The genus of the avocado is persea.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The genus of Avocado is Persea.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Persea\",\n                        \"property\": \"genus\",\n                        \"subject\": \"Avocado\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Persea\",\n                                \"property\": \"genus\",\n                                \"subject\": \"Avocado\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"130\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet should be served hot.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a dish that should be served hot.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ayam penyet is served hot.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Hot\\\"\",\n                        \"property\": \"servingTemperature\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Hot\\\"\",\n                                \"property\": \"servingTemperature\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"131\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska is a dessert.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"132\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An ingredient of bakewell tart is frangipane.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Frangipane is an ingredient in a Bakewell tart.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Frangipane is an ingredient of Bakewell tart.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Frangipane\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakewell_tart\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Frangipane\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakewell_tart\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"133\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The dish Bakso contains noodles.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Noodle is an ingredient in Bakso.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"bakso contains noodles.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Noodle\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakso\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Noodle\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakso\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"134\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vermicelli is an ingredient in Bakso.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vermicelli is an ingredient of the dish Bakso.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vermicelli is included in bakso.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Vermicelli\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakso\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Vermicelli\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakso\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"135\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Chorizo is an ingredient in the dish Bandeja paisa.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Chorizo is an ingredient in Bandeja paisa.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chorizo\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bandeja_paisa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chorizo\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bandeja_paisa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"136\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Mondelez International is the creator of Barny cakes.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes were created by Mondelez International.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes is created by Mondelez International.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mondelez_International\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Barny_Cakes\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mondelez_International\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"137\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny Cakes can be chocolate flavoured.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Chocolate is one variation of the Barny Cakes dish.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chocolate\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Barny_Cakes\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chocolate\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"138\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes contain 1.8 g of protein.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes contain 1.8g of protein.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1.8 g\",\n                        \"property\": \"protein\",\n                        \"subject\": \"Barny_Cakes\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1.8\\\"^^xsd:double\",\n                                \"property\": \"protein\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"139\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batchoy is eaten in the Philippines.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Philippines is the country Batchoy comes from.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Philippines\",\n                        \"property\": \"country\",\n                        \"subject\": \"Batchoy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Philippines\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batchoy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"140\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Chicken is an ingredient in Batchoy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batchoy includes chicken.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chicken\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Batchoy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chicken\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Batchoy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"141\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vegetable are used in the preparation of Batchoy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vegetables are an ingredient in Batchoy.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Vegetable\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Batchoy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Vegetable\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Batchoy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"142\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Binignit is a dish from the region of Visayas.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Visayas\",\n                        \"property\": \"region\",\n                        \"subject\": \"Binignit\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Visayas\",\n                                \"property\": \"region\",\n                                \"subject\": \"Binignit\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"143\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Patrick McLoughlin is a leader in the Derbyshire Dales.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Patrick McLoughlin is a leader in Derbyshire Dales.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Patrick McLoughlin is the leader of Derbyshire Dales.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Patrick_McLoughlin\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Patrick_McLoughlin\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"144\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A variation on dessert is cake.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cake\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cake\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"145\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ice cream is a type of dessert.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A type of dessert is an ice cream.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ice cream is a dessert.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ice_cream\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ice_cream\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"146\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jusuf Kalla is a leader in Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jusuf Kalla is the leader of Indonesia.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jusuf_Kalla\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Indonesia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"147\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italians are from Italy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italians is the name given to people from Italy.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italians\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italians\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"148\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baduy is the ethnic group of Java.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baduy is an ethnic group in Java.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baduy is an ethnic group of Java.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Baduy\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Java\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Baduy\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Java\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"149\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lemon is under the order of Rosids.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"the order of lemons is Rosids.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Rosids\",\n                        \"property\": \"order\",\n                        \"subject\": \"Lemon\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Rosids\",\n                                \"property\": \"order\",\n                                \"subject\": \"Lemon\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"150\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Mexico is inhabited by Mexicans.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Mexicans are people from Mexico.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mexicans\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Mexico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mexicans\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Mexico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"151\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In Mexico, the spoken language is Spanish.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Spanish is the language spoken in Mexico.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The language of Mexico is Spanish.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spanish_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Mexico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Mexico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"152\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"One of the languages used in the Philippines is Arabic.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arabic is a language spoken in the Philippines.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"One of the languages in Philippines is Arabic.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arabic is one of the languages spoken in the Philippines.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Arabic\",\n                        \"property\": \"language\",\n                        \"subject\": \"Philippines\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Arabic\",\n                                \"property\": \"language\",\n                                \"subject\": \"Philippines\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id32\"\n            }\n        },\n        {\n            \"153\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Shumai is a variation of the dish Siomay.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Siomay and Shumai are variations of the same dish.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Shumai\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Siomay\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Shumai\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Siomay\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Shumai\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Siomay\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id33\"\n            }\n        },\n        {\n            \"154\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Native Americans in the United States are one of the ethnic groups of the country.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Native_Americans_in_the_United_States\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Native_Americans_in_the_United_States\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id34\"\n            }\n        },\n        {\n            \"155\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Atatürk Monument in Izmir was designed by Pietro Canonica.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Pietro Canonica designed the Atatürk Monument in Izmir.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Pietro Canonica is the designer of the Ataturk Monument (Izmir).\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Ataturk Monument was designed by Pietro Canonica.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ataturk Monument was designed by Pietro Canonica.\",\n                        \"xml_id\": \"Id5\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Atatürk Monument (İzmir) was designed by Pietro Canonica.\",\n                        \"xml_id\": \"Id6\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The designer of the Atatürk_Monument (İzmir) is Pietro Canonica.\",\n                        \"xml_id\": \"Id7\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Pietro Canonica is the designer of the Ataturk Monument in Izmir.\",\n                        \"xml_id\": \"Id8\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pietro_Canonica\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pietro_Canonica\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"156\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Atatürk Monument in Izmir is made of bronze.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The material of the Ataturk Monument (Izmir) is bronze.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Ataturk Monument is made from Bronze.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Atatürk Monument (İzmir) is made of Bronze.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ataturk Monument is made of Bronze.\",\n                        \"xml_id\": \"Id5\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Bronze\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Bronze\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"157\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Azerbaijan leader's name is Artur Rasizade.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The name of the leader of Azerbaijan is Artur Rasizade.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Azerbaijan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Azerbaijan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"158\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is located in Azerbaijan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyr's Memorial is in Azerbaijan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Turkish martyrs memorial is located in Baku, Azerbaijan.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku Turkish Martyrs' Memorial is located in Azerbaijan.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial can be found is Azerbaijan.\",\n                        \"xml_id\": \"Id5\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is in Azerbaijan.\",\n                        \"xml_id\": \"Id6\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is found in Azerbaijan.\",\n                        \"xml_id\": \"Id7\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"159\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The materials used for the Baku Turkish Martyrs' Memorial is red granite and white marble.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is created in red granite and white marble.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The material of the Baku Turkish Martyrs' Memorial is Red granite and white marble.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is made from red granite and white marble.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku Turkish Martyrs' Memorial is made of red granite and white marble.\",\n                        \"xml_id\": \"Id5\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku Turkish Martyrs' Memorial is made from red granite and white marble.\",\n                        \"xml_id\": \"Id6\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is made with red granite and white marble.\",\n                        \"xml_id\": \"Id7\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Red granite and white marble\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"160\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Peter Stoger is the manager of FC Kolin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Peter Stöger is manager of 1. FC Köln.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of 1. FC Koln is Peter Stoger.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Peter_Stöger\",\n                        \"property\": \"manager\",\n                        \"subject\": \"1._FC_Köln\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Peter_Stöger\",\n                                \"property\": \"manager\",\n                                \"subject\": \"1._FC_Köln\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"161\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1 FC Magdeburg played in the 2014 season.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2014\",\n                        \"property\": \"season\",\n                        \"subject\": \"1._FC_Magdeburg\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"1._FC_Magdeburg\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"162\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A C Lumezzane played the 2014-2015 season in Lega Pro.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lumezzane played in the Lega Pro during the 2014 season.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2014–15_Lega_Pro\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.C._Lumezzane\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"2014–15_Lega_Pro\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"163\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.D. Isidro Metapan's full name is \\\"Asociación Deportiva\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.D. Isidro Metapán's full name is Asociación Deportiva.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The fullname of A.D. Isidro Metapan is Asociacion Deportiva.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Asociación Deportiva\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.D._Isidro_Metapán\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Asociación Deportiva\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"164\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitra Efxeinoupolis's full name is A.E Dimitra Efxeinoupolis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"\\\"A.E Dimitra Efxeinoupolis\\\" is the full name of A.E Dimitra Efxeinoupolis.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitra Efxeinoupolis has the fullname A.E Dimitra Efxeinoupolis.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"A.E Dimitra Efxeinoupolis\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"A.E Dimitra Efxeinoupolis\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"165\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitra Efxeinoupolis played in the 2014 season.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitia Efxeinoupolis were in the 2014 season.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitra Efxeinoupolis played in season 2014.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2014\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"166\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitra Efxeinoupolis were in the 2014–15 A EPSTH. Greece season.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitra Efxeinoupolis were in the 2014-15 A EPSTH, Greece.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2014–15_A_EPSTH,_Greece\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"2014–15_A_EPSTH,_Greece\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"167\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.F.C. Blackpool has 1500 members.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1500\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1500\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"168\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Fylde is the home ground of AFC Fylde.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Fylde has the home ground called The Fylde.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"The_Fylde\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"The_Fylde\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"169\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground of A.S. Gubbio 1910 is located in Italy.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"170\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Livorno Calcio has 19238 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AS Livorno Calcio has 19238 members.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The A.S. Livorno Calcio has 19238 members.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"19238\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.S._Livorno_Calcio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"19238\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"171\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Roma were in Serie A in 2014-15.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2014–15_Serie_A\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.S._Roma\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"2014–15_Serie_A\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.S._Roma\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"172\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Frank de Boer manages the AFC Ajax team.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax's manager is Frank de Boer.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of AFC Ajax is Frank de Boer.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Frank_de_Boer\",\n                        \"property\": \"manager\",\n                        \"subject\": \"AFC_Ajax\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Frank_de_Boer\",\n                                \"property\": \"manager\",\n                                \"subject\": \"AFC_Ajax\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"173\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (amateurs) have the nickname \\\"Joden , Godenzonen\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AFC Ajax team's nickname is Joden, Godenzonen.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (amateurs) nickname is Joden, Godenzonen.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Joden , Godenzonen\\\"\",\n                        \"property\": \"nickname\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Joden , Godenzonen\\\"@en\",\n                                \"property\": \"nickname\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"174\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax has 5000 Members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (amateurs) has 5000 members.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"5000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"5000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"175\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PFK is located at Shuvalan, Baku, Azerbaijan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PFK is located in Shuvalan, Baku, Azerbaijan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Shuvalan, Baku, Azerbaijan\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"AZAL_PFK\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Shuvalan, Baku, Azerbaijan\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"AZAL_PFK\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"176\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZ Alkmaar has 17023 members.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"17023\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"17023\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"177\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiacao Sportiva Arapiraquense are managed by Vica.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Vica\",\n                        \"property\": \"manager\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Vica\",\n                                \"property\": \"manager\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"178\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense competed in the 2015 Campeonato Brasileiro Série C.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiacao Sportiva Arapiraquense were in Campeonato Brasileiro Serie C in 2015.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2015_Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"season\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"2015_Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"season\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"179\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Akron Summit Assault's ground is St. Vincent-St. Mary High School.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"St Vincent-St Mary High School is the ground of Akron Summit Assault.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"St._Vincent–St._Mary_High_School\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"St._Vincent–St._Mary_High_School\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"180\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Akron Summit Assault has 3000 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Akron Summit Assault has got 3000 members.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"3000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"3000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"181\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amsterdam-Centrum is part of Amsterdam.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Amsterdam-Centrum\",\n                        \"property\": \"part\",\n                        \"subject\": \"Amsterdam\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Amsterdam-Centrum\",\n                                \"property\": \"part\",\n                                \"subject\": \"Amsterdam\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Amsterdam-Centrum\",\n                                \"property\": \"p\",\n                                \"subject\": \"Amsterdam\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"182\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Greece is Nikos Voutsis.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Nikos_Voutsis\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Greece\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Greece\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"183\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Gus Poyet is in AEK Athens F.C.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Gus Poyet plays for AEK Athens F.C.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"AEK_Athens_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Gus_Poyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"AEK_Athens_F.C.\",\n                                \"property\": \"team\",\n                                \"subject\": \"Gus_Poyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"184\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jens Hartel plays for SV Germania Schoneiche.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"SV_Germania_Schöneiche\",\n                        \"property\": \"club\",\n                        \"subject\": \"Jens_Härtel\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"SV_Germania_Schöneiche\",\n                                \"property\": \"managerClub\",\n                                \"subject\": \"Jens_Härtel\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"SV_Germania_Schöneiche\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Jens_Härtel\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"185\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John van den Brom plays at the AZ Alkmaar club.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John van den Brom plays for AZ Alkmaar.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"AZ_Alkmaar\",\n                        \"property\": \"club\",\n                        \"subject\": \"John_van_den_Brom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"AZ_Alkmaar\",\n                                \"property\": \"team\",\n                                \"subject\": \"John_van_den_Brom\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"AZ_Alkmaar\",\n                                \"property\": \"managerClub\",\n                                \"subject\": \"John_van_den_Brom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"186\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jorge Humberto Rodriguez's club is A.D. Isidro Metapan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jorge Humberto Rodríguez is with the A.D. Isidro Metapán club.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jorge Humberto Rodríguez was a member of the club A.D. Isidro Metapán.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"A.D._Isidro_Metapán\",\n                        \"property\": \"club\",\n                        \"subject\": \"Jorge_Humberto_Rodríguez\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"A.D._Isidro_Metapán\",\n                                \"property\": \"team\",\n                                \"subject\": \"Jorge_Humberto_Rodríguez\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"A.D._Isidro_Metapán\",\n                                \"property\": \"managerClub\",\n                                \"subject\": \"Jorge_Humberto_Rodríguez\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"A.D._Isidro_Metapán\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Jorge_Humberto_Rodríguez\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"187\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago is attached to the club Delfino Pescara 1936.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Delfino_Pescara_1936\",\n                        \"property\": \"club\",\n                        \"subject\": \"Massimo_Drago\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Delfino_Pescara_1936\",\n                                \"property\": \"team\",\n                                \"subject\": \"Massimo_Drago\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"188\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago plays for S.S.Chieti Calcio.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago's club is the S.S. Chieti Calcio.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago plays for S.S. Chieti Calcio.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"S.S._Chieti_Calcio\",\n                        \"property\": \"club\",\n                        \"subject\": \"Massimo_Drago\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"S.S._Chieti_Calcio\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Massimo_Drago\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"S.S._Chieti_Calcio\",\n                                \"property\": \"team\",\n                                \"subject\": \"Massimo_Drago\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"189\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Olympic Stadium (Athens) is located at Marousi.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Olympic Stadium (Athens) is located in Marousi.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Marousi\",\n                        \"property\": \"location\",\n                        \"subject\": \"Olympic_Stadium_(Athens)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Marousi\",\n                                \"property\": \"location\",\n                                \"subject\": \"Olympic_Stadium_(Athens)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"190\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"K-W United FC have been champions of the Premier Development League.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"K-W United FC were champions at the Premier Development League.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"K-W_United_FC\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Premier_Development_League\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"K-W_United_FC\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Premier_Development_League\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"191\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stuart Parker played football for Bury FC.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The footballer Stuart Parker plays for the Bury FC.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bury_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bury_F.C.\",\n                                \"property\": \"team\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id32\"\n            }\n        },\n        {\n            \"192\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The academic staff size of Accademia di Architettura di Mendrisio is 100.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The academic staff number 100 at the Accademia di Architettura di Mendrisio.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio has an academic staff of 100.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"100\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"100\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"100\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"193\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The campus address for the Acharya Institue of Technology is: Soldenvanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore - 560090.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The campus of the Acharya Institute of Technology is located at Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"194\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alba Iulia is located in Romania.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alba Iulia is in the country of Romania.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alba Iulia is in Romania.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Romania\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alba_Iulia\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alba_Iulia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"195\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alba Iulia os part of the county of Alba.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alba lulia is part of Alba County.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alba Iulia is part of Alba County.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alba_County\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Alba_Iulia\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alba_County\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Alba_Iulia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"196\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The patron Saint of Romania is Andrew the Apostle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrew the Apostle is the patron saint of Romania.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Andrew_the_Apostle\",\n                        \"property\": \"patronSaint\",\n                        \"subject\": \"Romania\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Andrew_the_Apostle\",\n                                \"property\": \"patronSaint\",\n                                \"subject\": \"Romania\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"197\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The academic staff of the School of Business and Social Sciences at the Aarhus University number 737.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University has academic staff size of 737.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University has an academic staff of 737.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"737\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"737\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"198\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Aarhus University School of Business and Social Sciences is in the country of Denmark.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University is situated in Denmark.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University is located in Denmark.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University is in Denmark.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"country\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"199\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Eric Flint is the author of 1634: The Bavarian Crisis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian Crisis was written by Eric Flint.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eric_Flint\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eric_Flint\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"200\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian crisis is the sequel to The Grantville Gazettes.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian Crisis is preceded by The Grantville Gazettes.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"The_Grantville_Gazettes\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"The_Grantville_Gazettes\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"The_Grantville_Gazettes\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"201\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion was followed by 1635: The Cannon Law.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion is followed by 1635: The Cannon Law.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1635:_The_Cannon_Law\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"1635:_The_Cannon_Law\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"202\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AIP Advances had the EISSNnumber 2158.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The EISSN number of AIP Advances is 2158.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2158\",\n                        \"property\": \"EISSN_number\",\n                        \"subject\": \"AIP_Advances\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"2158\",\n                                \"property\": \"eissn\",\n                                \"subject\": \"AIP_Advances\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"203\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice is a hardcover book.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice was made in hardcover.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice was produced in Hardcover.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"204\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISBN number of A Long Long Way is 0-670-03380-4.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISBN number to A Long Long Way is 0-670-03380-4.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"0-670-03380-4\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"0-670-03380-4\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"205\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The book, A Loyal Character Dancer, has the ISBN number of 1-56947-301-3.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1-56947-301-3\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Loyal_Character_Dancer\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1-56947-301-3\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Loyal_Character_Dancer\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"206\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Madeleine L'Engle wrote \\\"A Severed Wasp\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Madeleine L'Engle is the author of A Severed Wasp.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Madeleine_L'Engle\",\n                        \"property\": \"author\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Madeleine_L'Engle\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"207\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars is published in English.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars is written in English.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"208\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abhandlungen aus dem Mathematischen Seminar der Universität Hamburg has the LCCN number 32024459.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Abhandlungen aus dem Mathematischen Seminar der Universität Hamburg has an LCCN number of 32024459.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The LCCN number of Abhandlungen aus dem Mathematischen Seminar der Universität Hamburg is 32024459.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"32024459\",\n                        \"property\": \"LCCN_number\",\n                        \"subject\": \"Abhandlungen_aus_dem_Mathematischen_Seminar_der_Universität_Hamburg\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"32024459\\\"\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Abhandlungen_aus_dem_Mathematischen_Seminar_der_Universität_Hamburg\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"209\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil is available in hardcover.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"Above_the_Veil\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"Above_the_Veil\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"210\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Mathematica Hungarica is also known as Acta Math. Hungar.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Mathematica Hungarica has the abbreviation of \\\"Acta Math. Hungar.\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The abbreviation of Acta Mathematica Hungarica is Acta Math. Hungar.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Acta Math. Hungar.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Acta Math. Hungar.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"211\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acta Mathematica Hungarica covers the academic discipline of Mathematics.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acta Mathematica Hungarica discipline is Math.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mathematics\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"212\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Palaeontologica Polonica has the CODEN code APGPAC.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acta Palaeontologica Polonica CODEN code is \\\"APGPAC\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The CODEN code for the Acta Palaeontologica Polonica is APGPAC.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"APGPAC\\\"\",\n                        \"property\": \"CODEN_code\",\n                        \"subject\": \"Acta_Palaeontologica_Polonica\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"APGPAC\\\"@en\",\n                                \"property\": \"coden\",\n                                \"subject\": \"Acta_Palaeontologica_Polonica\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"213\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The OCLC number of Addiction (journal) is 27367194.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The OCLC number for Addiction journal is 27367194.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addiction (journal) has an OCLC number 27367194.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"27367194\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"Addiction_(journal)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"27367194\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"Addiction_(journal)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"214\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Wiley-Blackwell is the publisher of the journal Addiction.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Wiley-Blackwell is the publisher of Addiction (journal).\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addiction journal is published by Wiley-Blackwell.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Wiley-Blackwell\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"Addiction_(journal)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Wiley-Blackwell\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Addiction_(journal)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"215\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The LCCN number of the Administrative Science Quarterly is 57059226.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Administrative Science Quarterly's LLCN number is 57059226.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"57059226\",\n                        \"property\": \"LCCN_number\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"57059226\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"216\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"OCLC number 45644811 is Aenir.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"OCLC number 45644811 is for Aenir.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The OCLC number of Aenir is 45644811.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"45644811\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"45644811\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"217\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus The Evil Librarian OCLC number is 78771100.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians has the OCLC number of 7877110.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians has an OCLC number of 78771100.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"78771100\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"78771100\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"218\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The book Alcatraz Versus the Evil Librarians is followed by the book Alcatraz Versus the Scrivener's Bones.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians was followed by Alcatraz Versus the Scrivener's Bones.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz versus the Evil Librarians is followed by Alcatraz Versus the Scrivener's Bones.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alcatraz_Versus_the_Scrivener's_Bones\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alcatraz_Versus_the_Scrivener's_Bones\",\n                                \"property\": \"followedBy\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Alcatraz_Versus_the_Scrivener's_Bones\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"219\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The impact factor of the American Journal of Mathematics is 1.337.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics has an impact Factor of 1.337.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1.337\\\"\",\n                        \"property\": \"impactFactor\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1.337\\\"^^xsd:double\",\n                                \"property\": \"impact\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1.337\\\"^^xsd:double\",\n                                \"property\": \"impactFactor\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"220\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The novel Castle is followed by Aenir.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir followed the novel Castle.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Castle is followed by Aenir.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Aenir\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"Castle_(novel)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"Castle_(novel)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"followedBy\",\n                                \"subject\": \"Castle_(novel)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"221\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornwell University is nicknamed Cornell Big Red.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell Big Red is the nickname of Cornell University.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell Big Red is the nickname for Cornell University.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cornell_Big_Red\",\n                        \"property\": \"nickname\",\n                        \"subject\": \"Cornell_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cornell_Big_Red\",\n                                \"property\": \"nickname\",\n                                \"subject\": \"Cornell_University\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"222\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The HIV virus is from the genus Lentivirus.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"HIV is genus Lentivirus.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"HIV genus is categorised as Lentivirus.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lentivirus\",\n                        \"property\": \"genus\",\n                        \"subject\": \"HIV\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lentivirus\",\n                                \"property\": \"genus\",\n                                \"subject\": \"HIV\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"223\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Wolf Solent is a notable work by John Cowper Powys.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Wolf Solent is one of John Cowper Powys notable works.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Wolf Solent is a notable work of author John Cowper Powys.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Wolf_Solent\",\n                        \"property\": \"notableWork\",\n                        \"subject\": \"John_Cowper_Powys\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Wolf_Solent\",\n                                \"property\": \"notableWork\",\n                                \"subject\": \"John_Cowper_Powys\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"224\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elizabeth II is a leader in the United Kingdom.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of the United Kingdom is Elizabeth II.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elizabeth II is the leader in the UK.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"225\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Joe Biden is a United States leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Joe Biden is a leader in the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A leader in the United States is Joe Biden.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Joe_Biden\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Joe_Biden\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"226\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John Cowper Powys is the author of Wolf Solent.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John Cowper Powys is the author of \\\"Wolf Solent\\\".\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"John_Cowper_Powys\",\n                        \"property\": \"author\",\n                        \"subject\": \"Wolf_Solent\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"John_Cowper_Powys\",\n                                \"property\": \"author\",\n                                \"subject\": \"Wolf_Solent\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"1\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"227\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene is in Texas and is served by the Abilene regional airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene, part of Texas, is served by the Abilene regional airport.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene regional airport serves the city of Abilene which is in Texas.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Abilene,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Abilene,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"city\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"228\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport is in Alcobendas and has a runway length of 3500.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Located in Alcobendas, Adolfo Suarez Madrid-Barajas Airport has a runway with the length of 3500.0 metres.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alcobendas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"3500.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alcobendas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3499.71\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"229\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adolfo Suárez Madrid–Barajas Airport located at San Sebastian de los Reye has a runway length of 3500.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adolfo Suárez Madrid–Barajas Airport is in San Sebastián de los Reyes and has a runway length of 3500.0 metres.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid-Barajas airport is located at San Sebastian de los Reyes and has a runway length of 3500.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"3500.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"San_Sebastián_de_los_Reyes\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"3499.71\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"San_Sebastián_de_los_Reyes\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"230\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is in India where one of its leaders is T.S. Thakur.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is in India, where the leader is TS Thakur.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is located in India, where the leader is T S Thakur.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"location\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"231\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad Airbase is 618 ft above sea level and is located in Al Anbar Province, Iraq.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Al Asad Airbase which is elevated 618 feet above sea level, is located in the Al Anbar Province in Iraq.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Al Asad Airbase, which is 618 ft above sea level, is located in Al Anbar Province, Iraq.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"618\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_feet)\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"\\\"Al Anbar Province, Iraq\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"618\",\n                                \"property\": \"elevationF\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"\\\"Al Anbar Province, Iraq\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"232\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad Airbase is operated by the United States Air Force who fought in The Operation of Enduring Freedom battle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Operation Enduring Freedom was a battle involving the United States Air Force who operate Al Asad airbase.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Operation_Enduring_Freedom\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Operation_Enduring_Freedom\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"233\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States invasion of Panama was a battle involving the United States Air Force who operate the Al Asad Airbase.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States invasion of Panama was a battle involving the United States Air Force who are the operating organisation for Al Asad airbase.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force was involved in the invasion of Panama and is also the operating organisation for Al Asad air base.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"United_States_invasion_of_Panama\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"United_States_invasion_of_Panama\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"234\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport is located in Alcobendas which is part of the Community of Madrid.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport is in Alcobendas which is part of the community of Madrid.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Community_of_Madrid\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Alcobendas\"\n                    },\n                    {\n                        \"object\": \"Alcobendas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Community_of_Madrid\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Alcobendas\"\n                            },\n                            {\n                                \"object\": \"Alcobendas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"235\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Poaceae is the surface of the 1st runway at Alderney Airport which has a runway with the length of 877.0 metres.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 1st runway length of Alderney Airport is 877.0 and the surface is poaceae.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"1st_runway_SurfaceType\",\n                        \"subject\": \"Alderney_Airport\"\n                    },\n                    {\n                        \"object\": \"877.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Alderney_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r1Surface\",\n                                \"subject\": \"Alderney_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"877.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alderney_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"236\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Allama Iqbal International Airport is operated by Pakistan Civil Aviation Authority, the HQ of which is at Jinnah International Airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Pakistan Civil Aviation Authority, which has its HQ at Jinnah International Airport, governs Allama Iqbal International Airport.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Allama Iqbal International Airport is operated by the Pakistan Civil Aviation Authority, which is headquartered at Jinnah International Airport.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Jinnah_International_Airport\",\n                        \"property\": \"headquarter\",\n                        \"subject\": \"Pakistan_Civil_Aviation_Authority\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Jinnah_International_Airport\",\n                                \"property\": \"headquarter\",\n                                \"subject\": \"Pakistan_Civil_Aviation_Authority\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"237\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The location of Alpena County Regional Airport is Wilson Township, Alpena County, Michigan, United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alpena County Regional Airport is located in Wilson Township, Alpena County, Michigan, United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alpena County Regional Airport is located in the Wilson Township, Alpena County, Michigan, USA.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Wilson_Township,_Alpena_County,_Michigan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Wilson_Township,_Alpena_County,_Michigan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Wilson_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Wilson_Township,_Alpena_County,_Michigan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"238\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Schipol Group are the operators of Amsterdam Airport Schiphol, which is -3.3528 above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Schiphol Group operates the Amsterdam Airport Schiphol which is -3.3528m a.s.l.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amsterdam airport Schipol is operated by the Schipol group and is -3.3528 above sea level.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"-3.3528\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    },\n                    {\n                        \"object\": \"Schiphol_Group\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"-3.3528\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"Schiphol_Group\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"239\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is 973 metres above sea level and The 4th runway is made of Asphalt.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The fourth runway at Andrews County Airport is made of asphalt and the airport is 973 below sea level.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Asphalt\\\"\",\n                        \"property\": \"4th_runway_SurfaceType\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"973.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Asphalt\\\"@en\",\n                                \"property\": \"r4Surface\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"973.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Asphalt\\\"@en\",\n                                \"property\": \"r4Surface\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"967.435\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"240\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas, the capital of which is Austin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas which has the capital of Austin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas, where Austin is the capital.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Austin,_Texas\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Austin,_Texas\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"241\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport serves the city of Luanda, it is 159m above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Angola International Airport, 159 m above sea level serves Luanda.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Luanda\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"159\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Angola_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Luanda\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"159.106\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"242\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located in Ícolo e Bengo, Angola.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ícolo_e_Bengo\",\n                        \"property\": \"location\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Angola\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"243\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport, operated by The Flemish department of Mobility and Public Works, is 12 metres above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"12.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"11.8872\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"12.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"244\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton, Grand Chute, Wisconsin is a city which is served by Appleton International Airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton, Wisconsin is part of Grand Chute, Wisconsin and is served by Appletone International Airport.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International Airport serves the city of Appleton which is part of Grand Chute, Wisconsin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Appleton,_Wisconsin\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Grand_Chute,_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Appleton,_Wisconsin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Grand_Chute,_Wisconsin\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Grand_Chute,_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Grand_Chute,_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"245\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"New Zealand's Ardmore Airport's second runway has the surface type Poaceae which is part of the Poales order.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 2nd runway at Ardmore Airport (New Zealand) is made of Poaceae, which is a member of the order of Poales.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Poaceae (part of the Poales order) is the surface type of the second runway of Ardmore Airport, New Zealand.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"2nd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"Poales\",\n                        \"property\": \"order\",\n                        \"subject\": \"Poaceae\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r2Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Poales\",\n                                \"property\": \"order\",\n                                \"subject\": \"Poaceae\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"246\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore Airport (New Zealand)'s 3rd runway surface type is Poaceae of the class Monocotyledon.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 3rd runway at Ardmore Airport (New Zealand) is made of Poaceae which is included in the class Monocotyledon.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore Airport (New Zealand)'s 3rd runway surface type is Poaceae which is included in the class of Monocotyledon.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"3rd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"Monocotyledon\",\n                        \"property\": \"class\",\n                        \"subject\": \"Poaceae\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r3Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Monocotyledon\",\n                                \"property\": \"class\",\n                                \"subject\": \"Poaceae\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r3Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Monocotyledon\",\n                                \"property\": \"unrankedClassis\",\n                                \"subject\": \"Poaceae\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"247\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The runway length at Ashgabat International airport, located in Ashgabat, is 3800.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ashgabat International Airport is located in Ashgabat and its runway length is 3800.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The runway length of Ashgabat International Airport in Ashgabat is 3800.0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"3800.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Ashgabat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"3800.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Ashgabat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"248\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport is in Spata and serves the city of Athens.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport, which is located in Spata, serves the city of Athens.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport in Spata serves the city of Athens.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Athens\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Athens_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Spata\",\n                        \"property\": \"location\",\n                        \"subject\": \"Athens_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Spata\",\n                                \"property\": \"location\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"city\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Spata\",\n                                \"property\": \"location\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"249\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport serves the city of Athens and has a runway length of 3800.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport serves the city of Athens and has a runway length of 3.800 metres.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Athens\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Athens_International_Airport\"\n                    },\n                    {\n                        \"object\": \"3800.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Athens_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3800.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3799.94\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"city\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3800.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"city\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3799.94\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"250\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"San Sebastian de los Reyes is part of the Community of Madrid and is also the location of Adolfo Suárez Madrid–Barajas Airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport is found in San Sebastián de los Reyes, part of the Community of Madrid.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adolfo Suárez Madrid–Barajas Airport is in San Sebastián de los Reyes which is part of the Community of Madrid.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Community_of_Madrid\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"San_Sebastián_de_los_Reyes\"\n                    },\n                    {\n                        \"object\": \"San_Sebastián_de_los_Reyes\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Community_of_Madrid\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"San_Sebastián_de_los_Reyes\"\n                            },\n                            {\n                                \"object\": \"San_Sebastián_de_los_Reyes\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"251\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Apollo 14 crew member Alan Shepard retired on the first of August, 1974.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard, who served as a crew member of Apollo 14, retired 1974-08-01.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_14\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1974-08-01\\\"\",\n                        \"property\": \"dateOfRetirement\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_14\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1974-08-01\\\"\",\n                                \"property\": \"dateOfRet\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"252\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin is a US national because he was born in Glen Ridge, New Jersey.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"American Buzz Aldrin hails from Glen Ridge, New Jersey.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born in Glen Ridge, New Jersey in the United States.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a US citizen born in Glen Ridge, New Jersey.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"253\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Retiree Buzz Aldrin is a former fighter pilot.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin is now retired but he was once a fighter pilot.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin has since retired but he once served as a fighter pilot.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin served as a fighter pilot and is now retired.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"\",\n                                \"property\": \"status\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"254\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Apollo 11 program was organized by NASA and included Buzz Aldrin as one of its crew members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"NASA operated the Apollo 11 program of which Buzz Aldrin was a member.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was on Apollo 11 which NASA operated.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin served as a crew member of Apollo 11 which is operated by NASA.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a crew member of Apollo 11 - whose operator was NASA.\",\n                        \"xml_id\": \"Id5\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"buzz aldrin was a crew member of apollo 11, which was operated by NASA.\",\n                        \"xml_id\": \"Id6\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a crew member of NASA's Apollo 11.\",\n                        \"xml_id\": \"Id7\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_11\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_11\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"255\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin performed as a fighter pilot and was a crew member on Apollo 11.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin, who was a fighter pilot, was a crew member on Apollo 11.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a fighter pilot who was also part of the Apollo 11 crew.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was both a fighter pilot and member of the Apollo 11 flight crew.\",\n                        \"xml_id\": \"Id4\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a fighter pilot and crew member of Apollo 11.\",\n                        \"xml_id\": \"Id5\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"256\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street is in South Africa. One South African group is the Coloured.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The address, 11 Diagonal Street is located in South Africa which is home to some coloured people.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"South_Africa\",\n                        \"property\": \"location\",\n                        \"subject\": \"11_Diagonal_Street\"\n                    },\n                    {\n                        \"object\": \"Coloured\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"South_Africa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Coloured\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Coloured\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"257\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"There are 45 floors at 200 Public Square in Cleveland.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"200 Public square, Cleveland, has a floor count of 45.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cleveland\",\n                        \"property\": \"location\",\n                        \"subject\": \"200_Public_Square\"\n                    },\n                    {\n                        \"object\": \"45\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"200_Public_Square\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cleveland\",\n                                \"property\": \"location\",\n                                \"subject\": \"200_Public_Square\"\n                            },\n                            {\n                                \"object\": \"45\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"200_Public_Square\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Cleveland\",\n                                \"property\": \"location\",\n                                \"subject\": \"200_Public_Square\"\n                            },\n                            {\n                                \"object\": \"\\\"45\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"200_Public_Square\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"258\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"20 Fenchurch Street is located in London, which is currently led by the European Parliament.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"20 Fenchurch Street is located in London, which is led via the European Parliament.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"20 Fenchurch Street is located in London which is lead via the European Parliament.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"London\",\n                        \"property\": \"location\",\n                        \"subject\": \"20_Fenchurch_Street\"\n                    },\n                    {\n                        \"object\": \"European_Parliament\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"London\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"London\",\n                                \"property\": \"location\",\n                                \"subject\": \"20_Fenchurch_Street\"\n                            },\n                            {\n                                \"object\": \"European_Parliament\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"London\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"259\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"250 Delaware Avenue is located in the United States, the leader of which was Barack Obama.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"250 Delaware Avenue is located in the United States - which is lead by Barack Obama.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"location\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"location\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"260\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"There are 60 floors at 300 North LaSalle in Illinois.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North LaSalle in Illinois has 60 floors.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Illinois\",\n                        \"property\": \"location\",\n                        \"subject\": \"300_North_LaSalle\"\n                    },\n                    {\n                        \"object\": \"60\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"300_North_LaSalle\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Illinois\",\n                                \"property\": \"location\",\n                                \"subject\": \"300_North_LaSalle\"\n                            },\n                            {\n                                \"object\": \"60\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"300_North_LaSalle\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Illinois\",\n                                \"property\": \"location\",\n                                \"subject\": \"300_North_LaSalle\"\n                            },\n                            {\n                                \"object\": \"\\\"60\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"300_North_LaSalle\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"261\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"HOK SVE was the architect of the 3Arena at North Wall, Dublin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena is located at North Wall, Dublin, and was built by HOK SVE.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 3Arena is located at North Wall, Dublin and was designed by HOK SVE.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"North_Wall,_Dublin\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"\\\"HOK SVE\\\"\",\n                        \"property\": \"architect\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"North_Wall,_Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"HOK SVE\\\"@en\",\n                                \"property\": \"architect\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"262\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena at East Link Bridge is owned by Live Nation Entertainment.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3 Arena is located at East Link Bridge and is owned by Live Nation Entertainment.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Live_Nation_Entertainment\",\n                        \"property\": \"owner\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"\\\"East Link Bridge\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Live_Nation_Entertainment\",\n                                \"property\": \"owner\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"East Link Bridge\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"263\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena, owned by Live Nation Entertainment, is located in Beverly Hills, California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Live Nation Entertainment from Beverly Hills, California, are the owners of 3Arena.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Live_Nation_Entertainment\",\n                        \"property\": \"owner\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"Beverly_Hills,_California\",\n                        \"property\": \"location\",\n                        \"subject\": \"Live_Nation_Entertainment\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Live_Nation_Entertainment\",\n                                \"property\": \"owner\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Beverly_Hills,_California\",\n                                \"property\": \"location\",\n                                \"subject\": \"Live_Nation_Entertainment\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"264\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Marriott International is the tenant of AC Hotel Bella Sky Copenhagen and it has 23 floors.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The tenant of the AC Hotel Bella Sky Copenhagen, which has 23 floors, is the Marriott International Hotel.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Marriott_International\",\n                        \"property\": \"tenant\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"23\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Marriott_International\",\n                                \"property\": \"operator\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"\\\"23\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Marriott_International\",\n                                \"property\": \"tenant\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"\\\"23\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"265\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addis Ababa City Hall is 42 m high and houses the Government of Addis Ababa.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The \\\" Government of Addis Ababa\\\" are the current tenants of Addis Ababa City Hall which is 42 metres high.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addis Ababa City Hall is 42 m high and is occupied by the Government of Addis Adaba.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Government of Addis Ababa\\\"\",\n                        \"property\": \"currentTenants\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"42 m\\\"\",\n                        \"property\": \"height\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Government of Addis Ababa\\\"@en\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"42.0\\\"^^xsd:double\",\n                                \"property\": \"height\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Government of Addis Ababa\\\"@en\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"42 m\\\"@en\",\n                                \"property\": \"height\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"266\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Admisham Hall's architectural style is Tudor and Jacabian and the building is located in Haputale, Sri Lanka.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall, Haputale, Sri Lanka, is Tudor and Jacabian in style.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Tudor and Jacabian\\\"\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"Haputale, Sri Lanka\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Tudor and Jacabian\\\"@en\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"Haputale, Sri Lanka\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"267\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall is located in Sri Lanka, where they speak the Tamil language.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall is located in the country of Sri Lanka where they speak Tamil.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Tamil_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Sri_Lanka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Tamil_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Sri_Lanka\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Tamil_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Sri_Lanka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"268\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The construction of Alan B Miller Hall, 101 Ukrop Way, began on 30th March 2007.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B. Miller Hall's building start date was in 30th March 2007 and is located at 101 Ukrop Way.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B. Miller Hall at 101 Ukrop Way opened on March 30, 2007.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"30 March 2007\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"101 Ukrop Way\\\"\",\n                        \"property\": \"address\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"2007-03-30\\\"^^xsd:date\",\n                                \"property\": \"startDate\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"101 Ukrop Way\\\"@en\",\n                                \"property\": \"address\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"269\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B Miller Hall is owned by The College of William and Mary and located in Williamsburg, Virginia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B. Miller Hall in Williamsburg, Virginia is owned by The College of William and Mary.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The College of William and Mary is the owner of the Alan B. Miller Hall in Williamsburg, Virginia.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"College_of_William_&_Mary\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"Williamsburg,_Virginia\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"College_of_William_&_Mary\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"Williamsburg,_Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"270\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Robert A. M. Stern is the architect of the Alan B. Miller Hall where the Mason School of Business is located.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Robert A M Stern designed Alan B Miller Hall and the Mason School of Business is a tenant there.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Mason School of Business is a tenant of the Alan B. Miller Hall, which was designed by Robert A.M. Stern.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mason_School_of_Business\",\n                        \"property\": \"tenant\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"Robert_A._M._Stern\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mason_School_of_Business\",\n                                \"property\": \"tenant\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"Robert_A._M._Stern\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"271\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is located in the Ampara District in Sri Lanka.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is located in the Ampara District of Sri Lanka.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Ampara_District\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ampara_Hospital\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ampara_District\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"\\\"Sri Lanka\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Ampara_District\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"272\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sri Jayawardenepura Kotte is the capital of Sri Lanka, where Ampara Hospital is located.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is located in Sri Lanka whose capital is Sri Jayawardenepura Kotte.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is located in Sri Lanka whose capital is Sri Jayawardenepura.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Sri_Jayawardenepura_Kotte\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Sri_Lanka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Sri_Jayawardenepura_Kotte\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Sri_Lanka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"273\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asher and Mary Isabelle Richardson House is located on U.S. Route 83 and has the reference number 88002539 in the National Register of Historic Places.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The National Register of Historic Places has the Asher and Mary Isabelle Richardson House, located at U.S. Route 83, referenced at 88002539.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asher and Mary Isabelle Richardson House has the reference number 88002539 in the National Register of Historic Places, and is located at U.S. Route 83.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"U.S._Route_83\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                    },\n                    {\n                        \"object\": \"\\\"88002539\\\"\",\n                        \"property\": \"ReferenceNumber in the National Register of Historic Places\",\n                        \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"U.S._Route_83\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            },\n                            {\n                                \"object\": \"\\\"88002539\\\"\",\n                                \"property\": \"nrhpReferenceNumber\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"274\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds, Asilomar Blvd., Pacific Grove, California has a reference number in the National Register of Historic Places of: 87000823.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds is located at Asilomar Blvd., Pacific Grove, California and it's reference number is 87000823 in the National Register of Historic Places.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"\\\"87000823\\\" is Asilomar Conference Grounds' reference number in the National Register of Historic Places, and it is located on Asilomar Blvd, Pacific Grove, California.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Asilomar Blvd., Pacific Grove, California\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"\\\"87000823\\\"\",\n                        \"property\": \"ReferenceNumber in the National Register of Historic Places\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Asilomar Blvd., Pacific Grove, California\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"\\\"87000823\\\"\",\n                                \"property\": \"nrhpReferenceNumber\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"275\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds at Pacific Grove, California was added to the National Register of Historic Places on February the 27nd 1987.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds are located in Pacific Grove, California and was added to the National Register of Historic Places on February the 27nd 1987.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds, Pacific Grove, California was added to the National Register of Historic Places on February 27, 1987.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pacific_Grove,_California\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"\\\"1987-02-27\\\"\",\n                        \"property\": \"added to the National Register of Historic Places\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pacific_Grove,_California\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"\\\"1987-02-27\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"276\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Public Baths is located on 23rd Street, Manhattan, and was constructed in 1904.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Baths which was built in 1904 is located at 23rd Street in Manhattan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy Public Baths, constructed in 1904, is located at 23rd Street (Manhattan).\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"23rd_Street_(Manhattan)\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"1904\",\n                        \"property\": \"yearOfConstruction\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"23rd_Street_(Manhattan)\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"1904\",\n                                \"property\": \"built\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"23rd_Street_(Manhattan)\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"\\\"1904\\\"^^xsd:gYear\",\n                                \"property\": \"yearOfConstruction\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"277\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Anandiben Patel was the leader of Gujurat where Amdavad ni Gufa is located.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad Gufa is located in Gujarat and it's leader is Anandiben Patel.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Gujarat and it's leader is Anandiben Patel.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Anandiben_Patel\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Gujarat\"\n                    },\n                    {\n                        \"object\": \"Gujarat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Anandiben_Patel\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Gujarat\"\n                            },\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"278\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic strip character Asterix was created by Albert Uderzo and Rene Goscinny.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic book character Asterix was created by René Goscinny and Albert Uderzo.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The character Asterix was created by Reneé Goscinny and Albert Uderzo.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"René_Goscinny\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Asterix_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Albert_Uderzo\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Asterix_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"René_Goscinny\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Asterix_(character)\"\n                            },\n                            {\n                                \"object\": \"Albert_Uderzo\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Asterix_(character)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"René_Goscinny\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Asterix_(character)\"\n                            },\n                            {\n                                \"object\": \"Albert_Uderzo\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Asterix_(character)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"279\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Created by Len Wein, Aurakles's alternative name is also Aurakles.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The character Aurakles, also known as Aurakles, was created by Len Wein.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Len_Wein\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Aurakles\"\n                    },\n                    {\n                        \"object\": \"\\\"Aurakles\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Aurakles\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Len_Wein\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Aurakles\"\n                            },\n                            {\n                                \"object\": \"\\\"Aurakles\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Aurakles\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Len_Wein\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Aurakles\"\n                            },\n                            {\n                                \"object\": \"\\\"Aurakles\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Aurakles\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"280\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Doug Moench was the creator of the comic character Ballistic, who has the alternative name Kelvin Mao.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ballistic, ( also known as Kelvin Mao ), is a fictional comic superhero created by Doug Moench.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Doug Moench created the character Ballistic, the fictional superhero whose alter ego is Kelvin Mao.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Doug_Moench\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Ballistic_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"\\\"Kelvin Mao\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Ballistic_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Doug_Moench\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Ballistic_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"\\\"Kelvin Mao\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Ballistic_(DC_Comics)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Doug_Moench\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Ballistic_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"\\\"Kelvin Mao\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Ballistic_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"281\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Starring Graeme Garden, Bananaman, the TV series was shown on the BBC.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Graeme Garden starred in the TV series Bananman, which was shown on the BBC.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman , which starred Graeme Garden, was broadcasted by the BBC.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"BBC\",\n                        \"property\": \"broadcastedBy\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"Graeme_Garden\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Bananaman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"BBC\",\n                                \"property\": \"network\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"Graeme_Garden\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Bananaman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"282\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Oddie, who stars in Bananaman, was born in Lancashire.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman starred Bill Oddie who was born in Lancashire.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Oddie, who was born in Lancashire, starred in Bananaman.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bill_Oddie\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"Lancashire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Bill_Oddie\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bill_Oddie\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"Lancashire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Bill_Oddie\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"283\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bibbo Bibbowski was created by American, Jerry Ordway.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The creator of Bibbo Bibbowski is Jerry Ordway, an American.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jerry Ordway, an American, is the creator of Bibbo Bibbowski.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jerry_Ordway\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bibbo_Bibbowski\"\n                    },\n                    {\n                        \"object\": \"Americans\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Jerry_Ordway\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Jerry_Ordway\"\n                            },\n                            {\n                                \"object\": \"Jerry_Ordway\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Jerry_Ordway\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            },\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Jerry_Ordway\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"284\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Black Pirate, also known as Jon Valor, was created by Sheldon Moldoff.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Black Pirate ( Jon Valor ), was created by Sheldon Moldoff.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sheldon Moldoff is the creator of Black Pirate, who is also known as Jon Valor.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sheldon_Moldoff\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Black_Pirate\"\n                    },\n                    {\n                        \"object\": \"\\\"Jon Valor\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Black_Pirate\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sheldon_Moldoff\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Black_Pirate\"\n                            },\n                            {\n                                \"object\": \"\\\"Jon Valor\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Black_Pirate\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sheldon_Moldoff\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Black_Pirate\"\n                            },\n                            {\n                                \"object\": \"\\\"Jon Valor\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Black_Pirate\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"285\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Blockbuster was created by Roger Stern and Tom Lyle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Blockbuster is a comic book character which was created by both Roger Stern and Tom Lyle.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic book character Blockbuster was created by Roger Stern and Tom Lyle.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Roger_Stern\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Blockbuster_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Tom_Lyle\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Blockbuster_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Roger_Stern\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Blockbuster_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Tom_Lyle\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Blockbuster_(DC_Comics)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Roger_Stern\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Blockbuster_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Tom_Lyle\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Blockbuster_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"286\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Paris Culins and Gary Cohn are the creators of the comics character Bolt.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Both Paris Cullins and Gary Cohn were the creator's of the comic character Bolt.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Bolt, was created by Paris Cullins and Gary Cohn.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Paris_Cullins\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Gary_Cohn_(comics)\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Paris_Cullins\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Gary_Cohn_(comics)\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Paris_Cullins\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Gary_Cohn_(comics)\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"287\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bread is an ingredient of Ajoblanco which originates from Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"One of the ingredients of Ajoblanco is bread and it originates from Spain.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bread is an ingredient of Ajoblanco which comes from Spain.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Bread\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Bread\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"288\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco, from Andalusia, has almond as one of its ingredients.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Almond is an ingredient in ajoblanco, from Andalusia.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco is from the Andalusia region and has almond as one of its ingredients.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Almond\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Andalusia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Almond\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Andalusia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"289\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tomato is an ingredient in Amatriciana sauce which comes from Lazio.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amatriciana sauce is from the Lazio region and tomato is one of the ingredients.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tomato is an ingredient in Amatriciana sauce which comes from the region of Lazio.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lazio\",\n                        \"property\": \"region\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    },\n                    {\n                        \"object\": \"Tomato\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lazio\",\n                                \"property\": \"region\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Tomato\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"290\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa comes from the Antioquia Department of Colombia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa is a dish found in the Antioquia Department of Colombia.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Colombia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Antioquia_Department\"\n                    },\n                    {\n                        \"object\": \"Antioquia_Department\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bandeja_paisa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Colombia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Antioquia_Department\"\n                            },\n                            {\n                                \"object\": \"Antioquia_Department\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bandeja_paisa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"291\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem-arem uses the ingredient banana leaf, it is a common dish in Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Banana leaf is an ingredient in arem arem, which comes from Indonesia.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem arem which includes banana leaf, comes from Indonesia.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"Banana_leaf\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arem-arem\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Banana_leaf\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arem-arem\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"292\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Olive oil is an ingredient used in the preparation of Arrabbiata sauce, found in Italy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Olive Oil is used to create Italian Arrabbiata sauce.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Olive oil is an ingredient in Arrabbiata sauce, which can be found in Italy.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Olive_oil\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Olive_oil\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"293\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is found in Italy where the capital city is Rome.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Rome is the capital of Italy which is where Arrabbiata sauce comes from.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is from Italy which has the capital city of Rome.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"294\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tomatoes are found in Arrabbiata sauce which comes from Italy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tomatoes are an ingredient of Arrabbiata sauce from Italy.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tomatoes are found in Arrabbiata sauce, which originated in Italy.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Tomato\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Tomato\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"295\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arròs negre is from Spain, it includes squid.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arròs negre is a traditional dish from Spain, it includes squid.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Squid\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Squid\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"296\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cuttlefish is an ingredient in Arros negre which comes from the region of Valencian Community.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An ingredient of arros negre is cuttlefish, the dish comes from the Valencian community region.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Valencian_Community\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Cuttlefish\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Valencian_Community\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Cuttlefish\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"297\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a food found in Java and the main ingredients are \\\"squeezed\\\" or \\\"smashed\\\" chicken served with sambal.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet (Javanese) includes squeezed/smashed fried chicken and is served with sambal.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"\\\"Squeezed\\\" or \\\"smashed\\\" fried chicken served with sambal\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"\\\"\\\\\\\"Squeezed\\\\\\\" or \\\\\\\"smashed\\\\\\\"fried chickenserved withsambal\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"298\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A sausage is used when making a Bacon Explosion which has The United states to thank for inventing it.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion is a dish from the United States that contains sausage.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion comes from the United States and includes sausage among its ingredients.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Sausage\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_Explosion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Sausage\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_Explosion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"299\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States, where John Roberts is a leader, is the country of the Bacon Explosion.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Bacon Explosion comes from the United States where John Roberts is a leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States (with a leader, John Roberts) boasts the Bacon Explosion.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"John_Roberts\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"John_Roberts\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"300\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon is an ingredient in the main course dish 'Bacon Explosion'.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon is an ingredient in a main course called Bacon Explosion.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion is an entree that includes bacon, the main ingredient.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bacon\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"\\\"Main course\\\"\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bacon_Explosion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bacon\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"\\\"Main course\\\"@en\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bacon_Explosion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"301\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A bacon sandwich on bread is also known as bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, or bacon muffin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The bacon sandwich, which one of two ingedients is bread, has different names including: Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm and bacon muffin.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"Bread\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_sandwich\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"Bread\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_sandwich\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"302\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska is thought to have originated in the United States, France or China, and contains Christmas pudding as an ingredient.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"France, United States and China all claim to have invented Baked Alaska which can have Christmas pudding as an ingredient.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Christmas pudding is an ingredient in Baked Alaska which is from France, the United States and China.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"France, United States or China\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Christmas_pudding\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"France, United States or China\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Christmas_pudding\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"303\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska comes from China, where Standard Chinese is spoken.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Standard Chinese is spoken in China where baked Alaska is a dish.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"China\",\n                        \"property\": \"country\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Standard_Chinese\",\n                        \"property\": \"language\",\n                        \"subject\": \"China\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"China\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Standard_Chinese\",\n                                \"property\": \"language\",\n                                \"subject\": \"China\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"304\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska and cookies are types of dessert.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska and a cookie are both desserts.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Baked Alaska is a dessert along with cookies which you can also eat as a dessert.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Cookie\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Cookie\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"305\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell pudding was created in 1820 at the Rutland Arms, Bakewell and has ground almond, jam, butter and eggs as main ingredients.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of Bakewell pudding, which was invented in Rutland Arms, Bakewell, in 1820, are ground almond, jam, butter and eggs.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Rutland Arms, Bakewell, in 1820\\\"\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"\\\"Ground almond, jam, butter, eggs\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bakewell_pudding\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Rutland Arms, Bakewell, in 1820\\\"@en\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"\\\"Ground almond, jam, butter, eggs\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bakewell_pudding\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Ground almond, jam, butter, eggs\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"\\\"Rutland Arms, Bakewell, in 1820\\\"@en\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bakewell_pudding\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"306\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell tart, made with shortcrust pastry, is a variation of Bakewell pudding.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A variant of bakewell pudding is bakewell tart, made with shortcrust pastry.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A variant of bakewell pudding is bakewell tart which uses shortcrust pastry.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bakewell_tart\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Shortcrust_pastry\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakewell_tart\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Shortcrust_pastry\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakewell_tart\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"307\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lemon (part of genus Citrus) is an ingredient in Bandeja paisa.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lemon, from the genus citrus, is an ingredient in Bandeja paisa.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lemon (genus; citrus) is an ingredient found in Bandeja paisa.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lemon\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Citrus\",\n                        \"property\": \"genus\",\n                        \"subject\": \"Lemon\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lemon\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Citrus\",\n                                \"property\": \"genus\",\n                                \"subject\": \"Lemon\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"308\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batchoy is a food in the Philippines and one of its ingredient is shrimp.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Philippines is the country of origin for the dish Batchoy, of which shrimp is one of the main ingredients.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Philippines is the country that Batchoy, a dish containing shrimp, comes from.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Philippines\",\n                        \"property\": \"country\",\n                        \"subject\": \"Batchoy\"\n                    },\n                    {\n                        \"object\": \"Shrimp\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Batchoy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Philippines\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batchoy\"\n                            },\n                            {\n                                \"object\": \"Shrimp\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Batchoy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"309\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Chinese Filipino is an ethnic group in the Philippines, where batchoy is a traditional dish.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Chinese Filipino are from the Philippines, where batchoy is eaten.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batchoy is a food from the Philippines, the country where there is an ethnic group called the Chinese Filipino.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Philippines\",\n                        \"property\": \"country\",\n                        \"subject\": \"Batchoy\"\n                    },\n                    {\n                        \"object\": \"Chinese_Filipino\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Philippines\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Philippines\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batchoy\"\n                            },\n                            {\n                                \"object\": \"Chinese_Filipino\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Philippines\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"310\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow originates from Singapore, where Chinese is spoken.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Standard chinese speaking Singapore is the origin of beef kway teow.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Standard_Chinese\",\n                        \"property\": \"language\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Standard_Chinese\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"311\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is a dish of Singapore where Tony Tan is a leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tony Tan is the leader of Singapore, from where Beef kway teow originates.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow originates from Singapore and it's leader is Tony Tan.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Tony_Tan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"312\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from India and Sumitra Mahajan is it's leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji comes from India where the leader is Sumitra Mahajan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from India where the leader is Sumitra Mahajan.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Sumitra_Mahajan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"313\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji, which uses gram flour, is a dish similar to pakora and other fritters made from wheat or corn flour.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Gram flour is an ingredient of a Bhajji, which is a similar dish to pakora and other fritters made from wheat or corn flour.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Pakora and other fritters made from wheat or corn flour\\\"\",\n                        \"property\": \"similarDish\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Gram_flour\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bhajji\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Pakora and other fritters made from wheat or corn flour\\\"@en\",\n                                \"property\": \"similarDish\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Gram_flour\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"314\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An ingredient of Binignit is sweet potato, and one of the main ingredients is the banana.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Banana is a main ingredient of Binignit and sweet potato is also an ingredient.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredient of Binignit is banana, and also important is the inclusion of sweet potatoes.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sweet_potato\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Banana\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Binignit\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sweet_potato\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Banana\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Binignit\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"315\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sago is the main ingredient in binignit but sweet potatoes are also used in it.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Binignit has the ingredients sweet potato and sago.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sweet potato and sago are main ingredients in Binignit.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sweet_potato\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Sago\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Binignit\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sweet_potato\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Sago\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Binignit\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"316\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sweet potatoes (a kind of flowering plant) are used in binignit recipes.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sweet potato belongs to flowering plants and is an ingredient of Binignit.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sweet_potato\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Flowering_plant\",\n                        \"property\": \"division\",\n                        \"subject\": \"Sweet_potato\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sweet_potato\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Flowering_plant\",\n                                \"property\": \"division\",\n                                \"subject\": \"Sweet_potato\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"317\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sweet potatoes are the main ingredient of binignit and the potatoes are part of the order of Solanales.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sweet potatoes are members of the Solanales order of plants. They are the main ingredient of binignit.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sweet potato is of the order Solanales and are a main ingredient of binignit.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sweet_potato\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Solanales\",\n                        \"property\": \"order\",\n                        \"subject\": \"Sweet_potato\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sweet_potato\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Solanales\",\n                                \"property\": \"order\",\n                                \"subject\": \"Sweet_potato\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"318\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert and it requires granola as one of it's ingredients.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert, requiring granola as one of its ingredients.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert that includes the ingredient granola.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Granola\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Granola\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id32\"\n            }\n        },\n        {\n            \"319\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A popular dessert is Bionico and a variation of this dish can be honey.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Honey can be used as a variaton in Bionico which is a dessert.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Honey can be added to bionico, a dessert dish.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Honey\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Honey\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id33\"\n            }\n        },\n        {\n            \"320\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico and ice cream are both served as a dessert course.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico and ice cream are types of dessert.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico and Ice Cream are served at the dessert course.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ice_cream\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    },\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ice_cream\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            },\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id34\"\n            }\n        },\n        {\n            \"321\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batagor and Siomay (which has peanut sauce as an ingredient) are variations of the same dish.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Peanut sauce is an ingredient in Siomay and Batagor is a variation of this dish.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batagor is a variation of the dish Siomay, of which peanut sauce is an ingredient.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Peanut_sauce\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Siomay\"\n                    },\n                    {\n                        \"object\": \"Siomay\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Batagor\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Peanut_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Siomay\"\n                            },\n                            {\n                                \"object\": \"Siomay\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Batagor\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id35\"\n            }\n        },\n        {\n            \"322\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The inauguration date for the Atatürk Monument (İzmir, Turkey) is 1932-07-27.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Ataturk Monument is in Izmir Turkey and was founded on July 27, 1932.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The inauguration date for the Atatürk Monument (İzmir), which is in Turkey, is 1932-07-27.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1932-07-27\\\"\",\n                        \"property\": \"inaugurationDate\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    },\n                    {\n                        \"object\": \"Turkey\",\n                        \"property\": \"location\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1932-07-27\\\"^^xsd:date\",\n                                \"property\": \"open\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            },\n                            {\n                                \"object\": \"Turkey\",\n                                \"property\": \"location\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"323\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs Memorial has been dedicated to Ottoman Army soldiers killed in the Battle of Baku and is made of red granite and white marble.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs Memorial, created in red granite and white marble, is dedicated to the Ottoman Army soldiers killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Red granite and white marble\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"324\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The native name of the Baku Turkish Martyrs' Memorial is Turk Sehitleri Aniti and is made of red granite and white marble.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyr's Memorial is known in Turkish as Turk Sehitleri Aniti and is created in red granite and white marble.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku Turkish Martyrs' Memorial is made from red granite and white marble and is called Turk Sehitleri Aniti.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Türk Şehitleri Anıtı\\\"\",\n                        \"property\": \"nativeName\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Red granite and white marble\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Türk Şehitleri Anıtı\\\"@en\",\n                                \"property\": \"nativeName\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"325\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Dead Man's Plack, which is made of rock, is dedicated to Æthelwald, Ealdorman of East Anglia.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Æthelwald,_Ealdorman_of_East_Anglia\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Dead_Man's_Plack\"\n                    },\n                    {\n                        \"object\": \"Rock_(geology)\",\n                        \"property\": \"material\",\n                        \"subject\": \"Dead_Man's_Plack\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Æthelwald,_Ealdorman_of_East_Anglia\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Dead_Man's_Plack\"\n                            },\n                            {\n                                \"object\": \"Rock_(geology)\",\n                                \"property\": \"material\",\n                                \"subject\": \"Dead_Man's_Plack\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"326\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AC Cesena are in the Serie B league, the previous champions of which are Carpi FC 1909.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C. Cesana play in Serie B, in which Carpi FC 1909 are the champions.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AC Cesena are in the Serie B league, previously won by Carpi F.C. 1909.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Serie_B\",\n                        \"property\": \"league\",\n                        \"subject\": \"A.C._Cesena\"\n                    },\n                    {\n                        \"object\": \"Carpi_F.C._1909\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Serie_B\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Serie_B\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.C._Cesena\"\n                            },\n                            {\n                                \"object\": \"Carpi_F.C._1909\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Serie_B\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"327\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AC Chievo Verona play in the Serie A league and their home ground is Stadio Marc Antonio Bentegodi.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The home ground of A.C. Chievo Verona is Stadio Marc'Antonio Bentegodi and the club is in the league, Serie A.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The home ground of A.C. Chievo Verona is Stadio Marc'Antonio Bentegodi, he played in Serie A.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stadio_Marc'Antonio_Bentegodi\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.C._Chievo_Verona\"\n                    },\n                    {\n                        \"object\": \"Serie_A\",\n                        \"property\": \"league\",\n                        \"subject\": \"A.C._Chievo_Verona\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stadio_Marc'Antonio_Bentegodi\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.C._Chievo_Verona\"\n                            },\n                            {\n                                \"object\": \"Serie_A\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.C._Chievo_Verona\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"328\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C. Lumezzane's ground is in Italy where the leader is Pietro Grasso.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C. Lumezzane play in italy where the leader is Pietro Grasso.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C. Lumezzane play in Italy, where the leader is Pietro Grasso.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.C._Lumezzane\"\n                    },\n                    {\n                        \"object\": \"Pietro_Grasso\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            },\n                            {\n                                \"object\": \"Pietro_Grasso\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"329\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jorge Humberto Rodríguez manages the A.D. Isidro Metapan, he played for the C.D. FAS.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jorge Humberto Rodriguez manages A.D. Isidro Metapan. He is in the C.D. FAS.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jorge Humberto Rodríguez manages the A.D. Isidro Metapan and plays for C.D. FAS.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jorge_Humberto_Rodríguez\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.D._Isidro_Metapán\"\n                    },\n                    {\n                        \"object\": \"C.D._FAS\",\n                        \"property\": \"club\",\n                        \"subject\": \"Jorge_Humberto_Rodríguez\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jorge_Humberto_Rodríguez\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            },\n                            {\n                                \"object\": \"C.D._FAS\",\n                                \"property\": \"team\",\n                                \"subject\": \"Jorge_Humberto_Rodríguez\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"330\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E. Dimitra Efeinoupolis has 1500 members and is in the EPSTH 2nd GROUP league.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"With 1500 members, A.E Dimitra Efxeinoupolis, play in the A EPSTH 2nd GROUP.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1500\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                    },\n                    {\n                        \"object\": \"A_EPSTH_2nd_GROUP\",\n                        \"property\": \"league\",\n                        \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1500\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            },\n                            {\n                                \"object\": \"A_EPSTH_2nd_GROUP\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"1500\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            },\n                            {\n                                \"object\": \"A_EPSTH_2nd_GROUP\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"331\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of A.F.C. Blackpool is Stuart Parker (footballer) who plays for Runcorn F.C. Halton.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Blackpool have had Stuart Parker as their manager who was a football player for Runcorn FC Halton.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of A.F.C. Blackpool is Stuart Parker (footballer), he played for Runcorn FC Halton.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stuart_Parker_(footballer)\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    },\n                    {\n                        \"object\": \"Runcorn_F.C._Halton\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stuart_Parker_(footballer)\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            },\n                            {\n                                \"object\": \"Runcorn_F.C._Halton\",\n                                \"property\": \"team\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"332\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of A.F.C. Blackpool is Stuart Parker (footballer), who plays at the Sparta Rotterdam club.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stuart Parker, who plays at the Sparta Rotterdam Club, has also managed AFC Blackpool.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Blackpool have had the manager Stuart Parker who currently plays for Sparta Rotterdam.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stuart_Parker_(footballer)\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    },\n                    {\n                        \"object\": \"Sparta_Rotterdam\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stuart_Parker_(footballer)\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            },\n                            {\n                                \"object\": \"Sparta_Rotterdam\",\n                                \"property\": \"team\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"333\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Fylde has the home ground called The Fylde and has 3180 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Fylde has the home ground called The Fylde, which holds 3180 fans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Fylde, (capacity 3180) is the home ground of AFC Fylde.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"The_Fylde\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    },\n                    {\n                        \"object\": \"3180\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"The_Fylde\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            },\n                            {\n                                \"object\": \"\\\"3180\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"334\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.F.C. Fylde has 3180 members and are based at Bryning Lane.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Fylde has 3180 members and are based at Bryning Lane.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.F.C. Fylde are based at Bryning Lane and they have 3180 members.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"3180\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    },\n                    {\n                        \"object\": \"\\\"Bryning Lane\\\"\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"3180\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            },\n                            {\n                                \"object\": \"\\\"Bryning Lane\\\"@en\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"335\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Livorno Calcio is managed by Christian Panucci who plays for the Italy national football team.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Livorno Calcio are managed by Christian Panucci who played for the Italy national football team.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Livorno Calcio is managed by Christian Panucci who previously played for the Italian national football team.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Christian_Panucci\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.S._Livorno_Calcio\"\n                    },\n                    {\n                        \"object\": \"Italy_national_football_team\",\n                        \"property\": \"club\",\n                        \"subject\": \"Christian_Panucci\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Christian_Panucci\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"Italy_national_football_team\",\n                                \"property\": \"team\",\n                                \"subject\": \"Christian_Panucci\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"336\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Grounds being in Rome, Italy, A.S. Roma to play in Serie A.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Roma play in the Serie A league and their ground is in Rome, Italy.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Roma's ground is in Rome, Italy and they play in Serie A.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Rome, Italy\\\"\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"Serie_A\",\n                        \"property\": \"league\",\n                        \"subject\": \"A.S._Roma\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Rome, Italy\\\"@en\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"Serie_A\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.S._Roma\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"337\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACF Fiorentina play in Serie A which is based in Italy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACF Fiorentina play in Serie A based in Italy.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Serie_A\",\n                        \"property\": \"league\",\n                        \"subject\": \"ACF_Fiorentina\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Serie_A\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Serie_A\",\n                                \"property\": \"league\",\n                                \"subject\": \"ACF_Fiorentina\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Serie_A\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"338\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of AFC Ajax is Frank de Boer who is in the Ajax Youth Academy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax's manager is Frank de Boer, who played for the Ajax Youth Academy.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Frank de Boer is in the Ajax Youth Academy and manages AFC Ajax.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Frank_de_Boer\",\n                        \"property\": \"manager\",\n                        \"subject\": \"AFC_Ajax\"\n                    },\n                    {\n                        \"object\": \"Ajax_Youth_Academy\",\n                        \"property\": \"club\",\n                        \"subject\": \"Frank_de_Boer\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Frank_de_Boer\",\n                                \"property\": \"manager\",\n                                \"subject\": \"AFC_Ajax\"\n                            },\n                            {\n                                \"object\": \"Ajax_Youth_Academy\",\n                                \"property\": \"team\",\n                                \"subject\": \"Frank_de_Boer\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"339\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax has 53502 members and is the owner of AFC Ajax NV.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax has 53502 members and is owned by AFC Ajax NV.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax has 53502 members and is owned by AFC Ajax N.V..\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"AFC_Ajax_N.V.\",\n                        \"property\": \"owner\",\n                        \"subject\": \"AFC_Ajax\"\n                    },\n                    {\n                        \"object\": \"53502\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AFC_Ajax\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"AFC Ajax NV\\\"@en\",\n                                \"property\": \"owner\",\n                                \"subject\": \"AFC_Ajax\"\n                            },\n                            {\n                                \"object\": \"\\\"53502\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"AFC_Ajax_N.V.\",\n                                \"property\": \"owner\",\n                                \"subject\": \"AFC_Ajax\"\n                            },\n                            {\n                                \"object\": \"53502\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"AFC_Ajax_N.V.\",\n                                \"property\": \"owner\",\n                                \"subject\": \"AFC_Ajax\"\n                            },\n                            {\n                                \"object\": \"\\\"53502\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"340\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax is based in Amsterdam where the leader is Eberhard van der Laan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground of AFC Ajax (amateurs) can be found in Amsterdam where Eberhard van der Laan is a leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax is based in Amsterdam where Eberhard van der Laan is a leader.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Amsterdam\",\n                        \"property\": \"ground\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    },\n                    {\n                        \"object\": \"Eberhard_van_der_Laan\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Amsterdam\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Amsterdam\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            },\n                            {\n                                \"object\": \"Eberhard_van_der_Laan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Amsterdam\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"341\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (amateurs), who have 5000 members, played in the Topklasse in the 2014-2015 season.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (amateurs) have 5000 members and played in the Topklasse in the 2014-2015 season.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (amateurs) played in the 2014-15 Topklasse season and their home ground has a capacity for 5000 fans.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"2014–15_Topklasse\",\n                        \"property\": \"season\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    },\n                    {\n                        \"object\": \"5000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"5000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            },\n                            {\n                                \"object\": \"2014–15_Topklasse\",\n                                \"property\": \"season\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"2014–15_Topklasse\",\n                                \"property\": \"season\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            },\n                            {\n                                \"object\": \"5000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"342\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PFK play their home matches at the AZAL Arena in Shuvulan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AZAL Arena is located in Shuvulan and is the ground of AZAL PFK.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AZAL Arena in Shuvalan is the ground of AZAL PFK.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Shuvalan\",\n                        \"property\": \"location\",\n                        \"subject\": \"AZAL_Arena\"\n                    },\n                    {\n                        \"object\": \"AZAL_Arena\",\n                        \"property\": \"ground\",\n                        \"subject\": \"AZAL_PFK\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Shuvalan\",\n                                \"property\": \"location\",\n                                \"subject\": \"AZAL_Arena\"\n                            },\n                            {\n                                \"object\": \"AZAL_Arena\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AZAL_PFK\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"343\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZ Alkmaar's fullname is Alkmaar Zaanstreek, it has 17023 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZ Alkmaar has 17023 member and their full name is \\\"Alkmaar Zaanstreek\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alkmaar Zaanstreek is the full name of AZ Alkmaar which has 17023 members.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Alkmaar Zaanstreek\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    },\n                    {\n                        \"object\": \"17023\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Alkmaar Zaanstreek\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"\\\"17023\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Alkmaar Zaanstreek\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"17023\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"344\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiacao Sportiva Arapiraquense's ground is the Estadio Minicipal Coaracy da Mata Fonseca, its located in Brazil.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Estádio Municipal Coaracy da Mata Fonseca is located in Brazil and is the ground of Agremiação Sportiva Arapiraquense.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Estádio Municipal Coaracy da Mata Fonseca is the name of the ground of Agremiação Sportiva Arapiraquense which is in Brazil.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Brazil\",\n                        \"property\": \"location\",\n                        \"subject\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"location\",\n                                \"subject\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"345\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense (which is his full name) has a club with 17000 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense's full name is \\\"Agremiação Sportiva Arapiraquense\\\" and they have 17000 members.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"17000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"\\\"Agremiação Sportiva Arapiraquense\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"17000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"\\\"Agremiação Sportiva Arapiraquense\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"17000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"\\\"Agremiação Sportiva Arapiraquense\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"346\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The team Akron Summit Assault are based in Akron, Ohio, USA.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akron Summit Assault team is based in Akron, Ohio which is in the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akron Summit Assault team is based in Akron, Ohio in the U.S.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Akron,_Ohio\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Akron,_Ohio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Akron,_Ohio\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Akron,_Ohio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"347\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago's club is the S.S. Chieti Calcio and he manages A.C. Cesena.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago manages A.C. Cesena and plays for S.S. Chieti Calcio.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"S.S._Chieti_Calcio\",\n                        \"property\": \"club\",\n                        \"subject\": \"Massimo_Drago\"\n                    },\n                    {\n                        \"object\": \"Massimo_Drago\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.C._Cesena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"S.S._Chieti_Calcio\",\n                                \"property\": \"team\",\n                                \"subject\": \"Massimo_Drago\"\n                            },\n                            {\n                                \"object\": \"Massimo_Drago\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.C._Cesena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"348\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology's campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090 and the director is Dr. G. P. Prabhukumar.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The director of the Acharya Institute of Technology is Dr G P Prabhukumar. The campus is located at In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore - 560090.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"\",\n                        \"property\": \"director\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"@en\",\n                                \"property\": \"director\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"349\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The All India Council for Technical Education gave the Acharya Institute of Technology the status of \\\"Technical Campus\\\". The official school colours are blue, white and orange.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The official school colours for Acharya Institute of Technology are blue, white and orange and the school got its Technical Campus status from the All India Council.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology (official colour blue, white and orange) has been given the 'Technical Campus' status by All India Council for Technical Education.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Blue, White and Orange\\\"\",\n                        \"property\": \"officialSchoolColour\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"All_India_Council_for_Technical_Education\",\n                        \"property\": \"was given the 'Technical Campus' status by\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Blue, White and Orange\\\"\",\n                                \"property\": \"officialSchoolColour\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"All_India_Council_for_Technical_Education\",\n                                \"property\": \"free\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"350\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The International Tennis Federation, which is the sport's governing body, has agreed to let Acharya Institute of Technology offer tennis at the school.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tennis, as governed by the International Tennis Federation, is a sport offered at the Acharya Institute of Technology.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Tennis\",\n                        \"property\": \"sportsOffered\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"International_Tennis_Federation\",\n                        \"property\": \"sportsGoverningBody\",\n                        \"subject\": \"Tennis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Tennis\",\n                                \"property\": \"sport\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"International_Tennis_Federation\",\n                                \"property\": \"union\",\n                                \"subject\": \"Tennis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"351\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University is affiliated to the European University Association which has its headquarters in Brussels.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at Aarhus University is affiliated with the European University Association in Brussels.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"School of Business and Social Sciences at the Aarhus University is affiliated with the European University Association and is located in Brussels.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Brussels\",\n                        \"property\": \"headquarters\",\n                        \"subject\": \"European_University_Association\"\n                    },\n                    {\n                        \"object\": \"European_University_Association\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Brussels\",\n                                \"property\": \"headquarters\",\n                                \"subject\": \"European_University_Association\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Brussels\",\n                                \"property\": \"headquarters\",\n                                \"subject\": \"European_University_Association\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"352\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institue of Technology is located in the state of Karnataka which has the Arabian Sea to the west.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is in the state of Karnataka which has the Arabian Sea to its west.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is located in the state of Karnataka, which has to its west the Arabian Sea.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Arabian_Sea\",\n                        \"property\": \"has to its west\",\n                        \"subject\": \"Karnataka\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Arabian_Sea\",\n                                \"property\": \"west\",\n                                \"subject\": \"Karnataka\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"353\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian Crisis is written by Virginia DeMarce and Eric Flint and was preceded by Grantville Gazette III.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: the Bavarian Crisis, authored by Virginia DeMarce and Eric Flint, was preceded by Grantville Gazette III.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Grantville_Gazette_III\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    },\n                    {\n                        \"object\": \"\\\"Virginia DeMarce and Eric Flint\\\"\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Grantville_Gazette_III\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            },\n                            {\n                                \"object\": \"\\\"Virginia DeMarce and\\\"@en\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"354\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Eric Flint is the author of '1634: The Ram Rebellion' which can be found as an E book.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion available as an E-Book is written by Eric Flint.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eric_Flint\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"E-book\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eric_Flint\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"E-book\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"355\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion was written by Eric Flint and can be found in hardcover.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The book titled 1634: The Ram Rebellion is a hardcover book by Eric Flint.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion, available in hardcover was written by Eric Flint.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eric_Flint\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eric_Flint\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"356\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACM Transactions on Information Systems with the CODEN ATISET is abbreviated as ACM Trans. Inf. Syst.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACM Transactions on Information Systems (abbreviated to ACM Trans. Inf. Syst.) has the CODEN code \\\"ATISET\\\".\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    },\n                    {\n                        \"object\": \"\\\"ATISET\\\"\",\n                        \"property\": \"CODEN_code\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"ATISET\\\"\",\n                                \"property\": \"coden\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"ATISET\\\"@en\",\n                                \"property\": \"coden\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"ATISET\\\"@en\",\n                                \"property\": \"coden\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"ATISET\\\"\",\n                                \"property\": \"coden\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"357\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AIDS journal is from the United Kingdom whose leader is Elizabeth II.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal was published in the United Kingdom whose leader is Elizabeth II.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal was published in the United Kingdom, where the leader is Elizabeth II.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"358\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice was written by J. V. Jones and has the ISBN number 0-7653-0633-6.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"J.V. Jones authored A Fortress of Grey Ice, which has the ISBN number 0-7653-0633-6.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"J. V. Jones is the author of \\\"A Fortress of Grey Ice,\\\" ISBN number 0-7653-0633-6.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"J._V._Jones\",\n                        \"property\": \"author\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    },\n                    {\n                        \"object\": \"\\\"0-7653-0633-6\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"J._V._Jones\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            },\n                            {\n                                \"object\": \"\\\"0-7653-0633-6\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"359\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance has the ISBN number 0-7156-3648-0 and is in print.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance with ISBN 0-7156-3648-0 is available in print.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISBN number of the currently in print book, \\\"A Glastonbury Romance,\\\" is 0-7156-3648-0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    },\n                    {\n                        \"object\": \"\\\"0-7156-3648-0\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            },\n                            {\n                                \"object\": \"\\\"0-7156-3648-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"360\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance identified by ISBN 0-7156-3648-0 was published in hardcover.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"\\\"A Glastonbury Romance \\\" can be found in hardcover with the ISBN number 0-7156-3648-0.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A hardcover copy of A Glastonbury Romance is available with the ISBN number 0-7156-3648-0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    },\n                    {\n                        \"object\": \"\\\"0-7156-3648-0\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            },\n                            {\n                                \"object\": \"\\\"0-7156-3648-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"361\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance has 1174 pages and is available in print.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance, currently in print, has 1174 pages.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance, 1174 pages, is available in print.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1174\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1174\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"362\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISBN number of A Long Long Way is 0-670-03380-4, and its OCLC number is 57392246.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The OCLC number of A Long Long Way is 57392246 and the The ISBN number is 0-670-03380-4.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISBN number of A Long Long Way is 0-670-03380-4; the OCLC number is 57392246.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"57392246\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"\\\"0-670-03380-4\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"57392246\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"\\\"0-670-03380-4\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"57392246\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"\\\"0-670-03380-4\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"363\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer is published in the United States where the Asian Americans are one of the ethnic groups.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer is published in the United States, which includes among its ethnic groups Asian Americans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer is published in the United States, where many Asian Americans live,.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Loyal_Character_Dancer\"\n                    },\n                    {\n                        \"object\": \"Asian_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Loyal_Character_Dancer\"\n                            },\n                            {\n                                \"object\": \"Asian_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"364\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer is published by Soho Press which is located in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer was published by Soho Press, based in the United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer was published by Soho Press in the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Soho_Press\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"A_Loyal_Character_Dancer\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Soho_Press\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Soho_Press\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"A_Loyal_Character_Dancer\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Soho_Press\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"365\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars was written by Diane Duane with on OCLC number 318875313.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Diane Duane wrote A Wizard of Mars which has the OCLC number of 318875313.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Diane_Duane\",\n                        \"property\": \"author\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"318875313\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Diane_Duane\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"318875313\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"318875313\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"Diane_Duane\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"366\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars is published in Hardcover and has the ISBN number 978-0-15-204770-2.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars was published in hardback and has the ISBN number 978-0-15-204770-2.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars has the ISBN number 978-0-15-204770-2 and was published in hardback.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"367\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars is 560 pages long and has the ISBN number 978-0-15-204770-2.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars has 560 pages and the ISBN number 978-0-15-204770-2.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars with ISBN number \\\"978-0-15-204770-2 contains 560 pages.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"560\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"560\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"368\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir and it's sequel Above the Veil are examples of Austrlian literature.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil, preceded by Aenir, is from the country of Australia.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Australians\",\n                        \"property\": \"country\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"Aenir\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"Above_the_Veil\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Australians\",\n                                \"property\": \"country\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"Above_the_Veil\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Australians\",\n                                \"property\": \"country\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"Above_the_Veil\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"369\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil followed the book Aenir and is written in English.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The book Aenir was followed up by Above the Veil, which is written in English.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The novel Aenir was followed by Above the Veil written in English.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"Above_the_Veil\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Above_the_Veil\",\n                                \"property\": \"followedBy\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Above_the_Veil\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Above_the_Veil\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"370\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil is the sequel to Aenir, which was written after Castle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil is the sequel to Aenir, which was preceded by the novel Castle.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil was preceded by Aenir which was preceded by the novel Castle.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Aenir\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"Castle_(novel)\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Castle_(novel)\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Castle_(novel)\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"371\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Mathematica Hungarica is the publisher of Springer Science+Business Media, founded by Julius Springer.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Springer Science and Business Media, founded by Julius Springer, publishes Acta Mathematica Hungarica.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Springer Science+Business Media founded by Julius Springer is the publisher of Acta Mathematica Hungarica.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Springer_Science+Business_Media\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    },\n                    {\n                        \"object\": \"Julius_Springer\",\n                        \"property\": \"founder\",\n                        \"subject\": \"Springer_Science+Business_Media\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Springer_Science+Business_Media\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"Julius_Springer\",\n                                \"property\": \"founder\",\n                                \"subject\": \"Springer_Science+Business_Media\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"372\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Administrative Science Quarterly has a Coden code of \\\"ASCQAG\\\" and the abbreviation of Admin.Sci.Q.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Administrative Science Quarterly, abbreviated Admin. Sci. Q, has a Coden code of \\\"ASCQAG\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The code for Administrative Science Quarterly (abbreviated as Admin. Sci. Q) is ASCQAG.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"ASCQAG\\\"\",\n                        \"property\": \"CODEN_code\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    },\n                    {\n                        \"object\": \"\\\"Admin. Sci. Q.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Admin. Sci. Q.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"\\\"ASCQAG\\\"@en\",\n                                \"property\": \"coden\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"ASCQAG\\\"@en\",\n                                \"property\": \"coden\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"\\\"Admin. Sci. Q.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Admin. Sci. Q.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"\\\"ASCQAG\\\"\",\n                                \"property\": \"coden\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Admin. Sci. Q.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"\\\"ASCQAG\\\"\",\n                                \"property\": \"coden\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"373\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University is affiliated with the Association of Public and Land grant Universities and published Administrative Science Quarterly.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University, affiliated with the Association of Public and Land grant Universities, is publisher of Administrative Science Quarterly.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University, affiliated with the Association of Public and Land grant Universities, is the publisher of the Administrative Science Quarterly.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cornell_University\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    },\n                    {\n                        \"object\": \"Association_of_Public_and_Land-grant_Universities\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Cornell_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cornell_University\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"Association_of_Public_and_Land-grant_Universities\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Cornell_University\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Cornell_University\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"Association_of_Public_and_Land-grant_Universities\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Cornell_University\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"374\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Written by Garth Nix, Aenir, has the ISBN number of \\\"0-439-17684-0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir was written by Garth Nix and has the ISBN number of 0-439-17684-0.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir was written by Garth Nix and has the ISBN number 0-439-17684-0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Garth_Nix\",\n                        \"property\": \"author\",\n                        \"subject\": \"Aenir\"\n                    },\n                    {\n                        \"object\": \"\\\"0-439-17684-0\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Garth_Nix\",\n                                \"property\": \"author\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"\\\"0-439-17684-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"375\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians is published in Hardcover and has the ISBN number 0-439-92550-9.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The hardcover edition of, \\\"Alcatraz Versus the Evil Librarians\\\", has ISBN number 0-439-92550-9.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"\\\"0-439-92550-9\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"\\\"0-439-92550-9\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"376\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarian, which is identified by ISBN 0-439-92550-9, has 320 pages.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians has the ISBN number 0-439-92550-9 and is 320 pages long.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISBN number of the 320-page long Alcatraz Versus the Evil Librarians is 0-439-92550-9.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"320\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"\\\"0-439-92550-9\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"320\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"\\\"0-439-92550-9\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"377\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AIDS (journal) comes under the academic discipline HIV which belongs to the family Orthoretrovirinae.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS(journal) is the academic discipline of HIV, a disease part of the Orthoretrovirinae family.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AIDS (journal) comes under the academic discipline HIV which is part of the family of orthoretrovirinae.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Orthoretrovirinae\",\n                        \"property\": \"family\",\n                        \"subject\": \"HIV\"\n                    },\n                    {\n                        \"object\": \"HIV\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"AIDS_(journal)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Orthoretrovirinae\",\n                                \"property\": \"family\",\n                                \"subject\": \"HIV\"\n                            },\n                            {\n                                \"object\": \"HIV\",\n                                \"property\": \"academicDiscipline\",\n                                \"subject\": \"AIDS_(journal)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"378\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice is from the United States where the language is English.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice is from the United States, which has English as one of its languages.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"2\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"379\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene Regional Airport serves the city of Abilene which is part of Taylor County,Texas, in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene Regional Airport serves the city of Abilene which is part of Taylor County, Texas, in the United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Abilene regional airport serves Abilene, Texas, which is a part of Taylor County, Texas in the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Abilene,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Taylor_County,_Texas\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Abilene,_Texas\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Abilene,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Taylor_County,_Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"city\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Taylor_County,_Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"city\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Taylor_County,_Texas\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Taylor_County,_Texas\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"380\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional Airport has a runway length of 1219.0 and serves the cities of Saranac Lake and Lake Placid, New York.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional Airport serves the city of Saranac Lake, New York and the residents of Lake Placid and has a runway that's 1,219 long.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1219.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Adirondack_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Lake_Placid,_New_York\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Adirondack_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Saranac_Lake,_New_York\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Adirondack_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1219.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Lake_Placid,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Saranac_Lake,_New_York\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Lake_Placid,_New_York\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1219.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Saranac_Lake,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1218.59\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Lake_Placid,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Saranac_Lake,_New_York\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Lake_Placid,_New_York\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1218.59\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Saranac_Lake,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"381\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 14L/32R runway of the Adolfo Suarez Madrid - Barajas Airport in Madrid has a length of 4100.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid-Barajas Airport is in Madrid; its runway name is 14L/32R and its runway length is 4100.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adolfo Suarez Madrid-Barajas Airport is in Madrid. Its runway, called 14L/32R has length of 4100.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"4100.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"Madrid\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"14L/32R\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"4099.86\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"Madrid\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"14L/32R\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"382\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Indian Air Force in India, operates Agra Airport which uses VIAG as its ICAO location identifier.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport, located in India, is operated by the Indian Air Force, and has an ICAO identifier is VIAG.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"location\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Indian_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"VIAG\\\"\",\n                        \"property\": \"ICAO_Location_Identifier\",\n                        \"subject\": \"Agra_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Indian_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"VIAG\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Agra_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Indian_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"(Location of airport in India)\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Agra_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"383\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Operated by the United States Air Force, Al Asad Airbase, in Iraq, has a runway length of 3078.48 metres.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The USAF operated the Al Asad Airbase, located in iraq, with a length of 3078.48.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Iraq\",\n                        \"property\": \"location\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"3078.48\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Iraq\",\n                                \"property\": \"location\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"\\\"3078.48\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"384\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by the United States Air Force which was involved in the Invasion of Grenada and the Korean war.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Invasion_of_Grenada\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Korean_War\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Invasion_of_Grenada\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Korean_War\",\n                                \"property\": \"battles\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Invasion_of_Grenada\",\n                                \"property\": \"battles\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Korean_War\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"385\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad Airbase is operated by the United States Air Force which has the Invasion of Grenada as one of its noted battles as well as The Operation Enduring Freedom.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The USAF operates Al Asad Airbase. They fought in the Invasion of Grenada and The Operation Enduring Freedom.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The US Air Force is the operating organisation for Al Asad Airbase, used in battles such as Invasion of Grenada and the operation enduring freedom.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Invasion_of_Grenada\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Operation_Enduring_Freedom\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Invasion_of_Grenada\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Operation_Enduring_Freedom\",\n                                \"property\": \"battles\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"386\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force who is the operating organisation for Al Asad airbase fought battles in the Korean war and also in Operation Enduring Freedom.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The US Air Force, veteran of the Korean war and Operation Enduring Freedom, operated Al Asad Airbase,.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Korean_War\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Operation_Enduring_Freedom\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Korean_War\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Operation_Enduring_Freedom\",\n                                \"property\": \"battles\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"387\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 1st runway at Alderney Airport is made from Poaceae and has a length of 733.0.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"1st_runway_SurfaceType\",\n                        \"subject\": \"Alderney_Airport\"\n                    },\n                    {\n                        \"object\": \"733.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Alderney_Airport\"\n                    },\n                    {\n                        \"object\": \"Alderney\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Alderney_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r1Surface\",\n                                \"subject\": \"Alderney_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"733.044\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alderney_Airport\"\n                            },\n                            {\n                                \"object\": \"Alderney\",\n                                \"property\": \"city\",\n                                \"subject\": \"Alderney_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r1Surface\",\n                                \"subject\": \"Alderney_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"733.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alderney_Airport\"\n                            },\n                            {\n                                \"object\": \"Alderney\",\n                                \"property\": \"city\",\n                                \"subject\": \"Alderney_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"388\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Located in Wilson Township, Alpena County, Michigan, Alpena County Regional Airport has an elevation of 210 metres above sea level and a runway length of 1,533 metres.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aplena County Regional Airport; is elevated 210 metres above sea level, has a runway length of 1,533 metres and is located in Wilson Township, Alpena County, Michigan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alpena County Regional Airport is located in the Wilson Township, Alpena County, Michigan. It is 210 m above sea level and its runway length is 1533 feet.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Wilson_Township,_Alpena_County,_Michigan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"1533.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"210\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Wilson_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1532.53\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Wilson_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1533.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.312\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Wilson_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1533.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Wilson_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1532.53\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.312\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"389\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amsterdam airport, Schipol which serves the city of Amsterdam is located at -3.3528 metres above sea level and has a runway length of 3500.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Amsterdam\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    },\n                    {\n                        \"object\": \"3500.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    },\n                    {\n                        \"object\": \"-3.3528\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Amsterdam\",\n                                \"property\": \"city\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"3500.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"-3.3528\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"390\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas (United States), where Houston is the largest city.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is in Texas, United States. Houston is the largest city in Texas.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Andrews County Airport is located in Texas, whose largest city is Houston.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Houston\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Houston\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"391\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International airport is located in Icolo e Bengo Angola, it has a runway length of 4000ft.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located at Ícolo e Bengo, Angola and is 4000 in length.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport, located in Icolo e Bengo, Angola has a runway length of 4000.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ícolo_e_Bengo\",\n                        \"property\": \"location\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Angola\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"4000.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Angola_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"3999.89\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"4000.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"392\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located at Ícolo e Bengo in Angola and the runway is named \\\"south runway\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located at Ícolo e Bengo, Angola and the runway is known as \\\"South Runway\\\".\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ícolo_e_Bengo\",\n                        \"property\": \"location\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Angola\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"\\\"South Runway\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Angola_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"South Runway\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"393\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport which has an elevation of 12.0 metres above sea level is owned and operated by the Flemish government.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport which is 12 meters above sea level is owned by Flemish Region and operated by the Flemish government.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Flemish_Government\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Flemish_Region\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"12.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Flemish_Government\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Flemish_Region\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"12.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Flemish_Government\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Flemish_Region\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"11.8872\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"394\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish department of Mobility and Public Works is the operating organisation and owner of Antwerp International Airport that serves the city of Antwerp.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport; serves the city of Antwerp, is in the Flemish region and is operated by the Flemish department of mobility and public works.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport serves Antwerp. It is owned by the Flemish Region and operated by the Flemish department of Mobility and Public Works.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Flemish_Region\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Antwerp\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Flemish_Region\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Antwerp\",\n                                \"property\": \"city\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"395\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International airport serves the city of Appleton which is part of Kimberly, Wisconsin, as is Little Chute.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appletone International Airport served the city of Appleton, which is part of a little chute in Kimberly, Wisconsin.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Kimberly,_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Appleton,_Wisconsin\"\n                    },\n                    {\n                        \"object\": \"Little_Chute,_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Appleton,_Wisconsin\"\n                    },\n                    {\n                        \"object\": \"Appleton,_Wisconsin\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Kimberly,_Wisconsin\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Little_Chute,_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Kimberly,_Wisconsin\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Little_Chute,_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Kimberly,_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Little_Chute,_Wisconsin\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Kimberly,_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Little_Chute,_Wisconsin\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Appleton,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"396\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Appleton International Airport is in Greenville which is part of Clayton Winnebago County, Wisconsin, in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International Airport is located in Greenville, Wisconsin, USA, which is part of Clayton, Winnebago county.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Appleton International Airport is in Greenville, Clayton, Winnebago County, Wisconsin, United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greenville,_Wisconsin\",\n                        \"property\": \"location\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Greenville,_Wisconsin\"\n                    },\n                    {\n                        \"object\": \"Clayton,_Winnebago_County,_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Greenville,_Wisconsin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Greenville,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Clayton,_Winnebago_County,_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Greenville,_Wisconsin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"397\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 3rd runway at Ardmore Airport (New Zealand) is made of Poaceae which is of the order Poales and belongs to the division of flowering plants.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 3rd runway at Ardmore Airport (New Zealand) is made of Poaceae which is part of the Poales order and is in the division of flowering plants.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"3rd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"Flowering_plant\",\n                        \"property\": \"division\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Poales\",\n                        \"property\": \"order\",\n                        \"subject\": \"Poaceae\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r3Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Flowering_plant\",\n                                \"property\": \"division\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Poales\",\n                                \"property\": \"order\",\n                                \"subject\": \"Poaceae\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"398\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ashgabat International Airport (located in Ashgabat) is elevated 211 metres above sea level and has a runway length of 3800.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ashgabat is the location of Ashgabat International Airport which has a runway length of 3800.0 and is 211 metres above sea level.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ashgabat International airport is located in Ashgabat at 211 metres above sea level and has a runway length of 3800.0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ashgabat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    },\n                    {\n                        \"object\": \"3800.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    },\n                    {\n                        \"object\": \"211\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ashgabat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3799.94\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.922\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ashgabat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3800.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"211.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ashgabat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3799.94\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"211.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ashgabat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3800.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.922\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"399\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Athens International Airport serves the city of Athens, in Greece where Alexis Tsipras is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport serves the city of Athens in Greece where Alexis Tsipras is the leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Athens International Airport serves the city of Athens in Greece, a country led by Alexis Tsipras.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Athens\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Athens_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Greece\",\n                        \"property\": \"country\",\n                        \"subject\": \"Athens\"\n                    },\n                    {\n                        \"object\": \"Alexis_Tsipras\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Greece\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Greece\",\n                                \"property\": \"country\",\n                                \"subject\": \"Athens\"\n                            },\n                            {\n                                \"object\": \"Alexis_Tsipras\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Greece\",\n                                \"property\": \"country\",\n                                \"subject\": \"Athens\"\n                            },\n                            {\n                                \"object\": \"Alexis_Tsipras\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            },\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"city\",\n                                \"subject\": \"Athens_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Athens_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Greece\",\n                                \"property\": \"country\",\n                                \"subject\": \"Athens\"\n                            },\n                            {\n                                \"object\": \"Alexis_Tsipras\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Greece\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"400\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlantic City International Airport, which has a runway with the name is 4/22, is located in Egg Harbor Township, in New Jersey, United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlantic City International Airport is in Egg Harbor Township, New Jersey, United States and has the runway name 4/22.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"4/22\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Egg_Harbor_Township,_New_Jersey\",\n                        \"property\": \"location\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"4/22\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Egg_Harbor_Township,_New_Jersey\",\n                                \"property\": \"location\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"401\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport serves the city of Antwerp in Belgium where the leader is Phillipe of Belgium.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp, Belgium, is led by Philippe of Belgium and served by Antwerp International Airport.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Philippe_of_Belgium\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Belgium\"\n                    },\n                    {\n                        \"object\": \"Antwerp\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Belgium\",\n                        \"property\": \"country\",\n                        \"subject\": \"Antwerp\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Philippe_of_Belgium\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Belgium\"\n                            },\n                            {\n                                \"object\": \"Antwerp\",\n                                \"property\": \"city\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Belgium\",\n                                \"property\": \"country\",\n                                \"subject\": \"Antwerp\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Philippe_of_Belgium\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Belgium\"\n                            },\n                            {\n                                \"object\": \"Antwerp\",\n                                \"property\": \"city\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Belgium\",\n                                \"property\": \"country\",\n                                \"subject\": \"Antwerp\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"402\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Poaceae is in the class Monocotyledon and the order of Commelinids. It is also the surface type of the second runway of Ardmore Airport, New Zealand.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 2nd runway at Ardmore Airport (New Zealand) is made of Poaceae which belongs to the order of Commelinids and the class of Monocotyledon.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Monocotyledon\",\n                        \"property\": \"class\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Commelinids\",\n                        \"property\": \"order\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"2nd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Monocotyledon\",\n                                \"property\": \"class\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Commelinids\",\n                                \"property\": \"order\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r2Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"403\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean was under commander David Scott on Nasa's Apollo 12 mission.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean was a member of the NASA operated Apollo 12 crew commanded by David Scott.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"David Scott was the commander of the NASA operated Apollo 12 flight mission on which the crew included Alan Bean.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"David_Scott\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_12\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"David_Scott\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_12\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"404\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Dianne Feinstein is a senator in California where Alan Shepard died on July 21 1998.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shephard died on the 21st of July, 1998 in California (whose Senator was Dianne Feinstein).\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1998-07-21\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Dianne_Feinstein\",\n                        \"property\": \"senators\",\n                        \"subject\": \"California\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1998-07-21\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Dianne_Feinstein\",\n                                \"property\": \"senators\",\n                                \"subject\": \"California\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"405\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin, also called Edwin E. Aldrin Jr., graduated in 1963 from MIT with a Sc.D. and was a crew member on Apollo 11.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin, whose real name was Edwin E. Aldrin, Jr., graduated from Massachusetts Institute of Technology in 1963 with a doctorate in Science and later became a crew member of Apollo 11.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin (AKA Edwin E Aldrin Jr) graduated in 1963 from MIT with a Sc.D. was a crew member of Apollo 11.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin, whose real name is Edwin E. Aldrin Jr., was a member of Apollo 11 who in 1963 graduated with a Sc. D. from MIT.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Edwin E. Aldrin, Jr.\\\"\",\n                        \"property\": \"alternativeNames\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Edwin E. Aldrin, Jr.\\\"@en\",\n                                \"property\": \"alternativeNames\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"406\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin, who was a member of the Apollo 11 crew and spent 52 minutes in space, was born in Glen Ridge New Jersey.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Born in Glen Ridge New Jersey, Apollo 11 crewman Buzz Aldrin spent 52 minutes in space.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Born in Glen Ridge, NJ, Buzz Aldrin spent 52 minutes in space as part of Apollo 11's crew.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"52.0\\\"(minutes)\",\n                        \"property\": \"timeInSpace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"52.0\\\"^^<http://dbpedia.org/datatype/minute>\",\n                                \"property\": \"timeInSpace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"407\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard, who was awarded the US Navy Distinguished Service Medal died in California, incidentally a Smilodon is a fossil from California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shephard was awarded the Distinguished Service Medal by United States Navy and died in California (where a Smilodon fossil was found).\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard, who was awarded the Distinguished Service Medal by the US Navy, died in California where the Smilodon fossil was found.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Smilodon\",\n                        \"property\": \"fossil\",\n                        \"subject\": \"California\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                        \"property\": \"awards\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Smilodon\",\n                                \"property\": \"fossil\",\n                                \"subject\": \"California\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                                \"property\": \"awards\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"408\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See who was selected by NASA in 1962 died on 28 February 1966 in St Louis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See, ex NASA worker since 1962, died in St Louis on the 28th of February 1966.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was selected by NASA in 1962. He died in St. Louis on 1966-02-28.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1966-02-28\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"1962\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1966-02-28\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"1962\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"409\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See, born July 23 1927 in Dallas, has died.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See is deceased, was born on 23rd July 1927 in Dallas.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See (deceased) was born in Dallas 1927-07-23.\",\n                        \"xml_id\": \"Id3\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas on July 23, 1927. He is now deceased.\",\n                        \"xml_id\": \"Id4\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1927-07-23\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1927-07-23\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"410\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Born on October 17th, 1933 in British Hong Kong, William Anders would serve as a crew member on Apollo 8.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders who was born on 17 October 1933 in British Hong Kong later served as a crew member of Apollo 8.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders, who was born in British Hong Kong on the 17th of October 1933, crewed Apollo 8.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1933-10-17\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"British_Hong_Kong\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Apollo_8\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"William_Anders\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1933-10-17\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"British_Hong_Kong\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Apollo_8\",\n                                \"property\": \"mission\",\n                                \"subject\": \"William_Anders\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"411\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street is located in South Africa (Cyril Ramaphosa is one of the leaders), the capital of which is Cape Town.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"South Africa is the location of 11 Diagonal Street. The capital is Cape Town and the leader is Cyril Ramaphosa.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cyril Ramaphosa leads South Africa, whose capital, Cape Town, houses 11 Diagonal Street.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"South_Africa\",\n                        \"property\": \"location\",\n                        \"subject\": \"11_Diagonal_Street\"\n                    },\n                    {\n                        \"object\": \"Cape_Town\",\n                        \"property\": \"capital\",\n                        \"subject\": \"South_Africa\"\n                    },\n                    {\n                        \"object\": \"Cyril_Ramaphosa\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"South_Africa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Cape_Town\",\n                                \"property\": \"capital\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"Cyril_Ramaphosa\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"412\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street is located in South Africa, a country in which coloureds are one of the ethnic groups and Jacob Zuma is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street is located in South Africa, populated by Coloured people and led by Jacob Zuma.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The address, 11 Diagonal Street is located in South Africa where Jacob Zuma is a leader and some coloured people live.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"South_Africa\",\n                        \"property\": \"location\",\n                        \"subject\": \"11_Diagonal_Street\"\n                    },\n                    {\n                        \"object\": \"Jacob_Zuma\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"South_Africa\"\n                    },\n                    {\n                        \"object\": \"Coloured\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"South_Africa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Jacob_Zuma\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"Coloured\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"413\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street is in South Africa where the leader is Jacob Zuma. An ethnic group found there are white South Africans.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The white South Africans are an ethnic group of the country where Jacob Zuma is leader and where 11 Diagonal Street is located.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"South_Africa\",\n                        \"property\": \"location\",\n                        \"subject\": \"11_Diagonal_Street\"\n                    },\n                    {\n                        \"object\": \"Jacob_Zuma\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"South_Africa\"\n                    },\n                    {\n                        \"object\": \"White_South_African\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"South_Africa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Jacob_Zuma\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"White_South_African\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"414\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Frank G Jackson is the leader of Cleveland, United States where 200 Public Square is located.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"200 Public Square is located in Cleveland, United States, where one of the leaders is Frank G Jackson.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cleveland\",\n                        \"property\": \"location\",\n                        \"subject\": \"200_Public_Square\"\n                    },\n                    {\n                        \"object\": \"Frank_G._Jackson\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Cleveland\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Cleveland\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cleveland\",\n                                \"property\": \"location\",\n                                \"subject\": \"200_Public_Square\"\n                            },\n                            {\n                                \"object\": \"Frank_G._Jackson\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Cleveland\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Cleveland\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"415\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"250 Delaware Avenue is located in Buffalo, Erie County, New York.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"250 Delaware avenue is in Buffalo, Erie County, New York.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Buffalo,_New_York\",\n                        \"property\": \"location\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"Erie_County,_New_York\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Buffalo,_New_York\"\n                    },\n                    {\n                        \"object\": \"New_York\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Buffalo,_New_York\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Buffalo,_New_York\",\n                                \"property\": \"location\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"Erie_County,_New_York\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Buffalo,_New_York\"\n                            },\n                            {\n                                \"object\": \"New_York\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Buffalo,_New_York\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"416\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North LaSalle is located in Chicago (the leader of which is Rahm Emanuel), United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Rahm Emanuel is a leader in Chicago, US where 300 North LaSalle is located.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North Lasalle is in Chicago, U.S. Rahm Emanuel leads Chicago.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chicago\",\n                        \"property\": \"location\",\n                        \"subject\": \"300_North_LaSalle\"\n                    },\n                    {\n                        \"object\": \"Rahm_Emanuel\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Chicago\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Chicago\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chicago\",\n                                \"property\": \"location\",\n                                \"subject\": \"300_North_LaSalle\"\n                            },\n                            {\n                                \"object\": \"Rahm_Emanuel\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Chicago\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Chicago\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"417\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Located in Dublin, the 3Arena whose architect was HOK SVE) was completed in December 2008.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The architects of the 3Arena in Dublin was HOK SVE and it was completed in December 2008.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena, located in Dublin, was designed by HOK SVE and completed December 2008.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dublin\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"\\\"HOK SVE\\\"\",\n                        \"property\": \"architect\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"\\\"December 2008\\\"\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"December 2008\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"HOK SVE\\\"@en\",\n                                \"property\": \"architect\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"HOK SVE\\\"@en\",\n                                \"property\": \"architect\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"December 2008\\\"@en\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"418\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Populous was the architect of 3Arena in Dublin which was completed in December 2008.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The company Populous were the architects who designed the 3Arena in Dublin which was completed in December 2008.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 3Arena in Dublin was designed by architects from the Populous company and completed in December 2008.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dublin\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"Populous_(company)\",\n                        \"property\": \"architect\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"\\\"December 2008\\\"\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Populous_(company)\",\n                                \"property\": \"architect\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"December 2008\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Populous_(company)\",\n                                \"property\": \"architect\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"\\\"December 2008\\\"@en\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"419\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The owner of 3Arena is Live Nation Entertainment which is located in Dublin, Ireland.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena is owned by Live Nation Entertainment, and is located in Dublin, Republic of Ireland.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena in Dublin, Republic of Ireland is owned by Live Nation Entertainment.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Live_Nation_Entertainment\",\n                        \"property\": \"owner\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"Republic_of_Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Dublin\"\n                    },\n                    {\n                        \"object\": \"Dublin\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Live_Nation_Entertainment\",\n                                \"property\": \"owner\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"420\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Marriott International is the tenant of the AC Hotel Bella Sky Copenhagen, Denmark, which was designed by the architects of the 3XN firm.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AC Hotel Bella Sky is in Copenhagen, Denmark, Marriott International Hotel because 3XN was the architect.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"location\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"Marriott_International\",\n                        \"property\": \"tenant\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"3XN\",\n                        \"property\": \"architect\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"location\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"Marriott_International\",\n                                \"property\": \"operator\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"3XN\",\n                                \"property\": \"architect\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"421\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"James Pain was the architect of Adare Manor which was completed in 1862 and is owned by J P McManus.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"James Pain was the architect of Adare Manor which was completed in 1862 and owed by J P McManus.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"James Pain designed Adare Manor that was completed in 1862. The owner is J.P. McManus.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1862\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"Adare_Manor\"\n                    },\n                    {\n                        \"object\": \"James_Pain\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Adare_Manor\"\n                    },\n                    {\n                        \"object\": \"J._P._McManus\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Adare_Manor\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"1862\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"Adare_Manor\"\n                            },\n                            {\n                                \"object\": \"James_Pain\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Adare_Manor\"\n                            },\n                            {\n                                \"object\": \"J._P._McManus\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Adare_Manor\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"422\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Government of Addis Ababa is the current tenant of the Addis Ababa City Hall which is 42 metres high and has a floor area of 140000.0 (square metres).\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Government of Addis Ababa is the current tenants of the Addis Ababa city hall. which has a floor area of 140000.0 square metres. It is 42 m high.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addis Ababa City Hall, which houses the Government of Addis Ababa, is 42 m high and has a floor area of140000.0 square metres.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Government of Addis Ababa\\\"\",\n                        \"property\": \"currentTenants\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    },\n                    {\n                        \"object\": \"140000.0 (square metres)\",\n                        \"property\": \"floorArea\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"42 m\\\"\",\n                        \"property\": \"height\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Government of Addis Ababa\\\"@en\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"140000.0\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"42.0\\\"^^xsd:double\",\n                                \"property\": \"height\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Government of Addis Ababa\\\"@en\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"42 m\\\"@en\",\n                                \"property\": \"height\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"140000.0\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Government of Addis Ababa\\\"@en\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"42 m\\\"@en\",\n                                \"property\": \"height\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"140000.0\\\"^^<http://dbpedia.org/datatype/squareMetre>\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Government of Addis Ababa\\\"@en\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"140000.0\\\"^^<http://dbpedia.org/datatype/squareMetre>\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"42.0\\\"^^xsd:double\",\n                                \"property\": \"height\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"423\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adisham hall, which is located in Sri Lanka, was completed in 1931 and architectural style is Tudor Revival.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aidsham Hall, completed in 1931 and located in Sri Lanka, is in the Tudor Revival architecture style.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall, with its Tudor Revival style of architecture, was built in 1931 in Sri Lanka.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Tudor_Revival_architecture\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"1931\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"Adisham_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Tudor_Revival_architecture\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1931\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"424\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akita Museum of Art has a floor area of 3746.66 square metres over 3 floors and was inaugurated on 28 September 2013.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akita Museum of Art, inaugurated September 28, 2013 has 3 floors and a floor area of 3746.66 square metres.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"3\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    },\n                    {\n                        \"object\": \"\\\"2013-09-28\\\"\",\n                        \"property\": \"inaugurationDate\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    },\n                    {\n                        \"object\": \"3746.66 (square metres)\",\n                        \"property\": \"floorArea\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"3\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"2013-09-28\\\"^^xsd:date\",\n                                \"property\": \"openingDate\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"3746.66\\\"^^<http://dbpedia.org/datatype/squareMetre>\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"2013-09-28\\\"^^xsd:date\",\n                                \"property\": \"openingDate\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"3\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"3746.66\\\"^^<http://dbpedia.org/datatype/squareMetre>\",\n                                \"property\": \"Building/floorArea\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"2013-09-28\\\"^^xsd:date\",\n                                \"property\": \"openingDate\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"3\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"3746.66\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"3\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"2013-09-28\\\"^^xsd:date\",\n                                \"property\": \"openingDate\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"3746.66\\\"^^<http://dbpedia.org/datatype/squareMetre>\",\n                                \"property\": \"Building/floorArea\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"2013-09-28\\\"^^xsd:date\",\n                                \"property\": \"openingDate\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"3\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"3746.66\\\"^^<http://dbpedia.org/datatype/squareMetre>\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"3\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"2013-09-28\\\"^^xsd:date\",\n                                \"property\": \"openingDate\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"\\\"3746.66\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"425\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akita Museum or art is located in Akita, within the Akita Prefecture, Japan.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Akita,_Akita\",\n                        \"property\": \"location\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    },\n                    {\n                        \"object\": \"Akita_Prefecture\",\n                        \"property\": \"location\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    },\n                    {\n                        \"object\": \"Japan\",\n                        \"property\": \"country\",\n                        \"subject\": \"Akita,_Akita\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Akita,_Akita\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"Akita_Prefecture\",\n                                \"property\": \"location\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"Japan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Akita,_Akita\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Akita_Prefecture\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"Japan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Akita,_Akita\"\n                            },\n                            {\n                                \"object\": \"Akita,_Akita\",\n                                \"property\": \"location\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"426\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The College of William and Mary is the owner of the Alan B. Miller Hall in Virginia. The building was begun on 30 March 2007.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The College of William and Mary is the owner of the Alan B. Miller Hall in Virginia which began construction on 30 March, 2007.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The College of William and Mary is the owner of the Alan B. Miller Hall, located in Virginia, and the start date of building was in 30th March 2007.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Virginia\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"College_of_William_&_Mary\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"30 March 2007\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"College_of_William_&_Mary\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"30 March 2007\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"427\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Robert Gates is the chancellor of The College of William and Mary which is owned by Alan B Miller Hall and is located in Virginia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B. Miller Hall, located in Virginia, is owned by The College of William and Mary; whose chancellor is Robert Gates.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Virginia\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"College_of_William_&_Mary\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"Robert_Gates\",\n                        \"property\": \"chancellor\",\n                        \"subject\": \"College_of_William_&_Mary\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"College_of_William_&_Mary\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"Robert_Gates\",\n                                \"property\": \"chancellor\",\n                                \"subject\": \"College_of_William_&_Mary\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"428\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Mason School of Business in the US are the current tenants of Alan B Miller Hall in Virginia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B Miller Hall is in Virginia, U.S. and houses The Mason School of Business .\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Virginia\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Mason_School_of_Business\"\n                    },\n                    {\n                        \"object\": \"Mason_School_of_Business\",\n                        \"property\": \"currentTenants\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Mason_School_of_Business\"\n                            },\n                            {\n                                \"object\": \"Mason_School_of_Business\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"429\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B. Miller Hall, the building of which began 30 March, 2007, is located in Williamsburg, Virginia and owned by the College of William and Mary.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan B. Miller Hall's building, started on 30th March 2007, is located in Williamsburg, Virginia, and owned by the College of William and Mary.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Alan B. Miller Hall, owned by The College of William and Mary, is in Williamsburg, Virginia and was opened on the 30th March 2007.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"College_of_William_&_Mary\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"Williamsburg,_Virginia\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"30 March 2007\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"College_of_William_&_Mary\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"Williamsburg,_Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"30 March 2007\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"430\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 476 bed Ampara Hospital is located in Ampara District, Sri Lanka.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital, which has 476 beds, is located in the Ampara District of Sri Lanka.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Ampara_District\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"476\",\n                        \"property\": \"bedCount\",\n                        \"subject\": \"Ampara_Hospital\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ampara_District\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"\\\"476\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"bedCount\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"\\\"Sri Lanka\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Ampara_District\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"\\\"476\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"bedCount\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Ampara_District\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"476\",\n                                \"property\": \"beds\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ampara_District\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"476\",\n                                \"property\": \"beds\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"\\\"Sri Lanka\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"431\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is in Eastern Province, Sri Lanka. Ranil Wickremesinghe is a leader there.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sri Lanka, led by Ranil Wickremesinghe, is home to Ampara Hospital in the Eastern Province state.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Ranil_Wickremesinghe\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Eastern_Province,_Sri_Lanka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Ampara_Hospital\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Ranil_Wickremesinghe\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Eastern_Province,_Sri_Lanka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"432\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asher and Mary Isabelle Richardson House located on US Route 83 and built in 1911 was added to the National Register of Historic Places, on 22nd November 1988.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asher and Mary Isabelle Robinson House on U.S. Route 83 was constructed in 1911 and added to the National Register of Historic Places on 22 November 1988.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asher and Mary Isabelle Richardson House on U.S. Route 83 was constructed in 1911 and added to the National Register of Historic Places on 22 November 1988.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"U.S._Route_83\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                    },\n                    {\n                        \"object\": \"\\\"1988-11-22\\\"\",\n                        \"property\": \"added to the National Register of Historic Places\",\n                        \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                    },\n                    {\n                        \"object\": \"1911\",\n                        \"property\": \"yearOfConstruction\",\n                        \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"U.S._Route_83\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            },\n                            {\n                                \"object\": \"\\\"1988-11-22\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            },\n                            {\n                                \"object\": \"\\\"1911\\\"^^xsd:gYear\",\n                                \"property\": \"yearOfConstruction\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"U.S._Route_83\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            },\n                            {\n                                \"object\": \"1911\",\n                                \"property\": \"built\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            },\n                            {\n                                \"object\": \"\\\"1988-11-22\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asher_and_Mary_Isabelle_Richardson_House\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"433\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds are located in Pacific Grove, California and was added to the National Register of Historic Places on February the 27nd 1987. Its reference number in the National Register of Historic Places is 87000823,.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asilomar Conference Grounds of Pacific Grove in California was added to the National Register of Historic Places on 27th of February in 1987, where the reference number for the National register was 87000823.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds, Pacific Grove, California, was added to the National Register of Historic Places on February the 27nd 1987 with a reference number of 87000823.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pacific_Grove,_California\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"\\\"1987-02-27\\\"\",\n                        \"property\": \"added to the National Register of Historic Places\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"\\\"87000823\\\"\",\n                        \"property\": \"ReferenceNumber in the National Register of Historic Places\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pacific_Grove,_California\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"\\\"1987-02-27\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"\\\"87000823\\\"\",\n                                \"property\": \"nrhpReferenceNumber\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"434\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy Public Baths are located in Asser Levy Place , East 23rd Street and were added to the National Register of Historic Places on 1980-04-23, with the number 80002709.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy Public Baths are located in Asser Levy Place , East 23rd Street and were added to the National Register of Historic Places on 23rd April 1980 with the reference number 80002709 .\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Asser Levy Place and East 23rd Street\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"\\\"80002709\\\"\",\n                        \"property\": \"ReferenceNumber in the National Register of Historic Places\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"\\\"1980-04-23\\\"\",\n                        \"property\": \"added to the National Register of Historic Places\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Asser Levy Place and East 23rd Street\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"\\\"80002709\\\"\",\n                                \"property\": \"nrhpReferenceNumber\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"\\\"1980-04-23\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"435\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy Public Baths are located in New York City, U.S. Manhattan is a borough in New York City.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Public Baths are located in Manhattan, New York City, United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The location of Asser Levy Public Baths is New York City, Manhattan in the U.S.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"New_York_City\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"New_York_City\"\n                    },\n                    {\n                        \"object\": \"Manhattan\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"New_York_City\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"New_York_City\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"New_York_City\"\n                            },\n                            {\n                                \"object\": \"Manhattan\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"New_York_City\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"New_York_City\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"New_York_City\"\n                            },\n                            {\n                                \"object\": \"Manhattan\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"New_York_City\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"436\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"T S Thakur and Sumitra Mahajan are leaders in India where Amdavad ni Gufa is located.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in India where T S Thakur and Sumitra Mahajan are leaders.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"Sumitra_Mahajan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"437\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Auron was created by Walt Simonson and the American, Karl Kesel.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Karl Kesel, an American along with Walt Simonson created the comic book character Auron.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character, Auron, was created by Walt Simonson and the American Karl Kesel.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Karl_Kesel\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Auron_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Americans\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Karl_Kesel\"\n                    },\n                    {\n                        \"object\": \"Walt_Simonson\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Auron_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Karl_Kesel\"\n                            },\n                            {\n                                \"object\": \"Karl_Kesel\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Auron_(comics)\"\n                            },\n                            {\n                                \"object\": \"Walt_Simonson\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Auron_(comics)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Karl_Kesel\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Auron_(comics)\"\n                            },\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Karl_Kesel\"\n                            },\n                            {\n                                \"object\": \"Walt_Simonson\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Auron_(comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"438\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tony Hall, Baron Hall of Birkenhead, is a key person at the BBC which is located in London and broadcast Bananaman.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A key person at the BBC, which is located in London and broadcast Bananaman, is Baron Hall of Birkenhead, Tony Hall.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Tony_Hall,_Baron_Hall_of_Birkenhead\",\n                        \"property\": \"keyPerson\",\n                        \"subject\": \"BBC\"\n                    },\n                    {\n                        \"object\": \"BBC\",\n                        \"property\": \"broadcastedBy\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"London\",\n                        \"property\": \"locationCity\",\n                        \"subject\": \"BBC\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Tony_Hall,_Baron_Hall_of_Birkenhead\",\n                                \"property\": \"keyPeople\",\n                                \"subject\": \"BBC\"\n                            },\n                            {\n                                \"object\": \"BBC\",\n                                \"property\": \"network\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"London\",\n                                \"property\": \"locationCity\",\n                                \"subject\": \"BBC\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"439\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Oddie starred in Bananaman which first aired on 3 October 1983 and was broadcast by STV.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bill Oddie starred in Bananaman which was first aired on 3 October 1983 and broadcast by STV.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman which first aired on October 3rd, 1983 stars Billie Oddie and is broadcasted by STV.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bill_Oddie\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"\\\"1983-10-03\\\"\",\n                        \"property\": \"firstAired\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"\\\"STV\\\"\",\n                        \"property\": \"broadcastedBy\",\n                        \"subject\": \"Bananaman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bill_Oddie\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"\\\"1983-10-03\\\"^^xsd:date\",\n                                \"property\": \"firstAired\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"\\\"STV\\\"@en\",\n                                \"property\": \"network\",\n                                \"subject\": \"Bananaman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"440\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax first appeared in Big Hero 6 and was created by Duncan Rouleau and Steven T. Seagle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax's first film appearance was in Big Hero 6. He was created by Duncan Rouleau and Steven T Seagle.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Duncan Rouleau and Steven T. Seagle created Baymax who had his first movie appearance in Big Hero 6.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Big_Hero_6_(film)\",\n                        \"property\": \"firstAppearanceInFilm\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Duncan_Rouleau\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Steven_T._Seagle\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Baymax\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"\\\"Big Hero 6(2014)\\\"\",\n                                \"property\": \"firstAppearance\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Steven_T._Seagle\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Baymax\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"\\\"Big Hero 6(2014)\\\"\",\n                                \"property\": \"firstAppearance\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Steven_T._Seagle\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"first\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Steven_T._Seagle\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"first\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Steven_T._Seagle\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Baymax\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"441\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The creator of Bibbo Bibbowski, who is often called Bibbo, are Jerry Ordway and Marv Wolfman.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jerry_Ordway\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bibbo_Bibbowski\"\n                    },\n                    {\n                        \"object\": \"Marv_Wolfman\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bibbo_Bibbowski\"\n                    },\n                    {\n                        \"object\": \"\\\"Bo Bibbowski\\\"\",\n                        \"property\": \"fullName\",\n                        \"subject\": \"Bibbo_Bibbowski\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jerry_Ordway\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            },\n                            {\n                                \"object\": \"Marv_Wolfman\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            },\n                            {\n                                \"object\": \"\\\"Bo Bibbowski\\\"@en\",\n                                \"property\": \"fullName\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Jerry_Ordway\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            },\n                            {\n                                \"object\": \"Marv_Wolfman\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            },\n                            {\n                                \"object\": \"\\\"Bo Bibbowski\\\"@en\",\n                                \"property\": \"fullName\",\n                                \"subject\": \"Bibbo_Bibbowski\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"442\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Blockbuster, also known as Roland Desmond, was created by Roger Stern and Tom Lyle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic book character Blockbuster's alter ego is Roland Desmond and he was created by Roger Stern and Tom Lyle.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Roger_Stern\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Blockbuster_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"\\\"Roland Desmond\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Blockbuster_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Tom_Lyle\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Blockbuster_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Roger_Stern\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Blockbuster_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"\\\"Roland Desmond\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Blockbuster_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Tom_Lyle\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Blockbuster_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"443\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Bolt has the alternative name of Larry Bolatinsky and was created by Ernie Colon and Dan Mishkin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bolt, a comic character AKA Larry Bolatinsky was created by Dan Mishkin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Bolt whose alternative name is Larry Bolatinsky was created by Ernie Colon and Dan Mishkin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ernie_Colón\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"\\\"Larry Bolatinsky\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Dan_Mishkin\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ernie_Colón\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"\\\"Larry Bolatinsky\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Dan_Mishkin\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"444\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An alternative name for the comic character Bolt is Larry Bolatinsky and he was created by Paris Cullins and Dan Mishkin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic character Bolt, aka Larry Bolatinsky, was created by Paris Cullins and Dan Mishkin.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Paris_Cullins\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"\\\"Larry Bolatinsky\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Dan_Mishkin\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Paris_Cullins\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"\\\"Larry Bolatinsky\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Dan_Mishkin\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"445\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"From Spain, Ajoblanco (alternatively known as Ajo blanco) has bread as an ingredient.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco, also known as \\\"Ajo blanco\\\", comes from Spain. Bread is one of the ingredients.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bread is an ingredient of Ajoblanco, which is from Spain and an alternative name to Ajo blanco.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"\\\"Ajo blanco\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Bread\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"\\\"Ajo blanco\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Bread\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"446\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco is from Andalusia, in Spain. Ajoblanco contains water.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Water is an ingredient in Ajoblanco, which is a food found in Andalusia, in Spain.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Andalusia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Water\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Andalusia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Water\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"447\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem arem originates from the country of Indonesia, where two of the leaders are, Joko Widodo and Jusuf Kalla.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem arem originates from Indonesia where two of the leaders are Joko Widodo and Jusef Kalla.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"Joko_Widodo\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Jusuf_Kalla\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Joko_Widodo\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Joko_Widodo\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"448\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem-arem is a food found nationwide in Indonesia, but is more specific to Java. Jusuf Kalla is the leader of Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jusuf Kalla is the leader of Indonesia, the country which serves Arem-arem. While Arem-arem is nationwide in Indonesia, it is more specific to Java.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jusuf Kalla is a leader in Indonesia, where the dish arem-arem is found nationwide, though it is more specific to Java.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"Jusuf_Kalla\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"\\\"Nationwide in Indonesia, but more specific to Java\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arem-arem\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"\\\"Nationwide in Indonesia, but more specific to Java\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"449\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Italy is Sergio Mattarella, it is also where Italian is spoken and the arrabbiata sauce is from.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sergio Mattarella is a leader of Italy where the Italian language is spoken and Arrabbiata sauce can be found.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is from Italy, where the spoken language is Italian and a leader is Sergio Mattarella.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Italian_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Sergio_Mattarella\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italian_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"450\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce, a traditional dish from Rome in Italy, has chili pepper as one of its important ingredients.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce from Rome in Italy contains chili pepper.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is from the region of Rome in Italy and one of the main ingredients is chili pepper.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chili_pepper\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chili_pepper\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Chili_pepper\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Rome\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"451\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Garlic is an ingredient in arrabbiata sauce which originates from the region of Rome, in Italy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce contains garlic and comes from the Rome region of italy.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Garlic is an ingredient in arrabbiata sauce, which is a traditional dish from Rome, Italy.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Garlic\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Garlic\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Rome\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Garlic\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"452\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre contains Squid and comes from the Catalonia region of Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Squid is an ingredient of arros negre which is from the region of Catalonia in Spain.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre is from the region of Catalonia, Spain, and one of its ingredients is Squid.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Catalonia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Squid\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Catalonia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Squid\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"453\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cuttlefish is an ingredient in Arròs negre which comes from the region of the Valencian Community, in Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cuttlefish is an ingredient of the dish Arròs negre, which is a dish that comes from the Valencian community in Spain.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cuttlefish is an ingredient in Arròs negre, which is a traditional dish from the Valencian community in Spain.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Valencian_Community\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Cuttlefish\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Valencian_Community\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Cuttlefish\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"454\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of asam pedas , a food from the Sumatra and Malay Peninsula regions of Malaysia, consist of fish cooked in a sour and hot sauce.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is made from fish cooked in a sour and hot sauce and comes from the Sumatra and Malay Peninsula regions in Malaysia.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The dish Asam pedas comes from the region of Sumatra and the Malay Peninsula. Malaysia and the main ingredients are fish cooked in sour and hot sauce.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"\\\"Sumatra and Malay Peninsula\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"\\\"Fish cooked in sour and hot sauce\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Asam_pedas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"\\\"Sumatra and Malay Peninsula\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"\\\"Fish cooked in sour and hot sauce\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"\\\"Fish cooked in sour and hot sauce\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"\\\"Sumatra and Malay Peninsula\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"455\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is made from squeezed or squashed chicken served with sambla and is a popular dish in Java, Malaysia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet's main ingredients are squeezed or smashed fried chicken served with sambal. It is a popular dish in Malaysia and also found in Java.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet originates from Malaysia and Java. The main ingredients are squeezed or smashed fried chicken served with sambal.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"\\\"Squeezed\\\" or \\\"smashed\\\" fried chicken served with sambal\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"\\\"\\\\\\\"Squeezed\\\\\\\" or \\\\\\\"smashed\\\\\\\"fried chickenserved withsambal\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"456\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon and sausage are the main ingredients in a Bacon Explosion, which comes from the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion, whose name comes from the United States, has bacon and sausage.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Bacon\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Sausage\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bacon_Explosion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Bacon\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Sausage\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bacon_Explosion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"457\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"One of the ethnic groups in the United States are native Americans, the country is also the home of the dish bacon explosion and has Wasington D.C. as it's capitol city.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion originated in the United States, where the capital is Washington DC and Native Americans are an ethnic group.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion comes from the United States where Washington D.C. is the capital and Native Americans are an ethnic group.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Native_Americans_in_the_United_States\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Washington,_D.C.\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Native_Americans_in_the_United_States\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Washington,_D.C.\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"458\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States is the country of Bacon Explosion. Barack Obama is the leader and Washington D.C. is the capital.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Bacon Explosion comes from the United States where Barack Obama is a leader and the capital city is Washington DC.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Bacon Explosion originates from the United States where the leader is Barack Obama and the capital is Washington DC.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Washington,_D.C.\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Washington,_D.C.\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"459\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Bacon Explosion originated in the United States, where African Americans are an ethnic group and John Roberts is a leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion comes from the United States where African Americans are an ethnic group and John Roberts is a leader.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"John_Roberts\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"John_Roberts\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"460\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon sandwiches are variations of BLT and come from the U.K. Condiments are found in these sandwiches.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The UK dish, the bacon sandwich uses condiments as an ingredient and has the variation BLT.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The bacon sandwich, a variation of the BLT, comes from the UK and contains condiments.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"BLT\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"Condiment\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_sandwich\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"BLT\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"Condiment\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_sandwich\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"461\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Meringue is an ingredient of a Baked Alaska, which is from the New York region and France.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Meringue is an ingredient of a Baked Alaska, which is reputed to come from both France and New York.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An ingredient of baked Alaska is meringue which originates in France and the New York regions.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"France\",\n                        \"property\": \"country\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"New_York\",\n                        \"property\": \"region\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Meringue\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"New_York\",\n                                \"property\": \"region\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Meringue\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"462\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sponge cake is one of the ingredients in Baked Alaska, a dish from the New York region and found in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sponge cake is an ingredient of Baked Alaska, which comes from the region of New York and can be found in the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An ingredient of baked Alaska is sponge cake, the dish originates from New York, USA.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"New_York\",\n                        \"property\": \"region\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Sponge_cake\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"New_York\",\n                                \"property\": \"region\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Sponge_cake\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"463\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Christmas pudding is an ingredient in the dessert Baked Alaska. Cookie is also a dessert.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A cookie can be a dessert, as can baked alaska which has christmas pudding as an ingredient.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cookies are a dessert item, as is Baked Alaska that has Christmas pudding as one of its ingredients.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Cookie\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    },\n                    {\n                        \"object\": \"Christmas_pudding\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Cookie\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            },\n                            {\n                                \"object\": \"Christmas_pudding\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"464\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sandesh (confectionery) is a dish that can be served as a dessert. Another dish that is a dessert is Baked Alaska which has Christmas pudding as an ingredient.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sandesh and Baked Alaska are desserts. Baked Alaska uses Christmas pudding as an ingredient.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Christmas pudding is an ingredient in Baked Alaska, which is a dessert, same as sandesh.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Sandesh_(confectionery)\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    },\n                    {\n                        \"object\": \"Christmas_pudding\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Sandesh_(confectionery)\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            },\n                            {\n                                \"object\": \"Christmas_pudding\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"465\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Part of Columbian cuisine, Bandeja paisa (which has kidney beans as one of the ingredients), comes from Antioquia Department area.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa, which contains kidney beans, is a traditional dish found in the Antioquia Department of Colombia.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Kidney beans are an ingredient of Bandeja paisa which is a Colombian dish from the Antioquia department.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Colombian_cuisine\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Kidney_bean\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Antioquia_Department\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bandeja_paisa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Colombian_cuisine\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Kidney_bean\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Antioquia_Department\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bandeja_paisa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"466\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny Cakes come from France where Gerard Larcher and Claude Bartolone are leaders.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes are found in France where Gerard Larcher and Claude Bartolone are leaders.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes are found in France where both Gerard Larcher and Claude Bartolone are leaders.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"France\",\n                        \"property\": \"country\",\n                        \"subject\": \"Barny_Cakes\"\n                    },\n                    {\n                        \"object\": \"Gérard_Larcher\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"Claude_Bartolone\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"France\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"Gérard_Larcher\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Claude_Bartolone\",\n                                \"property\": \"leader\",\n                                \"subject\": \"France\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"Gérard_Larcher\",\n                                \"property\": \"leader\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Claude_Bartolone\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"France\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"467\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes can be made with apple and have 18 grams of carbs and 1.8 g of protein.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes can be made with apple and contain 1.8g protein and 18g of carbs.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes may be made with apple and have 1.8g of protein and 18g of carbohydrates.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apple\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Barny_Cakes\"\n                    },\n                    {\n                        \"object\": \"18.0 g\",\n                        \"property\": \"carbohydrate\",\n                        \"subject\": \"Barny_Cakes\"\n                    },\n                    {\n                        \"object\": \"1.8 g\",\n                        \"property\": \"protein\",\n                        \"subject\": \"Barny_Cakes\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apple\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"\\\"18.0\\\"^^<http://dbpedia.org/datatype/gram>\",\n                                \"property\": \"carbohydrate\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"\\\"1.8\\\"^^<http://dbpedia.org/datatype/gram>\",\n                                \"property\": \"protein\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Apple\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"\\\"1.8\\\"^^xsd:double\",\n                                \"property\": \"protein\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"\\\"18.0\\\"^^<http://dbpedia.org/datatype/gram>\",\n                                \"property\": \"carbohydrate\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"468\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is a dish from the country of Singapore, where the leader is Halimah Yacob and the currency is the Singapore dollar.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is a popular dish in Singapore, where the Singapore dollar is the currency and the leader is Halimah Yacob.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Singapore_dollar\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Halimah_Yacob\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Singapore_dollar\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"469\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A dish commonly found in Singapore and Indonesia is beef kway teow which has oyster sauce as a main ingredient.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow contains oyster sauce and is found in Indonesia and Singapore.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Oyster_sauce\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"\\\"Singapore and Indonesia\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Oyster_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"\\\"Singapore and Indonesia\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"470\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A popular food in Indonesia, Beef kway teow originates from Singapore. The country where Tony Tan is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tony Tan is a leader in Singapore where the dish Beef kway teow originates from. It is also found in Indonesia.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Tony_Tan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"471\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from India, it's main ingredients are gram flour and vegetables.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The key ingredients of a Bhajji from India are gram flour and vegetables.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients in Bhajji, which originates from Indiam are gram flour and vegetables.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"\\\"Gram flour, vegetables\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Gram_flour\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bhajji\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Gram_flour\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"\\\"Gram flour,vegetables\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"\\\"Gram flour, vegetables\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Gram_flour\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"472\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from India, country of Indians where the leader is T. S. Thakur.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from India, where the leader is called T S Thakur and the people who live there are called Indians.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originate from India where T S Thakur leads the Indian people.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Indian_people\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Indian_people\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"473\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji comes from the country of India, where two of the leaders are, T. S. Thakur and Narendra Modi.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from India, where two of the leaders are Narendra Modi and T.S. Thakur.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The dish bhajji originates in India where T.S. Thakur and Narendra Modi are leaders.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Narendra_Modi\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"474\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from the Karnataka region and the main ingredients are vegetables and gram flour.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients in Bhajji are gram flour and vegetables, this comes from the Karnataka region.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji are found in the region of Karnataka, its main ingredients are gram flour and vegetables.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"\\\"Gram flour, vegetables\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Gram_flour\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bhajji\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"\\\"Gram flour, vegetables\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Gram_flour\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"475\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The binignit dish can be found in the Philippines. Two of the main ingredients in it are banana and sweet potato.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of Binignit are banana and sweet potatoes, and it can be found in the Philippines.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Binignit is a dish from the Philippines made from banana and sweet potato.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sweet_potato\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Banana\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Philippines\",\n                        \"property\": \"country\",\n                        \"subject\": \"Binignit\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sweet_potato\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Banana\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Philippines\",\n                                \"property\": \"country\",\n                                \"subject\": \"Binignit\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"476\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert containing sour cream from Mexico.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sour cream is an ingredient of Bionico, that is a dessert course found in Mexico.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sour cream is used to serve Bionico, a dessert food found in Mexico.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mexico\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Sour_cream\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mexico\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Sour_cream\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id32\"\n            }\n        },\n        {\n            \"477\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Containing raisins, Bionico is found in the region of Jalisco, in Mexico.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Raisins are found in bionico which comes from the region of Jalisco in Mexico.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Raisins are an ingredient of Bionico which is from the region Jalisco, Mexico.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mexico\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Jalisco\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Raisin\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mexico\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Jalisco\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Raisin\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id33\"\n            }\n        },\n        {\n            \"478\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"One ingredient in Bakso is celery, which is a member of the genus Apium in the family Apiaceae.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Celery is from the genus apium and the family Apiaceae. It is an ingredient of Bakso.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Celery is a member of the family Apiaceae, it is from the genus apium and is an ingredient of Bakso.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apium\",\n                        \"property\": \"genus\",\n                        \"subject\": \"Celery\"\n                    },\n                    {\n                        \"object\": \"Celery\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakso\"\n                    },\n                    {\n                        \"object\": \"Apiaceae\",\n                        \"property\": \"family\",\n                        \"subject\": \"Celery\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apium\",\n                                \"property\": \"genus\",\n                                \"subject\": \"Celery\"\n                            },\n                            {\n                                \"object\": \"Celery\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakso\"\n                            },\n                            {\n                                \"object\": \"Apiaceae\",\n                                \"property\": \"family\",\n                                \"subject\": \"Celery\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id34\"\n            }\n        },\n        {\n            \"479\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert that requires granola as one of its ingredients; it can be eaten as an alternative to cake.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico requires granola as one of its ingredients, it is served at the dessert course, like cake.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cake\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    },\n                    {\n                        \"object\": \"Granola\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cake\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            },\n                            {\n                                \"object\": \"Granola\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id35\"\n            }\n        },\n        {\n            \"480\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso is a dish from the country of Indonesia, where the capital is Jakarta and one of the leaders is Jusuf Kalla.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The dish bakso comes from Indonesia where Jusuf Kalla is the leader and Jakarta is the capitol city.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso is a dish from the country of Indonesia, where the capital is Jakarta and the leader is Jusuf Kalla.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jakarta\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Jusuf_Kalla\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bakso\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jakarta\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bakso\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id36\"\n            }\n        },\n        {\n            \"481\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"From the Singapore region, Ayam penyet, is a food found in Java where an ethic group is the Baduy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a dish from the region of Singapore and is also found in Java where the Baduy are an ethnic group.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is from Singapore and also Java, where the Baduy are an ethnic group.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Baduy\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Java\"\n                    },\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Baduy\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Java\"\n                            },\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id37\"\n            }\n        },\n        {\n            \"482\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet originates from Java where the Banyumasan are an ethnic group. It can be found nationwide and also in Singapore and Malaysia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The dish Ayam penyet originates from Java where the Banyumasan people are an ethnic group. The dish can also be found in Malaysia and Singapore.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Banyumasan_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Java\"\n                    },\n                    {\n                        \"object\": \"\\\"Nationwide, also can be found in Malaysia and Singapore\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Banyumasan_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Java\"\n                            },\n                            {\n                                \"object\": \"\\\"Nationwide, also can be found in Malaysia and Singapore\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id38\"\n            }\n        },\n        {\n            \"483\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Spain is Felipe VI and it is also where Spanish is spoken and the dish arros negre is from.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros Negre is a traditional dish from Spain where they speak Spanish and the leader is Felipe VI.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre comes from Spain where Felipe VI is the leader and the Spanish language is spoken.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spanish_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Spain\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Felipe_VI_of_Spain\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Spain\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Felipe_VI_of_Spain\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Spain\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Felipe_VI_of_Spain\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Spain\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id39\"\n            }\n        },\n        {\n            \"484\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adams County, Pennsylvania is the location of the 11th Mississippi Infantry monument. Franklin County Pennsylvania is to the west and Frederick County to the south west.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 11th Mississippi Infantry Monument is located in Adams County Pennsylvania, between Franklin County to the west and Frederick County to the southwest.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Franklin_County,_Pennsylvania\",\n                        \"property\": \"has to its west\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Frederick_County,_Maryland\",\n                        \"property\": \"has to its southwest\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Adams_County,_Pennsylvania\",\n                        \"property\": \"location\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Franklin_County,_Pennsylvania\",\n                                \"property\": \"west\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Frederick_County,_Maryland\",\n                                \"property\": \"southwest\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Adams_County,_Pennsylvania\",\n                                \"property\": \"region\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"485\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyr's memorial which is dedicated to the soldiers of the Ottoman army who were killed in the Battle of Baku is located in Azerbaijan. At present Artur Rasizade is the leader of the country.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"486\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs Memorial in Azerbaijan was designed by Hüseyin Bütüner and Hilmi Güner and is dedicated to Ottoman Army soldiers killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial in Azerbaijan was designed by Hüseyin Bütüner and Hilmi Güner and is dedicated to the Ottoman Army Soldiers killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyr's Memorial in Azerbaijan, designed by Hüseyin Bütüner and Hilmi Güner, is dedicated to the Ottoman Army soldiers killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"487\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Azerbaijan, where the leader is Artur Rasizade, is the location of the Baku Turkish Martyrs Memorial. The memorial was designed by Huseyin Butuner and Hilmi Guner.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial, designed by Huseyin Butuner and Hilmi Guner, is located in Azerbaijan, where the leader is Artur Rasizade.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"488\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial was designed by Huseyin Butuner and Hilmi Guner, and is located in Azerbaijan, where it is called Turk Sehitleri Aniti.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Türk Şehitleri Anıtı\\\"\",\n                        \"property\": \"nativeName\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Türk Şehitleri Anıtı\\\"@en\",\n                                \"property\": \"nativeName\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"489\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C. Cesena, in the Serie B League, has 23900 members and is located is Cesena.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AC Cesena's ground is in Cesena and they have 23900 members. The club plays in Serie B.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C. Cesena, with 23900 members, is in the Serie B league and has a ground in Cesena.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cesena\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.C._Cesena\"\n                    },\n                    {\n                        \"object\": \"Serie_B\",\n                        \"property\": \"league\",\n                        \"subject\": \"A.C._Cesena\"\n                    },\n                    {\n                        \"object\": \"23900\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.C._Cesena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cesena\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.C._Cesena\"\n                            },\n                            {\n                                \"object\": \"Serie_B\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.C._Cesena\"\n                            },\n                            {\n                                \"object\": \"23900\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.C._Cesena\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Cesena\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.C._Cesena\"\n                            },\n                            {\n                                \"object\": \"Serie_B\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.C._Cesena\"\n                            },\n                            {\n                                \"object\": \"\\\"23900\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.C._Cesena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"490\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago played for the club SSD Potenza Calcio and his own club was Calcio Catania. He is currently managing AC Cesena.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago manages A.C. Cesena and played for the club SSD Potenza Calcio. He is also in club Calcio Catania.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Massimo Drago played for S.S.D. Potenza Calcio and now plays for Calcio Catania while managing A.C. Cesena.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Massimo_Drago\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.C._Cesena\"\n                    },\n                    {\n                        \"object\": \"S.S.D._Potenza_Calcio\",\n                        \"property\": \"club\",\n                        \"subject\": \"Massimo_Drago\"\n                    },\n                    {\n                        \"object\": \"Calcio_Catania\",\n                        \"property\": \"club\",\n                        \"subject\": \"Massimo_Drago\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Massimo_Drago\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.C._Cesena\"\n                            },\n                            {\n                                \"object\": \"S.S.D._Potenza_Calcio\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Massimo_Drago\"\n                            },\n                            {\n                                \"object\": \"Calcio_Catania\",\n                                \"property\": \"team\",\n                                \"subject\": \"Massimo_Drago\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"491\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AC Lumezzane has 4150 members and is in the Lega Pro/A league where they played in the 2014 season.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"I am interested in the 2014 A.C. Lumezzane season. It plays in Lega Pro/A. and has 4150 members.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C Lumezzane, with 4150 members, play in the Lega Pro/A, participating in the 2014 season.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Lega Pro/A\\\"\",\n                        \"property\": \"league\",\n                        \"subject\": \"A.C._Lumezzane\"\n                    },\n                    {\n                        \"object\": \"2014\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.C._Lumezzane\"\n                    },\n                    {\n                        \"object\": \"4150\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.C._Lumezzane\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Lega Pro/A\\\"@en\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            },\n                            {\n                                \"object\": \"4150\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Lega Pro/A\\\"@en\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            },\n                            {\n                                \"object\": \"\\\"4150\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"492\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.D. Isidro Metapán are at Estadio Jorge Calero Suárez whose full name is Isidro Metapan and has 10000 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.D. Isidro Metapan, (full name, Isidro Metapan), has 10000 members and play their home games at the Estadio Jorge Caler0 Suarez stadium.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Isidro Metapan (A.D. Isidro Metapan) has 10000 members and are at Estadio Jorge Calero Suarez.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Estadio_Jorge_Calero_Suárez\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.D._Isidro_Metapán\"\n                    },\n                    {\n                        \"object\": \"\\\"Isidro Metapán\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.D._Isidro_Metapán\"\n                    },\n                    {\n                        \"object\": \"10000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.D._Isidro_Metapán\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Estadio_Jorge_Calero_Suárez\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            },\n                            {\n                                \"object\": \"\\\"Isidro Metapán\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            },\n                            {\n                                \"object\": \"10000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Estadio_Jorge_Calero_Suárez\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            },\n                            {\n                                \"object\": \"\\\"Isidro Metapán\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            },\n                            {\n                                \"object\": \"\\\"10000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.D._Isidro_Metapán\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"493\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The A.E Dimitra Efxeinoupolis club is located in Greece, where there are leaders called Nikos Voutsis and Prokopis Pavlopoulos.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"There are two prominent leaders in Greece: Nikos Voutsis and Prokopis Pavlopoulos as well the A.E. Dimitra Efxeinoupolis is located there.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.E Dimitra Efxeinoupolis is located in Greece, the leader of the country is Nikos Voutsis and/or Prokopis Pavloopoulos.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greece\",\n                        \"property\": \"location\",\n                        \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                    },\n                    {\n                        \"object\": \"Nikos_Voutsis\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Greece\"\n                    },\n                    {\n                        \"object\": \"Prokopis_Pavlopoulos\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Greece\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greece\",\n                                \"property\": \"location\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            },\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Greece\"\n                            },\n                            {\n                                \"object\": \"Prokopis_Pavlopoulos\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Greece\",\n                                \"property\": \"location\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            },\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            },\n                            {\n                                \"object\": \"Prokopis_Pavlopoulos\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Greece\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"494\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of A.F.C. Blackpool is Stuart Parker who is with Drogheda United F.C and plays for Runcorn F.C. Halton.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Footballer Stuart Parker, the manager of AFC Blackpool, was at Drogheda United FC and plays for Runcorn F.C. Halton.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stuart Parker is a footballer with the Drogheda United F.C., also plays for Runcorn F.C. Halton and has managed AFC Blackpool.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stuart_Parker_(footballer)\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    },\n                    {\n                        \"object\": \"Drogheda_United_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    },\n                    {\n                        \"object\": \"Runcorn_F.C._Halton\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stuart_Parker_(footballer)\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            },\n                            {\n                                \"object\": \"Drogheda_United_F.C.\",\n                                \"property\": \"team\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            },\n                            {\n                                \"object\": \"Runcorn_F.C._Halton\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"495\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The manager of A.F.C. Blackpool is Stuart Parker who was at Drogheda United FC and once played for Stockport County FC.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Blackpool have had Stuart Parker as their manager. He plays for Drogheda United F.C. and Stockport County F.C.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stuart Parker (football player of Drogheda United F.C.) managed AFC Blackpool. He was a member of Stockport County F.C.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stuart_Parker_(footballer)\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    },\n                    {\n                        \"object\": \"Drogheda_United_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    },\n                    {\n                        \"object\": \"Stockport_County_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stuart_Parker_(footballer)\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            },\n                            {\n                                \"object\": \"Drogheda_United_F.C.\",\n                                \"property\": \"team\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            },\n                            {\n                                \"object\": \"Stockport_County_F.C.\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"496\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stuart Parker is a member of the Iriam Town F.C. as well as the manager of A.F.C. Blackpool and has also represented the KV Mechelen club.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Blackpool have had Stuart Parker as their manager. He has represented the club KV Mechelen and is a member of the Irlam Town F.C.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Blackpool have had Stuart Parker as their manager. He is attached to Irlam Town Football Club and is part of the KV Mechelen club.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stuart_Parker_(footballer)\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    },\n                    {\n                        \"object\": \"KV_Mechelen\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    },\n                    {\n                        \"object\": \"Irlam_Town_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stuart_Parker_(footballer)\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            },\n                            {\n                                \"object\": \"KV_Mechelen\",\n                                \"property\": \"team\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            },\n                            {\n                                \"object\": \"Irlam_Town_F.C.\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"497\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Fylde has the full name \\\"Association Football Club Fylde,\\\" they have 3180 members and their ground is located in Warton, Fylde.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Association Football Club Fylde, abbreviated to A.F.C Fylde, has 3180 members and its ground is Warton Fylde.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Warton,_Fylde\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    },\n                    {\n                        \"object\": \"3180\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    },\n                    {\n                        \"object\": \"\\\"Association Football Club Fylde\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.F.C._Fylde\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Warton,_Fylde\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            },\n                            {\n                                \"object\": \"\\\"3180\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            },\n                            {\n                                \"object\": \"\\\"Association Football Club Fylde\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.F.C._Fylde\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"498\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Christian Panucci, who has been attached to the Genoa CFC and Real Madrid CF clubs, manages A.S. Livorno Calcio.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Livorno Calcio is managed by Christian Panucci. is was attached to the Real Madrid CF club. He is currently attached to the club Genoa CFC.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Christian Panucci was attached to the Real Madrid CF club, he managed A.S. Livorno Calcio and played football for Genoa C.F.C.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Christian_Panucci\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.S._Livorno_Calcio\"\n                    },\n                    {\n                        \"object\": \"Genoa_C.F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Christian_Panucci\"\n                    },\n                    {\n                        \"object\": \"Real_Madrid_C.F.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Christian_Panucci\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Christian_Panucci\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"Genoa_C.F.C.\",\n                                \"property\": \"team\",\n                                \"subject\": \"Christian_Panucci\"\n                            },\n                            {\n                                \"object\": \"Real_Madrid_C.F.\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Christian_Panucci\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"499\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The \\\"Associazione Sportiva Roma S.p.A.\\\" is the non-abbreviated name of A.S. Roma which has 70634 members and a home ground in Rome, Italy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S.Roma have 70634 members, play their home games in Rome and their full title is Associazione Roma S.p.A.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Roma, or Associazione Sportiva Roma S.p.A., has 70634 members and its ground is in Rome, Italy.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Associazione Sportiva Roma S.p.A.\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"\\\"Rome, Italy\\\"\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"70634\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.S._Roma\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"70634\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"\\\"Associazione Sportiva Roma S.p.A.\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"\\\"Rome, Italy\\\"@en\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Roma\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Associazione Sportiva Roma S.p.A.\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"\\\"Rome, Italy\\\"@en\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"\\\"70634\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Roma\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"500\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AEK Athens F.C. ground is in Athens, they have 69618 members and they compete in the Superleague Greece.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AEK Athens F.C., with 69618 members, play in the Superleague Greece. Their ground is in Athens.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AEK Athens F.C. has 69618 members, their ground is in Athens and they play in the Superleague of Greece.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Superleague_Greece\",\n                        \"property\": \"league\",\n                        \"subject\": \"AEK_Athens_F.C.\"\n                    },\n                    {\n                        \"object\": \"Athens\",\n                        \"property\": \"ground\",\n                        \"subject\": \"AEK_Athens_F.C.\"\n                    },\n                    {\n                        \"object\": \"69618\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AEK_Athens_F.C.\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Superleague_Greece\",\n                                \"property\": \"league\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"\\\"69618\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"69618\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"Superleague_Greece\",\n                                \"property\": \"league\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"501\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (amateurs) has 5000 members play in the Hoofdklasse league and competed in the 2014 season.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax (Amateurs) competed in the 2014 season, they play in the Hoofdklasse league and the main team have 5000 members.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AFC Ajax, who played in the 2014 season, have 5000 members and play in the Hoofdklasse league.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"5000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    },\n                    {\n                        \"object\": \"Hoofdklasse\",\n                        \"property\": \"league\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    },\n                    {\n                        \"object\": \"2014\",\n                        \"property\": \"season\",\n                        \"subject\": \"AFC_Ajax_(amateurs)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"5000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            },\n                            {\n                                \"object\": \"Hoofdklasse\",\n                                \"property\": \"league\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Hoofdklasse\",\n                                \"property\": \"league\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            },\n                            {\n                                \"object\": \"5000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"AFC_Ajax_(amateurs)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"502\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PFK play their home matches at the AZAL Arena, and are in the Azerbaijan Premier League, who's championships name is the Qarabag FK.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL Arena is the ground of AZAL PFK and competes in The Azerbaijan Premier League, which champions are Qarabag FK.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Azerbaijan_Premier_League\",\n                        \"property\": \"league\",\n                        \"subject\": \"AZAL_PFK\"\n                    },\n                    {\n                        \"object\": \"Qarabağ_FK\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Azerbaijan_Premier_League\"\n                    },\n                    {\n                        \"object\": \"AZAL_Arena\",\n                        \"property\": \"ground\",\n                        \"subject\": \"AZAL_PFK\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Azerbaijan_Premier_League\",\n                                \"property\": \"league\",\n                                \"subject\": \"AZAL_PFK\"\n                            },\n                            {\n                                \"object\": \"Qarabağ_FK\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Azerbaijan_Premier_League\"\n                            },\n                            {\n                                \"object\": \"AZAL_Arena\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AZAL_PFK\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"503\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alkmaar Zaanstreek is the full name of AZ Alkmaar who played in the 2014 season and has 17023 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"\\\"Alkmaar Zaanstreek\\\" is the full name of AZ Alkmaar who played in the 2014 season and has 17023 members.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alkmaar Zaanstreek (AZ Alkmaar) has 170723 members and played in the 2014 season.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Alkmaar Zaanstreek\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    },\n                    {\n                        \"object\": \"2014\",\n                        \"property\": \"season\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    },\n                    {\n                        \"object\": \"17023\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Alkmaar Zaanstreek\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"17023\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Alkmaar Zaanstreek\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"\\\"17023\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"504\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John van den Brom manages the AZ Alkmaair and plays for Vitesse Arnhem and De Graafschap.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John van den Brom, the manager of AZ Alkmaar, is in Vitesse Arnhem and plays for De Graafschap.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John van den Brom has been manager of AZ Alkmaar, he is in Vitesse Arnhem and plays for De Graafschap.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"John_van_den_Brom\",\n                        \"property\": \"manager\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    },\n                    {\n                        \"object\": \"Vitesse_Arnhem\",\n                        \"property\": \"club\",\n                        \"subject\": \"John_van_den_Brom\"\n                    },\n                    {\n                        \"object\": \"De_Graafschap\",\n                        \"property\": \"club\",\n                        \"subject\": \"John_van_den_Brom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"John_van_den_Brom\",\n                                \"property\": \"manager\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"Vitesse_Arnhem\",\n                                \"property\": \"managerClub\",\n                                \"subject\": \"John_van_den_Brom\"\n                            },\n                            {\n                                \"object\": \"De_Graafschap\",\n                                \"property\": \"team\",\n                                \"subject\": \"John_van_den_Brom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"505\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play at their ground Estadio Minicipal Coaracy da Mata Fonseca in the Campeonato Brasileiro Série C league. The champions of this league are Vila Nova Futebol Clube.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiacao Sportiva Arapiraquense's ground is the Estadio Minicipal Coaracy da Mata Fonseca and they play in the Campeonato Brasileiro Série C league. The Serie C champions have been Vila Nova Futebol Clube.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense plays at Estádio Municipal Coaracy da Mata Fonseca. The club play in the Campeonato Brasileiro Série C league and the champions of the league were the Vila Nova Futebol Clube.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"league\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Vila_Nova_Futebol_Clube\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"506\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league in Brazil. Vila Nova Futebol Clube are the champions of this league.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league in brazil. The Vila Nova Futebol Clube were champions at the Campeonato Brasileiro Série C.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league, that is based in Brazil. The champions are Vila Nova Futebol Clube.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"league\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Brazil\",\n                        \"property\": \"country\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    },\n                    {\n                        \"object\": \"Vila_Nova_Futebol_Clube\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"country\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"507\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"St Vincent-St Mary High School is the ground of Akron Summit Assault who play in the Premier Development League, of which K-W United FC have been champions.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Akron Summit Assault who play in the Premier Development League, won by K-W United FC, have their home ground at St. Vincent-St. Mary High School.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"St Vincent-St Mary High School is the ground of Akron Summit Assault who play in the Premier Development League which K-W United FC have been champions of.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"St._Vincent–St._Mary_High_School\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"Premier_Development_League\",\n                        \"property\": \"league\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"K-W_United_FC\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Premier_Development_League\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"St._Vincent–St._Mary_High_School\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"Premier_Development_League\",\n                                \"property\": \"league\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"K-W_United_FC\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Premier_Development_League\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"508\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"K-W United FC were champions of the Premier Development League where Akron Summit Assault (which has 3000 members) also play.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3000 member club Akron Summit Assault play in the Premier Development League alongside former champions K-W United FC.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Akron Summit Assault has 3000 members and plays in the Premier Development League of which K-W United FC were champions.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"3000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"Premier_Development_League\",\n                        \"property\": \"league\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"K-W_United_FC\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Premier_Development_League\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"3000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"Premier_Development_League\",\n                                \"property\": \"league\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"K-W_United_FC\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Premier_Development_League\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"509\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground of A.S. Gubbio 1910 is located in Italy where Sergio Mattarella is a leader of the Italian people.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground of A.S. Gubbio 1910 is located in Italy which is lead by Sergio Mattarella and inhabited by Italians.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground of A.S. Gubbio 1910 is located in Italy, country of Italians where the leader is Sergio Mattarella.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italians\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Sergio_Mattarella\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italians\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"510\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground for AEK Athens FC is the Olympic Stadium (Athens) in Athens whose mayor is Giorgos Kaminis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Home ground of AEK Athens FC, the Olympic Stadium is located in Athens, who's mayor is Giorgos Kaminis.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Olympic Stadium in Athens is the home ground of AEK Athens FC. The mayor of Athens is Giorgos Kaminis.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Athens\",\n                        \"property\": \"location\",\n                        \"subject\": \"Olympic_Stadium_(Athens)\"\n                    },\n                    {\n                        \"object\": \"Giorgos_Kaminis\",\n                        \"property\": \"mayor\",\n                        \"subject\": \"Athens\"\n                    },\n                    {\n                        \"object\": \"Olympic_Stadium_(Athens)\",\n                        \"property\": \"ground\",\n                        \"subject\": \"AEK_Athens_F.C.\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Athens\",\n                                \"property\": \"location\",\n                                \"subject\": \"Olympic_Stadium_(Athens)\"\n                            },\n                            {\n                                \"object\": \"Giorgos_Kaminis\",\n                                \"property\": \"mayor\",\n                                \"subject\": \"Athens\"\n                            },\n                            {\n                                \"object\": \"Olympic_Stadium_(Athens)\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"511\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio is in Switzerland. Its dean is Mario Botta and it has 600 students.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio of Switzerland has 600 students and the dean is called Mario Botta.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Switzerland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Mario_Botta\",\n                        \"property\": \"dean\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"600\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Switzerland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Mario_Botta\",\n                                \"property\": \"dean\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"\\\"600\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfStudents\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"512\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology is located in Bangalore, India and its motto is: \\\"Nurturing Excellence\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology in Bangalore, India has the motto \\\"Nurturing Excellence\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is in Bangalore, India and its motto is\\\"Nurturing Excellence\\\".\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"Nurturing Excellence\\\"\",\n                        \"property\": \"motto\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Nurturing Excellence\\\"@en\",\n                                \"property\": \"motto\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"513\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"B.M. Reddy is the president of the Acharya Institute of Technology, which is located in Bangalore, India.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology is in Bangalore, India. Its president is B.M. Reddy.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology (Bangalore, India) has B. M. Reddy as its president.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"B.M. Reddy\\\"\",\n                        \"property\": \"president\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"B.M. Reddy\\\"@en\",\n                                \"property\": \"president\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"514\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Insitute of Technology offers tennis and it was established in 2000. The tennis governing body is the International Tennis Federation.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The International Tennis Federation is the governing body for the sport which is offered at the Acharya Institute of Technology which was established in 2000.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Tennis\",\n                        \"property\": \"sportsOffered\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"International_Tennis_Federation\",\n                        \"property\": \"sportsGoverningBody\",\n                        \"subject\": \"Tennis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Tennis\",\n                                \"property\": \"sport\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"International_Tennis_Federation\",\n                                \"property\": \"union\",\n                                \"subject\": \"Tennis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"515\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AWH Engineering College is in India. Mumbai is the largest city in India. The river Ganges runs through India.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AWH Engineering College is located in the country of India, whose capital city is Mumbai. One of the rivers in India is called the Ganges.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mumbai\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"AWH_Engineering_College\"\n                    },\n                    {\n                        \"object\": \"Ganges\",\n                        \"property\": \"river\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mumbai\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"AWH_Engineering_College\"\n                            },\n                            {\n                                \"object\": \"Ganges\",\n                                \"property\": \"river\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"516\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Romania is Prime Minister Klaus Lohannis. The 1 Decembrie 1918 University is in Romania.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Prime Minister of Romania is Klaus Iohannis. The University of Romania was established on 1 Decembrie 1918.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1 Decembrie 1918 University is located in Romania. The country's Prime Minister is Klaus Johannis.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Prime_Minister_of_Romania\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Klaus_Iohannis\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Romania\",\n                        \"property\": \"country\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Prime_Minister_of_Romania\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Prime_Minister_of_Romania\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"517\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1 Decembrie 1918 University is located in Romania. Its Latin name is \\\"Universitas Apulensis\\\". The patron saint of Romania is Andrew the Apostle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Universitas Apulensis is the latin name of the 1 Decembrie 1918 University in Romania. The patron saint of the country is Andrew the Apostle.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 1 Decembrie 1918 University has the Latin name, Universitas Apulensis. It is situated in Romania, which has the patron Saint Andrew the Apostle.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Andrew_the_Apostle\",\n                        \"property\": \"patronSaint\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"\\\"Universitas Apulensis\\\"\",\n                        \"property\": \"latinName\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    },\n                    {\n                        \"object\": \"Romania\",\n                        \"property\": \"country\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Andrew_the_Apostle\",\n                                \"property\": \"patronSaint\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"\\\"Universitas Apulensis\\\"@en\",\n                                \"property\": \"latinName\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"518\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University was established in 1928. It has 737 academic staff and 16,000 students.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at Aarhus University was established in 1928. It has 16000 students and an academic staff of 737.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University was established in 1928 and currently has a staff of 737 and a student population of 16000.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"737\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"16000\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"1928\",\n                        \"property\": \"established\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"16000\",\n                                \"property\": \"students\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"16000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfStudents\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"\\\"737\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"519\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian Crisis can be located by it's ISBN number \\\"978-1-4165-4253-7\\\". It is written by Virginia DeMarce and Eric Flint and was put in print.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian Crisis was authored by Virginia DeMarce and Eric Flint and has a ISBN number of 978-1-4165-4253-7.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISBN number of 1634: The Bavarian Crisis is 978-1-4165-4253-7, it is written by Virginia DeMarce and Eric Flint and is available in print form.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"978-1-4165-4253-7\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    },\n                    {\n                        \"object\": \"\\\"Virginia DeMarce and Eric Flint\\\"\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"978-1-4165-4253-7\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            },\n                            {\n                                \"object\": \"\\\"Virginia DeMarce and\\\"@en\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"520\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Born in Burbank, California, Eric Flint wrote 1634: The Bavarian Crisis which was preceded by 1634: The Baltic War.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian Crisis and it's predecessor, 1634: The Baltic War, was written by Eric Flint who was born in Burbank California.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eric_Flint\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    },\n                    {\n                        \"object\": \"1634:_The_Baltic_War\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    },\n                    {\n                        \"object\": \"Burbank,_California\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Eric_Flint\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eric_Flint\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            },\n                            {\n                                \"object\": \"1634:_The_Baltic_War\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            },\n                            {\n                                \"object\": \"Burbank,_California\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Eric_Flint\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"521\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Eric Flint is the author of 1634: The Ram Rebellion which has 512 pages and is available as an E-Book.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"During 1634, Eric Flint wrote the RAM Rebellion which is 512 pages long and is of the media type E book.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eric_Flint\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"E-book\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"\\\"512\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eric_Flint\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"E-book\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"\\\"512\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"522\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The hardcover book 1634: The Ram Rebellion was written by Eric Flint and has the ISBN number 1-4165-2060-0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion, ISBN number 1-4165-2060-0, was written by Eric Flint and is available in hardcover.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Eric Flint wrote 1634: The Ram Rebellion found in hardcover with an ISBN of 1-4165-2060-0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Eric_Flint\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"\\\"1-4165-2060-0\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Eric_Flint\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"\\\"1-4165-2060-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"523\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion, written by Eric Flint, Virginia DeMarce. et al., is 512 pages long and can be found as an E book.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion was written by Eric Flint, Virginia DeMarce, et al. It has 512 pages and is available as an E-Book.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion has 512 pages and was written by Eric Flint, Virginia DeMarce, et al. . It can be found as an E book.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"E-book\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"\\\"512\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"\\\"Eric Flint, Virginia DeMarce, et al.\\\"\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"E-book\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"\\\"512\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"\\\"Eric Flint, Virginia DeMarce, et al.\\\"@en\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"524\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACM Transactions on Information Systems, or ACM Trans. Inf. Syst., is part of the academic Discipline of Computer Science and has an ISSN number of 1046-8188.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACM Transactions on Information Systems is part of the academic Discipline of Computer Science and has the abbreviation of ACM Trans. Inf. Syst. it has the ISSN number 1046-8188.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The abbreviation \\\"ACM Trans. Inf. Syst.\\\" is for ACM Transactions on Information Systems which is part of the academic Discipline of Computer Science and has an ISSN number of 1046-8188.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    },\n                    {\n                        \"object\": \"Computer_science\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    },\n                    {\n                        \"object\": \"\\\"1046-8188\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"Computer_science\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"1046-8188\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Computer_science\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"1046-8188\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"525\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ACM Transactions on Information Systems ISSN number is 1558-2868. It is part of the academic Discipline of Computer Science and abbreviated to ACM Trans. Inf. Syst.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACM Transactions on Information Systems is part of the academic Discipline of Computer Science and has the abbreviation \\\"ACM Trans. Inf. Syst.\\\" and the ISSN number 1558-2868.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"ACM Transactions on Information Systems, or ACM Trans. Inf. Syst., is part of the academic Discipline of Computer Science and has a ISSN number of 1558-2868.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Computer_science\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    },\n                    {\n                        \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    },\n                    {\n                        \"object\": \"\\\"1558-2868\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"Computer_science\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"1558-2868\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Computer_science\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"ACM Trans. Inf. Syst.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            },\n                            {\n                                \"object\": \"\\\"1558-2868\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"ACM_Transactions_on_Information_Systems\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"526\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal was published by Lippincott Williams & Wilkins in the United Kingdom where Elizabeth II is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal is published by Lippincot Williams & Wilkins and comes from the United Kingdom where Elizabeth II is the leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal, which came from the United Kingdom in the reign of Elizabeth II, was published by Lippincott Williams and Wilkins.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Lippincott_Williams_&_Wilkins\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"527\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.T. Charlie Johnson, who lives in the US, is the editor of AIP Advances which is published by the American Institute of Physics.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A T Charlie Johnson resides in the United States and is the editor of AIP Advances which is published by the American Institute of Physics.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A T Charlie Johnson lives in the US and is the editor of AIP Advances which was published by the American Institute of Physics.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"A.T._Charlie_Johnson\",\n                        \"property\": \"editor\",\n                        \"subject\": \"AIP_Advances\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"residence\",\n                        \"subject\": \"A.T._Charlie_Johnson\"\n                    },\n                    {\n                        \"object\": \"American_Institute_of_Physics\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"AIP_Advances\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"A.T._Charlie_Johnson\",\n                                \"property\": \"editor\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"residence\",\n                                \"subject\": \"A.T._Charlie_Johnson\"\n                            },\n                            {\n                                \"object\": \"American_Institute_of_Physics\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIP_Advances\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"528\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AIP Advances, or AIP Adv., has a CODEN of AAIDBI and is edited by A. T. Charlie Johnson.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A T Charlie Johnson is the editor of AIP Advances which is abbreviated to AIP Adv and has a CODEN code of AAIDBI.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"\\\"AIP Adv.\\\" is the abbreviation of AIP Advances which is edited by A T Charlie Johnson and has the CODEN code AAIDBI.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"A.T._Charlie_Johnson\",\n                        \"property\": \"editor\",\n                        \"subject\": \"AIP_Advances\"\n                    },\n                    {\n                        \"object\": \"\\\"AIP Adv.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"AIP_Advances\"\n                    },\n                    {\n                        \"object\": \"\\\"AAIDBI\\\"\",\n                        \"property\": \"CODEN_code\",\n                        \"subject\": \"AIP_Advances\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"A.T._Charlie_Johnson\",\n                                \"property\": \"editor\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AIP Adv.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AAIDBI\\\"\",\n                                \"property\": \"coden\",\n                                \"subject\": \"AIP_Advances\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"A.T._Charlie_Johnson\",\n                                \"property\": \"editor\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AIP Adv.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AAIDBI\\\"\",\n                                \"property\": \"coden\",\n                                \"subject\": \"AIP_Advances\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"A.T._Charlie_Johnson\",\n                                \"property\": \"editor\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AAIDBI\\\"@en\",\n                                \"property\": \"coden\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AIP Adv.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"AIP_Advances\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"A.T._Charlie_Johnson\",\n                                \"property\": \"editor\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AIP Adv.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"AIP_Advances\"\n                            },\n                            {\n                                \"object\": \"\\\"AAIDBI\\\"@en\",\n                                \"property\": \"coden\",\n                                \"subject\": \"AIP_Advances\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"529\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance, which can be found in hardcover, has the ISBN number 0-7156-3648-0 as well as the OCLC number 76798317.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance is available in hardcover and has the OCLC number of 76798317. and the ISBN number of 0-7156-3648-0.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Glastonbury Romance is available in hardcover and has the OCLC number 76798317 and the ISBN number 0-7156-3648-0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    },\n                    {\n                        \"object\": \"76798317\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    },\n                    {\n                        \"object\": \"\\\"0-7156-3648-0\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Glastonbury_Romance\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            },\n                            {\n                                \"object\": \"76798317\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            },\n                            {\n                                \"object\": \"\\\"0-7156-3648-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            },\n                            {\n                                \"object\": \"\\\"76798317\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            },\n                            {\n                                \"object\": \"\\\"0-7156-3648-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Glastonbury_Romance\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"530\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Long Long Way (followed by the book The Secret Scripture) is written in the English language, which is spoken in Great Britain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Followed by The Secret Scripture, the book A Long Long Way is written in English, the language spoken in Great Britain.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"The_Secret_Scripture\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"The_Secret_Scripture\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"531\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer was published by Soho Press in the United States, which counts African Americans among its ethnic groups.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer was published in the United States by Soho Press. One of the ethnic groups in the US are African Americans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer is published by Soho Press in the United States where the African Americans are an ethnic group.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Soho_Press\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"A_Loyal_Character_Dancer\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Loyal_Character_Dancer\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Soho_Press\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"A_Loyal_Character_Dancer\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Loyal_Character_Dancer\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"532\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer was published by Soho Press in the United States where Barack Obama is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer is published by Soho Press in the United States where Barack Obama is the president.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Soho_Press\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"A_Loyal_Character_Dancer\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Soho_Press\"\n                    },\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Soho_Press\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"A_Loyal_Character_Dancer\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Soho_Press\"\n                            },\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"533\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp can be found in print with the OCLC number 8805735 and the Library of Congress Classification of PS3523.E55 S4 1982.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A severed wasp can be found in print and has the OCLC number 8805735 and the Library of Congress Classification is PS3523.E55 S4 1982.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"8805735\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"PS3523.E55 S4 1982\\\"\",\n                        \"property\": \"LibraryofCongressClassification\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"8805735\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"PS3523.E55 S4 1982\\\"@en\",\n                                \"property\": \"congress\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"534\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp has an ISBN number of \\\"0-374-26131-8\\\" , 388 pages and can be found in print.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"\\\"A Severed Wasp\\\" is in print, has 388 pages and has an ISBN number of \\\"0-374-26131-8\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp (ISBN number 0-374-26131-8) has 388 pages altogether and is available in print.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"388\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"0-374-26131-8\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"388\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"0-374-26131-8\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"535\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Diane Duane wrote A Wizard of Mars which was published in hardback and has the OCLC number 318875313.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars was written by Diane Duane and is published in Hardcover. The OCLC number of A Wizard of Mars is 318875313.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars, written by Diane Duane, has a OCLC number of 318875313.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"318875313\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"Diane_Duane\",\n                        \"property\": \"author\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"Diane_Duane\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"318875313\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"\\\"318875313\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"Diane_Duane\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"536\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Diane Duane wrote A Wizard of Mars which is published in hardcover and has the ISBN number 978-0-15-204770-2.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The hardcover book. A wizard of Mars, was written by Diane Duane and has the ISBN number 978-0-15-204770-2.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars by Diane Duane is published in Hardcover ISBN 978-0-15-204770-2.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"Diane_Duane\",\n                        \"property\": \"author\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"Diane_Duane\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"537\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil, from Australia, is the third book in a series after Aenir and Castle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil, from Australia, is the sequel to Aenir, which followed the novel Castle.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil is from Australia and was preceded by Aenir and Castle.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Australians\",\n                        \"property\": \"country\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"Aenir\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"Castle_(novel)\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Australians\",\n                                \"property\": \"country\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Castle_(novel)\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Australians\",\n                                \"property\": \"country\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Castle_(novel)\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"538\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Mathematica Hungarica, or Acta Math. Hungar., has a LCCN number of 83646315 and a ISSN number of 1588-2632.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Mathematica Hungarica (abbreviated to Acta Math. Hungar.) has the LCCN number 83646315 and ISSN number 1588-2632.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Mathematica Hungarica, abbreviated to Acta Math.Hungar, has LCCN No. 83646315 and ISSN No. 1588-2632.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"83646315\",\n                        \"property\": \"LCCN_number\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    },\n                    {\n                        \"object\": \"\\\"Acta Math. Hungar.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    },\n                    {\n                        \"object\": \"\\\"1588-2632\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1588-2632\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"83646315\\\"\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"Acta Math. Hungar.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1588-2632\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"83646315\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"Acta Math. Hungar.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1588-2632\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"Acta Math. Hungar.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"83646315\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"83646315\\\"\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"Acta Math. Hungar.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"1588-2632\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"539\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acta Mathematica Hungarica ISSN number is \\\"0236-5294\\\" and the abbreviation is Acta Math. Hungar. It comes under the academic discipline of Math.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acta Mathematica Hungarica has the ISSN number 0236-5294. It is also known as Acta Math. Hungar and it covers the academic discipline of Mathematics.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Mathematica Hungarica (also known as Acta Math. Hungar), covers the academic discipline of Mathematics and has the ISSN number 0236-5294.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Acta Math. Hungar.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    },\n                    {\n                        \"object\": \"Mathematics\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    },\n                    {\n                        \"object\": \"\\\"0236-5294\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"Acta_Mathematica_Hungarica\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"Acta Math. Hungar.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"0236-5294\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Acta Math. Hungar.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            },\n                            {\n                                \"object\": \"\\\"0236-5294\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Acta_Mathematica_Hungarica\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"540\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Palaeontologica Polonica has the ISSN number 1732-2421 and an LCCN number of 60040714. The abbreviated name is Acta Palaeontol. Pol.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acta Palaeontologica Polonica (abbreviated to Acta Palaeontol. Pol) has the ISSN number 1732-2421 and the LCCN number 60040714.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1732-2421\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"Acta_Palaeontologica_Polonica\"\n                    },\n                    {\n                        \"object\": \"60040714\",\n                        \"property\": \"LCCN_number\",\n                        \"subject\": \"Acta_Palaeontologica_Polonica\"\n                    },\n                    {\n                        \"object\": \"\\\"Acta Palaeontol. Pol.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Acta_Palaeontologica_Polonica\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1732-2421\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Acta_Palaeontologica_Polonica\"\n                            },\n                            {\n                                \"object\": \"\\\"60040714\\\"\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Acta_Palaeontologica_Polonica\"\n                            },\n                            {\n                                \"object\": \"\\\"Acta Palaeontol. Pol.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Acta_Palaeontologica_Polonica\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"541\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addiction is the abbreviated version of the \\\"Addiction Journal\\\" which has the ISSN number 0965-2140.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addiction journal (abbreviated to Addiction) is about addiction. It has the ISSN number 0965-2140.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Addiction\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"Addiction_(journal)\"\n                    },\n                    {\n                        \"object\": \"\\\"Addiction\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Addiction_(journal)\"\n                    },\n                    {\n                        \"object\": \"\\\"0965-2140\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"Addiction_(journal)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Addiction\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"Addiction\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"0965-2140\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Addiction\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"Addiction\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"0965-2140\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"542\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir, written by Garth Nix, was produced in print and has the OCLC number 45644811.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir was written by Garth Nix and produced in print. It has an OCLC number of 45644811.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir, OCLC number 45644811, by author Garth Nix is available in print.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"45644811\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"Aenir\"\n                    },\n                    {\n                        \"object\": \"Garth_Nix\",\n                        \"property\": \"author\",\n                        \"subject\": \"Aenir\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"45644811\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"Garth_Nix\",\n                                \"property\": \"author\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Garth_Nix\",\n                                \"property\": \"author\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"45644811\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"543\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir has the ISBN number of \\\"0-439-17684-0\\\", it was written by Garth Nix and was produced in print.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Garth Nix is the author of Aenir. It can be found by ISBN number 0-439-17684-0.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Aenir was written by Garth Nix and has a ISBN number of 0-439-17684-0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Garth_Nix\",\n                        \"property\": \"author\",\n                        \"subject\": \"Aenir\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"Aenir\"\n                    },\n                    {\n                        \"object\": \"\\\"0-439-17684-0\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Garth_Nix\",\n                                \"property\": \"author\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"Aenir\"\n                            },\n                            {\n                                \"object\": \"\\\"0-439-17684-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"544\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics, abbreviated to Am.J.Math, whose academic discipline is Mathematics has ISSN No. 1080-6377.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Am. J. Math is the abbreviation for the American Journal of Mathematics with the ISSN number of 1080-6377 in the discipline of Math.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics (discipline Mathematics) is also known by the abbreviated title of Am. J. Math and has the ISSN number 1080-6377.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Am. J. Math.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"Mathematics\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"\\\"1080-6377\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"Am. J. Math.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"1080-6377\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Am. J. Math.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"1080-6377\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"545\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics was first published in 1878 and is also known by the abbreviated title of Am. J. Math. It has an ISSN number of 1080-6377.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics was first published in 1878 and has the abbreviation Am. J. Math.. The ISSN number for the journal is 1080-6377.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Also known by the abbreviated title of Am. J. Math, the American Journal of Mathematics was first published in 1878 and has the ISSN number 1080-6377.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Am. J. Math.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"1878\",\n                        \"property\": \"firstPublicationYear\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"\\\"1080-6377\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Am. J. Math.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"1878\",\n                                \"property\": \"history\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"1080-6377\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"546\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Administrative Science Quarterly (Admin. Sci. Q) is published by SAGE Publications which was founded by Sara Miller McCune.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Administrative Science Quarterly ( Admin. Sci. Q,) is published by SAGE Publications who's founder is Sara Miller McCune.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sara Miller McCune is the founder of SAGE publications which publishes the Administrative Science Quarterly. The abbreviation for the Administrative Science Quarterly is Admin. Sci. Q.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sara_Miller_McCune\",\n                        \"property\": \"founder\",\n                        \"subject\": \"SAGE_Publications\"\n                    },\n                    {\n                        \"object\": \"\\\"Admin. Sci. Q.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    },\n                    {\n                        \"object\": \"SAGE_Publications\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sara_Miller_McCune\",\n                                \"property\": \"founder\",\n                                \"subject\": \"SAGE_Publications\"\n                            },\n                            {\n                                \"object\": \"\\\"Admin. Sci. Q.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"SAGE_Publications\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sara_Miller_McCune\",\n                                \"property\": \"founder\",\n                                \"subject\": \"SAGE_Publications\"\n                            },\n                            {\n                                \"object\": \"\\\"Admin. Sci. Q.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"SAGE_Publications\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"547\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS (journal), is published by Lippincott Williams & Wilkins who are based in the United Kingdom which is where David Cameron is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal was published by Lippincott, Williams & Wilkins in the UK. David Cameron is the leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS (journal) is published by Lippincott Williams & Wilkins. It was published in the United Kingdom, which leader is David Cameron.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"David_Cameron\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Lippincott_Williams_&_Wilkins\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"AIDS_(journal)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"548\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice is from the United States where Barack Obama is the leader and the African Americans are one of the ethnic groups.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barack Obama is both president of the US and African American, which is an ethnic group of the United States. A Fortress of Grey Ice originates from the US.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In the United States, one of the ethnic groups is African American, Barack Obamais President and it is where A Fortress of Grey Ice originates.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"549\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In the United States, English is the language, Asian Americans are an ethnic group and the book Alcatraz versus the Evil Librarians was written.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians is from The United States where English is spoken and the Asian Americans are an ethnic group.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The book Alcatraz Versus the Evil Librarians comes from the United States where English is the primary language. Additionally, Asian Americans is one of the ethnic groups in the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Asian_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Asian_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"3\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"550\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"With a runway length of 1,121 metres, Abilene regional airport serves Abilene, Texas, in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene, Texas is served by the Abilene regional airport in the U.S. Its runway is 1121 long.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene, Texas, United States, is served by Abilene Regional Airport, which has a runway length of 1121.0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Abilene,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Abilene,_Texas\"\n                    },\n                    {\n                        \"object\": \"1121.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Abilene,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"\\\"1121.05\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"\\\"1121.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"551\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid Barajas Airport is located in Alcobendas, Spain, and operated by the Madrid-based ENAIRE.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid-Barajas Airport is located in Alcobendas,Spain. The airport is operated by ENAIRE.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport, operated by Madrid's ENAIRE, is located in Alcobendas, Spain.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alcobendas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"Madrid\",\n                        \"property\": \"locationCity\",\n                        \"subject\": \"ENAIRE\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alcobendas\"\n                    },\n                    {\n                        \"object\": \"ENAIRE\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alcobendas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"Madrid\",\n                                \"property\": \"locationCity\",\n                                \"subject\": \"ENAIRE\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alcobendas\"\n                            },\n                            {\n                                \"object\": \"ENAIRE\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"552\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid-Barajas airport is located at Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas and is operated by ENAIRE. The runway name is 18R/26L and is 3,500 in length.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport can be found in Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas. ENAIRE operates this Airport. 18R/36L is the runway name and its length is 3500.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid-Barajas airport is located at Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas and run by ENAIRE. Its runway name is 18R/36L and it is 3500 m long,.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"18R/36L\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"3500.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"ENAIRE\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"18R/36L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3499.71\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"ENAIRE\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"553\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra airport is in Uttar Pradesh, which is part of Awadh and Bundelkhand, is located 167.94 metres above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is 167.94 metres above sea level and located in Uttar Pradesh, part of Awadh and Bundelkhand.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"167.94\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Uttar_Pradesh\",\n                        \"property\": \"location\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Awadh\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    },\n                    {\n                        \"object\": \"Bundelkhand\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"167.94\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Uttar_Pradesh\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Awadh\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Bundelkhand\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"167.945\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Uttar_Pradesh\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Awadh\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Bundelkhand\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"554\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra airport is located in Uttar Pradesh (lead by Ram Naik) which is part of Awadh and Bundelkhand.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ram Naik is the leader in Uttar Pradesh where Agra airport is located and is part of Awadh and Bundelkhand.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra airport is located in Uttar Pradesh which is part of Awadh and also Bundelkhand, and lead by Ram Naik.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Uttar_Pradesh\",\n                        \"property\": \"location\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Awadh\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    },\n                    {\n                        \"object\": \"Ram_Naik\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    },\n                    {\n                        \"object\": \"Bundelkhand\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Uttar_Pradesh\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Awadh\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Ram_Naik\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Bundelkhand\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"555\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated bt the United States Air Force which carried out the 1986 United States bombing of Libya. Its aircraft fighter is General Dynamics F-16 Fighting Falcon and the Lockheed AC-130 can be found on USAF aircraft carriers.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by the United States air force who were involved in the 1986 bombing of Libya, and deploy the aircraft fighter General Dynamics F-16 Fighting Falcon and have the Lockheed AC130 on their aircraft carriers.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                        \"property\": \"aircraftFighter\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"1986_United_States_bombing_of_Libya\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                                \"property\": \"aircraftFighter\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"1986_United_States_bombing_of_Libya\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"556\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by the United States Air Force who participated in the battles during Operation Enduring Freedom. They deploy the Lockheed AC-130 on their aircraft carriers and also make use of the aircraft fighter General Dynamics F-16 Fighting Falcon.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force is the operating organisation for Al Asad airbase and has the Lockhead AC-130 and General Dynamics F-16 Fighting Falcon as aircraft. One of their battles was Operation Enduring Freedom..\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad Airbase is operated by the United States Air Force which uses Lockheed AC-130 aircraft carriers. The General Dynamics F-16 Fighting Falcon is an aircraft used by the USAF and they were involved in the Operation Enduring Freedom.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                        \"property\": \"aircraftFighter\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Operation_Enduring_Freedom\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                                \"property\": \"aircraftFighter\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Operation_Enduring_Freedom\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"557\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad Airbase is operated by the United States Air Force who deploy the Lockheed AC-130 as an attack aircraft and the McDonnell Douglas F-15 Eagle as a fighter aircraft. They also fought in the battles of Operation Enduring Freedom.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Operation Enduring Freedom was a battle involving the United States Air Force who operate Al Asad Airbase. They deploy the Lockheed AC-130 on their aircraft carriers and the McDonnell Douglas F-15 Eagle as a fighter aircraft.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by the United States Air Force which was involved in Operation Enduring Freedom. The Lockheed AC-130 and McDonnell Douglas F-15 Eagle are two of their aircrafts.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"McDonnell_Douglas_F-15_Eagle\",\n                        \"property\": \"aircraftFighter\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Operation_Enduring_Freedom\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"McDonnell_Douglas_F-15_Eagle\",\n                                \"property\": \"aircraftFighter\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Operation_Enduring_Freedom\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"558\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by the United States Air Force who took part in the noted battles at the invasion of Grenada. They deploy the Lockheed AC-130 attack aircraft and the General Dynamics F-16 Fighting Falcon as an aircraft fighter.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force, which is the operating organisation for Al Asad airbase was involved in battles at the Invasion of Grenada. They deploy the Lockheed AC-130 attack aircraft and the General Dynamics F-16 Fighting Falcon.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force, who fought in the Invasion of Grenada operates the Al Asad Airbase. The USAF fly Lockheed AC-130 aircraft from aircraft carriers, in addition to the General Dynamics F-16 Fighting Falcon.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Invasion_of_Grenada\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                        \"property\": \"aircraftFighter\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Invasion_of_Grenada\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                                \"property\": \"aircraftFighter\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"559\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Pakistan Civil Aviation Authority has headquarters at Jinnah International airport and governs the Allama Iqbal International Airport in Punjab, Pakistan which is lead by the Provincial Assembly of the Punjab.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Allama Iqbal International Airport is located in Punjab, Pakistan which is led by the Provincial Assembly of the Punjab. The airport is governed by the Pakistan Civil Aviation Authority headquartered in Jinnah International Airport.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Allama Iqbal International Airport is located in Punjab,Pakistan which is led by the Provincial Assembly of Punjab.The airport is operated by the Pakistan Civil Aviation Authority whose headquarters is in the Jinnah International Airport.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Jinnah_International_Airport\",\n                        \"property\": \"headquarter\",\n                        \"subject\": \"Pakistan_Civil_Aviation_Authority\"\n                    },\n                    {\n                        \"object\": \"Punjab,_Pakistan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Provincial_Assembly_of_the_Punjab\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Punjab,_Pakistan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Jinnah_International_Airport\",\n                                \"property\": \"headquarter\",\n                                \"subject\": \"Pakistan_Civil_Aviation_Authority\"\n                            },\n                            {\n                                \"object\": \"Punjab,_Pakistan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Provincial_Assembly_of_the_Punjab\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Punjab,_Pakistan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"560\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alpena County Regional Airport serves Alpena, Michigan and is located at Maple Ridge Township, Alpena County, Michigan. It has a runway length of 1533.0 and is 210 metres above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alpena County Regional Airport is located in Maple Ridge Township, Alpena County and serves the city of Alpena, Michigan. It is located 210 metres above sea level and has a runway length of 1533.0.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alpena, Michigan, is served by the Alpena County Regional Airport in Maple Ridge Township. The runway length is 1533.0 and the elevation is 210 metres above sea level.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Maple_Ridge_Township,_Alpena_County,_Michigan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"1533.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Alpena,_Michigan\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"210\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Alpena_County_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Maple_Ridge_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1532.53\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Alpena,_Michigan\",\n                                \"property\": \"city\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.312\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Maple_Ridge_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1532.53\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Alpena,_Michigan\",\n                                \"property\": \"city\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Maple_Ridge_Township,_Alpena_County,_Michigan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"1533.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Alpena,_Michigan\",\n                                \"property\": \"city\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Alpena_County_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"561\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The city of Amsterdam is served by Amsterdam Airport Schiphol which is -3.3528 metres above sea level. It has a runway length of 2014.0 meters and 06/24, Kaagbaan, is the runway name.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Serving the city of Amsterdam, Amsterdam airport Schipol is -3.3528 above sea level. Amsterdam Airport Schiphol's runway length is 2014.0 and it has the runway name, 06/24 Kaagbaan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Amsterdam\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    },\n                    {\n                        \"object\": \"\\\"06/24 'Kaagbaan'\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    },\n                    {\n                        \"object\": \"2014.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    },\n                    {\n                        \"object\": \"-3.3528\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Amsterdam_Airport_Schiphol\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Amsterdam\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"06/24 'Kaagbaan'\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"2014.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"-3.3528\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Amsterdam\",\n                                \"property\": \"city\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"06/24 'Kaagbaan'\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"2014.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            },\n                            {\n                                \"object\": \"\\\"-3.3528\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Amsterdam_Airport_Schiphol\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"562\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The demonym for the people of Texas is Tejano and the spoken language is English. The state is the location of Andrews County airport and has the capital city of Austin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County airport is in Texas where the capital city is Austin, the local people are known as Tejano and the spoken language is English.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas whose capital city is Austin.Tejano are the inhabitants of the state and English language is spoken there.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Austin,_Texas\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Tejano\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Austin,_Texas\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Tejano\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"563\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport, Texas is in the United States. The inhabitants of Texas, Texans , speak English.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas within the United States, the people of Texas are referred to as Texans and the local language is English.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Texas is the location of Andrews County airport and is in the United States. The inhabitants are known as Texans and they speak the English language.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Texan\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Texan\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"564\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County airport is in Texas, United States, where the people are known as Texans and Spanish is spoken.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Texans are the people from Texas in the United States where Spanish is spoken and Andrews County airport is located.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texts,United States. The people of Texas are called Texans and Spanish language is spoken there.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Spanish_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Texan\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Texan\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"565\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas in the United States. In Texas, the capital city is Austin and the largest city is Houston.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County airport in the US is located in Texas where the capital is Austin and the largest city is Houston.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County airport is located in Texas, United States, where Houston is the largest city and Austin is the capital.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Houston\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Austin,_Texas\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Houston\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Austin,_Texas\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"566\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"At 159 meters above sea level, Angola International Airport is located at Ícolo e Bengo, part of Luanda Province, in Angola.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International airport, situated 159 metres above sea level, is located at Ícolo e Bengo, part of Luanda Province in Angola.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located in Ícolo e Bengo in Luanda Province, Angola. It is 159 metres above sea level..\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ícolo_e_Bengo\",\n                        \"property\": \"location\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Angola\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"Luanda_Province\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"159\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Angola_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"Luanda_Province\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"159.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"Luanda_Province\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"159.106\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"567\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish Government runs the flemish region in Belgium where Antwerp is served by Antwerp International airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport serves the city of Antwerp.The Flemish region is in the country of Belgium and is under the jurisdiction of the Flemish government.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish region, which is led by the Flemish government, is part of Belgium. Antwerp International airport serves Antwerp.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Antwerp\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Flemish_Government\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Flemish_Region\"\n                    },\n                    {\n                        \"object\": \"Belgium\",\n                        \"property\": \"country\",\n                        \"subject\": \"Flemish_Region\"\n                    },\n                    {\n                        \"object\": \"Flemish_Region\",\n                        \"property\": \"jurisdiction\",\n                        \"subject\": \"Flemish_Government\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Antwerp\",\n                                \"property\": \"city\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Flemish_Government\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Flemish_Region\"\n                            },\n                            {\n                                \"object\": \"Belgium\",\n                                \"property\": \"country\",\n                                \"subject\": \"Flemish_Region\"\n                            },\n                            {\n                                \"object\": \"Flemish_Region\",\n                                \"property\": \"jurisdiction\",\n                                \"subject\": \"Flemish_Government\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"568\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International Airport (in Greenville, Wisconsin) has an elevation of 280 metres above sea level, serves the city of Appleton, and has a runway length of 2,439.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International Airport is located in Greenville, Wisconsin and serves the nearby city of Appleton. The airport is 280 metres above sea level and has a runway which is 2439 metres long.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International Airport can be found in Greenville, Wisconsin it serves Appleton, it's runway length is 2439 units and it is 280 metres above sea level.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greenville,_Wisconsin\",\n                        \"property\": \"location\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"2439.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Appleton,_Wisconsin\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"280\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2439.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"280.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2439.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"279.806\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2439.01\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"280.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2439.01\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"279.806\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"569\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International airport, which serves Appleton, Wisconsin, is located in Greenville, Wisconsin which is part of both Menasha and Dale.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appletone International airport serves the city of Appleton in Greenville, Wisconsin. Both Menasha and Dale are parts of Greenville.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International airport serves Appleton in Greenville, Wisconsin. Both Menasha (town) and Dale are parts of Greenville.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greenville,_Wisconsin\",\n                        \"property\": \"location\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Menasha_(town),_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Greenville,_Wisconsin\"\n                    },\n                    {\n                        \"object\": \"Dale,_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Greenville,_Wisconsin\"\n                    },\n                    {\n                        \"object\": \"Appleton,_Wisconsin\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Menasha_(town),_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Greenville,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Dale,_Wisconsin\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Greenville,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"570\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Poaceae is of the order poales, the class of Monocotyledon and belongs to the order of Commelinids. It constitutes the surface of the 3rd runway at Ardmore Airport in New Zealand.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore Airport (New Zealand)'s 3rd runway surface type is Poaceae which is a member of the order of Poales, the class is Monocotyledon, and belongs to the order of Commelinids.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore Airport (New Zealand)'s 3rd runway is surfaced with Poaceae.Poaceae belongs to the Poales and Commelinids order and classified as Monocotyledon.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"3rd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"Poales\",\n                        \"property\": \"order\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Monocotyledon\",\n                        \"property\": \"class\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Commelinids\",\n                        \"property\": \"order\",\n                        \"subject\": \"Poaceae\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r3Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Poales\",\n                                \"property\": \"ordo\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Monocotyledon\",\n                                \"property\": \"class\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Commelinids\",\n                                \"property\": \"order\",\n                                \"subject\": \"Poaceae\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"571\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Ardmore Airport in New Zealand is 34 meters above sea level and has a runway length of 597.0. It has the runway name 03R/21L and the 3rd runway is made of Poaceae.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore airport in New Zealand is 34 metres above sea level and has a runway length of 597.0. The 3rd runway is made of poaceae and one of the runways is called 03R/21L.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore airport in New Zealand has a 3rd runway made of poaceae and is 34 meters above sea level. It has a runway name of 03R/21L with a length of 597.0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"597.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"3rd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"34.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"\\\"03R/21L\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"597.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r3Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"\\\"34.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"\\\"03R/21L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"572\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"With a runway length of 1,873, Atlantic City International Airport is located in Egg Harbor Township, New Jerse y(part of Atlantic County) in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Egg Harbor Township, is a township in Atlantic County, New Jersey, United States. With a runway length of 1873 metres, Atlantic City International Airport is located in Egg Harbor Township.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1873.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Egg_Harbor_Township,_New_Jersey\",\n                        \"property\": \"location\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                    },\n                    {\n                        \"object\": \"Atlantic_County,_New_Jersey\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1873.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Egg_Harbor_Township,_New_Jersey\",\n                                \"property\": \"location\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                            },\n                            {\n                                \"object\": \"Atlantic_County,_New_Jersey\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1872.69\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Egg_Harbor_Township,_New_Jersey\",\n                                \"property\": \"location\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                            },\n                            {\n                                \"object\": \"Atlantic_County,_New_Jersey\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"573\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suarez Madrid-Barajas Airport is operated by ENAIRE, which is located in the city of Madrid, Spain. The Adolfo Suarez Madrid-Barajas Airport is located in Madrid, Paracuellos de Jarama, San Sebastian de los Reyes and Alcobendas.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport can be found in Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas and is operated by ENAIRE from the city of Madrid, Spain.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adolfo Suárez Madrid–Barajas Airport, operated by ENAIRE (Madrid), is found in Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas; Spain.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Madrid\",\n                        \"property\": \"locationCity\",\n                        \"subject\": \"ENAIRE\"\n                    },\n                    {\n                        \"object\": \"\\\"Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Madrid\"\n                    },\n                    {\n                        \"object\": \"ENAIRE\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Madrid\",\n                                \"property\": \"locationCity\",\n                                \"subject\": \"ENAIRE\"\n                            },\n                            {\n                                \"object\": \"\\\"Madrid, Paracuellos de Jarama, San Sebastián de los Reyes and Alcobendas\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Madrid\"\n                            },\n                            {\n                                \"object\": \"ENAIRE\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"574\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Egg Harbor Township is in New Jersey, in the United States and is where Atlantic City International Airport is located. This airport has a runway length of 3048.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Egg Harbor Township, New Jersey is part of New Jersey in the United States. It is where Atlantic City International Airport(with a runway length of 3048.0) is located.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlantic City Airport, (runway length 3048.0) is located in Egg Harbor Township, which is part of New Jersey in the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"New_Jersey\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                    },\n                    {\n                        \"object\": \"3048.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Egg_Harbor_Township,_New_Jersey\",\n                        \"property\": \"location\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"New_Jersey\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                            },\n                            {\n                                \"object\": \"\\\"3048.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Egg_Harbor_Township,_New_Jersey\",\n                                \"property\": \"location\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Egg_Harbor_Township,_New_Jersey\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"575\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Poaceae, of the class Monocotyledon and the order of commelinids belongs to the division of flowering plants and is used as the surface of the second runway of Ardmore airport, New Zealand.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The surface type of the second runway of Ardmore Airport, New Zealand is Poaceae. Poaceae is a flowering plant of the order of Commelinids and the class of Monocotyledon.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 2nd runway at Ardmore Airport (New Zealand) is made of Poaceae. Poaceae is a flowering plant in the class of Monocotyledon in the order of Commelinids.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Monocotyledon\",\n                        \"property\": \"class\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Flowering_plant\",\n                        \"property\": \"division\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Commelinids\",\n                        \"property\": \"order\",\n                        \"subject\": \"Poaceae\"\n                    },\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"2nd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Monocotyledon\",\n                                \"property\": \"class\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Flowering_plant\",\n                                \"property\": \"division\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Commelinids\",\n                                \"property\": \"order\",\n                                \"subject\": \"Poaceae\"\n                            },\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r2Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"576\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean (of the United States) was a crew member of NASA's Apollo 12 under the commander David Scott.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"United States national Alan Bean was a crew member of NASA's Apollo 12 mission under commander David S cott.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"David_Scott\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_12\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"David_Scott\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_12\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"577\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard, who was born in New Hampshire on November 18th, 1923, graduated with a M.A. from NWC in 1957 and retired on August 1st, 1974.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born 1923-11-18 in New Hampshire. He obtained a MA in 1957 from \\\"NWC\\\" he retired 1974-08-01.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"NWC, M.A. 1957\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1974-08-01\\\"\",\n                        \"property\": \"dateOfRetirement\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"NWC, M.A. 1957\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1974-08-01\\\"^^xsd:date\",\n                                \"property\": \"dateOfRet\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"578\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"American test pilot Alan Shepard died in California and was born in New Hampshire.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born in New Hampshire and became a test pilot. He died in California.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born in New Hampshire and died in California. He served as a test pilot.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"579\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was a test pilot born in New Hampshire who NASA picked as a member of Apollo 14.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard , originally from New Hampshire joined NASA as a test pilot and also became a member of Apollo 14.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard, who was born in New Hampshire and served as a test pilot, was a crew member of the NASA operated Apollo 14 mission.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_14\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_14\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_14\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_14\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"580\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The backup pilot to Apollo 12 was Alfred Worden and also part of Apollo 12 were Alan Bean and commander David Scott who were all chosen by NASA.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean was a crew member on the NASA Apollo 12 mission along with backup pilot Alfred Worden and commander David Scott.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alfred_Worden\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"David_Scott\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_12\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alfred_Worden\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"David_Scott\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_12\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"581\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin is a national of the United States whose leader is Joe Biden. He was born in Glen Ridge, Essex County, New Jersey.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Joe_Biden\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Essex_County,_New_Jersey\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Glen_Ridge,_New_Jersey\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Joe_Biden\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Essex_County,_New_Jersey\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Glen_Ridge,_New_Jersey\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"582\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See, a graduate of University of Texas at Austin, was born in Dallas on July 23, 1927, and died in St. Louis.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1927-07-23\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1927-07-23\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"583\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See attended the University of Texas in Austin. He became a test pilot. He died in St. Louis on 1966-02-28.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ellior See attended the University of Texas at Austin. He was a pilot and died in St. Louis, 28th February 1966.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1966-02-28\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1966-02-28\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"584\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See attended the University of Texas in Austin which is affiliated to the University of Texas system. He died in St Louis which is part of the Kingdom of France.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See died in St Louis which is part of the kingdom of France, his alma mater was the University of Texas at Austin which is affiliated with the University of Texas system.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"University_of_Texas_System\",\n                        \"property\": \"affiliations\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Kingdom_of_France\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"St._Louis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"University_of_Texas_System\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Kingdom_of_France\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"St._Louis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"585\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born on July 23rd, 1927 in Dallas, and died in St. Louis on February 28th, 1966.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ellior See was born 23rd July 1927 in Dallas and died in St. Louis on 28th February 1966.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1927-07-23\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1966-02-28\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1927-07-23\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1966-02-28\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"586\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The members of Apollo 8 were Buzz Aldrin who was backup pilot, commander Frank Borman and William Anders who retired on September 1st, 1969.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders served as a crew member of Apollo 8 under Commander Frank Borrman and backup pilot Buzz Aldrin. He retired 1969.09.01.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1969-09-01\\\"\",\n                        \"property\": \"dateOfRetirement\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Frank_Borman\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_8\"\n                    },\n                    {\n                        \"object\": \"Apollo_8\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Buzz_Aldrin\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_8\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1969-09-01\\\"^^xsd:date\",\n                                \"property\": \"dateOfRet\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Frank_Borman\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_8\"\n                            },\n                            {\n                                \"object\": \"Apollo_8\",\n                                \"property\": \"mission\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Buzz_Aldrin\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_8\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"587\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cyril Ramaphosa is one of the leaders of South Africa, which capital is Cape Town. The address, 11 Diagonal Street is located in that country and one of the the ethnic groups is Asian South Africans.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lead by Cyril Ramaphosa, South Africa is location of 11 Diagonal Street, has the capital of Cape Town and has an ethnic group of Asian South Africans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"With the capital of Cape Town, South Africa is the location of 11 Diagonal Street, has the ethnic group of Asian South African and one of its leaders is Cyril Ramaphosa.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"South_Africa\",\n                        \"property\": \"location\",\n                        \"subject\": \"11_Diagonal_Street\"\n                    },\n                    {\n                        \"object\": \"Cape_Town\",\n                        \"property\": \"capital\",\n                        \"subject\": \"South_Africa\"\n                    },\n                    {\n                        \"object\": \"Cyril_Ramaphosa\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"South_Africa\"\n                    },\n                    {\n                        \"object\": \"Asian_South_Africans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"South_Africa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Cape_Town\",\n                                \"property\": \"capital\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"Cyril_Ramaphosa\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"Asian_South_Africans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"588\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"With the capital of Cape Town, South Africa is the location of 11 Diagonal Street and has the ethnic groups of Asian South Africans and white South Africans.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street is located in South Africa, of which Cape Town is the capital. Two ethnic groups within South Africa are the Asian South Africans, and white South Africans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"11 Diagonal Street is located in South Africa, where the capital is Cape Town. White South Africans and Asian South Africans are ethnic groups in South Africa.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"South_Africa\",\n                        \"property\": \"location\",\n                        \"subject\": \"11_Diagonal_Street\"\n                    },\n                    {\n                        \"object\": \"Asian_South_Africans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"South_Africa\"\n                    },\n                    {\n                        \"object\": \"Cape_Town\",\n                        \"property\": \"capital\",\n                        \"subject\": \"South_Africa\"\n                    },\n                    {\n                        \"object\": \"White_South_African\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"South_Africa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Asian_South_Africans\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"Cape_Town\",\n                                \"property\": \"capital\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"White_South_African\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"South_Africa\",\n                                \"property\": \"location\",\n                                \"subject\": \"11_Diagonal_Street\"\n                            },\n                            {\n                                \"object\": \"Cape_Town\",\n                                \"property\": \"capital\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"White_South_African\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"South_Africa\"\n                            },\n                            {\n                                \"object\": \"Asian_South_Africans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"South_Africa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"589\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"200 Public Square is located in Cleveland, Cuyahoga County, Ohio which is governed by Cleveland City Council.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"200 Public Square is located in Cleveland, Cuyahoga County, Ohio which is governed by the Cleveland City Council.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"200 Public Square is located in Cleveland, Cuyahoga County, Ohio, and is governed by Cleveland City Council.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cleveland\",\n                        \"property\": \"location\",\n                        \"subject\": \"200_Public_Square\"\n                    },\n                    {\n                        \"object\": \"Cuyahoga_County,_Ohio\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Cleveland\"\n                    },\n                    {\n                        \"object\": \"Ohio\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Cleveland\"\n                    },\n                    {\n                        \"object\": \"Cleveland_City_Council\",\n                        \"property\": \"governingBody\",\n                        \"subject\": \"Cleveland\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cleveland\",\n                                \"property\": \"location\",\n                                \"subject\": \"200_Public_Square\"\n                            },\n                            {\n                                \"object\": \"Cuyahoga_County,_Ohio\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Cleveland\"\n                            },\n                            {\n                                \"object\": \"Ohio\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Cleveland\"\n                            },\n                            {\n                                \"object\": \"Cleveland_City_Council\",\n                                \"property\": \"governingBody\",\n                                \"subject\": \"Cleveland\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"590\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Construction beginning in January 2014, Postmodern art 250 Delaware Avenue has 12 floors with a total area of 30843.8 square meters.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Construction of the 12 floor Postmodern style building , 250 Delaware Avenue, which has a floor area of 30843.8 square metres began in January 2014.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"First begun to be built in January 2014, the postmodernist art 250 Delaware Avenue has 12 floors and a total floor area of 30843.8 square metres.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Postmodern_architecture\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"\\\"January, 2014\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"30843.8 (square metres)\",\n                        \"property\": \"floorArea\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"12\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Postmodern_architecture\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"January, 2014\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"30843.8\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"12\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Postmodern_architecture\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"January, 2014\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"30843.8\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"12\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"591\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North LaSalle is located in Chicago, Du Page County, Illinois, United States where the leader is Susana Mendoza.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North Lasalle is located in Chicago, DuPage County, Illinois. The leader or Chicago is Susana Mendoza.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North LaSalle is situated in Chicago which is part of the Dupage County in Illinois located in the U.S. Susana Mendoza is currently the leader of Chicago.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chicago\",\n                        \"property\": \"location\",\n                        \"subject\": \"300_North_LaSalle\"\n                    },\n                    {\n                        \"object\": \"DuPage_County,_Illinois\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Chicago\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Chicago\"\n                    },\n                    {\n                        \"object\": \"Susana_Mendoza\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Chicago\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chicago\",\n                                \"property\": \"location\",\n                                \"subject\": \"300_North_LaSalle\"\n                            },\n                            {\n                                \"object\": \"DuPage_County,_Illinois\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Chicago\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Chicago\"\n                            },\n                            {\n                                \"object\": \"Susana_Mendoza\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Chicago\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"592\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3 Arena is located in Dublin, the Republic of Ireland, where Críona Ní Dhálaigh was Lord Mayor. The owner of 3Arena is Live Nation Entertainment.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Lord Mayor of Dublin (Republic of Ireland) is Criona Ni Dhalaigh. Based in Dublin is 3Arena which is owned by Live Nation Entretainment.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"the 3Arena, Dublin, Republic of Ireland is owned by Live Nation Entertainment. Críona Ní Dhálaigh was Lord Mayor of Dublin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Live_Nation_Entertainment\",\n                        \"property\": \"owner\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"Críona_Ní_Dhálaigh\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Dublin\"\n                    },\n                    {\n                        \"object\": \"Republic_of_Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Dublin\"\n                    },\n                    {\n                        \"object\": \"Dublin\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Live_Nation_Entertainment\",\n                                \"property\": \"owner\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Críona_Ní_Dhálaigh\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"593\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Live Nation Entertainment owns 3Arena, located in Dublin, Republic of Ireland. The Lord Mayor of Dublin is Críona Ní Dhálaigh.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Owned by Live Nation Entertainment, 3Arena can be found in Dublin in the Republic of Ireland, a Republic run by Lord Mayor Críona Ní Dhálaigh.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Live_Nation_Entertainment\",\n                        \"property\": \"owner\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"Críona_Ní_Dhálaigh\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Dublin\"\n                    },\n                    {\n                        \"object\": \"Republic_of_Ireland\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Dublin\"\n                    },\n                    {\n                        \"object\": \"Dublin\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Live_Nation_Entertainment\",\n                                \"property\": \"owner\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Críona_Ní_Dhálaigh\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"594\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AC Hotel Bella Sky is located in Copenhagen, Denmark and the tenant from the hotel is Marriott International. It is own by Bella Center and there is 23 floors in that hotel.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"There are 23 floors in the AC Hotel Bella Sky Copenhagen, Denmark. The tenant is the Marriott International Hotel and the owner is Bella Center.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Located in Denmark and with tenant Marriott International, AC Hotel Bella Sky Copenhagen is owned by Bella Center and has 23 floors.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"location\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"Marriott_International\",\n                        \"property\": \"tenant\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"Bella_Center\",\n                        \"property\": \"owner\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"23\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"location\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"Marriott_International\",\n                                \"property\": \"operator\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"Bella_Center\",\n                                \"property\": \"owner\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"\\\"23\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"location\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"Bella_Center\",\n                                \"property\": \"owner\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"Marriott_International\",\n                                \"property\": \"tenant\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"\\\"23\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"595\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The tenant of the AC Hotel Bella Sky Copenhagen is Marriott International. The hotel has 23 floors, was designed by the company 3XN and is owned by the Bella Center.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3XN was the architect of the AC Hotel Bella Sky Copenhagen which has 23 floors and is owned by the Bella Center and currently tenanted by Marriott International.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bella Center owns AC Hotel Bella Sky Copenhagen and Marriott International is a tenant. The hotel has 23 floors and was designed by 3XN.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bella_Center\",\n                        \"property\": \"owner\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"Marriott_International\",\n                        \"property\": \"tenant\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"3XN\",\n                        \"property\": \"architect\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    },\n                    {\n                        \"object\": \"23\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bella_Center\",\n                                \"property\": \"owner\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"Marriott_International\",\n                                \"property\": \"tenant\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"3XN\",\n                                \"property\": \"architect\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            },\n                            {\n                                \"object\": \"\\\"23\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"AC_Hotel_Bella_Sky_Copenhagen\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"596\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Construction began in 1927 and finished in 1931 of Adisham Hall in Sri Lanka and was in the Tudor and Jacobean style.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Tudor and Jacobean styled Adisham Hall was built in Sri Lanka between 1927 and 1931.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall began in 1927 and completed in 1931. It has a Tudor and Jacabian style and is located in Sri Lanka.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Tudor and Jacabian\\\"\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"1931\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"1927\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"Adisham_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Tudor and Jacabian\\\"@en\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"1931\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1927\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Tudor and Jacabian\\\"@en\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1931\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1927\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"597\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall is located in Haputale, Sri Lanka which has the capital city of Sri Jayawardenepura Kotte . Tamil is the language of the country.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall can be found in Haputale, Sri Lanka, a country with the capital Sri Jayawardenepura Kotte and language of the Tamil language.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall can be found in Haputale, Sri Lanka, where Sri Lanka's capital is Sri Jayawardenepura Kotte and the language is the Tamil Language.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"Haputale, Sri Lanka\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Sri_Jayawardenepura_Kotte\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Tamil_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Sri_Lanka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"Haputale, Sri Lanka\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Sri_Jayawardenepura_Kotte\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Tamil_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Sri_Lanka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"598\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Construction of Adisham Hall in Sri Lanka began in 1927 and ended in 1931. It was built in the Tudor Revival architectural style.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall , Sri Lanka, was started in 1927 and completed in 1931. It has the Tudor Revival style.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The architectural styled \\\"Tudor Revival\\\" Adisham Hall is located in Sri Lanka and was built in 1927 and completed in 1931.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Tudor_Revival_architecture\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"1931\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"1927\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"Adisham_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Tudor_Revival_architecture\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1931\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1927\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"1931\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Tudor_Revival_architecture\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1927\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"599\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akita Museum of Art is located in Akita Prefecture, Akita, Japan. One of the ethnic groups of Japan is the Filipinos.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Akita Museum of Art is located in Akita, Akita, Akita Prefecture, Japan, where one of the ethnic groups is the Filipinos.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akita Prefecture, where the Akita Museum of Art is located, is part of the country of Japan a country where one of the ethnic groups is Filipinos.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Akita,_Akita\",\n                        \"property\": \"location\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    },\n                    {\n                        \"object\": \"Akita_Prefecture\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Akita,_Akita\"\n                    },\n                    {\n                        \"object\": \"Filipinos_in_Japan\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Japan\"\n                    },\n                    {\n                        \"object\": \"Japan\",\n                        \"property\": \"country\",\n                        \"subject\": \"Akita_Prefecture\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Akita,_Akita\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"Akita_Prefecture\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Akita,_Akita\"\n                            },\n                            {\n                                \"object\": \"Filipinos_in_Japan\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Japan\"\n                            },\n                            {\n                                \"object\": \"Japan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Akita_Prefecture\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"600\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Mason School of Business is located in the US and they are the current tenants of Alan B Miller Hall. Robert A.M. Stern is the architect for Alan B. Miller Hall, which is situated in Virginia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The US based Mason School of Business are the current tenants of Alan B Miller Hall in Virginia which was designed by the architect Robert A M Stern.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Mason School of Business are the current tenants of Alan B Miller Hall, which is located in Virginia, United States and was designed by the architect Robert A M Stern.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Virginia\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"Robert_A._M._Stern\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Mason_School_of_Business\"\n                    },\n                    {\n                        \"object\": \"Mason_School_of_Business\",\n                        \"property\": \"currentTenants\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"Robert_A._M._Stern\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Mason_School_of_Business\"\n                            },\n                            {\n                                \"object\": \"Mason_School_of_Business\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"601\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Situated in Virginia, United States,, Alan B. Miller Hall was completed on 1st June 2009. The current tenants are the Mason School of Business.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Located in Virginia, United States and with the current tenants of the Mason School of Business, the Alan B. Miller Hall was completed in June 1st, 2009.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Virginia\",\n                        \"property\": \"location\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"1 June 2009\\\"\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Mason_School_of_Business\"\n                    },\n                    {\n                        \"object\": \"Mason_School_of_Business\",\n                        \"property\": \"currentTenants\",\n                        \"subject\": \"Alan_B._Miller_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"2009-06-01\\\"^^xsd:date\",\n                                \"property\": \"completionDate\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Mason_School_of_Business\"\n                            },\n                            {\n                                \"object\": \"Mason_School_of_Business\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Virginia\",\n                                \"property\": \"location\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1 June 2009\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Mason_School_of_Business\"\n                            },\n                            {\n                                \"object\": \"Mason_School_of_Business\",\n                                \"property\": \"currentTenants\",\n                                \"subject\": \"Alan_B._Miller_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"602\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Narendra Modi and Sumitra Mahajan are leaders in India where Amdavad ni Gufa is located in Ahmedabad.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Ahmedabad, India. Narendra Modi is the Prime Minister of India whilst Sumitra Mahajan is another leader of India.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa can be found in Ahmedabad, India, a country lead by Narendra Modi and Sumitra Mahajan.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ahmedabad\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"Narendra_Modi\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Sumitra_Mahajan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"603\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The address for Amdavad ni Gufa is Lalbhai Dalpatbhai Campus, near CEPT University, opp. Gujarat University, University Road, Gujarat, Ahmedabad, India.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The address of Amdavad ni Gufa is Lalbhai Dalpatbhai Campus, near CEPT University, opp. Gujarat University, University Road, Ahmedabad, Gujarat, India.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Gujarat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"\\\"Lalbhai Dalpatbhai Campus, near CEPT University, opp. Gujarat University, University Road\\\"\",\n                        \"property\": \"address\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"Ahmedabad\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"\\\"Lalbhai Dalpatbhai Campus, near CEPT University, opp. Gujarat University, University Road\\\"@en\",\n                                \"property\": \"address\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"\\\"Lalbhai Dalpatbhai Campus, near CEPT University, opp. Gujarat University, University Road\\\"@en\",\n                                \"property\": \"address\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"\\\"Lalbhai Dalpatbhai Campus, nearCEPT University, opp.Gujarat University, University Road\\\"@en\",\n                                \"property\": \"address\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"\\\"Lalbhai Dalpatbhai Campus, nearCEPT University, opp.Gujarat University, University Road\\\"@en\",\n                                \"property\": \"address\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"604\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Ahmedabad, Gujarat, India. T S Thakur was an Indian leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Ahmedabad, Gujurat, India. T S Thakur is a leader in India.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Gujarat, Ahmedabad, India, where the leader was T. S. Thakur.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Gujarat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Ahmedabad\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"605\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is located in the Eastern Province of Sri Lanka, where the currency is the Ski Lankan rupee. One of the leaders of Sri Lanka is Ranil Wickremesinghe.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is located in Eastern Province, Sri Lanka. The currency of Sri Lanka is the Sri Lankan rupee and the leader of the country is Ranil Wickremesinghe.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital is in the Eastern Province, Sri Lanka. The leader of Sri Lanka is Ranil Wickremesinghe and its currency is the Sri Lankan rupee.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Ranil_Wickremesinghe\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Sri_Lankan_rupee\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Eastern_Province,_Sri_Lanka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Ampara_Hospital\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Ranil_Wickremesinghe\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Sri_Lankan_rupee\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Eastern_Province,_Sri_Lanka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Ampara_Hospital\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"606\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"San Francisco born architect Julia Morgan designed many significant buildings including the Asilomar Conference Grounds, the Los Angeles Herald Examiner Building and the Asilomar State Beach.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Julia Morgan, born in San Francisco and designer of many significant buildings, including the Los Angeles Herald Examiner building and the Asilomar State Beach, was also the architect of the grounds of Asilomar Conference.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Julia Morgan was born in San Fransisco. She designed the Asilomar Conference Grounds, the Asilomar State Beach and the Los Angeles Herald examiner, a landmark in California.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Julia_Morgan\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"San_Francisco\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"Los_Angeles_Herald-Examiner\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"Asilomar_State_Beach\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Julia_Morgan\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"San_Francisco\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"Los_Angeles_Herald-Examiner\",\n                                \"property\": \"significantBuilding\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"Asilomar_State_Beach\",\n                                \"property\": \"significantBuildings\",\n                                \"subject\": \"Julia_Morgan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"607\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Born in California, Julia Morgan has designed buildings such as Los Angeles Herald Examiner building and The Riverside Art Museum, and was also the architect of the grounds of Asilomar Conference.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Julia Morgan from California, designed many important buildings including the Los Angeles Herald building and the Asilomer Conference Grounds.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Julia_Morgan\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"Los_Angeles_Herald-Examiner\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"Riverside_Art_Museum\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Julia_Morgan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Julia_Morgan\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"Los_Angeles_Herald-Examiner\",\n                                \"property\": \"significantBuilding\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"Riverside_Art_Museum\",\n                                \"property\": \"significantBuildings\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Julia_Morgan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"608\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Public Baths are in New York City, U.S. which is part of Manhattan. New York City was part of New Netherland.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Public Baths are located in New York City, Manhattan, New Netherland in the United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Public Baths is located in New York City, on Manhattan Island, New York, in the United States. New York City was part of what was New Netherland.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"New_York_City\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"New_York_City\"\n                    },\n                    {\n                        \"object\": \"Manhattan\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"New_York_City\"\n                    },\n                    {\n                        \"object\": \"New_Netherland\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"New_York_City\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"New_York_City\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"New_York_City\"\n                            },\n                            {\n                                \"object\": \"Manhattan\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"New_York_City\"\n                            },\n                            {\n                                \"object\": \"New_Netherland\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"New_York_City\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"609\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The architect John Madin was the designer of 103 Colmore Row, which is located in his home city of Birmingham. Labour politician, John Clancy is the leader of Birmingham and the city has the postal code 'B'.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"103 Colmore Row was designed by the architect, John Madin, Birmingham native. Birmingham has the postcode area 'B' and is lead by Labour politician, John Clancy.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Labour politician, John Clancy is the leader of Birmingham which has the postcode area 'B' and is home town of John Madin the architect who designed 103 Colmore Row.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"B_postcode_area\",\n                        \"property\": \"postalCode\",\n                        \"subject\": \"Birmingham\"\n                    },\n                    {\n                        \"object\": \"John_Madin\",\n                        \"property\": \"architect\",\n                        \"subject\": \"103_Colmore_Row\"\n                    },\n                    {\n                        \"object\": \"Birmingham\",\n                        \"property\": \"hometown\",\n                        \"subject\": \"John_Madin\"\n                    },\n                    {\n                        \"object\": \"John_Clancy_(Labour_politician)\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Birmingham\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"B_postcode_area\",\n                                \"property\": \"postalCode\",\n                                \"subject\": \"Birmingham\"\n                            },\n                            {\n                                \"object\": \"John_Madin\",\n                                \"property\": \"architect\",\n                                \"subject\": \"103_Colmore_Row\"\n                            },\n                            {\n                                \"object\": \"Birmingham\",\n                                \"property\": \"hometown\",\n                                \"subject\": \"John_Madin\"\n                            },\n                            {\n                                \"object\": \"John_Clancy_(Labour_politician)\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Birmingham\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"610\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addis Ababa, Ethiopia is home to Addis Ababa Stadium and the Addis Ababa City Hall. The name of the leader in Ethiopia is Malatu Teshome.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Mulatu Teshome is a leader in Ethiopia, a country where Addis Ababa is located and within which is Addis Ababa City Hall and Addis Ababa Stadium.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Mulata Teshome is an Ethiopian leader. Addis Ababa City Hall is located in Addis Ababa, Ethopia. Addis Ababa Stadium is part of Addid Ababa.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mulatu_Teshome\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Ethiopia\"\n                    },\n                    {\n                        \"object\": \"Addis_Ababa_Stadium\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Addis_Ababa\"\n                    },\n                    {\n                        \"object\": \"Ethiopia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    },\n                    {\n                        \"object\": \"Addis_Ababa\",\n                        \"property\": \"location\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mulatu_Teshome\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Ethiopia\"\n                            },\n                            {\n                                \"object\": \"Addis_Ababa_Stadium\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Addis_Ababa\"\n                            },\n                            {\n                                \"object\": \"Ethiopia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"Addis_Ababa\",\n                                \"property\": \"location\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Addis_Ababa_Stadium\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Addis_Ababa\"\n                            },\n                            {\n                                \"object\": \"Ethiopia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"Mulatu_Teshome\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Ethiopia\"\n                            },\n                            {\n                                \"object\": \"Addis_Ababa\",\n                                \"property\": \"location\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"611\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of the US is known as the President and the capital city is Washington DC. One of the country's leaders if Paul Ryan and it is the location of 250 Delaware Avenue.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Paul Ryan is president of the United States and both 250 Delaware Avenue and Washington DC (the capital) are located there.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Paul Ryan is the leader, or President of the United States, of which Washington D.C. is the capital. 250 Delaware Avenue is part of the United States.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Washington,_D.C.\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"President_of_the_United_States\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Paul_Ryan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"location\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Washington,_D.C.\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"President_of_the_United_States\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Paul_Ryan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"location\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"612\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tim Brooke-Taylor was the star of Bananaman, an STV series first aired on 10/03/1983 and created by Steve Bright.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman was created by Steve Bright and starred Tim Brooke-Taylor. The show was first aired on 3rd October 1983 by STV.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tim Brooke-Taylor starred in Bananaman that was created by Steve Bright. It was broadcast by STV and first aired on 3 October 1983.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Tim_Brooke-Taylor\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"Steve_Bright\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"\\\"1983-10-03\\\"\",\n                        \"property\": \"firstAired\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"\\\"STV\\\"\",\n                        \"property\": \"broadcastedBy\",\n                        \"subject\": \"Bananaman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Tim_Brooke-Taylor\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"\\\"Steve Bright\\\"@en\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"\\\"1983-10-03\\\"^^xsd:date\",\n                                \"property\": \"firstAired\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"\\\"STV\\\"@en\",\n                                \"property\": \"network\",\n                                \"subject\": \"Bananaman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"613\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Dan Mishkin and the Puerto Rican national, Ernie Colon created the comic character of Bolt who has the alternative name of Larry Bolatinsky.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Dan Mishkin and Ernie Colón (Puerto Rican) created the comic character Bolt, the alternative name of which is Larry Bolatinsky.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The comic book character of Bolt has the alternative name of Larry Bolatinsky. It was created by Dan Mishkin and the Puerto Rican national, Ernie Colon.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ernie_Colón\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Puerto_Ricans\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Ernie_Colón\"\n                    },\n                    {\n                        \"object\": \"\\\"Larry Bolatinsky\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    },\n                    {\n                        \"object\": \"Dan_Mishkin\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bolt_(comicsCharacter)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Dan_Mishkin\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Puerto_Ricans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Ernie_Colón\"\n                            },\n                            {\n                                \"object\": \"Ernie_Colón\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"\\\"Larry Bolatinsky\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ernie_Colón\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Puerto_Ricans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Ernie_Colón\"\n                            },\n                            {\n                                \"object\": \"\\\"Larry Bolatinsky\\\"@en\",\n                                \"property\": \"alterEgo\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            },\n                            {\n                                \"object\": \"Dan_Mishkin\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bolt_(DC_Comics)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"614\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax is a character in Big Hero 6 that stars Damon Wayans Jr. The character was created by the American, Duncan Rouleau.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Damon Wayans Jr starred in the film Big Hero 6 which also included the character of Baymax who was created by the American, Duncan Rouleau.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax is a character in the film Big Hero 6 which starred Damon Wayans, Jr. The character was created by the American national Duncan Rouleau.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Americans\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Duncan_Rouleau\"\n                    },\n                    {\n                        \"object\": \"Duncan_Rouleau\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Big_Hero_6_(film)\",\n                        \"property\": \"series\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Damon_Wayans,_Jr.\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Big_Hero_6_(film)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Duncan_Rouleau\"\n                            },\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"series\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Damon_Wayans,_Jr.\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Big_Hero_6_(film)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"615\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax, a character in Big Hero 6, starring Jamie Chung, was created by Duncan Rouleau, an American.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jamie Chung starred in the film Big Hero 6 in which the character of Baymax appeared. Baymax was created by the American national, Duncan Rouleau.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Duncan Rouleau, who is American, created the character Baymax, which appeared in the movie Big Hero 6 starring Jamie Chung.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Americans\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Duncan_Rouleau\"\n                    },\n                    {\n                        \"object\": \"Duncan_Rouleau\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Big_Hero_6_(film)\",\n                        \"property\": \"series\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Jamie_Chung\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Big_Hero_6_(film)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Duncan_Rouleau\"\n                            },\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"series\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Jamie_Chung\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Big_Hero_6_(film)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Duncan_Rouleau\"\n                            },\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"series\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Jamie_Chung\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Big_Hero_6_(film)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"616\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Big Hero 6 starred May Rudolph and the character of Baymax who was created by the American, Duncan Rouleau.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax is a character in the film Big Hero 6 which starred Maya Rudolph. The creator of this character was American born Duncan Rouleau.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Maya Rudolph stars in Big Hero 6 in which the character Baymax also appears. Baymax was created by the American, Duncan Rouleau.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Americans\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Duncan_Rouleau\"\n                    },\n                    {\n                        \"object\": \"Duncan_Rouleau\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Big_Hero_6_(film)\",\n                        \"property\": \"series\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Maya_Rudolph\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Big_Hero_6_(film)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Duncan_Rouleau\"\n                            },\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"series\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Maya_Rudolph\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Big_Hero_6_(film)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"617\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bread, almonds, garlic, water, and olive oil are the main ingredients in Ajoblanco, a food which originates from Andalusia, in Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco is from Andalusia Spain and ingredients include bread, almonds, garlic, water, and olive oil.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco, a dish from the Andalusia region of Spain, has the main ingredients bread, almonds, garlic, water and olive oil.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"\\\"Bread, almonds, garlic, water, olive oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Andalusia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Bread\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"\\\"Bread, almonds, garlic, water, olive oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Andalusia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Bread\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"618\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Water is an ingredient in Ajoblanco, also known as Ajo blanco, a dish that comes from Andalusia Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco is a food originates from the Andalusian region of Spain and contains water.An other alternative name of the dish is Ajo blanco.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Andalusia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"\\\"Ajo blanco\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Water\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Andalusia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"\\\"Ajo blanco\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Water\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"619\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Lemper, a dish variation of Arem-Arem contains Banana leaf in which is cooked compressed rice with vegetables or minced meat fillings and is a form of Javanese cuisine.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of Arem-arem are compressed rice cooked in banana leaf with vegetables or minced meat fillings. The dish is of Javanese cuisine and has a variation known as Lemper.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lemper\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"Banana_leaf\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"\\\"compressed rice cooked in banana leaf with vegetables or minced meat fillings\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"Javanese_cuisine\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arem-arem\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lemper\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Banana_leaf\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"\\\"compressed rice cooked inbanana leafwith vegetables or minced meat fillings\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Javanese_cuisine\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"620\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem-arem is a food that is found nationwide in Indonesia, but more specific to Java, it can be served as a main course and has a banana leaf in it. It's main ingredients are compressed rice cooked in banana leaf with vegetables or minced meat fillings.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of Arem-arem are compressed rice cooked in banana leaf with vegetables or minced meat fillings. It is served as a main course and is found nationwide in Indonesia and more specifically in Java.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Banana_leaf\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"\\\"Main course\\\"\",\n                        \"property\": \"course\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"\\\"compressed rice cooked in banana leaf with vegetables or minced meat fillings\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"\\\"Nationwide in Indonesia, but more specific to Java\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arem-arem\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Banana_leaf\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"\\\"compressed rice cooked inbanana leafwith vegetables or minced meat fillings\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"\\\"Main course\\\"@en\",\n                                \"property\": \"course\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"\\\"Nationwide in Indonesia, but more specific to Java\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Banana_leaf\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"\\\"Main course\\\"@en\",\n                                \"property\": \"course\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"\\\"compressed rice cooked in banana leaf with vegetables or minced meat fillings\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"\\\"Nationwide in Indonesia, but more specific to Java\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"621\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce originates from the region of Rome in Italy. It is made with tomatoes, red chili, garlic and olive oil.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is a traditional dish from Rome,Italy.The main ingredients of it are tomatoes,red chili pepper,garlic and olive oil.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is a traditional dish from Rome in Italy. An important ingredient is chili pepper and it also contains tomatoes, red chili, garlic and olive oil.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chili_pepper\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"\\\"Tomatoes, red chili, garlic, olive oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chili_pepper\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Tomatoes, red chili, garlic, olive oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Rome\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Chili_pepper\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Tomatoes,red chili,garlic,olive oil\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Rome\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Chili_pepper\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Tomatoes, red chili, garlic, olive oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Chili_pepper\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Tomatoes,red chili,garlic,olive oil\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"622\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros Negre is a traditional dish from the Catalonia region of Spain. The main ingredients of Arros negre are white rice, cuttlefish or squid, cephalopod ink, and cubanelle peppers.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre is from the region of Catalonia in Spain. The main ingredients of Arros negre are white rice, cuttlefish or squid, cephalopod ink, and cubanelle peppers.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre, from the Catalonia region of Spain, includes Cephalopod ink, white rice, cuttlefish/squid and cubanelle peppers.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"\\\"White rice, cuttlefish or squid, cephalopod ink, cubanelle peppers\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Catalonia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Cephalopod_ink\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"\\\"White rice, cuttlefish or squid, cephalopod ink, cubanelle peppers\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Catalonia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Cephalopod_ink\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"623\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of Arròs negre, which is from Spain, are white rice, cuttlefish or squid, cephalopod ink, cubanelle and cubanelle peppers. Arròs negre is from the Catalonia region.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients in arròs negre are white rice, cuttlefish or squid, cephalopod ink and cubanelle peppers. It is a traditional dish from the Catalonia region of Spain.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients in arròs negre are white rice, cuttlefish or squid, cephalopod ink and cubanelle peppers. It is a traditional Spanish dish from the Catalonia region.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"\\\"White rice, cuttlefish or squid, cephalopod ink, cubanelle peppers\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Catalonia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Cubanelle\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"\\\"White rice, cuttlefish or squid, cephalopod ink, cubanelle peppers\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Catalonia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Cubanelle\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"624\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre is a traditonal dish from the Valencian Community, Spain. It has the main ingredients of white rice, cuttlefish or squid, cephalopod ink and cubnelle peppers.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre comes from the region of the Valencian Community, Spain. The main ingredients are white rice, cuttlefish or squid, cephalopod ink and cubanelle peppers.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre comes from the region of the Valencian Community in Spain. The main ingredients are white rice, cuttlefish or squid, cephalopod ink, cubanelle peppers.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Valencian_Community\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"\\\"White rice, cuttlefish or squid, cephalopod ink, cubanelle peppers\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Cubanelle\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Arròs_negre\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Valencian_Community\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"\\\"White rice, cuttlefish or squid, cephalopod ink, cubanelle peppers\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Cubanelle\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Arròs_negre\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"625\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is found in the region of Sumatra and Malay peninsula in Malaysia. It can also be called Asam padeh and it's ingredients are fish cooked in sour and hot sauce.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas (aka asam padeh) is from the Sumatra and Malay Peninsula regions of Malaysia. The main ingredients are fish cooked in sour and hot sauce.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam padeh is also known as asam pedas and is a food found in Malaysia originating from the Sunatra and Malay Peninsula regions. The main ingredients is fish cooked in a sour and hot sauce.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"\\\"Sumatra and Malay Peninsula\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"\\\"Fish cooked in sour and hot sauce\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"\\\"Asam padeh\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Asam_pedas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"\\\"Sumatra and Malay Peninsula\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"\\\"Fish cooked in sour and hot sauce\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"\\\"Asam padeh\\\"@en\",\n                                \"property\": \"alternateName\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"626\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is a food found in Malaysia and Sumatra. Malaysian Malay is an ethnic group in Malaysia and Sumatra has an ethnic group called the Minangkabau people.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is a food found in Malaysia and Sumatra. Malay is the ethnic group of Malaysia and the Minangkabau people are an ethnic group of Sumatra.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is found in Malaysia, originating from Sumatra. Sumatra is home to the Minangkabau people and Malaysia, the Malay people.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"Malaysian_Malay\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Minangkabau_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Sumatra\"\n                    },\n                    {\n                        \"object\": \"Sumatra\",\n                        \"property\": \"region\",\n                        \"subject\": \"Asam_pedas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Malay\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Minangkabau_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Sumatra\"\n                            },\n                            {\n                                \"object\": \"Sumatra\",\n                                \"property\": \"region\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"627\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Bacon Explosion comes from the Kansas city metro area in the U.S. The main ingredient in it is bacon and also includes sausage.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion comes from the Kansas City metropolitan area of the United States and includes the main ingredient of sausage and bacon.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion is from the Kansas City metropolitan area of the United States. The main ingredient is bacon along with sausage.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Sausage\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Kansas_City_metropolitan_area\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Bacon\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bacon_Explosion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Sausage\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Kansas_City_metropolitan_area\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Bacon\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bacon_Explosion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"628\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion comes from the United States, where one of the leaders is Paul Ryan. It is also where Asian Americans are one of the ethnic groups and Washington, D.C. is the capital.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States is the country of the Bacon Explosion and the leader is Paul Ryan. Asian Americans are an ethnic group in the United States and the capital is Washington, D.C.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Bacon Explosion originates from the United States. The U.S. boasts leader Paul Ryan, is home to Asian Americans and has its capital in Washington D.C.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Paul_Ryan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Asian_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Washington,_D.C.\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Paul_Ryan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Asian_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Washington,_D.C.\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"629\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon sandwiches are popular in the UK, have a variant called a BLT, include the ingredient bacon and sometimes go by the name of: bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm and bacon muffin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The bacon sandwich, of which an ingredient is bacon, has a variation called the BLT and has different names including: bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm and bacon muffin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A bacon sandwich, which is a variation of the BLT, can also be known as a bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, or bacon muffin. It is a dish containing bacon and comes from the United Kingdom.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"BLT\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"Bacon\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_sandwich\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"BLT\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"Bacon\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_sandwich\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"630\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon sandwich is a dish from the United Kingdom and a variation is the BLT. An ingredient used is brown sauce and it's different names include Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm and bacon muffin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The country that bacon sandwich comes from is the United Kingdom, it is also known as a bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, or bacon muffin. Brown sauce can be served with it and a variation is the BLT.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon sandwiches are popular in the UK and can contain the ingredient brown sauce. A variation of the sandwich is a BLT and it can also be known as a bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, or bacon muffin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"BLT\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"Brown_sauce\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_sandwich\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"BLT\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"Brown_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_sandwich\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"631\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"From the United Kingdom, the bacon sandwich's main ingredients are bread and bacon and a condiment, often ketchup or brown sauce. It can also be known as a bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, or bacon muffin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon sandwich originates from the United Kingdom and its main ingredients are bread,bacon with ketchup or brown sauce.It has different names including:Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm and bacon muffin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of a bacon sandwich, (popular in the UK), are bread, bacon and ketchup or brown sauce as a condiment. The bacon sandwich has several alternative names including: bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm and bacon muffin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Bread and bacon, with a condiment, often ketchup or brown sauce\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"Ketchup\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bacon_sandwich\"\n                    },\n                    {\n                        \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bacon_sandwich\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Bread and bacon, with a condiment, often ketchup or brown sauce\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"Ketchup\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bacon_sandwich\"\n                            },\n                            {\n                                \"object\": \"\\\"Bacon butty, bacon sarnie, rasher sandwich, bacon sanger, piece 'n bacon, bacon cob, bacon barm, bacon muffin\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Bacon_sandwich\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"632\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska has the main ingredients of meringue, ice cream and sponge cake (or Christmas pudding). It is found in France, the US, China, Hong Kong, New York and Paris.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska contains: ice cream, sponge cake (Christmas pudding) and meringue. It is found in Hong Kong, New York and Paris. The origins are either France, Canada or the United States.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Meringue, ice cream, sponge cake or Christmas pudding\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"\\\"France, United States or China\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"\\\"Paris, New York or Hong Kong\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Meringue\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Meringue, ice cream,sponge cakeorChristmas pudding\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"\\\"France, United States or China\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"\\\"Paris, New York or Hong Kong\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Meringue\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"633\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska comes from either Paris, New York USA or Hong Kong. Meringue, ice cream, sponge cake or Christmas pudding are main ingredients in baked Alaska.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska is found in Hong Kong, New York and Paris. Meringue, ice cream, sponge cake or Christmas pudding are its main ingredients.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Meringue, ice cream, sponge cake or Christmas pudding\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"\\\"Paris, New York or Hong Kong\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Ice_cream\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Meringue, ice cream,sponge cakeorChristmas pudding\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"\\\"Paris, New York or Hong Kong\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Ice_cream\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"634\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The bakewell tart is popular in the Derbyshire Dales area which is part of Derbyshire. It's a variant of bakewell pudding and uses frangipane.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell tart, a variation of Bakewell pudding, includes the ingredient frangipane and originates from the Derbyshire Dales region of Derbyshire.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell tart is a variant of bakewell pudding and comes from the Derbyshire Dales. It contains frangipane.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bakewell_tart\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Derbyshire_Dales\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakewell_tart\"\n                    },\n                    {\n                        \"object\": \"Derbyshire\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Frangipane\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakewell_tart\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Derbyshire_Dales\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakewell_tart\"\n                            },\n                            {\n                                \"object\": \"Derbyshire\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Frangipane\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakewell_tart\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"635\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell tart is a variation of Bakewell pudding that originates from the Derbyshire Dales. It is a dessert that has the main ingredients of ground almond, jam, butter and eggs.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell tart is a variation of Bakewell pudding which is a dessert that comes from the Derbyshire Dales area and has the main ingredients ground almonds, jam, butter and eggs.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell pudding is a dessert from the Derbyshire Dales region and contains the ingredients ground almonds, jam, butter and eggs. It has a variation called Bakewell tart.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Derbyshire_Dales\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Bakewell_tart\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"\\\"Dessert\\\"\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"\\\"Ground almond, jam, butter, eggs\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bakewell_pudding\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Derbyshire_Dales\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"\\\"Ground almond, jam, butter, eggs\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"\\\"Dessert\\\"@en\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bakewell_pudding\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Derbyshire_Dales\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"\\\"Dessert\\\"@en\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"\\\"Ground almond, jam, butter, eggs\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bakewell_pudding\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"636\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"From the Derbyshire Dales region (in Derbyshire), isBakewell pudding. A variation of which, is Bakewell tart, its main ingredient is shortcrust pastry.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell tart is a variation of Bakewell pudding which uses shortcut pastry and comes from the Derbyshire Dales in Derbyshire.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell tart is a variant of bakewell pudding from the Derbyshire Dales in Derbyshire. The main ingredient is shortcrust pastry.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Derbyshire_Dales\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Bakewell_tart\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Derbyshire\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Shortcrust_pastry\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakewell_tart\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Derbyshire_Dales\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Derbyshire\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Shortcrust_pastry\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakewell_tart\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"637\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa is a Colombian dish from the Paisa region. Its main ingredients include red beans, pork belly, white rice, ground meat, chicharon, fried egg, plantain (patacones), chorizo, arepa, hogao sauce, black pudding (morcilla), avocado and lemon.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa originates from the Paisa region, Columbia. The main ingredients are: red beans, pork belly, white rice, ground meat, chicharon, fried egg, plantain (patacones), chorizo, arepa, hogao sauce, black pudding (morcilla), avocado and lemon.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa is a typical Colombian dish from the Paisa region and contains the ingredients: red beans, pork belly, white rice, ground meat, chicharon, fried egg, plantain (patacones), chorizo, arepa, hogao sauce, black pudding (morcilla), avocado and lemon.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Rice\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"\\\"red beans, pork belly, white rice, ground meat, chicharon, fried egg, plantain (patacones), chorizo, arepa, hogao sauce, black pudding (morcilla), avocado and lemon\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Paisa_Region\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Colombian_cuisine\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bandeja_paisa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Rice\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"\\\"red beans,pork belly, whiterice,ground meat,chicharon,fried egg,plantain(patacones),chorizo, arepa, hogao sauce,black pudding(morcilla),avocadoandlemon\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Paisa_Region\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Colombian_cuisine\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bandeja_paisa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"638\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batagor is an Indonesian food and a variation of the Siomay dish.It contains a fried fish dumpling with tofu and vegetables in peanut suace.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batagor, (a variation of Siomay), is a dish found in Indonesia and its main ingredients are fried fish dumpling with tofu and vegetables in peanut sauce.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batagor, from Indonesia, is a dish consisting of fried fish dumplings, tofu and vegetables in peanut sauce. Siomay is a variation of batagor.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Batagor\"\n                    },\n                    {\n                        \"object\": \"Peanut_sauce\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Batagor\"\n                    },\n                    {\n                        \"object\": \"Siomay\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Batagor\"\n                    },\n                    {\n                        \"object\": \"\\\"fried fish dumpling with tofu and vegetables in peanut sauce\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Batagor\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Peanut_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"\\\"fried fish dumpling with tofu and vegetables in peanut sauce\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Siomay\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Batagor\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Peanut_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"\\\"fried fish dumpling with tofu and vegetables in peanut sauce\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Siomay\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"\\\"Indonesia\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batagor\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Peanut_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Siomay\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"\\\"fried fish dumpling with tofu and vegetables inpeanut sauce\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"\\\"Indonesia\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batagor\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Peanut_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Siomay\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"\\\"fried fish dumpling with tofu and vegetables inpeanut sauce\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Batagor\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"639\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batagor is found in the country of Indonesia. It is a variation on Siomay or Shumai, the latter of which includes Shiitake.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Shumai, which has shiitake as a component and is similar to Siomay, is a variation of the Indonesian dish batagor.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Batagor\"\n                    },\n                    {\n                        \"object\": \"Siomay\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Shumai\"\n                    },\n                    {\n                        \"object\": \"Shiitake\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Shumai\"\n                    },\n                    {\n                        \"object\": \"Shumai\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Batagor\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Siomay\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Shumai\"\n                            },\n                            {\n                                \"object\": \"Shiitake\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Shumai\"\n                            },\n                            {\n                                \"object\": \"Shumai\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Batagor\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batagor\"\n                            },\n                            {\n                                \"object\": \"Siomay\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Shumai\"\n                            },\n                            {\n                                \"object\": \"Shiitake\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Shumai\"\n                            },\n                            {\n                                \"object\": \"Shumai\",\n                                \"property\": \"variations\",\n                                \"subject\": \"Batagor\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"640\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is a dish from the country of Singapore, where Halimah Yacob is leader and Standard Chinese is spoken. The dish originated from the region of Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow comes from the region of Indonesia and also Singapore. The leader of Singapore, where Standard Chinese is the spoken language, is Halimah Yacob.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Standard_Chinese\",\n                        \"property\": \"language\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Halimah_Yacob\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Standard_Chinese\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"641\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is a dish found in Singapore and Indonesia. Kway teow, beef tender loin, gula Melaka, sliced, dried black beans, garlic, dark soy sauce, lengkuas, oyster sauce, soya sauce, chilli and sesame oil are main ingredients in beef kway teow.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is served in the region of Indonesia and is also found in Singapore. The main ingredients are Kway teow, beef tender loin, gula Melaka, sliced, dried black beans, garlic, dark soy sauce, lengkuas, oyster sauce, soya sauce, chilli and sesame oil.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beek kway teos includes: kway teow, beef tenderloin, gula Melaka, black beans, garlic, oyster, soya and soy sauce, lengkuas, chili and sesame oil. It is found in Singapore.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Kway teow, beef tender loin, gula Melaka, sliced, dried black beans, garlic, dark soy sauce, lengkuas, oyster sauce, soya sauce, chilli and sesame oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Oyster_sauce\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"\\\"Singapore and Indonesia\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Kway teow , beef tenderloin, gula Melaka ,sliced, dried black beans, garlic, dark soy sauce, lengkuas , oyster sauce, soya sauce, chilli and sesame oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Oyster_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"\\\"Singapore and Indonesia\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"642\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is known to come from the Singapore region and also Indonesia. It's main ingredients are Kway teow, beef tender loin, gula Melaka, sliced, dried black beans, garlic, dark soy sauce, lengkuas, oyster sauce, soya sauce, chilli and sesame oil.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow, originating in Indonesia, is a dish found in Singapore. Its main ingredients are Kway teow, beef tender loin, gula Melaka, sliced, dried black beans, garlic, dark soy sauce, lengkuas, oyster sauce, soya sauce, chilli and sesame oil.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Kway teow, beef tender loin, gula Melaka, sliced, dried black beans, garlic, dark soy sauce, lengkuas, oyster sauce, soya sauce, chilli and sesame oil are the main ingredients of Beef kway teow. The dish originated in Singapore and is found in Indonesia.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"\\\"Kway teow, beef tender loin, gula Melaka, sliced, dried black beans, garlic, dark soy sauce, lengkuas, oyster sauce, soya sauce, chilli and sesame oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Oyster_sauce\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Beef_kway_teow\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"\\\"Kway teow , beef tenderloin, gula Melaka ,sliced, dried black beans, garlic, dark soy sauce, lengkuas , oyster sauce, soya sauce, chilli and sesame oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Oyster_sauce\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Beef_kway_teow\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"643\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow comes from the Singapore region where The English language is spoken. The dish is found in the countries of Indonesia and Singapore. The leader of Singapore is Tony Tan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is a dish of Singapore where Tony Tan is the leader and English is spoken. The dish is also popular in Indonesia.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Singapore's leader is Tony Tan and one of the country's spoken language is English.Beef kway teow is made there and Indonesia too.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"\\\"Singapore and Indonesia\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Tony_Tan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"\\\"Singapore and Indonesia\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"644\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji comes from the country India, where two of the leaders are T.S. Thakur and Narendra Modi. It is also where the Indian rupee is the currency.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji comes from the country India, where the currency is the rupee. The leader of India is either T. S. Thakur and/or Narendra Modi.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji comes from the country India, where the currency is the rupee and the leader is either T. S. Thakur and/or Narendra Modi.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Indian_rupee\",\n                        \"property\": \"currency\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Narendra_Modi\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Indian_rupee\",\n                                \"property\": \"currency\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Indian_rupee\",\n                                \"property\": \"currency\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"645\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originate from India where the Indian people come from. The leaders of the country are T S Thakur and Sumitra Mahajan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originate from India where the Indian people are lead by T S Thakur and Sumitra Mahajan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Indian_people\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Sumitra_Mahajan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Indian_people\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"646\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji come from the Karnataka region of India. Narendra Modi is the name of the leader of India, another leader is Sumitra Mahajan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from the Karnataka region of India.The country's leaders are Narendra Modi and Sumitra Mahajan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originate from the Karnataka region in India. The country's leaders are Narendra Modi and Sumitra Mahajan.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Narendra_Modi\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Sumitra_Mahajan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bhajji\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id30\"\n            }\n        },\n        {\n            \"647\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji comes from Karnataka, India. One leader in India is T.S. Thakur and another Vajubhai Vala.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji are found in the region of Karnataka, India. The leader of India is called T. S. Thakur and Vajubhai Vala is the leader of Karnataka.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji comes from the Karnataka region or India. Vajubhai Vala is a leader of Karnatka and T.S. Thakur is the leader of India.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Vajubhai_Vala\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Karnataka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Vajubhai_Vala\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Karnataka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id31\"\n            }\n        },\n        {\n            \"648\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cookies and binignit are types of dessert. One of the ingrediens in binignit is sweet potato which belongs to the order Solanales.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sweet_potato\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Binignit\"\n                    },\n                    {\n                        \"object\": \"Cookie\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    },\n                    {\n                        \"object\": \"Solanales\",\n                        \"property\": \"order\",\n                        \"subject\": \"Sweet_potato\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sweet_potato\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Binignit\"\n                            },\n                            {\n                                \"object\": \"Cookie\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            },\n                            {\n                                \"object\": \"Solanales\",\n                                \"property\": \"order\",\n                                \"subject\": \"Sweet_potato\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id32\"\n            }\n        },\n        {\n            \"649\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sour cream, chopped fruits, condensed milk. granola, raisins and shredded coconut are the main ingredients in Bionico, a food found in Guadalajara, in Mexico.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico has the ingredients chopped fruits, sour cream, condensed milk, granola, shredded coconut and raisins and can be found in Guadalajara, Mexico.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ingredients of Bionico, a dish from the Guadalaraja region of Mexico, are chopped fruits, sour cream, condensed milk, granola, shredded coconut and raisins.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mexico\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"\\\"Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Guadalajara\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Condensed_milk\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mexico\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"\\\"Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Guadalajara\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Condensed_milk\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id33\"\n            }\n        },\n        {\n            \"650\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a food found in the Jalisco region of Mexico;its ingredients contain the following: sour cream, chopped fruits, condensed milk. granola, raisins and shredded coconut.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico comes from the Jalisco region of Mexico.The main ingredients of the food are:chopped Fruits, sour cream, condensed milk, granola, shredded coconut and raisins.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is found in the region of Jalisco, Mexico and consists of sour cream, chopped fruits, condensed milk. granola, raisins and shredded coconut.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mexico\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"\\\"Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Jalisco\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Sour_cream\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mexico\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"\\\"Chopped Fruits, Sour Cream, Condensed Milk, Granola, Shredded Coconut, Raisins\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Jalisco\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Sour_cream\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id34\"\n            }\n        },\n        {\n            \"651\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso is a Chinese dish found in Indonesia, the leader of which is Jusuf Kalla. Jakarta is the capital of Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso is from the Chinese cuisine and is found in Indonesia where the capital city is Jakarta and Jusuf Kalla is a leader.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jakarta\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Jusuf_Kalla\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakso\"\n                    },\n                    {\n                        \"object\": \"Chinese_cuisine\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bakso\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jakarta\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakso\"\n                            },\n                            {\n                                \"object\": \"Chinese_cuisine\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bakso\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id35\"\n            }\n        },\n        {\n            \"652\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso comes from Indonesia, and celery is a main ingredient. Jasuf Kalla is a leader in Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Celery is an ingredient of Bakso, a dish from the country of Indonesia, where Jusuf Kalla is a leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso ( which contains celery) is a dish found in Indonesia where it originated. One of the country's leaders is Jusuf Kalla.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jusuf_Kalla\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakso\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bakso\"\n                    },\n                    {\n                        \"object\": \"Celery\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakso\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakso\"\n                            },\n                            {\n                                \"object\": \"\\\"Indonesia, derived from Chinese meat ball\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bakso\"\n                            },\n                            {\n                                \"object\": \"Celery\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakso\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id36\"\n            }\n        },\n        {\n            \"653\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Two leaders of Italy, where Amatriciana sauce is found, are Matteo Renzi and Sergio Mattarella. Its capital is Rome.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italy is the country Amatriciana sauce comes from. The capital is Rome and political leaders include Matteo Renzi and Sergio Mattarella.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Rome is the capital of Italy, where Sergio Mattarell and Matteo Renzi are leaders and where amatriciana sauce is a traditional dish.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Matteo_Renzi\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    },\n                    {\n                        \"object\": \"Sergio_Mattarella\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Matteo_Renzi\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Italy\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Matteo_Renzi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id37\"\n            }\n        },\n        {\n            \"654\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet comes from the Singaporean region and Halimah Yacob is the country's leader.It can be found in Java as well where Baduy people is an ethnic group.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a dish from the region of Singapore which is lead by Halimah Yacob. It is also found in Java where the Baduy are an ethnic group.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayem penyet is a dish from Java where the Baduy are an ethnic group. It also originates from the region of Singapore where the leader is Halimah Yacob.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Baduy\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Java\"\n                    },\n                    {\n                        \"object\": \"Halimah_Yacob\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Baduy\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Java\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id38\"\n            }\n        },\n        {\n            \"655\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a dish from Java and Singapore. The leader of the latter is Tony Tan and the Banyumasan people are an ethnic group from Java.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a dish from Singapore and Java. Banyumasan people is one of the ethnic groups in Java and Tony Tan is a leader in Singapore.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Banyumasan people are an ethnic group in Java, where the dish ayam penyet is found. The dish originates in Singapore, where Tony Tan is the leader.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Banyumasan_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Java\"\n                    },\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Tony_Tan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Banyumasan_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Java\"\n                            },\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id39\"\n            }\n        },\n        {\n            \"656\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The language spoken in the Philippines is Philippine Spanish and batchoy is eaten there. Ethnic groups include the llocano people and the Moro people.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batchoy is eaten in the Philippines where Phillippine Spanish is spoken and ethnic groups include the Ilocano and Moro.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Moro and the Ilocano people are ethnic groups within the Philippines where batchoy is eaten and the language used is Philippine Spanish.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ilocano_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Philippines\"\n                    },\n                    {\n                        \"object\": \"Philippine_Spanish\",\n                        \"property\": \"language\",\n                        \"subject\": \"Philippines\"\n                    },\n                    {\n                        \"object\": \"Philippines\",\n                        \"property\": \"country\",\n                        \"subject\": \"Batchoy\"\n                    },\n                    {\n                        \"object\": \"Moro_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Philippines\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ilocano_people\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Philippines\"\n                            },\n                            {\n                                \"object\": \"Philippine_Spanish\",\n                                \"property\": \"language\",\n                                \"subject\": \"Philippines\"\n                            },\n                            {\n                                \"object\": \"Philippines\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batchoy\"\n                            },\n                            {\n                                \"object\": \"Moro_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Philippines\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id40\"\n            }\n        },\n        {\n            \"657\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arròs negre is a traditional dish from Spain whose leader is Felipe VI and Euro is its currency. Spaniards are the ethnic group of Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Euro is the currency in Spain, where the leader is Felipe VI and Spaniards are an ethnic group. Spain is also the home of the traditional dish Arròs negre.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arròs negre is a dish from Spain where the leader is Felipe VI. Spaniards are an ethnic group of Spain and the currency used is the euro.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Euro\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Spain\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Spaniards\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Spain\"\n                    },\n                    {\n                        \"object\": \"Felipe_VI_of_Spain\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Spain\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Euro\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Spaniards\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Felipe_VI_of_Spain\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Spain\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id41\"\n            }\n        },\n        {\n            \"658\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adams County, Pennsylvania has Carrol County, Maryland to its southeast and Pennsylvania's Cumberland County is to the north of the Adams County. The 11th Mississippi Infantry Monument is in Adams County of the municipality of Gettysburg Pennsylvania. .\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 11th Mississippi Infantry Monument is located at Gettysburg, Adams County, Pennsylvania, which has Cumberland County, Pennsylvania to its north and Carrol County, Maryland to its southeast.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The municipality of Gettysburg, Adams County, Pennsylvania is the location of the 11th Mississippi Infantry monument. Adams County is south of Cumberland County and to the northwest of Carroll County, Maryland.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Carroll_County,_Maryland\",\n                        \"property\": \"has to its southeast\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Cumberland_County,_Pennsylvania\",\n                        \"property\": \"has to its north\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Gettysburg,_Pennsylvania\",\n                        \"property\": \"municipality\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Adams_County,_Pennsylvania\",\n                        \"property\": \"location\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Carroll_County,_Maryland\",\n                                \"property\": \"southeast\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Cumberland_County,_Pennsylvania\",\n                                \"property\": \"north\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Gettysburg,_Pennsylvania\",\n                                \"property\": \"municipality\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Adams_County,_Pennsylvania\",\n                                \"property\": \"region\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"659\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 11th Mississippi Infantry Monument is a Contributing Property located in Adams County, Pennsylvania, with Franklin County to its west and Carrol County, Maryland to its southeast.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Pennsylvania's Franklin County is found to the west of Adams County while Carrol County Maryland is southeast of Adams County Pennsylvania. The location of the 11th Mississippi Infantry Monument is Adams County, Pennsylvania and falls under the category of Contributing property.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Franklin_County,_Pennsylvania\",\n                        \"property\": \"has to its west\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Carroll_County,_Maryland\",\n                        \"property\": \"has to its southeast\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Contributing_property\",\n                        \"property\": \"category\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Adams_County,_Pennsylvania\",\n                        \"property\": \"location\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Franklin_County,_Pennsylvania\",\n                                \"property\": \"west\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Carroll_County,_Maryland\",\n                                \"property\": \"southeast\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Contributing_property\",\n                                \"property\": \"category\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Adams_County,_Pennsylvania\",\n                                \"property\": \"region\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"660\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku, the capital of Azerbaijan is the location of the Turkish Martyrs memorial dedicated to the soldiers of the Ottoman army killed in the Battle of Baku. The memorial was designed by Huseyin Butuner and Hilmi Guner.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs Memorial has been dedicated to Ottoman Army soldiers killed in the Battle of Baku and is located in Azerbaijan's capital Baku. The Memorial was designed by Hüseyin Bütüner and Hilmi Güner.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku is the capital of Azerbaijan and the location of the Turkish Martyrs memorial dedicated to the soldiers of the Ottoman army who died in the battle of Baku. The memorial was designed by Huseyin Butuner and Hilmi Guner.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Baku\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Baku\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"661\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku is the capital of Azerbaijan and the leader of the legislature (the National Assembly) is Artur Rasizade. Azerbaijan is the location of the Baku Turkish Martyrs memorial.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The National Assembly is the legislative branch of government in Azerbaijan where the leader is Artur Rasizade. The Turkish martyrs memorial is located in the capital, Baku.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is located in Baku, the capital of Azerbaijan, where leader is Artur Rasizade and the legislature is known as the National Assembly.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"Baku\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"National_Assembly_(Azerbaijan)\",\n                        \"property\": \"legislature\",\n                        \"subject\": \"Azerbaijan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"Baku\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"National_Assembly_(Azerbaijan)\",\n                                \"property\": \"legislature\",\n                                \"subject\": \"Azerbaijan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"662\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The red granite and white marble Baku Turkish Martyrs' Memorial is dedicated to the Ottoman Army Soldiers killed in the Battle of Baku, and is located in Baku, Azerbaijan, where the leader is Artur Rasizade.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Artur Rasizade was an Azerbaijan leader. Baku Turkish Martyrs' Memorial is made of red granite and white marble, is dedicated to the Ottoman Army soldiers killed in the Battle of Baku and located in Azerbaijan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Artur Rasizade is an Azerbaijan leader. The Baku Turkish Martyrs' Memorial located in Baku, Azerbaijan is made with red granite and white marble and has been dedicated to Ottoman Army soldiers killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Red granite and white marble\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"663\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial, which is dedicated to the Ottoman Army Soldiers killed in the Battle of Baku, is located in Azerbaijan, where the official leader (Prime Minister of Azerbaijan) is called Artur Rasizade.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyr's Memorial is dedicated to the Ottoman Army soldiers killed in the Battle of Baku, and is located in Azerbaijan, which is led by the Prime Minister of Azerbaijan, Artur Rasizade.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Artur Rasizade is the Prime Minister of Azerbaijan. Azerbaijan is the location of the Baku Turkish Martyrs memorial which is dedicated to the soldiers of the Ottoman army killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Prime_Minister_of_Azerbaijan\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Azerbaijan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Prime_Minister_of_Azerbaijan\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Azerbaijan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"664\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The full name of A.C. Chievo Verona is Associazione Calcio ChievoVerona S.r.l. and their home ground in Verona, Italy holds 39371 fans. The club played the 2014-15 season in Serie A.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.C. Chievo Verona played the 2014-15 season in Serie A and has 39371 members. Their full name is \\\"Associazione Calcio ChievoVerona S.r.l.\\\" and their home ground is in Verona, Italy.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Associazione Calcio ChievoVerona S.r.l.\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.C._Chievo_Verona\"\n                    },\n                    {\n                        \"object\": \"\\\"Verona, Italy\\\"\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.C._Chievo_Verona\"\n                    },\n                    {\n                        \"object\": \"2014–15_Serie_A\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.C._Chievo_Verona\"\n                    },\n                    {\n                        \"object\": \"39371\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.C._Chievo_Verona\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Associazione Calcio ChievoVerona S.r.l.\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.C._Chievo_Verona\"\n                            },\n                            {\n                                \"object\": \"\\\"Verona, Italy\\\"@en\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.C._Chievo_Verona\"\n                            },\n                            {\n                                \"object\": \"2014–15_Serie_A\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.C._Chievo_Verona\"\n                            },\n                            {\n                                \"object\": \"39371\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.C._Chievo_Verona\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"665\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italian born Rolando Maran manages Associazione Calcio Chievo Verona. He is also in the Unione Triestina 2012 S.S.D. club as well as playing for Carrarese Calcio.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italian born Rolando Maran plays at the Carrarese Calcio and is in the Unione Triestina 2012 S.S.D. club. He is currently the manager of AC Chievo Verona.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Born in Italy, Rolando Maran is the manager of AC Chievo Verona. He also plays for Carrarese Calcio and is in the Unione Triestina 2012 S.S.D. club.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Rolando_Maran\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.C._Chievo_Verona\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"placeOfBirth\",\n                        \"subject\": \"Rolando_Maran\"\n                    },\n                    {\n                        \"object\": \"Unione_Triestina_2012_S.S.D.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Rolando_Maran\"\n                    },\n                    {\n                        \"object\": \"Carrarese_Calcio\",\n                        \"property\": \"club\",\n                        \"subject\": \"Rolando_Maran\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Rolando_Maran\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.C._Chievo_Verona\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"placeOfBirth\",\n                                \"subject\": \"Rolando_Maran\"\n                            },\n                            {\n                                \"object\": \"Unione_Triestina_2012_S.S.D.\",\n                                \"property\": \"managerClub\",\n                                \"subject\": \"Rolando_Maran\"\n                            },\n                            {\n                                \"object\": \"Carrarese_Calcio\",\n                                \"property\": \"team\",\n                                \"subject\": \"Rolando_Maran\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"666\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Michele Marcolini, manager of A.C. Lumezzane, was born in Italy, owns Torino F.C. And has been associated with F.C. Bari 1908.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italian born Michele Marcolini, previously at FC Bari 1908 and manager of AC Lumezzane, is the owner of Torino F.C.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italian born Michele Marcolini, previously of FC Bari 1908, is now the manager of A.C. Lumezzane, whist also the owner of Torino F.C.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Michele_Marcolini\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.C._Lumezzane\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"placeOfBirth\",\n                        \"subject\": \"Michele_Marcolini\"\n                    },\n                    {\n                        \"object\": \"Torino_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Michele_Marcolini\"\n                    },\n                    {\n                        \"object\": \"F.C._Bari_1908\",\n                        \"property\": \"club\",\n                        \"subject\": \"Michele_Marcolini\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Michele_Marcolini\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"placeOfBirth\",\n                                \"subject\": \"Michele_Marcolini\"\n                            },\n                            {\n                                \"object\": \"Torino_F.C.\",\n                                \"property\": \"team\",\n                                \"subject\": \"Michele_Marcolini\"\n                            },\n                            {\n                                \"object\": \"F.C._Bari_1908\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Michele_Marcolini\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Michele_Marcolini\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.C._Lumezzane\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"placeOfBirth\",\n                                \"subject\": \"Michele_Marcolini\"\n                            },\n                            {\n                                \"object\": \"Torino_F.C.\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Michele_Marcolini\"\n                            },\n                            {\n                                \"object\": \"F.C._Bari_1908\",\n                                \"property\": \"team\",\n                                \"subject\": \"Michele_Marcolini\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"667\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Greece, led by Alexis Tsipras and Nikos Voutsis is the location of A.E. Dimitra Efxeinoupolis, where the language is greek.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Greece is the location of the A.E Dimitra Efxeinoupolis club. The language of the country is Greek and two of the leaders are Alexis Tsipras and Nikos Voutsis.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The A.E Dimitra Efxeinoupolis club is located in Greece where Alexis Tsipras heads Greece and Nikos Voutsis is the leader.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greece\",\n                        \"property\": \"location\",\n                        \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                    },\n                    {\n                        \"object\": \"Alexis_Tsipras\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Greece\"\n                    },\n                    {\n                        \"object\": \"Nikos_Voutsis\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Greece\"\n                    },\n                    {\n                        \"object\": \"Greek_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Greece\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greece\",\n                                \"property\": \"location\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            },\n                            {\n                                \"object\": \"Alexis_Tsipras\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Greece\"\n                            },\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            },\n                            {\n                                \"object\": \"Greek_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Greece\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Greece\",\n                                \"property\": \"location\",\n                                \"subject\": \"A.E_Dimitra_Efxeinoupolis\"\n                            },\n                            {\n                                \"object\": \"Alexis_Tsipras\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Greece\"\n                            },\n                            {\n                                \"object\": \"Nikos_Voutsis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Greece\"\n                            },\n                            {\n                                \"object\": \"Greek_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Greece\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"668\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The full name of the Italian club AS Gubbio 1910 is \\\"Associazione Sportiva Gubbio 1910 Srl\\\". They played in the 2014 season and they have 5300 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The full name of A.S. Gubbio 1910 is Associazione Sportiva Gubbio 1910 Srl. The club has 5300 members and has a ground in Italy. It competed in the 2014 season.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Associazione Sportiva Gubbio 1910 Srl (abbreviated to A.S.Gubbio 1910) has 5300 members, has its grounds in Italy and played in the 2014 season.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Associazione Sportiva Gubbio 1910 Srl\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    },\n                    {\n                        \"object\": \"2014\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    },\n                    {\n                        \"object\": \"5300\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Associazione Sportiva Gubbio 1910 Srl\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            },\n                            {\n                                \"object\": \"5300\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"669\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The fullname of A.S. Gubbio 1910 is Associazione Sportiva Gubbio 1910 Srl and they competed in the 2014 season. Their ground is called the Stadio Pietro Barbetti and they have 5300 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Associazione Sportive Gubbio 1910 Srl (abbreviated to AS Gubbio 1910) has 5300 members, played in the 2014 season and its ground is Stadio Pietro Barbetti.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The full name of AS Gubbio 1910 is \\\"Associazione Sportiva Gubbio 1910 Srl\\\". Its ground is called Stadio Pietro Barbetti, it competed in the 2014 season and has 5300 members.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Associazione Sportiva Gubbio 1910 Srl\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    },\n                    {\n                        \"object\": \"2014\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    },\n                    {\n                        \"object\": \"Stadio_Pietro_Barbetti\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    },\n                    {\n                        \"object\": \"5300\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Associazione Sportiva Gubbio 1910 Srl\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            },\n                            {\n                                \"object\": \"2014\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            },\n                            {\n                                \"object\": \"Stadio_Pietro_Barbetti\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            },\n                            {\n                                \"object\": \"5300\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"670\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The fullname of A.S. Livorno Calcio is Livorno Calcio S.p.A. and their home ground is the Stadio Armando Picchi. They competed in Serie B during the 2014-15 season and has 19238 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"19238 members strong Livorno Calcio S.p.A., AKA A.S. Livorno Calcio, played season 2014-15 in Serie B from their home stadium Stadio Armando Picchi.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Stadio Armando Picchi's is home to A S Livorno Calcio (Livorno Calcio S.p.A.).They have 19238 members and played the 2014-15 Serie B season.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stadio_Armando_Picchi\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Livorno_Calcio\"\n                    },\n                    {\n                        \"object\": \"19238\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.S._Livorno_Calcio\"\n                    },\n                    {\n                        \"object\": \"2014–15_Serie_B\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.S._Livorno_Calcio\"\n                    },\n                    {\n                        \"object\": \"\\\"Livorno Calcio S.p.A.\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.S._Livorno_Calcio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stadio_Armando_Picchi\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"2014–15_Serie_B\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"19238\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"\\\"Livorno Calcio S.p.A.\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Stadio_Armando_Picchi\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"\\\"19238\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"2014–15_Serie_B\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            },\n                            {\n                                \"object\": \"\\\"Livorno Calcio S.p.A.\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Livorno_Calcio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"671\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Roma's fullname is Associazione Sportiva Roma S.p.A. and they have 70634 members. Their ground is in Rome and the club played in Serie A in 2014-15.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The fullname of A.S. Roma is Associazione Sportiva Roma S.p.A. and they have 70634 members. The club have a ground in Rome and competed in Serie A in 2014-15.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S Roma were in Serie A in 2014-15. They have a ground in Rome and have 70634 members, there full name is Associazione Sportiva Roma S.p.A.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"70634\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"\\\"Associazione Sportiva Roma S.p.A.\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"2014–15_Serie_A\",\n                        \"property\": \"season\",\n                        \"subject\": \"A.S._Roma\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"70634\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"\\\"Associazione Sportiva Roma S.p.A.\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"2014–15_Serie_A\",\n                                \"property\": \"season\",\n                                \"subject\": \"A.S._Roma\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"672\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PFK play their home matches at the AZAL Arena in Azerbaijan and they compete in the Azerbaijan Premier League where Qarabag FK are champions.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PFK plays at AZAL Arena in Azerbaijan and competes in their Premier League. The champions of the league are Qarabag FK.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PFK play in the Azerbaijan Premier League, which champions are Qarabag FK, its ground is AZAL Arena, that is located in Azerbaijan.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Azerbaijan_Premier_League\",\n                        \"property\": \"league\",\n                        \"subject\": \"AZAL_PFK\"\n                    },\n                    {\n                        \"object\": \"Qarabağ_FK\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Azerbaijan_Premier_League\"\n                    },\n                    {\n                        \"object\": \"AZAL_Arena\",\n                        \"property\": \"ground\",\n                        \"subject\": \"AZAL_PFK\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"AZAL_Arena\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Azerbaijan_Premier_League\",\n                                \"property\": \"league\",\n                                \"subject\": \"AZAL_PFK\"\n                            },\n                            {\n                                \"object\": \"Qarabağ_FK\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Azerbaijan_Premier_League\"\n                            },\n                            {\n                                \"object\": \"AZAL_Arena\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AZAL_PFK\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"AZAL_Arena\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"673\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AZAL PRK, known as the Qarabag FK in the Azerbaijan Premier League is located in AZAL Arena and has 3500 members.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AZAL PFK, with 3500 members, competes in The Azerbaijan Premier League, with championship team being Qarabag FK. AZAL Arena is the ground of AZAL PFK.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Azerbaijan_Premier_League\",\n                        \"property\": \"league\",\n                        \"subject\": \"AZAL_PFK\"\n                    },\n                    {\n                        \"object\": \"Qarabağ_FK\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Azerbaijan_Premier_League\"\n                    },\n                    {\n                        \"object\": \"3500\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"AZAL_PFK\"\n                    },\n                    {\n                        \"object\": \"AZAL_Arena\",\n                        \"property\": \"ground\",\n                        \"subject\": \"AZAL_PFK\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Azerbaijan_Premier_League\",\n                                \"property\": \"league\",\n                                \"subject\": \"AZAL_PFK\"\n                            },\n                            {\n                                \"object\": \"Qarabağ_FK\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Azerbaijan_Premier_League\"\n                            },\n                            {\n                                \"object\": \"3500\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"AZAL_PFK\"\n                            },\n                            {\n                                \"object\": \"AZAL_Arena\",\n                                \"property\": \"ground\",\n                                \"subject\": \"AZAL_PFK\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"674\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"John van den Brom plays for AFC Ajax and Istanbulspor A.S. He manages AZ Alkmaair which is owned by Robert Eenhoorn.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"John_van_den_Brom\",\n                        \"property\": \"manager\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    },\n                    {\n                        \"object\": \"AFC_Ajax\",\n                        \"property\": \"club\",\n                        \"subject\": \"John_van_den_Brom\"\n                    },\n                    {\n                        \"object\": \"İstanbulspor_A.Ş.\",\n                        \"property\": \"club\",\n                        \"subject\": \"John_van_den_Brom\"\n                    },\n                    {\n                        \"object\": \"Robert_Eenhoorn\",\n                        \"property\": \"owner\",\n                        \"subject\": \"AZ_Alkmaar\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"John_van_den_Brom\",\n                                \"property\": \"manager\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            },\n                            {\n                                \"object\": \"AFC_Ajax\",\n                                \"property\": \"team\",\n                                \"subject\": \"John_van_den_Brom\"\n                            },\n                            {\n                                \"object\": \"İstanbulspor_A.Ş.\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"John_van_den_Brom\"\n                            },\n                            {\n                                \"object\": \"Robert_Eenhoorn\",\n                                \"property\": \"owner\",\n                                \"subject\": \"AZ_Alkmaar\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"675\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense, which has the nickname Asa Gigante, play in the Campeonato Brasileiro Série C league from Brazil. The league was previously won by Vila Nova Futebol Clube.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense, nicknamed Asa Gigante, play in the Campeonato Brasileiro Série C league in Brazil. Vila Nova Futebol Clube are the champions of Campeonato Brasileiro Serie C.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league based in Brazil. Their nickname is Asa Gigante. The champions of the league are Vila Nova Futebol Clube.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"league\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Brazil\",\n                        \"property\": \"country\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    },\n                    {\n                        \"object\": \"\\\"Asa Gigante ''\\\"\",\n                        \"property\": \"nickname\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Vila_Nova_Futebol_Clube\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"country\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            },\n                            {\n                                \"object\": \"\\\"Asa Gigante ''\\\"@en\",\n                                \"property\": \"nickname\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"676\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Brazilian football team Agremiação Sportiva Arapiraquense play their football in the Campeonato Brasileiro Série C league. Campeonato Brasileiro Serie C is a Brazilian league. Agremiação Sportiva Arapiraquense competed in the 2015 Campeonato Brasileiro Série C. The Vila Nova Futebol Clube were the winners at the Campeonato Brasileiro Série C.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiacao Sportiva Arapiraquense play in the Campeonato Brasileiro Serie C League, as they did in 2015, which is based in Brazil. The current champions of this league are Villa Nova Futebol Clube.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in Brazil's Campeonato Brasileiro Série C league and competed in the 2015 event. Vila Nova Futebol Clube have been champions of Série C.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"league\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Brazil\",\n                        \"property\": \"country\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    },\n                    {\n                        \"object\": \"2015_Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"season\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Vila_Nova_Futebol_Clube\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"country\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            },\n                            {\n                                \"object\": \"2015_Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"season\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"677\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3000 member strong Akron Summit Assault, fullname \\\"Akron Metro Futbol Club Summit Assault\\\", play in the 2011 PDL season. Denzil Antonio was previously their manager.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Akron Metro Futbol Club Summit Assault\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"3000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"Denzil_Antonio\",\n                        \"property\": \"manager\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"2011_PDL_season\",\n                        \"property\": \"season\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Akron Metro Futbol Club Summit Assault\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"\\\"Denzil Antonio\\\"@en\",\n                                \"property\": \"manager\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"\\\"3000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"2011_PDL_season\",\n                                \"property\": \"season\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Akron Metro Futbol Club Summit Assault\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"Denzil_Antonio\",\n                                \"property\": \"manager\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"2011_PDL_season\",\n                                \"property\": \"season\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"3000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Akron Metro Futbol Club Summit Assault\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"\\\"3000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"Denzil_Antonio\",\n                                \"property\": \"manager\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"2011_PDL_season\",\n                                \"property\": \"season\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Akron Metro Futbol Club Summit Assault\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"\\\"Denzil Antonio\\\"@en\",\n                                \"property\": \"manager\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"2011_PDL_season\",\n                                \"property\": \"season\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"3000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"678\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akron Summit Assault team is based in Akron, Ohio, United States. They play in the Premier Development League, which has been won by K-W United FC.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akron Summit Assault team is based in Akron, Ohio, USA. They play in the Premier Development League which was previously won by K-W United FC.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Akron Summit Assault team of Akron, Ohio, U.S currently play in the Premier Development League, of which K-W United FC have previously been champions.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Akron,_Ohio\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Akron,_Ohio\"\n                    },\n                    {\n                        \"object\": \"Premier_Development_League\",\n                        \"property\": \"league\",\n                        \"subject\": \"Akron_Summit_Assault\"\n                    },\n                    {\n                        \"object\": \"K-W_United_FC\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Premier_Development_League\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Akron,_Ohio\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Akron,_Ohio\"\n                            },\n                            {\n                                \"object\": \"Premier_Development_League\",\n                                \"property\": \"league\",\n                                \"subject\": \"Akron_Summit_Assault\"\n                            },\n                            {\n                                \"object\": \"K-W_United_FC\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Premier_Development_League\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"679\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground of A.S. Gubbio 1910 is located in Italy, where the capital is Rome, the leader is Sergio Mattarella and the language spoken is Italian.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italian is spoken in Italy where the capital city is Rome. The country, which is lead by Sergio Mattarella is the location of the AS Gubbio 1910's ground.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Sergio_Mattarella\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    },\n                    {\n                        \"object\": \"Italian_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            },\n                            {\n                                \"object\": \"Italian_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"680\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The capital of Italy is Rome and the leader is Pietro Grasso. The Italian language is spoken in the country which is the location of the home ground of AS Gubbio 1910.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ground of A.S. Gubbio 1910 is located in Italy where the capital is Rome, Italian is the official language and Pietro Grasso is the leader.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pietro_Grasso\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Italian_language\",\n                        \"property\": \"officialLanguage\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Gubbio_1910\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pietro_Grasso\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italian_language\",\n                                \"property\": \"officialLanguage\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Gubbio_1910\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"681\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The \\\"Associazione Sportiva Roma S.p.A.\\\" is the non-abbreviated name of A.S. Roma with their ground in Stadio Olimpico. A.S. Roma play in Serie A whose current champions are Juventus F.C..\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The \\\"Associazione Sportiva Roma S.p.A.\\\" is the full name name of A.S. Roma who have their home ground at Stadio Olimpico. The club plays in Serie A alongside Juventus FC who have been previous champions.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A.S. Roma play in Serie A where Juventus F.C are among there former champions. There full name is Associazione Sportiva Roma S.p.A. and they play at the Stadio Olimpico.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Juventus_F.C.\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Serie_A\"\n                    },\n                    {\n                        \"object\": \"\\\"Associazione Sportiva Roma S.p.A.\\\"\",\n                        \"property\": \"fullname\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"Stadio_Olimpico\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.S._Roma\"\n                    },\n                    {\n                        \"object\": \"Serie_A\",\n                        \"property\": \"league\",\n                        \"subject\": \"A.S._Roma\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Juventus_F.C.\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Serie_A\"\n                            },\n                            {\n                                \"object\": \"\\\"Associazione Sportiva Roma S.p.A.\\\"@en\",\n                                \"property\": \"fullname\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"Stadio_Olimpico\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.S._Roma\"\n                            },\n                            {\n                                \"object\": \"Serie_A\",\n                                \"property\": \"league\",\n                                \"subject\": \"A.S._Roma\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"682\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio in Switzerland has a staff of 100, the dean is named Mario Botta.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio is located in Mendrisio, Switzerland. It has 100 academic staff and its dean is Mario Botta.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio is located in Mendrisio in Switzerland. It's dean is Mario Botta with its staff size being 100.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Switzerland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Mario_Botta\",\n                        \"property\": \"dean\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Mendrisio\",\n                        \"property\": \"city\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"100\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Switzerland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Mario_Botta\",\n                                \"property\": \"dean\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Mendrisio\",\n                                \"property\": \"city\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"\\\"100\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"683\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio was established in Switzerland in 1996. It has 600 students. The leader of Switzerland is the Federal Chancellor.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"Accademia di Architettura di Mendrisio was established in 1996 in Switzerland and has 600 attending students. It's leader is the Federal Chancellor of Switzerland.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio of Switzerland was established in 1996 and has 600 students. The leader of the country has the title Federal Chancellor of Switzerland.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Switzerland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"1996\",\n                        \"property\": \"established\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"600\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Federal_Chancellor_of_Switzerland\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Switzerland\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Switzerland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"1996\",\n                                \"property\": \"established\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"\\\"600\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfStudents\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Federal_Chancellor_of_Switzerland\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Switzerland\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"684\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio (Dean - Mario Botta) was established in 1996, has an academic staff of 100 and is located in the city of Mendrisio.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Accademia di Architettura di Mendrisio in the city of Mendrisio was established in 1996 and has an academic staff size of 100 people. Its dean is Mario Botta.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio was established in 1996 in Mendrisio. It has an academic staff size of 100 and the dean is Mario Botta.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mario_Botta\",\n                        \"property\": \"dean\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Mendrisio\",\n                        \"property\": \"city\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"1996\",\n                        \"property\": \"established\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"100\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mario_Botta\",\n                                \"property\": \"dean\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Mendrisio\",\n                                \"property\": \"city\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"1996\",\n                                \"property\": \"established\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"100\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"685\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology has an affiliation with Visvesvaraya Technological University (Belgaum) and was given the 'Technical Campus' status by the All India Council for Technical Education, which is located in Mumbai.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology, an affiliation of Belgaum's Visvesvaraya Technological University was recognized as the Technical Campus by the All India Council for Technical Education of Mumbai.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"All_India_Council_for_Technical_Education\",\n                        \"property\": \"was given the 'Technical Campus' status by\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Mumbai\",\n                        \"property\": \"location\",\n                        \"subject\": \"All_India_Council_for_Technical_Education\"\n                    },\n                    {\n                        \"object\": \"Belgaum\",\n                        \"property\": \"city\",\n                        \"subject\": \"Visvesvaraya_Technological_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"All_India_Council_for_Technical_Education\",\n                                \"property\": \"free\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Mumbai\",\n                                \"property\": \"location\",\n                                \"subject\": \"All_India_Council_for_Technical_Education\"\n                            },\n                            {\n                                \"object\": \"Belgaum\",\n                                \"property\": \"city\",\n                                \"subject\": \"Visvesvaraya_Technological_University\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"686\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology is located in Soldevanahalli, Acharya Dr. Sarvapalli Radharkrishnan Road, Hessarghatta Main Road, Bangalore - 560090, India. It has 700 postgraduate students.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institue of Technology campus which has 700 postgraduate students is located in India at In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technological in Bangalor, India has 700 post-graduate students and is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"700\",\n                        \"property\": \"numberOfPostgraduateStudents\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"700\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfPostgraduateStudents\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"687\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology (Director - Dr. G. P. Prabhukumar), is located in India, was established in 2000 and is affiliated with Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology in India was established in 2000. Its director is Dr. G. P. Prabhukuma and the school is affiliated with Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An affiliate of Visvesvaraya Technological University and established in 2000 in India, Acharya Institute of Technology is led by director Dr. G. P. Prabhukumar.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"\",\n                        \"property\": \"director\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"@en\",\n                                \"property\": \"director\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"688\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 1 Decembrie 1918 University is located in Romania (capital Bucharest). The leader of Romania is Klaus lohannis and the ethnic group is Germans of Romania.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Romania is Klaus Iohannis. The country is home to different ethnic groups, one of which are the Germans of Romania. The capital city is Bucharest and the country is the location of the 1 Decembrie 1918 University.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Germans_of_Romania\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Klaus_Iohannis\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Bucharest\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Romania\",\n                        \"property\": \"country\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Germans_of_Romania\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Bucharest\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Germans_of_Romania\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Bucharest\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Germans_of_Romania\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Bucharest\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"689\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University is located in Denmark and affiliated to the European University Association. It was established in 1928 and it has 737 academic staff.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University in Denmark was established in 1928. It is affiliated with the European University Association and has 737 academic staff.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Denmark's School of Business and Social Sciences at the Aarhus University was established in 1928. It currently has 737 staff and is affiliated with the European University Association.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"737\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"country\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"European_University_Association\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"1928\",\n                        \"property\": \"established\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"690\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University was established in 1928 in Denmark. It has an academic staff of 737 and a student body of 16000.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University, Denmark (established 1928) has an academic staff of 737 and a student roll of 16000.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"737\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"16000\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"country\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"1928\",\n                        \"property\": \"established\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"16000\",\n                                \"property\": \"students\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"691\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Bavarian Crisis was preceded by 1634: The Baltic War (author: David Weber) and followed by Ring of Fire II which is written in English.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Baltic War, written by David Weber, has two sequels, 1634: The Bavarian Crisis and Ring of Fire II (written in English).\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1634:_The_Baltic_War\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    },\n                    {\n                        \"object\": \"David_Weber\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Baltic_War\"\n                    },\n                    {\n                        \"object\": \"Ring_of_Fire_II\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"1634:_The_Bavarian_Crisis\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Ring_of_Fire_II\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"1634:_The_Baltic_War\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            },\n                            {\n                                \"object\": \"David_Weber\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Baltic_War\"\n                            },\n                            {\n                                \"object\": \"Ring_of_Fire_II\",\n                                \"property\": \"followedBy\",\n                                \"subject\": \"1634:_The_Bavarian_Crisis\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Ring_of_Fire_II\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"692\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1634: The Ram Rebellion was written by Virginia DeMarce and has 512 pages. It can be found as an ebook and has the ISBN number of 1-4165-2060-0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The author of the novel 1634 The Ram Rebellions author is Virginia DeMarce, it is 512 pages long (also can be found as an e-book) and has an ISBN number 1-4165-2060-0.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Virginia DeMarce is the author of 1634: The Ram Rebellion, which has 512 pages, the ISBN number 1-4165-2060-0 and is available as an e book.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"E-book\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"\\\"512\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"Virginia_DeMarce\",\n                        \"property\": \"author\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    },\n                    {\n                        \"object\": \"\\\"1-4165-2060-0\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"1634:_The_Ram_Rebellion\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"E-book\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"\\\"512\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"Virginia_DeMarce\",\n                                \"property\": \"author\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            },\n                            {\n                                \"object\": \"\\\"1-4165-2060-0\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"1634:_The_Ram_Rebellion\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"693\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal is published by Lippincott, Williams & Wilkins in the United Kingdom. The capital of the country is London and it's leader is Elizabeth II.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal was published in the United Kingdom, London, by Lippincott, Williams & Wilkins.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Published by Lippincott Williams & Wilkins, the AIDS journal was published in the United Kingdom, tha capital of the UK is London and the head of state is Elizabeth II.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"London\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"Lippincott_Williams_&_Wilkins\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"London\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"694\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice was written by J. V. Jones and is available in print. Th book which has the ISBN number 0-7653-0633-6. It also has the OCLC number 51969173.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The author of A Fortress of Grey Ice, available in print, is J.V. Jones and has an OCLC number of 51969173 and the ISBN number is 0-7653-0633-6.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"J.V. Jones authored A Fortress of Grey Ice, made available in print it's OCLC and ISBN numbers are 51969173 and 0-7653-0633-6 respectively.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"J._V._Jones\",\n                        \"property\": \"author\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    },\n                    {\n                        \"object\": \"51969173\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    },\n                    {\n                        \"object\": \"\\\"0-7653-0633-6\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"J._V._Jones\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            },\n                            {\n                                \"object\": \"51969173\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            },\n                            {\n                                \"object\": \"\\\"0-7653-0633-6\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"51969173\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            },\n                            {\n                                \"object\": \"J._V._Jones\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            },\n                            {\n                                \"object\": \"\\\"0-7653-0633-6\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"695\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Published by Viking Press, the Irish novel A Long Long Way was preceded by Annie Dunne and followed by The Secret Scripture.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Long Long Way, written in Ireland and published by Viking Press, was preceded by Annie Dunne, and followed by The Secret Scripture.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Long Long Way was written in Ireland and published by Viking Press. It was preceded by Annie Dunn and followed by The Secret Scripture.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Annie_Dunne\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"Viking_Press\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"The_Secret_Scripture\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Annie_Dunne\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"Viking_Press\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"The_Secret_Scripture\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"696\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is available in print, with The Library of Congress Classification PS3523.E55 S4 1982. Its ISBN number is 0-374-26131-8, and its OCLC number is 8805735.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Book A Severed Wasp (ISBN number 0-374-26131-8) is available in print and has the OCLC number 8805735. It has the Library of Congress Classification PS3523.E55 S4 1982.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is in print and has the OCLC number of 8805735 and the ISBN number 0-374-26131-8. The Library of Congress Classification is PS3523.E55 S4 1982.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"8805735\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"PS3523.E55 S4 1982\\\"\",\n                        \"property\": \"LibraryofCongressClassification\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"Print\\\"\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"0-374-26131-8\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"8805735\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"PS3523.E55 S4 1982\\\"@en\",\n                                \"property\": \"congress\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"Print\\\"@en\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"0-374-26131-8\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"697\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English is spoken in Great Britain and is the language used in A Severed Wasp. The book originates from the United States where the African Americans are an ethnic group,.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp was written in English (the language originated in Great Britian) in the United States. The US has many ethnic groups, including African American.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"698\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp was published in hardback and has 388 pages. The OCLC number of A Severed Wasp is 8805735 and the ISBN number of \\\"0-374-26131-8\\\".\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp, published in hardback, has 388 pages. Its OCLC number is 8805735, and ISBN number is 0-374-26131-8.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is a hardcover book with 388 pages. It's OCLC number is 8805735 and the ISBN number is 0-374-26131-8.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"388\\\"\",\n                        \"property\": \"numberOfPages\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"8805735\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"\\\"0-374-26131-8\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"388\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"8805735\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"0-374-26131-8\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"388\\\"^^xsd:positiveInteger\",\n                                \"property\": \"numberOfPages\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"8805735\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"\\\"0-374-26131-8\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"699\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars, written by Diane Duane, is available in hardcover, has the ISBN number 978-0-15-204770-2 and the OCLC number 318875313.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars,OCLC number 318875313, ISBN number 978-0-15-204770-2, was written by Diane Duane and published in hardback.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Wizard of Mars, ISBN number is \\\"978-0-15-204770-2\\\", OCLC number 318875313, was written by Diane Duane and published in hardback.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Hardcover\",\n                        \"property\": \"mediaType\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"Diane_Duane\",\n                        \"property\": \"author\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"318875313\",\n                        \"property\": \"OCLC_number\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    },\n                    {\n                        \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                        \"property\": \"ISBN_number\",\n                        \"subject\": \"A_Wizard_of_Mars\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"Diane_Duane\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"318875313\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Hardcover\",\n                                \"property\": \"mediaType\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"\\\"318875313\\\"\",\n                                \"property\": \"oclc\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"Diane_Duane\",\n                                \"property\": \"author\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            },\n                            {\n                                \"object\": \"\\\"978-0-15-204770-2\\\"\",\n                                \"property\": \"isbn\",\n                                \"subject\": \"A_Wizard_of_Mars\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"700\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Addiction journal concerns the topic of Addiction and has the LCCN number 93645978. The abbreviated name is \\\"Addiction\\\" and the ISSN number is 1360-0443.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addiction is the abbreviated version of the Addiction journal and is about Addiction. The LCCN number is 93645978 and the ISSN number is 1360-0443.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ISSN number of Addiction (journal), which is about addiction, is 1360-0443. Addiction (journal) has the abbreviation of Addiction and the LCCN number 93645978.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Addiction\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"Addiction_(journal)\"\n                    },\n                    {\n                        \"object\": \"93645978\",\n                        \"property\": \"LCCN_number\",\n                        \"subject\": \"Addiction_(journal)\"\n                    },\n                    {\n                        \"object\": \"\\\"Addiction\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"Addiction_(journal)\"\n                    },\n                    {\n                        \"object\": \"\\\"1360-0443\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"Addiction_(journal)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Addiction\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"Addiction\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"93645978\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"1360-0443\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Addiction\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"Addiction\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"1360-0443\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"93645978\\\"\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Addiction\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"93645978\",\n                                \"property\": \"lccn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"Addiction\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"Addiction_(journal)\"\n                            },\n                            {\n                                \"object\": \"\\\"1360-0443\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"Addiction_(journal)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"701\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University in Ithaca, New York is the publisher of Administrative Science Quarterly. The University is affiliated with the Association of American Universities.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University is located in Ithaca, New York state. It is affiliated with the Association of American Universities and publishes the Administrative Science Quarterly.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University is located in the city of Ithaca, New York, it's affiliated with the Association of American Universities and publishes the Administrative Science Quarterly.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cornell_University\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    },\n                    {\n                        \"object\": \"Association_of_American_Universities\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"New_York\",\n                        \"property\": \"state\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"Ithaca,_New_York\",\n                        \"property\": \"city\",\n                        \"subject\": \"Cornell_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cornell_University\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"Association_of_American_Universities\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"New_York\",\n                                \"property\": \"state\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"Ithaca,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Cornell_University\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"702\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The book Alcatraz Versus the Evil Librarians was written in English and comes from the United States where the capital city is Washington DC and the African Americans are an ethnic group.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians is an English book written in the USA where African Americans are an ethnic group and the capitol city is Washington.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"Washington,_D.C.\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"Washington,_D.C.\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"703\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics is abbreviated to Am. J. Math. and comes under the discipline of Math. It is published bimonthly and has the ISSN number 1080-6377.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics studies mathematics and is abbreviated to Am. J. Math. It is published bimonthly and has the ISSN number 1080-6377.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics, aka Am. J. Math., is a bi-monthly journal about Mathematics, ISBN number 1080-6377.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Am. J. Math.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"Mathematics\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"\\\"Bimonthly\\\"\",\n                        \"property\": \"frequency\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"\\\"1080-6377\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Am. J. Math.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"Bimonthly\\\"@en\",\n                                \"property\": \"frequency\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"1080-6377\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"704\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The academic discipline of the American Journal of Mathematics is Mathematics, published in 1878.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics, abbreivated to Am. J. Math, studies mathematics. It was first published in 1878 and has an ISSN number of 1080-6377.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Journal of Mathematics was first published in 1878 and has the ISSN number 1080-6377. It falls under the academic discipline of Math and the abbreviated title is Am. J. Math..\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mathematics\",\n                        \"property\": \"academicDiscipline\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"1878\",\n                        \"property\": \"firstPublicationYear\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"\\\"Am. J. Math.\\\"\",\n                        \"property\": \"abbreviation\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    },\n                    {\n                        \"object\": \"\\\"1080-6377\\\"\",\n                        \"property\": \"ISSN_number\",\n                        \"subject\": \"American_Journal_of_Mathematics\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Am. J. Math.\\\"@en\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"1878\",\n                                \"property\": \"history\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"1080-6377\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Mathematics\",\n                                \"property\": \"discipline\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"1878\",\n                                \"property\": \"history\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"Am. J. Math.\\\"\",\n                                \"property\": \"abbreviation\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            },\n                            {\n                                \"object\": \"\\\"1080-6377\\\"\",\n                                \"property\": \"issn\",\n                                \"subject\": \"American_Journal_of_Mathematics\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"705\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English is the language in Great Britain and the United States. A Loyal Character Dancer was published by Soho Press in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English is spoken in Great Britain and the United States. A Loyal Character Dancer was published by Soho Press which are based in the United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Loyal Character Dancer is published by Soho Press which is based in the United States. The language spoken in the U.S., and in Great Britain, is English.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"Soho_Press\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"A_Loyal_Character_Dancer\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Soho_Press\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"Soho_Press\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"A_Loyal_Character_Dancer\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Soho_Press\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"706\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The language of the United States and Great Britain is English. The United States has an ethnic group called Asian Americans and is where A severed Wasp originates from.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English is the language of Great Britain and the United States. The country is the origin of A Severed Wasp and includes many Asian Americans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is from the English speaking (also spoken in Great Britain) United States. The United States is home to the Asian American ethnic group.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"Asian_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"Asian_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"707\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians is from The United States where one of the ethnic groups are the Native Americans. The English language is spoken in the US as well as Great Britain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Book Alcatraz Versus the Evil Librarians originated in the U.S. where Native Americans make up many of the countries ethnic groups. English is the national language of both Great Britain and the United States.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English is spoken in Great Britain and is also the language of the United States, of which Native Americans are one of its ethnic groups and from where Alcatraz Versus the Evil Librarians has come.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"Native_Americans_in_the_United_States\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"Native_Americans_in_the_United_States\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"708\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In the United Kingdom, the Prime Minister is David Cameron and the queen is Elizabeth II. The AIDS journal was published in the United Kingdom by Lippincott, Williams & Wilkins.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AIDS Journal, published by Lippincott Williams and Wilkins, is from the United Kingdom. The leader of the UK was David Cameron and Elizabeth II is the Queen.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS (journal) is published by Lippincott Williams & Wilkins in the United Kingdom, the two leaders of this country are David Cameron and Elizabeth II.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"David_Cameron\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Lippincott_Williams_&_Wilkins\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"709\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice is from the United states where African American is an ethnic group and English is spoken like in Great Britain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English is spoken in Great Britain and the United States. A Fortress of Grey Ice is from the United States where one of the ethnic groups are African Americans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice is from the United States where the African Americans are an ethnic group. English is spoken in the United States and also in Great Britain.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"710\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Fortress of Grey Ice is from the United States. That country has an ethnic group called Asian Americans and they speak English, same as in Great Britain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In Great Britain English is the language spoken. The same is true for the United States where there are many Asian Americans. It is also where A Fortress of Grey Ice is from.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asian Americans are one of the ethnic groups in the United States of which A Fortress of Grey Ice is also, the English language is spoken in both the United States and in Great Britain.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Asian_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Fortress_of_Grey_Ice\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Asian_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Fortress_of_Grey_Ice\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"711\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A severed Wasp originates from the United States where the leader is Barack Obama. The English language is spoken in the US where one of the ethnic groups is African American.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The President of the United States is Barack Obama who is African American, which makes up one of the many ethnic groups in the United States. The national language spoken in the U.S. is English. The book A Severed Wasp originated in the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"4\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"712\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"With a runway length of 2194.0, Abilene regional airport serves Abiliene, part of Jones County, Texas, in the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene Regional Airport has a runway length of 2194.0 and serves Abilene, Jones County, Texas in the United States.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Abilene,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Abilene,_Texas\"\n                    },\n                    {\n                        \"object\": \"2194.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Abilene,_Texas\"\n                    },\n                    {\n                        \"object\": \"Jones_County,_Texas\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Abilene,_Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"\\\"2193.95\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Abilene,_Texas\"\n                            },\n                            {\n                                \"object\": \"Jones_County,_Texas\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Abilene,_Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"713\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene, Texas is served by Abilene regional airport which is 546 metres above sea level and has the ICAO location identifier of KABI. It has the runway name of 17L/35R with a length of 2194.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene Regional airport, whichis 546 metres above sea level, has the ICAO location identifier of KABI and serves the city of Abilene, Texas. It has the runway named 17L/35R which is 2194.0 in length.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Runway 17L/35R at Abilene Regional Airport in Texas has a length of 2194 and is 546m above sea level. It has the identifier of KABI.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Abilene,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"2194.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"546\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"KABI\\\"\",\n                        \"property\": \"ICAO_Location_Identifier\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"17L/35R\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2193.95\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"545.897\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KABI\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"17L/35R\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2193.95\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"546.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KABI\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"17L/35R\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2194.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"545.897\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KABI\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"17L/35R\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"714\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Serving the city of Abilene in Texas, is Abilene Regional Airport. It has the ICAO location identifier KABI and the runway name 17R/35L. The airport is 546 metres above sea level and has a runway length of 2194.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene, Texas is served by Abilene Regional Airport which has the ICAO location identifier of KABI. It is located 546 metres above sea level and has a runway 2194 metres long with the name of 17R/35L.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Abilene Regional Airport serves the city of Abilene in Texas, it's ICAO identifier is KABI, it's runway length is 2194.0 and is 546 metres above sea level, the name of the runway is 17R/35L.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Abilene,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"2194.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"546\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"KABI\\\"\",\n                        \"property\": \"ICAO_Location_Identifier\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"17R/35L\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Abilene_Regional_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Abilene,_Texas\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2193.95\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"545.897\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KABI\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"17R/35L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Abilene_Regional_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"715\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Adolfo Suárez Madrid–Barajas Airport is operated by ENAIRE and can be found in Madrid.The airport is situated 610.0 meters above sea level and has a 4,349 kilometers long runway whose name is 14L/32R.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adofo Suárez Madrid-Barajas Airport, which lies 610 metres above sea level, is located in Madrid and operated by ENAIRE. The airport's runway, named 14L/32R, has a length of 4349.0.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"4349.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"Madrid\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"610.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"ENAIRE\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"14L/32R\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"4348.89\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"Madrid\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"609.6\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"ENAIRE\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"14L/32R\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Adolfo_Suárez_Madrid–Barajas_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"716\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is in Uttar Pradesh Bundelkhand, it's ICAO location identifier is VIAG. the leader of Utterar Pradesh is Ram Naik.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is located in Uttar Pradesh. Uttar Pradesh is part of both Awadh ad Bundelkhand. The Airport's ICAO location identifier is \\\"VIAG\\\". The leader of Uttar Pradesh is called Ram Naik.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"VIAG\\\"\",\n                        \"property\": \"ICAO_Location_Identifier\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Uttar_Pradesh\",\n                        \"property\": \"location\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Awadh\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    },\n                    {\n                        \"object\": \"Ram_Naik\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    },\n                    {\n                        \"object\": \"Bundelkhand\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"(Location of airport in India)\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Uttar_Pradesh\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Awadh\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Ram_Naik\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Bundelkhand\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"VIAG\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Uttar_Pradesh\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Awadh\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Ram_Naik\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Bundelkhand\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"717\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ram Naik is the leader of Uttar Pradesh which is part of Awadh and Bundelkhand. It is the location of Agra airport which has the native name of Kheria Air Force Station.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport, which has the native name of Kheria Air Force Station, is in Uttar Pradesh, part of Awadh and Bundelkhand, where Ram Naik is the leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agra Airport is located in Uttar Pradesh which is part of Awadh and Bundelkhand. Kheria Air Force Station is its native name. Ram Naik is the leader in Uttar Pradesh.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Kheria Air Force Station\\\"\",\n                        \"property\": \"nativeName\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Uttar_Pradesh\",\n                        \"property\": \"location\",\n                        \"subject\": \"Agra_Airport\"\n                    },\n                    {\n                        \"object\": \"Awadh\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    },\n                    {\n                        \"object\": \"Ram_Naik\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    },\n                    {\n                        \"object\": \"Bundelkhand\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Uttar_Pradesh\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Kheria Air Force Station\\\"@en\",\n                                \"property\": \"nativenameA\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Uttar_Pradesh\",\n                                \"property\": \"location\",\n                                \"subject\": \"Agra_Airport\"\n                            },\n                            {\n                                \"object\": \"Awadh\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Ram_Naik\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            },\n                            {\n                                \"object\": \"Bundelkhand\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Uttar_Pradesh\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"718\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by the United States Air Force. Some of its aircraft include the Boeing C-17 Globemaster III (transport aircraft), General Dynamics F-16 Fighting Falcon (aircraft fighter), and the Lockheed AC-130 which can be found on USAF aircraft carriers. The USAF was involved in the Invasion of Panama.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by the United States Air Force which was involved in battles at the invasion of Panama. They deploy the Lockheed AC-130 on their aircraft carriers, the Boeing C-17 Globemaster III as transport aircraft and the General Dynamics F-16 Fighting Falcon as fighter aircraft.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force, which was involved in the Invasion of Panama, are the operators of Al Asad airbase. The USAF have aircraft including: the Lockheed AC-130 attack aircraft, the Boeing C-17 Globemaster III transporter and the General Dynamics F-16 Fighting Falcon fighter plane.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Boeing_C-17_Globemaster_III\",\n                        \"property\": \"transportAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                        \"property\": \"aircraftFighter\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"United_States_invasion_of_Panama\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Boeing_C-17_Globemaster_III\",\n                                \"property\": \"aircraftTransport\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"General_Dynamics_F-16_Fighting_Falcon\",\n                                \"property\": \"aircraftFighter\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"United_States_invasion_of_Panama\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"719\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force has fought in the Korean War. It is the operating organisation for Al Asad airbase. It has a Boeing C-17 Globemaster III transport aircraft and additionally, the Lockheed AC-130 can be found on USAF aircraft carriers. McDonnell Douglas F- Eagle was a Fighter Aircraft of the United States Air Force.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States Air Force, which fought battles in the Korean war, is the operating organisation for Al Asad airbase. The US Airforce has a Boeing C-17 Globemaster III transport aircraft, an aircraft fighter called the McDonnell Douglas F-15 Eagle and an attack aircraft named The Lockheed AC-130.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Boeing_C-17_Globemaster_III\",\n                        \"property\": \"transportAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"McDonnell_Douglas_F-15_Eagle\",\n                        \"property\": \"aircraftFighter\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Korean_War\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Boeing_C-17_Globemaster_III\",\n                                \"property\": \"aircraftTransport\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"McDonnell_Douglas_F-15_Eagle\",\n                                \"property\": \"aircraftFighter\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Korean_War\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"720\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The transport aircraft for the United States Air Force is the Lockheed C-130 Hercules. And Lockheed AC-130 can be found on USAF aircraft carriers. Both the Korean War and the Invasion of Grenda involved the United States Air Force which currently operates the Al Asad Airbase.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The USAF which fought in the Korean War and invaded Grenada, operates the Al Asad airbase. Among the aircraft found on USAF carriers is the Lockheed AC-130 Hercules which is a transport plane.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad Airbase is operated by the United States Air Force and uses Lockheed AC-130 attack air crafts and Lockheed C-130 Hercules transport aircrafts. The USAF participated in the Korean War and the Invasion of Grenada.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Invasion_of_Grenada\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Korean_War\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Lockheed_C-130_Hercules\",\n                        \"property\": \"transportAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Invasion_of_Grenada\",\n                                \"property\": \"battles\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Korean_War\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Lockheed_C-130_Hercules\",\n                                \"property\": \"aircraftTransport\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Invasion_of_Grenada\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Korean_War\",\n                                \"property\": \"battles\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Lockheed_C-130_Hercules\",\n                                \"property\": \"aircraftTransport\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"721\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Invasions of Grenada and Panama in involved the United States Air Force which now operates the Al Asad airbase. The Air Force has several types of aircraft such as the Boeing C-17 Globemaster III transport aircraft and the Lockheed AC-130 which can be found on USAF aircraft carriers.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Al Asad airbase is operated by The United States Air Force. The USAF is equipped with the attack aircraft, Lockheed AC-130 and Boeing C-17 Globemaster III transport aircraft. The USAF has been involved in the Invasion of Grenada and invasion of Panama.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States_Air_Force\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Al_Asad_Airbase\"\n                    },\n                    {\n                        \"object\": \"Invasion_of_Grenada\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Lockheed_AC-130\",\n                        \"property\": \"attackAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"Boeing_C-17_Globemaster_III\",\n                        \"property\": \"transportAircraft\",\n                        \"subject\": \"United_States_Air_Force\"\n                    },\n                    {\n                        \"object\": \"United_States_invasion_of_Panama\",\n                        \"property\": \"battles\",\n                        \"subject\": \"United_States_Air_Force\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States_Air_Force\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Al_Asad_Airbase\"\n                            },\n                            {\n                                \"object\": \"Invasion_of_Grenada\",\n                                \"property\": \"battles\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Lockheed_AC-130\",\n                                \"property\": \"aircraftAttack\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"Boeing_C-17_Globemaster_III\",\n                                \"property\": \"aircraftTransport\",\n                                \"subject\": \"United_States_Air_Force\"\n                            },\n                            {\n                                \"object\": \"United_States_invasion_of_Panama\",\n                                \"property\": \"battle\",\n                                \"subject\": \"United_States_Air_Force\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"722\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Allama Iqbal International airport is located in Punjab Pakistan and serves Lahore, Pakistan. The Pakistan Civil Aviation Authority governs the Allama Iqbal International Airport. The country is lead by Anwar Zaheer Jamali.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Allama Iqbal International Airport, which serves the city of Lahore, is located in Punjab, Pakistan and is operated by the Pakistan Civil Aviation Authority. Pakistan is led by Anwar Zaheer Jamali.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In the city of Lahore, Punjab, Pakistan, there is an airport called Allama Iqbal International Airport. It is operated by the Pakistan Civil Aviation Authority, in Punjab Pakistan, which is led by Anwar Zaheer Jamali.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Pakistan\",\n                        \"property\": \"country\",\n                        \"subject\": \"Lahore\"\n                    },\n                    {\n                        \"object\": \"Punjab,_Pakistan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Lahore\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Anwar_Zaheer_Jamali\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Pakistan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Pakistan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Lahore\"\n                            },\n                            {\n                                \"object\": \"Punjab,_Pakistan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Lahore\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Anwar_Zaheer_Jamali\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Pakistan\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Lahore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Pakistan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Lahore\"\n                            },\n                            {\n                                \"object\": \"Anwar_Zaheer_Jamali\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Pakistan\"\n                            },\n                            {\n                                \"object\": \"\\\"Punjab, Pakistan\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Lahore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Pakistan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Lahore\"\n                            },\n                            {\n                                \"object\": \"Punjab,_Pakistan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Anwar_Zaheer_Jamali\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Pakistan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"723\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Pakistan Civil Aviation Authority is the operating organisation of the Allama Iqbal International Airport. The airport serves the city of Lahore, in Pakistan where Shehbaz Sharif is the leader, It is also where the Allama Iqbal International Airport is found, in Punjab, Pakistan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Pakistan Civil Aviation Authority is the operating organisation of the Allama Iqbal International Airport located in Punjab, Pakistan, which is lead by Shehbaz Sharif. The airport serves Lahore in Pakistan.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Shehbaz_Sharif\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Punjab,_Pakistan\"\n                    },\n                    {\n                        \"object\": \"Pakistan\",\n                        \"property\": \"country\",\n                        \"subject\": \"Lahore\"\n                    },\n                    {\n                        \"object\": \"Punjab,_Pakistan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Lahore\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Allama_Iqbal_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Shehbaz_Sharif\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Punjab,_Pakistan\"\n                            },\n                            {\n                                \"object\": \"Pakistan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Lahore\"\n                            },\n                            {\n                                \"object\": \"Punjab,_Pakistan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Lahore\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Pakistan_Civil_Aviation_Authority\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Shehbaz_Sharif\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Punjab,_Pakistan\"\n                            },\n                            {\n                                \"object\": \"Lahore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Pakistan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Lahore\"\n                            },\n                            {\n                                \"object\": \"Punjab,_Pakistan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Allama_Iqbal_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"724\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Located in Texas, and serving Andrews, is Andrews County Airport. The airport is 973.0 below sea level, has a runway length of 896, and a runway with the name 11/29.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport in Texas has a runway length of 896 and serves the city of Andrews. It is located 973 metres below sea level and has the runway name 11/29.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas. It serves the city of Andrews and is 973 metres above sea level. Its runway length is named 11/29 and is 896 long.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"896.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Andrews,_Texas\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"973.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"11/29\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"895.807\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Andrews,_Texas\",\n                                \"property\": \"city\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"973.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"11/29\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"725\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is in Texas in the U.S.A. where Spanish is one of the languages spoken. Houston is the largest city in the state and its capital is Austin.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas, United States. The largest city in Texas is Houston, the state capital is Austin and Spanish is one of the languages spoken there.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Spanish_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Houston\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Austin,_Texas\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Houston\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Austin,_Texas\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Houston\",\n                                \"property\": \"largestcity\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Austin,_Texas\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"726\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Houston is the largest city in Texas, where Austin is the Capital city. Andrews County Airport is located in Texas and Some texans can speak Spanish.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas, a state where Spanish is spoken and the people are called Texans. Houston is the largest city in Texas and Austin is the state's capital.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Andrews County Airport is located in Texas where the Spanish language is spoken and the people are known as Texans. The capital city is Austin but the largest city is Houston.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Texas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Andrews_County_Airport\"\n                    },\n                    {\n                        \"object\": \"Spanish_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Houston\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Austin,_Texas\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Texas\"\n                    },\n                    {\n                        \"object\": \"Texan\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Texas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Houston\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Austin,_Texas\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Texan\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Texas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Texas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Andrews_County_Airport\"\n                            },\n                            {\n                                \"object\": \"Houston\",\n                                \"property\": \"largestcity\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Austin,_Texas\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Texas\"\n                            },\n                            {\n                                \"object\": \"Texan\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Texas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"727\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Angola International Airport is in Ícolo e Bengo, (Luanda Province), The airport serves Luanda, and is 159 metres above sea level.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located at Ícolo e Bengo in Luanda province,Angola.The Airport is situated 159 meters above sea level and serves the city of Luanda.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport, which is located in Ícolo e Bengo in the Luanda Province in Angola, serves Luanda. The airport lies 159 metres above sea level.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ícolo_e_Bengo\",\n                        \"property\": \"location\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Angola\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"Luanda\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Luanda_Province\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"159\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Angola_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"Luanda\",\n                                \"property\": \"city\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Luanda_Province\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"159.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"728\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located in Ícolo e Bengo, Luanda, Angola. The runway is 4000ft long and is 159m a.s.l.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International airport is located in Icolo e Bengo, which is a part of Luanda Province, located in Angola. The airport is 159 meters above sea level and its runway has a lenght of 4000.0.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Angola International Airport is located in Icolo e Bengo, which is located in the Luanda Province, Angola. The airport is situated 159 meters above sea level and it has a runway that measures a length of 4000.0.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ícolo_e_Bengo\",\n                        \"property\": \"location\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Angola\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"4000.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Angola_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Luanda_Province\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Ícolo_e_Bengo\"\n                    },\n                    {\n                        \"object\": \"159\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Angola_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"3999.89\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Luanda_Province\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"159.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"3999.89\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Luanda_Province\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"159.106\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"4000.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Luanda_Province\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"159.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ícolo_e_Bengo\",\n                                \"property\": \"location\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Angola\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"4000.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Angola_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Luanda_Province\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Ícolo_e_Bengo\"\n                            },\n                            {\n                                \"object\": \"\\\"159.106\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Angola_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"729\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish department of Mobility and Public Works is the operating organisation of Antwerp International Airport which is owned by the Flemish Region. The airport serves the city of Antwerp, is 12.0 metres above sea level, and has a runway length of 600.0.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish Region owns Antwerp International Airport which is operated by the Flemish Department of Mobility and Public Works and serves the city of Antwerp. The runway length is 600.0 and the airport is 12 metres above sea level.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport is owned by the Flemish Region and located in the city of Antwerp. The airport has a runway length of 600.0 , elevation of 12.0 metres above sea level and the Flemish department of Mobility and Public Works is the operating organisation.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Flemish_Region\",\n                        \"property\": \"owner\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Antwerp\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"12.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"600.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Flemish_Region\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Antwerp\",\n                                \"property\": \"city\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"11.8872\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"600.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Flemish_Region\",\n                                \"property\": \"owner\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"Flemish department of Mobility and Public Works\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Antwerp\",\n                                \"property\": \"city\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"12.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"600.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"730\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The city of Appleton is served by Appleton International Airport located 280 metres above sea level in Greenville, Wisconsin. The runway at the airport is 3/21 and is 2439 in length.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International Airport can be found in Greenville, Wisconsin and serves the city of Appleton.It is situated 280 meters above sea level and has a 2,439 kilometers long runway called 3/21.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton International Airport, which serves the city of Appleton is located in Greenville, Wisconsin. It is elevated 2801 meters above sea level. The airport's runway, which is named 3/21 measures a lenght of 2439 units.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greenville,_Wisconsin\",\n                        \"property\": \"location\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"2439.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Appleton,_Wisconsin\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"280\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"3/21\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2439.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"279.806\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3/21\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2439.01\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"city\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"279.806\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"3/21\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"731\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The city of Appleton is served by Appleton International Airport in Greenville (part of Menasha), Clayton Winnebago County, Wisconsin, United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Appleton, Wisconsin is served by Appleton International Airport which is located in Greenville (part of Menasha town), Clayton Winnebago County, Wisconsin, USA.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Greenville,_Wisconsin\",\n                        \"property\": \"location\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Menasha_(town),_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Greenville,_Wisconsin\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Greenville,_Wisconsin\"\n                    },\n                    {\n                        \"object\": \"Appleton,_Wisconsin\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Appleton_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Clayton,_Winnebago_County,_Wisconsin\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Greenville,_Wisconsin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Greenville,_Wisconsin\",\n                                \"property\": \"location\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Menasha_(town),_Wisconsin\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Greenville,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Greenville,_Wisconsin\"\n                            },\n                            {\n                                \"object\": \"Appleton,_Wisconsin\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Appleton_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Clayton,_Winnebago_County,_Wisconsin\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Greenville,_Wisconsin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"732\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore Airport in New Zealand is operated by the Civil Aviation Authority and is 34 metres above sea level. It has a runway named 03R/21L which is 1,411 long and its third runway has a poaceae surface.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ardmore Airport (New Zealand) is operated by the Civil Aviation Authority of New Zealand. Its 3rd runway is made of Poaceae and its name is 03R/21L. It is 1411 m long and the airport is 34 m above sea level.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Civil Aviation Authority of New Zealand is the operating organisation for Ardmore Airport, New Zealand and is situated 34 meters above sea level.The airport's 3rd runway is surfaced with Poaceae and has a 1,411 meter long runway called \\\"03R/21L\\\".\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1411.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"Poaceae\",\n                        \"property\": \"3rd_runway_SurfaceType\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"Civil_Aviation_Authority_of_New_Zealand\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"34.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    },\n                    {\n                        \"object\": \"\\\"03R/21L\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1411.22\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r3Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Civil_Aviation_Authority_of_New_Zealand\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"\\\"33.8328\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"\\\"03R/21L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1411.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Poaceae\",\n                                \"property\": \"r3Surface\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"Civil_Aviation_Authority_of_New_Zealand\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"\\\"33.8328\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            },\n                            {\n                                \"object\": \"\\\"03R/21L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Ardmore_Airport_(New_Zealand)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"733\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Turkmenistan Airlines operates Ashgabat International Airport in Ashgabat. The airport is 211 metres above sea level, has the runway length of 2989.0 and 12R/30L is the runway name.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ashgabat International Airport is operated by Turkmenistan Airlines. The runway 12R/30L is 2989m long and is 211m a.s.l.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ashgabat International Airport is located in Ashgabat and is operated byTurkmenistan Airlines. It is 211 metres above sea level and has a runway length of 2989.0. It has a runway named 12R/30L.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Turkmenistan_Airlines\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Ashgabat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    },\n                    {\n                        \"object\": \"2989.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    },\n                    {\n                        \"object\": \"211\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"12R/30L\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Ashgabat_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Turkmenistan_Airlines\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Ashgabat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2989.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"210.922\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"12R/30L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Turkmenistan_Airlines\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Ashgabat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"2989.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"211.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"12R/30L\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Ashgabat_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"734\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Atlantic City International Airport has a runway length of 1,873 and is operated by the Port Authority of New York and New Jersey. It is situated 23 metres above sea level, has the runway name of 4/22 and is known by the ICAO location identifier KACY.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Runway 4/22 at Atlantic City International Airport has an elevation of 23m above sea level and its length is 1873. It is operated by Port Authority of New York and New Jersey under the location Identifier of KACY.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Port Authority of New York and New Jersey is the operating organisation of Atlantic City International airport, which lies 23.0 meters above sea level. The airport's ICAO Location Identifier is KACY. The 4/22 is the name of the runway in Atlantic City International Airport and it measures 1873.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"1873.0\",\n                        \"property\": \"runwayLength\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Port_Authority_of_New_York_and_New_Jersey\",\n                        \"property\": \"operatingOrganisation\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"23.0\",\n                        \"property\": \"elevationAboveTheSeaLevel_(in_metres)\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"KACY\\\"\",\n                        \"property\": \"ICAO_Location_Identifier\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    },\n                    {\n                        \"object\": \"\\\"4/22\\\"\",\n                        \"property\": \"runwayName\",\n                        \"subject\": \"Atlantic_City_International_Airport\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1872.69\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"23.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Port_Authority_of_New_York_and_New_Jersey\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KACY\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"4/22\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1872.69\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"Port Authority of New York and New Jersey & SJTA\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"23.0\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KACY\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"4/22\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1872.69\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"Port Authority of New York and New Jersey & SJTA\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"22.86\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KACY\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"4/22\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1873.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"22.86\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Port_Authority_of_New_York_and_New_Jersey\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KACY\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"4/22\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1873.0\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"Port Authority of New York and New Jersey & SJTA\\\"@en\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"22.86\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KACY\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"4/22\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"1872.69\\\"^^xsd:double\",\n                                \"property\": \"runwayLength\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"22.86\\\"^^xsd:double\",\n                                \"property\": \"elevation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Port_Authority_of_New_York_and_New_Jersey\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"KACY\\\"\",\n                                \"property\": \"icaoLocationIdentifier\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            },\n                            {\n                                \"object\": \"\\\"4/22\\\"\",\n                                \"property\": \"runwayDesignation\",\n                                \"subject\": \"Atlantic_City_International_Airport\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"735\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Flemish Government have jurisdiction over the Flemish Region of Belgium. The leader of the country is Charles Michel and the city of Antwerp is served by Antwerp International Airport.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport serves the city of Antwerp in Belgium, the country where the leader is Charles Michel. The Flemish Region can be found in Belgium and it is led by the Flemish Government who has jurisdiction over it.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Antwerp International Airport serves Antwerp. The Flemish region is in the country of Belgium and it is led by the Flemish Government. The jurisdiction of the Flemish Government is in the Flemish Region and the leader of Belgium is Charles Michel.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Charles_Michel\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Belgium\"\n                    },\n                    {\n                        \"object\": \"Antwerp\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Antwerp_International_Airport\"\n                    },\n                    {\n                        \"object\": \"Flemish_Government\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Flemish_Region\"\n                    },\n                    {\n                        \"object\": \"Belgium\",\n                        \"property\": \"country\",\n                        \"subject\": \"Flemish_Region\"\n                    },\n                    {\n                        \"object\": \"Flemish_Region\",\n                        \"property\": \"jurisdiction\",\n                        \"subject\": \"Flemish_Government\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Charles_Michel\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Belgium\"\n                            },\n                            {\n                                \"object\": \"Antwerp\",\n                                \"property\": \"city\",\n                                \"subject\": \"Antwerp_International_Airport\"\n                            },\n                            {\n                                \"object\": \"Flemish_Government\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Flemish_Region\"\n                            },\n                            {\n                                \"object\": \"Belgium\",\n                                \"property\": \"country\",\n                                \"subject\": \"Flemish_Region\"\n                            },\n                            {\n                                \"object\": \"Flemish_Region\",\n                                \"property\": \"jurisdiction\",\n                                \"subject\": \"Flemish_Government\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"736\": {\n                \"category\": \"Airport\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional Airport serves the city of Lake Placid and Saranac Lake in New York. Saranac Lake is part of Harrietstown and Essex County in New York in the U.S.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional Airport serves the cities of Lake Placid and Saranac Lake, New York,United States.Saranac Lake, New York is part of Harrietstown,Essex County,New York.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adirondack Regional Airport serves the cities of Lake Placid and Saranac Lake in New York state,United States. Saranac Lake, New York is part of Harrietstown in Essex County,New York.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Harrietstown,_New_York\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Saranac_Lake,_New_York\"\n                    },\n                    {\n                        \"object\": \"Essex_County,_New_York\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Saranac_Lake,_New_York\"\n                    },\n                    {\n                        \"object\": \"Lake_Placid,_New_York\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Adirondack_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"Saranac_Lake,_New_York\",\n                        \"property\": \"cityServed\",\n                        \"subject\": \"Adirondack_Regional_Airport\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Saranac_Lake,_New_York\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Harrietstown,_New_York\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Saranac_Lake,_New_York\"\n                            },\n                            {\n                                \"object\": \"Essex_County,_New_York\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Saranac_Lake,_New_York\"\n                            },\n                            {\n                                \"object\": \"Lake_Placid,_New_York\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Saranac_Lake,_New_York\"\n                            },\n                            {\n                                \"object\": \"Saranac_Lake,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Harrietstown,_New_York\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Saranac_Lake,_New_York\"\n                            },\n                            {\n                                \"object\": \"Essex_County,_New_York\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Saranac_Lake,_New_York\"\n                            },\n                            {\n                                \"object\": \"Lake_Placid,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"Saranac_Lake,_New_York\",\n                                \"property\": \"cityServed\",\n                                \"subject\": \"Adirondack_Regional_Airport\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Saranac_Lake,_New_York\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"737\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean was an American born in Wheeler, Texas. He served as a test pilot and became a crew member of Apollo 12, which was operated by NASA.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Apollo 12 was operated by NASA and its crew members included American national Alan Bean. He was born in Wheeler, Texas and served as a test pilot.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean, a US national, was born in Wheeler, Texas. He served as a test pilot before becoming part of the NASA operated Apollo 12 mission as a crew member.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"Wheeler,_Texas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Bean\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"Wheeler,_Texas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Bean\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"738\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard, born in New Hampshire on November 18, 1923, graduated from NWC in 1957 with a M.A. He died in California on July 21, 1998.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born in New Hampshire on the 18th of November, 1923. He graduated from NWC in 1957 with a M.A. On the 21st of July, 1998, he passed away in California.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on the 18th of November, 1923 in New Hampshire and passed away on the 21st of July, 1998 in California. He graduated with a M.A. from NWC in 1957.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"NWC, M.A. 1957\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1998-07-21\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"NWC, M.A. 1957\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1998-07-21\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"739\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard, born in New Hampshire, has died in California. After graduating from NWC, MA in 1957 he served as a test pilot.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard has died in California. He was born in New Hampshire and went to school at NWC, graduating with an MA in 1957, He served as a test pilot.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard has died in California. He was born in New Hampshire and graduated from NWC MA in 1957. He served as a test pilot.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"NWC, M.A. 1957\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"NWC, M.A. 1957\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"740\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The late Alan Shepard was born in New Hampshire, and chosen by NASA in 1959 a a crew member of Apollo 14.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The late Alan Shepard was born in New Hampshire. He was selected by NASA in 1959 and served as a crew member of NASA operated Apollo 14.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was originally from New Hampshire and joined NASA in 1959 where he became a member of the Apollo 14 crew. Mr Shepard passed away.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_14\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"1959\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_14\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_14\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"1959\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_14\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"741\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean (born in Wheeler, Texas) was a crew member of Apollo 12 operated by NASA and was in space 100305 minutes. Apollo 12 was commanded by David Scott and Alfred Worden was a backup pilot.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alfred Worden was a backup pilot on the NASA operated Apollo 12 on which David Scott the commander and Alan Bean, who spent a total of 100305 minutes in space, was a crewman.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Alfred_Worden\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"\\\"100305.0\\\"(minutes)\",\n                        \"property\": \"timeInSpace\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"David_Scott\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_12\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Alfred_Worden\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"\\\"100305.0\\\"^^<http://dbpedia.org/datatype/minute>\",\n                                \"property\": \"timeInSpace\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"David_Scott\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_12\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"742\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard (born November 18th, 1923, New Hampshire) was awarded the United States Navy Distinguished Service Medal which is higher than the department of commerce gold medal has died in California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on 18 November 1923 in New Hampshire. He was awarded the Distinguished Service Medal, which is higher than the Department of Commerce Gold Medal, by the US Navy. He died in California.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born in New Hampshire on 18 November 1923. Before his death in California he had been awarded the Distinguished Service Medal by the US Navy an award higher than the Department of Commerce Gold Medal.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Department_of_Commerce_Gold_Medal\",\n                        \"property\": \"higher\",\n                        \"subject\": \"Distinguished_Service_Medal_(United_States_Navy)\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                        \"property\": \"awards\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Department_of_Commerce_Gold_Medal\",\n                                \"property\": \"higher\",\n                                \"subject\": \"Distinguished_Service_Medal_(United_States_Navy)\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                                \"property\": \"awards\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"743\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas and later attended the University of Texas at Austin. The University of Texas at Austin is affiliated with University of Texas System and is competing in the Big 12 Conference. Nowadays, Gregory L. Fenves is the President of the University.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas and attended the University of Texas at Austin which is affiliated with the University of Texas System and competed in the Big 12 Conference in Austin. Gregory L. Fenves is the appointed president of the University of Texas at Austin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas and was a student at University of Texas at Austin. This University, whose president is Gregory L. Fenves, is affiliated with the University of Texas System. The University of Texas at Austin competes in the Big 12 Conference.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Big_12_Conference\",\n                        \"property\": \"compete in\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    },\n                    {\n                        \"object\": \"University_of_Texas_System\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    },\n                    {\n                        \"object\": \"Gregory_L._Fenves\",\n                        \"property\": \"president\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Big_12_Conference\",\n                                \"property\": \"athletics\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            },\n                            {\n                                \"object\": \"University_of_Texas_System\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            },\n                            {\n                                \"object\": \"Gregory_L._Fenves\",\n                                \"property\": \"president\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"744\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See, a graduate of the University of Texas at Austin, passed away on 28th February 1966 in St. Louis. He was born in Dallas.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas and attended the University of Texas at Austin. He died in St Louis on 28 February 1966.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See, who was born on the 28th February 1966 in Dallas, has died in St Louis. He will be remembered as a great student at University of Texas at Austin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1966-02-28\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1966-02-28\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"745\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas, which is a county in Texas. He attended the University of Texas at Austin, which is affiliated to the University of Texas system. The University of Texas at Austin will be part of the Big 12 Conference competition.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas, Texas and attended the University of Texas (affiliated to the University of Texas system) which competed in the Big 12 conference.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See, who was born in Dallas, Texas, attended the University of Texas at Austin (affiliated to the University of Texas system) which will compete in the big 12 conference.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"University_of_Texas_System\",\n                        \"property\": \"affiliations\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    },\n                    {\n                        \"object\": \"List_of_counties_in_Texas\",\n                        \"property\": \"partsType\",\n                        \"subject\": \"Dallas\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Big_12_Conference\",\n                        \"property\": \"compete in\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"University_of_Texas_System\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            },\n                            {\n                                \"object\": \"List_of_counties_in_Texas\",\n                                \"property\": \"partsType\",\n                                \"subject\": \"Dallas\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Big_12_Conference\",\n                                \"property\": \"athletics\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"746\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas and studied at the University of Texas in Austin (which is affiliated to the university of Texas system). He died in St. Louis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas and studied at Austin University (part of the university of Texas system). He died in St. Louis.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See , who was born in Dallas , has died in St Louis. He graduated from the University of Texas at Austin which is affiliated to the University of Texas system.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"University_of_Texas_System\",\n                        \"property\": \"affiliations\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"University_of_Texas_System\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"747\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders was a member of the Apollo 8 crew (operated by NASA) and he retired on September 1st, 1969. Frank Borman was the commander of Apollo 8 and Buzz Aldrin was a back up pilot.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders, who retired on September 1st, 1969, was a crew member on Apollo 8 and served under commander Frank Borman. Apollo 8 was operated by NASA with Buzz Aldrin as backup pilot.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders joined NASA and was a member of Apollo 8 along with Frank Borman as Commander and Buzz Aldrin as back up pilot. William Anders retired on September 1st 1969.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1969-09-01\\\"\",\n                        \"property\": \"dateOfRetirement\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Frank_Borman\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_8\"\n                    },\n                    {\n                        \"object\": \"Apollo_8\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Buzz_Aldrin\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_8\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_8\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1969-09-01\\\"^^xsd:date\",\n                                \"property\": \"dateOfRet\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Frank_Borman\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_8\"\n                            },\n                            {\n                                \"object\": \"Apollo_8\",\n                                \"property\": \"mission\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Buzz_Aldrin\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_8\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_8\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"748\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"20 Fenchurch Street is located within the United Kingdom, where London is the capital, and the currency is pounds sterling. Boris Johnson is the leader in London, and one of the leaders of the United Kingdom is Elizabeth II.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United Kingdom uses the currency of the pound sterling and is lead by Elizabeth II along with Boris Johnson. The capital city is London and the country is also the location of 20 Fenchurch Street.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"location\",\n                        \"subject\": \"20_Fenchurch_Street\"\n                    },\n                    {\n                        \"object\": \"London\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"Boris_Johnson\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"London\"\n                    },\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"Pound_sterling\",\n                        \"property\": \"currency\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"location\",\n                                \"subject\": \"20_Fenchurch_Street\"\n                            },\n                            {\n                                \"object\": \"London\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"Boris_Johnson\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"London\"\n                            },\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"Pound_sterling\",\n                                \"property\": \"currency\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"749\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"250 Delaware Avenue was built in Buffalo New York at a cost of 110 million dollars. Construction began in January 2014 and the building has 12 floors with an area of 30843.8 square metres.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"There are 12 floors at 250 Delaware Avenue in Buffalo, New York. Construction, which began in January 2014 cost 110 million dollars for a floor area of 30843.8 square metres.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Buffalo,_New_York\",\n                        \"property\": \"location\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"\\\"January, 2014\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"\\\"110 million (dollars)\\\"\",\n                        \"property\": \"cost\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"30843.8 (square metres)\",\n                        \"property\": \"floorArea\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"12\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Buffalo,_New_York\",\n                                \"property\": \"location\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"January, 2014\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"1.1E8\\\"^^<http://dbpedia.org/datatype/usDollar>\",\n                                \"property\": \"cost\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"30843.8\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"12\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Buffalo,_New_York\",\n                                \"property\": \"location\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"January, 2014\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"1.1E8\\\"^^<http://dbpedia.org/datatype/usDollar>\",\n                                \"property\": \"cost\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"\\\"30843.8\\\"^^xsd:double\",\n                                \"property\": \"floorArea\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"12\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"750\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Rahm Emanuel is the leader of Chicago, DuPage County, Illinois, United States which is the location of the building at 300 North LaSalle which has 60 floors.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North LaSalle has 60 floors and is located in Chicago, DuPage County, Illinois, United States. The leader of Chicago is Rahm Emanuel.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"300 North LaSalle, which has 60 floors, is located in Chicago which is part of DuPage County in Illinois, United States. The leader of Chicago is Rahm Emanuel.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Chicago\",\n                        \"property\": \"location\",\n                        \"subject\": \"300_North_LaSalle\"\n                    },\n                    {\n                        \"object\": \"Rahm_Emanuel\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Chicago\"\n                    },\n                    {\n                        \"object\": \"DuPage_County,_Illinois\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Chicago\"\n                    },\n                    {\n                        \"object\": \"60\",\n                        \"property\": \"floorCount\",\n                        \"subject\": \"300_North_LaSalle\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Chicago\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Chicago\",\n                                \"property\": \"location\",\n                                \"subject\": \"300_North_LaSalle\"\n                            },\n                            {\n                                \"object\": \"Rahm_Emanuel\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Chicago\"\n                            },\n                            {\n                                \"object\": \"DuPage_County,_Illinois\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Chicago\"\n                            },\n                            {\n                                \"object\": \"\\\"60\\\"^^xsd:positiveInteger\",\n                                \"property\": \"floorCount\",\n                                \"subject\": \"300_North_LaSalle\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Chicago\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"751\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena (owned by Live Nation Entertainment) is located in Dublin, Republic of Ireland. Dáil Éireann is a leader in Dublin, which is part of Leinster.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"3Arena, owned by Live Nation Entertainment, is located in Dublin, which is part of Leinster in the Republic of Ireland. Dáil Éireann is a leader in Dublin.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Located in Dublin, Leinster, 3Arena is owned by Live Nation Entertainment. Dublin is also part of the Republic of Ireland and is lead by Dáil Éireann.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Live_Nation_Entertainment\",\n                        \"property\": \"owner\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"Dáil_Éireann\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Dublin\"\n                    },\n                    {\n                        \"object\": \"Republic_of_Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Dublin\"\n                    },\n                    {\n                        \"object\": \"Dublin\",\n                        \"property\": \"location\",\n                        \"subject\": \"3Arena\"\n                    },\n                    {\n                        \"object\": \"Leinster\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Dublin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Live_Nation_Entertainment\",\n                                \"property\": \"owner\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Dáil_Éireann\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Leinster\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Dublin\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Live_Nation_Entertainment\",\n                                \"property\": \"owner\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Dáil_Éireann\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Republic_of_Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Dublin\"\n                            },\n                            {\n                                \"object\": \"Dublin\",\n                                \"property\": \"location\",\n                                \"subject\": \"3Arena\"\n                            },\n                            {\n                                \"object\": \"Leinster\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Dublin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"752\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall in Sri Lanka was constructed between 1927 and 1931 at St Benedicts Monastery, Adisham, Haputhale, Sri Lanka in the Tudor and Jacobean style of architecture.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Construction of Adisham Hall took place between 1927 and 1931 in the architectural style of Tudor and Jacobean. It is located at St Benedict's Monastery, Adisham, Haputhale, Sri Lanka.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Tudor and Jacabian\\\"\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"1931\",\n                        \"property\": \"completionDate\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"1927\\\"\",\n                        \"property\": \"buildingStartDate\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"St. Benedict's Monastery, Adisham, Haputhale, Sri Lanka\\\"\",\n                        \"property\": \"address\",\n                        \"subject\": \"Adisham_Hall\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Tudor and Jacabian\\\"@en\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1931\\\"\",\n                                \"property\": \"buildingEndDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"1927\\\"\",\n                                \"property\": \"buildingStartDate\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"St. Benedict's Monastery, Adisham, Haputhale, Sri Lanka\\\"@en\",\n                                \"property\": \"address\",\n                                \"subject\": \"Adisham_Hall\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"753\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall is located in Haputale, Sri Lanka. The capital of Sri Lanka is Sri Jayawardenepura Kotte, the language used in the country is Tamil and the currency is the Sri Lankan Rupee.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall is in Haputale, Sri Lanka. The capital of Sri Lanka is Sri Jayawardenepura Kotte, the language spoken there is Tamil and the currency is the Sri Lankan Rupee.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Admisham Hall is located at Haputale, Sri Lanka. Sri Jayawardenepura Kotte is the capital of Sri Lanka, where the currency is the Sri Lankan Rupee and the language used is Tamil.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"\\\"Haputale, Sri Lanka\\\"\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Sri_Jayawardenepura_Kotte\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Tamil_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Sri_Lankan_rupee\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Sri_Lanka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"\\\"Haputale, Sri Lanka\\\"@en\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Sri_Jayawardenepura_Kotte\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Tamil_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Sri_Lankan_rupee\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Sri_Lanka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"754\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ranil Wickremesinghe is the leader of Sri Lanka where the capital city is Sri Jayawardenepura Kotte and the currency is the Sri Lankan rupee. Adisham Hall is located in the country at Haputale.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall is located in Haputale, Sri Lanka. The capital of Sri Lanka is Sri Jayawardenepura Kotte with Ranil Wickremesinghe as its leader and the Rupee as its currency.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Adisham Hall is located in Haputale, Sri Lanka, where the capital is called Sri Jayawardenepura Kotte. Ranil Wickremesinghe is a leader of Sri Lanka, and the currency is the Sri Lankan rupee.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Haputale\",\n                        \"property\": \"location\",\n                        \"subject\": \"Adisham_Hall\"\n                    },\n                    {\n                        \"object\": \"Ranil_Wickremesinghe\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Sri_Jayawardenepura_Kotte\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"Sri_Lankan_rupee\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Sri_Lanka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Ranil_Wickremesinghe\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Haputale\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Sri_Jayawardenepura_Kotte\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Sri_Lankan_rupee\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Sri_Lanka\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Haputale\",\n                                \"property\": \"location\",\n                                \"subject\": \"Adisham_Hall\"\n                            },\n                            {\n                                \"object\": \"Ranil_Wickremesinghe\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Sri_Jayawardenepura_Kotte\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"Sri_Lankan_rupee\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Sri_Lanka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"755\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The main ethnic group in Japan are the Japanese and the leader is Tarō Asō. Akita Museum of Art is in Akita, Akita which is part of Japan and the Akita Prefecture.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"\\\"The Akita Museum of Art is located in Akita, Akita which is located in Japan. The leader of Japan is Taro Aso and the main ethnic group in Japan is the Japanese. Akita, Akita is part of Akita Prefecture.\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Akita Museum of Art is in the city of Akita, Japan. The main ethnic group in Japan are the Japanese, the leader is Taro Aso and Akita, Akita is part of Akita Prefecture.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Japan\",\n                        \"property\": \"country\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    },\n                    {\n                        \"object\": \"Akita_Prefecture\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Akita,_Akita\"\n                    },\n                    {\n                        \"object\": \"Tarō_Asō\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Japan\"\n                    },\n                    {\n                        \"object\": \"Japanese_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Japan\"\n                    },\n                    {\n                        \"object\": \"Akita,_Akita\",\n                        \"property\": \"location\",\n                        \"subject\": \"Akita_Museum_of_Art\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Japan\",\n                                \"property\": \"country\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            },\n                            {\n                                \"object\": \"Akita_Prefecture\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Akita,_Akita\"\n                            },\n                            {\n                                \"object\": \"Tarō_Asō\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Japan\"\n                            },\n                            {\n                                \"object\": \"Japanese_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Japan\"\n                            },\n                            {\n                                \"object\": \"Akita,_Akita\",\n                                \"property\": \"location\",\n                                \"subject\": \"Akita_Museum_of_Art\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"756\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Gujarat, Ahmedabad, India. Gujarat's leader is known as the Gujarat Legislative Assembly, and the leader of India is Narendra Modi.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Gujarat, Ahmedabad which is in India. The leader of India is Narendra Modi but the leader of Gujarat is the Gujarat Legislative Assembly.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is in Gujarat, Ahmedabad which is in India. Gujarat's leader is the Gujarat Legislative Assembly and Narendra Modi is the prime minister of India.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Gujarat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"Ahmedabad\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"Narendra_Modi\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Gujarat_Legislative_Assembly\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Gujarat\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Gujarat_Legislative_Assembly\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Gujarat\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"locationCountry\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Narendra_Modi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Gujarat_Legislative_Assembly\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Gujarat\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"757\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amdavad ni Gufa is located in Ahmedabad, Gujarat, India; led by the Gujarat Legislative Assembly, including leader T S Thakur.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Gujarat\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"T._S._Thakur\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ahmedabad\"\n                    },\n                    {\n                        \"object\": \"Ahmedabad\",\n                        \"property\": \"location\",\n                        \"subject\": \"Amdavad_ni_Gufa\"\n                    },\n                    {\n                        \"object\": \"Gujarat_Legislative_Assembly\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Gujarat\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Gujarat\",\n                                \"property\": \"location\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"T._S._Thakur\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ahmedabad\"\n                            },\n                            {\n                                \"object\": \"Ahmedabad\",\n                                \"property\": \"locationTown\",\n                                \"subject\": \"Amdavad_ni_Gufa\"\n                            },\n                            {\n                                \"object\": \"Gujarat_Legislative_Assembly\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Gujarat\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"758\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 476 bed Ampara Hospital is situated in the Eastern Province state of Sri Lanka where Austin Fernando is the leader. The country's leader is Ranil Wickremesinghe.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ampara Hospital, which has 476 beds, is located in the Eastern Province of Sri Lanka lead by Austin Fernando. The leader of Sri Lanka is Ranil Wickremesinghe.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"There are 476 beds at Ampara Hospital in the Eastern Province of Sri Lanka where Austin Fernando is the leader. Another leader within the country is Ranil Wickremesinghe.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Sri_Lanka\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Ranil_Wickremesinghe\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Sri_Lanka\"\n                    },\n                    {\n                        \"object\": \"476\",\n                        \"property\": \"bedCount\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Eastern_Province,_Sri_Lanka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Ampara_Hospital\"\n                    },\n                    {\n                        \"object\": \"Austin_Fernando\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Eastern_Province,_Sri_Lanka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Ranil_Wickremesinghe\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"476\",\n                                \"property\": \"beds\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Eastern_Province,_Sri_Lanka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Austin_Fernando\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Eastern_Province,_Sri_Lanka\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Sri_Lanka\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Ranil_Wickremesinghe\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Sri_Lanka\"\n                            },\n                            {\n                                \"object\": \"\\\"476\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"bedCount\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Eastern_Province,_Sri_Lanka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Ampara_Hospital\"\n                            },\n                            {\n                                \"object\": \"Austin_Fernando\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Eastern_Province,_Sri_Lanka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"759\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Julia Morgan, who was born in California, designed the Asilomar Conference Grounds, the Los Angeles Herald examiner building, The Riverside Art Musuem and Hearst Castle.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Julia Morgan was an architect born in California. She designed Asilomar Conference Grounds, The Riverside Art Museum, Hearst Castle and the Los Angeles Herald Examiner building.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Julia_Morgan\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"Los_Angeles_Herald-Examiner\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"Riverside_Art_Museum\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"Hearst_Castle\",\n                        \"property\": \"significantProject\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Julia_Morgan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Julia_Morgan\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"Los_Angeles_Herald-Examiner\",\n                                \"property\": \"significantBuilding\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"Riverside_Art_Museum\",\n                                \"property\": \"significantBuildings\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"Hearst_Castle\",\n                                \"property\": \"significantProject\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Julia_Morgan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"760\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds were designed by Julia Morgan (born in California), who is known for a number of buildings, including Hearst Castle and The Riverside Art Museum, and her work in San Francisco's Chinatown.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Julia Morgan, the architect, was born in California and some of her significant projects include: the Asilomar Conference Grounds, The Riverside Art Museum, Hearst Castle and some buildings in Chinatown, San Francisco.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Julia Morgan, born in California, was the architect behind the grounds of Asilomar Conference, the Riverside Art Museum, Hearst Castle and Chinatown in San Francisco.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Julia_Morgan\",\n                        \"property\": \"architect\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"Riverside_Art_Museum\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"Hearst_Castle\",\n                        \"property\": \"significantProject\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"Chinatown,_San_Francisco\",\n                        \"property\": \"significantBuilding\",\n                        \"subject\": \"Julia_Morgan\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Julia_Morgan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Julia_Morgan\",\n                                \"property\": \"architect\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"Riverside_Art_Museum\",\n                                \"property\": \"significantBuildings\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"Hearst_Castle\",\n                                \"property\": \"significantProject\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"Chinatown,_San_Francisco\",\n                                \"property\": \"significantBuilding\",\n                                \"subject\": \"Julia_Morgan\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Julia_Morgan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"761\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asilomar Conference Grounds were constructed in 1913. They are located in Pacific Grove, California and they were added to the National Register of Historic Places on February 27th 1987 (with reference number 87000823). The grounds are in the architectural style of the Arts and Crafts Movement.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asilomar Conference Grounds are located in Pacific Grove, California. They were constructed in 1913 with the architectural style of the Arts and Crafts Movement. They were added to the National Register of Historic Places on 27 February 1987 with reference number \\\"87000823\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asilomar Conference Grounds were constructed in 1913 and are in Pacific Grove, California. They have an Arts and Crafts movement style architecture and were added to the National Register of Historic Places on 27 February 1987 with the reference number 87000823.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pacific_Grove,_California\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"\\\"1987-02-27\\\"\",\n                        \"property\": \"added to the National Register of Historic Places\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"Arts_and_Crafts_movement\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"\\\"87000823\\\"\",\n                        \"property\": \"ReferenceNumber in the National Register of Historic Places\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    },\n                    {\n                        \"object\": \"1913\",\n                        \"property\": \"yearOfConstruction\",\n                        \"subject\": \"Asilomar_Conference_Grounds\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pacific_Grove,_California\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"\\\"1987-02-27\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"Arts_and_Crafts_movement\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"\\\"87000823\\\"\",\n                                \"property\": \"nrhpReferenceNumber\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            },\n                            {\n                                \"object\": \"\\\"1913\\\"^^xsd:gYear\",\n                                \"property\": \"yearOfConstruction\",\n                                \"subject\": \"Asilomar_Conference_Grounds\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"762\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asser Levy Public Baths, built in 1904 in a Romanesque Revival style, is located at 23rd Street (Manhattan). The site was added to the National Register of Historic Places on 1980-04-23, with Reference Number 80002709.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy baths are located on 23rd Street in Manhattan and have the Romanesque Revival style of architecture. They were built in 1904 and added to the National Register of Historic Places with the reference number 80002709 on 23 April 1980.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy Public Baths was built in 1904 in the architectural style of Romanesque Revival, and is located on 23rd Street, Manhattan. The site was added to the National Register of Historic Places on \\\"1980-04-23\\\", with reference number 80002709.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"23rd_Street_(Manhattan)\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"Romanesque_Revival_architecture\",\n                        \"property\": \"architecturalStyle\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"\\\"80002709\\\"\",\n                        \"property\": \"ReferenceNumber in the National Register of Historic Places\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"1904\",\n                        \"property\": \"yearOfConstruction\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"\\\"1980-04-23\\\"\",\n                        \"property\": \"added to the National Register of Historic Places\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"23rd_Street_(Manhattan)\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"Romanesque_Revival_architecture\",\n                                \"property\": \"architecturalStyle\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"\\\"80002709\\\"\",\n                                \"property\": \"nrhpReferenceNumber\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"\\\"1904\\\"^^xsd:gYear\",\n                                \"property\": \"yearOfConstruction\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"\\\"1980-04-23\\\"^^xsd:date\",\n                                \"property\": \"added\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"763\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Asser Levy Public Baths are found in New York City, New York, United States. Another part of New York City is Manhattan where Gale Brewer is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Gale Brewer is the leader of Manhattan which is part of New York City, New York, United States. New York City is the location of Asser Levy Public Baths.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The location of Asser Levy Public Baths are New York City, US.New York City and Manhattan are part of New York. The leader of Manhattan is Gale Brewer.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"New_York_City\",\n                        \"property\": \"location\",\n                        \"subject\": \"Asser_Levy_Public_Baths\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"New_York_City\"\n                    },\n                    {\n                        \"object\": \"Gale_Brewer\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Manhattan\"\n                    },\n                    {\n                        \"object\": \"New_York\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"New_York_City\"\n                    },\n                    {\n                        \"object\": \"Manhattan\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"New_York_City\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"New_York_City\",\n                                \"property\": \"location\",\n                                \"subject\": \"Asser_Levy_Public_Baths\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"New_York_City\"\n                            },\n                            {\n                                \"object\": \"Gale_Brewer\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Manhattan\"\n                            },\n                            {\n                                \"object\": \"New_York\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"New_York_City\"\n                            },\n                            {\n                                \"object\": \"Manhattan\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"New_York_City\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"764\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"103 Colmore Row was designed by the architect John Madin, who was born in Birmingham, where the postal code is 'B'. Andrew Mitchell is the leader of the city and Birmingham City Council is the governing body.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The City Council is the governing body for Birmingham where Andrew Mitchell is a leader. The city has the B postcode and is the birthplace of the Architect John Madin who designed 103 Colmore Row.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Birmingham is lead by Andrew Mitchell and the Birmingham City Council. The town, which has the B postcode, is the birthplace of architect John Madin who designed 103 Colmore Row.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"B_postcode_area\",\n                        \"property\": \"postalCode\",\n                        \"subject\": \"Birmingham\"\n                    },\n                    {\n                        \"object\": \"John_Madin\",\n                        \"property\": \"architect\",\n                        \"subject\": \"103_Colmore_Row\"\n                    },\n                    {\n                        \"object\": \"Birmingham\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"John_Madin\"\n                    },\n                    {\n                        \"object\": \"Birmingham_City_Council\",\n                        \"property\": \"governingBody\",\n                        \"subject\": \"Birmingham\"\n                    },\n                    {\n                        \"object\": \"Andrew_Mitchell\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Birmingham\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"B_postcode_area\",\n                                \"property\": \"postalCode\",\n                                \"subject\": \"Birmingham\"\n                            },\n                            {\n                                \"object\": \"John_Madin\",\n                                \"property\": \"architect\",\n                                \"subject\": \"103_Colmore_Row\"\n                            },\n                            {\n                                \"object\": \"Birmingham\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"John_Madin\"\n                            },\n                            {\n                                \"object\": \"Birmingham_City_Council\",\n                                \"property\": \"governingBody\",\n                                \"subject\": \"Birmingham\"\n                            },\n                            {\n                                \"object\": \"Andrew_Mitchell\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Birmingham\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"765\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Hailemariam Desalegn and Mulatu Teshome are leaders within Ethiopia. The Addis Ababa Stadium and the Addis Ababa City Hall are both located within the country in Addis Ababa.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addis Ababa Stadium and Addis Ababa City Hall are located in Addis Ababa, Ethiopia. The country is lead by Malatu Teshome and Hailemariam Desalegn,.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Addis Ababa Stadium and Addis Ababa City Hall are both located in Addis Ababa, Ethiopia. Malatu Teshome and Hailemariam Desalegn are leaders in the country.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mulatu_Teshome\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Ethiopia\"\n                    },\n                    {\n                        \"object\": \"Hailemariam_Desalegn\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Ethiopia\"\n                    },\n                    {\n                        \"object\": \"Addis_Ababa_Stadium\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Addis_Ababa\"\n                    },\n                    {\n                        \"object\": \"Addis_Ababa\",\n                        \"property\": \"location\",\n                        \"subject\": \"Addis_Ababa_City_Hall\"\n                    },\n                    {\n                        \"object\": \"Ethiopia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Addis_Ababa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mulatu_Teshome\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Ethiopia\"\n                            },\n                            {\n                                \"object\": \"Hailemariam_Desalegn\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Ethiopia\"\n                            },\n                            {\n                                \"object\": \"Addis_Ababa_Stadium\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Addis_Ababa\"\n                            },\n                            {\n                                \"object\": \"Addis_Ababa\",\n                                \"property\": \"location\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"Ethiopia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Addis_Ababa\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Hailemariam_Desalegn\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Ethiopia\"\n                            },\n                            {\n                                \"object\": \"Addis_Ababa_Stadium\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Addis_Ababa\"\n                            },\n                            {\n                                \"object\": \"Mulatu_Teshome\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Ethiopia\"\n                            },\n                            {\n                                \"object\": \"Addis_Ababa\",\n                                \"property\": \"location\",\n                                \"subject\": \"Addis_Ababa_City_Hall\"\n                            },\n                            {\n                                \"object\": \"Ethiopia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Addis_Ababa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"766\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The President is the primary leader of English language speaking United States, (includes leader John Roberts), has the ethnic African American group and is home to 250 Delaware Avenue.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"250 Delaware Avenue is located in the United States, where the leader is known as the President of the United States, supported by the United States of America`s Chief Justice, John Roberts. The main language is English, and one of the ethnic groups is the African Americans.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"President_of_the_United_States\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"John_Roberts\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"location\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"President_of_the_United_States\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"John_Roberts\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"location\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"767\": {\n                \"category\": \"Building\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Joe Biden is a leader of the United States which is lead by a President. The White Americans are one of the ethnic groups of the country which uses the English language and is where 250 Delaware Avenue is located.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"250 Delaware Avenue is located in the United States, where English is spoken. The President of the United States is the main leader, alongside Joe Biden, and an ethnic group in the country is White Americans.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"President_of_the_United_States\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Joe_Biden\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"location\",\n                        \"subject\": \"250_Delaware_Avenue\"\n                    },\n                    {\n                        \"object\": \"White_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"President_of_the_United_States\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Joe_Biden\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"location\",\n                                \"subject\": \"250_Delaware_Avenue\"\n                            },\n                            {\n                                \"object\": \"White_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"768\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bananaman was shown on the BBC, first airing on 3 October 1983 and the final broadcast being 15 April 1986. It was created by John Geering and starred Tim Brooke Taylor.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The BBC began airing Bananaman October 3rd, 1983 and the last episode was broadcast on April 15th, 1986. John Geering is one of the creators of Bananaman which also starred Tim Brooke-Taylor.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The TV character Bananaman was created by John Geering. The programme was broadcast by the BBC and starred Tim Brooke-Taylor. It first aired on the 10th March 1983 and was last shown on April 15th 1986.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Tim_Brooke-Taylor\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"BBC\",\n                        \"property\": \"broadcastedBy\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"John_Geering\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"\\\"1983-10-03\\\"\",\n                        \"property\": \"firstAired\",\n                        \"subject\": \"Bananaman\"\n                    },\n                    {\n                        \"object\": \"\\\"1986-04-15\\\"\",\n                        \"property\": \"lastAired\",\n                        \"subject\": \"Bananaman\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Tim_Brooke-Taylor\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"BBC\",\n                                \"property\": \"network\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"John_Geering\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"\\\"1983-10-03\\\"^^xsd:date\",\n                                \"property\": \"firstAired\",\n                                \"subject\": \"Bananaman\"\n                            },\n                            {\n                                \"object\": \"\\\"1986-04-15\\\"^^xsd:date\",\n                                \"property\": \"lastAired\",\n                                \"subject\": \"Bananaman\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"769\": {\n                \"category\": \"ComicsCharacter\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax is a character from the film Big Hero 6 starring Scott Adsit. He was created by Steven T Seagle and the American, Duncan Rouleau.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"American Duncan Rouleau and Steve T. Seagle created Baymax. Baymax is a character in Big Hero 6 which starred Scott Adsit.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baymax was created by American Duncan Rouleau and Steven T. Seagle. Baymax is a character in Big Hero 6 which stars Scott Adsit.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Americans\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Duncan_Rouleau\"\n                    },\n                    {\n                        \"object\": \"Duncan_Rouleau\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Steven_T._Seagle\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Big_Hero_6_(film)\",\n                        \"property\": \"series\",\n                        \"subject\": \"Baymax\"\n                    },\n                    {\n                        \"object\": \"Scott_Adsit\",\n                        \"property\": \"starring\",\n                        \"subject\": \"Big_Hero_6_(film)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Duncan_Rouleau\"\n                            },\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Steven_T._Seagle\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"series\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Scott_Adsit\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Big_Hero_6_(film)\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Duncan_Rouleau\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Americans\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Duncan_Rouleau\"\n                            },\n                            {\n                                \"object\": \"Steven_T._Seagle\",\n                                \"property\": \"creators\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Big_Hero_6_(film)\",\n                                \"property\": \"series\",\n                                \"subject\": \"Baymax\"\n                            },\n                            {\n                                \"object\": \"Scott_Adsit\",\n                                \"property\": \"starring\",\n                                \"subject\": \"Big_Hero_6_(film)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"770\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"From Andalusia, Spain, Ajoblanco is made with bread, almonds, garlic, water and olive oil. Ajo blanco is an alternative name to Ajoblanco.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco, also known as Ajo blanco is a dish from the Andalusian region of Spain and includes the main ingredients of bread, almonds, garlic, water and olive oil.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A dish found in the Andalusian region of Spain is called Ajoblanco (or Ajo blanco). It contains bread, almonds, garlic, water and olive oil.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"\\\"Bread, almonds, garlic, water, olive oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Andalusia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"\\\"Ajo blanco\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Bread\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ajoblanco\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"\\\"Bread, almonds, garlic, water, olive oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Andalusia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"\\\"Ajo blanco\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Bread\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ajoblanco\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"771\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tomatoes, guanciale, cheese, and olive oil are main ingredients in the traditional Amatriciana sauce, which comes from the region of Lazio and can be found in an Italian meal.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amatriciana is a traditional sauce from Lazio, Italy. It includes cheese along with tomatoes, guanciale and olive oil.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amatriciana sauce can be found in Italian food and comes from the country's Lazio region.The main ingredients of the sauce are guanciale,tomatoes,cheese, and olive oil.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lazio\",\n                        \"property\": \"region\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    },\n                    {\n                        \"object\": \"Guanciale\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    },\n                    {\n                        \"object\": \"Italian_meal_structure\",\n                        \"property\": \"course\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    },\n                    {\n                        \"object\": \"\\\"Tomatoes, guanciale, cheese, olive oil\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lazio\",\n                                \"property\": \"region\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Guanciale\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Italian_meal_structure\",\n                                \"property\": \"course\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"\\\"Tomatoes, guanciale, cheese , olive oil\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"772\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arem-arem, a Javanese dish, is commonly served in Indonesia where the leader is Joko Widodo. It is also where the currency is the Indonesian rupiah and where Indonesian language is the language spoken.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"Javanese_cuisine\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arem-arem\"\n                    },\n                    {\n                        \"object\": \"Joko_Widodo\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Indonesian_rupiah\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Indonesian_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Indonesia\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Javanese_cuisine\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arem-arem\"\n                            },\n                            {\n                                \"object\": \"Joko_Widodo\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Indonesian_rupiah\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Indonesian_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Indonesia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"773\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Sergio Mattarella is a leader in Italy, a country where Rome is the capital,and both the people and the language spoken are Italian. Arrabbiata sauce can be found in Italy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arrabbiata sauce is from Italy where the capital is Rome, Italian is the language spoken and Sergio Mattarella is a leader.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arrabbiata_sauce\"\n                    },\n                    {\n                        \"object\": \"Italians\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Italian_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Sergio_Mattarella\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arrabbiata_sauce\"\n                            },\n                            {\n                                \"object\": \"Italians\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italian_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"774\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ximo Puig is a leader of the Valencian Community which is where Arros negre comes from. It is a a traditional dish from Spain, where the people are called Spaniards and the leader is Felipe VI of Spain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Arros negre is from the Valencian Community of Spain, home to the Spaniards, led by Felipe VI and Ximo Puig.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Valencian_Community\",\n                        \"property\": \"region\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Ximo_Puig\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Valencian_Community\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Arròs_negre\"\n                    },\n                    {\n                        \"object\": \"Spaniards\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Spain\"\n                    },\n                    {\n                        \"object\": \"Felipe_VI_of_Spain\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Spain\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Valencian_Community\",\n                                \"property\": \"region\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Ximo_Puig\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Valencian_Community\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Arròs_negre\"\n                            },\n                            {\n                                \"object\": \"Spaniards\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Felipe_VI_of_Spain\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Spain\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"775\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is a food found in the Malay Peninsula of Malaysia, whose capital is Kuala Lumpur, and includes the Malaysian Chinese and Malaysian Indians.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is a food found in the Malay Peninsula in Malaysia, whose capital is Kuala Lumpur, where Malaysian Indians and Malaysian Chinese are ethnic groups.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Malaysia and the Malay Peninsula are home to the dish Asam pedas. The capital of Malaysian Chinese and Indian inhabited Malaysia is Kuala Lumpur.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"Malaysian_Chinese\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Kuala_Lumpur\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Malaysian_Indian\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Malay_Peninsula\",\n                        \"property\": \"region\",\n                        \"subject\": \"Asam_pedas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Chinese\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Kuala_Lumpur\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Indian\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Malay_Peninsula\",\n                                \"property\": \"region\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"776\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Malaysian Indian and Malaysian chinese are two of the ethnic groups in Malaysia where Arifin Zakaria is the leader. Asam pedas is found in Malaysia and is from the Malay Peninsula region.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Asam pedas is a food found in the Malay Peninsula region, Malaysia, where ethnic groups include Malaysian Indian and Chinese. Arifin Zakaria is the country's leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Malaysia, led by Arifin Zakaria, is home to the Malaysian Indian and Chinese, as well as the asam pedas of the Malay Peninsula region.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Asam_pedas\"\n                    },\n                    {\n                        \"object\": \"Malaysian_Chinese\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Arifin_Zakaria\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Malaysian_Indian\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Malay_Peninsula\",\n                        \"property\": \"region\",\n                        \"subject\": \"Asam_pedas\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Chinese\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Arifin_Zakaria\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Indian\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Malay_Peninsula\",\n                                \"property\": \"region\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Asam_pedas\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Chinese\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Arifin_Zakaria\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Indian\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Malay_Peninsula\",\n                                \"property\": \"region\",\n                                \"subject\": \"Asam_pedas\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"777\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a Javanese dish made nationwide, and can also be found in Malaysia and Singapore. It should be served hot and contains the main ingredients of squeezed or smashed fried chicken served with sambal.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a hot food dish found in Java, Malaysia and Singapore and consists of fried chicken and sambal sauce.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a food made in Java regions of Malaysia and Singapore. It contains fried chicken that is smashed and served hot with sambal.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Nationwide, also can be found in Malaysia and Singapore\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Fried_chicken\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"\\\"Squeezed\\\" or \\\"smashed\\\" fried chicken served with sambal\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"\\\"Hot\\\"\",\n                        \"property\": \"servingTemperature\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Nationwide, also can be found in Malaysia and Singapore\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Fried_chicken\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"\\\"\\\\\\\"Squeezed\\\\\\\" or \\\\\\\"smashed\\\\\\\"fried chickenserved withsambal\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"\\\"Hot\\\"\",\n                                \"property\": \"servingTemperature\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"778\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Malaysian Chinese is an ethnic group from Malaysia and Ayam Penyet is from there. Ayam Penyet is also from Indonesia and it contains fried chicken as well as \\\"squeezed\\\" or \\\"smashed\\\" chicken served with sambal.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet is a dish comprising \\\"squeezed\\\" or \\\"smashed\\\" fried chicken served with sambal. It can be found in Indonesia and in Malaysia, where there is an ethnic group called Malaysian Chinese.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet (origins: Indonesia) contains squeezed/smashed fried chicken with sambel and is popular in Malaysia. Malasysia is home to the Malaysian chinese.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Malaysia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Malaysian_Chinese\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Malaysia\"\n                    },\n                    {\n                        \"object\": \"Fried_chicken\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"\\\"Squeezed\\\" or \\\"smashed\\\" fried chicken served with sambal\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Malaysia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Malaysian_Chinese\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Malaysia\"\n                            },\n                            {\n                                \"object\": \"Fried_chicken\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"\\\"\\\\\\\"Squeezed\\\\\\\" or \\\\\\\"smashed\\\\\\\" fried chicken served with sambal\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"779\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion is a dish that originates in the United States, where English is the language spoken and the capital is Washington DC. Barack Obama is leader of the US and Native Americans are one of the ethnic groups of the country.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barack Obama is leader of United States, the home of the dish Bacon Explosion. Native Americans are one of the ethnic groups of the country, where Washington DC is the capital and English is the language spoken.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bacon Explosion comes from the United States whose leader is Barack Obama. The capital of the United States is Washington, D.C., the spoken language is English and Native Americans are one of the ethnic groups of the country.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bacon_Explosion\"\n                    },\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Native_Americans_in_the_United_States\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Washington,_D.C.\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bacon_Explosion\"\n                            },\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Native_Americans_in_the_United_States\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Washington,_D.C.\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"780\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska originates from France where the national language is French and one of the leader is Gerard Larcher. The dessert is served in Hong Kong as well where the leader is Carrie Lam.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska comes from France where the spoken language is French,and the country's leader is Gerard Larcher. This dessert is also served in Hong Kong.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baked Alaska, served in Hong Kong, who's political leader is Carrie Lam, but is actually from France where the national language is French and the leader is Gerard Larcher.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"France\",\n                        \"property\": \"country\",\n                        \"subject\": \"Baked_Alaska\"\n                    },\n                    {\n                        \"object\": \"Carrie_Lam_(politician)\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Hong_Kong\"\n                    },\n                    {\n                        \"object\": \"Gérard_Larcher\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"French_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"Hong_Kong\",\n                        \"property\": \"region\",\n                        \"subject\": \"Baked_Alaska\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Carrie_Lam_(politician)\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Hong_Kong\"\n                            },\n                            {\n                                \"object\": \"Gérard_Larcher\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"French_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Hong_Kong\",\n                                \"property\": \"region\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Baked_Alaska\"\n                            },\n                            {\n                                \"object\": \"Carrie_Lam_(politician)\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Hong_Kong\"\n                            },\n                            {\n                                \"object\": \"Gérard_Larcher\",\n                                \"property\": \"leader\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"French_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Hong_Kong\",\n                                \"property\": \"region\",\n                                \"subject\": \"Baked_Alaska\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"781\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakewell Tart (or pudding) is from the Derbyshire Dales area of Derbyshire where Patrick McLoughlin is a leader. The tart is made with shortcrust pastry.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The shortcrust pastry-based dessert Bakewell Tart (or pudding) hails from the Derbyshire Dales area of Derbyshire where Patrick McLoughlin is a leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A variant of bakewell pudding is bakewell tart, which key ingredient is Shortcrust pastry. Bakewell pudding originates from the Derbyshire Dales, which leader is Patrick McLoughlin.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Derbyshire_Dales\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Patrick_McLoughlin\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Bakewell_tart\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Derbyshire\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Shortcrust_pastry\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakewell_tart\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Derbyshire_Dales\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Patrick_McLoughlin\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Derbyshire\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Shortcrust_pastry\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakewell_tart\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"782\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa is a dish from Colombian cuisine and originates from the Paisa region. One of the ingredients in Bandeja paisa is lemon which is a member of the family Rutaceae and is from the genus citrus.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa is a traditional dish from the Paisa region, Colombia. Lemon is one of its ingredients and is a member of the family Rutaceae and is from the genus citrus.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lemon\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Rutaceae\",\n                        \"property\": \"family\",\n                        \"subject\": \"Lemon\"\n                    },\n                    {\n                        \"object\": \"Colombian_cuisine\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Paisa_Region\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Citrus\",\n                        \"property\": \"genus\",\n                        \"subject\": \"Lemon\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lemon\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Rutaceae\",\n                                \"property\": \"family\",\n                                \"subject\": \"Lemon\"\n                            },\n                            {\n                                \"object\": \"Colombian_cuisine\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Paisa_Region\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Citrus\",\n                                \"property\": \"genus\",\n                                \"subject\": \"Lemon\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id13\"\n            }\n        },\n        {\n            \"783\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bandeja paisa is typical Colombian cuisine that originates from the Paisa region and contains lemon. The lemon belongs to the rutaceae family and the order of Rosids.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Lemon\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Rosids\",\n                        \"property\": \"order\",\n                        \"subject\": \"Lemon\"\n                    },\n                    {\n                        \"object\": \"Rutaceae\",\n                        \"property\": \"family\",\n                        \"subject\": \"Lemon\"\n                    },\n                    {\n                        \"object\": \"Colombian_cuisine\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bandeja_paisa\"\n                    },\n                    {\n                        \"object\": \"Paisa_Region\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bandeja_paisa\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Lemon\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Rosids\",\n                                \"property\": \"order\",\n                                \"subject\": \"Lemon\"\n                            },\n                            {\n                                \"object\": \"Rutaceae\",\n                                \"property\": \"family\",\n                                \"subject\": \"Lemon\"\n                            },\n                            {\n                                \"object\": \"Colombian_cuisine\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bandeja_paisa\"\n                            },\n                            {\n                                \"object\": \"Paisa_Region\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bandeja_paisa\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id14\"\n            }\n        },\n        {\n            \"784\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny Cakes, which are made from sponge cake, are from France, where Gerard Larcher and Claude Bartolone are leaders and French is the language spoken.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes, made with sponge cake, are found in France, where French is spoken and whose leaders are Claude Bartolone and Gerard Larcher.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"France\",\n                        \"property\": \"country\",\n                        \"subject\": \"Barny_Cakes\"\n                    },\n                    {\n                        \"object\": \"French_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"Gérard_Larcher\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"Claude_Bartolone\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"Sponge_cake\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Barny_Cakes\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"Gérard_Larcher\",\n                                \"property\": \"leader\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"French_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Claude_Bartolone\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Sponge_cake\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"French_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Gérard_Larcher\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Claude_Bartolone\",\n                                \"property\": \"leader\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Sponge_cake\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id15\"\n            }\n        },\n        {\n            \"785\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Created by Mondelez International (founded in Chicago), Barny Cakes come from France where Gerard Larcher is leader and they speak French.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Barny cakes is created by Mondelez International, which was founded in Chicago. It comes from France, which leader is Gérard Larcher and the language is French.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"France\",\n                        \"property\": \"country\",\n                        \"subject\": \"Barny_Cakes\"\n                    },\n                    {\n                        \"object\": \"Gérard_Larcher\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"French_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"France\"\n                    },\n                    {\n                        \"object\": \"Chicago\",\n                        \"property\": \"foundationPlace\",\n                        \"subject\": \"Mondelez_International\"\n                    },\n                    {\n                        \"object\": \"Mondelez_International\",\n                        \"property\": \"creator\",\n                        \"subject\": \"Barny_Cakes\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"France\",\n                                \"property\": \"country\",\n                                \"subject\": \"Barny_Cakes\"\n                            },\n                            {\n                                \"object\": \"Gérard_Larcher\",\n                                \"property\": \"leader\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"French_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"France\"\n                            },\n                            {\n                                \"object\": \"Chicago\",\n                                \"property\": \"foundationPlace\",\n                                \"subject\": \"Mondelez_International\"\n                            },\n                            {\n                                \"object\": \"Mondelez_International\",\n                                \"property\": \"creator\",\n                                \"subject\": \"Barny_Cakes\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id16\"\n            }\n        },\n        {\n            \"786\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English speaking Singapore, led by Tony Tan and Halimah Yacob, offers the dish Beef kway teow, also found in Indonesia.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"\\\"Singapore and Indonesia\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Tony_Tan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Halimah_Yacob\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"\\\"Singapore and Indonesia\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"\\\"Singapore and Indonesia\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id17\"\n            }\n        },\n        {\n            \"787\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji is also known as Bhaji or bajj, originates from the Karnataka region of India. It is usually made up of vegetables and gram flour.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji, also known as Bhaji or bajji, originates from India in the Karnataka region and the main ingredients are gram flour and vegetables.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji (Bhaji), or bajji, contains vegetables and gram flour; it originates from the Karnataka region of India.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"\\\"Gram flour, vegetables\\\"\",\n                        \"property\": \"mainIngredients\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"\\\"Bhaji, bajji\\\"\",\n                        \"property\": \"alternativeName\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Vegetable\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bhajji\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"\\\"Gram flour, vegetables\\\"@en\",\n                                \"property\": \"mainIngredient\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"\\\"Bhaji, bajji\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Vegetable\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"\\\"Bhaji, bajji\\\"@en\",\n                                \"property\": \"alias\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Vegetable\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"\\\"Gram flour,vegetables\\\"\",\n                                \"property\": \"ingredientName\",\n                                \"subject\": \"Bhajji\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id18\"\n            }\n        },\n        {\n            \"788\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Indians is the name given to people from India and the leaders are Sumitra Mahajan and Vajubhai Vala. Bhajji is from the Karnataka region of India.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji is from the Karantake region of India. India is led by Vajubhai Vala and home to the Indian people.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bhajji originates from the Karnataka region (led by Vajubhai Vala) of India. The Indians of India are led by Sumitra Mahajan.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Indian_people\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Sumitra_Mahajan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bhajji\"\n                    },\n                    {\n                        \"object\": \"Vajubhai_Vala\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Karnataka\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Indian_people\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Sumitra_Mahajan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bhajji\"\n                            },\n                            {\n                                \"object\": \"Vajubhai_Vala\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Karnataka\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id19\"\n            }\n        },\n        {\n            \"789\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert from Jalisco, Mexio. The leader in Jalisco is Jesus Casillas Romero. Another dessert is a cake.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert found in the Jalisco region of Mexico. The name of the leader in Jalisco is Jesus Casillas Romero. Another dessert is a cake.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mexico\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Jalisco\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Jesús_Casillas_Romero\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Jalisco\"\n                    },\n                    {\n                        \"object\": \"Cake\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    },\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mexico\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Jalisco\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Jesús_Casillas_Romero\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Jalisco\"\n                            },\n                            {\n                                \"object\": \"Cake\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            },\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id20\"\n            }\n        },\n        {\n            \"790\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A type of dessert is a cake. However, bionico is not a cake, and instead a dessert from the Guadalajara region, in Mexico. Mexico is where Enrique Pena Nieto is the leader.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bionico is a dessert from Guadalajara, Mexico where the leader is Enrique Pena Nieto. Another dessert is a cake.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mexico\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Cake\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Dessert\"\n                    },\n                    {\n                        \"object\": \"Enrique_Peña_Nieto\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Mexico\"\n                    },\n                    {\n                        \"object\": \"Dessert\",\n                        \"property\": \"course\",\n                        \"subject\": \"Bionico\"\n                    },\n                    {\n                        \"object\": \"Guadalajara\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bionico\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mexico\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Cake\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Dessert\"\n                            },\n                            {\n                                \"object\": \"Enrique_Peña_Nieto\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Mexico\"\n                            },\n                            {\n                                \"object\": \"Dessert\",\n                                \"property\": \"course\",\n                                \"subject\": \"Bionico\"\n                            },\n                            {\n                                \"object\": \"Guadalajara\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bionico\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id21\"\n            }\n        },\n        {\n            \"791\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Patrick McLoughlin is the leader of Derbyshire Dales which is in the County of Derbyshire. Bakewell tart, a variation of Bakewell pudding, comes from the Derbyshire Dales and contains frangipane.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Patrick McLoughlin is a leader in the Derbyshire Dales (in the county of Derbyshire) where the Bakewell tart is a popular dish. This dish contains frangipane and has a variant called Bakewell pudding.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Patrick McLoughlin is a leader in Derbyshire Dales in the County of Derbyshire The frangipane Bakewell tart, a variation of Bakewell pudding, is popular in the Derbyshire Dales area.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Patrick_McLoughlin\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Bakewell_tart\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Derbyshire_Dales\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakewell_tart\"\n                    },\n                    {\n                        \"object\": \"Derbyshire\",\n                        \"property\": \"administrativeCounty\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Frangipane\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakewell_tart\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Patrick_McLoughlin\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Derbyshire_Dales\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakewell_tart\"\n                            },\n                            {\n                                \"object\": \"Derbyshire\",\n                                \"property\": \"subdivisionName\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Frangipane\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakewell_tart\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id22\"\n            }\n        },\n        {\n            \"792\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Patrick McLoughlin is the leader of Derbyshire Dales which is part of Derbyshire. Coming from the Derbyshire Dales region is Bakewell tart (a variation of Bakewell pudding) which has Frangipane as an ingredient.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Derbyshire Dales, whose leader is Patrick McLoughlin, is part of Derbyshire and is where Bakewell tarts come from. Bakewell tart is a variation of Bakewell pudding and one of the ingredients is frangipane.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Frangipane -based dessert Bakewell Tart (or pudding) is popular in the Derbyshire Dales area of Derbyshire where Patrick McLoughlin is a leader.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Patrick_McLoughlin\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Bakewell_tart\",\n                        \"property\": \"dishVariation\",\n                        \"subject\": \"Bakewell_pudding\"\n                    },\n                    {\n                        \"object\": \"Derbyshire_Dales\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakewell_tart\"\n                    },\n                    {\n                        \"object\": \"Derbyshire\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Derbyshire_Dales\"\n                    },\n                    {\n                        \"object\": \"Frangipane\",\n                        \"property\": \"ingredient\",\n                        \"subject\": \"Bakewell_tart\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Patrick_McLoughlin\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Bakewell_tart\",\n                                \"property\": \"hasVariant\",\n                                \"subject\": \"Bakewell_pudding\"\n                            },\n                            {\n                                \"object\": \"Derbyshire_Dales\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakewell_tart\"\n                            },\n                            {\n                                \"object\": \"Derbyshire\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Derbyshire_Dales\"\n                            },\n                            {\n                                \"object\": \"Frangipane\",\n                                \"property\": \"ingredient\",\n                                \"subject\": \"Bakewell_tart\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id23\"\n            }\n        },\n        {\n            \"793\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Jakarta is the capital of Indonesia where the leader is Jusuf Kalla, they speak Indonesian and eat bakso.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso is a dish from the country of Indonesia, which leader is Jusuf Kalla, the capital is Jakarta and the language is Indonesian.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bakso is a food and a dish found in Indonesia, where the capital is Jakarta, the language is Indonesia and Jusuf Kalla is the leader.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Jakarta\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Indonesian_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Jusuf_Kalla\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Indonesia\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"region\",\n                        \"subject\": \"Bakso\"\n                    },\n                    {\n                        \"object\": \"Indonesia\",\n                        \"property\": \"country\",\n                        \"subject\": \"Bakso\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Jakarta\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Indonesian_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Jusuf_Kalla\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Indonesia\"\n                            },\n                            {\n                                \"object\": \"Indonesia\",\n                                \"property\": \"region\",\n                                \"subject\": \"Bakso\"\n                            },\n                            {\n                                \"object\": \"\\\"Indonesia, derived from Chinese meat ball\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Bakso\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id24\"\n            }\n        },\n        {\n            \"794\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Italy is the country Amatriciana sauce comes from and people there are called Italians. The capital is Rome and the leaders are Matteo Renzi and Sergio Mattarella.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Rome is the capital of Italy where the leaders are Matteo Renzi and Sergio Mattarella. Amatriciana sauce can be found there and people are called Italians.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Amatriciana sauce is from Italy, where Rome is the capital and where Italians live. Leaders of the country include Sergio Mattarella and Matteo Renzi.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Italians\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Rome\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Matteo_Renzi\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Italy\"\n                    },\n                    {\n                        \"object\": \"Italy\",\n                        \"property\": \"country\",\n                        \"subject\": \"Amatriciana_sauce\"\n                    },\n                    {\n                        \"object\": \"Sergio_Mattarella\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Italy\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Italians\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Matteo_Renzi\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Italians\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Rome\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Matteo_Renzi\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Italy\"\n                            },\n                            {\n                                \"object\": \"Italy\",\n                                \"property\": \"country\",\n                                \"subject\": \"Amatriciana_sauce\"\n                            },\n                            {\n                                \"object\": \"Sergio_Mattarella\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Italy\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id25\"\n            }\n        },\n        {\n            \"795\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Halimah Yacob is the leader in Singapore where English is spoken and the dish Ayam penyet is from. It is also from Java, a country where one of the ethnic groups are the Baduy.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baduy is an ethnic group in Java where Ayam penyet is from. This dish is also from Singapore where English is spoken and Halimah Yacob is the leader.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ayam penyet originates from Java where Baduy people are one of the ethnic groups.The food can also be found in Singapore where English is mainly spoken and Halimah Yacob is the president.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Baduy\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Java\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Halimah_Yacob\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"region\",\n                        \"subject\": \"Ayam_penyet\"\n                    },\n                    {\n                        \"object\": \"Java\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ayam_penyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Baduy\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Java\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"region\",\n                                \"subject\": \"Ayam_penyet\"\n                            },\n                            {\n                                \"object\": \"Java\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ayam_penyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id26\"\n            }\n        },\n        {\n            \"796\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Philippines is the country the dish Batchoy comes from. The llocano and Igorot peoples are ethnic groups from the Philippines, where languages spoken include Arabic and Phillippine English.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Batchoy is eaten in the Philippines, languages spoken there include English (official language) and also Arabic. Ethnic groups there include the Ilocano and Igorot peoples.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ilocano_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Philippines\"\n                    },\n                    {\n                        \"object\": \"Arabic\",\n                        \"property\": \"language\",\n                        \"subject\": \"Philippines\"\n                    },\n                    {\n                        \"object\": \"Philippine_English\",\n                        \"property\": \"officialLanguage\",\n                        \"subject\": \"Philippines\"\n                    },\n                    {\n                        \"object\": \"Philippines\",\n                        \"property\": \"country\",\n                        \"subject\": \"Batchoy\"\n                    },\n                    {\n                        \"object\": \"Igorot_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Philippines\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ilocano_people\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Philippines\"\n                            },\n                            {\n                                \"object\": \"Arabic\",\n                                \"property\": \"language\",\n                                \"subject\": \"Philippines\"\n                            },\n                            {\n                                \"object\": \"Philippine_English\",\n                                \"property\": \"officialLanguage\",\n                                \"subject\": \"Philippines\"\n                            },\n                            {\n                                \"object\": \"Philippines\",\n                                \"property\": \"country\",\n                                \"subject\": \"Batchoy\"\n                            },\n                            {\n                                \"object\": \"Igorot_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Philippines\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id27\"\n            }\n        },\n        {\n            \"797\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Available nationwide in Indonesia and Singapore, Beef kway teow is a dish which comes from Singapore, where English is spoken. It is also where two of the leaders are Halimah Yacob and Tony Tan.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Just like in Indonesia, Beef kway teow is popular nationwide is Singapore (where it comes from). In this country, English is spoken and two of the leaders are Halimah Yacob and Tony Tan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Beef kway teow is a popular dish in Singapore and Indonesia. Tony Tan and Halimah Yacob are leaders in Singapore where English is spoken.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Singapore\",\n                        \"property\": \"country\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"\\\"Nationwide in Singapore and Indonesia\\\"\",\n                        \"property\": \"region\",\n                        \"subject\": \"Beef_kway_teow\"\n                    },\n                    {\n                        \"object\": \"Tony_Tan\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    },\n                    {\n                        \"object\": \"Halimah_Yacob\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Singapore\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"\\\"Nationwide in Singapore and Indonesia\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Tony_Tan\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Singapore\"\n                            },\n                            {\n                                \"object\": \"Singapore\",\n                                \"property\": \"country\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"\\\"Nationwide in Singapore and Indonesia\\\"@en\",\n                                \"property\": \"region\",\n                                \"subject\": \"Beef_kway_teow\"\n                            },\n                            {\n                                \"object\": \"Halimah_Yacob\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Singapore\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id28\"\n            }\n        },\n        {\n            \"798\": {\n                \"category\": \"Food\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco is a dish from Spain, where the currency is the euro, the leader is Felipe VI, the language spoken is Spanish and the people that live there are called Spaniards.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ajoblanco is a food found in Spanish speaking and Felipe VI led Spain. It is also home to the Spaniards and can be purchased with the Euro.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Felipe_VI_of_Spain\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Spain\"\n                    },\n                    {\n                        \"object\": \"Spanish_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Spain\"\n                    },\n                    {\n                        \"object\": \"Euro\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Spain\"\n                    },\n                    {\n                        \"object\": \"Spain\",\n                        \"property\": \"country\",\n                        \"subject\": \"Ajoblanco\"\n                    },\n                    {\n                        \"object\": \"Spaniards\",\n                        \"property\": \"demonym\",\n                        \"subject\": \"Spain\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Felipe_VI_of_Spain\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Spanish_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Euro\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Spain\"\n                            },\n                            {\n                                \"object\": \"Spain\",\n                                \"property\": \"country\",\n                                \"subject\": \"Ajoblanco\"\n                            },\n                            {\n                                \"object\": \"Spaniards\",\n                                \"property\": \"demonym\",\n                                \"subject\": \"Spain\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id29\"\n            }\n        },\n        {\n            \"799\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 11th Mississippi Infantry monument is located in the municipality of Gettysburg, Adams County, Pennsylvania. Adams County is east of Franklin County and south of Cumberland County. Maryland's Carrol county is located to the southeast.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 11th Mississippi Infantry Monument is placed in the municipality of Gettysburg, Adams County, Pennsylvania. To the west of Adams County lies Franklin County and to the north, Cumberland County, both of these are in Pennsylvania. Carrol County Maryland is southeast of Adams County.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 11th Mississippi Infantry monument is located in Gettysburg, Adams County, Pennsylvania. Adams County is located east of Franklin County and south of Cumberland County. Maryland's Carrol County is located to the southeast.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Franklin_County,_Pennsylvania\",\n                        \"property\": \"has to its west\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Carroll_County,_Maryland\",\n                        \"property\": \"has to its southeast\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Cumberland_County,_Pennsylvania\",\n                        \"property\": \"has to its north\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Gettysburg,_Pennsylvania\",\n                        \"property\": \"municipality\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Adams_County,_Pennsylvania\",\n                        \"property\": \"location\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Franklin_County,_Pennsylvania\",\n                                \"property\": \"west\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Carroll_County,_Maryland\",\n                                \"property\": \"southeast\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Cumberland_County,_Pennsylvania\",\n                                \"property\": \"north\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Gettysburg,_Pennsylvania\",\n                                \"property\": \"municipality\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Adams_County,_Pennsylvania\",\n                                \"property\": \"region\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"800\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The capital of Azerbaijan is Baku and the leader and Prime Minister of Azerbaijan is called Artur Rasizade. The Baku Turkish Martyr's Memorial is located in Azerbaijan and the legislature is known as the National Assembly.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Prime Minister of Azerbaijan (capital Baku) is the official title of the leader whose name is Artur Rasizade. Baku Turkish Martyrs' Memorial is located in Azerbaijan and the legislature of the country is the National Assembly.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Baku\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"Prime_Minister_of_Azerbaijan\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"National_Assembly_(Azerbaijan)\",\n                        \"property\": \"legislature\",\n                        \"subject\": \"Azerbaijan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Baku\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"Prime_Minister_of_Azerbaijan\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"National_Assembly_(Azerbaijan)\",\n                                \"property\": \"legislature\",\n                                \"subject\": \"Azerbaijan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"801\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial in Azerbaijan is dedicated to the Ottoman Army Soldiers killed in the Battle of Baku and was designed by Huseyin Butuner and Hilmi Guner. The monument is also known by the native name Türk Şehitleri Anıtı. Azerbaijan's leader is Artur Rasizade.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial ( native name : \\\"Türk Sehitleri Aniti\\\") in Azerbaijan has been dedicated to Ottoman Army soldiers killed in the Battle of Baku and it was designed by Hüseyin Bütüner and Hilmi Güner.Artur Rasizade is the leader of Azerbaijan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyr's Memorial in Azerbaijan is dedicated to the Ottoman Army soldiers killed in the Battle of Baku. The native name of the memorial is \\\"Türk Sehitleri Aniti\\\" and was designed by Hüseyin Bütüner and Hilmi Güner. The leader of Turkey is Artur Rasizade.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Türk Şehitleri Anıtı\\\"\",\n                        \"property\": \"nativeName\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Türk Şehitleri Anıtı\\\"@en\",\n                                \"property\": \"nativeName\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"802\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Huseyin Butuner and Hilmi Guner designed the red granite and white marble Baku Turkish Martyrs memorial in Azerbaijan. It is also known as Turk Sehitleri Aniti and is dedicated to the soldiers of the Ottoman army killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is located in Azerbaijan, where it is known as \\\"Türk Sehitleri Aniti\\\". The memorial is dedicated to Ottoman Army soldiers who were killed in the Battle of Baku. It was designed by Hüseyin Bütüner and Hilmi Güner, and constructed out of red granite and white marble.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku Turkish Martyrs' Memorial, made of red granite and white marble, is dedicated to the Ottoman Army soldiers killed in the Battle of Baku and was designed by Huseyin Butuner and Hilmi Guner. The memorial is known in Turkish as Turk Sehitleri Aniti and can be found in Azerbaijan.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Türk Şehitleri Anıtı\\\"\",\n                        \"property\": \"nativeName\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Red granite and white marble\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Türk Şehitleri Anıtı\\\"@en\",\n                                \"property\": \"nativeName\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Türk Şehitleri Anıtı\\\"@en\",\n                                \"property\": \"nativeName\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"803\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial, designed by Huseyin Butuner and Hilmi Guner and made of granite and white marble, is dedicated to the Ottoman Army Soldiers killed in the Battle of Baku. The memorial is found in Azerbaijan whose leader is the Prime Minister.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial in Azerbaijan is dedicated to the Ottoman Army soldiers killed in the Battle of Baku. It was designed by Hüseyin Bütüner and Hilmi Güner and is built using Red granite and white marble. Azerbaijan's leader is the Prime Minister of Azerbaijan.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyr's Memorial, designed by Hüseyin Bütüner and Hilmi Güner, was constructed using red granite and white marble. It is located in Baku, Azerbaijan, which is led by a Prime Minister. This Memorial is dedicated to the Ottoman Army soldiers killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Red granite and white marble\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Prime_Minister_of_Azerbaijan\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Prime_Minister_of_Azerbaijan\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"804\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Gordon Marsden is the leader of Blackpool where AFC Blackpool are located. Their manager is Stuart Parker who is a member of Chesterfield FC and plays for KV Mechelen.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Gordon Marsden is the leader of Blackpool where AFC Blackpool is located. The club is managed by Stuart Parker who is part of the KV Mechelen club and a member of Chesterfield FC.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Stuart_Parker_(footballer)\",\n                        \"property\": \"manager\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    },\n                    {\n                        \"object\": \"KV_Mechelen\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    },\n                    {\n                        \"object\": \"Chesterfield_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Stuart_Parker_(footballer)\"\n                    },\n                    {\n                        \"object\": \"Gordon_Marsden\",\n                        \"property\": \"leader\",\n                        \"subject\": \"Blackpool\"\n                    },\n                    {\n                        \"object\": \"Blackpool\",\n                        \"property\": \"ground\",\n                        \"subject\": \"A.F.C._Blackpool\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Stuart_Parker_(footballer)\",\n                                \"property\": \"manager\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            },\n                            {\n                                \"object\": \"KV_Mechelen\",\n                                \"property\": \"team\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            },\n                            {\n                                \"object\": \"Chesterfield_F.C.\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Stuart_Parker_(footballer)\"\n                            },\n                            {\n                                \"object\": \"Gordon_Marsden\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Blackpool\"\n                            },\n                            {\n                                \"object\": \"Blackpool\",\n                                \"property\": \"ground\",\n                                \"subject\": \"A.F.C._Blackpool\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"805\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Olympiacos F.C. were past champions in the Greece Superleague, the league AEK Athens FC compete in. Their manager is Gus Poyet, whose club is Real Zaragoza even though he played for Chelsea F.C.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Gus Poyet is the manager of AEK Athens F.C. who play in the Superleague of Greece ( which has Olympiacos FC as previous champions). Poyet previously played for Chelsea FC and is in the Real Zaragoza club.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Previous champions of the Superleague Greece are Olympiacos FC. AEK Athens FC also compete in the league and they are managed by Gus Poyet who previously played for Chelsea FC and whose club is Real Zaragoza.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Superleague_Greece\",\n                        \"property\": \"league\",\n                        \"subject\": \"AEK_Athens_F.C.\"\n                    },\n                    {\n                        \"object\": \"Olympiacos_F.C.\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Superleague_Greece\"\n                    },\n                    {\n                        \"object\": \"Gus_Poyet\",\n                        \"property\": \"manager\",\n                        \"subject\": \"AEK_Athens_F.C.\"\n                    },\n                    {\n                        \"object\": \"Real_Zaragoza\",\n                        \"property\": \"club\",\n                        \"subject\": \"Gus_Poyet\"\n                    },\n                    {\n                        \"object\": \"Chelsea_F.C.\",\n                        \"property\": \"club\",\n                        \"subject\": \"Gus_Poyet\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Superleague_Greece\",\n                                \"property\": \"league\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"Olympiacos_F.C.\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Superleague_Greece\"\n                            },\n                            {\n                                \"object\": \"Gus_Poyet\",\n                                \"property\": \"manager\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"Real_Zaragoza\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Gus_Poyet\"\n                            },\n                            {\n                                \"object\": \"Chelsea_F.C.\",\n                                \"property\": \"team\",\n                                \"subject\": \"Gus_Poyet\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Superleague_Greece\",\n                                \"property\": \"league\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"Olympiacos_F.C.\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Superleague_Greece\"\n                            },\n                            {\n                                \"object\": \"Gus_Poyet\",\n                                \"property\": \"manager\",\n                                \"subject\": \"AEK_Athens_F.C.\"\n                            },\n                            {\n                                \"object\": \"Real_Zaragoza\",\n                                \"property\": \"team\",\n                                \"subject\": \"Gus_Poyet\"\n                            },\n                            {\n                                \"object\": \"Chelsea_F.C.\",\n                                \"property\": \"clubs\",\n                                \"subject\": \"Gus_Poyet\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"806\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Estádio Municipal Coaracy da Mata Fonseca is the name of the ground of Agremiação Sportiva Arapiraquense. It is located in Alagoas. Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league from Brazil. The Vila Nova Futebol Clube were champions at the Série C.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vila Nova Futebol Clube have been champions of Campeonato Brasileiro Série C. from Brazil in which Agremiação Sportiva Arapiraquense also play. This latter team have their ground at Estádio Municipal Coaracy da Mata Fonseca which is located in Alagoas.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Llocated in Alagoas, Estádio Municipal Coaracy da Mata Fonseca is the name of the ground of Agremiação Sportiva Arapiraquense. They play in the Campeonato Brasileiro Série C league, which is from Brazil, and the champions of which have been Vila Nova Futebol Clube.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"league\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Brazil\",\n                        \"property\": \"country\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    },\n                    {\n                        \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Alagoas\",\n                        \"property\": \"location\",\n                        \"subject\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\"\n                    },\n                    {\n                        \"object\": \"Vila_Nova_Futebol_Clube\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"country\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            },\n                            {\n                                \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Alagoas\",\n                                \"property\": \"location\",\n                                \"subject\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"807\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vila Nova Futebol Clube have been champions of Campeonato Brasileiro Série C. league in Brazil. Agremiação Sportiva Arapiraquense also play in the league and have their home ground at Estádio Municipal Coaracy da Mata Fonseca in Arapiraca.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league (in Brazil), which has been won by Vila Nova Futebol Clube. Agremiacao Sportiva Arapiraquense's ground is the Estadio Minicipal Coaracy da Mata Fonseca, which is located in Arapiraca.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league in Brazil. Vila Nova Futebol Clube are the champions of Serie C. Estádio Municipal Coaracy da Mata Fonseca (Arapiraca)is the name of the ground of Agremiação Sportiva Arapiraquense.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"league\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Brazil\",\n                        \"property\": \"country\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    },\n                    {\n                        \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                        \"property\": \"ground\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Arapiraca\",\n                        \"property\": \"location\",\n                        \"subject\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\"\n                    },\n                    {\n                        \"object\": \"Vila_Nova_Futebol_Clube\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"country\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            },\n                            {\n                                \"object\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\",\n                                \"property\": \"ground\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Arapiraca\",\n                                \"property\": \"location\",\n                                \"subject\": \"Estádio_Municipal_Coaracy_da_Mata_Fonseca\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"808\": {\n                \"category\": \"SportsTeam\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Vila Nova Futebol Clube were champions at the Campeonato Brasileiro Série C. in Brazil. Agremiação Sportiva Arapiraquense who also play in the league have 17000 members and are managed by Vica.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Agremiação Sportiva Arapiraquense play in the Campeonato Brasileiro Série C league in Brazil, which has been won by Vila Nova Futebol Clube. Agremiacao Sportiva Arapiraquense's ground can hold 17000 fans and the team is managed by Vica.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Vila Nova Futebol Clube have been champions of Campeonato Brasileiro Série C, which is from Brazil. It is in this league that Agremiação Sportiva Arapiraquense play in. They are managed by Vica, and have17000 members.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Campeonato_Brasileiro_Série_C\",\n                        \"property\": \"league\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Brazil\",\n                        \"property\": \"country\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    },\n                    {\n                        \"object\": \"Vica\",\n                        \"property\": \"manager\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"17000\",\n                        \"property\": \"numberOfMembers\",\n                        \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                    },\n                    {\n                        \"object\": \"Vila_Nova_Futebol_Clube\",\n                        \"property\": \"champions\",\n                        \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"country\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            },\n                            {\n                                \"object\": \"\\\"17000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Vica\",\n                                \"property\": \"manager\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Campeonato_Brasileiro_Série_C\",\n                                \"property\": \"league\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Brazil\",\n                                \"property\": \"country\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            },\n                            {\n                                \"object\": \"Vica\",\n                                \"property\": \"manager\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"17000\",\n                                \"property\": \"capacity\",\n                                \"subject\": \"Agremiação_Sportiva_Arapiraquense\"\n                            },\n                            {\n                                \"object\": \"Vila_Nova_Futebol_Clube\",\n                                \"property\": \"champions\",\n                                \"subject\": \"Campeonato_Brasileiro_Série_C\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"809\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio in Mendrisio, Switzerland had 100 academic staff and 600 students. Its dean is Mario Botta.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Dean of the Accademia di Architettura di Mendrisio in the city of Mendrisio, Switzerland is Mario Botta. There are 600 students and 100 academic staff at the Accademia.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio in Switzerland has a staff of 100 and a student population of 600. The dean is Mario Botta.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Switzerland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Mario_Botta\",\n                        \"property\": \"dean\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Mendrisio\",\n                        \"property\": \"city\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"600\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"100\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Switzerland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Mario_Botta\",\n                                \"property\": \"dean\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Mendrisio\",\n                                \"property\": \"city\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"\\\"600\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfStudents\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"\\\"100\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"810\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio is located in Ticino, Switzerland. It was established in 1996 and it has 600 students. The leader of Switzerland is Johann Schneider-Ammann.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Switzerland is Johann Schneider-Ammann. The country is the location of the Accademia di Architettura di Mendrisio in Ticino which was established in 1996 and has 600 students.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio , which has 600 students, was founded in 1996 in Ticino, Switzerland. The leader of Switzerland is Johann Schneider - Amman.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Switzerland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"600\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"1996\",\n                        \"property\": \"established\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Johann_Schneider-Ammann\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Switzerland\"\n                    },\n                    {\n                        \"object\": \"Ticino\",\n                        \"property\": \"location\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Switzerland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"600\",\n                                \"property\": \"students\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"1996\",\n                                \"property\": \"established\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Johann_Schneider-Ammann\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Switzerland\"\n                            },\n                            {\n                                \"object\": \"Ticino\",\n                                \"property\": \"canton\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Switzerland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"600\",\n                                \"property\": \"students\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"1996\",\n                                \"property\": \"established\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Ticino\",\n                                \"property\": \"canton\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Johann_Schneider-Ammann\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Switzerland\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"811\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology is affiliated with the Visvesvaraya Technological University and is located in Bangalore, Karnataka. To its northeast is Telangana and to its west is the Arabian Sea.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology in Balgalore, Karnataka is east of the Arabian Sea and southwest of Telangana. It is affiliated with the Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Karnataka state which has the Arabian Sea to it's west and Telangana to it' s northwest is also home to the Acharya Institute of Technology. The Institute is located in the city of Bangalore and is affiliated with the Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Telangana\",\n                        \"property\": \"has to its northeast\",\n                        \"subject\": \"Karnataka\"\n                    },\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Arabian_Sea\",\n                        \"property\": \"has to its west\",\n                        \"subject\": \"Karnataka\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Telangana\",\n                                \"property\": \"northeast\",\n                                \"subject\": \"Karnataka\"\n                            },\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Arabian_Sea\",\n                                \"property\": \"west\",\n                                \"subject\": \"Karnataka\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"812\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology is located at In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090, India. The School was established in 2000 and has 700 Postgraduate Students.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology was established in 2000 and is based in the city of Bangalore in India. It currently has 700 Postgraduate Students and it's exact location is ' In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore - 560090.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"700\",\n                        \"property\": \"numberOfPostgraduateStudents\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"700\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfPostgraduateStudents\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"813\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology was founded by Kempe Gowda I in Bangalore in the state of Karnataka. It has the Arabian Sea to its west and is affiliated with Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is located in Bangalore, Karnataka, east of the Arabian Sea. The Institute is affiliated with Visvesvaraya Technological University. Bangalore was founded by Kempe Gowda.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Kempe_Gowda_I\",\n                        \"property\": \"founder\",\n                        \"subject\": \"Bangalore\"\n                    },\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Arabian_Sea\",\n                        \"property\": \"has to its west\",\n                        \"subject\": \"Karnataka\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Kempe_Gowda_I\",\n                                \"property\": \"founder\",\n                                \"subject\": \"Bangalore\"\n                            },\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Arabian_Sea\",\n                                \"property\": \"west\",\n                                \"subject\": \"Karnataka\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"814\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 1 Decembrie 1918 University is in Alba Iulia, Romania. The country's capital is Bucharest and the prime minister is Klaus Iohannis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1 Decembrie 1918 University is in Alba Iulia, Romania. Bucharest is the capital of Romania and Klaus Iohannis is the country's Prime Minister.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1 Decembrie 1918 University is located in the city of Alba lulia in Romania. The capital of Romania is Bucharest and the Prime Minister is Klaus lohannis.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Prime_Minister_of_Romania\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Romania\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alba_Iulia\"\n                    },\n                    {\n                        \"object\": \"Klaus_Iohannis\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Bucharest\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Alba_Iulia\",\n                        \"property\": \"city\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Prime_Minister_of_Romania\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alba_Iulia\"\n                            },\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Bucharest\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Alba_Iulia\",\n                                \"property\": \"city\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"815\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at Aarhus University in Denmark is affiliated with the European University Association. It has 16,000 students, 737 employees. and was established in 1928.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University in Denmark was established in 1928. It is affiliated with the European University Association and has a staff compliment of 737. 16000 students attend the university currently.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University was established in Denmark in 1928. The School is affiliated with the European University Association and has 16,000 students and 737 academic staff.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"European_University_Association\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"16000\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"737\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"country\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"1928\",\n                        \"property\": \"established\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"16000\",\n                                \"property\": \"students\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"\\\"737\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"\\\"16000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfStudents\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"16000\",\n                                \"property\": \"students\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"16000\",\n                                \"property\": \"students\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"816\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Faber and Faber are the publishers of The Secret Scripture, a sequel to A Long Long Way. That book comes from Ireland which is located in Europe and where there is an ethnic group of white people.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ireland, where the white people are an ethnic group, is situated within Europe. The book A Long Long Way was written in Ireland and published by Faber and Faber. The sequel to the book is known as The Secret Scripture.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ireland is a country within Europe and the ethnic group are white people. The novel A Long Long Way was written in Ireland and was followed by The Secret Scripture which was published by Faber and Faber.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"White_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Ireland\"\n                    },\n                    {\n                        \"object\": \"Faber_and_Faber\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"The_Secret_Scripture\"\n                    },\n                    {\n                        \"object\": \"Europe\",\n                        \"property\": \"location\",\n                        \"subject\": \"Ireland\"\n                    },\n                    {\n                        \"object\": \"The_Secret_Scripture\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"White_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Ireland\"\n                            },\n                            {\n                                \"object\": \"Faber_and_Faber\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"The_Secret_Scripture\"\n                            },\n                            {\n                                \"object\": \"Europe\",\n                                \"property\": \"location\",\n                                \"subject\": \"Ireland\"\n                            },\n                            {\n                                \"object\": \"The_Secret_Scripture\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"817\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The ethnic group of Ireland is White people and is where A Long Long Way comes from. It was preceded by Annie Dunne and followed by The Secret Scripture which is published by Faber and Faber.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"An ethnic group of Ireland is white people where A Long Long Way comes from. It was preceded by Annie Dunne preceded and followed by The Secret Scripture which is published by Faber and Faber.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Annie_Dunne\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"Ireland\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    },\n                    {\n                        \"object\": \"White_people\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Ireland\"\n                    },\n                    {\n                        \"object\": \"Faber_and_Faber\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"The_Secret_Scripture\"\n                    },\n                    {\n                        \"object\": \"The_Secret_Scripture\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"A_Long_Long_Way\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Annie_Dunne\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"Ireland\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            },\n                            {\n                                \"object\": \"White_people\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"Ireland\"\n                            },\n                            {\n                                \"object\": \"Faber_and_Faber\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"The_Secret_Scripture\"\n                            },\n                            {\n                                \"object\": \"The_Secret_Scripture\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"A_Long_Long_Way\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"818\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil is an Australian novel and the sequel to Aenir and Castle. It was later followed by Into Battle and The Violet Keystone.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Viel is an Austrlian novel and the sequel to Aenir and Castle. It was followed by Into Battle and The Violet Keystone.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Above the Veil is an Austrlian novel and the sequel to Aenir and Castle. It was followed by Into the Battle and The Violet Keystone.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Australians\",\n                        \"property\": \"country\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"The_Violet_Keystone\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"Into_Battle_(novel)\"\n                    },\n                    {\n                        \"object\": \"Into_Battle_(novel)\",\n                        \"property\": \"followedBy\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"Aenir\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"Above_the_Veil\"\n                    },\n                    {\n                        \"object\": \"Castle_(novel)\",\n                        \"property\": \"precededBy\",\n                        \"subject\": \"Aenir\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Australians\",\n                                \"property\": \"country\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"The_Violet_Keystone\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"Into_Battle_(novel)\"\n                            },\n                            {\n                                \"object\": \"Into_Battle_(novel)\",\n                                \"property\": \"followedBy\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Castle_(novel)\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Into_Battle_(novel)\",\n                                \"property\": \"subsequentWork\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Australians\",\n                                \"property\": \"country\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"The_Violet_Keystone\",\n                                \"property\": \"followedBy\",\n                                \"subject\": \"Into_Battle_(novel)\"\n                            },\n                            {\n                                \"object\": \"Aenir\",\n                                \"property\": \"precededBy\",\n                                \"subject\": \"Above_the_Veil\"\n                            },\n                            {\n                                \"object\": \"Castle_(novel)\",\n                                \"property\": \"previousWork\",\n                                \"subject\": \"Aenir\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"819\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University is in Ithaca, New York and is nicknamed Cornell Big Red. They are the publisher of Administrative Science Quarterly and are affiliated with the Association of American Universities.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University is in Ithaca, New York and their nickname is Cornell Big Red. They are the publisher of Administrative Science Quarterly and are affiliated with the Association of American Universities.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell Unversity is in Ithaca, New York and their nickname is Cornell Big Red. They are the publisher of the Administrative Science Quarterly and are affiliated with the Association of American Universities.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cornell_University\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    },\n                    {\n                        \"object\": \"Cornell_Big_Red\",\n                        \"property\": \"nickname\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"Association_of_American_Universities\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"New_York\",\n                        \"property\": \"state\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"Ithaca,_New_York\",\n                        \"property\": \"city\",\n                        \"subject\": \"Cornell_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cornell_University\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"Cornell_Big_Red\",\n                                \"property\": \"nickname\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"Association_of_American_Universities\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"New_York\",\n                                \"property\": \"state\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"Ithaca,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Cornell_University\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"820\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Administrative Science Quarterly is published by Cornell University, Ithaca, in the state of New York. Cornell University (nicknamed 'Cornell Big Red') is affiliated with the Association of Public and Land Grant Universities.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell Big Red is the nickname of Cornell University which is affiliated with the Association of Public and Land grant Universities. The University is in the city of Ithaca, New York, New York State and publishes the Administrative Science Quarterly.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Cornell University, of Ithaca, New York, is the publisher of the Administrative Science Quarterly. The University, which has the nickname Cornell Big Red , is affiliated with the Association of Public and Land grant Universities.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Cornell_University\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"Administrative_Science_Quarterly\"\n                    },\n                    {\n                        \"object\": \"Cornell_Big_Red\",\n                        \"property\": \"nickname\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"Association_of_Public_and_Land-grant_Universities\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"New_York\",\n                        \"property\": \"state\",\n                        \"subject\": \"Cornell_University\"\n                    },\n                    {\n                        \"object\": \"Ithaca,_New_York\",\n                        \"property\": \"city\",\n                        \"subject\": \"Cornell_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Cornell_University\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"Administrative_Science_Quarterly\"\n                            },\n                            {\n                                \"object\": \"Cornell_Big_Red\",\n                                \"property\": \"nickname\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"Association_of_Public_and_Land-grant_Universities\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"New_York\",\n                                \"property\": \"state\",\n                                \"subject\": \"Cornell_University\"\n                            },\n                            {\n                                \"object\": \"Ithaca,_New_York\",\n                                \"property\": \"city\",\n                                \"subject\": \"Cornell_University\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"821\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The United States is home to the ethnic group of African Americans and is lead by Barack Obama. The country is the origin of the book Alcatraz Versus the Evil Librarians. This book was written in English, as spoken in Great Britain.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians is from the United States and is written in English which is also spoken in Great Britain. The leader of the US is Barack Obama and African Americans are one of the ethnic groups.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"822\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is from the United States which like Great Britain speaks English. The capital of the US is Washington D.C and one ethnic group is the African Americans.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp originates in the United States where like in Great Britain, English is also spoken. Washington DC is the capital of the US and one ethnic group is the African Americans.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A severed Wasp is a novel from the United States where English is largely spoken (as in Great Britain). The capital of the US is Washington D.C. and African Americans are an ethnic group there.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Washington,_D.C.\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Washington,_D.C.\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"823\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"English is spoken in Great Britain and the United States where Joe Biden is leader, African Americans are an ethnic group and Alcatraz Versus the Evil Librarians is from there.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians is a book from The United States. In that country the majority language is English (as in Great Britain). A leading politician of the US is Joe Biden and African Americans are an ethnic group there.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alcatraz Versus the Evil Librarians is from The United States. English is spoken there (as in Great Britain) and Joe Biden is a leading politician there. African Americans are an ethnic group in the US.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Joe_Biden\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                    },\n                    {\n                        \"object\": \"African_Americans\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Joe_Biden\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"Alcatraz_Versus_the_Evil_Librarians\"\n                            },\n                            {\n                                \"object\": \"African_Americans\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"824\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"David Cameron and Elizabeth II are leaders in the United Kingdom. The country, which uses the English language has the capital city of London and is where the AIDS journal originates.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal was published in the United Kingdom, where English is spoken. The leader of the UK is Elizabeth II, and another leader is David Cameron. English is spoken in the United Kingdom, where the capital is London.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AIDS journal is from the United Kingdom, which capital is London and the language is English. The leaders of that country are David Cameron and Elizabeth II.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"David_Cameron\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"London\",\n                        \"property\": \"capital\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"London\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"London\",\n                                \"property\": \"capital\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"825\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leaders of the United Kingdom are Elizabeth II and David Cameron. The AIDS journal is published in the United Kingdom by Lippincott, Williams & Wilkins, whose parent company is Wolters Kluwer.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AIDS journal was published in the United Kingdom where Elizabeth II and David Cameron are leaders. The journal was published by Lippincott Williams & Wilkins whose parent company is Wolters Kluwer.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Elizabeth_II\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"David_Cameron\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_Kingdom\"\n                    },\n                    {\n                        \"object\": \"United_Kingdom\",\n                        \"property\": \"country\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Lippincott_Williams_&_Wilkins\",\n                        \"property\": \"publisher\",\n                        \"subject\": \"AIDS_(journal)\"\n                    },\n                    {\n                        \"object\": \"Wolters_Kluwer\",\n                        \"property\": \"parentCompany\",\n                        \"subject\": \"Lippincott_Williams_&_Wilkins\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Wolters_Kluwer\",\n                                \"property\": \"parentCompany\",\n                                \"subject\": \"Lippincott_Williams_&_Wilkins\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"David_Cameron\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_Kingdom\"\n                            },\n                            {\n                                \"object\": \"United_Kingdom\",\n                                \"property\": \"country\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Lippincott_Williams_&_Wilkins\",\n                                \"property\": \"publisher\",\n                                \"subject\": \"AIDS_(journal)\"\n                            },\n                            {\n                                \"object\": \"Wolters_Kluwer\",\n                                \"property\": \"parentCompany\",\n                                \"subject\": \"Lippincott_Williams_&_Wilkins\"\n                            },\n                            {\n                                \"object\": \"Elizabeth_II\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_Kingdom\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"826\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The English language is spoken in Great Britain and A Severed Wasp was written in it even though it comes from the United States. Barack Obama is the leader of the United States where Native Americans are an ethnic group.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is written in English, the language spoken in Great Britain. However, it originates from the United States where the President is Barack Obama and the Native Americans are an ethnic group.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"Native_Americans_in_the_United_States\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"Native_Americans_in_the_United_States\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"827\": {\n                \"category\": \"WrittenWork\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is from the United States, where Barack Obama is the president. English is the main language of the U.S., and is also spoken in Great Britain. Native Americans are one of the national ethnic groups.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"A Severed Wasp is from the United States, where English is spoken (as in Great Britain), and Barack Obama is President. Native Americans are one of the ethnic groups in the U.S.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Barack_Obama\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Great_Britain\",\n                        \"property\": \"spokenIn\",\n                        \"subject\": \"English_language\"\n                    },\n                    {\n                        \"object\": \"English_language\",\n                        \"property\": \"language\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"country\",\n                        \"subject\": \"A_Severed_Wasp\"\n                    },\n                    {\n                        \"object\": \"Native_Americans_in_the_United_States\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"United_States\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Barack_Obama\",\n                                \"property\": \"leader\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Great_Britain\",\n                                \"property\": \"spokenIn\",\n                                \"subject\": \"English_language\"\n                            },\n                            {\n                                \"object\": \"English_language\",\n                                \"property\": \"language\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"country\",\n                                \"subject\": \"A_Severed_Wasp\"\n                            },\n                            {\n                                \"object\": \"Native_Americans_in_the_United_States\",\n                                \"property\": \"ethnicGroup\",\n                                \"subject\": \"United_States\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"5\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"828\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"American Alan Bean was a member of NASA's Apollo 12 which was commanded by David Scott. Bean, who was born in Wheeler, Texas, is now retired.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"American Alan Bean was born in Wheeler, Texas and is retired. He was on the crew of Apollo 12, whose operator was NASA and David Scott was the commander of Apollo 12.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean is originally from Wheeler, Texas and joined NASA where he became a crew member of Apollo 12. David Scott was his commander and Mr Bean is now retired.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"David_Scott\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"Wheeler,_Texas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Bean\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"David_Scott\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"Wheeler,_Texas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Bean\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"829\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The American Alan Shepard was born on November 18, 1923, in New Hampshire. He graduated with an M.A. from NWC in 1957, and was hired by NASA in 1959. Shepard died in California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was an American who went to school at NWC and graduated with an MA in 1957. He was selected by NASA in 1959. He was born in New Hampshire on November 18, 1923 and died in California.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"NWC, M.A. 1957\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"1959\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"NWC, M.A. 1957\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"1959\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"830\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on the 18th of November, 1923 in New Hampshire. He graduated from NWC with a M.A. in 1957 and was selected by NASA in 1959. His death place was California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born November 18th, 1923 in New Hampshire. He graduated from NWC with a M.A. in 1957 and was selected by NASA in 1959. He passed away in California.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"NWC, M.A. 1957\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"1959\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"NWC, M.A. 1957\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"1959\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"831\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on November 18, 1923, in New Hampshire. He served as a crew member on NASA's Apollo 14 mission before retiring on August 1, 1974. Shepard passed away in California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was part of NASA's Apollo 14 crew. He was born in New Hampshire on November 18th, 1923, he retired August 1st, 1974 and died in California.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born in 1923 in New Hampshire . He worked for NASA and became a crew member for Apollo 14 before he retired in August 1974. He later died in California.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_14\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1974-08-01\\\"\",\n                        \"property\": \"dateOfRetirement\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_14\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_14\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1974-08-01\\\"^^xsd:date\",\n                                \"property\": \"dateOfRet\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_14\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"832\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shephard was born in New Hampshire. He was won the American Defence Service Ribbon. The United States Navy also awarded him the Distinguished Service Medal, which is higher than the Department of Commerce Gold Medal. He died on July 21st, 1998.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard (who died on the 21st of July, 1998 in California) was born in New Hampshire. He was awarded American Defense Service ribbon, as well as the Distinguished Service Medal by the United States Navy. The Distinguished Service Medal of the United States Navy is ranked higher than the Department of Commerce Gold Medal.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The U.S Navy awarded Alan Shepard the Distinguished Service Medal, an award that ranks higher than the Department of Commerce Gold Medal. Shepard who was born in New Hampshire and died July 21st, 1998 in California, was also the recipient of the American Defense Service Ribbon.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"American Defense Service ribbon.svg\\\"\",\n                        \"property\": \"was awarded\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1998-07-21\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Department_of_Commerce_Gold_Medal\",\n                        \"property\": \"higher\",\n                        \"subject\": \"Distinguished_Service_Medal_(United_States_Navy)\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                        \"property\": \"awards\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"American Defense Service ribbon.svg\\\"@en\",\n                                \"property\": \"ribbon\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1998-07-21\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Department_of_Commerce_Gold_Medal\",\n                                \"property\": \"higher\",\n                                \"subject\": \"Distinguished_Service_Medal_(United_States_Navy)\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                                \"property\": \"awards\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"833\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a fighter pilot who was born in Glen Ridge, New Jersey om January 20th, 1930. His real name is Edwin E. Aldrin Jr. and after graduating from MIT with a doctorate in Science in 1963, he became a member of Apollo 11.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born in Glen Ridge, NJ on January 20th 1930. His real name was Edwin E. Aldrin, Jr. He graduated from MIT with a Sc.D in 1963. He was a fighter pilot and crew member of Apollo 11.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Edwin E Aldrin Jr, more commonly known as Buzz Aldrin was born in Glen Ridge New Jersey in 1930 and graduated from MIT with a Doctorate in Science in 1963. He was a fighter pilot and a crew member of Apollo 11.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Edwin E. Aldrin, Jr.\\\"\",\n                        \"property\": \"alternativeNames\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"1930-01-20\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Edwin E. Aldrin, Jr.\\\"@en\",\n                                \"property\": \"alternativeNames\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"1930-01-20\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"834\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born in Glen Ridge New Jersey in 1930. He graduated from MIT in 1963 and was hired by NASA in the same year. He was a member of the Apollo 11 crew and is now retired.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Retired Apollo 11 crew member Buzz Aldrin was born January 20 1930 in Glen Ridge, New Jersey. He was selected by NASA in 1963 when he graduated from MIT with a Sc. D.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was originally from Glen Ridge, New Jersey and graduated in 1963 from Massachusetts Institute of Technology. He then went on to join NASA in 1963 and became a member of the Apollo 11 crew before he retired.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"1963\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"1930-01-20\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"1963\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"1930-01-20\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"835\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin graduated from Massachusetts Institute of Technology with a Sc.D in 1963 and became a fighter pilot. He was selected to work for NASA in 1963, and was chosen as a crew member (serving as backup pilot) of the NASA operated Apollo 11 mission.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was a fighter pilot. In 1963, he graduated from Massachusetts Institute of Technology with a doctorate in Science and was selected to be part of NASA's Apollo 11 crew. William Anders was the backup pilot on Apollo 11.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"1963\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"William_Anders\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_11\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_11\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"1963\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"William_Anders\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_11\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_11\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"836\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas as US national and graduated from the University of Texas at Austin. Elliot See has died on the 28th of February 1966 in St Louis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"United States national Elliot See was born in Dallas, and studied at University of Texas at Austin. On the 28th of February, 1996 he passed away in St. Louis.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1966-02-28\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1966-02-28\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"837\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born on 07/23/1927 in Dallas and died in St. Louis. He attended the University of Texas at Austin which is a part of the university of Texas system.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born on 07/23/1927 in Dallas has graduated from the University of Texas which affiliated to the university of Texas System has died and deceased in St Louis.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas on July 23rd 1927. He graduated from the University of Texas at Austin which is affiliated to the university of texas system. Elliot See died in St.Louis.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"University_of_Texas_System\",\n                        \"property\": \"affiliations\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    },\n                    {\n                        \"object\": \"\\\"1927-07-23\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"University_of_Texas_System\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            },\n                            {\n                                \"object\": \"\\\"1927-07-23\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"838\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders was born on October 17, 1933, in British Hong Kong. He graduated from AFIT in 1962 with an M.S., and would go on to serve as a fighter pilot, and as a crew member on Apollo 8. Anders retired on September 1, 1969.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders was born on the 17th of October 1933 in British Hong Kong. He graduated in 1962 from AFIT with a M.S. and went on to become a fighter pilot and a crew member on Apollo 8 before he retired in 1969.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders was born in 1933 in British Hong Kong and graduated in 1962 from AFIT with a M.S. He then went on to become a test pilot and joined the Apollo 8 crew before he retired in 1969.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1969-09-01\\\"\",\n                        \"property\": \"dateOfRetirement\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"\\\"1933-10-17\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"British_Hong_Kong\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Apollo_8\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"\\\"AFIT, M.S. 1962\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"William_Anders\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1969-09-01\\\"^^xsd:date\",\n                                \"property\": \"dateOfRet\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"\\\"1933-10-17\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"British_Hong_Kong\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Apollo_8\",\n                                \"property\": \"mission\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"\\\"AFIT, M.S. 1962\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"William_Anders\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"839\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ankara is the Turkish capital and the country's leader's name is Ahmet Davutoglu. The Atatürk Monument (İzmir) can be found in Turkey. Pietro Canonica designed the Monument and it is made of bronze. The Ataturk Monument was inaugurated on 27th July, 1932.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Ataturk Monument in Izmir was inaugurated on the 27th July, 1932. It is made of bronze and it was designed by Pietro Canonica. Turkey's leader is called Ahmet Davutoglu and its capital is Ankara.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The capital city of Turkey is Ankara and the country's leader is Ahmet Davutoglu. The country is the location of Izmir where the bronze Ataturk Monument designed by Pietro Canonica was inaugurated on 27 July 1932.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pietro_Canonica\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    },\n                    {\n                        \"object\": \"Ahmet_Davutoğlu\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Turkey\"\n                    },\n                    {\n                        \"object\": \"Ankara\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Turkey\"\n                    },\n                    {\n                        \"object\": \"\\\"Bronze\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    },\n                    {\n                        \"object\": \"\\\"1932-07-27\\\"\",\n                        \"property\": \"inaugurationDate\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    },\n                    {\n                        \"object\": \"Turkey\",\n                        \"property\": \"location\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pietro_Canonica\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            },\n                            {\n                                \"object\": \"Ahmet_Davutoğlu\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Turkey\"\n                            },\n                            {\n                                \"object\": \"Ankara\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Turkey\"\n                            },\n                            {\n                                \"object\": \"\\\"Bronze\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            },\n                            {\n                                \"object\": \"\\\"1932-07-27\\\"^^xsd:date\",\n                                \"property\": \"open\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            },\n                            {\n                                \"object\": \"Turkey\",\n                                \"property\": \"location\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"840\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial was designed by Huseyin Butuner and Hilmi Guner and is located in Azerbaijan. It is dedicated to the Ottoman Army Soldiers killed in the Battle of Baku. The leader, the Prime Minister of Azerbaijan is Artur Rasizade.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Baku Turkish Martyrs' Memorial is located in Azerbaijan and the country's leader is Prime Minister Artur Rasizade. The Memorial is dedicated to the Ottoman Army soldiers killed in the Battle of Baku and its designers are Huseyin Butuner and Hilmi Guner. The native name for the Baku Turkish Martyrs' Memorial is Türk Şehitleri Anıtı.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Huseyin Butuner and Hilmi Guner are the designers of the Baku Turkish Martyrs memorial, also known as Turk Sehitleri Aniti. The memorial is located in Azerbaijan and dedicated to the Ottoman army soldiers who died in the battle of Baku. Prime Minister Artur Rasizade is the leader of the country.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Prime_Minister_of_Azerbaijan\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Türk Şehitleri Anıtı\\\"\",\n                        \"property\": \"nativeName\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Artur_Rasizade\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Prime_Minister_of_Azerbaijan\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Türk Şehitleri Anıtı\\\"@en\",\n                                \"property\": \"nativeName\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Artur_Rasizade\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"841\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 14th New Jersey Volunteer Infantry Monument is located at the Monocacy National Battlefield near Frederick, Maryland. The monument was established 1907-07-11 and belongs to the category of Historic districts in the United States. The monument has been provided by the National Park Service.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 14th New Jersey Volunteer Infantry Monument was established on July 11, 1907, in the Monocacy National Battlefield, in Frederick County, Maryland. The monument is categorized as a United States historic district and is under the responsibility of the National Park Service. The closest city to the battlefield is Frederick, Maryland.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 14th New Jersey Volunteer Infantry Monument (established on 11th July 1907) belongs to the category of Historic districts in the United States and is located on Monocacy National Battlefield. The nearest city is Frederick, Frederick County, Maryland. The 14th New Jersey Volunteer Infantry Monument is owned by the National Park Service.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Frederick_County,_Maryland\",\n                        \"property\": \"location\",\n                        \"subject\": \"Monocacy_National_Battlefield\"\n                    },\n                    {\n                        \"object\": \"\\\"1907-07-11\\\"\",\n                        \"property\": \"established\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Historic_districts_in_the_United_States\",\n                        \"property\": \"category\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Monocacy_National_Battlefield\",\n                        \"property\": \"district\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Frederick,_Maryland\",\n                        \"property\": \"nearestCity\",\n                        \"subject\": \"Monocacy_National_Battlefield\"\n                    },\n                    {\n                        \"object\": \"National_Park_Service\",\n                        \"property\": \"owningOrganisation\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Frederick_County,_Maryland\",\n                                \"property\": \"location\",\n                                \"subject\": \"Monocacy_National_Battlefield\"\n                            },\n                            {\n                                \"object\": \"\\\"1907-07-11\\\"^^xsd:date\",\n                                \"property\": \"established\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Historic_districts_in_the_United_States\",\n                                \"property\": \"category\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Monocacy_National_Battlefield\",\n                                \"property\": \"district\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Frederick,_Maryland\",\n                                \"property\": \"nearestCity\",\n                                \"subject\": \"Monocacy_National_Battlefield\"\n                            },\n                            {\n                                \"object\": \"National_Park_Service\",\n                                \"property\": \"owningOrganisation\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"842\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 14th New Jersey Volunteer Infantry Monument is located in the Monocacy National Battlefield, in Frederick County, Maryland, United States. The monument was established on July 11th, 1907. It is now categorized as a United States historic district and is owned by the National Park Service.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 14th New Jersey Volunteer Infantry Monument was established on 11 July 1907 in the district of the Monocacy National Battlefield, Frederick County, Maryland, United States. It belongs to the category of historic US districts and is owned by the National Park service.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 14th New Jersey Volunteer Infantry Monument is located in the Monocacy National Battlefield, in Frederick County, Maryland, USA. Established on July 11, 1907, the monument is categorized as a historic district and is owned by the National Park Service.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Frederick_County,_Maryland\",\n                        \"property\": \"location\",\n                        \"subject\": \"Monocacy_National_Battlefield\"\n                    },\n                    {\n                        \"object\": \"\\\"1907-07-11\\\"\",\n                        \"property\": \"established\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"\\\"United States\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Historic_districts_in_the_United_States\",\n                        \"property\": \"category\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Monocacy_National_Battlefield\",\n                        \"property\": \"district\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"National_Park_Service\",\n                        \"property\": \"owningOrganisation\",\n                        \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Frederick_County,_Maryland\",\n                                \"property\": \"location\",\n                                \"subject\": \"Monocacy_National_Battlefield\"\n                            },\n                            {\n                                \"object\": \"\\\"1907-07-11\\\"^^xsd:date\",\n                                \"property\": \"established\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"\\\"United States\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Historic_districts_in_the_United_States\",\n                                \"property\": \"category\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Monocacy_National_Battlefield\",\n                                \"property\": \"district\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"National_Park_Service\",\n                                \"property\": \"owningOrganisation\",\n                                \"subject\": \"14th_New_Jersey_Volunteer_Infantry_Monument\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"843\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Accademia di Architettura di Mendrisio located in Ticino, Switzerland was established in 1996. It has 600 students. Switzerland's leader is Federal Chancellor Johann Schneider-Ammann.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Federal Chancellor Johann Schneider-Ammann is the current leader of Switzerland where the Accademia di Architettura di Mendrisio is located in Ticino. It was established in 1996 and has 600 students.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Accademia di Architettura di Mendrisio in Ticino, Switzerland was established in 1996 and currently has 600 students. The Federal Chancellor of Switzerland is named Johann Schneider-Ammann.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Switzerland\",\n                        \"property\": \"country\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"600\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"1996\",\n                        \"property\": \"established\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Johann_Schneider-Ammann\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Switzerland\"\n                    },\n                    {\n                        \"object\": \"Ticino\",\n                        \"property\": \"location\",\n                        \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                    },\n                    {\n                        \"object\": \"Federal_Chancellor_of_Switzerland\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Switzerland\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Switzerland\",\n                                \"property\": \"country\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"600\",\n                                \"property\": \"students\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"1996\",\n                                \"property\": \"established\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Johann_Schneider-Ammann\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Switzerland\"\n                            },\n                            {\n                                \"object\": \"Ticino\",\n                                \"property\": \"canton\",\n                                \"subject\": \"Accademia_di_Architettura_di_Mendrisio\"\n                            },\n                            {\n                                \"object\": \"Federal_Chancellor_of_Switzerland\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Switzerland\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"844\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is in Bangalore, India in the state of Karnataka. The school was established in 2000 and its director is Dr. G. P. Prabhukumar. The full address of the school is In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Established in 2000, the Acharya Institute of Technology is in Bangalore, Karnataka India. The institute's director is Dr. G. P. Prabhukumar and the campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology campus is located at Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090, Karnataka, India. The Institute was established in the year 2000 and the director there is Dr. G. P. Prabhukumar.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"\",\n                        \"property\": \"director\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"@en\",\n                                \"property\": \"director\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"845\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology in Bangalore, India was established in 2000. It is affiliated with the Visvesvaraya Technological University. Its president is B.M. Reddy and its directore is Dr. G.P. Prabhukumar.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology in Bangalore, India was established in 2000 and is affiliated to the Visvesvaraya Technological University. It was established in 2000 and has B M Reddy as President and Dr g P Prabhukumar as Director.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is located in Bangalore, India. Its president is B.M. Reddy and the director is Dr. G. P. Prabhukumar. It was established in 2000 and its affiliation is Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"B.M. Reddy\\\"\",\n                        \"property\": \"president\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"\",\n                        \"property\": \"director\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"B.M. Reddy\\\"@en\",\n                                \"property\": \"president\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"@en\",\n                                \"property\": \"director\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"846\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology in Mumbai, Karnataka was given the \\\"Technological Campus\\\" status by the All India Council for Technical Education (located in Mumbai). The Acharya Institute offers tennis and the sports governing body is the International Tennis Foundation. Karnataka has the Arabian Sea to its west.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Tennis, which has the International Tennis Federation as its governing body, is offered as a sport at the Acharya Institute of Technology. The Institute was given Technical Campus status by the All India Council for Technical Education based in Mumbai and is situated in the state of Karnataka which has the Arabian Sea to the west.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Governed by the International Tennis Federation, the Acharya Institute of Technology in Karnataka offers tennis courses and was given the 'Technical Campus' status by the All India Council for Technical Education in Mumbai. Karnataka is east of the Arabian Sea.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"All_India_Council_for_Technical_Education\",\n                        \"property\": \"was given the 'Technical Campus' status by\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Mumbai\",\n                        \"property\": \"location\",\n                        \"subject\": \"All_India_Council_for_Technical_Education\"\n                    },\n                    {\n                        \"object\": \"Tennis\",\n                        \"property\": \"sportsOffered\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Arabian_Sea\",\n                        \"property\": \"has to its west\",\n                        \"subject\": \"Karnataka\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"International_Tennis_Federation\",\n                        \"property\": \"sportsGoverningBody\",\n                        \"subject\": \"Tennis\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"All_India_Council_for_Technical_Education\",\n                                \"property\": \"free\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Mumbai\",\n                                \"property\": \"location\",\n                                \"subject\": \"All_India_Council_for_Technical_Education\"\n                            },\n                            {\n                                \"object\": \"Tennis\",\n                                \"property\": \"sport\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Arabian_Sea\",\n                                \"property\": \"west\",\n                                \"subject\": \"Karnataka\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"International_Tennis_Federation\",\n                                \"property\": \"union\",\n                                \"subject\": \"Tennis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"847\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is affiliated with Visvesvaraya Technological University in Belgium. The institute was given Technical Campus' status by the All India Council for Technical Education in Mumbai. The institute offers tennis which is governed by the International Tennis Federation.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Governed by the International Tennis Federation, the Acharya Institute of Technology offers tennis courses and was given the 'Technical Campus' status by the All India Council for Technical Education in Mumbai. It is also affiliated with the Visvesvaraya Technological University in Belgaum.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"All_India_Council_for_Technical_Education\",\n                        \"property\": \"was given the 'Technical Campus' status by\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Mumbai\",\n                        \"property\": \"location\",\n                        \"subject\": \"All_India_Council_for_Technical_Education\"\n                    },\n                    {\n                        \"object\": \"Belgaum\",\n                        \"property\": \"city\",\n                        \"subject\": \"Visvesvaraya_Technological_University\"\n                    },\n                    {\n                        \"object\": \"Tennis\",\n                        \"property\": \"sportsOffered\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"International_Tennis_Federation\",\n                        \"property\": \"sportsGoverningBody\",\n                        \"subject\": \"Tennis\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"All_India_Council_for_Technical_Education\",\n                                \"property\": \"free\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Mumbai\",\n                                \"property\": \"location\",\n                                \"subject\": \"All_India_Council_for_Technical_Education\"\n                            },\n                            {\n                                \"object\": \"Belgaum\",\n                                \"property\": \"city\",\n                                \"subject\": \"Visvesvaraya_Technological_University\"\n                            },\n                            {\n                                \"object\": \"Tennis\",\n                                \"property\": \"sport\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"International_Tennis_Federation\",\n                                \"property\": \"sportGoverningBody\",\n                                \"subject\": \"Tennis\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"All_India_Council_for_Technical_Education\",\n                                \"property\": \"free\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Mumbai\",\n                                \"property\": \"location\",\n                                \"subject\": \"All_India_Council_for_Technical_Education\"\n                            },\n                            {\n                                \"object\": \"Belgaum\",\n                                \"property\": \"city\",\n                                \"subject\": \"Visvesvaraya_Technological_University\"\n                            },\n                            {\n                                \"object\": \"Tennis\",\n                                \"property\": \"sport\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"International_Tennis_Federation\",\n                                \"property\": \"union\",\n                                \"subject\": \"Tennis\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"848\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Bucharest is the capital of Romania where one of the country's ethnic groups are the Germans of Romania. The country's leader is Prime Minister Klaus Iohannis. The patron saint of the country is Andrew the Apostle and the country is the location of the 1 Decembrie 1918 University.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Romania is governed by a Prime Minister who is Klaus Iohannis . The country is also known for it's patron saint Andrew the Apostle , the ethnic group the Germans of Romania and the capital Bucharest. Romania is also home to the 1 Decembrie 1918 University.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The leader of Romania, the Prime Minister, is Klaus Iohannis. The capital is Bucharest, their ethnic group is Germans of Romania and its patron Saint is Andrew the Apotle. In Romania we can found 1 Decembrie 1918 University.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Germans_of_Romania\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Klaus_Iohannis\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Prime_Minister_of_Romania\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Andrew_the_Apostle\",\n                        \"property\": \"patronSaint\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Bucharest\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Romania\",\n                        \"property\": \"country\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Germans_of_Romania\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leader\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Prime_Minister_of_Romania\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Andrew_the_Apostle\",\n                                \"property\": \"patronSaint\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Bucharest\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Germans_of_Romania\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Prime_Minister_of_Romania\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Andrew_the_Apostle\",\n                                \"property\": \"patronSaint\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Bucharest\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"849\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University is located in Aarhus, Denmark was established in 1928. Its academic staff numbers 737 and it is affiliated to the European University Association. Denmark's leader is Lars Lokke Rasmussen.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The city of Aarhus is the location of the School of Business and Social Sciences at the Aarhus University which is affiliated with the European University Association. The School, which has 737 academic staff, was established in 1928 in Denmark where the leader is Lars Lokke Rasmussen.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Established in 1928 and with a current staff of 737, the School of Business and Social Sciences at the Aarhus University in Aarus, Denmark is affiliated with the European University Association. The country's leader is named Lars Løkke Rasmussen.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"737\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"Lars_Løkke_Rasmussen\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Denmark\"\n                    },\n                    {\n                        \"object\": \"Aarhus\",\n                        \"property\": \"city\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"country\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"European_University_Association\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"1928\",\n                        \"property\": \"established\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Lars_Løkke_Rasmussen\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Denmark\"\n                            },\n                            {\n                                \"object\": \"Aarhus\",\n                                \"property\": \"city\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"850\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University at Aarhus, Denmark was established in 1928. It has 737 academic staff and 16,000 students. It is affiliated to the European University Association.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The School of Business and Social Sciences at the Aarhus University is based in the city of Aarhus, Denmark. It was established in 1928 and is affiliated to the European University Association. There are 16000 students and an academic staff of 727.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"School of Business and Social Sciences at the Aarhus University is located in Aarhus, Denmark. It was established in 1928 and its affiliation is European University Association. The number of students is 16000 and academic staff is 737.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Aarhus\",\n                        \"property\": \"city\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"16000\",\n                        \"property\": \"numberOfStudents\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"737\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"Denmark\",\n                        \"property\": \"country\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"European_University_Association\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    },\n                    {\n                        \"object\": \"1928\",\n                        \"property\": \"established\",\n                        \"subject\": \"School of Business and Social Sciences at the Aarhus University\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Aarhus\",\n                                \"property\": \"city\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"\\\"16000\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfStudents\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"\\\"737\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Aarhus\",\n                                \"property\": \"city\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"16000\",\n                                \"property\": \"students\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"Aarhus\",\n                                \"property\": \"city\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"737\",\n                                \"property\": \"faculty\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"16000\",\n                                \"property\": \"students\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"Denmark\",\n                                \"property\": \"country\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"European_University_Association\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            },\n                            {\n                                \"object\": \"1928\",\n                                \"property\": \"established\",\n                                \"subject\": \"Aarhus_University,_School_of_Business_and_Social_Sciences\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"6\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"851\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean was born on March 15, 1932 in Wheeler, Texas and is American. He worked as a test pilot and was a member of Apollo 12, which was run by NASA. Bean is retired.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean is an American, who was born in Wheeler, Texas on 15th March 1832. He was a test pilot and crew member on the NASA operated Apollo 12 flight mission. He is now retired.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean is a US national who was on the crew of Apollo 12. His birthplace is Wheeler, Texas. He was born on March 15, 1932 and he is retired. He performed as a test pilot on The Apollo 12 mission that was operated by NASA.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"Wheeler,_Texas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"\\\"1932-03-15\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Bean\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"Wheeler,_Texas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"\\\"1932-03-15\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Bean\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"852\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Bean was born in Wheeler, Texas and attended UT Austin where he graduated in 1955 with a BS. Prior to his retirement he served as a test pilot and was selected by NASA to serve as a crew member on Apollo 12 alongside commander David Scott.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Apollo_12\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"David_Scott\",\n                        \"property\": \"commander\",\n                        \"subject\": \"Apollo_12\"\n                    },\n                    {\n                        \"object\": \"Wheeler,_Texas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Bean\"\n                    },\n                    {\n                        \"object\": \"\\\"UT Austin, B.S. 1955\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Bean\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Apollo_12\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"David_Scott\",\n                                \"property\": \"crew1Up\",\n                                \"subject\": \"Apollo_12\"\n                            },\n                            {\n                                \"object\": \"Wheeler,_Texas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Bean\"\n                            },\n                            {\n                                \"object\": \"\\\"UT Austin, B.S. 1955\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Bean\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"853\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on Nov 18, 1923 in New Hampshire, US. He graduated from NWC in 1957 with an M.A. In 1959 he began working for NASA and was a member of Apollo 14. He died in California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on November 18th, 1923 in New Hampshire. He was an American, who graduated from NWC in 1957 with an M.A. He was chosen by NASA in 1959 and he was a crew member of Apollo 11.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shephard is a US citizen who was born in New Hampshire on November 18th, 1923. He graduated from NWC with an MA in 1957. He was chosen by NASA in 1959 and he crewed Apollo 14.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"NWC, M.A. 1957\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Apollo_14\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"1959\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"NWC, M.A. 1957\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Apollo_14\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"1959\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"854\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on Nov 18, 1923 in New Hampshire, USA. He graduated from NWC in 1957 with an M.A. He worked as a test pilot before passing away in California.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"American Alan Shepard was born in New Hampshire on Nov 18, 1923. He graduated from NWC with a M.A. in 1957 and was a test pilot. He deceased and died in California.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The deceased Alan Shepard, a United States national, was born in New Hampshire on 1923-11-18. He graduated from NWC, M.A. in 1957 and served as a Test pilot. Alan Shepard died in California.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"NWC, M.A. 1957\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"NWC, M.A. 1957\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"855\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"Alan Shepard was born on November 18, 1923. Murio in California. He was A Test pilot Rewarded with the Medal of Service Distinguished from The Sea-coast of The United States, Medal of the United States Navy is higher than the Department of Commerce Gold Medal.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The test pilot Alan Bean was born in New Hampshire on Nov 18th 1923. He was awarded the Distinguished Service Medal, which is higher than the department of commerce gold medal, in the United States Navy. He died in California.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Department_of_Commerce_Gold_Medal\",\n                        \"property\": \"higher\",\n                        \"subject\": \"Distinguished_Service_Medal_(United_States_Navy)\"\n                    },\n                    {\n                        \"object\": \"California\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"New_Hampshire\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"\\\"1923-11-18\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Alan_Shepard\"\n                    },\n                    {\n                        \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                        \"property\": \"awards\",\n                        \"subject\": \"Alan_Shepard\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Department_of_Commerce_Gold_Medal\",\n                                \"property\": \"higher\",\n                                \"subject\": \"Distinguished_Service_Medal_(United_States_Navy)\"\n                            },\n                            {\n                                \"object\": \"California\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"New_Hampshire\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"\\\"1923-11-18\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Alan_Shepard\"\n                            },\n                            {\n                                \"object\": \"Distinguished_Service_Medal_(United_States_Navy)\",\n                                \"property\": \"awards\",\n                                \"subject\": \"Alan_Shepard\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"856\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Retired American fighter pilot Buzz Aldrin, also known as Edwin E. Aldrin Jr., was born in Glen Ridge, New Jersey. He graduated from Massachusetts Institute of Technology in 1963 with a doctorate in Science and was a crew member on Apollo 11.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin, whose real name was Edwin E Aldrin Jr, has now retired. He is an American born in Glen Ridge, New Jersey. After graduating from MIT in 1963 with a doctorate in science he became a fighter pilot and crew member on Apollo 11.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Edwin E. Aldrin, Jr.\\\"\",\n                        \"property\": \"alternativeNames\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Edwin E. Aldrin, Jr.\\\"@en\",\n                                \"property\": \"alternativeNames\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"857\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born in Glen Ridge, Essex County, New Jersey. He is a US national, who was a crew member of the NASA operated Apollo 11 program. William Anders was a backup pilot on the Apollo 11 mission. The US leader was Joe Biden.\",\n                        \"xml_id\": \"Id1\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Joe_Biden\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"United_States\"\n                    },\n                    {\n                        \"object\": \"Essex_County,_New_Jersey\",\n                        \"property\": \"isPartOf\",\n                        \"subject\": \"Glen_Ridge,_New_Jersey\"\n                    },\n                    {\n                        \"object\": \"William_Anders\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_11\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_11\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Joe_Biden\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"United_States\"\n                            },\n                            {\n                                \"object\": \"Essex_County,_New_Jersey\",\n                                \"property\": \"isPartOf\",\n                                \"subject\": \"Glen_Ridge,_New_Jersey\"\n                            },\n                            {\n                                \"object\": \"William_Anders\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_11\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_11\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id7\"\n            }\n        },\n        {\n            \"858\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born on Jan 20, 1930 in Glen Ridge, New Jersey. He graduated from MIT with an Sc. D in 1963. He began working for NASA in 1963 was a member of Apollo 11 which was run by NASA. He is now retired.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin, now retired, was born in Glen Ridge, New Jersey on January 20th, 1930. He graduated from MIT in 1963 with a Sc. D. and in 1963 he was picked by NASA to be part of the Apollo 11 crew.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"1930-01-20\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"1963\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_11\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"1930-01-20\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"1963\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_11\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id8\"\n            }\n        },\n        {\n            \"859\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born in Glen Ridge, New Jersey and graduated from Massachusetts Institute of Technology in 1963 with a doctorate in Science. He was a member of the Apollo 11 crew after being selected by NASA in 1963 with William Anders as a backup pilot on Apollo 11.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born in Glen Ridge, New Jersey. He graduated from MIT in 1963 with a doctorate in Science. He was a fighter pilot and began working for NASA in 1963. Aldrin was a member of Apollo 11, which was run by NASA and William Anders was the backup pilot.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Buzz Aldrin was born in Glen Ridge, New Jersey and obtained a doctorate in Science from MIT in 1963. He served as a fighter pilot before being hired by NASA in 1963 and serving as a crew member on Apollo 11 with backup pilot William Anders.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Glen_Ridge,_New_Jersey\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Apollo_11\",\n                        \"property\": \"was a crew member of\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"1963\",\n                        \"property\": \"was selected by NASA\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Buzz_Aldrin\"\n                    },\n                    {\n                        \"object\": \"William_Anders\",\n                        \"property\": \"backup pilot\",\n                        \"subject\": \"Apollo_11\"\n                    },\n                    {\n                        \"object\": \"NASA\",\n                        \"property\": \"operator\",\n                        \"subject\": \"Apollo_11\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Glen_Ridge,_New_Jersey\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Apollo_11\",\n                                \"property\": \"mission\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"1963\",\n                                \"property\": \"selection\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"\\\"Massachusetts Institute of Technology, Sc.D. 1963\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Buzz_Aldrin\"\n                            },\n                            {\n                                \"object\": \"William_Anders\",\n                                \"property\": \"crew2Up\",\n                                \"subject\": \"Apollo_11\"\n                            },\n                            {\n                                \"object\": \"NASA\",\n                                \"property\": \"operator\",\n                                \"subject\": \"Apollo_11\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id9\"\n            }\n        },\n        {\n            \"860\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born on July 23, 1927 in Dallas. He graduated from U of Texas at Austin which is part of the U of Texas system. He worked as a test pilot before he died in St. Louis.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas on July 23rd, 1927. He attended UT at Austin, which is affiliated with the University of Texas system. He was a test pilot, who died in St. Louis.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See has died in St Louis. He was born in Dallas on 23 July 1927 and graduated from University of Texas at Austin which is affiliated with the University of Texas system prior to serving as a test pilot.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1927-07-23\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"University_of_Texas_System\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"University_of_Texas_at_Austin\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1927-07-23\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"University_of_Texas_System\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"University_of_Texas_at_Austin\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id10\"\n            }\n        },\n        {\n            \"861\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born in Dallas on the 23rd of July in 1927 before attending the University of Texas at Austin. Elliot was a test pilot before passing away in St Louis in 1966.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Test pilot Elliot See, born in Dallas on July 23, 1927, graduated from the University of Texas in Austin. He died in St. Louis on February 28, 1966.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Elliot See was born on July 23, 1927. He was a student at University of Texas at Austin, and later served as a test pilot. Elliot died in St. Louis on February 28, 1966.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"University_of_Texas_at_Austin\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"Deceased\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"St._Louis\",\n                        \"property\": \"deathPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1927-07-23\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Dallas\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"\\\"1966-02-28\\\"\",\n                        \"property\": \"deathDate\",\n                        \"subject\": \"Elliot_See\"\n                    },\n                    {\n                        \"object\": \"Test_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"Elliot_See\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"University_of_Texas_at_Austin\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"Deceased\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"St._Louis\",\n                                \"property\": \"deathPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1927-07-23\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Dallas\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"\\\"1966-02-28\\\"^^xsd:date\",\n                                \"property\": \"deathDate\",\n                                \"subject\": \"Elliot_See\"\n                            },\n                            {\n                                \"object\": \"Test_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"Elliot_See\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id11\"\n            }\n        },\n        {\n            \"862\": {\n                \"category\": \"Astronaut\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders (born on the 17th of October 1933 in British Hong Kong) graduated from AFIT, M.S. in 1962. He was a US National and served as a Fighter pilot before he retired on the 1st of September in 1969.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"toFix\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders was born in British Hong Kong in October 17th 1933. William graduated from AFIT, M.S. in 1962 and became a Fighter pilot. William retired in September 1st in 1969.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"William Anders in an American who was born in British Hong Kong on the 17th of October 1933. After graduating from AFIT with an M.S. in 1962, he worked as a test pilot until he retired on the 1st of September 1969.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"1969-09-01\\\"\",\n                        \"property\": \"dateOfRetirement\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"United_States\",\n                        \"property\": \"nationality\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"\\\"Retired\\\"\",\n                        \"property\": \"status\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"\\\"1933-10-17\\\"\",\n                        \"property\": \"birthDate\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"Fighter_pilot\",\n                        \"property\": \"occupation\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"British_Hong_Kong\",\n                        \"property\": \"birthPlace\",\n                        \"subject\": \"William_Anders\"\n                    },\n                    {\n                        \"object\": \"\\\"AFIT, M.S. 1962\\\"\",\n                        \"property\": \"almaMater\",\n                        \"subject\": \"William_Anders\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"1969-09-01\\\"^^xsd:date\",\n                                \"property\": \"dateOfRet\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"United_States\",\n                                \"property\": \"nationality\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"\\\"Retired\\\"@en\",\n                                \"property\": \"status\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"\\\"1933-10-17\\\"^^xsd:date\",\n                                \"property\": \"birthDate\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"Fighter_pilot\",\n                                \"property\": \"occupation\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"British_Hong_Kong\",\n                                \"property\": \"birthPlace\",\n                                \"subject\": \"William_Anders\"\n                            },\n                            {\n                                \"object\": \"\\\"AFIT, M.S. 1962\\\"@en\",\n                                \"property\": \"almaMater\",\n                                \"subject\": \"William_Anders\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id12\"\n            }\n        },\n        {\n            \"863\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Municipality of Gettysburg is located in Adams County, Pennsylvania which lies to the south of Cumberland County and to the northwest of Carroll County, Maryland. It is the location of the 11th Mississippi Infantry monument which was established in 2000 and categorised as a contributing property within the United States.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 11th Mississippi Infantry monument which was erected in the municipality of Gettysburg, Adams County in 2000 is categorised as a contributing property. Adams County is located south of Cumberland County in the same state, and Carrol County, Maryland is situated to the southeast.\",\n                        \"xml_id\": \"Id2\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"United States\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Carroll_County,_Maryland\",\n                        \"property\": \"has to its southeast\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Cumberland_County,_Pennsylvania\",\n                        \"property\": \"has to its north\",\n                        \"subject\": \"Adams_County,_Pennsylvania\"\n                    },\n                    {\n                        \"object\": \"Contributing_property\",\n                        \"property\": \"category\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Gettysburg,_Pennsylvania\",\n                        \"property\": \"municipality\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    },\n                    {\n                        \"object\": \"Adams_County,_Pennsylvania\",\n                        \"property\": \"location\",\n                        \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"United States\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Carroll_County,_Maryland\",\n                                \"property\": \"southeast\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Cumberland_County,_Pennsylvania\",\n                                \"property\": \"north\",\n                                \"subject\": \"Adams_County,_Pennsylvania\"\n                            },\n                            {\n                                \"object\": \"Contributing_property\",\n                                \"property\": \"category\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Gettysburg,_Pennsylvania\",\n                                \"property\": \"municipality\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            },\n                            {\n                                \"object\": \"Adams_County,_Pennsylvania\",\n                                \"property\": \"region\",\n                                \"subject\": \"11th_Mississippi_Infantry_Monument\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"864\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Ankara is the capital of Turkey where the currency is the Turkish lira and the leader is Ahmet Davutoglu. Izmir is located in the country and is the site of the bronze Ataturk Monument which was inaugurated in Izmir on 27 July 1932, having been designed by Pietro Canonica.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Atatürk Monument is located in İzmir, in the country of Turkey, whose leader is Ahmet Davutoğlu. The monument is made of bronze, was designed by Pietro Canonica and was inaugurated on the 27th of July, 1932. Turkey's capital city is Ankara and the currency is the Turkish lira.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Turkish lira is the currency of Turkey where Ahmet Davutoglu is the leader and Ankara is the capital. The Ataturk Monument designed in bronze by Pietro Canonica is located in Izmir and was inaugurated on 27 July 1932.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Pietro_Canonica\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    },\n                    {\n                        \"object\": \"Ahmet_Davutoğlu\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Turkey\"\n                    },\n                    {\n                        \"object\": \"Ankara\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Turkey\"\n                    },\n                    {\n                        \"object\": \"\\\"Bronze\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    },\n                    {\n                        \"object\": \"Turkish_lira\",\n                        \"property\": \"currency\",\n                        \"subject\": \"Turkey\"\n                    },\n                    {\n                        \"object\": \"\\\"1932-07-27\\\"\",\n                        \"property\": \"inaugurationDate\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    },\n                    {\n                        \"object\": \"Turkey\",\n                        \"property\": \"location\",\n                        \"subject\": \"Atatürk_Monument_(İzmir)\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Pietro_Canonica\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            },\n                            {\n                                \"object\": \"Ahmet_Davutoğlu\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Turkey\"\n                            },\n                            {\n                                \"object\": \"Ankara\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Turkey\"\n                            },\n                            {\n                                \"object\": \"\\\"Bronze\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            },\n                            {\n                                \"object\": \"Turkish_lira\",\n                                \"property\": \"currency\",\n                                \"subject\": \"Turkey\"\n                            },\n                            {\n                                \"object\": \"\\\"1932-07-27\\\"^^xsd:date\",\n                                \"property\": \"open\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            },\n                            {\n                                \"object\": \"Turkey\",\n                                \"property\": \"location\",\n                                \"subject\": \"Atatürk_Monument_(İzmir)\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"865\": {\n                \"category\": \"Monument\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The National Assembly is the official legislature of Azerbaijan which is lead by a Prime Minister. The capital city is Baku which is the location of the memorial designed in red granite and white marble by Huseyin Butuner and Hilmi Guner. The memorial is dedicated to the Ottoman army soldiers who were killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Baku is the capital of Azerbaijan where the leader's title is Prime Minister and the legislature is the National Assembly. The city is the location of the Baku Turkish Martyrs memorial which was designed by Huseyin Butuner and Hilmi Guner in red granite and white marble. The memorial is dedicated to the soldiers of the Ottoman army who died in the Battle of Baku.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Huyseyin Butuner and Hilmi Guner designed the Baku Turkish Martyrs' Memorial. It is located in Baku, Azerbaijan, which has legislature of National Assembly, and led by the Prime Minster. The memorial is made from red granite and white marble, and is dedicated to the Ottoman Army Soldiers killed in the Battle of Baku.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Baku\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Red granite and white marble\\\"\",\n                        \"property\": \"material\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Prime_Minister_of_Azerbaijan\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Azerbaijan\"\n                    },\n                    {\n                        \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"\",\n                        \"property\": \"dedicatedTo\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"Azerbaijan\",\n                        \"property\": \"location\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"\",\n                        \"property\": \"designer\",\n                        \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                    },\n                    {\n                        \"object\": \"National_Assembly_(Azerbaijan)\",\n                        \"property\": \"legislature\",\n                        \"subject\": \"Azerbaijan\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Baku\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Red granite and white marble\\\"@en\",\n                                \"property\": \"material\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Prime_Minister_of_Azerbaijan\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Azerbaijan\"\n                            },\n                            {\n                                \"object\": \"\\\"Ottoman Army soldiers killed in the Battle of Baku\\\"@en\",\n                                \"property\": \"dedicatedTo\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"Azerbaijan\",\n                                \"property\": \"location\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"\\\"Hüseyin Bütüner and Hilmi Güner\\\"@en\",\n                                \"property\": \"designer\",\n                                \"subject\": \"Baku_Turkish_Martyrs'_Memorial\"\n                            },\n                            {\n                                \"object\": \"National_Assembly_(Azerbaijan)\",\n                                \"property\": \"legislature\",\n                                \"subject\": \"Azerbaijan\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"866\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology's campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore, Karnataka, India – 560090. The Institute (president B M Reddy) was established in 2000 and is affiliated with Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"President B M Reddy is head of the Acharya Institute of Technology located at \\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\" The Institute was established in the state of Karnataka in 2000 and is affiliated with the Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology's campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore, Karnataka, India, 560090. It was established in 2000; its president is B.M. Reddy and it is affiliated with the Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"B.M. Reddy\\\"\",\n                        \"property\": \"president\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliation\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"B.M. Reddy\\\"@en\",\n                                \"property\": \"president\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id1\"\n            }\n        },\n        {\n            \"867\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090 is the location of the Acharya Institute of Technology in India which is affiliated with the Visvesvaraya Technological University. The motto of the Institute which was established in the year 2000 is \\\"Nurturing Excellence\\\" and there are 700 postgraduate students.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology's campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore, India, 560090. It was established in 2000 and its motto is \\\"Nurturing Excellence\\\". It has 700 postgraduate students and it is affiliated to the Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology in Bangalore, India was created in 2000, has 700 post graduate students and uses as its motto Nurturing Excellence. It is affiliated with Visvesvaraya Technological University and its full address is In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"Nurturing Excellence\\\"\",\n                        \"property\": \"motto\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"700\",\n                        \"property\": \"numberOfPostgraduateStudents\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Nurturing Excellence\\\"@en\",\n                                \"property\": \"motto\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"~700\\\"@en\",\n                                \"property\": \"postgrad\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id2\"\n            }\n        },\n        {\n            \"868\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology in Bangalore, India was established in 2000 and is affiliated with Visvesvaraya Technological University. The school president is B. M. Reddy and its director is Dr. G. P. Prabhukumar. The school's full address is In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology is in Bangalore, India was established in 2000. The president is B.M. Reddy and the director is Dr. G. P. Prabhukumar. The institute is affiliated with the Visvesvaraya Technological University and the campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\".\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology, affiliated with the Visvesvaraya Technological University, is located in Soldevanahalli, on Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore, India (560090). It was established in the year 2000, and its current president is B.M. Reddy, while its director is Dr. G.P. Prabhukumar.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"B.M. Reddy\\\"\",\n                        \"property\": \"president\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Bangalore\",\n                        \"property\": \"city\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"\",\n                        \"property\": \"director\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"B.M. Reddy\\\"@en\",\n                                \"property\": \"president\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Bangalore\",\n                                \"property\": \"city\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"@en\",\n                                \"property\": \"director\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id3\"\n            }\n        },\n        {\n            \"869\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology (president B M Reddy) is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore, India – 560090. The Institute was established in 2000, has 700 postgraduate students and is affiliated with Visvesvaraya Technological University of Belgaum.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090 is the location of the Acharya Institute of Technology in India. The President of the Institute which was established in the year 2000 is B M Reddy and there are 700 postgraduate students. The Institute is affiliated with the Visvesvaraya Technological University.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology was established in the year 2000 in India. Its campus is in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090 and its president is B. M. Reddy. It has 700 postgraduate students and is affiliated with the Visvesvaraya Technological University in Belgaum.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"\\\"B.M. Reddy\\\"\",\n                        \"property\": \"president\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Belgaum\",\n                        \"property\": \"city\",\n                        \"subject\": \"Visvesvaraya_Technological_University\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"700\",\n                        \"property\": \"numberOfPostgraduateStudents\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"\\\"B.M. Reddy\\\"@en\",\n                                \"property\": \"president\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Belgaum\",\n                                \"property\": \"city\",\n                                \"subject\": \"Visvesvaraya_Technological_University\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"~700\\\"@en\",\n                                \"property\": \"postgrad\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ],\n                        [\n                            {\n                                \"object\": \"\\\"B.M. Reddy\\\"@en\",\n                                \"property\": \"president\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Belgaum\",\n                                \"property\": \"city\",\n                                \"subject\": \"Visvesvaraya_Technological_University\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"700\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"numberOfPostgraduateStudents\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id4\"\n            }\n        },\n        {\n            \"870\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"AWH Engineering College in Kuttikkattoor, India is in the state of Kerala which has Mahe to its northwest. The school has 250 employees. India is home to the Ganges River and its largest city is Mumbai.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"India is known for the river Ganges and the largest city being Mumbai is also home to the state of Kerala which is positioned with Mahe to it's northwest. Kerala is also where AWH Engineering College is located within the city of Kuttikkattoor. The college currently has 250 members of staff.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The AWH Engineering College in Kuttikkattoor, Kerala, India has an academic staff of 250. Kerala has Mahé, Indiato its northwest. Mumbai is the largest city in India. The river Ganges runs through India.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Mumbai\",\n                        \"property\": \"largestCity\",\n                        \"subject\": \"India\"\n                    },\n                    {\n                        \"object\": \"India\",\n                        \"property\": \"country\",\n                        \"subject\": \"AWH_Engineering_College\"\n                    },\n                    {\n                        \"object\": \"250\",\n                        \"property\": \"academicStaffSize\",\n                        \"subject\": \"AWH_Engineering_College\"\n                    },\n                    {\n                        \"object\": \"Kerala\",\n                        \"property\": \"state\",\n                        \"subject\": \"AWH_Engineering_College\"\n                    },\n                    {\n                        \"object\": \"Mahé,_India\",\n                        \"property\": \"has to its northwest\",\n                        \"subject\": \"Kerala\"\n                    },\n                    {\n                        \"object\": \"\\\"Kuttikkattoor\\\"\",\n                        \"property\": \"city\",\n                        \"subject\": \"AWH_Engineering_College\"\n                    },\n                    {\n                        \"object\": \"Ganges\",\n                        \"property\": \"river\",\n                        \"subject\": \"India\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Mumbai\",\n                                \"property\": \"largestCity\",\n                                \"subject\": \"India\"\n                            },\n                            {\n                                \"object\": \"India\",\n                                \"property\": \"country\",\n                                \"subject\": \"AWH_Engineering_College\"\n                            },\n                            {\n                                \"object\": \"\\\"250\\\"^^xsd:nonNegativeInteger\",\n                                \"property\": \"facultySize\",\n                                \"subject\": \"AWH_Engineering_College\"\n                            },\n                            {\n                                \"object\": \"Kerala\",\n                                \"property\": \"state\",\n                                \"subject\": \"AWH_Engineering_College\"\n                            },\n                            {\n                                \"object\": \"Mahé,_India\",\n                                \"property\": \"northwest\",\n                                \"subject\": \"Kerala\"\n                            },\n                            {\n                                \"object\": \"\\\"Kuttikkattoor\\\"@en\",\n                                \"property\": \"city\",\n                                \"subject\": \"AWH_Engineering_College\"\n                            },\n                            {\n                                \"object\": \"Ganges\",\n                                \"property\": \"river\",\n                                \"subject\": \"India\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id5\"\n            }\n        },\n        {\n            \"871\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"1 Decembrie 1918 University is located in the city of Alba Iulia, Romania. The country's capital is Bucharest and the leader (title Prime Minister of Romania) is Klaus Iohannis. An ethnic group of the country is The Germans of Romania and the country's national anthem is Deșteaptă-te, române!\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The national anthem of Romania is \\\"Desteapta-te, romane!\\\" and the capital city is Bucharest. The country is lead by Prime Minister Klaus Iohannis and is the location of the 1 Decembrie 1918 University in the city of Alba Iulia. One of the ethnic groups of the country is the Germans of Romania.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The 1 Decembrie 1918 University is located in Alba Iulia, Romania. Romania's capital is Bucharest; its leader is Prime Minister Klaus Iohannis and its ethnic group is the Germans of Romania. Romania's capital is Bucharest and its anthem is Desteapta-te, Romane!\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Germans_of_Romania\",\n                        \"property\": \"ethnicGroup\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Prime_Minister_of_Romania\",\n                        \"property\": \"leaderTitle\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Klaus_Iohannis\",\n                        \"property\": \"leaderName\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Bucharest\",\n                        \"property\": \"capital\",\n                        \"subject\": \"Romania\"\n                    },\n                    {\n                        \"object\": \"Alba_Iulia\",\n                        \"property\": \"city\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    },\n                    {\n                        \"object\": \"Romania\",\n                        \"property\": \"country\",\n                        \"subject\": \"1_Decembrie_1918_University\"\n                    },\n                    {\n                        \"object\": \"Deșteaptă-te,_române!\",\n                        \"property\": \"anthem\",\n                        \"subject\": \"Romania\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Germans_of_Romania\",\n                                \"property\": \"ethnicGroups\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Prime_Minister_of_Romania\",\n                                \"property\": \"leaderTitle\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Klaus_Iohannis\",\n                                \"property\": \"leaderName\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Bucharest\",\n                                \"property\": \"capital\",\n                                \"subject\": \"Romania\"\n                            },\n                            {\n                                \"object\": \"Alba_Iulia\",\n                                \"property\": \"city\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            },\n                            {\n                                \"object\": \"Romania\",\n                                \"property\": \"country\",\n                                \"subject\": \"1_Decembrie_1918_University,_Alba_Iulia\"\n                            },\n                            {\n                                \"object\": \"Deșteaptă-te,_române!\",\n                                \"property\": \"anthem\",\n                                \"subject\": \"Romania\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id6\"\n            }\n        },\n        {\n            \"872\": {\n                \"category\": \"University\",\n                \"dbpedialinks\": [],\n                \"lexicalisations\": [\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"In the year 2000 the Acharya Institute of Technology was established in the state of Karnataka, India. The current location is \\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\" The Director is Dr G P Prabhukumar and it is affiliated with the Visvesvaraya Technological University in the city of Belgaum.\",\n                        \"xml_id\": \"Id1\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"The Acharya Institute of Technology's campus is located in Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore, Karnatka, 560090. It was established in 2000 and its director is Dr G P Prabhukumar. It is affiliated to the Visvesvaraya Technological University in Belgaum.\",\n                        \"xml_id\": \"Id2\"\n                    },\n                    {\n                        \"comment\": \"good\",\n                        \"lang\": \"\",\n                        \"lex\": \"Acharya Institute of Technology is affiliated with Visvesvaraya Technological University which is in Belgium. The institute itself is in India's Karnataka state and its full address is In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090. It was created in 2000 and its director is Dr. G. P. Prabhukumar.\",\n                        \"xml_id\": \"Id3\"\n                    }\n                ],\n                \"links\": [],\n                \"modifiedtripleset\": [\n                    {\n                        \"object\": \"Belgaum\",\n                        \"property\": \"city\",\n                        \"subject\": \"Visvesvaraya_Technological_University\"\n                    },\n                    {\n                        \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"\",\n                        \"property\": \"director\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"2000\",\n                        \"property\": \"established\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Karnataka\",\n                        \"property\": \"state\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"India\\\"\",\n                        \"property\": \"country\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"\\\"In Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"\",\n                        \"property\": \"campus\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    },\n                    {\n                        \"object\": \"Visvesvaraya_Technological_University\",\n                        \"property\": \"affiliation\",\n                        \"subject\": \"Acharya_Institute_of_Technology\"\n                    }\n                ],\n                \"originaltriplesets\": {\n                    \"originaltripleset\": [\n                        [\n                            {\n                                \"object\": \"Belgaum\",\n                                \"property\": \"city\",\n                                \"subject\": \"Visvesvaraya_Technological_University\"\n                            },\n                            {\n                                \"object\": \"\\\"Dr. G. P. Prabhukumar\\\"@en\",\n                                \"property\": \"director\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"2000\",\n                                \"property\": \"established\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Karnataka\",\n                                \"property\": \"state\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"India\\\"@en\",\n                                \"property\": \"country\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"\\\"Urban, ,\\\\nIn Soldevanahalli, Acharya Dr. Sarvapalli Radhakrishnan Road, Hessarghatta Main Road, Bangalore – 560090.\\\"@en\",\n                                \"property\": \"campus\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            },\n                            {\n                                \"object\": \"Visvesvaraya_Technological_University\",\n                                \"property\": \"affiliations\",\n                                \"subject\": \"Acharya_Institute_of_Technology\"\n                            }\n                        ]\n                    ]\n                },\n                \"shape\": \"NA\",\n                \"shape_type\": \"NA\",\n                \"size\": \"7\",\n                \"xml_id\": \"Id7\"\n            }\n        }\n    ]\n}"
  },
  {
    "path": "examples/NLG/download_pretrained_checkpoints.sh",
    "content": "#!/bin/bash\n\necho \"downloading pretrained model checkpoints...\"\nmkdir pretrained_checkpoints\ncd pretrained_checkpoints\nwget https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-pytorch_model.bin\nwget https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-medium-pytorch_model.bin\nwget https://s3.amazonaws.com/models.huggingface.co/bert/gpt2-large-pytorch_model.bin\ncd ..\n\necho \"script complete!\"\n"
  },
  {
    "path": "examples/NLG/eval/eval.py",
    "content": "__author__='thiagocastroferreira'\n\n\"\"\"\nAuthor: Organizers of the 2nd WebNLG Challenge\nDate: 23/04/2020\nDescription:\n    This script aims to evaluate the output of data-to-text NLG models by \n    computing popular automatic metrics such as BLEU (two implementations), \n    METEOR, chrF++, TER and BERT-Score.\n    \n    ARGS:\n        usage: eval.py [-h] -R REFERENCE -H HYPOTHESIS [-lng LANGUAGE] [-nr NUM_REFS]\n               [-m METRICS] [-nc NCORDER] [-nw NWORDER] [-b BETA]\n\n        optional arguments:\n          -h, --help            show this help message and exit\n          -R REFERENCE, --reference REFERENCE\n                                reference translation\n          -H HYPOTHESIS, --hypothesis HYPOTHESIS\n                                hypothesis translation\n          -lng LANGUAGE, --language LANGUAGE\n                                evaluated language\n          -nr NUM_REFS, --num_refs NUM_REFS\n                                number of references\n          -m METRICS, --metrics METRICS\n                                evaluation metrics to be computed\n          -nc NCORDER, --ncorder NCORDER\n                                chrF metric: character n-gram order (default=6)\n          -nw NWORDER, --nworder NWORDER\n                                chrF metric: word n-gram order (default=2)\n          -b BETA, --beta BETA  chrF metric: beta parameter (default=2)\n\n    EXAMPLE:\n        ENGLISH: \n            python3 eval.py -R data/en/references/reference -H data/en/hypothesis -nr 4 -m bleu,meteor,chrf++,ter,bert,bleurt\n        RUSSIAN:\n            python3 eval.py -R data/ru/reference -H data/ru/hypothesis -lng ru -nr 1 -m bleu,meteor,chrf++,ter,bert\n\"\"\"\n\nimport sys\nimport argparse\nimport codecs\nimport copy\nimport os\nimport pyter\nimport logging\nimport nltk\nimport subprocess\nimport re\n\nfrom bert_score import score\nfrom metrics.chrF import computeChrF\nfrom metrics.bleurt.bleurt import score as bleurt_score\n\nfrom nltk.translate.bleu_score import corpus_bleu, SmoothingFunction\nfrom razdel import tokenize\nfrom tabulate import tabulate\n\nBLEU_PATH = 'metrics/multi-bleu-detok.perl'\nMETEOR_PATH = 'metrics/meteor-1.5/meteor-1.5.jar'\n\n\ndef parse(refs_path, hyps_path, num_refs, lng='en'):\n    logging.info('STARTING TO PARSE INPUTS...')\n    print('STARTING TO PARSE INPUTS...')\n    # references\n    references = []\n    for i in range(num_refs):\n        fname = refs_path + str(i) if num_refs > 1 else refs_path\n        with codecs.open(fname, 'r', 'utf-8') as f:\n            texts = f.read().split('\\n')\n            for j, text in enumerate(texts):\n                if len(references) <= j:\n                    references.append([text])\n                else:\n                    references[j].append(text)\n\n    # references tokenized\n    references_tok = copy.copy(references)\n    for i, refs in enumerate(references_tok):\n        if lng == 'ru':\n            references_tok[i] = [' '.join([_.text for _ in tokenize(ref)]) for ref in refs]\n        else:\n            references_tok[i] = [' '.join(nltk.word_tokenize(ref)) for ref in refs]\n\n    # hypothesis\n    with codecs.open(hyps_path, 'r', 'utf-8') as f:\n        hypothesis = f.read().split('\\n')\n\n    # hypothesis tokenized\n    hypothesis_tok = copy.copy(hypothesis)\n    if lng == 'ru':\n        hypothesis_tok = [' '.join([_.text for _ in tokenize(hyp)]) for hyp in hypothesis_tok]\n    else:\n        hypothesis_tok = [' '.join(nltk.word_tokenize(hyp)) for hyp in hypothesis_tok]\n\n\n    logging.info('FINISHING TO PARSE INPUTS...')\n    print('FINISHING TO PARSE INPUTS...')\n    return references, references_tok, hypothesis, hypothesis_tok\n\ndef bleu_score(refs_path, hyps_path, num_refs):\n    logging.info('STARTING TO COMPUTE BLEU...')\n    print('STARTING TO COMPUTE BLEU...')\n    ref_files = []\n    for i in range(num_refs):\n        if num_refs == 1:\n            ref_files.append(refs_path)\n        else:\n            ref_files.append(refs_path + str(i))\n\n    command = 'perl {0} {1} < {2}'.format(BLEU_PATH, ' '.join(ref_files), hyps_path)\n    result = subprocess.check_output(command, shell=True)\n    try:\n        bleu = float(re.findall('BLEU = (.+?),', str(result))[0])\n    except:\n        logging.error('ERROR ON COMPUTING METEOR. MAKE SURE YOU HAVE PERL INSTALLED GLOBALLY ON YOUR MACHINE.')\n        print('ERROR ON COMPUTING METEOR. MAKE SURE YOU HAVE PERL INSTALLED GLOBALLY ON YOUR MACHINE.')\n        bleu = -1\n    logging.info('FINISHING TO COMPUTE BLEU...')\n    print('FINISHING TO COMPUTE BLEU...')\n    return bleu\n\n\ndef bleu_nltk(references, hypothesis):\n    # check for empty lists\n    references_, hypothesis_ = [], []\n    for i, refs in enumerate(references):\n        refs_ = [ref for ref in refs if ref.strip() != '']\n        if len(refs_) > 0:\n            references_.append([ref.split() for ref in refs_])\n            hypothesis_.append(hypothesis[i].split())\n\n    chencherry = SmoothingFunction()\n    return corpus_bleu(references_, hypothesis_, smoothing_function=chencherry.method3)\n\n\ndef meteor_score(references, hypothesis, num_refs, lng='en'):\n    logging.info('STARTING TO COMPUTE METEOR...')\n    print('STARTING TO COMPUTE METEOR...')\n    hyps_tmp, refs_tmp = 'hypothesis_meteor', 'reference_meteor'\n\n    with codecs.open(hyps_tmp, 'w', 'utf-8') as f:\n        f.write('\\n'.join(hypothesis))\n\n    linear_references = []\n    for refs in references:\n        for i in range(num_refs):\n            linear_references.append(refs[i])\n\n    with codecs.open(refs_tmp, 'w', 'utf-8') as f:\n        f.write('\\n'.join(linear_references))\n\n    try:\n        command = 'java -Xmx2G -jar {0} '.format(METEOR_PATH)\n        command += '{0} {1} -l {2} -norm -r {3}'.format(hyps_tmp, refs_tmp, lng, num_refs)\n        result = subprocess.check_output(command, shell=True)\n        meteor = result.split(b'\\n')[-2].split()[-1]\n    except:\n        logging.error('ERROR ON COMPUTING METEOR. MAKE SURE YOU HAVE JAVA INSTALLED GLOBALLY ON YOUR MACHINE.')\n        print('ERROR ON COMPUTING METEOR. MAKE SURE YOU HAVE JAVA INSTALLED GLOBALLY ON YOUR MACHINE.')\n        meteor = -1\n\n    try:\n        os.remove(hyps_tmp)\n        os.remove(refs_tmp)\n    except:\n        pass\n    logging.info('FINISHING TO COMPUTE METEOR...')\n    print('FINISHING TO COMPUTE METEOR...')\n    return float(meteor)\n\n\ndef chrF_score(references, hypothesis, num_refs, nworder, ncorder, beta):\n    logging.info('STARTING TO COMPUTE CHRF++...')\n    print('STARTING TO COMPUTE CHRF++...')\n    hyps_tmp, refs_tmp = 'hypothesis_chrF', 'reference_chrF'\n\n    # check for empty lists\n    references_, hypothesis_ = [], []\n    for i, refs in enumerate(references):\n        refs_ = [ref for ref in refs if ref.strip() != '']\n        if len(refs_) > 0:\n            references_.append(refs_)\n            hypothesis_.append(hypothesis[i])\n\n    with codecs.open(hyps_tmp, 'w', 'utf-8') as f:\n        f.write('\\n'.join(hypothesis_))\n\n    linear_references = []\n    for refs in references_:\n        linear_references.append('*#'.join(refs[:num_refs]))\n\n    with codecs.open(refs_tmp, 'w', 'utf-8') as f:\n        f.write('\\n'.join(linear_references))\n\n    rtxt = codecs.open(refs_tmp, 'r', 'utf-8')\n    htxt = codecs.open(hyps_tmp, 'r', 'utf-8')\n\n    try:\n        totalF, averageTotalF, totalPrec, totalRec = computeChrF(rtxt, htxt, nworder, ncorder, beta, None)\n    except:\n        logging.error('ERROR ON COMPUTING CHRF++.')\n        print('ERROR ON COMPUTING CHRF++.')\n        totalF, averageTotalF, totalPrec, totalRec = -1, -1, -1, -1\n    try:\n        os.remove(hyps_tmp)\n        os.remove(refs_tmp)\n    except:\n        pass\n    logging.info('FINISHING TO COMPUTE CHRF++...')\n    print('FINISHING TO COMPUTE CHRF++...')\n    return totalF, averageTotalF, totalPrec, totalRec\n\n\ndef ter_score(references, hypothesis, num_refs):\n    logging.info('STARTING TO COMPUTE TER...')\n    print('STARTING TO COMPUTE TER...')\n    ter_scores = []\n    for hyp, refs in zip(hypothesis, references):\n        candidates = []\n        for ref in refs[:num_refs]:\n            if len(ref) == 0:\n                ter_score = 1\n            else:\n                try:\n                    ter_score = pyter.ter(hyp.split(), ref.split())\n                except:\n                    ter_score = 1\n            candidates.append(ter_score)\n\n        ter_scores.append(min(candidates))\n\n    logging.info('FINISHING TO COMPUTE TER...')\n    print('FINISHING TO COMPUTE TER...')\n    return sum(ter_scores) / len(ter_scores)\n\n\ndef bert_score_(references, hypothesis, lng='en'):\n    logging.info('STARTING TO COMPUTE BERT SCORE...')\n    print('STARTING TO COMPUTE BERT SCORE...')\n    for i, refs in enumerate(references):\n        references[i] = [ref for ref in refs if ref.strip() != '']\n\n    try:\n        P, R, F1 = score(hypothesis, references, lang=lng)\n        logging.info('FINISHING TO COMPUTE BERT SCORE...')\n    #     print('FINISHING TO COMPUTE BERT SCORE...')\n        P, R, F1 = list(P), list(R), list(F1)\n        F1 = float(sum(F1) / len(F1))\n        P = float(sum(P) / len(P))\n        R = float(sum(R) / len(R))\n    except:\n        P, R, F1 = 0, 0, 0\n    return P, R, F1\n\ndef bleurt(references, hypothesis, num_refs, checkpoint = \"metrics/bleurt/bleurt-base-128\"):\n    refs, cands = [], []\n    for i, hyp in enumerate(hypothesis):\n        for ref in references[i][:num_refs]:\n            cands.append(hyp)\n            refs.append(ref)\n\n    scorer = bleurt_score.BleurtScorer(checkpoint)\n    scores = scorer.score(refs, cands)\n    scores = [max(scores[i:i+num_refs]) for i in range(0, len(scores), num_refs)]\n    return round(sum(scores) / len(scores), 2)\n\n\ndef run(refs_path, hyps_path, num_refs, lng='en', metrics='bleu,meteor,chrf++,ter,bert,bleurt',ncorder=6, nworder=2, beta=2):\n    metrics = metrics.lower().split(',')\n    references, references_tok, hypothesis, hypothesis_tok = parse(refs_path, hyps_path, num_refs, lng)\n    \n    result = {}\n    \n    logging.info('STARTING EVALUATION...')\n    if 'bleu' in metrics:\n        bleu = bleu_score(refs_path, hyps_path, num_refs)\n        result['bleu'] = bleu\n\n        b = bleu_nltk(references_tok, hypothesis_tok)\n        result['bleu_nltk'] = b\n    if 'meteor' in metrics:\n        meteor = meteor_score(references_tok, hypothesis_tok, num_refs, lng=lng)\n        result['meteor'] = meteor\n    if 'chrf++' in metrics:\n        chrf, _, _, _ = chrF_score(references, hypothesis, num_refs, nworder, ncorder, beta)\n        result['chrf++'] = chrf\n    if 'ter' in metrics:\n        ter = ter_score(references_tok, hypothesis_tok, num_refs)\n        result['ter'] = ter\n    if 'bert' in metrics:\n        P, R, F1 = bert_score_(references, hypothesis, lng=lng)\n        result['bert_precision'] = P\n        result['bert_recall'] = R\n        result['bert_f1'] = F1\n    if 'bleurt' in metrics and lng == 'en':\n        s = bleurt(references, hypothesis, num_refs)\n        result['bleurt'] = s\n    logging.info('FINISHING EVALUATION...')\n    \n    return result\n\n\nif __name__ == '__main__':\n    FORMAT = '%(levelname)s: %(asctime)-15s - %(message)s'\n    logging.basicConfig(filename='eval.log', level=logging.INFO, format=FORMAT)\n\n    argParser = argparse.ArgumentParser()\n    argParser.add_argument(\"-R\", \"--reference\", help=\"reference translation\", required=True)\n    argParser.add_argument(\"-H\", \"--hypothesis\", help=\"hypothesis translation\", required=True)\n    argParser.add_argument(\"-lng\", \"--language\", help=\"evaluated language\", default='en')\n    argParser.add_argument(\"-nr\", \"--num_refs\", help=\"number of references\", type=int, default=4)\n    argParser.add_argument(\"-m\", \"--metrics\", help=\"evaluation metrics to be computed\", default='bleu,meteor,ter,chrf++,bert,bleurt')\n    argParser.add_argument(\"-nc\", \"--ncorder\", help=\"chrF metric: character n-gram order (default=6)\", type=int, default=6)\n    argParser.add_argument(\"-nw\", \"--nworder\", help=\"chrF metric: word n-gram order (default=2)\", type=int, default=2)\n    argParser.add_argument(\"-b\", \"--beta\", help=\"chrF metric: beta parameter (default=2)\", type=float, default=2.0)\n\n    args = argParser.parse_args()\n\n    logging.info('READING INPUTS...')\n    refs_path = args.reference\n    hyps_path = args.hypothesis\n    lng = args.language\n    num_refs = args.num_refs\n    metrics = args.metrics#.lower().split(',')\n\n    nworder = args.nworder\n    ncorder = args.ncorder\n    beta = args.beta\n    logging.info('FINISHING TO READ INPUTS...')\n\n    result = run(refs_path=refs_path, hyps_path=hyps_path, num_refs=num_refs, lng=lng, metrics=metrics, ncorder=ncorder, nworder=nworder, beta=beta)\n    \n    metrics = metrics.lower().split(',')\n    headers, values = [], []\n    if 'bleu' in metrics:\n        headers.append('BLEU')\n        values.append(result['bleu'])\n\n        headers.append('BLEU NLTK')\n        values.append(round(result['bleu_nltk'], 2))\n    if 'meteor' in metrics:\n        headers.append('METEOR')\n        values.append(round(result['meteor'], 2))\n    if 'chrf++' in metrics:\n        headers.append('chrF++')\n        values.append(round(result['chrf++'], 2))\n    if 'ter' in metrics:\n        headers.append('TER')\n        values.append(round(result['ter'], 2))\n    if 'bert' in metrics:\n        headers.append('BERT-SCORE P')\n        values.append(round(result['bert_precision'], 2))\n        headers.append('BERT-SCORE R')\n        values.append(round(result['bert_recall'], 2))\n        headers.append('BERT-SCORE F1')\n        values.append(round(result['bert_f1'], 2))\n    if 'bleurt' in metrics and lng == 'en':\n        headers.append('BLEURT')\n        values.append(round(result['bleurt'], 2))\n\n    logging.info('PRINTING RESULTS...')\n    print(tabulate([values], headers=headers))"
  },
  {
    "path": "examples/NLG/requirement.txt",
    "content": "--find-links https://download.pytorch.org/whl/torch_stable.html\ntorch==1.7.1+cu101\ntransformers==3.3.1\nspacy\ntqdm\ntensorboard\nprogress\n"
  },
  {
    "path": "examples/NLG/src/encoder.py",
    "content": "#  ------------------------------------------------------------------------------------------\n#  Copyright (c) Microsoft Corporation. All rights reserved.\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n#  ------------------------------------------------------------------------------------------\nimport os\nimport json\nimport regex as re\nfrom functools import lru_cache\n\n\n@lru_cache()\ndef bytes_to_unicode():\n    \"\"\"\n    Returns list of utf-8 byte and a corresponding list of unicode strings.\n    The reversible bpe codes work on unicode strings.\n    This means you need a large # of unicode characters in your vocab if you want to avoid UNKs.\n    When you're at something like a 10B token dataset you end up needing around 5K for decent coverage.\n    This is a signficant percentage of your normal, say, 32K bpe vocab.\n    To avoid that, we want lookup tables between utf-8 bytes and unicode strings.\n    And avoids mapping to whitespace/control characters the bpe code barfs on.\n    \"\"\"\n    bs = list(range(ord(\"!\"), ord(\"~\")+1))+list(range(ord(\"¡\"), ord(\"¬\")+1))+list(range(ord(\"®\"), ord(\"ÿ\")+1))\n    cs = bs[:]\n    n = 0\n    for b in range(2**8):\n        if b not in bs:\n            bs.append(b)\n            cs.append(2**8+n)\n            n += 1\n    cs = [chr(n) for n in cs]\n    return dict(zip(bs, cs))\n\n\ndef get_pairs(word):\n    \"\"\"Return set of symbol pairs in a word.\n    Word is represented as tuple of symbols (symbols being variable-length strings).\n    \"\"\"\n    pairs = set()\n    prev_char = word[0]\n    for char in word[1:]:\n        pairs.add((prev_char, char))\n        prev_char = char\n    return pairs\n\n\nclass Encoder:\n\n    def __init__(self, encoder, bpe_merges, errors='replace'):\n        self.encoder = encoder\n        self.decoder = {v:k for k,v in self.encoder.items()}\n        self.errors = errors # how to handle errors in decoding\n        self.byte_encoder = bytes_to_unicode()\n        self.byte_decoder = {v:k for k, v in self.byte_encoder.items()}\n        self.bpe_ranks = dict(zip(bpe_merges, range(len(bpe_merges))))\n        self.cache = {}\n        # Should haved added re.IGNORECASE so BPE merges can happen for capitalized versions of contractions\n        try:\n            import regex as re\n            self.re = re\n        except ImportError:\n            raise ImportError('Please install regex with: pip install regex')\n\n        \n        self.pat = re.compile(r\"\"\"'s|'t|'re|'ve|'m|'ll|'d| ?\\p{L}+| ?\\p{N}+| ?[^\\s\\p{L}\\p{N}]+|\\s+(?!\\S)|\\s+\"\"\")\n\n    def bpe(self, token):\n        if token in self.cache:\n            return self.cache[token]\n        word = tuple(token)\n        pairs = get_pairs(word)\n\n        if not pairs:\n            return token\n\n        while True:\n            bigram = min(pairs, key = lambda pair: self.bpe_ranks.get(pair, float('inf')))\n            if bigram not in self.bpe_ranks:\n                break\n            first, second = bigram\n            new_word = []\n            i = 0\n            while i < len(word):\n                try:\n                    j = word.index(first, i)\n                    new_word.extend(word[i:j])\n                    i = j\n                except:\n                    new_word.extend(word[i:])\n                    break\n\n                if word[i] == first and i < len(word)-1 and word[i+1] == second:\n                    new_word.append(first+second)\n                    i += 2\n                else:\n                    new_word.append(word[i])\n                    i += 1\n            new_word = tuple(new_word)\n            word = new_word\n            if len(word) == 1:\n                break\n            else:\n                pairs = get_pairs(word)\n        word = ' '.join(word)\n        self.cache[token] = word\n        return word\n\n    def encode(self, text):\n        bpe_tokens = []\n        tokens = []\n        for token in re.findall(self.pat, text):\n            token = ''.join(self.byte_encoder[b] for b in token.encode('utf-8'))\n            bpe_tokens.extend(self.encoder[bpe_token] for bpe_token in self.bpe(token).split(' '))\n            if token:\n                tokens.append(token)\n        return bpe_tokens, tokens\n\n    def decode(self, tokens):\n        text = ''.join([self.decoder[token] for token in tokens])\n        text = bytearray([self.byte_decoder[c] for c in text]).decode('utf-8', errors=self.errors)\n        return text\n        \n\ndef get_encoder(models_dir):\n    with open(os.path.join(models_dir, 'encoder.json'), 'r') as f:\n        encoder = json.load(f)\n    with open(os.path.join(models_dir, 'vocab.bpe'), 'r', encoding=\"utf-8\") as f:\n        bpe_data = f.read()\n    bpe_merges = [tuple(merge_str.split()) for merge_str in bpe_data.split('\\n')[1:-1]]\n    return Encoder(\n        encoder=encoder,\n        bpe_merges=bpe_merges,\n    )\n"
  },
  {
    "path": "examples/NLG/src/exp_utils.py",
    "content": "#  ------------------------------------------------------------------------------------------\n#  Copyright (c) Microsoft Corporation. All rights reserved.\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n#  ------------------------------------------------------------------------------------------\nimport functools\nimport os, shutil\nimport numpy as np\n\nimport torch\n\n\ndef logging(s, log_path, print_=True, log_=True):\n    if print_:\n        print(s)\n    if log_:\n        with open(log_path, 'a+') as f_log:\n            f_log.write(s + '\\n')\n\n\ndef get_logger(log_path, **kwargs):\n    return functools.partial(logging, log_path=log_path, **kwargs)\n\n\ndef create_exp_dir(dir_path, scripts_to_save=None, debug=False):\n    if debug:\n        print('Debug Mode : no experiment dir created')\n        return functools.partial(logging, log_path=None, log_=False)\n\n    if not os.path.exists(dir_path):\n        os.makedirs(dir_path)\n\n    print('Experiment dir : {}'.format(dir_path))\n    if scripts_to_save is not None:\n        script_path = os.path.join(dir_path, 'scripts')\n        if not os.path.exists(script_path):\n            os.makedirs(script_path)\n        for script in scripts_to_save:\n            dst_file = os.path.join(dir_path, 'scripts', os.path.basename(script))\n            shutil.copyfile(script, dst_file)\n\n    return get_logger(log_path=os.path.join(dir_path, 'log.txt'))\n\n\ndef save_checkpoint(model, optimizer, path, epoch):\n    torch.save(model, os.path.join(path, 'model_{}.pt'.format(epoch)))\n    torch.save(optimizer.state_dict(), os.path.join(path, 'optimizer_{}.pt'.format(epoch)))\n"
  },
  {
    "path": "examples/NLG/src/format_converting_dart.py",
    "content": "#  ------------------------------------------------------------------------------------------\n#  Copyright (c) Microsoft Corporation. All rights reserved.\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n#  ------------------------------------------------------------------------------------------\nimport sys\nimport io\nimport json\n\n\nwith open(sys.argv[1], 'r', encoding='utf8') as reader, \\\n     open(sys.argv[2], 'w', encoding='utf8') as writer :\n    lines_dict = json.load(reader)\n\n    full_rela_lst = []\n    full_src_lst = []\n    full_tgt_lst = []\n    unique_src = 0\n\n    for example in lines_dict:\n        rela_lst = []\n        temp_triples = ''\n        for i, tripleset in enumerate(example['tripleset']):\n            subj, rela, obj = tripleset\n            rela = rela.lower()\n            rela_lst.append(rela)\n            if i > 0:\n                temp_triples += ' | '\n            temp_triples += '{} : {} : {}'.format(subj, rela, obj)\n\n        unique_src += 1\n\n        for sent in example['annotations']:\n            full_tgt_lst.append(sent['text'])\n            full_src_lst.append(temp_triples)\n            full_rela_lst.append(rela_lst)\n\n    print('unique source is', unique_src)\n\n    for src, tgt in zip(full_src_lst, full_tgt_lst):\n        x = {}\n        x['context'] =  src # context #+ '||'\n        x['completion'] = tgt #completion\n        writer.write(json.dumps(x)+'\\n')"
  },
  {
    "path": "examples/NLG/src/format_converting_e2e.py",
    "content": "#  ------------------------------------------------------------------------------------------\n#  Copyright (c) Microsoft Corporation. All rights reserved.\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n#  ------------------------------------------------------------------------------------------\nimport sys\nimport io\nimport json\n\n\nwith open(sys.argv[1], 'r', encoding='utf8') as reader, \\\n\t open(sys.argv[2], 'w', encoding='utf8') as writer :\n\tfor line in reader:\n\t\titems = line.strip().split('||')\n\t\tcontext = items[0]\n\t\tcompletion = items[1].strip('\\n')\n\t\tx = {}\n\t\tx['context'] = context #+ '||'\n\t\tx['completion'] = completion\n\t\twriter.write(json.dumps(x)+'\\n')\n\n"
  },
  {
    "path": "examples/NLG/src/gpt2_beam.py",
    "content": "#  ------------------------------------------------------------------------------------------\r\n#  Copyright (c) Microsoft Corporation. All rights reserved.\r\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\r\n#  ------------------------------------------------------------------------------------------\r\nimport argparse\r\nimport time\r\nimport math\r\nimport os, sys\r\nimport json\r\nimport itertools\r\nfrom typing import Callable, Dict, Iterable, List, Optional, Tuple\r\n\r\nimport torch\r\nfrom torch import Tensor, device, dtype, nn\r\nfrom torch.nn import CrossEntropyLoss\r\nfrom torch.nn import functional as F\r\nfrom torch.utils.data import DataLoader\r\nimport torch.nn.functional as F\r\ntorch.set_printoptions(threshold=100000)\r\n\r\nimport numpy as np\r\n\r\nfrom gpu import (\r\n    add_gpu_params, \r\n    parse_gpu, \r\n    distributed_opt, \r\n    distributed_gather, \r\n    distributed_sync, \r\n    cleanup\r\n)\r\n\r\nfrom exp_utils import create_exp_dir\r\n\r\nfrom data_utils import FT_Dataset \r\nfrom model import GPT2Config, GPT2LMModel\r\n\r\n\r\nparser = argparse.ArgumentParser(description='PyTorch GPT2 beam decoding')\r\n\r\nadd_gpu_params(parser)\r\n\r\nparser.add_argument('--data', type=str, default='../data/wikitext-103',\r\n                    help='location of the data corpus')\r\n\r\nparser.add_argument('--batch_size', type=int, default=10,\r\n                    help='batch size')\r\n\r\nparser.add_argument('--seq_len', type=int, default=512,\r\n                    help='number of tokens to predict')\r\n\r\nparser.add_argument('--eval_len', type=int, default=256,\r\n                    help='evaluation length')\r\n\r\nparser.add_argument('--min_length', type=int, default=0,\r\n                    help='minimum generation length')\r\n\r\nparser.add_argument('--model_card', default='gpt2.sm', choices=['gpt2.sm', 'gpt2.md', 'gpt2.lg'],\r\n                    help='model names')\r\n\r\nparser.add_argument('--init_checkpoint', default=None, type=str, help='initial checkpoint')\r\n\r\nparser.add_argument('--lora_dim', type=int, default=0, help='lora attn dimension')\r\n\r\nparser.add_argument('--lora_alpha', type=int, default=128, help='lora attn alpha')\r\n\r\nparser.add_argument('--work_dir', type=str, default=os.getenv('PT_OUTPUT_DIR', 'gpt2_model'), \r\n                    help='working folder')\r\n\r\nparser.add_argument('--beam', type=int, default=1, help='beam search size')\r\n\r\nparser.add_argument('--length_penalty', type=float, default=1.0, help='length penalty')\r\n\r\nparser.add_argument('--no_repeat_ngram_size', type=int, default=4, help='no_repeat_ngram_size')\r\n\r\nparser.add_argument('--repetition_penalty', type=float, default=1.0, help='repetition_penalty')\r\n\r\nparser.add_argument('--eos_token_id', action='append', type=int, default=[50256], \r\n                    help='eos token id')\r\n\r\nparser.add_argument('--output_file', type=str, default='beam_prediction.jsonl', \r\n                    help='output file name')\r\n\r\n\r\ndef print_args(args):\r\n    if args.rank == 0:\r\n        print('=' * 100)\r\n        for k, v in args.__dict__.items():\r\n            print('        - {} : {}'.format(k, v))\r\n        print('=' * 100)\r\n\r\n\r\ndef _reorder_cache(past: Tuple, beam_idx: Tensor) -> Tuple[Tensor]:\r\n    return tuple(layer_past.index_select(1, beam_idx).contiguous().detach() for layer_past in past)\r\n\r\n\r\ndef _calc_banned_ngram_tokens(\r\n    prev_input_ids: Tensor, \r\n    num_hypos: int, \r\n    no_repeat_ngram_size: int, \r\n    cur_len: int\r\n) -> None:\r\n    \"\"\"Copied from fairseq for no_repeat_ngram in beam_search\"\"\"\r\n    if cur_len + 1 < no_repeat_ngram_size:\r\n        # return no banned tokens if we haven't generated no_repeat_ngram_size tokens yet\r\n        return [[] for _ in range(num_hypos)]\r\n    \r\n    generated_ngrams = [{} for _ in range(num_hypos)]\r\n    for idx in range(num_hypos):\r\n        gen_tokens = prev_input_ids[idx].tolist()\r\n        generated_ngram = generated_ngrams[idx]\r\n        for ngram in zip(*[gen_tokens[i:] for i in range(no_repeat_ngram_size)]):\r\n            prev_ngram_tuple = tuple(ngram[:-1])\r\n            generated_ngram[prev_ngram_tuple] = generated_ngram.get(prev_ngram_tuple, []) + [ngram[-1]]\r\n\r\n    def _get_generated_ngrams(hypo_idx):\r\n        # Before decoding the next token, prevent decoding of ngrams that have already appeared\r\n        start_idx = cur_len + 1 - no_repeat_ngram_size\r\n        ngram_idx = tuple(prev_input_ids[hypo_idx, start_idx:cur_len].tolist())\r\n        return generated_ngrams[hypo_idx].get(ngram_idx, [])\r\n\r\n    banned_tokens = [_get_generated_ngrams(hypo_idx) for hypo_idx in range(num_hypos)]\r\n    return banned_tokens\r\n\r\n\r\ndef _enforce_repetition_penalty_(\r\n    lprobs, \r\n    batch_size, \r\n    num_beams, \r\n    prev_output_tokens, \r\n    repetition_penalty\r\n):\r\n    \"\"\"repetition penalty (from CTRL paper https://arxiv.org/abs/1909.05858). \"\"\"\r\n\r\n    for i in range(batch_size * num_beams):\r\n        print('prev_output_tokens.shape', prev_output_tokens.shape)\r\n        print('prev_output_tokens[i].shape', prev_output_tokens[i].shape)\r\n\r\n        for previous_token in set(prev_output_tokens[i].tolist()):\r\n            # if score < 0 then repetition penalty has to multiplied to reduce the previous token probability\r\n            if lprobs[i, previous_token] < 0:\r\n                lprobs[i, previous_token] *= repetition_penalty\r\n            else:\r\n                lprobs[i, previous_token] /= repetition_penalty\r\n\r\ndef _postprocess_next_token_scores(\r\n    scores,\r\n    history,\r\n    cur_len,\r\n    batch_size,\r\n    num_beams,\r\n    repetition_penalty=1.0,                                \r\n    no_repeat_ngram_size=4,\r\n    bad_words_ids=None,\r\n    min_length=0,\r\n    max_length=100,\r\n    eos_token_id=None,\r\n):\r\n    # repetition penalty (from CTRL paper https://arxiv.org/abs/1909.05858)\r\n    if repetition_penalty != 1.0 and history is not None:\r\n        _enforce_repetition_penalty_(scores, batch_size, num_beams, history, repetition_penalty)\r\n\r\n    # score: batch_size * beam, vocab\r\n    # set eos token prob to zero if min_length is not reached\r\n    if eos_token_id is not None and cur_len < min_length:\r\n        for eos in eos_token_id:\r\n            scores[:, eos] = -float(\"inf\")\r\n\r\n    if no_repeat_ngram_size > 0 and history is not None:\r\n        # calculate a list of banned tokens to prevent repetitively generating the same ngrams\r\n        num_batch_hypotheses = batch_size * num_beams\r\n        # from fairseq: https://github.com/pytorch/fairseq/blob/a07cb6f40480928c9e0548b737aadd36ee66ac76/fairseq/sequence_generator.py#L345\r\n        banned_batch_tokens = _calc_banned_ngram_tokens(\r\n                history, num_batch_hypotheses, no_repeat_ngram_size, cur_len\r\n        )\r\n\r\n        for i, banned_tokens in enumerate(banned_batch_tokens):\r\n            scores[i, banned_tokens] = -float(\"inf\")\r\n\r\n    return scores\r\n\r\n\r\ndef _add_beam_candidate(\r\n    best_score, \r\n    best_sequence, \r\n    batch_size, \r\n    num_beams, \r\n    beam_scores, \r\n    history, \r\n    eos_token_id=None\r\n):\r\n    last_tokens = history[:, -1]\r\n    for _i in range(batch_size * num_beams):\r\n        if eos_token_id is None or last_tokens[_i] in eos_token_id:\r\n            cur_len = history.shape[-1]\r\n            _score = beam_scores.view(-1)[_i] / cur_len ** args.length_penalty\r\n\r\n            batch_id = _i // num_beams\r\n\r\n            if not batch_id in best_score or best_score[batch_id] < _score:\r\n                best_score[batch_id] = _score\r\n                best_sequence[batch_id][:cur_len] = history[_i]\r\n\r\n            beam_scores.view(-1)[_i] = -float(\"inf\")\r\n\r\n\r\ndef beam(model, data_iter, args):\r\n    model.eval()\r\n    total_loss = 0.\r\n    start_time = time.time()\r\n\r\n    all_predictions = {}\r\n    with torch.no_grad():\r\n        for idx, data in enumerate(data_iter):\r\n            data = {key: value for key, value in data.items()}\r\n\r\n            _id = data['id'].to(args.device)\r\n            _query = data['query'].to(args.device)\r\n            _query_len = data['query_len'].to(args.device)\r\n\r\n            ## local adaptation start.\r\n\r\n            ## local adaptation end.\r\n\r\n\r\n            output = None\r\n            score = None\r\n\r\n            batch_size = _id.size(0)\r\n            num_beams = args.beam\r\n            length_penalty = args.length_penalty\r\n\r\n            _batch = torch.arange(0, _id.size(0), device=args.device, dtype=torch.long)\r\n            \r\n            past = None\r\n            len_past = None\r\n\r\n            _query = _query.repeat(1, num_beams).view(batch_size * num_beams, -1)\r\n            _query_len = _query_len.unsqueeze(-1).repeat(1, num_beams).view(-1)\r\n\r\n            _bbatch = _batch.unsqueeze(-1).repeat(1, num_beams).view(-1)\r\n            \r\n            # scores for each sentence in the beam\r\n            beam_scores = torch.zeros(\r\n                (batch_size, num_beams), dtype=torch.float, device=_query.device\r\n            )\r\n\r\n            best_sequence = torch.zeros(\r\n                (batch_size, args.eval_len), dtype=torch.long, device=_query.device\r\n            )\r\n            best_score = {}\r\n\r\n            history = None\r\n            with torch.no_grad():\r\n                for i in range(0, args.eval_len):\r\n                    if i == 0:\r\n                        logits, past = model(_query) \r\n                        logits = logits[_bbatch, (_query_len-1).long(), :] # batch_size * beam, vocab\r\n                    else:\r\n                        #print('token_id.shape', token_id.shape, token_id)\r\n                        #print('past.shape', past[0].shape)\r\n                        #print('len_past.shape', len_past.shape, len_past)\r\n                        \r\n                        logits, past = model(token_id, past=past, len_past=len_past) \r\n                        logits = logits[:, -1, :]    # batch_size * beam, vocab\r\n\r\n                    logits = _postprocess_next_token_scores(           \r\n                        logits,\r\n                        history,\r\n                        i,\r\n                        batch_size,\r\n                        num_beams,\r\n                        repetition_penalty=args.repetition_penalty,                                \r\n                        no_repeat_ngram_size=args.no_repeat_ngram_size,\r\n                        min_length=args.min_length,\r\n                        eos_token_id=args.eos_token_id,\r\n                    )\r\n\r\n                    softmax_probs = F.softmax(logits, dim=-1)\r\n                    ##_prob, _w_idx = torch.topk(softmax_probs, num_beams) # batch_size, beam\r\n\r\n                    vocab_size = softmax_probs.shape[-1] \r\n                    \r\n\r\n                    _logprob = torch.log(softmax_probs) # batch_size * beam, vocab\r\n                    if i == 0:\r\n                        next_scores = _logprob.view(batch_size, num_beams, -1)[:, 0, :] # batch_size, vocab\r\n                        \r\n                    else:\r\n                        next_scores = beam_scores.unsqueeze(-1) + _logprob.view(batch_size, num_beams, -1)\r\n                        next_scores = next_scores.view(batch_size, -1) # batch_size, beam * vocab\r\n\r\n                    next_scores, next_tokens = torch.topk(\r\n                        next_scores, num_beams, dim=1, largest=True, sorted=True\r\n                    )     # batch_size, num_beams\r\n                    \r\n                    beam_id = (next_tokens // vocab_size).view(-1)    # batch_size * num_beams\r\n                    token_id = (next_tokens % vocab_size).view(-1).unsqueeze(-1) # batch_size, num_beams\r\n\r\n                    beam_idx = beam_id.view(batch_size, num_beams) + (_batch * num_beams).unsqueeze(-1)\r\n                    past = _reorder_cache(past, beam_idx.view(-1))                \r\n                    beam_scores = next_scores # batch_size, num_beams\r\n                    len_past = (_query_len + i).long()\r\n\r\n                    if history is None:\r\n                        history = token_id.detach()\r\n                    else:\r\n                        history = torch.cat((history[beam_idx.view(-1)], token_id.detach()), dim=1).detach()\r\n\r\n                    _add_beam_candidate(\r\n                        best_score, best_sequence, batch_size, num_beams, beam_scores, history, \r\n                        eos_token_id=args.eos_token_id\r\n                    )\r\n                \r\n                _add_beam_candidate(\r\n                    best_score, best_sequence, batch_size, num_beams, beam_scores, history\r\n                )\r\n\r\n\r\n            with torch.no_grad():\r\n                _id = distributed_gather(args, _id)\r\n                output = distributed_gather(args, best_sequence)\r\n                #score = distributed_gather(args, score)\r\n                distributed_sync(args)\r\n\r\n            if args.rank == 0:\r\n                _id = _id.view(-1).cpu()\r\n                output = output.view(-1, output.shape[-1]).cpu()\r\n                #score = score.view(-1, score.shape[-1]).cpu()\r\n\r\n                for _b in range(0, _id.shape[-1]):\r\n                    _i = int(_id[_b].item())\r\n                    all_predictions[_i] = {}\r\n                    all_predictions[_i]['id'] = _i\r\n                    all_predictions[_i]['predict'] = output[_b].tolist()\r\n                    #all_predictions[_i]['score'] = score[_b].tolist()\r\n\r\n                if idx % 10 == 0:\r\n                    print('inference samples', idx)\r\n\r\n    if args.rank == 0:\r\n        pred_file = os.path.join(args.work_dir, args.output_file) \r\n        print('saving prediction file', pred_file)\r\n        with open(pred_file, 'w') as writer:\r\n            for _i in all_predictions:\r\n                writer.write(json.dumps(all_predictions[_i]) + '\\n')\r\n    \r\n\r\nif __name__ == '__main__':\r\n    args = parser.parse_args()\r\n    parse_gpu(args)\r\n    print_args(args)\r\n    \r\n    if args.rank == 0:\r\n        args.logging = create_exp_dir(args.work_dir)\r\n\r\n    valid_data = FT_Dataset(\r\n        args.data, args.batch_size, args.seq_len, args.eval_len, \r\n    )    \r\n    valid_sampler = torch.utils.data.distributed.DistributedSampler(valid_data)\r\n    valid_loader = DataLoader(\r\n        valid_data, batch_size=args.batch_size, num_workers=0, shuffle=False, \r\n        pin_memory=False, drop_last=False, sampler=valid_sampler\r\n    )\r\n\r\n    if args.model_card == 'gpt2.sm':\r\n        config = GPT2Config(\r\n            n_embd=768, n_layer=12, n_head=12, \r\n            lora_attn_dim=args.lora_dim, lora_attn_alpha=args.lora_alpha,\r\n        )\r\n    elif args.model_card == 'gpt2.md':\r\n        config = GPT2Config(\r\n            n_embd=1024, n_layer=24, n_head=16, \r\n            lora_attn_dim=args.lora_dim, lora_attn_alpha=args.lora_alpha,\r\n        )\r\n    elif args.model_card == 'gpt2.lg':\r\n        config = GPT2Config(\r\n            n_embd=1280, n_layer=36, n_head=20, \r\n            lora_attn_dim=args.lora_dim, lora_attn_alpha=args.lora_alpha,\r\n        )\r\n\r\n    lm_net = GPT2LMModel(config)\r\n    if args.init_checkpoint is not None:\r\n        print('loading model pretrained weight.')\r\n        cp = torch.load(args.init_checkpoint, map_location=torch.device('cpu'))\r\n        lm_net.load_weight(cp)    \r\n    lm_net = lm_net.cuda()\r\n\r\n    print('model sampling ...')\r\n    beam(lm_net, valid_loader, args)\r\n    distributed_sync(args)\r\n    print('cleanup dist ...')\r\n    cleanup(args)\r\n"
  },
  {
    "path": "examples/NLG/src/gpt2_decode.py",
    "content": "#  ------------------------------------------------------------------------------------------\n#  Copyright (c) Microsoft Corporation. All rights reserved.\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n#  ------------------------------------------------------------------------------------------\nimport json\nimport numpy as np\nimport argparse\nimport os\nimport sys\nimport re\nimport json\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.parallel\nimport torch.backends.cudnn as cudnn\nimport torch.optim as optim\nimport torch.utils.data\n\nimport encoder\n\n\nparser = argparse.ArgumentParser()\n\nparser.add_argument('--vocab', type=str, default=None, help='vocab path')\n\nparser.add_argument('--sample_file', default=None, type=str, help='ft sample file')\nparser.add_argument('--input_file', default=None, type=str, help='ft input file')\n\nparser.add_argument('--output_ref_file', default=None, type=str, help='output reference file')\nparser.add_argument('--output_pred_file', default=None, type=str, help='output predicion file')\n\nparser.add_argument('--ref_unique_file', default=None, type=str, help='reference unique id file')\n\nparser.add_argument('--ref_type', default='e2e', choices=['e2e', 'webnlg', 'dart'], \n                    help='e2e style reference type; webnlg style reference type.')\nparser.add_argument('--ref_num', default=4, type=int, help='number of references.')\n\n\nparser.add_argument('--tokenize', action='store_true', help='')\nparser.add_argument('--lower', action='store_true', help='')\n\nparser.add_argument('--filter', default='all', choices=['all', 'seen', 'unseen'], \n                    help='for webnlg only, filter categories that are seen during training, unseen, or all')\n\nargs = parser.parse_args()\n\n\ndef stardard_tokenize(sent):\n    sent = ' '.join(re.split('(\\W)', sent))\n    sent = sent.split()\n    sent = ' '.join(sent)\n    return sent\n\n\ndef post_process(sent, is_tokenize, is_lower):\n    if is_lower:\n        sent = sent.lower()\n    if is_tokenize:\n        sent = stardard_tokenize(sent)\n\n    return sent\n\n\nif __name__ == \"__main__\":\n    enc = encoder.get_encoder(args.vocab)\n\n    ref_unique = None\n\n    if args.ref_unique_file is not None:\n        print('reading ref_unique_file.')\n        ref_unique = []\n        uniques = {}\n        with open(args.ref_unique_file, 'r') as ref_unique_reader:\n            for line in ref_unique_reader:\n                _id = int(line.strip())\n                ref_unique.append(_id)\n                uniques[_id] = 1\n        print('len refer dict', len(ref_unique), 'unique', len(uniques))\n\n    with open(args.sample_file, 'r') as sample_reader, \\\n             open(args.input_file, 'r', encoding='utf8') as input_reader, \\\n             open(args.output_pred_file, 'w', encoding='utf8') as pred_writer:\n\n        refer_dict = {}\n        context_list = []\n        line_id = 0\n        for line in input_reader:\n            items = json.loads(line.strip())\n            context = items['context']\n            completion = items['completion']\n\n            context_list.append(context)\n\n            keep = False\n\n            if args.filter == 'all':\n                keep = True\n            if args.filter == 'seen' and items['cate']: \n                keep = True\n            if args.filter == 'unseen' and not items['cate']:\n                keep = True\n\n            if ref_unique is None:\n                _key = context\n            else:\n                _key = ref_unique[line_id]\n\n            if keep:\n                if not _key in refer_dict:\n                    refer_dict[_key] = {}\n                    refer_dict[_key]['references'] = []\n                refer_dict[_key]['references'].append(completion.split('<|endoftext|>')[0].split('\\n\\n')[0].strip())\n\n            line_id += 1\n\n        print('unique refer dict', len(refer_dict))\n\n        for line in sample_reader:\n            items = json.loads(line.strip())\n            _id = items['id']\n            _pred_tokens = items['predict']\n\n            if ref_unique is None:\n                _key = context_list[_id]\n            else:\n                _key = ref_unique[_id]\n\n            #assert _key in refer_dict\n            if _key in refer_dict:\n                refer_dict[_key]['sample'] = enc.decode(_pred_tokens).split('<|endoftext|>')[0].split('\\n\\n')[0].strip() \n\n        references = [refer_dict[s]['references'] for s in refer_dict]\n        hypothesis = [refer_dict[s]['sample'] for s in refer_dict]\n\n        if args.ref_type == 'e2e':\n            with open(args.output_ref_file, 'w', encoding='utf8') as ref_writer:\n                for ref, hyp in zip(references, hypothesis):\n                    for r in ref:\n                        ref_writer.write(post_process(r, args.tokenize, args.lower) + '\\n')\n                    ref_writer.write('\\n')\n                    pred_writer.write(post_process(hyp, args.tokenize, args.lower) + '\\n')\n\n        elif args.ref_type in ['webnlg', 'dart']:\n            if not os.path.exists(args.output_ref_file):\n                os.makedirs(args.output_ref_file)\n\n            reference_writers = [\n                open(os.path.join(args.output_ref_file, f'reference{fid}'), 'w', encoding='utf8') \n                for fid in range(0, args.ref_num)\n            ] \n            \n            for ref, hyp in zip(references, hypothesis):\n                for fid in range(0, args.ref_num):\n                    if len(ref) > fid:\n                        reference_writers[fid].write(post_process(ref[fid], args.tokenize, args.lower) + '\\n')\n                    else:\n                        reference_writers[fid].write(post_process(ref[0], args.tokenize, args.lower) + '\\n')\n                pred_writer.write(post_process(hyp, args.tokenize, args.lower) + '\\n')\n                    \n            for writer in reference_writers:\n                writer.close()\n"
  },
  {
    "path": "examples/NLG/src/gpt2_encode.py",
    "content": "#  ------------------------------------------------------------------------------------------\n#  Copyright (c) Microsoft Corporation. All rights reserved.\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n#  ------------------------------------------------------------------------------------------\nimport json\nimport numpy as np\n\nimport encoder\n\nimport argparse\nimport os\nimport random\nimport torch\nimport torch.nn as nn\nimport torch.nn.parallel\nimport torch.backends.cudnn as cudnn\nimport torch.optim as optim\nimport torch.utils.data\n\nimport numpy\nimport io\nimport sys\nimport threading\nimport math\nimport random\n\nimport json\nimport collections\nfrom collections import Counter\nfrom collections import OrderedDict\nfrom progress.bar import Bar as Bar\n\n\nparser = argparse.ArgumentParser()\nparser.add_argument('--input', default=None, type=str, help='ft input file')\nparser.add_argument('--vocab', type=str, default=None, help='vocab path')\nparser.add_argument('--output', default=None, type=str, help='ft output file')\nparser.add_argument('--add_bos', action='store_true', help='')\nparser.add_argument('--add_eos', action='store_true', help='')\nargs = parser.parse_args()\n\n\nif __name__ == \"__main__\":\n    enc = encoder.get_encoder(args.vocab)\n    \n    writer = open(args.output, 'w')\n\n    with open(args.input, 'r') as reader:\n        line_idx = 0\n        for line in reader:\n            items = json.loads(line.strip())\n            context = items['context']\n            completion = items['completion']\n\n            bos = 50256\n            eos = 50256\n            context_bpes, _ = enc.encode(context) \n            context_bpes += [bos] if args.add_bos else []\n\n            completion_bpes, _ = enc.encode(' ' + completion)\n            completion_bpes += [eos] if args.add_eos else []\n\n            ft_json = {}\n            ft_json['context'] = context_bpes\n            ft_json['completion'] = completion_bpes \n            writer.write(json.dumps(ft_json)+'\\n')\n\n            line_idx += 1\n\n    writer.close()\n"
  },
  {
    "path": "examples/NLG/src/gpt2_ft.py",
    "content": "#  ------------------------------------------------------------------------------------------\r\n#  Copyright (c) Microsoft Corporation. All rights reserved.\r\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\r\n#  ------------------------------------------------------------------------------------------\r\nimport argparse\r\nimport time\r\nimport math\r\nimport os, sys\r\nimport numpy as np\r\nimport itertools\r\n\r\nimport torch\r\nimport random\r\nfrom torch.utils.data import DataLoader\r\ntorch.set_printoptions(threshold=100000)\r\n\r\nfrom gpu import (\r\n    add_gpu_params, \r\n    parse_gpu, \r\n    distributed_opt, \r\n    distributed_gather, \r\n    distributed_sync, \r\n    cleanup\r\n)\r\nfrom optimizer import (\r\n    create_adam_optimizer, \r\n    create_optimizer_scheduler, \r\n    add_optimizer_params, \r\n    create_adam_optimizer_from_args\r\n)\r\n\r\nfrom data_utils import FT_Dataset\r\nfrom model import GPT2Config, GPT2LMModel\r\nfrom exp_utils import create_exp_dir\r\n\r\nimport loralib as lora\r\n\r\nparser = argparse.ArgumentParser(description='PyTorch GPT2 ft script')\r\n\r\nadd_gpu_params(parser)\r\nadd_optimizer_params(parser)\r\n\r\nparser.add_argument('--train_data', required=True, help='location of training data corpus')\r\n\r\nparser.add_argument('--valid_data', required=True, help='location of validation data corpus')\r\n\r\nparser.add_argument('--train_batch_size', type=int, default=8, help='training batch size')\r\n\r\nparser.add_argument('--valid_batch_size', type=int, default=4, help='validation batch size')\r\n\r\nparser.add_argument('--grad_acc', type=int, default=1, help='gradient accumulation steps')\r\n\r\nparser.add_argument('--clip', type=float, default=0.0, help='gradient clip')\r\n\r\nparser.add_argument('--seq_len', type=int, default=512, help='number of tokens to predict.')\r\n\r\nparser.add_argument('--model_card', default='gpt2.md', choices=['gpt2.sm', 'gpt2.md', 'gpt2.lg'], \r\n                    help='model names')\r\n\r\nparser.add_argument('--init_checkpoint', default=None, help='pretrained checkpoint path')\r\n\r\nparser.add_argument('--fp16', action='store_true', help='train model with fp16')\r\n\r\nparser.add_argument('--log_interval', type=int, default=100, help='log interval')\r\n\r\nparser.add_argument('--eval_interval', type=int, default=2000, help='eval interval')\r\n\r\nparser.add_argument('--save_interval', type=int, default=500, help='save interval')\r\n\r\nparser.add_argument('--work_dir', type=str, default=os.getenv('PT_OUTPUT_DIR', 'gpt2_model'), \r\n                    help='working folder.')\r\n\r\nparser.add_argument('--lora_dim', type=int, default=0, help='lora attn dimension')\r\n\r\nparser.add_argument('--lora_alpha', type=int, default=128, help='lora attn alpha')\r\n\r\nparser.add_argument('--obj', default='clm', choices=['jlm', 'clm'], \r\n                    help='language model training objective')\r\n\r\nparser.add_argument('--lora_dropout', default=0.0, type=float, \r\n                    help='dropout probability for lora layers')\r\n\r\nparser.add_argument('--label_smooth', default=0.0, type=float, help='label smoothing')\r\n\r\nparser.add_argument('--roll_interval', type=int, default=-1, help='rolling interval')\r\n\r\nparser.add_argument('--roll_lr', type=float, default=0.00001, help='rolling learning rate')\r\n\r\nparser.add_argument('--roll_step', type=int, default=100, help='rolling step')\r\n\r\nparser.add_argument('--eval_epoch', type=int, default=1, help='eval per number of epochs')\r\n\r\n# influence model, calculate the influence score between two samples.\r\ndef print_args(args):\r\n    if args.rank == 0:\r\n        print('=' * 100)\r\n        for k, v in args.__dict__.items():\r\n            print(f'        - {k} : {v}')\r\n        print('=' * 100)\r\n\r\n\r\nclass AverageMeter(object):\r\n    \"\"\"Computes and stores the average and current value\r\n         Imported from https://github.com/pytorch/examples/blob/master/imagenet/main.py#L247-L262\r\n    \"\"\"\r\n    def __init__(self):\r\n        self.reset()\r\n\r\n    def reset(self):\r\n        self.val = 0\r\n        self.avg = 0\r\n        self.sum = 0\r\n        self.count = 0\r\n\r\n    def update(self, val, n=1):\r\n        self.val = val\r\n        self.sum += val * n\r\n        self.count += n\r\n        self.avg = self.sum / self.count\r\n\r\n\r\ndef optimizer_step(_loss, _optimizer, _model, _schedule, args, is_update=True):\r\n    if args.fp16:\r\n        with amp.scale_loss(_loss, _optimizer) as _scaled_loss:\r\n            _scaled_loss.backward()\r\n    else:\r\n        _loss.backward()\r\n\r\n    if is_update:\r\n        if args.clip > 0:\r\n            if args.fp16:\r\n                torch.nn.utils.clip_grad_norm_(amp.master_params(_optimizer), args.clip)\r\n            else:\r\n                torch.nn.utils.clip_grad_norm_(_model.parameters(), args.clip)\r\n\r\n        _optimizer.step()        \r\n        _optimizer.zero_grad()\r\n\r\n    if _schedule is not None:\r\n        _schedule.step()\r\n\r\n\r\ndef evaluate(model, valid_loader, args):\r\n    model.eval()\r\n    total_loss = 0.\r\n    start_time = time.time()\r\n\r\n    avg_lm_loss = AverageMeter()\r\n\r\n    with torch.no_grad():\r\n        for idx, data in enumerate(valid_loader):\r\n            data = {key: value for key, value in data.items()}\r\n\r\n            _input = data['input'].to(args.device)\r\n            _target = data['target'].to(args.device)\r\n            _msk = data['mask'].to(args.device)\r\n\r\n            _lm_logits, _loss = model(_input, lm_labels=_target, lm_mask=_msk) \r\n            loss = _loss.mean() \r\n            \r\n            avg_lm_loss.update(loss.item())\r\n\r\n            if idx % 100 == 0:\r\n                print('eval samples:', idx, 'loss:', loss.float())\r\n\r\n        total_time = time.time() - start_time\r\n        print('average loss', avg_lm_loss.avg)\r\n    return avg_lm_loss.avg, math.exp(avg_lm_loss.avg)\r\n\r\n\r\ndef train_validate(\r\n    model, \r\n    optimizer, \r\n    scheduler, \r\n    train_loader, \r\n    valid_loader, \r\n    args, \r\n    train_step=0, \r\n    epoch=0\r\n):\r\n    model.train()\r\n    avg_lm_loss = AverageMeter()\r\n    print('start to train the model................', epoch)\r\n    log_start_time = time.time()\r\n    best_val_ppl = None\r\n\r\n    train_loader.sampler.set_epoch(epoch)\r\n\r\n    for idx, data in enumerate(train_loader):\r\n        data = {key: value for key, value in data.items()}\r\n\r\n        _input = data['input'].to(args.device)\r\n        _target = data['target'].to(args.device)\r\n        _msk = data['mask'].to(args.device)\r\n\r\n        _lm_logits, _lm_loss = model(\r\n            _input, lm_labels=_target, lm_mask=_msk, label_smooth=args.label_smooth\r\n        ) \r\n\r\n        _lm_loss = _lm_loss.mean() \r\n\r\n        train_step += 1\r\n        is_update = True if train_step % args.grad_acc == 0 else False\r\n        avg_lm_loss.update(_lm_loss.item())\r\n        optimizer_step(\r\n            _lm_loss/(args.grad_acc), optimizer, model, scheduler, args, is_update=is_update\r\n        )\r\n        \r\n        if train_step % args.log_interval == 0: \r\n            elapsed = time.time() - log_start_time\r\n            lr = optimizer.param_groups[0]['lr']\r\n            log_str = f'| epoch {epoch:3d} step {train_step:>8d} | { idx + 1:>6d} batches | ' \\\r\n                      f'lr {lr:.3g} | ms/batch {elapsed * 1000 / args.log_interval:5.2f} | ' \\\r\n                      f'loss {avg_lm_loss.val:5.2f} | avg loss {avg_lm_loss.avg:5.2f} | ' \\\r\n                      f'ppl {math.exp(avg_lm_loss.avg):5.2f}'\r\n\r\n            if args.rank == 0: \r\n                print(log_str)\r\n            log_start_time = time.time()\r\n            avg_lm_loss.reset()\r\n        \r\n        if train_step % args.save_interval == 0: \r\n            if args.rank == 0:\r\n                model_path = os.path.join(args.work_dir, f'model.{train_step}.pt')\r\n                print('saving checkpoint', model_path)\r\n                torch.save({'model_state_dict': lora.lora_state_dict(model)}, model_path)\r\n            distributed_sync(args)\r\n\r\n        # evaluation interval\r\n        if train_step % args.eval_interval == 0:\r\n            eval_start_time = time.time()\r\n\r\n            valid_loss, valid_ppl = evaluate(model, valid_loader, args)\r\n\r\n            if best_val_ppl is None or valid_ppl < best_val_ppl:\r\n                best_val_ppl = valid_ppl\r\n                \r\n            log_str = f'| Eval {train_step // args.eval_interval:3d} at step {train_step:>8d} | ' \\\r\n                      f'time: {time.time() - eval_start_time:5.2f}s | valid loss {valid_loss:5.2f} | ' \\\r\n                      f'valid ppl {valid_ppl:5.2f} | best ppl {best_val_ppl:5.2f} '\r\n\r\n            if args.rank == 0:\r\n                print('-' * 100)\r\n                print(log_str)\r\n                print('-' * 100)\r\n\r\n            model.train()\r\n            distributed_sync(args)\r\n\r\n        if train_step == args.max_step:\r\n            break\r\n\r\n    if args.rank == 0:\r\n        model_path = os.path.join(args.work_dir, f'model.{train_step}.pt')\r\n        print('saving checkpoint', model_path)\r\n        torch.save({'model_state_dict': model.state_dict()}, model_path) \r\n    distributed_sync(args)\r\n    return train_step\r\n\r\n\r\nif __name__ == '__main__':\r\n    args = parser.parse_args()\r\n    parse_gpu(args)\r\n    print_args(args)\r\n\r\n    if args.fp16:\r\n        try:\r\n            from apex import amp\r\n        except Exception as e:\r\n            warnings.warn('Could not import amp, apex may not be installed')\r\n\r\n    torch.manual_seed(args.random_seed)\r\n    random.seed(args.random_seed)\r\n    \r\n    if args.rank == 0:\r\n        args.logging = create_exp_dir(args.work_dir)\r\n\r\n    train_data = FT_Dataset(\r\n        args.train_data, args.train_batch_size, args.seq_len, \r\n        joint_lm=args.obj=='jlm'\r\n    )     \r\n    \r\n    valid_data = FT_Dataset(\r\n        args.valid_data, args.valid_batch_size, args.seq_len,\r\n    )\r\n\r\n    train_loader = DataLoader(\r\n        train_data, batch_size=args.train_batch_size, num_workers=0, \r\n        shuffle=False, pin_memory=False, drop_last=True,\r\n        sampler=torch.utils.data.distributed.DistributedSampler(train_data, seed=args.random_seed)\r\n    )\r\n    \r\n    valid_loader = DataLoader(\r\n        valid_data, batch_size=args.valid_batch_size, num_workers=0, \r\n        shuffle=False, pin_memory=False, drop_last=False,\r\n        sampler=torch.utils.data.distributed.DistributedSampler(valid_data, seed=args.random_seed)\r\n    )\r\n\r\n    if args.model_card == 'gpt2.sm':\r\n        config = GPT2Config(\r\n            n_embd=768, n_layer=12, n_head=12, \r\n            lora_attn_dim=args.lora_dim, \r\n            lora_attn_alpha=args.lora_alpha, \r\n            lora_dropout=args.lora_dropout,\r\n        )\r\n    elif args.model_card == 'gpt2.md':\r\n        config = GPT2Config(\r\n            n_embd=1024, n_layer=24, n_head=16, \r\n            lora_attn_dim=args.lora_dim, \r\n            lora_attn_alpha=args.lora_alpha, \r\n            lora_dropout=args.lora_dropout,\r\n        )\r\n    elif args.model_card == 'gpt2.lg':\r\n        config = GPT2Config(\r\n            n_embd=1280, n_layer=36, n_head=20, \r\n            lora_attn_dim=args.lora_dim, \r\n            lora_attn_alpha=args.lora_alpha, \r\n            lora_dropout=args.lora_dropout,\r\n        )\r\n\r\n    lm_net = GPT2LMModel(config)\r\n    if args.init_checkpoint is not None:\r\n        print('loading model pretrained weight.')\r\n        lm_net.load_weight(torch.load(args.init_checkpoint))    \r\n\r\n    lm_net = lm_net.cuda()\r\n\r\n    if args.lora_dim > 0:\r\n        lora.mark_only_lora_as_trainable(lm_net)\r\n    optimizer = create_adam_optimizer_from_args(lm_net, args)\r\n\r\n    if args.max_step is None:\r\n        args.max_step = (args.max_epoch * train_data.num_batches + args.world_size - 1) // args.world_size\r\n        print('set max_step:', args.max_step)\r\n\r\n    scheduler = create_optimizer_scheduler(optimizer, args)\r\n    if args.fp16:\r\n        lm_net, optimizer = amp.initialize(lm_net, optimizer, opt_level=\"O1\")\r\n    lm_net, optimizer = distributed_opt(args, lm_net, optimizer, grad_acc=args.grad_acc)\r\n\r\n    try:\r\n        train_step = 0\r\n        for epoch in itertools.count(start=1):\r\n            train_step = train_validate(\r\n                lm_net, optimizer, scheduler, train_loader, valid_loader, args, \r\n                train_step=train_step, epoch=epoch\r\n            )\r\n            \r\n            if train_step >= args.max_step or (args.max_epoch is not None and epoch >= args.max_epoch):\r\n                if args.rank == 0:\r\n                    print('-' * 100)\r\n                    print('End of training')\r\n                break\r\n    except KeyboardInterrupt:\r\n        if args.rank == 0:\r\n            print('-' * 100)\r\n            print('Exiting from training early')\r\n\r\n    distributed_sync(args)\r\n    print('cleanup dist ...')\r\n    cleanup(args)\r\n"
  },
  {
    "path": "examples/NLG/src/gpu.py",
    "content": "#  ------------------------------------------------------------------------------------------\r\n#  Copyright (c) Microsoft Corporation. All rights reserved.\r\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\r\n#  ------------------------------------------------------------------------------------------\r\nimport argparse\r\nimport time\r\nimport math\r\nimport os, sys\r\nimport itertools\r\n\r\nimport numpy as np\r\n\r\nimport torch\r\nimport torch.nn as nn\r\nimport torch.optim as optim\r\nimport torch.distributed as dist\r\n\r\n\r\ndef add_gpu_params(parser: argparse.ArgumentParser):\r\n    parser.add_argument(\"--platform\", default='k8s', type=str, help='platform cloud')\r\n    parser.add_argument(\"--local_rank\", default=0, type=int, help='local rank')\r\n    parser.add_argument(\"--rank\", default=0, type=int, help='rank')\r\n    parser.add_argument(\"--device\", default=0, type=int, help='device')\r\n    parser.add_argument(\"--world_size\", default=0, type=int, help='world size')\r\n    parser.add_argument(\"--random_seed\", default=10, type=int, help='random seed')\r\n\r\n\r\ndef distributed_opt(args, model, opt, grad_acc=1):\r\n    if args.platform == 'azure':\r\n        args.hvd.broadcast_parameters(model.state_dict(), root_rank=0)\r\n        opt = args.hvd.DistributedOptimizer(\r\n            opt, named_parameters=model.named_parameters(), backward_passes_per_step=grad_acc\r\n        )\r\n    elif args.platform == 'philly' or args.platform == 'k8s' or args.platform == 'local':\r\n        model = torch.nn.parallel.DistributedDataParallel(\r\n            model, device_ids=[args.local_rank], output_device=args.local_rank, \r\n            find_unused_parameters=False, broadcast_buffers=False\r\n        )\r\n    return model, opt\r\n\r\n\r\ndef distributed_gather(args, tensor):\r\n    g_y = [torch.zeros_like(tensor) for _ in range(args.world_size)]\r\n    torch.distributed.all_gather(g_y, tensor, async_op=False)\r\n    return torch.stack(g_y)\r\n\r\n\r\ndef distributed_sync(args):\r\n    if args.platform == 'azure':\r\n        args.hvd.allreduce(torch.tensor(0), name='barrier')\r\n    else:\r\n        args.dist.barrier()\r\n\r\n\r\ndef parse_gpu(args):\r\n    torch.manual_seed(args.random_seed)\r\n    \r\n    if args.platform == 'local':\r\n        dist.init_process_group(backend='nccl')\r\n        local_rank = torch.distributed.get_rank()\r\n        torch.cuda.set_device(local_rank)\r\n        device = torch.device('cuda', local_rank)\r\n        args.rank = local_rank\r\n        args.device = device\r\n        args.world_size = torch.distributed.get_world_size()\r\n        args.dist = dist\r\n        \r\n    elif args.platform == 'azure':\r\n        import horovod.torch as hvd\r\n        hvd.init()\r\n        print('azure hvd rank', hvd.rank(), 'local rank', hvd.local_rank())\r\n        local_rank = hvd.local_rank()\r\n        torch.cuda.set_device(local_rank)\r\n        device = torch.device('cuda', local_rank)                                                 \r\n        rank = hvd.rank()\r\n        world_size = hvd.size()\r\n        \r\n        args.local_rank = local_rank\r\n        args.rank = rank\r\n        args.device = device\r\n        args.world_size = world_size\r\n        args.hvd = hvd\r\n\r\n    elif args.platform == 'philly':\r\n        local_rank = args.local_rank \r\n        torch.cuda.set_device(local_rank)\r\n        dist.init_process_group(backend='nccl')\r\n        rank = dist.get_rank()\r\n        world_size = torch.distributed.get_world_size()\r\n        device = torch.device('cuda', local_rank)     \r\n\r\n        args.rank = rank\r\n        args.device = device\r\n        args.world_size = world_size\r\n        args.dist = dist\r\n    elif args.platform == 'k8s':\r\n        master_uri = f\"tcp://{os.environ['MASTER_ADDR']}:{os.environ['MASTER_PORT']}\"\r\n        local_rank = int(os.environ['OMPI_COMM_WORLD_LOCAL_RANK'])\r\n        args.local_rank = local_rank\r\n        world_size = int(os.environ['OMPI_COMM_WORLD_SIZE'])\r\n        world_rank = int(os.environ['OMPI_COMM_WORLD_RANK'])\r\n        rank = world_rank\r\n        torch.cuda.set_device(local_rank)\r\n        \r\n        dist.init_process_group(\r\n                backend='nccl',\r\n                init_method=master_uri,\r\n                world_size=world_size,\r\n                rank=world_rank,\r\n        )\r\n        device = torch.device(\"cuda\", local_rank)\r\n        args.rank = rank\r\n        args.device = device\r\n        args.world_size = world_size\r\n        args.dist = dist\r\n    print(\r\n        'myrank:', args.rank, \r\n        'local_rank:', args.local_rank, \r\n        'device_count:', torch.cuda.device_count(), \r\n        'world_size:', args.world_size\r\n    )\r\n    \r\n    \r\ndef cleanup(args):\r\n    if args.platform == 'k8s' or args.platform == 'philly':\r\n        args.dist.destroy_process_group()\r\n"
  },
  {
    "path": "examples/NLG/src/optimizer.py",
    "content": "#  ------------------------------------------------------------------------------------------\r\n#  Copyright (c) Microsoft Corporation. All rights reserved.\r\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\r\n#  ------------------------------------------------------------------------------------------\r\nimport logging\r\nimport math\r\nimport os\r\nfrom collections import OrderedDict \r\nimport argparse\r\n\r\nimport torch\r\nfrom torch import nn\r\nfrom torch.nn import CrossEntropyLoss, MSELoss\r\nimport torch.nn.functional as F\r\nfrom torch.optim import Optimizer\r\nfrom torch.optim.lr_scheduler import LambdaLR, _LRScheduler\r\n\r\n\r\ndef add_optimizer_params(parser: argparse.ArgumentParser):\r\n    parser.add_argument('--lr', default=0.00001, type=float, help='learning rate')\r\n    parser.add_argument('--weight_decay', default=0.01, type=float, help='weight decay rate')\r\n    parser.add_argument('--correct_bias', action='store_true', help='correct adam bias term')\r\n    parser.add_argument('--adam_epislon', default=1e-6, type=float, help='adam epsilon')\r\n    parser.add_argument('--no_decay_bias', action='store_true', help='no weight decay on bias weigh')\r\n    parser.add_argument('--adam_beta1', default=0.9, type=float, help='adam beta1 term')\r\n    parser.add_argument('--adam_beta2', default=0.98, type=float, help='adam beta2 term')\r\n    \r\n    parser.add_argument('--scheduler', default='linear', type=str,\r\n                        choices=['cosine', 'inv_sqrt', 'dev_perf', 'constant', 'linear', 'cycle'],\r\n                        help='lr scheduler to use.')\r\n\r\n    parser.add_argument('--max_step', type=int, default=None, help='upper epoch limit')\r\n\r\n    parser.add_argument('--max_epoch', type=int, default=None, help='max epoch of training')\r\n\r\n    parser.add_argument('--warmup_step', type=int, default=0, help='upper epoch limit')\r\n\r\n    parser.add_argument('--i_steps', type=str, default='0', help='interval_steps')\r\n    parser.add_argument('--i_lrs', type=str, default='0.00025', help='interval_lrs')\r\n\r\n\r\nclass AdamW(Optimizer):\r\n    \"\"\" Implements Adam algorithm with weight decay fix.\r\n    Parameters:\r\n        lr (float): learning rate. Default 1e-3.\r\n        betas (tuple of 2 floats): Adams beta parameters (b1, b2). Default: (0.9, 0.98)\r\n        eps (float): Adams epsilon. Default: 1e-6\r\n        weight_decay (float): Weight decay. Default: 0.0\r\n        correct_bias (bool): can be set to False to avoid correcting bias in Adam (e.g. like in Bert TF repository). Default True.\r\n    \"\"\"\r\n    def __init__(self, params, lr=1e-3, betas=(0.9, 0.98), eps=1e-6, weight_decay=0.0, correct_bias=True):\r\n        if lr < 0.0:\r\n            raise ValueError(\"Invalid learning rate: {} - should be >= 0.0\".format(lr))\r\n        if not 0.0 <= betas[0] < 1.0:\r\n            raise ValueError(\"Invalid beta parameter: {} - should be in [0.0, 1.0[\".format(betas[0]))\r\n        if not 0.0 <= betas[1] < 1.0:\r\n            raise ValueError(\"Invalid beta parameter: {} - should be in [0.0, 1.0[\".format(betas[1]))\r\n        if not 0.0 <= eps:\r\n            raise ValueError(\"Invalid epsilon value: {} - should be >= 0.0\".format(eps))\r\n        defaults = dict(lr=lr, betas=betas, eps=eps, weight_decay=weight_decay, correct_bias=correct_bias)\r\n        super().__init__(params, defaults)\r\n\r\n\r\n    def reset_state(self):\r\n        for group in param_groups:\r\n            for p in group['params']:\r\n                state = self.state[p]\r\n                state['step'] = 0\r\n                state[\"exp_avg\"] = torch.zeros_like(p.data)\r\n                state[\"exp_avg_sq\"] = torch.zeros_like(p.data)\r\n\r\n    def step(self, closure=None):\r\n        \"\"\"Performs a single optimization step.\r\n        Arguments:\r\n            closure (callable, optional): A closure that reevaluates the model\r\n                and returns the loss.\r\n        \"\"\"\r\n        loss = None\r\n        if closure is not None:\r\n            loss = closure()\r\n        \r\n        for group in self.param_groups:\r\n            for p in group[\"params\"]:\r\n                if p.grad is None:\r\n                    continue\r\n                grad = p.grad.data\r\n                if grad.is_sparse:\r\n                    raise RuntimeError(\"Adam does not support sparse gradients, please consider SparseAdam instead\")\r\n\r\n                state = self.state[p]\r\n\r\n                # State initialization\r\n                if len(state) == 0:\r\n                    state[\"step\"] = 0\r\n                    # Exponential moving average of gradient values\r\n                    state[\"exp_avg\"] = torch.zeros_like(p.data)\r\n                    # Exponential moving average of squared gradient values\r\n                    state[\"exp_avg_sq\"] = torch.zeros_like(p.data)\r\n\r\n                exp_avg, exp_avg_sq = state[\"exp_avg\"], state[\"exp_avg_sq\"]\r\n                beta1, beta2 = group[\"betas\"]\r\n\r\n                state[\"step\"] += 1\r\n\r\n                # Decay the first and second moment running average coefficient\r\n                # In-place operations to update the averages at the same time\r\n                exp_avg.mul_(beta1).add_(grad, alpha=1.0 - beta1)\r\n                exp_avg_sq.mul_(beta2).addcmul_(grad, grad, value=1.0 - beta2)\r\n                denom = exp_avg_sq.sqrt().add_(group[\"eps\"])\r\n\r\n                step_size = group[\"lr\"]\r\n                if 'correct_bias' in group and group[\"correct_bias\"]:  # No bias correction for Bert\r\n                    bias_correction1 = 1.0 - beta1 ** state[\"step\"]\r\n                    bias_correction2 = 1.0 - beta2 ** state[\"step\"]\r\n                    step_size = step_size * math.sqrt(bias_correction2) / bias_correction1\r\n\r\n                p.data.addcdiv_(-step_size, exp_avg, denom)\r\n\r\n                # Just adding the square of the weights to the loss function is *not*\r\n                # the correct way of using L2 regularization/weight decay with Adam,\r\n                # since that will interact with the m and v parameters in strange ways.\r\n                #\r\n                # Instead we want to decay the weights in a manner that doesn't interact\r\n                # with the m/v parameters. This is equivalent to adding the square\r\n                # of the weights to the loss with plain (non-momentum) SGD.\r\n                # Add weight decay at the end (fixed version)\r\n                if group[\"weight_decay\"] > 0.0:\r\n                    p.data.add_(p.data, alpha=-group[\"lr\"] * group[\"weight_decay\"])\r\n\r\n        return loss\r\n\r\n\r\nclass CosineAnnealingWarmupRestarts(_LRScheduler):\r\n    \"\"\"\r\n        optimizer (Optimizer): Wrapped optimizer.\r\n        first_cycle_steps (int): First cycle step size.\r\n        cycle_mult(float): Cycle steps magnification. Default: -1.\r\n        max_lr(float): First cycle's max learning rate. Default: 0.1.\r\n        min_lr(float): Min learning rate. Default: 0.001.\r\n        warmup_steps(int): Linear warmup step size. Default: 0.\r\n        gamma(float): Decrease rate of max learning rate by cycle. Default: 1.\r\n        last_epoch (int): The index of last epoch. Default: -1.\r\n    \"\"\"\r\n    def __init__(\r\n        self,\r\n        optimizer : torch.optim.Optimizer,\r\n        max_lr : float = 0.1,\r\n        min_lr : float = 0.0,\r\n        warmup_steps : int = 0,\r\n        max_steps : int = 1,\r\n        alpha : float = 0.,\r\n        last_epoch : int = -1\r\n    ):\r\n        self.max_lr = max_lr # max learning rate in the current cycle\r\n        self.min_lr = min_lr # min learning rate\r\n        self.warmup_steps = warmup_steps # warmup step size\r\n        \r\n        self.alpha = alpha # decrease rate of max learning rate by cycle\r\n        self.max_steps = max_steps\r\n        super(CosineAnnealingWarmupRestarts, self).__init__(optimizer, last_epoch)\r\n        self.init_lr()\r\n    \r\n    def init_lr(self):\r\n        for param_group in self.optimizer.param_groups:\r\n            param_group['lr'] = self.min_lr\r\n    \r\n    def get_lr(self):\r\n        if self.last_epoch < self.warmup_steps:\r\n            curr_lr = self.max_lr * self.last_epoch / self.warmup_steps\r\n            return curr_lr\r\n        else:\r\n            _step = min(self.last_epoch, self.max_steps)\r\n            cosine_decay = 0.5 * (1 + math.cos(math.pi * _step / self.max_steps))\r\n            decayed = (1 - self.alpha) * cosine_decay + self.alpha\r\n            return self.max_lr * decayed # learning_rate * decayed\r\n\r\n    def step(self, epoch=None):\r\n        if epoch is None:\r\n            epoch = self.last_epoch + 1\r\n\r\n        self.last_epoch = math.floor(epoch)\r\n        _lr = self.get_lr()\r\n        for param_group in self.optimizer.param_groups: \r\n            param_group['lr'] = _lr\r\n\r\n\r\nclass CyclicScheduler(_LRScheduler):\r\n    def __init__(\r\n        self,\r\n        optimizer,\r\n        interval_steps = [],\r\n        interval_lrs = [],\r\n        last_epoch = -1,\r\n    ):        \r\n        self.optimizer = optimizer\r\n\r\n        self.interval_steps = interval_steps\r\n        self.interval_lrs = interval_lrs\r\n\r\n        self.last_epoch = last_epoch\r\n\r\n        super(CyclicScheduler, self).__init__(optimizer, last_epoch)\r\n        \r\n        self.init_lr()\r\n    \r\n    def init_lr(self):\r\n        for param_group in self.optimizer.param_groups:\r\n            param_group['lr'] = self.interval_lrs[0]\r\n    \r\n    def get_lr(self):\r\n        for _i in range(0, len(self.interval_steps)-1):\r\n            if self.last_epoch >= self.interval_steps[_i] and self.last_epoch < self.interval_steps[_i + 1]:\r\n                _alpha = (self.last_epoch - self.interval_steps[_i]) / (self.interval_steps[_i + 1] - self.interval_steps[_i] + 1e-6)\r\n                if _alpha < 0:\r\n                    _alpha = 0\r\n                if _alpha >= 1:\r\n                    _alpha = 1\r\n                curr_lr = _alpha * self.interval_lrs[_i + 1] + (1.0 - _alpha) * self.interval_lrs[_i]             \r\n                return curr_lr\r\n        return self.interval_lrs[-1]\r\n\r\n    def step(self, epoch=None):\r\n        if epoch is None:\r\n            epoch = self.last_epoch + 1\r\n\r\n        #self.max_lr = self.base_max_lr * (self.gamma**self.cycle)\r\n        self.last_epoch = math.floor(epoch)\r\n        _lr = self.get_lr()\r\n        for param_group in self.optimizer.param_groups: #, self.get_lr()):\r\n            param_group['lr'] = _lr\r\n\r\n\r\n\r\ndef get_linear_schedule_with_warmup(\r\n    optimizer, \r\n    num_warmup_steps, \r\n    num_training_steps, \r\n    last_epoch=-1\r\n):\r\n    \"\"\" Create a schedule with a learning rate that decreases linearly after\r\n    linearly increasing during a warmup period.\r\n    \"\"\"\r\n    def lr_lambda(current_step):\r\n        if current_step < num_warmup_steps:\r\n            return float(current_step) / float(max(1, num_warmup_steps))\r\n        return max(0.0, float(num_training_steps - current_step) / float(max(1, num_training_steps - num_warmup_steps)))\r\n    return LambdaLR(optimizer, lr_lambda, last_epoch)\r\n\r\n\r\ndef get_constant_schedule_with_warmup(\r\n    optimizer, \r\n    num_warmup_steps, \r\n    num_training_steps, \r\n    last_epoch=-1\r\n):\r\n    \"\"\" Create a schedule with a learning rate that decreases linearly after\r\n    linearly increasing during a warmup period.\r\n    \"\"\"\r\n    def lr_lambda(current_step):\r\n        if current_step < num_warmup_steps:\r\n            return float(current_step) / float(max(1, num_warmup_steps))\r\n        return 1.0\r\n    return LambdaLR(optimizer, lr_lambda, last_epoch)\r\n\r\n\r\ndef create_grouped_parameters(model, no_decay_bias): # args):\r\n    if not no_decay_bias:\r\n        optimizer_grouped_parameters = [\r\n        {\r\n            \"params\": [p for n, p in model.named_parameters()], # if not any(nd in n for nd in no_decay)],\r\n        }]\r\n    else:\r\n        no_decay = [\"bias\", \"layer_norm.weight\"]\r\n\r\n        optimizer_grouped_parameters = [\r\n        {\r\n            \"params\": [p for n, p in model.named_parameters() if not any(nd in n for nd in no_decay)],\r\n        },\r\n        {\r\n            \"params\": [p for n, p in model.named_parameters() if any(nd in n for nd in no_decay)], \r\n            \"weight_decay\": 0.0,\r\n        }]\r\n    return optimizer_grouped_parameters\r\n\r\n\r\ndef create_adam_optimizer(\r\n    model, \r\n    lr, \r\n    weight_decay, \r\n    optimizer_grouped_parameters=None, \r\n    beta1=0.9, \r\n    beta2=0.98, \r\n    correct_bias=True, \r\n    adam_epislon=1e-6, \r\n    no_decay_bias=False\r\n):\r\n    if optimizer_grouped_parameters is None:\r\n        optimizer_grouped_parameters = create_grouped_parameters(model, no_decay_bias)\r\n\r\n    optimizer = AdamW(\r\n        optimizer_grouped_parameters, \r\n        lr=lr, \r\n        betas=(beta1, beta2), \r\n        eps=adam_epislon, \r\n        weight_decay=weight_decay, \r\n        correct_bias=correct_bias\r\n    )\r\n    return optimizer\r\n\r\n\r\ndef create_sgd_optimizer(model, lr):\r\n    optimizer = torch.optim.SGD(model.parameters(), lr=lr, momentum=0.0)\r\n    return optimizer\r\n    \r\n\r\ndef create_adam_optimizer_from_args(model, args, grouped_parameters=None):\r\n    if grouped_parameters is None:\r\n        grouped_parameters = create_grouped_parameters(model, args.no_decay_bias)\r\n\r\n    optimizer = AdamW(\r\n        grouped_parameters, \r\n        lr=args.lr, \r\n        betas=(args.adam_beta1, args.adam_beta2), \r\n        eps=args.adam_epislon, \r\n        weight_decay=args.weight_decay, \r\n        correct_bias=args.correct_bias\r\n    )\r\n    return optimizer\r\n\r\n\r\ndef create_optimizer_scheduler(optimizer, args):\r\n    if args.scheduler == 'cosine':\r\n        scheduler = CosineAnnealingWarmupRestarts(\r\n            optimizer, \r\n            max_lr=args.lr, \r\n            min_lr=0.0, \r\n            warmup_steps=args.warmup_step, \r\n            max_steps=args.max_step, alpha=0\r\n        )\r\n    elif args.scheduler == 'linear':\r\n        scheduler = get_linear_schedule_with_warmup(\r\n            optimizer, args.warmup_step, args.max_step, last_epoch=-1\r\n        )\r\n    elif args.scheduler == 'cycle':\r\n        if args.i_steps is not None:\r\n            args.i_steps = [int(_i) for _i in args.i_steps.split(',')]\r\n            args.i_lrs = [float(_i) for _i in args.i_lrs.split(',')]\r\n        args.max_step = args.i_steps[-1]\r\n        print('max_step is rest to', args.max_step)\r\n        scheduler = CyclicScheduler(\r\n            optimizer, interval_steps=args.i_steps, interval_lrs=args.i_lrs\r\n        )\r\n    elif args.scheduler == 'constant':\r\n        scheduler = get_constant_schedule_with_warmup(\r\n            optimizer, args.warmup_step, args.max_step, last_epoch=-1\r\n        )\r\n    else:\r\n        # constant leanring rate.\r\n        scheduler = None\r\n    return scheduler\r\n"
  },
  {
    "path": "examples/NLG/vocab/config.json",
    "content": "{\n  \"activation_function\": \"gelu_new\",\n  \"architectures\": [\n    \"GPT2LMHeadModel\"\n  ],\n  \"attn_pdrop\": 0.1,\n  \"bos_token_id\": 50256,\n  \"embd_pdrop\": 0.1,\n  \"eos_token_id\": 50256,\n  \"initializer_range\": 0.02,\n  \"layer_norm_epsilon\": 1e-05,\n  \"model_type\": \"gpt2\",\n  \"n_ctx\": 1024,\n  \"n_embd\": 1024,\n  \"n_head\": 16,\n  \"n_layer\": 24,\n  \"n_positions\": 1024,\n  \"n_special\": 0,\n  \"predict_special_tokens\": true,\n  \"resid_pdrop\": 0.1,\n  \"summary_activation\": null,\n  \"summary_first_dropout\": 0.1,\n  \"summary_proj_to_labels\": true,\n  \"summary_type\": \"cls_index\",\n  \"summary_use_proj\": true,\n  \"task_specific_params\": {\n    \"text-generation\": {\n      \"do_sample\": true,\n      \"max_length\": 50\n    }\n  },\n  \"vocab_size\": 50257\n}"
  },
  {
    "path": "examples/NLG/vocab/tokenizer.json",
    "content": "{\"version\":\"1.0\",\"truncation\":null,\"padding\":null,\"added_tokens\":[{\"id\":50256,\"special\":true,\"content\":\"<|endoftext|>\",\"single_word\":false,\"lstrip\":false,\"rstrip\":false,\"normalized\":true}],\"normalizer\":null,\"pre_tokenizer\":{\"type\":\"ByteLevel\",\"add_prefix_space\":false,\"trim_offsets\":true},\"post_processor\":{\"type\":\"ByteLevel\",\"add_prefix_space\":true,\"trim_offsets\":false},\"decoder\":{\"type\":\"ByteLevel\",\"add_prefix_space\":true,\"trim_offsets\":true},\"model\":{\"dropout\":null,\"unk_token\":null,\"continuing_subword_prefix\":\"\",\"end_of_word_suffix\":\"\",\"fuse_unk\":false,\"vocab\":{\"!\":0,\"\\\"\":1,\"#\":2,\"$\":3,\"%\":4,\"&\":5,\"'\":6,\"(\":7,\")\":8,\"*\":9,\"+\":10,\",\":11,\"-\":12,\".\":13,\"/\":14,\"0\":15,\"1\":16,\"2\":17,\"3\":18,\"4\":19,\"5\":20,\"6\":21,\"7\":22,\"8\":23,\"9\":24,\":\":25,\";\":26,\"<\":27,\"=\":28,\">\":29,\"?\":30,\"@\":31,\"A\":32,\"B\":33,\"C\":34,\"D\":35,\"E\":36,\"F\":37,\"G\":38,\"H\":39,\"I\":40,\"J\":41,\"K\":42,\"L\":43,\"M\":44,\"N\":45,\"O\":46,\"P\":47,\"Q\":48,\"R\":49,\"S\":50,\"T\":51,\"U\":52,\"V\":53,\"W\":54,\"X\":55,\"Y\":56,\"Z\":57,\"[\":58,\"\\\\\":59,\"]\":60,\"^\":61,\"_\":62,\"`\":63,\"a\":64,\"b\":65,\"c\":66,\"d\":67,\"e\":68,\"f\":69,\"g\":70,\"h\":71,\"i\":72,\"j\":73,\"k\":74,\"l\":75,\"m\":76,\"n\":77,\"o\":78,\"p\":79,\"q\":80,\"r\":81,\"s\":82,\"t\":83,\"u\":84,\"v\":85,\"w\":86,\"x\":87,\"y\":88,\"z\":89,\"{\":90,\"|\":91,\"}\":92,\"~\":93,\"¡\":94,\"¢\":95,\"£\":96,\"¤\":97,\"¥\":98,\"¦\":99,\"§\":100,\"¨\":101,\"©\":102,\"ª\":103,\"«\":104,\"¬\":105,\"®\":106,\"¯\":107,\"°\":108,\"±\":109,\"²\":110,\"³\":111,\"´\":112,\"µ\":113,\"¶\":114,\"·\":115,\"¸\":116,\"¹\":117,\"º\":118,\"»\":119,\"¼\":120,\"½\":121,\"¾\":122,\"¿\":123,\"À\":124,\"Á\":125,\"Â\":126,\"Ã\":127,\"Ä\":128,\"Å\":129,\"Æ\":130,\"Ç\":131,\"È\":132,\"É\":133,\"Ê\":134,\"Ë\":135,\"Ì\":136,\"Í\":137,\"Î\":138,\"Ï\":139,\"Ð\":140,\"Ñ\":141,\"Ò\":142,\"Ó\":143,\"Ô\":144,\"Õ\":145,\"Ö\":146,\"×\":147,\"Ø\":148,\"Ù\":149,\"Ú\":150,\"Û\":151,\"Ü\":152,\"Ý\":153,\"Þ\":154,\"ß\":155,\"à\":156,\"á\":157,\"â\":158,\"ã\":159,\"ä\":160,\"å\":161,\"æ\":162,\"ç\":163,\"è\":164,\"é\":165,\"ê\":166,\"ë\":167,\"ì\":168,\"í\":169,\"î\":170,\"ï\":171,\"ð\":172,\"ñ\":173,\"ò\":174,\"ó\":175,\"ô\":176,\"õ\":177,\"ö\":178,\"÷\":179,\"ø\":180,\"ù\":181,\"ú\":182,\"û\":183,\"ü\":184,\"ý\":185,\"þ\":186,\"ÿ\":187,\"Ā\":188,\"ā\":189,\"Ă\":190,\"ă\":191,\"Ą\":192,\"ą\":193,\"Ć\":194,\"ć\":195,\"Ĉ\":196,\"ĉ\":197,\"Ċ\":198,\"ċ\":199,\"Č\":200,\"č\":201,\"Ď\":202,\"ď\":203,\"Đ\":204,\"đ\":205,\"Ē\":206,\"ē\":207,\"Ĕ\":208,\"ĕ\":209,\"Ė\":210,\"ė\":211,\"Ę\":212,\"ę\":213,\"Ě\":214,\"ě\":215,\"Ĝ\":216,\"ĝ\":217,\"Ğ\":218,\"ğ\":219,\"Ġ\":220,\"ġ\":221,\"Ģ\":222,\"ģ\":223,\"Ĥ\":224,\"ĥ\":225,\"Ħ\":226,\"ħ\":227,\"Ĩ\":228,\"ĩ\":229,\"Ī\":230,\"ī\":231,\"Ĭ\":232,\"ĭ\":233,\"Į\":234,\"į\":235,\"İ\":236,\"ı\":237,\"Ĳ\":238,\"ĳ\":239,\"Ĵ\":240,\"ĵ\":241,\"Ķ\":242,\"ķ\":243,\"ĸ\":244,\"Ĺ\":245,\"ĺ\":246,\"Ļ\":247,\"ļ\":248,\"Ľ\":249,\"ľ\":250,\"Ŀ\":251,\"ŀ\":252,\"Ł\":253,\"ł\":254,\"Ń\":255,\"Ġt\":256,\"Ġa\":257,\"he\":258,\"in\":259,\"re\":260,\"on\":261,\"Ġthe\":262,\"er\":263,\"Ġs\":264,\"at\":265,\"Ġw\":266,\"Ġo\":267,\"en\":268,\"Ġc\":269,\"it\":270,\"is\":271,\"an\":272,\"or\":273,\"es\":274,\"Ġb\":275,\"ed\":276,\"Ġf\":277,\"ing\":278,\"Ġp\":279,\"ou\":280,\"Ġan\":281,\"al\":282,\"ar\":283,\"Ġto\":284,\"Ġm\":285,\"Ġof\":286,\"Ġin\":287,\"Ġd\":288,\"Ġh\":289,\"Ġand\":290,\"ic\":291,\"as\":292,\"le\":293,\"Ġth\":294,\"ion\":295,\"om\":296,\"ll\":297,\"ent\":298,\"Ġn\":299,\"Ġl\":300,\"st\":301,\"Ġre\":302,\"ve\":303,\"Ġe\":304,\"ro\":305,\"ly\":306,\"Ġbe\":307,\"Ġg\":308,\"ĠT\":309,\"ct\":310,\"ĠS\":311,\"id\":312,\"ot\":313,\"ĠI\":314,\"ut\":315,\"et\":316,\"ĠA\":317,\"Ġis\":318,\"Ġon\":319,\"im\":320,\"am\":321,\"ow\":322,\"ay\":323,\"ad\":324,\"se\":325,\"Ġthat\":326,\"ĠC\":327,\"ig\":328,\"Ġfor\":329,\"ac\":330,\"Ġy\":331,\"ver\":332,\"ur\":333,\"Ġu\":334,\"ld\":335,\"Ġst\":336,\"ĠM\":337,\"'s\":338,\"Ġhe\":339,\"Ġit\":340,\"ation\":341,\"ith\":342,\"ir\":343,\"ce\":344,\"Ġyou\":345,\"il\":346,\"ĠB\":347,\"Ġwh\":348,\"ol\":349,\"ĠP\":350,\"Ġwith\":351,\"Ġ1\":352,\"ter\":353,\"ch\":354,\"Ġas\":355,\"Ġwe\":356,\"Ġ(\":357,\"nd\":358,\"ill\":359,\"ĠD\":360,\"if\":361,\"Ġ2\":362,\"ag\":363,\"ers\":364,\"ke\":365,\"Ġ\\\"\":366,\"ĠH\":367,\"em\":368,\"Ġcon\":369,\"ĠW\":370,\"ĠR\":371,\"her\":372,\"Ġwas\":373,\"Ġr\":374,\"od\":375,\"ĠF\":376,\"ul\":377,\"ate\":378,\"Ġat\":379,\"ri\":380,\"pp\":381,\"ore\":382,\"ĠThe\":383,\"Ġse\":384,\"us\":385,\"Ġpro\":386,\"Ġha\":387,\"um\":388,\"Ġare\":389,\"Ġde\":390,\"ain\":391,\"and\":392,\"Ġor\":393,\"igh\":394,\"est\":395,\"ist\":396,\"ab\":397,\"rom\":398,\"ĠN\":399,\"th\":400,\"Ġcom\":401,\"ĠG\":402,\"un\":403,\"op\":404,\"00\":405,\"ĠL\":406,\"Ġnot\":407,\"ess\":408,\"Ġex\":409,\"Ġv\":410,\"res\":411,\"ĠE\":412,\"ew\":413,\"ity\":414,\"ant\":415,\"Ġby\":416,\"el\":417,\"os\":418,\"ort\":419,\"oc\":420,\"qu\":421,\"Ġfrom\":422,\"Ġhave\":423,\"Ġsu\":424,\"ive\":425,\"ould\":426,\"Ġsh\":427,\"Ġthis\":428,\"nt\":429,\"ra\":430,\"pe\":431,\"ight\":432,\"art\":433,\"ment\":434,\"Ġal\":435,\"ust\":436,\"end\":437,\"--\":438,\"all\":439,\"ĠO\":440,\"ack\":441,\"Ġch\":442,\"Ġle\":443,\"ies\":444,\"red\":445,\"ard\":446,\"âĢ\":447,\"out\":448,\"ĠJ\":449,\"Ġab\":450,\"ear\":451,\"iv\":452,\"ally\":453,\"our\":454,\"ost\":455,\"gh\":456,\"pt\":457,\"Ġpl\":458,\"ast\":459,\"Ġcan\":460,\"ak\":461,\"ome\":462,\"ud\":463,\"The\":464,\"Ġhis\":465,\"Ġdo\":466,\"Ġgo\":467,\"Ġhas\":468,\"ge\":469,\"'t\":470,\"ĠU\":471,\"rou\":472,\"Ġsa\":473,\"Ġj\":474,\"Ġbut\":475,\"Ġwor\":476,\"Ġall\":477,\"ect\":478,\"Ġk\":479,\"ame\":480,\"Ġwill\":481,\"ok\":482,\"Ġwhe\":483,\"Ġthey\":484,\"ide\":485,\"01\":486,\"ff\":487,\"ich\":488,\"pl\":489,\"ther\":490,\"Ġtr\":491,\"..\":492,\"Ġint\":493,\"ie\":494,\"ure\":495,\"age\":496,\"Ġne\":497,\"ial\":498,\"ap\":499,\"ine\":500,\"ice\":501,\"Ġme\":502,\"Ġout\":503,\"ans\":504,\"one\":505,\"ong\":506,\"ions\":507,\"Ġwho\":508,\"ĠK\":509,\"Ġup\":510,\"Ġtheir\":511,\"Ġad\":512,\"Ġ3\":513,\"Ġus\":514,\"ated\":515,\"ous\":516,\"Ġmore\":517,\"ue\":518,\"og\":519,\"ĠSt\":520,\"ind\":521,\"ike\":522,\"Ġso\":523,\"ime\":524,\"per\":525,\".\\\"\":526,\"ber\":527,\"iz\":528,\"act\":529,\"Ġone\":530,\"Ġsaid\":531,\"Ġ-\":532,\"are\":533,\"Ġyour\":534,\"cc\":535,\"ĠTh\":536,\"Ġcl\":537,\"ep\":538,\"ake\":539,\"able\":540,\"ip\":541,\"Ġcont\":542,\"Ġwhich\":543,\"ia\":544,\"Ġim\":545,\"Ġabout\":546,\"Ġwere\":547,\"very\":548,\"ub\":549,\"Ġhad\":550,\"Ġen\":551,\"Ġcomp\":552,\",\\\"\":553,\"ĠIn\":554,\"Ġun\":555,\"Ġag\":556,\"ire\":557,\"ace\":558,\"au\":559,\"ary\":560,\"Ġwould\":561,\"ass\":562,\"ry\":563,\"ĠâĢ\":564,\"cl\":565,\"ook\":566,\"ere\":567,\"so\":568,\"ĠV\":569,\"ign\":570,\"ib\":571,\"Ġoff\":572,\"Ġte\":573,\"ven\":574,\"ĠY\":575,\"ile\":576,\"ose\":577,\"ite\":578,\"orm\":579,\"Ġ201\":580,\"Ġres\":581,\"Ġman\":582,\"Ġper\":583,\"Ġother\":584,\"ord\":585,\"ult\":586,\"Ġbeen\":587,\"Ġlike\":588,\"ase\":589,\"ance\":590,\"ks\":591,\"ays\":592,\"own\":593,\"ence\":594,\"Ġdis\":595,\"ction\":596,\"Ġany\":597,\"Ġapp\":598,\"Ġsp\":599,\"int\":600,\"ress\":601,\"ations\":602,\"ail\":603,\"Ġ4\":604,\"ical\":605,\"Ġthem\":606,\"Ġher\":607,\"ount\":608,\"ĠCh\":609,\"Ġar\":610,\"Ġif\":611,\"Ġthere\":612,\"Ġpe\":613,\"Ġyear\":614,\"av\":615,\"Ġmy\":616,\"Ġsome\":617,\"Ġwhen\":618,\"ough\":619,\"ach\":620,\"Ġthan\":621,\"ru\":622,\"ond\":623,\"ick\":624,\"Ġover\":625,\"vel\":626,\"Ġqu\":627,\"ĊĊ\":628,\"Ġsc\":629,\"reat\":630,\"ree\":631,\"ĠIt\":632,\"ound\":633,\"port\":634,\"Ġalso\":635,\"Ġpart\":636,\"fter\":637,\"Ġkn\":638,\"Ġbec\":639,\"Ġtime\":640,\"ens\":641,\"Ġ5\":642,\"ople\":643,\"Ġwhat\":644,\"Ġno\":645,\"du\":646,\"mer\":647,\"ang\":648,\"Ġnew\":649,\"----\":650,\"Ġget\":651,\"ory\":652,\"ition\":653,\"ings\":654,\"Ġjust\":655,\"Ġinto\":656,\"Ġ0\":657,\"ents\":658,\"ove\":659,\"te\":660,\"Ġpeople\":661,\"Ġpre\":662,\"Ġits\":663,\"Ġrec\":664,\"Ġtw\":665,\"ian\":666,\"irst\":667,\"ark\":668,\"ors\":669,\"Ġwork\":670,\"ade\":671,\"ob\":672,\"Ġshe\":673,\"Ġour\":674,\"wn\":675,\"ink\":676,\"lic\":677,\"Ġ19\":678,\"ĠHe\":679,\"ish\":680,\"nder\":681,\"ause\":682,\"Ġhim\":683,\"ons\":684,\"Ġ[\":685,\"Ġro\":686,\"form\":687,\"ild\":688,\"ates\":689,\"vers\":690,\"Ġonly\":691,\"oll\":692,\"Ġspe\":693,\"ck\":694,\"ell\":695,\"amp\":696,\"Ġacc\":697,\"Ġbl\":698,\"ious\":699,\"urn\":700,\"ft\":701,\"ood\":702,\"Ġhow\":703,\"hed\":704,\"Ġ'\":705,\"Ġafter\":706,\"aw\":707,\"Ġatt\":708,\"ov\":709,\"ne\":710,\"Ġplay\":711,\"erv\":712,\"ict\":713,\"Ġcould\":714,\"itt\":715,\"Ġam\":716,\"Ġfirst\":717,\"Ġ6\":718,\"Ġact\":719,\"Ġ$\":720,\"ec\":721,\"hing\":722,\"ual\":723,\"ull\":724,\"Ġcomm\":725,\"oy\":726,\"old\":727,\"ces\":728,\"ater\":729,\"Ġfe\":730,\"Ġbet\":731,\"we\":732,\"iff\":733,\"Ġtwo\":734,\"ock\":735,\"Ġback\":736,\").\":737,\"ident\":738,\"Ġunder\":739,\"rough\":740,\"sel\":741,\"xt\":742,\"Ġmay\":743,\"round\":744,\"Ġpo\":745,\"ph\":746,\"iss\":747,\"Ġdes\":748,\"Ġmost\":749,\"Ġdid\":750,\"Ġadd\":751,\"ject\":752,\"Ġinc\":753,\"fore\":754,\"Ġpol\":755,\"ont\":756,\"Ġagain\":757,\"clud\":758,\"tern\":759,\"Ġknow\":760,\"Ġneed\":761,\"Ġcons\":762,\"Ġco\":763,\"Ġ.\":764,\"Ġwant\":765,\"Ġsee\":766,\"Ġ7\":767,\"ning\":768,\"iew\":769,\"ĠThis\":770,\"ced\":771,\"Ġeven\":772,\"Ġind\":773,\"ty\":774,\"ĠWe\":775,\"ath\":776,\"Ġthese\":777,\"Ġpr\":778,\"Ġuse\":779,\"Ġbecause\":780,\"Ġfl\":781,\"ng\":782,\"Ġnow\":783,\"ĠâĢĵ\":784,\"com\":785,\"ise\":786,\"Ġmake\":787,\"Ġthen\":788,\"ower\":789,\"Ġevery\":790,\"ĠUn\":791,\"Ġsec\":792,\"oss\":793,\"uch\":794,\"Ġem\":795,\"Ġ=\":796,\"ĠRe\":797,\"ied\":798,\"rit\":799,\"Ġinv\":800,\"lect\":801,\"Ġsupp\":802,\"ating\":803,\"Ġlook\":804,\"man\":805,\"pect\":806,\"Ġ8\":807,\"row\":808,\"Ġbu\":809,\"Ġwhere\":810,\"ific\":811,\"Ġyears\":812,\"ily\":813,\"Ġdiff\":814,\"Ġshould\":815,\"Ġrem\":816,\"Th\":817,\"In\":818,\"Ġev\":819,\"day\":820,\"'re\":821,\"rib\":822,\"Ġrel\":823,\"ss\":824,\"Ġdef\":825,\"Ġright\":826,\"Ġsy\":827,\"),\":828,\"les\":829,\"000\":830,\"hen\":831,\"Ġthrough\":832,\"ĠTr\":833,\"__\":834,\"Ġway\":835,\"Ġdon\":836,\"Ġ,\":837,\"Ġ10\":838,\"ased\":839,\"Ġass\":840,\"ublic\":841,\"Ġreg\":842,\"ĠAnd\":843,\"ix\":844,\"Ġvery\":845,\"Ġinclud\":846,\"other\":847,\"Ġimp\":848,\"oth\":849,\"Ġsub\":850,\"ĠâĢĶ\":851,\"Ġbeing\":852,\"arg\":853,\"ĠWh\":854,\"==\":855,\"ible\":856,\"Ġdoes\":857,\"ange\":858,\"ram\":859,\"Ġ9\":860,\"ert\":861,\"ps\":862,\"ited\":863,\"ational\":864,\"Ġbr\":865,\"Ġdown\":866,\"Ġmany\":867,\"aking\":868,\"Ġcall\":869,\"uring\":870,\"ities\":871,\"Ġph\":872,\"ics\":873,\"als\":874,\"Ġdec\":875,\"ative\":876,\"ener\":877,\"Ġbefore\":878,\"ility\":879,\"Ġwell\":880,\"Ġmuch\":881,\"erson\":882,\"Ġthose\":883,\"Ġsuch\":884,\"Ġke\":885,\"Ġend\":886,\"ĠBut\":887,\"ason\":888,\"ting\":889,\"Ġlong\":890,\"ef\":891,\"Ġthink\":892,\"ys\":893,\"Ġbel\":894,\"Ġsm\":895,\"its\":896,\"ax\":897,\"Ġown\":898,\"Ġprov\":899,\"Ġset\":900,\"ife\":901,\"ments\":902,\"ble\":903,\"ward\":904,\"Ġshow\":905,\"Ġpres\":906,\"ms\":907,\"omet\":908,\"Ġob\":909,\"Ġsay\":910,\"ĠSh\":911,\"ts\":912,\"ful\":913,\"Ġeff\":914,\"Ġgu\":915,\"Ġinst\":916,\"und\":917,\"ren\":918,\"cess\":919,\"Ġent\":920,\"ĠYou\":921,\"Ġgood\":922,\"Ġstart\":923,\"ince\":924,\"Ġmade\":925,\"tt\":926,\"stem\":927,\"olog\":928,\"up\":929,\"Ġ|\":930,\"ump\":931,\"Ġhel\":932,\"vern\":933,\"ular\":934,\"ually\":935,\"Ġac\":936,\"Ġmon\":937,\"Ġlast\":938,\"Ġ200\":939,\"10\":940,\"Ġstud\":941,\"ures\":942,\"ĠAr\":943,\"self\":944,\"ars\":945,\"meric\":946,\"ues\":947,\"cy\":948,\"Ġmin\":949,\"ollow\":950,\"Ġcol\":951,\"io\":952,\"Ġmod\":953,\"Ġcount\":954,\"ĠCom\":955,\"hes\":956,\"Ġfin\":957,\"air\":958,\"ier\":959,\"âĢĶ\":960,\"read\":961,\"ank\":962,\"atch\":963,\"ever\":964,\"Ġstr\":965,\"Ġpoint\":966,\"ork\":967,\"ĠNew\":968,\"Ġsur\":969,\"ool\":970,\"alk\":971,\"ement\":972,\"Ġused\":973,\"ract\":974,\"ween\":975,\"Ġsame\":976,\"oun\":977,\"ĠAl\":978,\"ci\":979,\"Ġdiffere\":980,\"Ġwhile\":981,\"--------\":982,\"Ġgame\":983,\"cept\":984,\"Ġsim\":985,\"...\":986,\"Ġinter\":987,\"ek\":988,\"Ġreport\":989,\"Ġprodu\":990,\"Ġstill\":991,\"led\":992,\"ah\":993,\"Ġhere\":994,\"Ġworld\":995,\"Ġthough\":996,\"Ġnum\":997,\"arch\":998,\"imes\":999,\"ale\":1000,\"ĠSe\":1001,\"ĠIf\":1002,\"//\":1003,\"ĠLe\":1004,\"Ġret\":1005,\"Ġref\":1006,\"Ġtrans\":1007,\"ner\":1008,\"ution\":1009,\"ters\":1010,\"Ġtake\":1011,\"ĠCl\":1012,\"Ġconf\":1013,\"way\":1014,\"ave\":1015,\"Ġgoing\":1016,\"Ġsl\":1017,\"ug\":1018,\"ĠAmeric\":1019,\"Ġspec\":1020,\"Ġhand\":1021,\"Ġbetween\":1022,\"ists\":1023,\"ĠDe\":1024,\"oot\":1025,\"It\":1026,\"Ġear\":1027,\"Ġagainst\":1028,\"Ġhigh\":1029,\"gan\":1030,\"az\":1031,\"ather\":1032,\"Ġexp\":1033,\"Ġop\":1034,\"Ġins\":1035,\"Ġgr\":1036,\"Ġhelp\":1037,\"Ġrequ\":1038,\"ets\":1039,\"ins\":1040,\"ĠPro\":1041,\"ism\":1042,\"Ġfound\":1043,\"land\":1044,\"ata\":1045,\"uss\":1046,\"ames\":1047,\"Ġperson\":1048,\"Ġgreat\":1049,\"pr\":1050,\"Ġsign\":1051,\"ĠAn\":1052,\"'ve\":1053,\"Ġsomet\":1054,\"Ġser\":1055,\"hip\":1056,\"Ġrun\":1057,\"Ġ:\":1058,\"Ġter\":1059,\"irect\":1060,\"Ġfollow\":1061,\"Ġdet\":1062,\"ices\":1063,\"Ġfind\":1064,\"12\":1065,\"Ġmem\":1066,\"Ġcr\":1067,\"ered\":1068,\"ex\":1069,\"Ġext\":1070,\"uth\":1071,\"ense\":1072,\"co\":1073,\"Ġteam\":1074,\"ving\":1075,\"ouse\":1076,\"ash\":1077,\"att\":1078,\"ved\":1079,\"Ġsystem\":1080,\"ĠAs\":1081,\"der\":1082,\"ives\":1083,\"min\":1084,\"Ġlead\":1085,\"ĠBl\":1086,\"cent\":1087,\"Ġaround\":1088,\"Ġgovern\":1089,\"Ġcur\":1090,\"velop\":1091,\"any\":1092,\"Ġcour\":1093,\"alth\":1094,\"ages\":1095,\"ize\":1096,\"Ġcar\":1097,\"ode\":1098,\"Ġlaw\":1099,\"Ġread\":1100,\"'m\":1101,\"con\":1102,\"Ġreal\":1103,\"Ġsupport\":1104,\"Ġ12\":1105,\"....\":1106,\"Ġreally\":1107,\"ness\":1108,\"Ġfact\":1109,\"Ġday\":1110,\"Ġboth\":1111,\"ying\":1112,\"Ġserv\":1113,\"ĠFor\":1114,\"Ġthree\":1115,\"Ġwom\":1116,\"Ġmed\":1117,\"ody\":1118,\"ĠThey\":1119,\"50\":1120,\"Ġexper\":1121,\"ton\":1122,\"Ġeach\":1123,\"akes\":1124,\"Ġche\":1125,\"Ġcre\":1126,\"ines\":1127,\"Ġrep\":1128,\"19\":1129,\"gg\":1130,\"illion\":1131,\"Ġgrou\":1132,\"ute\":1133,\"ik\":1134,\"We\":1135,\"get\":1136,\"ER\":1137,\"Ġmet\":1138,\"Ġsays\":1139,\"ox\":1140,\"Ġduring\":1141,\"ern\":1142,\"ized\":1143,\"ared\":1144,\"Ġfam\":1145,\"ically\":1146,\"Ġhapp\":1147,\"ĠIs\":1148,\"Ġchar\":1149,\"med\":1150,\"vent\":1151,\"Ġgener\":1152,\"ient\":1153,\"ple\":1154,\"iet\":1155,\"rent\":1156,\"11\":1157,\"ves\":1158,\"ption\":1159,\"Ġ20\":1160,\"formation\":1161,\"Ġcor\":1162,\"Ġoffic\":1163,\"ield\":1164,\"Ġtoo\":1165,\"ision\":1166,\"Ġinf\":1167,\"ĠZ\":1168,\"the\":1169,\"oad\":1170,\"Ġpublic\":1171,\"Ġprog\":1172,\"ric\":1173,\"**\":1174,\"Ġwar\":1175,\"Ġpower\":1176,\"view\":1177,\"Ġfew\":1178,\"Ġloc\":1179,\"Ġdifferent\":1180,\"Ġstate\":1181,\"Ġhead\":1182,\"'ll\":1183,\"Ġposs\":1184,\"Ġstat\":1185,\"ret\":1186,\"ants\":1187,\"Ġval\":1188,\"Ġiss\":1189,\"Ġcle\":1190,\"ivers\":1191,\"anc\":1192,\"Ġexpl\":1193,\"Ġanother\":1194,\"ĠQ\":1195,\"Ġav\":1196,\"thing\":1197,\"nce\":1198,\"Wh\":1199,\"Ġchild\":1200,\"Ġsince\":1201,\"ired\":1202,\"less\":1203,\"Ġlife\":1204,\"Ġdevelop\":1205,\"ittle\":1206,\"Ġdep\":1207,\"Ġpass\":1208,\"ãĥ\":1209,\"Ġturn\":1210,\"orn\":1211,\"This\":1212,\"bers\":1213,\"ross\":1214,\"ĠAd\":1215,\"Ġfr\":1216,\"Ġresp\":1217,\"Ġsecond\":1218,\"oh\":1219,\"Ġ/\":1220,\"Ġdisc\":1221,\"Ġ&\":1222,\"Ġsomething\":1223,\"Ġcomple\":1224,\"Ġed\":1225,\"Ġfil\":1226,\"Ġmonth\":1227,\"aj\":1228,\"uc\":1229,\"Ġgovernment\":1230,\"Ġwithout\":1231,\"Ġleg\":1232,\"Ġdist\":1233,\"Ġput\":1234,\"Ġquest\":1235,\"ann\":1236,\"Ġprot\":1237,\"20\":1238,\"Ġnever\":1239,\"ience\":1240,\"Ġlevel\":1241,\"Ġart\":1242,\"Ġthings\":1243,\"Ġmight\":1244,\"Ġeffect\":1245,\"Ġcontro\":1246,\"Ġcent\":1247,\"Ġ18\":1248,\"Ġallow\":1249,\"Ġbelie\":1250,\"chool\":1251,\"ott\":1252,\"Ġincre\":1253,\"Ġfeel\":1254,\"Ġresult\":1255,\"Ġlot\":1256,\"Ġfun\":1257,\"ote\":1258,\"Ġty\":1259,\"erest\":1260,\"Ġcontin\":1261,\"Ġusing\":1262,\"Ġbig\":1263,\"201\":1264,\"Ġask\":1265,\"Ġbest\":1266,\"Ġ)\":1267,\"IN\":1268,\"Ġopp\":1269,\"30\":1270,\"Ġnumber\":1271,\"iness\":1272,\"St\":1273,\"lease\":1274,\"Ġca\":1275,\"Ġmust\":1276,\"Ġdirect\":1277,\"Ġgl\":1278,\"Ġ<\":1279,\"Ġopen\":1280,\"Ġpost\":1281,\"Ġcome\":1282,\"Ġseem\":1283,\"ording\":1284,\"Ġweek\":1285,\"ately\":1286,\"ital\":1287,\"Ġel\":1288,\"riend\":1289,\"Ġfar\":1290,\"Ġtra\":1291,\"inal\":1292,\"Ġpri\":1293,\"ĠUS\":1294,\"Ġplace\":1295,\"Ġform\":1296,\"Ġtold\":1297,\"\\\":\":1298,\"ains\":1299,\"ature\":1300,\"ĠTrump\":1301,\"Ġstand\":1302,\"Ġ#\":1303,\"ider\":1304,\"ĠFr\":1305,\"Ġnext\":1306,\"Ġsoc\":1307,\"Ġpur\":1308,\"Ġlet\":1309,\"Ġlittle\":1310,\"Ġhum\":1311,\"Ġi\":1312,\"ron\":1313,\"15\":1314,\"Ġ15\":1315,\"Ġcommun\":1316,\"Ġmark\":1317,\"ĠThere\":1318,\"Ġwr\":1319,\"ĠThat\":1320,\"Ġinformation\":1321,\"ways\":1322,\"Ġbus\":1323,\"app\":1324,\"Ġinvest\":1325,\"me\":1326,\"Ġhard\":1327,\"ained\":1328,\"ead\":1329,\"Ġimport\":1330,\"Ġappro\":1331,\"Ġtest\":1332,\"Ġtri\":1333,\"Ġrest\":1334,\"osed\":1335,\"Ġfull\":1336,\"Ġcare\":1337,\"ĠSp\":1338,\"Ġcase\":1339,\"ON\":1340,\"Ġsk\":1341,\"Ġless\":1342,\"Ġ+\":1343,\"Ġpartic\":1344,\"ĠPl\":1345,\"ably\":1346,\"uck\":1347,\"ished\":1348,\"chn\":1349,\"be\":1350,\"Ġlist\":1351,\"ator\":1352,\"Ġtop\":1353,\"Ġadv\":1354,\"ĠBe\":1355,\"ruct\":1356,\"Ġdem\":1357,\"ration\":1358,\"ling\":1359,\"gy\":1360,\"reen\":1361,\"ger\":1362,\"Ġhome\":1363,\"Ġleft\":1364,\"Ġbetter\":1365,\"Ġdata\":1366,\"Ġ11\":1367,\"Ġattack\":1368,\"Ġproble\":1369,\"line\":1370,\"ards\":1371,\"Ġbeh\":1372,\"ral\":1373,\"ĠHow\":1374,\"ĠShe\":1375,\"arge\":1376,\"Ġ--\":1377,\"://\":1378,\"Ġbro\":1379,\"ĠPh\":1380,\"ats\":1381,\"Ġbuild\":1382,\"ww\":1383,\"ided\":1384,\"aim\":1385,\"ases\":1386,\"ency\":1387,\"Ġmain\":1388,\"ined\":1389,\"Ġincluding\":1390,\"Ġ{\":1391,\"Ġgot\":1392,\"Ġinterest\":1393,\"Ġkeep\":1394,\"ĠX\":1395,\"Ġeas\":1396,\"aining\":1397,\"Ġclass\":1398,\"âĢ¦\":1399,\"ĠNo\":1400,\"Ġvar\":1401,\"Ġsmall\":1402,\"ample\":1403,\"AT\":1404,\"Ġide\":1405,\"ĠSo\":1406,\"Ġrece\":1407,\"Ġpolit\":1408,\"Ġmov\":1409,\"Ġplan\":1410,\"Ġpercent\":1411,\"iving\":1412,\"Ġcamp\":1413,\"Ġpay\":1414,\"14\":1415,\"sc\":1416,\"ised\":1417,\"Ġunt\":1418,\"oney\":1419,\"ploy\":1420,\"====\":1421,\"Ġdidn\":1422,\"ĠInd\":1423,\"els\":1424,\"ertain\":1425,\"Ġpos\":1426,\"____\":1427,\"iver\":1428,\"Ġprocess\":1429,\"Ġprogram\":1430,\"ified\":1431,\"ĠRep\":1432,\"16\":1433,\"uro\":1434,\"ology\":1435,\"atter\":1436,\"ina\":1437,\"Ġname\":1438,\"ĠAll\":1439,\"Ġfour\":1440,\"Ġreturn\":1441,\"vious\":1442,\"bs\":1443,\"Ġcalled\":1444,\"Ġmove\":1445,\"ĠSc\":1446,\"ird\":1447,\"Ġgroup\":1448,\"Ġbre\":1449,\"Ġmen\":1450,\"Ġcap\":1451,\"ten\":1452,\"ee\":1453,\"Ġdri\":1454,\"leg\":1455,\"here\":1456,\"uthor\":1457,\"Ġpat\":1458,\"Ġcurrent\":1459,\"ides\":1460,\"Ġpop\":1461,\"to\":1462,\"ention\":1463,\"Ġalways\":1464,\"Ġmil\":1465,\"Ġwomen\":1466,\"Ġ16\":1467,\"Ġold\":1468,\"iven\":1469,\"raph\":1470,\"ĠOr\":1471,\"ror\":1472,\"ently\":1473,\"Ġnear\":1474,\"ĠEx\":1475,\"ream\":1476,\"sh\":1477,\"Ġ14\":1478,\"Ġfree\":1479,\"ission\":1480,\"stand\":1481,\"ĠCon\":1482,\"ality\":1483,\"used\":1484,\"13\":1485,\"Ġdesign\":1486,\"Ġchange\":1487,\"Ġchang\":1488,\"Ġbo\":1489,\"Ġvis\":1490,\"ember\":1491,\"Ġbook\":1492,\"ready\":1493,\"Ġkill\":1494,\"25\":1495,\"pped\":1496,\"Ġaway\":1497,\"Ġable\":1498,\"Ġcountry\":1499,\"Ġconst\":1500,\"arn\":1501,\"Ġorder\":1502,\"AR\":1503,\"ior\":1504,\"ium\":1505,\"orth\":1506,\"18\":1507,\"ailable\":1508,\"Ġsw\":1509,\"Ġmillion\":1510,\"Ġ13\":1511,\"atic\":1512,\"ted\":1513,\"ĠGo\":1514,\"Ġoper\":1515,\"eng\":1516,\"Ġthing\":1517,\"ajor\":1518,\"conom\":1519,\"ĠComm\":1520,\"Ġwhy\":1521,\"ured\":1522,\"ural\":1523,\"Ġschool\":1524,\"by\":1525,\"ĠMar\":1526,\"Ġaff\":1527,\"Ġdays\":1528,\"Ġann\":1529,\"ush\":1530,\"ane\":1531,\"If\":1532,\"eg\":1533,\"Ġprof\":1534,\"Ġhealth\":1535,\"outh\":1536,\"But\":1537,\"ional\":1538,\".,\":1539,\"Ġsol\":1540,\"Ġalready\":1541,\"Ġ30\":1542,\"Ġcharact\":1543,\"He\":1544,\"Ġfriend\":1545,\"ES\":1546,\"ians\":1547,\"icle\":1548,\"'d\":1549,\"ĠOn\":1550,\"Ġleast\":1551,\"Ġprom\":1552,\"Ġdr\":1553,\"Ġhist\":1554,\"ither\":1555,\"Ġest\":1556,\"iqu\":1557,\"17\":1558,\"son\":1559,\"Ġtell\":1560,\"Ġtalk\":1561,\"ohn\":1562,\"oint\":1563,\"lection\":1564,\"AN\":1565,\"Ġuntil\":1566,\"augh\":1567,\"Ġlater\":1568,\"Ġve\":1569,\"Ġview\":1570,\"ending\":1571,\"ived\":1572,\"Ġword\":1573,\"ware\":1574,\"Ġcost\":1575,\"Ġenough\":1576,\"Ġgive\":1577,\"ĠUnited\":1578,\"Ġtechn\":1579,\"arent\":1580,\"OR\":1581,\"Ġpar\":1582,\"ĠDr\":1583,\"Ġ2016\":1584,\"rist\":1585,\"ering\":1586,\"ĠÂ\":1587,\"Ġlarge\":1588,\"side\":1589,\"acy\":1590,\"ccess\":1591,\"Ġwin\":1592,\"Ġimportant\":1593,\"Ġ199\":1594,\"Ġdoesn\":1595,\"Ġ17\":1596,\"Ġbusiness\":1597,\"Ġclear\":1598,\"Ġrese\":1599,\"\\\",\":1600,\"ury\":1601,\"Ġequ\":1602,\"aster\":1603,\"alf\":1604,\"ĠAmerican\":1605,\"nect\":1606,\"Ġexpect\":1607,\"iversity\":1608,\"Ġocc\":1609,\"ĠFl\":1610,\"Ġkind\":1611,\"Ġmean\":1612,\"Ġpast\":1613,\"Ġdev\":1614,\"Ġbas\":1615,\"let\":1616,\"raft\":1617,\"Ġorgan\":1618,\"Ġdel\":1619,\"Ġperform\":1620,\"Ġstory\":1621,\"Ġseason\":1622,\"ĠCol\":1623,\"Ġclaim\":1624,\"Ġcame\":1625,\"Ġwithin\":1626,\"Ġline\":1627,\"Ġproject\":1628,\"ĠAt\":1629,\"Ġcontrol\":1630,\"ended\":1631,\"ĠSy\":1632,\"Ġair\":1633,\"ization\":1634,\"Ġ*\":1635,\"ley\":1636,\"Ġmoney\":1637,\"idd\":1638,\"You\":1639,\"for\":1640,\"Ġfamily\":1641,\"Ġmaking\":1642,\"Ġbit\":1643,\"Ġpolice\":1644,\"Ġhappen\":1645,\"Ġvers\":1646,\"ony\":1647,\"uff\":1648,\"ĠWhen\":1649,\"Ġsit\":1650,\"ideo\":1651,\"lf\":1652,\"ison\":1653,\"Ġsure\":1654,\"gin\":1655,\"Ġappear\":1656,\"Ġlight\":1657,\"Ġes\":1658,\"of\":1659,\"Ġwater\":1660,\"Ġtimes\":1661,\"not\":1662,\"Ġgrow\":1663,\"Ġcompany\":1664,\"ĠTe\":1665,\"ows\":1666,\"Ġmar\":1667,\"ource\":1668,\"iol\":1669,\"arm\":1670,\"br\":1671,\"Ġexample\":1672,\"Ġconc\":1673,\"Ġfore\":1674,\"ĠTo\":1675,\"pro\":1676,\"EN\":1677,\"ries\":1678,\"Ġ25\":1679,\"ĠCan\":1680,\"ney\":1681,\"Ġactually\":1682,\"Ġever\":1683,\"urity\":1684,\"aken\":1685,\"aps\":1686,\"Ġtax\":1687,\"Ġmajor\":1688,\"ama\":1689,\"Ġoften\":1690,\"eral\":1691,\"Ġhuman\":1692,\"Ġjob\":1693,\"ister\":1694,\"Ġavailable\":1695,\"ocr\":1696,\"enn\":1697,\"aid\":1698,\"ivid\":1699,\"Ġrecord\":1700,\"?\\\"\":1701,\"Ġsing\":1702,\"ĠAm\":1703,\"idence\":1704,\"Ġnews\":1705,\"ster\":1706,\"Ġeconom\":1707,\"Ġfollowing\":1708,\"ĠBr\":1709,\"ising\":1710,\"Ġhour\":1711,\"most\":1712,\"ument\":1713,\"Ġsex\":1714,\"Ġdesc\":1715,\"Ġbecome\":1716,\"ĠEd\":1717,\"Ġtook\":1718,\"Ġhaving\":1719,\"Ġproduct\":1720,\"ault\":1721,\"As\":1722,\"aring\":1723,\"Ġmeans\":1724,\"Ġhop\":1725,\"une\":1726,\"Ġcho\":1727,\"Ġcertain\":1728,\"Ġnon\":1729,\"Ġdeal\":1730,\"24\":1731,\"lement\":1732,\"oci\":1733,\"ene\":1734,\"Ġside\":1735,\"ĠPr\":1736,\"ĠMay\":1737,\"Ġreason\":1738,\"ued\":1739,\"ched\":1740,\"ulation\":1741,\"Ġelect\":1742,\"Ġofficial\":1743,\"Ġpossible\":1744,\"Ġhold\":1745,\"ands\":1746,\"ots\":1747,\"Ġcity\":1748,\"ories\":1749,\"Ġsever\":1750,\"Ġchildren\":1751,\"Ġonce\":1752,\"Ġactiv\":1753,\"ler\":1754,\"Ġnight\":1755,\"itions\":1756,\"ĠJohn\":1757,\"ape\":1758,\"play\":1759,\"Ġdone\":1760,\"Ġlim\":1761,\"Ġworking\":1762,\"ĠPres\":1763,\"orld\":1764,\"eb\":1765,\"ĠCo\":1766,\"Ġbody\":1767,\"ails\":1768,\"utes\":1769,\"ĠMr\":1770,\"Ġwhether\":1771,\"Ġauthor\":1772,\"rop\":1773,\"Ġproper\":1774,\"Ġseen\":1775,\");\":1776,\"Ġfac\":1777,\"ĠSu\":1778,\"Ġcond\":1779,\"iting\":1780,\"Ġcourse\":1781,\"Ġ}\":1782,\"----------------\":1783,\"aign\":1784,\"Ġevent\":1785,\"Ġeng\":1786,\"Ġpot\":1787,\"Ġintern\":1788,\"iam\":1789,\"Ġshort\":1790,\"empt\":1791,\"ãĤ\":1792,\"ĠGod\":1793,\"ilar\":1794,\"80\":1795,\"Ġorig\":1796,\"IS\":1797,\"ourn\":1798,\"ability\":1799,\"itive\":1800,\"Ġdam\":1801,\"Ġ100\":1802,\"Ġpress\":1803,\"Ġdoing\":1804,\"Ġprotect\":1805,\"ring\":1806,\"Ġthought\":1807,\"Ġquestion\":1808,\"rew\":1809,\"ĠWar\":1810,\"Ġseveral\":1811,\"ĠState\":1812,\"Ġgiven\":1813,\"Ġfund\":1814,\"ĠTw\":1815,\"Ġwent\":1816,\"ances\":1817,\"work\":1818,\"por\":1819,\"my\":1820,\"40\":1821,\"Ġarg\":1822,\"artment\":1823,\"ustom\":1824,\"Ġpolic\":1825,\"Ġmeet\":1826,\"Ġcreat\":1827,\"22\":1828,\"ĠStates\":1829,\"Ġgames\":1830,\"raw\":1831,\"uture\":1832,\"Ġunderstand\":1833,\"urs\":1834,\"ĠOb\":1835,\"lish\":1836,\"sy\":1837,\"Ġmakes\":1838,\"Ġwon\":1839,\"agon\":1840,\"Ġhtt\":1841,\"Ġlove\":1842,\"ential\":1843,\"Ġcomplete\":1844,\"par\":1845,\"ĠIm\":1846,\"AL\":1847,\"Ġaccount\":1848,\"Âł\":1849,\"ored\":1850,\"vert\":1851,\"Ġident\":1852,\"Ġ2015\":1853,\"Ġothers\":1854,\"ĠMin\":1855,\"iber\":1856,\"verage\":1857,\"There\":1858,\"itional\":1859,\"dd\":1860,\"Ġprob\":1861,\"Ġyoung\":1862,\"Ġalong\":1863,\"Ġaccording\":1864,\"Ġyet\":1865,\"Ġmembers\":1866,\"ĠWhat\":1867,\"oid\":1868,\"ĠMan\":1869,\"And\":1870,\"Ġamong\":1871,\"ai\":1872,\"Ġemploy\":1873,\"ĠRes\":1874,\"Ġ>\":1875,\"Ġinvol\":1876,\"Ġlow\":1877,\"af\":1878,\"ĠCar\":1879,\"Ġhig\":1880,\"ĠOne\":1881,\"ĠSec\":1882,\"ination\":1883,\"Ġlikely\":1884,\"Ġant\":1885,\"aged\":1886,\"ĠRuss\":1887,\"Ġben\":1888,\"Ġrele\":1889,\"For\":1890,\"back\":1891,\"ĠNot\":1892,\"Ġpresident\":1893,\"ball\":1894,\"Ġaccess\":1895,\"ividual\":1896,\"ĠDem\":1897,\"ĠEuro\":1898,\"60\":1899,\"Ġknown\":1900,\"irl\":1901,\"ĠGr\":1902,\"Ġearly\":1903,\"use\":1904,\"iety\":1905,\"âĢĵ\":1906,\"Ġfight\":1907,\"Ġsent\":1908,\"Ġtoday\":1909,\"Ġmarket\":1910,\"\\\".\":1911,\"Ġbased\":1912,\"Ġstrong\":1913,\"urther\":1914,\"Ġdeb\":1915,\"mber\":1916,\"Ġproblem\":1917,\"Ġdeath\":1918,\"Ġsocial\":1919,\"imate\":1920,\"AS\":1921,\"ortun\":1922,\"Ġcampaign\":1923,\"ery\":1924,\"Ch\":1925,\"Ġey\":1926,\"ially\":1927,\"Ġmus\":1928,\"wh\":1929,\"pos\":1930,\"Ġer\":1931,\"Ġsaf\":1932,\"Ġmonths\":1933,\"iron\":1934,\"Ġviol\":1935,\"Ġfive\":1936,\"Ġstre\":1937,\"Ġplayers\":1938,\"inc\":1939,\"ald\":1940,\"year\":1941,\"aun\":1942,\"Ġsuccess\":1943,\"Ġpresent\":1944,\"erence\":1945,\"Ġ2014\":1946,\"Ġsugg\":1947,\"Ġparticular\":1948,\"Ġtry\":1949,\"Ġsuggest\":1950,\"ĠChrist\":1951,\"ones\":1952,\"Ġpriv\":1953,\"23\":1954,\"Ġcrit\":1955,\"Ġland\":1956,\"Ġlocal\":1957,\"ify\":1958,\"29\":1959,\"Ġaut\":1960,\"ED\":1961,\"ĠGu\":1962,\"Ġmult\":1963,\"Ġpolitical\":1964,\"Ġasked\":1965,\"Ġformer\":1966,\"itter\":1967,\"ript\":1968,\"Ġclose\":1969,\"Ġpract\":1970,\"ĠYork\":1971,\"Ġgetting\":1972,\"Ġacross\":1973,\"Ġcomb\":1974,\"Ġbelieve\":1975,\"Ġz\":1976,\"Ġtoget\":1977,\"Ġtogether\":1978,\"ĠCent\":1979,\"irc\":1980,\"Ġindividual\":1981,\"ĠMc\":1982,\"27\":1983,\"isk\":1984,\"ĠEng\":1985,\"Ġface\":1986,\"Ġ24\":1987,\"Ġvalue\":1988,\"Ġarea\":1989,\"ev\":1990,\"Ġwrit\":1991,\"ĠPresident\":1992,\"Ġvot\":1993,\"Ġkey\":1994,\"Ġmom\":1995,\"put\":1996,\"Ġanything\":1997,\"Ġexperience\":1998,\"attle\":1999,\"Ġmind\":2000,\"aff\":2001,\"omm\":2002,\"Ġfuture\":2003,\"ged\":2004,\"Ġcut\":2005,\"Ġtot\":2006,\"itch\":2007,\"Ġvideo\":2008,\"Ġinvestig\":2009,\"Ġnet\":2010,\"ĠMy\":2011,\"rict\":2012,\"ien\":2013,\".)\":2014,\"Ġimpro\":2015,\"though\":2016,\"wards\":2017,\"Ġconnect\":2018,\"ĠMed\":2019,\"selves\":2020,\"ensive\":2021,\"mb\":2022,\"ober\":2023,\"ators\":2024,\"An\":2025,\"Ġ50\":2026,\"Ġredu\":2027,\"resent\":2028,\"Ġabove\":2029,\"Ġfre\":2030,\"ĠEurope\":2031,\"sw\":2032,\"Ġamount\":2033,\"ĠApp\":2034,\"Ġeither\":2035,\"Ġmilit\":2036,\"Ġanal\":2037,\"Ġfail\":2038,\"ĠEn\":2039,\"ales\":2040,\"Ġspecial\":2041,\"Ġblack\":2042,\"IT\":2043,\"cher\":2044,\"Ġlooking\":2045,\"Ġfire\":2046,\"yn\":2047,\"Ġalmost\":2048,\"oon\":2049,\"Ġstudy\":2050,\"Ġmiss\":2051,\"ches\":2052,\"rown\":2053,\"Ġtre\":2054,\"Ġcommunity\":2055,\"Ġmedia\":2056,\"Ġfood\":2057,\"Ġcomes\":2058,\"ĠUniversity\":2059,\"Ġsingle\":2060,\"What\":2061,\"uly\":2062,\"Ġhalf\":2063,\"ague\":2064,\"hod\":2065,\"ĠRepublic\":2066,\"Ġstarted\":2067,\"Ġquick\":2068,\"oto\":2069,\"book\":2070,\"Ġissue\":2071,\"itor\":2072,\"Ġelse\":2073,\"Ġconsider\":2074,\"26\":2075,\"rodu\":2076,\"Ġtaken\":2077,\"28\":2078,\"99\":2079,\"ĠWith\":2080,\"Ġtrue\":2081,\"Ġwa\":2082,\"Ġtrad\":2083,\"Ġago\":2084,\"Ġmess\":2085,\"ief\":2086,\"Ġadded\":2087,\"oke\":2088,\"Ġbad\":2089,\"Ġfav\":2090,\"33\":2091,\"Ġsimilar\":2092,\"ask\":2093,\"ĠDon\":2094,\"Ġcharacter\":2095,\"orts\":2096,\"ĠHouse\":2097,\"Ġreported\":2098,\"Ġtype\":2099,\"val\":2100,\"iod\":2101,\"ĠHowever\":2102,\"Ġtarg\":2103,\"Ġentire\":2104,\"pping\":2105,\"Ġhistory\":2106,\"Ġlive\":2107,\"ffic\":2108,\"........\":2109,\"ederal\":2110,\"Ġtrying\":2111,\"Ġdiscuss\":2112,\"ĠHar\":2113,\"aces\":2114,\"lished\":2115,\"Ġself\":2116,\"osp\":2117,\"rest\":2118,\"Ġroom\":2119,\"elt\":2120,\"Ġfall\":2121,\"olution\":2122,\"Ġet\":2123,\"Ġx\":2124,\"Ġisn\":2125,\"Ġidea\":2126,\"bo\":2127,\"Ġsound\":2128,\"ĠDep\":2129,\"Ġsomeone\":2130,\"cially\":2131,\"ully\":2132,\"Ġfoc\":2133,\"Ġobject\":2134,\"ift\":2135,\"aper\":2136,\"Ġplayer\":2137,\"Ġrather\":2138,\"Ġservice\":2139,\"ashing\":2140,\"ĠDo\":2141,\"ĠPart\":2142,\"rug\":2143,\"mon\":2144,\"ply\":2145,\"Ġmor\":2146,\"Ġnothing\":2147,\"Ġprovide\":2148,\"IC\":2149,\"ung\":2150,\"Ġparty\":2151,\"Ġexist\":2152,\"Ġmag\":2153,\"70\":2154,\"Ġrul\":2155,\"Ġhouse\":2156,\"Ġbehind\":2157,\"Ġhowever\":2158,\"ĠWorld\":2159,\"Ġsum\":2160,\"Ġapplic\":2161,\"Ġ;\":2162,\"Ġfunction\":2163,\"gr\":2164,\"ĠPol\":2165,\"Ġfront\":2166,\"200\":2167,\"Ġseries\":2168,\"Ġtem\":2169,\"Ġtyp\":2170,\"ills\":2171,\"Ġopt\":2172,\"Ġpoints\":2173,\"Ġbelow\":2174,\"itted\":2175,\"Ġspecific\":2176,\"Ġ2017\":2177,\"umb\":2178,\"Ġra\":2179,\"Ġprevious\":2180,\"Ġpret\":2181,\"reme\":2182,\"Ġcustom\":2183,\"Ġcourt\":2184,\"ĠMe\":2185,\"Ġrepl\":2186,\"Ġwhole\":2187,\"go\":2188,\"cer\":2189,\"Ġtreat\":2190,\"ĠAct\":2191,\"Ġprobably\":2192,\"Ġlearn\":2193,\"ender\":2194,\"ĠAss\":2195,\"Ġversion\":2196,\"now\":2197,\"Ġcheck\":2198,\"ĠCal\":2199,\"RE\":2200,\"minist\":2201,\"On\":2202,\"ources\":2203,\"Ġbenef\":2204,\"Ġdoc\":2205,\"Ġdeter\":2206,\"Ġenc\":2207,\"Ġsuper\":2208,\"Ġaddress\":2209,\"Ġvict\":2210,\"Ġ2013\":2211,\"Ġmeas\":2212,\"tr\":2213,\"Ġfield\":2214,\"When\":2215,\"Ġsignific\":2216,\"uge\":2217,\"Ġfeat\":2218,\"Ġcommon\":2219,\"load\":2220,\"Ġbegin\":2221,\"Ġbring\":2222,\"Ġaction\":2223,\"erman\":2224,\"Ġdescrib\":2225,\"Ġindust\":2226,\"Ġwanted\":2227,\"ried\":2228,\"ming\":2229,\"Ġattempt\":2230,\"45\":2231,\"fer\":2232,\"Ġdue\":2233,\"ression\":2234,\"##\":2235,\"Ġshall\":2236,\"Ġsix\":2237,\"oo\":2238,\"Ġstep\":2239,\"Ġpub\":2240,\"Ġhimself\":2241,\"Ġ23\":2242,\"Ġcop\":2243,\"Ġdest\":2244,\"Ġstop\":2245,\"AC\":2246,\"ibility\":2247,\"Ġlab\":2248,\"icult\":2249,\"Ġhours\":2250,\"Ġcreate\":2251,\"Ġfurther\":2252,\"ĠAmerica\":2253,\"ĠCity\":2254,\"Ġdou\":2255,\"head\":2256,\"ST\":2257,\"ĠNorth\":2258,\"cing\":2259,\"Ġnational\":2260,\"ule\":2261,\"ĠInst\":2262,\"Ġtaking\":2263,\"ĠQu\":2264,\"irt\":2265,\"Ġred\":2266,\"Ġresearch\":2267,\"viron\":2268,\"ĠGe\":2269,\"Ġbreak\":2270,\"ana\":2271,\"Ġspace\":2272,\"aterial\":2273,\"Ġrecent\":2274,\"ĠAb\":2275,\"Ġgeneral\":2276,\"Ġhit\":2277,\"Ġperiod\":2278,\"Ġeverything\":2279,\"ively\":2280,\"Ġphys\":2281,\"Ġsaying\":2282,\"anks\":2283,\"Ġcou\":2284,\"Ġcult\":2285,\"aced\":2286,\"eal\":2287,\"uation\":2288,\"Ġcoun\":2289,\"lu\":2290,\"Ġinclude\":2291,\"Ġposition\":2292,\"ĠAfter\":2293,\"ĠCanad\":2294,\"ĠEm\":2295,\"Ġimm\":2296,\"ĠRed\":2297,\"Ġpick\":2298,\"Ġcompl\":2299,\"Ġmatter\":2300,\"reg\":2301,\"ext\":2302,\"angu\":2303,\"isc\":2304,\"ole\":2305,\"aut\":2306,\"Ġcompet\":2307,\"eed\":2308,\"fect\":2309,\"Ġ21\":2310,\"ĠSen\":2311,\"ĠThese\":2312,\"asing\":2313,\"Ġcannot\":2314,\"Ġinit\":2315,\"Ġrelations\":2316,\"ached\":2317,\"Ġbar\":2318,\"Ġ40\":2319,\"ĠTH\":2320,\"Ġ2012\":2321,\"Ġvol\":2322,\"Ġground\":2323,\"Ġsecurity\":2324,\"Ġupd\":2325,\"ilt\":2326,\"35\":2327,\"Ġconcern\":2328,\"ĠJust\":2329,\"Ġwhite\":2330,\"Ġseems\":2331,\"ĠHer\":2332,\"pecially\":2333,\"ients\":2334,\"Ġannoun\":2335,\"Ġfig\":2336,\"ights\":2337,\"Ġstri\":2338,\"like\":2339,\"ids\":2340,\"Ġsus\":2341,\"Ġwatch\":2342,\"Ġâ\":2343,\"Ġwind\":2344,\"ĠCont\":2345,\"Ġitself\":2346,\"Ġmass\":2347,\"Al\":2348,\"yle\":2349,\"ique\":2350,\"ĠNational\":2351,\"Ġabs\":2352,\"Ġpack\":2353,\"Ġoutside\":2354,\"Ġanim\":2355,\"Ġpain\":2356,\"eter\":2357,\"Ġmanag\":2358,\"duct\":2359,\"ogn\":2360,\"Ġ]\":2361,\"ĠSept\":2362,\"sec\":2363,\"off\":2364,\"ĠJan\":2365,\"Ġfoot\":2366,\"ades\":2367,\"Ġthird\":2368,\"Ġmot\":2369,\"Ġevidence\":2370,\"inton\":2371,\"Ġthreat\":2372,\"apt\":2373,\"ples\":2374,\"cle\":2375,\"Ġlo\":2376,\"Ġdecl\":2377,\"Ġitem\":2378,\"medi\":2379,\"Ġrepresent\":2380,\"omb\":2381,\"amer\":2382,\"Ġsignificant\":2383,\"ograph\":2384,\"su\":2385,\"Ġcal\":2386,\"ires\":2387,\"0000\":2388,\"ID\":2389,\"AM\":2390,\"Ġsimply\":2391,\"Ġlonger\":2392,\"Ġfile\":2393,\"OT\":2394,\"che\":2395,\"So\":2396,\"ateg\":2397,\"org\":2398,\"ĠHis\":2399,\"Ġener\":2400,\"Ġdom\":2401,\"Ġupon\":2402,\"ili\":2403,\"\\\":\\\"\":2404,\"Ġthemselves\":2405,\"Ġcoming\":2406,\"Ġquite\":2407,\"Ġdifficult\":2408,\"ĠBar\":2409,\"ilities\":2410,\"rel\":2411,\"ends\":2412,\"cial\":2413,\"64\":2414,\"Ġwoman\":2415,\"rap\":2416,\"yr\":2417,\"Ġnecess\":2418,\"ips\":2419,\"Ġtext\":2420,\"Ġrequire\":2421,\"Ġmilitary\":2422,\"Ġreview\":2423,\"Ġrespons\":2424,\"75\":2425,\"Ġsubject\":2426,\"Ġinstead\":2427,\"Ġissues\":2428,\"Ġgen\":2429,\"\\\",\\\"\":2430,\"Ġminutes\":2431,\"Ġweap\":2432,\"ray\":2433,\"amed\":2434,\"time\":2435,\"bl\":2436,\"How\":2437,\"Ġcode\":2438,\"ĠSm\":2439,\"Ġhigher\":2440,\"ĠSte\":2441,\"ris\":2442,\"Ġpage\":2443,\"Ġstudents\":2444,\"ĠIntern\":2445,\"Ġmethod\":2446,\"ĠAug\":2447,\"ĠPer\":2448,\"ĠAg\":2449,\"Ġpolicy\":2450,\"ĠSw\":2451,\"Ġexec\":2452,\"Ġaccept\":2453,\"ume\":2454,\"ribut\":2455,\"Ġwords\":2456,\"Ġfinal\":2457,\"Ġchanges\":2458,\"ĠDemocr\":2459,\"Ġfriends\":2460,\"Ġrespect\":2461,\"Ġep\":2462,\"Ġcompan\":2463,\"ivil\":2464,\"Ġdamage\":2465,\"****\":2466,\"ogle\":2467,\"vironment\":2468,\"Ġneg\":2469,\"ental\":2470,\"Ġap\":2471,\"Ġtotal\":2472,\"ival\":2473,\"!\\\"\":2474,\"lim\":2475,\"Ġneeds\":2476,\"Ġagre\":2477,\"Ġdevelopment\":2478,\"Ġage\":2479,\"iple\":2480,\"21\":2481,\"Ġresults\":2482,\"ĠAf\":2483,\"Sh\":2484,\"Ġgun\":2485,\"ĠObama\":2486,\"roll\":2487,\"Ġ@\":2488,\"Ġrights\":2489,\"ĠBrit\":2490,\"Ġrunning\":2491,\"Ġwasn\":2492,\"Ġport\":2493,\"Ġrate\":2494,\"Ġpretty\":2495,\"Ġtarget\":2496,\"Ġsaw\":2497,\"Ġcirc\":2498,\"Ġworks\":2499,\"icro\":2500,\"alt\":2501,\"over\":2502,\"www\":2503,\"That\":2504,\"lier\":2505,\"Ġeveryone\":2506,\"ude\":2507,\"Ġpie\":2508,\"iddle\":2509,\"rael\":2510,\"Ġrad\":2511,\"Ġblock\":2512,\"Ġwalk\":2513,\"To\":2514,\"ãģ\":2515,\"nes\":2516,\"ĠAust\":2517,\"aul\":2518,\"rote\":2519,\"ĠSouth\":2520,\"ession\":2521,\"oph\":2522,\"Ġshows\":2523,\"Ġsite\":2524,\"Ġjo\":2525,\"Ġrisk\":2526,\"clus\":2527,\"lt\":2528,\"Ġinj\":2529,\"iding\":2530,\"ĠSpe\":2531,\"Ġchall\":2532,\"irm\":2533,\"Ġ22\":2534,\"itting\":2535,\"str\":2536,\"Ġhy\":2537,\"LE\":2538,\"key\":2539,\"Ġbegan\":2540,\"atur\":2541,\"ashington\":2542,\"lam\":2543,\"ĠDav\":2544,\"bit\":2545,\"Ġsize\":2546,\"ĠPar\":2547,\"38\":2548,\"ournal\":2549,\"face\":2550,\"Ġdecision\":2551,\"Ġlarg\":2552,\"Ġjud\":2553,\"rect\":2554,\"Ġcontinue\":2555,\"ĠOct\":2556,\"overed\":2557,\"ĠInt\":2558,\"========\":2559,\"Ġparent\":2560,\"ĠWill\":2561,\"Ġeasy\":2562,\"Ġdrug\":2563,\"anger\":2564,\"Ġsense\":2565,\"Ġdi\":2566,\"iday\":2567,\"Ġenergy\":2568,\"istic\":2569,\"Ġassoci\":2570,\"arter\":2571,\"obal\":2572,\"eks\":2573,\"ĠEl\":2574,\"urch\":2575,\"Ġgirl\":2576,\"oe\":2577,\"itle\":2578,\"Ġ28\":2579,\"ĠChe\":2580,\"Ġrequest\":2581,\"Ġsoon\":2582,\"Ġhost\":2583,\"ky\":2584,\"Ġstates\":2585,\"omes\":2586,\"Ġmaterial\":2587,\"lex\":2588,\"Ġmoment\":2589,\"Ġansw\":2590,\"onse\":2591,\"Ġespecially\":2592,\"Ġnorm\":2593,\"Ġservices\":2594,\"pite\":2595,\"ran\":2596,\"Ġrole\":2597,\"44\":2598,\"):\":2599,\"Ġcred\":2600,\"Cl\":2601,\"________\":2602,\"Ġmat\":2603,\"Ġlog\":2604,\"ĠClinton\":2605,\"OU\":2606,\"Ġoffice\":2607,\"Ġ26\":2608,\"Ġcharg\":2609,\"Ġtrack\":2610,\"ma\":2611,\"Ġheart\":2612,\"Ġball\":2613,\"Ġpersonal\":2614,\"Ġbuilding\":2615,\"na\":2616,\"set\":2617,\"body\":2618,\"ĠBlack\":2619,\"Ġincrease\":2620,\"itten\":2621,\"Ġneeded\":2622,\"36\":2623,\"32\":2624,\"=\\\"\":2625,\"Ġlost\":2626,\"Ġbecame\":2627,\"Ġgroups\":2628,\"ĠMus\":2629,\"Ġwrote\":2630,\"ĠPe\":2631,\"Ġprop\":2632,\"joy\":2633,\"Ã©\":2634,\"ĠWhite\":2635,\"Ġdead\":2636,\".'\":2637,\"Ġhttp\":2638,\"Ġwebs\":2639,\"OS\":2640,\"Ġinside\":2641,\"Ġwrong\":2642,\"Ġstatement\":2643,\"Ġ...\":2644,\"yl\":2645,\"Ġfilm\":2646,\"Ġmusic\":2647,\"Ġshare\":2648,\"ification\":2649,\"Ġrelease\":2650,\"Ġforward\":2651,\"Ġstay\":2652,\"Ġcomput\":2653,\"itte\":2654,\"ser\":2655,\"Ġoriginal\":2656,\"Ġcard\":2657,\"Ġcand\":2658,\"Ġdiv\":2659,\"atural\":2660,\"Ġfavor\":2661,\"OM\":2662,\"Ġcases\":2663,\"uses\":2664,\"Ġsection\":2665,\"Ġleave\":2666,\"ging\":2667,\"oved\":2668,\"ĠWashington\":2669,\"39\":2670,\"ĠGl\":2671,\"Ġrequired\":2672,\"action\":2673,\"apan\":2674,\"oor\":2675,\"iter\":2676,\"ĠKing\":2677,\"Ġcountries\":2678,\"ĠGerman\":2679,\"lling\":2680,\"Ġ27\":2681,\"34\":2682,\"Ġquestions\":2683,\"Ġprim\":2684,\"Ġcell\":2685,\"Ġshoot\":2686,\"Ġanyone\":2687,\"ĠWest\":2688,\"Ġaffect\":2689,\"epend\":2690,\"Ġonline\":2691,\"ĠIsrael\":2692,\"ĠSeptember\":2693,\"Ġability\":2694,\"Ġcontent\":2695,\"ises\":2696,\"Ġreve\":2697,\"Ġlaun\":2698,\"Ġindic\":2699,\"Ġforce\":2700,\"cast\":2701,\"Ġsold\":2702,\"aving\":2703,\"fl\":2704,\"Ġsoft\":2705,\"Ġcompanies\":2706,\"ceed\":2707,\"Ġarticle\":2708,\"Ġaud\":2709,\"Ġrev\":2710,\"Ġeduc\":2711,\"Ġplaying\":2712,\"05\":2713,\"Ġheld\":2714,\"ctor\":2715,\"Ġreleased\":2716,\"Ġfederal\":2717,\"37\":2718,\"Ġadminist\":2719,\"Ġinterview\":2720,\"Ġinstall\":2721,\"Ġreceived\":2722,\"Ġsource\":2723,\"uk\":2724,\"Ph\":2725,\"Ġserious\":2726,\"Ġcreated\":2727,\"Ġcause\":2728,\"Ġimmedi\":2729,\"Ġdefin\":2730,\"uel\":2731,\"ĠDepartment\":2732,\"ctions\":2733,\"ĠCour\":2734,\"ĠNow\":2735,\"ze\":2736,\"ites\":2737,\"itution\":2738,\"Ġlate\":2739,\"Ġspeak\":2740,\"ners\":2741,\"Ġlegal\":2742,\"ari\":2743,\"ĠCor\":2744,\"Ġweeks\":2745,\"Ġmodel\":2746,\"Ġpred\":2747,\"Ġexact\":2748,\"BC\":2749,\"ĠBy\":2750,\"ING\":2751,\"osing\":2752,\"Ġtakes\":2753,\"Ġregard\":2754,\"Ġopportun\":2755,\"Ġprice\":2756,\"Ġ198\":2757,\"ĠApr\":2758,\"fully\":2759,\"Ġord\":2760,\"Ġproblems\":2761,\"ruction\":2762,\"ham\":2763,\"ĠCount\":2764,\"lege\":2765,\"Ġleaders\":2766,\"ET\":2767,\"lev\":2768,\"Ġdeep\":2769,\"ological\":2770,\"ese\":2771,\"haps\":2772,\"ĠSome\":2773,\"Ġpers\":2774,\"Ġcontract\":2775,\"Ġrelationship\":2776,\"sp\":2777,\"oud\":2778,\"Ġbase\":2779,\"48\":2780,\"mit\":2781,\"Ad\":2782,\"ancial\":2783,\"Ġconsum\":2784,\"Ġpotential\":2785,\"Ġlangu\":2786,\"rem\":2787,\"eth\":2788,\"Ġrelig\":2789,\"ressed\":2790,\"66\":2791,\"Ġlink\":2792,\"Ġlower\":2793,\"ayer\":2794,\"ĠJune\":2795,\"Ġfem\":2796,\"unt\":2797,\"erc\":2798,\"urd\":2799,\"Ġcontact\":2800,\"Ġill\":2801,\"Ġmother\":2802,\"Ġestab\":2803,\"htt\":2804,\"ĠMarch\":2805,\"ĠBro\":2806,\"ĠChina\":2807,\"Ġ29\":2808,\"Ġsqu\":2809,\"Ġprovided\":2810,\"Ġaverage\":2811,\"asons\":2812,\"Ġ2011\":2813,\"Ġexam\":2814,\"lin\":2815,\"55\":2816,\"ned\":2817,\"Ġperfect\":2818,\"Ġtou\":2819,\"alse\":2820,\"ux\":2821,\"Ġbuy\":2822,\"Ġshot\":2823,\"Ġcollect\":2824,\"Ġphot\":2825,\"Ġplayed\":2826,\"Ġsurpr\":2827,\"Ġofficials\":2828,\"Ġsimple\":2829,\"avy\":2830,\"Ġindustry\":2831,\"Ġhands\":2832,\"ground\":2833,\"Ġpull\":2834,\"Ġround\":2835,\"Ġuser\":2836,\"Ġrange\":2837,\"uary\":2838,\"Ġprivate\":2839,\"ops\":2840,\"ees\":2841,\"Ġways\":2842,\"ĠMich\":2843,\"Ġveh\":2844,\"Ġexcept\":2845,\"Ġterms\":2846,\"imum\":2847,\"pper\":2848,\"ION\":2849,\"ores\":2850,\"ĠDragon\":2851,\"oul\":2852,\"Ġden\":2853,\"Ġperformance\":2854,\"Ġbill\":2855,\"cil\":2856,\"47\":2857,\"Ġenvironment\":2858,\"Ġexc\":2859,\"add\":2860,\"Ġworth\":2861,\"Ġpict\":2862,\"Ġchance\":2863,\"Ġ2018\":2864,\"bor\":2865,\"Ġspeed\":2866,\"iction\":2867,\"Ġalleg\":2868,\"ĠJapan\":2869,\"atory\":2870,\"reet\":2871,\"Ġmatch\":2872,\"ĠII\":2873,\"Ġstru\":2874,\"order\":2875,\"Ġste\":2876,\"Ġliving\":2877,\"Ġstruct\":2878,\"ino\":2879,\"Ġsepar\":2880,\"hern\":2881,\"Ġresponse\":2882,\"Ġenjoy\":2883,\"Ġvia\":2884,\"AD\":2885,\"uments\":2886,\"acebook\":2887,\"Ġmember\":2888,\"ibr\":2889,\"izing\":2890,\"Ġtool\":2891,\"ĠMon\":2892,\"ĠWhile\":2893,\"hood\":2894,\"ĠAng\":2895,\"ĠDef\":2896,\"Ġoffer\":2897,\"Tr\":2898,\"aur\":2899,\"Ġturned\":2900,\"ĠJuly\":2901,\"down\":2902,\"anced\":2903,\"Ġrecently\":2904,\"ĠEar\":2905,\"Ġce\":2906,\"ĠStar\":2907,\"ĠCong\":2908,\"rought\":2909,\"Ġblood\":2910,\"Ġhope\":2911,\"Ġcomment\":2912,\"aint\":2913,\"Ġarri\":2914,\"iles\":2915,\"Ġparticip\":2916,\"ought\":2917,\"ription\":2918,\"08\":2919,\"49\":2920,\"Ġgave\":2921,\"Ġselect\":2922,\"Ġkilled\":2923,\"sych\":2924,\"Ġgoes\":2925,\"ij\":2926,\"Ġcoll\":2927,\"Ġimpact\":2928,\"atives\":2929,\"ĠSer\":2930,\"09\":2931,\"ĠAugust\":2932,\"Ġboy\":2933,\"de\":2934,\"ĠDes\":2935,\"Ġfelt\":2936,\"US\":2937,\"Ġexpected\":2938,\"Ġimage\":2939,\"ĠMark\":2940,\"ccording\":2941,\"oice\":2942,\"EC\":2943,\"ĠMag\":2944,\"ened\":2945,\"hold\":2946,\"ĠPost\":2947,\"Ġprevent\":2948,\"No\":2949,\"Ġinvolved\":2950,\"Ġeyes\":2951,\"Ġquickly\":2952,\"At\":2953,\"unk\":2954,\"Ġbehav\":2955,\"Ġur\":2956,\"Ġled\":2957,\"come\":2958,\"ey\":2959,\"Ġcandid\":2960,\"Ġearlier\":2961,\"Ġfocus\":2962,\"ety\":2963,\"Pro\":2964,\"ledge\":2965,\"ixed\":2966,\"illed\":2967,\"Ġpopular\":2968,\"AP\":2969,\"Ġsett\":2970,\"light\":2971,\"Ġvarious\":2972,\"inks\":2973,\"Ġlevels\":2974,\"Ġroad\":2975,\"ellig\":2976,\"ables\":2977,\"hel\":2978,\"ittee\":2979,\"ĠGener\":2980,\"ype\":2981,\"Ġheard\":2982,\"icles\":2983,\"Ġmis\":2984,\"Ġusers\":2985,\"ĠSan\":2986,\"Ġimprove\":2987,\"Ġfather\":2988,\"Ġsearch\":2989,\"They\":2990,\"vil\":2991,\"Ġprofess\":2992,\"Ġknew\":2993,\"Ġloss\":2994,\"Ġevents\":2995,\"65\":2996,\"Ġbillion\":2997,\"07\":2998,\"02\":2999,\"ĠNews\":3000,\"ĠAM\":3001,\"Ġcover\":3002,\"where\":3003,\"ension\":3004,\"Ġbott\":3005,\"Ġareas\":3006,\"ences\":3007,\"ope\":3008,\"ĠTwitter\":3009,\"ael\":3010,\"Ġgets\":3011,\"ĠGoogle\":3012,\"Ġsn\":3013,\"iant\":3014,\"Ġvote\":3015,\"Ġnearly\":3016,\"Ġincluded\":3017,\"Ġrecogn\":3018,\"zz\":3019,\"mm\":3020,\"aled\":3021,\"Ġhappened\":3022,\"04\":3023,\"Ġhot\":3024,\"Ġwhose\":3025,\"Ġcivil\":3026,\"Ġsuff\":3027,\"oes\":3028,\"itiz\":3029,\"ĠSyri\":3030,\"Ġrespond\":3031,\"Ġhon\":3032,\"Ġfeatures\":3033,\"Ġeconomic\":3034,\"ĠApril\":3035,\"rim\":3036,\"Ġtechnology\":3037,\"Ġoption\":3038,\"aging\":3039,\"Ġpurch\":3040,\"Re\":3041,\"Ġlat\":3042,\"chie\":3043,\"isl\":3044,\"Ġrecomm\":3045,\"uf\":3046,\"Ġtraining\":3047,\"Ġeffects\":3048,\"Ġfast\":3049,\"Ġ2010\":3050,\"Ġoccur\":3051,\"Ġwebsite\":3052,\"Ġemail\":3053,\"Ġsens\":3054,\"ech\":3055,\"Ġoil\":3056,\"Ġinflu\":3057,\"Ġcurrently\":3058,\"ĠSch\":3059,\"ĠAdd\":3060,\"Ġgoal\":3061,\"Ġscient\":3062,\"Ġconv\":3063,\"100\":3064,\"emy\":3065,\"Ġdecided\":3066,\"Ġtravel\":3067,\"Ġmention\":3068,\"LL\":3069,\"03\":3070,\"Ġelection\":3071,\"Ġphone\":3072,\"Ġlooks\":3073,\"Ġsituation\":3074,\"Ġcy\":3075,\"Ġhor\":3076,\"bed\":3077,\"ĠCourt\":3078,\"aily\":3079,\"aves\":3080,\"Ġquality\":3081,\"ĠComp\":3082,\"wise\":3083,\"Ġtable\":3084,\"Ġstaff\":3085,\"ĠWind\":3086,\"ett\":3087,\"Ġtried\":3088,\"idered\":3089,\"Ġaddition\":3090,\"Ġbox\":3091,\"Ġlack\":3092,\"arily\":3093,\"Ġwide\":3094,\"Ġmid\":3095,\"Ġboard\":3096,\"ysis\":3097,\"Ġanti\":3098,\"ha\":3099,\"Ġdig\":3100,\"ening\":3101,\"Ġdro\":3102,\"Con\":3103,\"68\":3104,\"Ġslow\":3105,\"based\":3106,\"sequ\":3107,\"Ġpath\":3108,\"Ex\":3109,\"aker\":3110,\"Ġworked\":3111,\"Ġpen\":3112,\"Ġengine\":3113,\"Ġlooked\":3114,\"ĠSuper\":3115,\"ĠServ\":3116,\"Ġvictim\":3117,\"Un\":3118,\"Ġproperty\":3119,\"Ġintrodu\":3120,\"Ġexecut\":3121,\"ĠPM\":3122,\"Le\":3123,\"Ġcolor\":3124,\"ĠMore\":3125,\"Ġ60\":3126,\"Ġnetwork\":3127,\"Ġdate\":3128,\"cul\":3129,\"idge\":3130,\"Ġextra\":3131,\"31\":3132,\"Ġsle\":3133,\"67\":3134,\"Ġwond\":3135,\"Ġreports\":3136,\"just\":3137,\"ĠAustral\":3138,\"Ġcapital\":3139,\"Ġens\":3140,\"Ġcommand\":3141,\"Ġallowed\":3142,\"Ġprep\":3143,\"Ġcapt\":3144,\"hib\":3145,\"Ġnumbers\":3146,\"chan\":3147,\"Ġfair\":3148,\"mp\":3149,\"oms\":3150,\"Ġreach\":3151,\"With\":3152,\"tain\":3153,\"Ġbroad\":3154,\"Ġcouple\":3155,\"ecause\":3156,\"lying\":3157,\"ĠFeb\":3158,\"Ġscreen\":3159,\"Ġlives\":3160,\"Ġprior\":3161,\"ĠCongress\":3162,\"Ar\":3163,\"Ġapproach\":3164,\"Ġemer\":3165,\"aries\":3166,\"ĠDis\":3167,\"serv\":3168,\"ĠNe\":3169,\"Ġbuilt\":3170,\"cies\":3171,\"Ġrepe\":3172,\"Ġrules\":3173,\"force\":3174,\"ĠPal\":3175,\"Ġfinancial\":3176,\"Ġconsidered\":3177,\"ĠChar\":3178,\"nces\":3179,\"ĠIS\":3180,\"Ġbrought\":3181,\"Ġbi\":3182,\"iers\":3183,\"ĠSim\":3184,\"OP\":3185,\"Ġproducts\":3186,\"Ġvisit\":3187,\"Ġdocument\":3188,\"Ġconduct\":3189,\"Ġcompletely\":3190,\"ining\":3191,\"ĠCalif\":3192,\"ibly\":3193,\"Ġwritten\":3194,\"ĠTV\":3195,\"ements\":3196,\"Ġdraw\":3197,\"One\":3198,\"Ġpublished\":3199,\"Ġsecret\":3200,\"rain\":3201,\"het\":3202,\"ĠFacebook\":3203,\"onday\":3204,\"ĠUp\":3205,\"Ġsexual\":3206,\"Ġthous\":3207,\"ĠPat\":3208,\"Ġess\":3209,\"Ġstandard\":3210,\"Ġarm\":3211,\"ges\":3212,\"ection\":3213,\"Ġfell\":3214,\"Ġforeign\":3215,\"ani\":3216,\"ĠFriday\":3217,\"Ġregular\":3218,\"inary\":3219,\"Ġincreased\":3220,\"Ġusually\":3221,\"Ġdemon\":3222,\"Ġdark\":3223,\"Ġadditional\":3224,\"rol\":3225,\"ĠOf\":3226,\"Ġproduction\":3227,\"!!\":3228,\"undred\":3229,\"Ġinternational\":3230,\"idents\":3231,\"ĠFree\":3232,\"roup\":3233,\"Ġrace\":3234,\"Ġmach\":3235,\"Ġhuge\":3236,\"All\":3237,\"lear\":3238,\"ovember\":3239,\"Ġtown\":3240,\"Ġattention\":3241,\"ĠOff\":3242,\"yond\":3243,\"ĠThen\":3244,\"field\":3245,\"Ġterror\":3246,\"raz\":3247,\"ĠBo\":3248,\"Ġmeeting\":3249,\"ĠPark\":3250,\"Ġarrest\":3251,\"Ġfear\":3252,\"Ġaw\":3253,\"ĠVal\":3254,\"oring\":3255,\"',\":3256,\"Ġextreme\":3257,\"arr\":3258,\"Ġworkers\":3259,\"After\":3260,\"Ġ31\":3261,\"net\":3262,\"ament\":3263,\"Ġdirectly\":3264,\"Ġpopulation\":3265,\"ube\":3266,\"ĠOctober\":3267,\"ĠIN\":3268,\"ĠJanuary\":3269,\"59\":3270,\"ĠDavid\":3271,\"Ġcross\":3272,\"cember\":3273,\"ĠFirst\":3274,\"Ġmessage\":3275,\"irit\":3276,\"Ġnation\":3277,\"Ġpoll\":3278,\"isions\":3279,\"Ġanswer\":3280,\"ny\":3281,\"isode\":3282,\"Ġcarry\":3283,\"ĠRussia\":3284,\"Ġhear\":3285,\"ength\":3286,\"roy\":3287,\"Ġnatural\":3288,\"inally\":3289,\"Ġdog\":3290,\"mitted\":3291,\"Ġtrade\":3292,\"Ġsubst\":3293,\"Ġmultiple\":3294,\"ĠAfric\":3295,\"Ġfans\":3296,\"Ġsort\":3297,\"Ġglobal\":3298,\"ication\":3299,\"ĠWed\":3300,\"ara\":3301,\"Ġachie\":3302,\"Ġlanguage\":3303,\"vey\":3304,\"Ġtal\":3305,\"Ġnecessary\":3306,\"Ġdetails\":3307,\"Ġsen\":3308,\"ĠSund\":3309,\"ĠReg\":3310,\"ĠRec\":3311,\"06\":3312,\"Ġsil\":3313,\"ressive\":3314,\"Ġmedical\":3315,\"unch\":3316,\"ornia\":3317,\"Ġund\":3318,\"fort\":3319,\"ocks\":3320,\"ĠMonday\":3321,\"uesday\":3322,\"craft\":3323,\"77\":3324,\"urt\":3325,\"Ġver\":3326,\"ĠHill\":3327,\"Ġreceive\":3328,\"Ġmorning\":3329,\"estern\":3330,\"Ġbank\":3331,\"Ġsat\":3332,\"irth\":3333,\"ĠHigh\":3334,\"Ġdevice\":3335,\"ĠTHE\":3336,\"ĠCenter\":3337,\"Ġsafe\":3338,\"Ġple\":3339,\"ĠCanada\":3340,\"Ġsystems\":3341,\"Ġassist\":3342,\"Ġsurv\":3343,\"Ġbattle\":3344,\"ĠSoc\":3345,\"vertis\":3346,\"She\":3347,\"Ġpaper\":3348,\"Ġgrowth\":3349,\"Ġcast\":3350,\"Sc\":3351,\"Ġplans\":3352,\"lled\":3353,\"Ġparts\":3354,\"Ġwall\":3355,\"Ġmovement\":3356,\"Ġpractice\":3357,\"imately\":3358,\"Ġdisplay\":3359,\"Ġsometimes\":3360,\"omp\":3361,\"ĠPaul\":3362,\"ĠYes\":3363,\"king\":3364,\"58\":3365,\"oly\":3366,\"Ġson\":3367,\"Ġavoid\":3368,\"okes\":3369,\"ĠJew\":3370,\"Ġtowards\":3371,\"asc\":3372,\"Ġ//\":3373,\"ĠKore\":3374,\"Ġtalking\":3375,\"Ġcorrect\":3376,\"Ġspent\":3377,\"icks\":3378,\"iable\":3379,\"eared\":3380,\"Ġterm\":3381,\"Ġwants\":3382,\"oming\":3383,\"Ġut\":3384,\"Ġdoub\":3385,\"Ġforces\":3386,\"Ġplease\":3387,\"69\":3388,\"ĠNovember\":3389,\"atform\":3390,\"ondon\":3391,\"Ġones\":3392,\"Ġimmediately\":3393,\"ĠRussian\":3394,\"ĠMet\":3395,\"Ġdeg\":3396,\"Ġparents\":3397,\"CH\":3398,\"ĠAmericans\":3399,\"aly\":3400,\"ĠMod\":3401,\"Ġshown\":3402,\"Ġconditions\":3403,\"Ġstuff\":3404,\"Ġreb\":3405,\"ĠYour\":3406,\"Ġincludes\":3407,\"nown\":3408,\"ĠSam\":3409,\"Ġexperien\":3410,\"mission\":3411,\"ĠEven\":3412,\"aught\":3413,\"Ġannounced\":3414,\"ĠRepublican\":3415,\"Ġdetermin\":3416,\"Ġdescribed\":3417,\"ĠCounty\":3418,\"()\":3419,\"Ġdoor\":3420,\"Ġchanged\":3421,\"Ġneigh\":3422,\"ĠHere\":3423,\"Ġclean\":3424,\"Ġpan\":3425,\"ĠDecember\":3426,\"ĠEuropean\":3427,\"iring\":3428,\"apter\":3429,\"Ġclub\":3430,\"ĠTuesday\":3431,\"Ġpaid\":3432,\"ĠNet\":3433,\"Ġattacks\":3434,\"Ġcharacters\":3435,\"Ġalone\":3436,\"Ġdirector\":3437,\"dom\":3438,\"Ġ35\":3439,\"Ġload\":3440,\"Ġrout\":3441,\"ĠCalifornia\":3442,\"Ġfinally\":3443,\"Ġrac\":3444,\"Ġcontr\":3445,\"Ġexactly\":3446,\"resh\":3447,\"pri\":3448,\"ĠIslam\":3449,\"Ġnature\":3450,\"Ġcareer\":3451,\"Ġlatest\":3452,\"Ġconvers\":3453,\"ĠSl\":3454,\"pose\":3455,\"cient\":3456,\"ĠInc\":3457,\"ivity\":3458,\"88\":3459,\"ĠAtt\":3460,\"ĠMor\":3461,\"nesday\":3462,\"Ġweight\":3463,\"ken\":3464,\"Ġnote\":3465,\"Ġteams\":3466,\"Ġ\\\\\":3467,\"airs\":3468,\"ĠGreen\":3469,\"Ġhundred\":3470,\"onent\":3471,\"Ġstreng\":3472,\"Ġconsist\":3473,\"icated\":3474,\"Ġregul\":3475,\"Ġlic\":3476,\"astic\":3477,\"Ġten\":3478,\"ursday\":3479,\"elligence\":3480,\"ously\":3481,\"ĠUK\":3482,\"BI\":3483,\"Ġcosts\":3484,\"Ġindepend\":3485,\"ĠAP\":3486,\"Ġnormal\":3487,\"Ġhom\":3488,\"Ġobvious\":3489,\"Ġswe\":3490,\"Ġstar\":3491,\"Ġready\":3492,\"acher\":3493,\"Ġimplement\":3494,\"gest\":3495,\"Ġsong\":3496,\"ĠGet\":3497,\"ĠLab\":3498,\"Ġinteresting\":3499,\"using\":3500,\"Ġgiving\":3501,\"ĠSunday\":3502,\"Ġetc\":3503,\"Ġmiddle\":3504,\"Ġremember\":3505,\"right\":3506,\"osition\":3507,\"utions\":3508,\"Ġmax\":3509,\"46\":3510,\"Ġyourself\":3511,\"Ġdemand\":3512,\"Ġtreatment\":3513,\"Ġdanger\":3514,\"ĠCons\":3515,\"Ġguy\":3516,\"ĠBritish\":3517,\"Ġphysical\":3518,\"Ġrelated\":3519,\"Ġremain\":3520,\"Ġcouldn\":3521,\"Ġrefer\":3522,\"Ġcitiz\":3523,\"box\":3524,\"ENT\":3525,\"board\":3526,\"Ġinn\":3527,\"IG\":3528,\"ero\":3529,\"ĠStreet\":3530,\"ospital\":3531,\"rench\":3532,\"chers\":3533,\"Ġstra\":3534,\"OL\":3535,\"ager\":3536,\"ĠAN\":3537,\"Ġeasily\":3538,\"IA\":3539,\"enge\":3540,\"iny\":3541,\"Ġclos\":3542,\"ocked\":3543,\"Ġuses\":3544,\"ĠCoun\":3545,\"Im\":3546,\"uild\":3547,\"??\":3548,\"more\":3549,\"Ġang\":3550,\"Ġwrite\":3551,\"olute\":3552,\"57\":3553,\"Ġleader\":3554,\"Ġreading\":3555,\"</\":3556,\"Ġautom\":3557,\"ests\":3558,\"43\":3559,\"Ġlegisl\":3560,\"ĠGold\":3561,\"Ġdesigned\":3562,\"ĠST\":3563,\"ĠLeg\":3564,\"ares\":3565,\"Ġbeaut\":3566,\"ĠTex\":3567,\"Ġappears\":3568,\"Ġstrugg\":3569,\"ĠRom\":3570,\"Ġ00\":3571,\"Ġchoice\":3572,\"Ġparticularly\":3573,\"ĠFrom\":3574,\"oper\":3575,\"ĠLondon\":3576,\"anned\":3577,\"Ġallows\":3578,\"obile\":3579,\"Ġdifference\":3580,\"âĢ¢\":3581,\"ĠView\":3582,\"ĠWednesday\":3583,\"Ġalthough\":3584,\"Ġrelative\":3585,\"Ġapplication\":3586,\"atever\":3587,\"Ġaren\":3588,\"Ġmyself\":3589,\"Ġimag\":3590,\"Ġdise\":3591,\"Ġsociety\":3592,\"Ġfrequ\":3593,\"ĠEnglish\":3594,\"Ġpoor\":3595,\"ĠDay\":3596,\"Ġwriting\":3597,\"Ġseven\":3598,\"Ġstarting\":3599,\"Ġbud\":3600,\"Ġprint\":3601,\"ĠTrans\":3602,\"ufact\":3603,\"ĠStud\":3604,\"new\":3605,\"Ġcrim\":3606,\"Ġgives\":3607,\"Ġcool\":3608,\"ae\":3609,\"iance\":3610,\"ĠGeneral\":3611,\"Ġthinking\":3612,\"Ġsave\":3613,\"Ġlimited\":3614,\"ĠParty\":3615,\"Ġmeaning\":3616,\"pen\":3617,\"owers\":3618,\"ĠJack\":3619,\"EM\":3620,\"Ġnice\":3621,\"rupt\":3622,\"Ġgas\":3623,\"Ġeight\":3624,\"Ġfeet\":3625,\"Ġeffort\":3626,\"Ġign\":3627,\"icit\":3628,\"Bl\":3629,\"coin\":3630,\"Ġopin\":3631,\"Ġbrain\":3632,\"While\":3633,\"hest\":3634,\"ĠThursday\":3635,\"Ġwouldn\":3636,\"aughter\":3637,\"Ġtouch\":3638,\"lements\":3639,\"Ġstudies\":3640,\"Ġcenter\":3641,\"cont\":3642,\"orge\":3643,\"Ġcomputer\":3644,\"Ġinvestigation\":3645,\"Pl\":3646,\"orks\":3647,\"Ġ2008\":3648,\"Ġincreasing\":3649,\"Ġstore\":3650,\"Ġcomments\":3651,\"Ġbal\":3652,\"men\":3653,\"Ġdoll\":3654,\"Ġliber\":3655,\"Ġwife\":3656,\"Ġlaws\":3657,\"aturday\":3658,\"itness\":3659,\"Ġmodern\":3660,\"ĠSk\":3661,\"Ġadministration\":3662,\"Ġopportunity\":3663,\"Ġsal\":3664,\"Ġpowerful\":3665,\"My\":3666,\"Ġclaims\":3667,\"ĠEarth\":3668,\"ords\":3669,\"Ġtitle\":3670,\"Ġesc\":3671,\"name\":3672,\"Not\":3673,\"omen\":3674,\"Ġbeyond\":3675,\"Ġcamer\":3676,\"Ġsell\":3677,\"itute\":3678,\"earch\":3679,\"Ġappl\":3680,\"iment\":3681,\"42\":3682,\"ĠArt\":3683,\"Ġunf\":3684,\"Ġviolence\":3685,\"urg\":3686,\"ĠEast\":3687,\"Ġcompared\":3688,\"Ġoptions\":3689,\"Ġthroughout\":3690,\"Ġvs\":3691,\"igr\":3692,\".[\":3693,\"aches\":3694,\"78\":3695,\"Ġfiles\":3696,\"FL\":3697,\"EL\":3698,\"arian\":3699,\"ĠJames\":3700,\"ĠAir\":3701,\"anch\":3702,\"Ġdetail\":3703,\"Ġpiece\":3704,\"PS\":3705,\"Ġnamed\":3706,\"Ġeducation\":3707,\"Ġdrive\":3708,\"Ġitems\":3709,\"Ġstudent\":3710,\"iced\":3711,\"::\":3712,\"ico\":3713,\"Ġthrow\":3714,\"Ġscene\":3715,\"Ġcomplex\":3716,\"Ġ2009\":3717,\"Ġprec\":3718,\"ĠBre\":3719,\"79\":3720,\"Ġconcept\":3721,\"Ġstatus\":3722,\"aming\":3723,\"Ġdied\":3724,\"Ġknowledge\":3725,\"Ġbeginning\":3726,\"OD\":3727,\"ruary\":3728,\"Ġcertainly\":3729,\"Ġguys\":3730,\"Ġslight\":3731,\"inn\":3732,\"ounds\":3733,\"Ġfine\":3734,\"Ġfat\":3735,\"ications\":3736,\"Ġperhaps\":3737,\"ĠAnt\":3738,\"Ġincome\":3739,\"Ġhttps\":3740,\"Ġmajority\":3741,\"ports\":3742,\"ston\":3743,\"Ġgreater\":3744,\"Ġfeed\":3745,\"entially\":3746,\"Ġsafety\":3747,\"Ġunique\":3748,\"andom\":3749,\"Ġgone\":3750,\"Ġshowed\":3751,\"Ġhistor\":3752,\"Ġcounter\":3753,\"ius\":3754,\"ida\":3755,\"Ġleading\":3756,\"ipe\":3757,\"Ġsend\":3758,\"ĠDonald\":3759,\"erve\":3760,\"Ġdefense\":3761,\"inese\":3762,\"Ġyes\":3763,\"ĠFire\":3764,\"ĠMuslim\":3765,\"raq\":3766,\"Ġcontinued\":3767,\"osh\":3768,\"Ġprovides\":3769,\"Ġprison\":3770,\"ĠPre\":3771,\"Ġhappy\":3772,\"Ġeconomy\":3773,\"Ġtrust\":3774,\"ags\":3775,\"ĠGame\":3776,\"Ġweapons\":3777,\"uman\":3778,\"ĠCle\":3779,\"itation\":3780,\"Ġanalysis\":3781,\"ĠTimes\":3782,\"Ġscience\":3783,\"->\":3784,\"Ġfigure\":3785,\"Ġdisapp\":3786,\"enty\":3787,\"Ġsoftware\":3788,\"Ġult\":3789,\"Ġofficers\":3790,\"New\":3791,\"Is\":3792,\"Ġremains\":3793,\"ĠIndia\":3794,\"Ġpsych\":3795,\"rief\":3796,\"Ġcat\":3797,\"esc\":3798,\"Ġobserv\":3799,\"Ġstage\":3800,\"ĠDark\":3801,\"Ġenter\":3802,\"change\":3803,\"Ġpassed\":3804,\"Ġdespite\":3805,\"ĠOut\":3806,\"Ġmovie\":3807,\"rs\":3808,\"Ġvoice\":3809,\"mine\":3810,\"ĠPlay\":3811,\"Ġtoward\":3812,\"ĠTer\":3813,\"Ġregion\":3814,\"Ġvalues\":3815,\"orters\":3816,\"Ġmount\":3817,\"Ġofficer\":3818,\"ĠOther\":3819,\"ban\":3820,\"Ġhous\":3821,\"wood\":3822,\"room\":3823,\"IV\":3824,\"ĠSun\":3825,\"see\":3826,\"ĠOver\":3827,\"rog\":3828,\"90\":3829,\"Ġlay\":3830,\"ĠTur\":3831,\"awn\":3832,\"Ġpressure\":3833,\"ĠSub\":3834,\"Ġbooks\":3835,\"edom\":3836,\"ĠSand\":3837,\"AA\":3838,\"ago\":3839,\"Ġreasons\":3840,\"ford\":3841,\"Ġactivity\":3842,\"UT\":3843,\"Now\":3844,\"ĠSenate\":3845,\"cell\":3846,\"night\":3847,\"Ġcalls\":3848,\"inter\":3849,\"Ġletter\":3850,\"ĠRob\":3851,\"ĠJe\":3852,\"Ġchoose\":3853,\"ĠLaw\":3854,\"Get\":3855,\"Be\":3856,\"Ġrob\":3857,\"Ġtypes\":3858,\"Ġplatform\":3859,\"Ġquarter\":3860,\"RA\":3861,\"ĠTime\":3862,\"Ġmaybe\":3863,\"ĠCr\":3864,\"95\":3865,\"pre\":3866,\"Ġmoving\":3867,\"Ġlif\":3868,\"Ġgold\":3869,\"Ġsom\":3870,\"Ġpatients\":3871,\"Ġtruth\":3872,\"ĠKe\":3873,\"urance\":3874,\"antly\":3875,\"mar\":3876,\"Ġcharge\":3877,\"ĠGreat\":3878,\"Ġcele\":3879,\"--------------------------------\":3880,\"Ġrock\":3881,\"roid\":3882,\"ancy\":3883,\"Ġcredit\":3884,\"aud\":3885,\"By\":3886,\"ĠEvery\":3887,\"Ġmoved\":3888,\"inger\":3889,\"ribution\":3890,\"Ġnames\":3891,\"Ġstraight\":3892,\"ĠHealth\":3893,\"ĠWell\":3894,\"Ġfeature\":3895,\"Ġrule\":3896,\"Ġsche\":3897,\"inated\":3898,\"ĠMichael\":3899,\"berg\":3900,\"41\":3901,\"iled\":3902,\"band\":3903,\"Ġclick\":3904,\"ĠAngel\":3905,\"onents\":3906,\"ÂŃ\":3907,\"ĠIraq\":3908,\"ĠSaturday\":3909,\"Ġaware\":3910,\"part\":3911,\"Ġpattern\":3912,\"OW\":3913,\"ĠLet\":3914,\"Ġgrad\":3915,\"igned\":3916,\"Ġassociated\":3917,\"Ġstyle\":3918,\"no\":3919,\"iation\":3920,\"aith\":3921,\"ilies\":3922,\"Ġstories\":3923,\"uration\":3924,\"Ġindividuals\":3925,\"ĠâĢ¦\":3926,\"miss\":3927,\"ĠAssoci\":3928,\"ishing\":3929,\"aby\":3930,\"Ġsummer\":3931,\"ĠBen\":3932,\"Ġ32\":3933,\"Ġarch\":3934,\"uty\":3935,\"ĠTexas\":3936,\"hol\":3937,\"Ġfully\":3938,\"Ġmill\":3939,\"Ġfollowed\":3940,\"ĠBill\":3941,\"ĠIndian\":3942,\"ĠSecret\":3943,\"ĠBel\":3944,\"ĠFebruary\":3945,\"Ġjobs\":3946,\"Ġseemed\":3947,\"ĠGovern\":3948,\"ipped\":3949,\"Ġreality\":3950,\"Ġlines\":3951,\"Ġpark\":3952,\"Ġmeasure\":3953,\"ĠOur\":3954,\"IM\":3955,\"Ġbrother\":3956,\"Ġgrowing\":3957,\"Ġban\":3958,\"Ġestim\":3959,\"Ġcry\":3960,\"ĠSchool\":3961,\"Ġmechan\":3962,\"ĠOF\":3963,\"ĠWindows\":3964,\"Ġrates\":3965,\"ĠOh\":3966,\"Ġpositive\":3967,\"Ġculture\":3968,\"istics\":3969,\"ica\":3970,\"Ġhar\":3971,\"ya\":3972,\"itely\":3973,\"ipp\":3974,\"Ġmap\":3975,\"encies\":3976,\"ĠWilliam\":3977,\"II\":3978,\"akers\":3979,\"56\":3980,\"ĠMart\":3981,\"ĠRem\":3982,\"Ġaltern\":3983,\"itude\":3984,\"Ġcoach\":3985,\"rowd\":3986,\"Don\":3987,\"Ġkids\":3988,\"Ġjournal\":3989,\"Ġcorpor\":3990,\"Ġfalse\":3991,\"Ġweb\":3992,\"Ġsleep\":3993,\"Ġcontain\":3994,\"Ġsto\":3995,\"Ġbed\":3996,\"iverse\":3997,\"ĠRich\":3998,\"ĠChinese\":3999,\"Ġpun\":4000,\"Ġmeant\":4001,\"known\":4002,\"Ġnotice\":4003,\"Ġfavorite\":4004,\"aven\":4005,\"Ġcondition\":4006,\"Ġpurpose\":4007,\"))\":4008,\"Ġorganization\":4009,\"Ġchalleng\":4010,\"Ġmanufact\":4011,\"Ġsusp\":4012,\"ĠAc\":4013,\"Ġcritic\":4014,\"unes\":4015,\"uclear\":4016,\"Ġmer\":4017,\"vention\":4018,\"Ġ80\":4019,\"Ġmist\":4020,\"ĠUs\":4021,\"ĠTor\":4022,\"http\":4023,\"olf\":4024,\"Ġlarger\":4025,\"Ġadvant\":4026,\"Ġresear\":4027,\"Ġactions\":4028,\"ml\":4029,\"Ġkept\":4030,\"Ġaim\":4031,\",'\":4032,\"col\":4033,\"Ġbenefits\":4034,\"ifying\":4035,\"Ġactual\":4036,\"ĠInternational\":4037,\"Ġvehicle\":4038,\"Ġchief\":4039,\"Ġefforts\":4040,\"ĠLeague\":4041,\"ĠMost\":4042,\"Ġwait\":4043,\"Ġadult\":4044,\"Ġoverall\":4045,\"Ġspeech\":4046,\"Ġhighly\":4047,\"Ġfemale\":4048,\"Ġerror\":4049,\"Ġeffective\":4050,\"54\":4051,\"Ġencour\":4052,\"well\":4053,\"Ġfailed\":4054,\"Ġconserv\":4055,\"Ġprograms\":4056,\"Ġtrou\":4057,\"Ġahead\":4058,\"500\":4059,\"vertisement\":4060,\"IP\":4061,\"ĠFound\":4062,\"pir\":4063,\"Ġ%\":4064,\"Ġcrime\":4065,\"ander\":4066,\"Ġlocation\":4067,\"ĠIran\":4068,\"Ġbehavior\":4069,\"azing\":4070,\"Ġrare\":4071,\"Ġemb\":4072,\"Ġcaused\":4073,\"Ġship\":4074,\"Ġactive\":4075,\"Ġcontribut\":4076,\"Ġgreen\":4077,\"Ġacqu\":4078,\"Ġreflect\":4079,\"venue\":4080,\"Ġfirm\":4081,\"Ġbirth\":4082,\"].\":4083,\"Ġclearly\":4084,\"Ġemot\":4085,\"Ġagency\":4086,\"riage\":4087,\"Ġmemory\":4088,\"98\":4089,\"SA\":4090,\"ĠSee\":4091,\"acing\":4092,\"CC\":4093,\"Ġbiggest\":4094,\"Ġrap\":4095,\"Ġbasic\":4096,\"Ġband\":4097,\"eat\":4098,\"Ġsuspect\":4099,\"ĠMac\":4100,\"Ġ90\":4101,\"mark\":4102,\"istan\":4103,\"Ġspread\":4104,\"ams\":4105,\"ki\":4106,\"asy\":4107,\"rav\":4108,\"ĠRober\":4109,\"Ġdemonstr\":4110,\"rated\":4111,\"Ġabsolute\":4112,\"Ġplaces\":4113,\"Ġimpl\":4114,\"ibrary\":4115,\"Ġcards\":4116,\"Ġdestroy\":4117,\"Ġvirt\":4118,\"vere\":4119,\"Ġappeared\":4120,\"yan\":4121,\"point\":4122,\"Ġbeg\":4123,\"Ġtemper\":4124,\"spe\":4125,\"anted\":4126,\"ears\":4127,\"ĠDirect\":4128,\"Ġlength\":4129,\"Ġblog\":4130,\"amb\":4131,\"Ġinteg\":4132,\"Ġresources\":4133,\"acc\":4134,\"iful\":4135,\"Ġspot\":4136,\"Ġforced\":4137,\"Ġthousands\":4138,\"ĠMinister\":4139,\"Ġqual\":4140,\"ĠFrench\":4141,\"atically\":4142,\"Ġgenerally\":4143,\"Ġdrink\":4144,\"Ġthus\":4145,\"IL\":4146,\"odes\":4147,\"Ġappropri\":4148,\"ĠRead\":4149,\"Ġwhom\":4150,\"Ġeye\":4151,\"Ġcollege\":4152,\"Ġ45\":4153,\"irection\":4154,\"Ġensure\":4155,\"Ġapparent\":4156,\"iders\":4157,\"Ġreligious\":4158,\"Ġminor\":4159,\"olic\":4160,\"Ġtro\":4161,\"ĠWhy\":4162,\"ribute\":4163,\"met\":4164,\"Ġprimary\":4165,\"Ġdeveloped\":4166,\"Ġpeace\":4167,\"Ġskin\":4168,\"ste\":4169,\"ava\":4170,\"Ġblue\":4171,\"Ġfamilies\":4172,\"Ġir\":4173,\"Ġapply\":4174,\"Ġinform\":4175,\"ĠSmith\":4176,\"CT\":4177,\"ii\":4178,\"Ġlimit\":4179,\"Ġresist\":4180,\"................\":4181,\"umn\":4182,\"Ġconflic\":4183,\"Ġtwe\":4184,\"udd\":4185,\"ĠTom\":4186,\"Ġliter\":4187,\"que\":4188,\"bon\":4189,\"Ġhair\":4190,\"Ġeventually\":4191,\"Ġpus\":4192,\"Ġhelped\":4193,\"Ġagg\":4194,\"orney\":4195,\"ĠApple\":4196,\"Ġfit\":4197,\"ĠSur\":4198,\"Ġprem\":4199,\"Ġsales\":4200,\"Ġseconds\":4201,\"Ġstrength\":4202,\"Ġfeeling\":4203,\"¿½\":4204,\"Ġtour\":4205,\"Ġknows\":4206,\"oom\":4207,\"Ġexerc\":4208,\"Ġsomew\":4209,\"ï¿½\":4210,\">>\":4211,\"Ġspokes\":4212,\"Ġideas\":4213,\"Ġregist\":4214,\"soft\":4215,\"ĠDel\":4216,\"ĠPC\":4217,\"Ġpropos\":4218,\"Ġlaunch\":4219,\"Ġbottom\":4220,\"TH\":4221,\"ĠPlease\":4222,\"vest\":4223,\"itz\":4224,\"ĠInter\":4225,\"Ġscript\":4226,\"Ġrat\":4227,\"arning\":4228,\"Ġil\":4229,\"ĠJer\":4230,\"ĠAre\":4231,\"Ġwhatever\":4232,\"oken\":4233,\"cience\":4234,\"Ġmode\":4235,\"Ġagree\":4236,\"Ġsources\":4237,\"Ġinitial\":4238,\"Ġrestrict\":4239,\"Ġwonder\":4240,\"usion\":4241,\"####\":4242,\"ĠSil\":4243,\"ville\":4244,\"Ġburn\":4245,\"tw\":4246,\"asion\":4247,\"ĠÂ£\":4248,\"Ġnor\":4249,\"uing\":4250,\"Ġreached\":4251,\"Ġsun\":4252,\"Ġcateg\":4253,\"igration\":4254,\"Ġcook\":4255,\"Ġpromot\":4256,\"Ġmale\":4257,\"Ġclimate\":4258,\"Ġfix\":4259,\"Ġalleged\":4260,\"UR\":4261,\"alled\":4262,\"Ġimages\":4263,\"Cont\":4264,\"ota\":4265,\"Ġschools\":4266,\"ios\":4267,\"Ġdrop\":4268,\"Ġstream\":4269,\"ĠMo\":4270,\"Ġpreviously\":4271,\"aling\":4272,\"Ġpet\":4273,\"Ġdouble\":4274,\"Ġ(@\":4275,\"annel\":4276,\"Ġdefault\":4277,\"ties\":4278,\"Ġrank\":4279,\"ĠDec\":4280,\"ĠCouncil\":4281,\"Ġweapon\":4282,\"Ġstock\":4283,\"Ġanaly\":4284,\"ĠStr\":4285,\"Ġpicture\":4286,\"ĠPolice\":4287,\"ference\":4288,\"Ġcentury\":4289,\"Ġcitizens\":4290,\"Ġonto\":4291,\"Ġexpand\":4292,\"Ġhero\":4293,\"ĠSol\":4294,\"Ġwild\":4295,\"Ġupdate\":4296,\"Ġcustomers\":4297,\"ront\":4298,\"def\":4299,\"Ġlik\":4300,\"Ġcriminal\":4301,\"ĠChristian\":4302,\"SP\":4303,\"76\":4304,\"Ġleaving\":4305,\"Ġotherwise\":4306,\"ĠDist\":4307,\"Ġbasis\":4308,\"52\":4309,\"53\":4310,\"icip\":4311,\"ĠBer\":4312,\"Ġrecommend\":4313,\"Ġfloor\":4314,\"Ġcrowd\":4315,\"oles\":4316,\"Ġ70\":4317,\"Ġcentral\":4318,\"ĠEv\":4319,\"Ġdream\":4320,\"Ġdownload\":4321,\"Ġconfir\":4322,\"ĠThom\":4323,\"Ġwindow\":4324,\"Ġhappens\":4325,\"Ġunit\":4326,\"Ġtend\":4327,\"Ġspl\":4328,\"Ġbecomes\":4329,\"Ġfighting\":4330,\"Ġpredict\":4331,\"ĠPress\":4332,\"ĠPower\":4333,\"Ġheavy\":4334,\"aked\":4335,\"Ġfan\":4336,\"orter\":4337,\"ategy\":4338,\"BA\":4339,\"izes\":4340,\"Ġspend\":4341,\"Here\":4342,\"Ġ2007\":4343,\"Ġadop\":4344,\"ĠHam\":4345,\"Ġfootball\":4346,\"ĠPort\":4347,\"oday\":4348,\"51\":4349,\"ampions\":4350,\"Ġtransfer\":4351,\"ht\":4352,\"Ġ38\":4353,\"term\":4354,\"acity\":4355,\"Ġbur\":4356,\"],\":4357,\"ternal\":4358,\"rig\":4359,\"but\":4360,\"Ġtherefore\":4361,\"ĠBecause\":4362,\"resp\":4363,\"rey\":4364,\"Ġmission\":4365,\"Some\":4366,\"Ġnoted\":4367,\"Ġassum\":4368,\"Ġdisease\":4369,\"Ġedit\":4370,\"Ġprogress\":4371,\"rd\":4372,\"ĠBrown\":4373,\"ocal\":4374,\"Ġadding\":4375,\"Ġraised\":4376,\"ĠAny\":4377,\"Ġtick\":4378,\"Ġseeing\":4379,\"ĠPeople\":4380,\"Ġagreement\":4381,\"Ġserver\":4382,\"Ġwat\":4383,\"Ġdebate\":4384,\"Ġsupposed\":4385,\"iling\":4386,\"Ġlargest\":4387,\"Ġsuccessful\":4388,\"ĠPri\":4389,\"ĠDemocratic\":4390,\"Ġjump\":4391,\"ĠSyria\":4392,\"Ġowners\":4393,\"Ġoffers\":4394,\"Ġshooting\":4395,\"Ġeffic\":4396,\"sey\":4397,\"Ġhaven\":4398,\"verse\":4399,\"tered\":4400,\"ĠLight\":4401,\"imal\":4402,\"ĠBig\":4403,\"Ġdefend\":4404,\"Ġbeat\":4405,\"Ġrecords\":4406,\"%)\":4407,\"Ġscen\":4408,\"Ġemployees\":4409,\"Ġdevices\":4410,\"hem\":4411,\"Ġcommer\":4412,\"ĠMex\":4413,\"Ġbenefit\":4414,\"ĠProf\":4415,\"Ġilleg\":4416,\"Ġsurface\":4417,\"ĠAlso\":4418,\"Ġharm\":4419,\"ingly\":4420,\"wide\":4421,\"ĠAlex\":4422,\"Ġshut\":4423,\"ĠCur\":4424,\"Ġlose\":4425,\"pm\":4426,\"Ġchallenge\":4427,\"semb\":4428,\"Ġstation\":4429,\"Ġintelligence\":4430,\"Ġaccur\":4431,\"ĠFlor\":4432,\"Ġrequires\":4433,\"ĠMal\":4434,\"bum\":4435,\"Ġhospital\":4436,\"Ġspirit\":4437,\"Ġoffered\":4438,\"Ġproduce\":4439,\"ĠCommun\":4440,\"Ġcreating\":4441,\"Ġcris\":4442,\"spect\":4443,\"Ġended\":4444,\"Ġdaily\":4445,\"Ġvoters\":4446,\"lands\":4447,\"ias\":4448,\"ih\":4449,\"ona\":4450,\"Ġsmart\":4451,\"ĠOffice\":4452,\"ĠLord\":4453,\"rial\":4454,\"ĠInternet\":4455,\"Ġcircum\":4456,\"Ġextremely\":4457,\"'.\":4458,\"Ġopinion\":4459,\"ĠMil\":4460,\"Ġgain\":4461,\"BS\":4462,\"ĠFin\":4463,\"yp\":4464,\"Ġuseful\":4465,\"Ġbudget\":4466,\"Ġcomfort\":4467,\"isf\":4468,\"Ġbackground\":4469,\"eline\":4470,\"Ġepisode\":4471,\"Ġenemy\":4472,\"Ġtrial\":4473,\"Ġestablish\":4474,\"date\":4475,\"ĠCap\":4476,\"Ġcontinues\":4477,\"Ġshowing\":4478,\"ĠUnion\":4479,\"with\":4480,\"Ġposted\":4481,\"ĠSystem\":4482,\"Ġeat\":4483,\"rian\":4484,\"Ġrise\":4485,\"ĠGermany\":4486,\"ils\":4487,\"Ġsigned\":4488,\"Ġvill\":4489,\"Ġgrand\":4490,\"mor\":4491,\"ĠEngland\":4492,\"Ġprojects\":4493,\"umber\":4494,\"Ġconference\":4495,\"za\":4496,\"Ġresponsible\":4497,\"ĠArab\":4498,\"Ġlearned\":4499,\"âĢĶâĢĶ\":4500,\"ipping\":4501,\"ĠGeorge\":4502,\"OC\":4503,\"Ġreturned\":4504,\"ĠAustralia\":4505,\"Ġbrief\":4506,\"Qu\":4507,\"Ġbrand\":4508,\"illing\":4509,\"abled\":4510,\"Ġhighest\":4511,\"Ġtrain\":4512,\"ĠCommission\":4513,\"while\":4514,\"Ġnom\":4515,\"ception\":4516,\"Ġmut\":4517,\"ĠBlue\":4518,\"Ġincident\":4519,\"vant\":4520,\"86\":4521,\"ĠID\":4522,\"Ġnuclear\":4523,\"74\":4524,\"ĠLike\":4525,\"ĠRE\":4526,\"ĠMicro\":4527,\"li\":4528,\"mail\":4529,\"Ġcharges\":4530,\"89\":4531,\"Ġadjust\":4532,\"ado\":4533,\"Ġearth\":4534,\"NA\":4535,\"Ġprices\":4536,\"PA\":4537,\"Ġdraft\":4538,\"Ġruns\":4539,\"Ġcandidate\":4540,\"enses\":4541,\"Ġmanagement\":4542,\"ĠPhil\":4543,\"ĠMiss\":4544,\"Ġteach\":4545,\"gram\":4546,\"Ġunderstanding\":4547,\"ait\":4548,\"icago\":4549,\"Add\":4550,\"ĠEp\":4551,\"secut\":4552,\"Ġseparate\":4553,\"Ġinstance\":4554,\"Ġeth\":4555,\"Ġunless\":4556,\"********\":4557,\"ĠFore\":4558,\"inate\":4559,\"Ġoperations\":4560,\"Sp\":4561,\"Ġfaith\":4562,\"gar\":4563,\"ĠChurch\":4564,\"ronic\":4565,\"Ġconfig\":4566,\"osure\":4567,\"Ġactivities\":4568,\"Ġtraditional\":4569,\"Ġ36\":4570,\"Ġdirection\":4571,\"Ġmachine\":4572,\"Ġsurround\":4573,\"Ġpush\":4574,\"unction\":4575,\"ĠEU\":4576,\"Ġeasier\":4577,\"Ġargument\":4578,\"GB\":4579,\"Ġmicro\":4580,\"Ġspending\":4581,\"izations\":4582,\"Ġtheory\":4583,\"adow\":4584,\"Ġcalling\":4585,\"ĠLast\":4586,\"Ġder\":4587,\"Ġinfluence\":4588,\"Ġcommit\":4589,\"Ġphoto\":4590,\"Ġunc\":4591,\"istry\":4592,\"gn\":4593,\"aste\":4594,\"acks\":4595,\"Ġdisp\":4596,\"ady\":4597,\"do\":4598,\"ĠGood\":4599,\"Ġ`\":4600,\"Ġwish\":4601,\"Ġrevealed\":4602,\"ÂłÂł\":4603,\"lig\":4604,\"Ġenforce\":4605,\"ĠCommittee\":4606,\"Ġchem\":4607,\"Ġmiles\":4608,\"Ġinterested\":4609,\"Ġsolution\":4610,\"icy\":4611,\"inct\":4612,\"Ġ->\":4613,\"ĠDet\":4614,\"Ġremoved\":4615,\"Ġcompar\":4616,\"eah\":4617,\"Ġplant\":4618,\"ĠSince\":4619,\"Ġachieve\":4620,\"Ġadvantage\":4621,\"Ġslightly\":4622,\"bing\":4623,\"Ġplaced\":4624,\"under\":4625,\"2015\":4626,\"ĠMad\":4627,\"Ġtim\":4628,\"oses\":4629,\"Ġcru\":4630,\"ĠRock\":4631,\"Ġmostly\":4632,\"Ġnegative\":4633,\"Ġsetting\":4634,\"Ġproduced\":4635,\"Ġmur\":4636,\"Ġconnection\":4637,\"ĠMer\":4638,\"Ġdriver\":4639,\"Ġexecutive\":4640,\"Ġassault\":4641,\"Ġborn\":4642,\"ĠVer\":4643,\"tained\":4644,\"Ġstructure\":4645,\"Ġreduce\":4646,\"Ġdecades\":4647,\"Ġded\":4648,\"uke\":4649,\"ĠMany\":4650,\"idden\":4651,\"Ġleague\":4652,\"Se\":4653,\"Ġjoin\":4654,\"Ġdisco\":4655,\"Ġdie\":4656,\"cks\":4657,\"actions\":4658,\"Ġassess\":4659,\"agn\":4660,\"Ġgoals\":4661,\"ours\":4662,\"IR\":4663,\"Ġsenior\":4664,\"iller\":4665,\"mod\":4666,\"ipment\":4667,\"ocol\":4668,\"uy\":4669,\"ĠQue\":4670,\"Ġparties\":4671,\"irgin\":4672,\"Ġlearning\":4673,\"itable\":4674,\"Ġstreet\":4675,\"Ġcamera\":4676,\"App\":4677,\"Ġskills\":4678,\"bre\":4679,\"cious\":4680,\"Ġcelebr\":4681,\"ĠFranc\":4682,\"Ġexisting\":4683,\"Ġwilling\":4684,\"lor\":4685,\"Ġid\":4686,\"ĠSpace\":4687,\"Ġcritical\":4688,\"ĠLa\":4689,\"ortunately\":4690,\"Ġserve\":4691,\"Ġcold\":4692,\"Ġspecies\":4693,\"TS\":4694,\"Ġanimals\":4695,\"ĠBay\":4696,\"Ġolder\":4697,\"ĠUnder\":4698,\"estic\":4699,\"ĠTre\":4700,\"Ġteacher\":4701,\"Ġprefer\":4702,\"vis\":4703,\"Ġthread\":4704,\"ĠMatt\":4705,\"Ġmanager\":4706,\"ãĥ»\":4707,\"Ġprofessional\":4708,\"ĠVol\":4709,\"Ġnotes\":4710,\"These\":4711,\"ula\":4712,\"Ġfresh\":4713,\"ented\":4714,\"uzz\":4715,\"edy\":4716,\"clusion\":4717,\"ĠRel\":4718,\"Ġdoubt\":4719,\"EO\":4720,\"Ġopened\":4721,\"ĠBit\":4722,\"Advertisement\":4723,\"Ġguess\":4724,\"ĠUN\":4725,\"Ġsequ\":4726,\"Ġexplain\":4727,\"otten\":4728,\"Ġattract\":4729,\"aks\":4730,\"Ġstring\":4731,\"Ġcontext\":4732,\"ossible\":4733,\"ĠRepublicans\":4734,\"Ġsolid\":4735,\"Ġcities\":4736,\"Ġasking\":4737,\"Ġrandom\":4738,\"ups\":4739,\"uries\":4740,\"arant\":4741,\"dden\":4742,\"gl\":4743,\"ĠFlorida\":4744,\"Ġdepend\":4745,\"ĠScott\":4746,\"Ġ33\":4747,\"ĠiT\":4748,\"icon\":4749,\"Ġmentioned\":4750,\"Ġ2000\":4751,\"Ġclaimed\":4752,\"Ġdefinitely\":4753,\"ulf\":4754,\"Ġcore\":4755,\"Ġopening\":4756,\"ĠConst\":4757,\"which\":4758,\"ĠTra\":4759,\"AG\":4760,\"72\":4761,\"Ġbelieved\":4762,\"ada\":4763,\"Ġ48\":4764,\"ĠSecurity\":4765,\"yright\":4766,\"ĠPet\":4767,\"ĠLou\":4768,\"Ġholding\":4769,\"================\":4770,\"Ġice\":4771,\"Ġbrow\":4772,\"Ġauthorities\":4773,\"host\":4774,\"word\":4775,\"Ġscore\":4776,\"ĠDiv\":4777,\"Ġcells\":4778,\"Ġtransl\":4779,\"Ġneighbor\":4780,\"Ġremove\":4781,\"uct\":4782,\"Ġdistrict\":4783,\"ĠAccording\":4784,\"Ġworse\":4785,\"Ġconcerns\":4786,\"Ġpresidential\":4787,\"Ġpolicies\":4788,\"ĠHall\":4789,\"73\":4790,\"Ġhus\":4791,\"AY\":4792,\"Ġ2006\":4793,\"ĠJud\":4794,\"Ġindependent\":4795,\"ĠJustice\":4796,\"iliar\":4797,\"print\":4798,\"ighter\":4799,\"Ġprotection\":4800,\"zen\":4801,\"Ġsudden\":4802,\"house\":4803,\"ĠJes\":4804,\"PR\":4805,\"ĠInf\":4806,\"Ġbul\":4807,\"Ġ_\":4808,\"ĠService\":4809,\"ĠPR\":4810,\"Ġstrategy\":4811,\"ffect\":4812,\"Ġgirls\":4813,\"Ġmissing\":4814,\"oyal\":4815,\"ĠTeam\":4816,\"ulated\":4817,\"Ġdat\":4818,\"Ġpolitics\":4819,\"abor\":4820,\"According\":4821,\"Ġspell\":4822,\"Ġgraph\":4823,\"orthern\":4824,\"TC\":4825,\"Ab\":4826,\"Ġlabor\":4827,\"isher\":4828,\"Ġkick\":4829,\"ĠiTunes\":4830,\"Ġsteps\":4831,\"poses\":4832,\"Ġsmaller\":4833,\"En\":4834,\"bert\":4835,\"Ġroll\":4836,\"Ġresearchers\":4837,\"Ġclosed\":4838,\"Ġtransport\":4839,\"Ġlawy\":4840,\"________________\":4841,\"ĠChicago\":4842,\"Ġaspect\":4843,\"Ġnone\":4844,\"Ġmarriage\":4845,\"96\":4846,\"Ġelements\":4847,\"ĠFre\":4848,\"ĠSal\":4849,\"Ġdram\":4850,\"FC\":4851,\"top\":4852,\"equ\":4853,\"Ġhearing\":4854,\"Ġsupported\":4855,\"Ġtesting\":4856,\"cohol\":4857,\"Ġmassive\":4858,\"Ġstick\":4859,\"Ġguard\":4860,\"isco\":4861,\"phone\":4862,\"From\":4863,\"However\":4864,\"Ġborder\":4865,\"Ġcopy\":4866,\"ography\":4867,\"list\":4868,\"71\":4869,\"Ġowner\":4870,\"class\":4871,\"ruit\":4872,\"rate\":4873,\"ĠOnce\":4874,\"Ġdigital\":4875,\"Ġtask\":4876,\"ERS\":4877,\"Ġincred\":4878,\"tes\":4879,\"++\":4880,\"ĠFrance\":4881,\"Ġbreat\":4882,\"owl\":4883,\"Ġissued\":4884,\"ĠWestern\":4885,\"Ġdetect\":4886,\"Ġpartners\":4887,\"Ġshared\":4888,\"ĠCall\":4889,\"Ġcancer\":4890,\"ache\":4891,\"ribe\":4892,\"Ġexplained\":4893,\"Ġheat\":4894,\"{\\\"\":4895,\"Ġinvestment\":4896,\"ĠBook\":4897,\"Ġwood\":4898,\"Ġtools\":4899,\"ĠAlthough\":4900,\"Ġbelief\":4901,\"Ġcrisis\":4902,\"Ġge\":4903,\"ĠMP\":4904,\"Ġoperation\":4905,\"type\":4906,\"~~\":4907,\"ga\":4908,\"Ġcontains\":4909,\"anta\":4910,\"Ġexpress\":4911,\"ĠGroup\":4912,\"ĠJournal\":4913,\"ka\":4914,\"Ġamb\":4915,\"ĠUSA\":4916,\"Ġfinding\":4917,\"Ġfunding\":4918,\"how\":4919,\"Ġestablished\":4920,\"ideos\":4921,\"Ġdegree\":4922,\"Ġdangerous\":4923,\"anging\":4924,\"Ġfreedom\":4925,\"pport\":4926,\"outhern\":4927,\"Ġchurch\":4928,\"Ġcatch\":4929,\"ĠTwo\":4930,\"Ġpresence\":4931,\"ĠGuard\":4932,\"Up\":4933,\"Ġauthority\":4934,\"ĠProject\":4935,\"Ġbutton\":4936,\"Ġconsequ\":4937,\"Ġvalid\":4938,\"Ġweak\":4939,\"Ġstarts\":4940,\"Ġreference\":4941,\"ĠMem\":4942,\"\\\")\":4943,\"UN\":4944,\"orage\":4945,\"ĠOpen\":4946,\"Ġcollection\":4947,\"ym\":4948,\"gency\":4949,\"Ġbeautiful\":4950,\"ros\":4951,\"Ġtells\":4952,\"Ġwaiting\":4953,\"nel\":4954,\"Ġproviding\":4955,\"ĠDemocrats\":4956,\"Ġdaughter\":4957,\"Ġmaster\":4958,\"Ġpurposes\":4959,\"ĠJapanese\":4960,\"Ġequal\":4961,\"Ġturns\":4962,\"Ġdocuments\":4963,\"Ġwatching\":4964,\"Res\":4965,\"Ġran\":4966,\"2014\":4967,\"Ġreject\":4968,\"ĠKorea\":4969,\"Ġvictims\":4970,\"Level\":4971,\"erences\":4972,\"Ġwitness\":4973,\"Ġ34\":4974,\"Ġreform\":4975,\"coming\":4976,\"Ġoccup\":4977,\"Ġcaught\":4978,\"Ġtraffic\":4979,\"ading\":4980,\"Ġmodels\":4981,\"ario\":4982,\"Ġserved\":4983,\"Ġbatter\":4984,\"uate\":4985,\"ĠSecretary\":4986,\"Ġagreed\":4987,\"Ġtruly\":4988,\"ynam\":4989,\"ĠRet\":4990,\"Ġunits\":4991,\"ĠResearch\":4992,\"hand\":4993,\"azine\":4994,\"ĠMike\":4995,\"Ġvariety\":4996,\"otal\":4997,\"Ġamazing\":4998,\"Ġconfirmed\":4999,\"Ġentirely\":5000,\"Ġpurchase\":5001,\"Ġelement\":5002,\"Ġcash\":5003,\"Ġdetermine\":5004,\"De\":5005,\"Ġcars\":5006,\"ĠWall\":5007,\"âĸ\":5008,\"Ġviews\":5009,\"Ġdrugs\":5010,\"Ġdepartment\":5011,\"ĠStep\":5012,\"uit\":5013,\"Ġ39\":5014,\"asure\":5015,\"ĠClass\":5016,\"Ġcovered\":5017,\"ĠBank\":5018,\"Ġmere\":5019,\"uana\":5020,\"Ġmulti\":5021,\"Ġmix\":5022,\"Ġunlike\":5023,\"levision\":5024,\"Ġstopped\":5025,\"Ġsem\":5026,\"ĠGal\":5027,\"ules\":5028,\"Ġwel\":5029,\"ĠJohnson\":5030,\"la\":5031,\"Ġskill\":5032,\"Ġbecoming\":5033,\"rie\":5034,\"Ġappropriate\":5035,\"fe\":5036,\"ellow\":5037,\"ĠProt\":5038,\"ulate\":5039,\"ocation\":5040,\"Ġweekend\":5041,\"odies\":5042,\"Ġsites\":5043,\"Ġanimal\":5044,\"ĠTim\":5045,\"Ġscale\":5046,\"Ġcharged\":5047,\"Ġinstruct\":5048,\"illa\":5049,\"Ġmethods\":5050,\"Ġcert\":5051,\"Ġjudge\":5052,\"ĠHel\":5053,\"Ġdollars\":5054,\"Ġstanding\":5055,\"ĠSqu\":5056,\"Ġdebt\":5057,\"liam\":5058,\"Ġdriving\":5059,\"ĠSum\":5060,\"ĠEdition\":5061,\"Ġalbum\":5062,\"andon\":5063,\"IF\":5064,\"ĠUk\":5065,\"63\":5066,\"ader\":5067,\"Ġcommercial\":5068,\"esh\":5069,\"ĠGovernment\":5070,\"Ġdiscovered\":5071,\"Ġoutput\":5072,\"ĠHillary\":5073,\"ĠCarol\":5074,\"Ġ2005\":5075,\"Ġabuse\":5076,\"ancing\":5077,\"Ġswitch\":5078,\"Ġannual\":5079,\"Tw\":5080,\"Ġstated\":5081,\"agement\":5082,\"inner\":5083,\"Ġdemocr\":5084,\"Ġresidents\":5085,\"Ġallowing\":5086,\"Ġfactors\":5087,\"odd\":5088,\"Ġfuck\":5089,\"emies\":5090,\"Ġoccurred\":5091,\"oti\":5092,\"Ġnorth\":5093,\"ĠPublic\":5094,\"Ġinjury\":5095,\"Ġinsurance\":5096,\"CL\":5097,\"olly\":5098,\"ãĢ\":5099,\"Ġrepeated\":5100,\"Ġarms\":5101,\"anged\":5102,\"Ġconstruction\":5103,\"Ġfle\":5104,\"PU\":5105,\"icians\":5106,\"Ġforms\":5107,\"ĠMcC\":5108,\"antic\":5109,\"Ġmental\":5110,\"pire\":5111,\"Ġequipment\":5112,\"Ġfant\":5113,\"Ġdiscussion\":5114,\"Ġregarding\":5115,\"kin\":5116,\"arp\":5117,\"Ġchair\":5118,\"ogue\":5119,\"Ġproceed\":5120,\"ĠId\":5121,\"Our\":5122,\"Ġmurder\":5123,\"Man\":5124,\"Ġ49\":5125,\"asp\":5126,\"Ġsupply\":5127,\"Ġinput\":5128,\"Ġwealth\":5129,\"liament\":5130,\"Ġproced\":5131,\"orial\":5132,\"ĠStat\":5133,\"ĠNFL\":5134,\"hens\":5135,\"ĠInstitute\":5136,\"Ġputting\":5137,\"ournament\":5138,\"etic\":5139,\"Ġlocated\":5140,\"Ġkid\":5141,\"eria\":5142,\"run\":5143,\"Ġprinc\":5144,\"Ġ!\":5145,\"going\":5146,\"ĠBet\":5147,\"Ġclot\":5148,\"Ġtelling\":5149,\"Ġproposed\":5150,\"iot\":5151,\"orry\":5152,\"Ġfunds\":5153,\"gment\":5154,\"ĠLife\":5155,\"Ġbaby\":5156,\"ĠBack\":5157,\"Ġspoke\":5158,\"Image\":5159,\"Ġearn\":5160,\"ĠAT\":5161,\"gu\":5162,\"Ġexchange\":5163,\"ĠLin\":5164,\"oving\":5165,\"Ġpair\":5166,\"More\":5167,\"azon\":5168,\"Ġarrested\":5169,\"Ġkilling\":5170,\"can\":5171,\"ĠCard\":5172,\"yd\":5173,\"Ġidentified\":5174,\"Ġmobile\":5175,\"Ġthanks\":5176,\"onym\":5177,\"ĠForm\":5178,\"Ġhundreds\":5179,\"ĠChris\":5180,\"ĠCat\":5181,\"Ġtrend\":5182,\"hat\":5183,\"ĠAv\":5184,\"oman\":5185,\"Ġelectric\":5186,\"ĠWil\":5187,\"SE\":5188,\"Of\":5189,\"Ġrestaur\":5190,\"oted\":5191,\"Ġtrig\":5192,\"Ġnine\":5193,\"Ġbomb\":5194,\"Why\":5195,\"Â¯\":5196,\"Ġcoverage\":5197,\"Ġappeal\":5198,\"ĠRobert\":5199,\"ĠSup\":5200,\"Ġfinished\":5201,\"Ġflow\":5202,\"Ġdeliver\":5203,\"Ġcalcul\":5204,\"Ġphotos\":5205,\"Ġphil\":5206,\"Ġpieces\":5207,\"Ġappre\":5208,\"kes\":5209,\"Ġrough\":5210,\"Do\":5211,\"Ġpartner\":5212,\"Ġconcerned\":5213,\"Ġ37\":5214,\"ĠGen\":5215,\"Col\":5216,\"ctors\":5217,\"Ġ=>\":5218,\"state\":5219,\"Ġsuggested\":5220,\"ĠForce\":5221,\"CE\":5222,\"Ġherself\":5223,\"ĠPlan\":5224,\"works\":5225,\"ooth\":5226,\"rency\":5227,\"Ġcorner\":5228,\"Ġhusband\":5229,\"Ġinternet\":5230,\"ĠAut\":5231,\"ems\":5232,\"osen\":5233,\"ĠAtl\":5234,\"gen\":5235,\"Ġbalance\":5236,\"62\":5237,\"Ġsounds\":5238,\"text\":5239,\"Ġarr\":5240,\"oves\":5241,\"Ġmillions\":5242,\"Ġradio\":5243,\"Ġsatisf\":5244,\"ĠDam\":5245,\"Mr\":5246,\"Go\":5247,\"Spe\":5248,\"Ġcombat\":5249,\"rant\":5250,\"ĠGree\":5251,\"Ġfuel\":5252,\"Ġdistance\":5253,\"Ġtests\":5254,\"Ġdecre\":5255,\"ĠEr\":5256,\"Ġmanaged\":5257,\"DS\":5258,\"Ġtit\":5259,\"Ġmeasures\":5260,\"ĠLiber\":5261,\"Ġattend\":5262,\"ashed\":5263,\"ĠJose\":5264,\"ĠNight\":5265,\"dit\":5266,\"ĠNov\":5267,\"ĠEnd\":5268,\"outs\":5269,\"Ġgeneration\":5270,\"Ġadvoc\":5271,\"yth\":5272,\"Ġconversation\":5273,\"ĠSky\":5274,\"active\":5275,\"cel\":5276,\"rier\":5277,\"ĠFrank\":5278,\"Ġgender\":5279,\"Ġconcent\":5280,\"Ġcarried\":5281,\"anda\":5282,\"ĠVirgin\":5283,\"Ġarrived\":5284,\"icide\":5285,\"aded\":5286,\"Ġfailure\":5287,\"Ġminimum\":5288,\"lets\":5289,\"Ġworst\":5290,\"Ġkeeping\":5291,\"Ġintended\":5292,\"Ġillegal\":5293,\"Ġsubsc\":5294,\"Ġdetermined\":5295,\"Ġtrip\":5296,\"Yes\":5297,\"Ġraise\":5298,\"Ġ~\":5299,\"Ġfeels\":5300,\"Ġpackage\":5301,\"ĠJo\":5302,\"hi\":5303,\"2016\":5304,\"real\":5305,\"Ġfra\":5306,\"Ġsymb\":5307,\"Me\":5308,\"ucky\":5309,\"pret\":5310,\"ĠKh\":5311,\"ĠEdit\":5312,\"ĠWeb\":5313,\"emic\":5314,\"ĠColor\":5315,\"Ġjustice\":5316,\"Int\":5317,\"Ġfarm\":5318,\"cknow\":5319,\"\\\">\":5320,\"eless\":5321,\"Ġreduced\":5322,\"Ġ500\":5323,\"xx\":5324,\"ĠRad\":5325,\"ĠWood\":5326,\"Ġclin\":5327,\"Ġhyp\":5328,\"iler\":5329,\"ura\":5330,\"kins\":5331,\"85\":5332,\"61\":5333,\"ĠTheir\":5334,\"ĠMary\":5335,\"Ġsan\":5336,\"Ġnovel\":5337,\"ĠWho\":5338,\"Ġcapacity\":5339,\"Ġimpossible\":5340,\"Ġplays\":5341,\"Ġminister\":5342,\"ijuana\":5343,\"icate\":5344,\"ĠSet\":5345,\"Ġfram\":5346,\"Ġing\":5347,\"Ġcommunities\":5348,\"ĠFBI\":5349,\"ita\":5350,\"Ġbon\":5351,\"Ġstrateg\":5352,\"Ġinterests\":5353,\"lock\":5354,\"gers\":5355,\"mas\":5356,\"ĠAND\":5357,\"Ġconflict\":5358,\"Ġrequirements\":5359,\"Ġsac\":5360,\"Ġoperating\":5361,\"ini\":5362,\"related\":5363,\"Ġcommitted\":5364,\"Ġrelatively\":5365,\"Ġsouth\":5366,\"Â¯Â¯\":5367,\"Ġafford\":5368,\"Ġidentity\":5369,\"Ġdecisions\":5370,\"Ġaccused\":5371,\"place\":5372,\"Ġvictory\":5373,\"och\":5374,\"iat\":5375,\"Name\":5376,\"Com\":5377,\"tion\":5378,\"eds\":5379,\"Ġseek\":5380,\"Ġtight\":5381,\"ĠImages\":5382,\"Ġiniti\":5383,\"Ġhumans\":5384,\"Ġfamiliar\":5385,\"Ġaudience\":5386,\"Ġinternal\":5387,\"venture\":5388,\"Ġsides\":5389,\"ĠTO\":5390,\"Ġdim\":5391,\"Ġconclud\":5392,\"Ġappoint\":5393,\"Ġenforcement\":5394,\"ĠJim\":5395,\"ĠAssociation\":5396,\"Ġcircumst\":5397,\"ĠCanadian\":5398,\"Ġjoined\":5399,\"Ġdifferences\":5400,\"ĠLos\":5401,\"Ġprotest\":5402,\"Ġtwice\":5403,\"win\":5404,\"Ġglass\":5405,\"arsh\":5406,\"ĠArmy\":5407,\"Ġexpression\":5408,\"Ġdecide\":5409,\"Ġplanning\":5410,\"ania\":5411,\"Ġhandle\":5412,\"ĠMicrosoft\":5413,\"ĠNor\":5414,\"Ġmaximum\":5415,\"ĠRev\":5416,\"Ġsea\":5417,\"Ġeval\":5418,\"Ġhelps\":5419,\"ref\":5420,\"Ġbound\":5421,\"Ġmouth\":5422,\"Ġstandards\":5423,\"Ġclim\":5424,\"ĠCamp\":5425,\"ĠFox\":5426,\"cles\":5427,\"Ġarmy\":5428,\"ĠTechn\":5429,\"acking\":5430,\"xy\":5431,\"SS\":5432,\"Ġ42\":5433,\"Ġbug\":5434,\"ĠUkrain\":5435,\"ĠMax\":5436,\"ĠJones\":5437,\"ĠShow\":5438,\"lo\":5439,\"Ġplanet\":5440,\"Ġ75\":5441,\"Ġwinning\":5442,\"Ġfaster\":5443,\"Ġspect\":5444,\"Ġbroken\":5445,\"TR\":5446,\"Ġdefined\":5447,\"Ġhealthy\":5448,\"Ġcompetition\":5449,\"https\":5450,\"ĠIsland\":5451,\"ĠFe\":5452,\"Ġannounce\":5453,\"ĠCup\":5454,\"ĠInstead\":5455,\"Ġclient\":5456,\"Ġpossibly\":5457,\"section\":5458,\"ocket\":5459,\"look\":5460,\"Ġfinish\":5461,\"Ġcrew\":5462,\"Ġreserv\":5463,\"Ġeditor\":5464,\"Ġhate\":5465,\"Ġsale\":5466,\"Ġcontrovers\":5467,\"Ġpages\":5468,\"wing\":5469,\"Ġnumer\":5470,\"Ġopposition\":5471,\"Ġ2004\":5472,\"Ġrefuge\":5473,\"Ġflight\":5474,\"Ġapart\":5475,\"ĠLat\":5476,\"Americ\":5477,\"ĠAfrica\":5478,\"Ġapplications\":5479,\"ĠPalest\":5480,\"ĠBur\":5481,\"Ġgar\":5482,\"ĠSocial\":5483,\"Ġupgr\":5484,\"Ġshape\":5485,\"Ġspeaking\":5486,\"ansion\":5487,\"ao\":5488,\"ĠSn\":5489,\"Ġworry\":5490,\"ĠBritain\":5491,\"Please\":5492,\"roud\":5493,\"Ġhun\":5494,\"Ġintroduced\":5495,\"Ġdiet\":5496,\"Ind\":5497,\"ĠSecond\":5498,\"Ġfunctions\":5499,\"uts\":5500,\"ĠEach\":5501,\"ĠJeff\":5502,\"Ġstress\":5503,\"Ġaccounts\":5504,\"Ġguarant\":5505,\"ĠAnn\":5506,\"edia\":5507,\"Ġhonest\":5508,\"Ġtree\":5509,\"ĠAfrican\":5510,\"ĠBush\":5511,\"},\":5512,\"Ġsch\":5513,\"ĠOnly\":5514,\"Ġfif\":5515,\"igan\":5516,\"Ġexercise\":5517,\"ĠExp\":5518,\"Ġscientists\":5519,\"Ġlegislation\":5520,\"ĠWork\":5521,\"ĠSpr\":5522,\"ÃĤ\":5523,\"ĠHuman\":5524,\"Ġè\":5525,\"Ġsurvey\":5526,\"Ġrich\":5527,\"rip\":5528,\"Ġmaintain\":5529,\"Ġflo\":5530,\"Ġleadership\":5531,\"stream\":5532,\"ĠIslamic\":5533,\"Ġ01\":5534,\"ĠCollege\":5535,\"Ġmagic\":5536,\"ĠPrime\":5537,\"Ġfigures\":5538,\"2017\":5539,\"inder\":5540,\"xual\":5541,\"ĠDead\":5542,\"Ġabsolutely\":5543,\"Ġfourth\":5544,\"Ġpresented\":5545,\"respond\":5546,\"rible\":5547,\"Ġalcohol\":5548,\"ato\":5549,\"ĠDE\":5550,\"porary\":5551,\"Ġgrab\":5552,\"Ġvari\":5553,\"Ġquant\":5554,\"ĠPhoto\":5555,\"Ġplus\":5556,\"rick\":5557,\"arks\":5558,\"Ġalternative\":5559,\"Ġpil\":5560,\"Ġapprox\":5561,\"that\":5562,\"Ġobjects\":5563,\"ĠRo\":5564,\"ĠAndroid\":5565,\"Ġsignificantly\":5566,\"ĠRoad\":5567,\"kay\":5568,\"Read\":5569,\"avor\":5570,\"Ġacknow\":5571,\"ĠHD\":5572,\"ĠSing\":5573,\"Or\":5574,\"ĠMont\":5575,\"Ġuns\":5576,\"prof\":5577,\"Ġnegoti\":5578,\"ĠArch\":5579,\"iki\":5580,\"Ġtelevision\":5581,\"ĠJewish\":5582,\"Ġcommittee\":5583,\"Ġmotor\":5584,\"Ġappearance\":5585,\"Ġsitting\":5586,\"Ġstrike\":5587,\"ĠDown\":5588,\"comp\":5589,\"ĠHist\":5590,\"Ġfold\":5591,\"acement\":5592,\"ĠLouis\":5593,\"Ġbelong\":5594,\"ĠâĢ¢\":5595,\"Ġmort\":5596,\"Ġprepared\":5597,\"Ġ64\":5598,\"ĠMaster\":5599,\"Ġindeed\":5600,\"ĠDen\":5601,\"Ġrent\":5602,\"TA\":5603,\"ourney\":5604,\"arc\":5605,\"Su\":5606,\"97\":5607,\"Ġadvice\":5608,\"Ġchanging\":5609,\"Ġlisted\":5610,\"Ġlaunched\":5611,\"isation\":5612,\"ĠPeter\":5613,\"ishes\":5614,\"Ġlived\":5615,\"ĠMel\":5616,\"ĠSupreme\":5617,\"ĠFederal\":5618,\"Ġ);\":5619,\"ructure\":5620,\"Ġsets\":5621,\"Ġphilos\":5622,\"uous\":5623,\"ĠÂł\":5624,\"Ġapplied\":5625,\"ĠNOT\":5626,\"Ġhousing\":5627,\"ĠMount\":5628,\"Ġodd\":5629,\"Ġsust\":5630,\"DA\":5631,\"fficient\":5632,\"Ġ?\":5633,\"olved\":5634,\"Ġpowers\":5635,\"Ġthr\":5636,\"Ġremaining\":5637,\"ĠWater\":5638,\"LC\":5639,\"Ġcauses\":5640,\"ãģ®\":5641,\"Ġmanner\":5642,\"ads\":5643,\"Ġsuggests\":5644,\"Ġends\":5645,\"standing\":5646,\"fig\":5647,\"ĠDun\":5648,\"idth\":5649,\"Ġgay\":5650,\"Ġtermin\":5651,\"ĠAngeles\":5652,\"MS\":5653,\"Ġscientific\":5654,\"Ġcoal\":5655,\"apers\":5656,\"bar\":5657,\"ĠThomas\":5658,\"Ġsym\":5659,\"ĠRun\":5660,\"this\":5661,\"PC\":5662,\"igrants\":5663,\"Ġminute\":5664,\"ĠDistrict\":5665,\"cellent\":5666,\"Ġleaves\":5667,\"Ġcompleted\":5668,\"amin\":5669,\"Ġfocused\":5670,\"Ġmonitor\":5671,\"Ġvehicles\":5672,\"MA\":5673,\"ĠMass\":5674,\"ĠGrand\":5675,\"Ġaffected\":5676,\"itutional\":5677,\"Ġconstruct\":5678,\"Ġfollows\":5679,\"Ġton\":5680,\"reens\":5681,\"Ġhomes\":5682,\"ĠExt\":5683,\"ĠLevel\":5684,\"rast\":5685,\"ĠIr\":5686,\"Ġelim\":5687,\"Ġlargely\":5688,\"ĠJoe\":5689,\"Ġvotes\":5690,\"alls\":5691,\"Ġbusinesses\":5692,\"ĠFoundation\":5693,\"ĠCentral\":5694,\"Ġyards\":5695,\"Ġmaterials\":5696,\"ulner\":5697,\"Ġguide\":5698,\"Ġcloser\":5699,\"ums\":5700,\"Ġsports\":5701,\"eder\":5702,\"Just\":5703,\"Ġtaxes\":5704,\"84\":5705,\"ĠOld\":5706,\"Ġdecade\":5707,\"ola\":5708,\"Ġvir\":5709,\"Ġdropped\":5710,\"Ġdelay\":5711,\"itect\":5712,\"Ġsecure\":5713,\"stein\":5714,\"level\":5715,\"Ġtreated\":5716,\"Ġfiled\":5717,\"aine\":5718,\"Ġvan\":5719,\"Ġmir\":5720,\"Ġcolumn\":5721,\"icted\":5722,\"eper\":5723,\"Ġrot\":5724,\"Ġconsult\":5725,\"Ġentry\":5726,\"Ġmarijuana\":5727,\"ĠDou\":5728,\"Ġapparently\":5729,\"oking\":5730,\"clusive\":5731,\"Ġincreases\":5732,\"ano\":5733,\"Ġspecifically\":5734,\"Ġtele\":5735,\"ensions\":5736,\"Ġreligion\":5737,\"abilities\":5738,\"Ġframe\":5739,\"ĠNote\":5740,\"ĠLee\":5741,\"Ġhelping\":5742,\"Ġedge\":5743,\"oston\":5744,\"Ġorganizations\":5745,\"Ãĥ\":5746,\"ĠBoth\":5747,\"hips\":5748,\"Ġbigger\":5749,\"Ġboost\":5750,\"ĠStand\":5751,\"Ġrow\":5752,\"uls\":5753,\"abase\":5754,\"Ġrid\":5755,\"Let\":5756,\"aren\":5757,\"rave\":5758,\"Ġstret\":5759,\"PD\":5760,\"Ġvision\":5761,\"Ġwearing\":5762,\"Ġappreci\":5763,\"Ġaward\":5764,\"ĠUse\":5765,\"Ġfactor\":5766,\"war\":5767,\"ulations\":5768,\")(\":5769,\"Ġgod\":5770,\"Ġterrit\":5771,\"Ġparam\":5772,\"asts\":5773,\"87\":5774,\"Ġenemies\":5775,\"ĠGames\":5776,\"FF\":5777,\"Ġaccident\":5778,\"Well\":5779,\"ĠMartin\":5780,\"TER\":5781,\"Ġath\":5782,\"ĠHell\":5783,\"Ġforg\":5784,\"Ġveter\":5785,\"ĠMedic\":5786,\"free\":5787,\"Ġstars\":5788,\"Ġexpensive\":5789,\"Ġacad\":5790,\"rawn\":5791,\"ĠWhe\":5792,\"Ġlock\":5793,\"Ġformat\":5794,\"Ġsoldiers\":5795,\"sm\":5796,\"Ġagent\":5797,\"Ġresponsibility\":5798,\"ora\":5799,\"ĠScience\":5800,\"Ġrapid\":5801,\"Ġtough\":5802,\"ĠJesus\":5803,\"Ġbelieves\":5804,\"ML\":5805,\"Ġwear\":5806,\"lete\":5807,\"ÃĥÃĤ\":5808,\"ĠDri\":5809,\"Ġcommission\":5810,\"ĠBob\":5811,\"Oh\":5812,\"aped\":5813,\"Ġwarm\":5814,\"ÃĥÃĤÃĥÃĤ\":5815,\"Ġ2003\":5816,\"ortion\":5817,\"Ġhasn\":5818,\"uster\":5819,\"Ġunivers\":5820,\"ĠIll\":5821,\"Ġking\":5822,\"ologies\":5823,\"94\":5824,\"ĠTem\":5825,\"ĠMos\":5826,\"Ġpatient\":5827,\"ĠMexico\":5828,\"cean\":5829,\"ĠDeath\":5830,\"ĠSanders\":5831,\"you\":5832,\"ĠCast\":5833,\"ĠCompany\":5834,\"pty\":5835,\"Ġhappening\":5836,\"FP\":5837,\"ĠBattle\":5838,\"Ġbought\":5839,\"Am\":5840,\"Mod\":5841,\"Us\":5842,\"uters\":5843,\"ĠCre\":5844,\"ĠThose\":5845,\"Ġ44\":5846,\"iser\":5847,\"Ġsoul\":5848,\"ĠTop\":5849,\"ĠHarry\":5850,\"ĠAw\":5851,\"Ġseat\":5852,\"ffee\":5853,\"Ġrevolution\":5854,\"Ġ(\\\"\":5855,\"ĠDuring\":5856,\"ette\":5857,\"Ġring\":5858,\"Ġoffensive\":5859,\"Ġreturns\":5860,\"Ġvideos\":5861,\"Ġdiscl\":5862,\"Ġfamous\":5863,\"enced\":5864,\"ĠSign\":5865,\"ĠRiver\":5866,\"Ġ300\":5867,\"PM\":5868,\"ĠBus\":5869,\"ĠCH\":5870,\"Ġcandidates\":5871,\"arden\":5872,\"Ġpercentage\":5873,\"Ġvisual\":5874,\"Ġthank\":5875,\"Ġtrouble\":5876,\"nergy\":5877,\"Ġ2001\":5878,\"Ġprove\":5879,\"ashion\":5880,\"Ġenh\":5881,\"ĠLong\":5882,\"UM\":5883,\"Ġconnected\":5884,\"Ġpossibility\":5885,\"Over\":5886,\"Ġexpert\":5887,\"Ġlibrary\":5888,\"arts\":5889,\"ĠDirector\":5890,\"Ġfellow\":5891,\"92\":5892,\"irty\":5893,\"Ġdry\":5894,\"Ġsigns\":5895,\"ĠLove\":5896,\"Ġquiet\":5897,\"foot\":5898,\"Ġpure\":5899,\"ĠHun\":5900,\"Ġfilled\":5901,\"phas\":5902,\"ĠElect\":5903,\"endment\":5904,\"ĠExpl\":5905,\"Ġunable\":5906,\"ns\":5907,\"mo\":5908,\"Ġvast\":5909,\"obe\":5910,\"Ġidentify\":5911,\"apping\":5912,\"ĠCarolina\":5913,\"gress\":5914,\"Ġprote\":5915,\"Ġfish\":5916,\"Ġcircumstances\":5917,\"razy\":5918,\"ĠPhot\":5919,\"Ġbodies\":5920,\"ĠMur\":5921,\"Ġdeveloping\":5922,\"ĠAR\":5923,\"Ġexperienced\":5924,\"Ġsubstant\":5925,\"ĠBoard\":5926,\"esome\":5927,\"Ġdomestic\":5928,\"Ġcombined\":5929,\"ĠPut\":5930,\"Ġchemical\":5931,\"ĠChild\":5932,\"Ġpool\":5933,\"ĠCy\":5934,\"Ġegg\":5935,\"cons\":5936,\"sters\":5937,\"Ġhurt\":5938,\"Ġmarkets\":5939,\"Ġconservative\":5940,\"Ġsupporters\":5941,\"Ġagencies\":5942,\"idel\":5943,\"Ob\":5944,\"urb\":5945,\"Ġ43\":5946,\"ĠDefense\":5947,\"ye\":5948,\"ĠAp\":5949,\"dule\":5950,\"Ġtemperature\":5951,\"Ġconducted\":5952,\"ĠChief\":5953,\"Ġpulled\":5954,\"Ġfol\":5955,\"Last\":5956,\"onto\":5957,\"osis\":5958,\"VER\":5959,\"Des\":5960,\"ĠPan\":5961,\"First\":5962,\"Ġadvance\":5963,\"Ġlicense\":5964,\"rors\":5965,\"ĠJon\":5966,\"Ġimagine\":5967,\"Ġhell\":5968,\"Ġfixed\":5969,\"Ġincor\":5970,\"osite\":5971,\"ĠLog\":5972,\"icken\":5973,\"]:\":5974,\"Ġsurprise\":5975,\"hab\":5976,\"Ġcraft\":5977,\"olt\":5978,\"ĠJul\":5979,\"Ġdial\":5980,\"Ġrelevant\":5981,\"Ġentered\":5982,\"Ġleads\":5983,\"ĠAD\":5984,\"ĠClean\":5985,\"Ġpictures\":5986,\"essor\":5987,\"Ġalt\":5988,\"Ġpaying\":5989,\"Per\":5990,\"ĠMarket\":5991,\"Ġupdates\":5992,\"amily\":5993,\"ĠType\":5994,\"ĠHome\":5995,\"Ġ55\":5996,\"sembly\":5997,\"rome\":5998,\"83\":5999,\"Ġgreatest\":6000,\"Ġheight\":6001,\"Ġheav\":6002,\"aints\":6003,\"Ġlisten\":6004,\"aser\":6005,\"ĠSH\":6006,\"Ġcapable\":6007,\"acle\":6008,\"Ġperspect\":6009,\"inating\":6010,\"Ġoffering\":6011,\"rypt\":6012,\"ĠDevelop\":6013,\"abin\":6014,\"rc\":6015,\"Ġbright\":6016,\"alty\":6017,\"arrow\":6018,\"Ġsuppl\":6019,\"inding\":6020,\"acked\":6021,\"gypt\":6022,\"ĠAnother\":6023,\"pg\":6024,\"ĠVirginia\":6025,\"ĠLu\":6026,\"Ġplanned\":6027,\"Ġpit\":6028,\"Ġsweet\":6029,\"Type\":6030,\"ĠDi\":6031,\"Ġtypically\":6032,\"ĠFrancisco\":6033,\"Ġprospect\":6034,\"ĠDan\":6035,\"Ġteen\":6036,\"rees\":6037,\"Ġsched\":6038,\"Ġhol\":6039,\"Ġscr\":6040,\"Ġlots\":6041,\"life\":6042,\"Ġnewsp\":6043,\"Ġforget\":6044,\"ĠNone\":6045,\"ĠMiddle\":6046,\"ĠRyan\":6047,\"edd\":6048,\"Ġsevere\":6049,\"Ġsuit\":6050,\"ller\":6051,\"93\":6052,\"Ġcorrespond\":6053,\"Ġexplos\":6054,\"uations\":6055,\"Ġflag\":6056,\"game\":6057,\"rid\":6058,\"Ġprin\":6059,\"ĠData\":6060,\"Ġdeploy\":6061,\"ĠEnter\":6062,\"suit\":6063,\"ghan\":6064,\"ĠMen\":6065,\"Ġthoughts\":6066,\"Ġmatters\":6067,\"Ġadapt\":6068,\"ĠAri\":6069,\"Ġfill\":6070,\"Ġforth\":6071,\"Ġsam\":6072,\"Ġ41\":6073,\"Ġpayment\":6074,\"ĠHor\":6075,\"Ġspring\":6076,\"duc\":6077,\"Ġlosing\":6078,\"Ġbringing\":6079,\"FO\":6080,\"ala\":6081,\"Ġdistribution\":6082,\"hered\":6083,\"bour\":6084,\"ĠIsraeli\":6085,\"oma\":6086,\"Ġcombination\":6087,\"Ġplenty\":6088,\"VE\":6089,\"Can\":6090,\"ĠHaw\":6091,\"Ġperman\":6092,\"ĠSpecial\":6093,\"Ġtow\":6094,\"Ġseeking\":6095,\"Ġexamples\":6096,\"Ġclasses\":6097,\"cr\":6098,\"Ġbeer\":6099,\"Ġmoves\":6100,\"ĠIP\":6101,\"ĠKn\":6102,\"Ġpanel\":6103,\"Even\":6104,\"Ġproperly\":6105,\"Ġris\":6106,\"Ġplug\":6107,\"Ġestimated\":6108,\"Every\":6109,\"Ġdefensive\":6110,\"agraph\":6111,\"Ġpregn\":6112,\"Ġinstit\":6113,\"ĠVict\":6114,\"Ġvolume\":6115,\"Ġpositions\":6116,\"Ġlinks\":6117,\"ĠProgram\":6118,\"ĠWeek\":6119,\"agues\":6120,\"Ġtransform\":6121,\"ker\":6122,\"ĠCEO\":6123,\"Ġcas\":6124,\"Ġopponent\":6125,\"Ġtweet\":6126,\"ĠCode\":6127,\"Ġshop\":6128,\"Ġfly\":6129,\"Ġtalks\":6130,\"Ġbag\":6131,\"Phone\":6132,\"Ġaid\":6133,\"Ġplants\":6134,\"Ġ65\":6135,\"Ġattorney\":6136,\"arters\":6137,\"quest\":6138,\"ĠMagic\":6139,\"Ġbegins\":6140,\"Ġmyster\":6141,\"Ġenvironmental\":6142,\"Ġstorage\":6143,\"NN\":6144,\"Ġmarg\":6145,\"Ġske\":6146,\"Ġmetal\":6147,\"elly\":6148,\"Ġordered\":6149,\"Ġremained\":6150,\"Ġloved\":6151,\"Ġprompt\":6152,\"Ġupdated\":6153,\"Ġexperts\":6154,\"Ġwalking\":6155,\"Ġancient\":6156,\"Ġperformed\":6157,\"ATE\":6158,\"Ġneither\":6159,\"iency\":6160,\"Ġmanufacture\":6161,\"ĠPak\":6162,\"Ġselected\":6163,\"Ġmine\":6164,\"Ġultimately\":6165,\"Ġexplan\":6166,\"Ġlabel\":6167,\"ĠServices\":6168,\"ributed\":6169,\"Trump\":6170,\"Ġsyn\":6171,\"ĠUlt\":6172,\"SC\":6173,\"Ġmeat\":6174,\"Ġgiant\":6175,\"ĠWars\":6176,\"ĠON\":6177,\"Ġadm\":6178,\"Ġinterpret\":6179,\"Ġevening\":6180,\"Ġevil\":6181,\"ĠBoston\":6182,\"ĠWild\":6183,\"ĠÃ\":6184,\"ĠBitcoin\":6185,\"ĠAmazon\":6186,\"Dr\":6187,\"ĠInformation\":6188,\"Ġobviously\":6189,\"Ġadvanced\":6190,\"Photo\":6191,\"olar\":6192,\"Ġweather\":6193,\"Ġsymbol\":6194,\"Ġsole\":6195,\"Ġpotentially\":6196,\"oster\":6197,\"Ġoriginally\":6198,\"mun\":6199,\"300\":6200,\"aze\":6201,\"essions\":6202,\"Ġdeck\":6203,\"Ġstood\":6204,\"Ġyouth\":6205,\"ĠBern\":6206,\"Rep\":6207,\"ĠTest\":6208,\"Ġbasically\":6209,\"otic\":6210,\"Ġinvolve\":6211,\"olit\":6212,\"lyn\":6213,\"See\":6214,\"Ġaircraft\":6215,\"Ġconfirm\":6216,\"EW\":6217,\"Ġmessages\":6218,\"ĠRichard\":6219,\"Ġkit\":6220,\"Ġprohib\":6221,\"Ġvulner\":6222,\"isters\":6223,\"Ġexistence\":6224,\"Ġturning\":6225,\"ĠSP\":6226,\"Ġdesire\":6227,\"Ġflat\":6228,\"Ġment\":6229,\"season\":6230,\"anges\":6231,\"Ġneighborhood\":6232,\"ĠLake\":6233,\"ATION\":6234,\"Ġpointed\":6235,\"bur\":6236,\"Ġinnov\":6237,\"ucks\":6238,\"UL\":6239,\"Ġprofessor\":6240,\"Ġexpressed\":6241,\"AB\":6242,\"icious\":6243,\"Ġ2002\":6244,\"ĠDev\":6245,\"Ġsession\":6246,\"Ġbare\":6247,\"sen\":6248,\"Ġdiss\":6249,\"ĠCath\":6250,\"ĠPass\":6251,\"ĠPoint\":6252,\"Ġdoctor\":6253,\"orrow\":6254,\"ailed\":6255,\"ĠRub\":6256,\"ĠDC\":6257,\"ĠCharl\":6258,\"person\":6259,\"Ġwriter\":6260,\"ighters\":6261,\"ureau\":6262,\"Ġoblig\":6263,\"Ġrecorded\":6264,\"Ġbroke\":6265,\"Ġorders\":6266,\"ilty\":6267,\"Ġmotion\":6268,\"inity\":6269,\"law\":6270,\"adium\":6271,\"Ġimmigration\":6272,\"Ġcontrast\":6273,\"Ġbatt\":6274,\"Ġexcellent\":6275,\"Ġtechnical\":6276,\"ami\":6277,\"Ġtun\":6278,\"Ġcloud\":6279,\"ĠYear\":6280,\"geon\":6281,\"Ġcreation\":6282,\"Ġstrange\":6283,\"Ġauth\":6284,\"Ġfort\":6285,\"born\":6286,\"Ġextent\":6287,\"ĠToday\":6288,\"ĠClub\":6289,\"Ġrain\":6290,\"Ġsample\":6291,\"Ġaccepted\":6292,\"Ġtact\":6293,\"Ġfired\":6294,\"ĠSon\":6295,\"Ġstands\":6296,\"Ġboot\":6297,\"Ġ47\":6298,\"Ġstatements\":6299,\"Ġversions\":6300,\"Ġselling\":6301,\"ounded\":6302,\"Ġ1990\":6303,\"Ġweren\":6304,\"ĠWatch\":6305,\"Ġexperiment\":6306,\"Post\":6307,\"Ġretail\":6308,\"uled\":6309,\"Inst\":6310,\"unte\":6311,\"ãĥ¼\":6312,\"Ġdepart\":6313,\"Ġbond\":6314,\"ivery\":6315,\"ompl\":6316,\"Ġreaction\":6317,\"ĠSyrian\":6318,\"ĠPac\":6319,\"apped\":6320,\"aniel\":6321,\"DP\":6322,\"Ġresolution\":6323,\"Ġreact\":6324,\"Ġapproved\":6325,\"onom\":6326,\"mond\":6327,\"ĠOffic\":6328,\"---\":6329,\"Ġreplace\":6330,\"Ġtack\":6331,\"Ġsport\":6332,\"Ġchain\":6333,\"Ġemergency\":6334,\"rad\":6335,\"ĠPalestin\":6336,\"Ġ46\":6337,\"Ġautomatically\":6338,\"Ġroute\":6339,\"Ġpal\":6340,\"Ġbanks\":6341,\"ĠParis\":6342,\"ĠMedia\":6343,\"road\":6344,\"icing\":6345,\"ixt\":6346,\"isted\":6347,\"Ġgrew\":6348,\"Ġcoord\":6349,\"ĠWhere\":6350,\"omin\":6351,\"Ġsubs\":6352,\"ï¿½ï¿½\":6353,\"ĠÂ±\":6354,\"Ġcorporate\":6355,\"Ġselection\":6356,\"noon\":6357,\"ĠReport\":6358,\"cs\":6359,\"cluding\":6360,\"orders\":6361,\"anche\":6362,\"ĠIts\":6363,\"Ġslowly\":6364,\"ĠEgypt\":6365,\"ĠAcc\":6366,\"Ġcolle\":6367,\"iques\":6368,\"EX\":6369,\"Ġattempts\":6370,\"url\":6371,\"ĠCross\":6372,\"Ġfindings\":6373,\"ĠSC\":6374,\"ĠOR\":6375,\"Ġindex\":6376,\"ensity\":6377,\"ĠWay\":6378,\"ĠLand\":6379,\"Ġshock\":6380,\"dis\":6381,\"Ġdynam\":6382,\"Ġcart\":6383,\"mosp\":6384,\"Since\":6385,\"iest\":6386,\"ĠBoy\":6387,\"Ġstorm\":6388,\"ĠContin\":6389,\"2013\":6390,\"hew\":6391,\"ilit\":6392,\"Ġessential\":6393,\"iquid\":6394,\"Other\":6395,\"ivered\":6396,\"Ġreasonable\":6397,\"Act\":6398,\"Ġsubsequ\":6399,\"ĠPack\":6400,\"ĠFort\":6401,\"Ġconsidering\":6402,\"Ġuniversity\":6403,\"log\":6404,\"Ġmarried\":6405,\"Ġillust\":6406,\"ĠTrue\":6407,\"£ı\":6408,\"Ġnumerous\":6409,\"rastructure\":6410,\"Ġseriously\":6411,\"Ġreferred\":6412,\"ua\":6413,\"Ġconsistent\":6414,\"onna\":6415,\"ĠReal\":6416,\"ruption\":6417,\"ciples\":6418,\"Ġfacts\":6419,\"91\":6420,\"otes\":6421,\"erg\":6422,\"Then\":6423,\"Ġaccompl\":6424,\"Note\":6425,\"Ġrevenue\":6426,\"Ġpassing\":6427,\"Ġmal\":6428,\"een\":6429,\"ĠYet\":6430,\"Ġgather\":6431,\"terday\":6432,\"ework\":6433,\"ĠAuthor\":6434,\"Pe\":6435,\"Ġoptim\":6436,\"Ġrub\":6437,\"Ġè£ı\":6438,\"Ġunknown\":6439,\"stone\":6440,\"Ġunion\":6441,\"olve\":6442,\"Ġopportunities\":6443,\"Ġbrowser\":6444,\"ĠWal\":6445,\"ĠCost\":6446,\"Ġreporting\":6447,\"sts\":6448,\"pet\":6449,\"Ġsand\":6450,\"Ġsuddenly\":6451,\"Ġsurprising\":6452,\"ĠVR\":6453,\"Ġsomewhat\":6454,\"ĠBas\":6455,\"ulture\":6456,\"izz\":6457,\"ĠCD\":6458,\"Ġchallenges\":6459,\"Ġsettings\":6460,\"Ġexperiences\":6461,\"ĠFull\":6462,\"Ġcann\":6463,\"Ġreceiving\":6464,\"EST\":6465,\"Ġjoint\":6466,\"Ġcultural\":6467,\"Ġast\":6468,\"82\":6469,\"astern\":6470,\"ceived\":6471,\"ĠCru\":6472,\"Ġbull\":6473,\"pired\":6474,\"amm\":6475,\"Ġfacing\":6476,\"power\":6477,\"Ġboss\":6478,\"ĠHol\":6479,\"Ġinstr\":6480,\"Ġincreasingly\":6481,\"Ġshift\":6482,\"Ġstreets\":6483,\"ĠWilliams\":6484,\"abb\":6485,\"Ġlie\":6486,\"Ġlaugh\":6487,\"ĠCa\":6488,\"PL\":6489,\"Ġadults\":6490,\"Ġcustomer\":6491,\"Ġobtained\":6492,\"Ġsupporting\":6493,\"html\":6494,\"fire\":6495,\"Ġdetailed\":6496,\"Ġpicked\":6497,\"ĠRight\":6498,\"lder\":6499,\"EE\":6500,\"stood\":6501,\"ĠKim\":6502,\"Ġwire\":6503,\"Ġsight\":6504,\"Ġdevelopers\":6505,\"Ġpersons\":6506,\"Ġsad\":6507,\"Ġcup\":6508,\"Ġwarning\":6509,\"Ġboys\":6510,\"long\":6511,\"Ġbird\":6512,\"fo\":6513,\"Ġwal\":6514,\"Ġobserved\":6515,\"Ġzone\":6516,\"iveness\":6517,\"Ġchannel\":6518,\"cript\":6519,\"Ġrefused\":6520,\"ĠAgain\":6521,\"Ġsuc\":6522,\"Ġspokesman\":6523,\"ĠRef\":6524,\"rite\":6525,\"ouston\":6526,\"ãĥ³\":6527,\"ĠSher\":6528,\"Ġacts\":6529,\"ĠName\":6530,\"Ġstruggle\":6531,\"arry\":6532,\"ometimes\":6533,\"Ġdiscrim\":6534,\"HT\":6535,\"Ġcategory\":6536,\"Ġrealize\":6537,\"Ġemployee\":6538,\"ĠAfghan\":6539,\"enger\":6540,\"Ġguns\":6541,\"ĠSteve\":6542,\"ĠMot\":6543,\"ĠOl\":6544,\"oked\":6545,\"Ġthick\":6546,\"Ġfairly\":6547,\"illy\":6548,\"Ġsurve\":6549,\"ĠMat\":6550,\"weight\":6551,\"âĶ\":6552,\"Ġtroops\":6553,\"Ġagents\":6554,\"Ġbattery\":6555,\"Ġmotiv\":6556,\"Ã¡\":6557,\"Sec\":6558,\"den\":6559,\"overy\":6560,\"LS\":6561,\"Ġflu\":6562,\"Ġconfident\":6563,\"ĠOper\":6564,\"Ġempty\":6565,\"Ġphen\":6566,\"Ġsector\":6567,\"Ġexcited\":6568,\"Ġremote\":6569,\"aph\":6570,\"oen\":6571,\"Ġdestroyed\":6572,\"Ġmoral\":6573,\"ĠHP\":6574,\"ĠRon\":6575,\"Ġdress\":6576,\"ĠBat\":6577,\"Ġlit\":6578,\"ĠMS\":6579,\"Ġaf\":6580,\"HL\":6581,\"rum\":6582,\"isms\":6583,\"Ġshouldn\":6584,\"Ġsympt\":6585,\"ĠToronto\":6586,\"hetic\":6587,\"Ġcarbon\":6588,\"Ġinstalled\":6589,\"Ġviolent\":6590,\"Ġsolar\":6591,\"ja\":6592,\"Ġpractices\":6593,\"Ġride\":6594,\"ĠPenn\":6595,\"Ġimproved\":6596,\"Ġaudio\":6597,\"Ġbehavi\":6598,\"ĠPS\":6599,\"Ġeating\":6600,\"Data\":6601,\"ĠReview\":6602,\"pass\":6603,\"claim\":6604,\"uated\":6605,\"angers\":6606,\"chen\":6607,\"Ġproperties\":6608,\"Ġanywhere\":6609,\"Another\":6610,\"Ġblow\":6611,\"ĠJackson\":6612,\"Ġproud\":6613,\"Ġplane\":6614,\"lines\":6615,\"Ġsquare\":6616,\"Ġproof\":6617,\"ansas\":6618,\"Ġtalked\":6619,\"makers\":6620,\"Ġsister\":6621,\"Ġholds\":6622,\"Ġresident\":6623,\"Ġ==\":6624,\"Ġresistance\":6625,\"Ġsplit\":6626,\"Ġprosecut\":6627,\"Ġconfidence\":6628,\"resents\":6629,\"Ġcuts\":6630,\"Ġexception\":6631,\"Ġzero\":6632,\"Getty\":6633,\"Ġcopyright\":6634,\"Ġtotally\":6635,\"ormal\":6636,\"ifications\":6637,\"ĠAustralian\":6638,\"Ġsick\":6639,\"Ġ150\":6640,\"Ġhousehold\":6641,\"Ġfees\":6642,\"Ġdrivers\":6643,\"ogen\":6644,\"ĠNY\":6645,\"Ġnecessarily\":6646,\"Ġregulations\":6647,\"earing\":6648,\"sl\":6649,\"Ġperspective\":6650,\"care\":6651,\"icial\":6652,\"His\":6653,\"Ġescape\":6654,\"Ġsurprised\":6655,\"ĠVan\":6656,\"urrent\":6657,\"Ġvac\":6658,\"81\":6659,\"ĠThus\":6660,\"Ġemphas\":6661,\"ĠChampions\":6662,\"ĠIce\":6663,\"Ġnarr\":6664,\"Ġheads\":6665,\"Ġcausing\":6666,\"bel\":6667,\"fortunately\":6668,\"ĠMa\":6669,\"Ġtargets\":6670,\"cipl\":6671,\"Ġafternoon\":6672,\"Ġadds\":6673,\"ĠMaybe\":6674,\"ĠFour\":6675,\"essed\":6676,\"plete\":6677,\"Ġusual\":6678,\"cho\":6679,\"ingu\":6680,\"Ġwithd\":6681,\"ĠEnergy\":6682,\"ĠEconom\":6683,\"OO\":6684,\"Ġarticles\":6685,\"Ġinjured\":6686,\"Ġmanage\":6687,\"Ġexplains\":6688,\"Ġdiagn\":6689,\"Rec\":6690,\"atures\":6691,\"Ġlinked\":6692,\"Ġdiscussed\":6693,\"Ġexplo\":6694,\"Ġoccasion\":6695,\"athan\":6696,\"Ġopposite\":6697,\"Ġfaces\":6698,\"Ġdenied\":6699,\"ĠKnight\":6700,\"Ġnut\":6701,\"Ġapproximately\":6702,\"Ġdisappoint\":6703,\"onymous\":6704,\"ĠBest\":6705,\"ĠLo\":6706,\"ĠHy\":6707,\"ĠAff\":6708,\"Ġvoting\":6709,\"anwhile\":6710,\"ĠIII\":6711,\"Ġinstitutions\":6712,\"agram\":6713,\"ĠDaily\":6714,\"Ġdrag\":6715,\"Ġnearby\":6716,\"Ġguilty\":6717,\"Ġconver\":6718,\"Pre\":6719,\"ship\":6720,\"Ġreward\":6721,\"Ġphilosoph\":6722,\"ĠSS\":6723,\"ugh\":6724,\"Ġapps\":6725,\"friend\":6726,\"Ġupper\":6727,\"Ġadvert\":6728,\"Ġsnow\":6729,\"Ġfrust\":6730,\"Ġourselves\":6731,\"Fr\":6732,\"ĠDie\":6733,\"ampion\":6734,\"Ġdismiss\":6735,\"Ġcere\":6736,\"Ġsignal\":6737,\"from\":6738,\"Ġ).\":6739,\"Ġ52\":6740,\"Ġcrimes\":6741,\"itors\":6742,\"estival\":6743,\"useum\":6744,\"Ġcouncil\":6745,\"ĠSaud\":6746,\"May\":6747,\"ĠGun\":6748,\"ician\":6749,\"ether\":6750,\"Ġsufficient\":6751,\"ĠHen\":6752,\"sole\":6753,\"Ġhistorical\":6754,\"ĠFar\":6755,\"ĠTurn\":6756,\"Ġpin\":6757,\"Ġsucceed\":6758,\"mat\":6759,\"lymp\":6760,\"Ġtradition\":6761,\"ĠOk\":6762,\"Ġcro\":6763,\"Ġdescription\":6764,\"alle\":6765,\"Ġsky\":6766,\"Te\":6767,\"Ġwidely\":6768,\"Ġwave\":6769,\"Ġdefinition\":6770,\"ĠJews\":6771,\"Ġcycle\":6772,\"Ġrefere\":6773,\"Ġbrings\":6774,\"usal\":6775,\"Ġalive\":6776,\"Ġfrequently\":6777,\"Ġintention\":6778,\"ĠControl\":6779,\"lv\":6780,\"ystem\":6781,\"Ġprivacy\":6782,\"gent\":6783,\"rence\":6784,\"ĠQuest\":6785,\"ĠChristmas\":6786,\"Ġrail\":6787,\"Ġcooper\":6788,\"Ġtested\":6789,\"ĠCapt\":6790,\"asks\":6791,\"Ġcomfortable\":6792,\"Ġdelivered\":6793,\"scape\":6794,\"Ġdepth\":6795,\"ĠGOP\":6796,\"Ġwrites\":6797,\"Ġassets\":6798,\"Ġsav\":6799,\"iments\":6800,\"Ġtransition\":6801,\"Ġartist\":6802,\"ĠLook\":6803,\"Ġlob\":6804,\"Ġcomponents\":6805,\"arity\":6806,\"Ġwalked\":6807,\"Ġroot\":6808,\"Ġparticipants\":6809,\"Ġnoticed\":6810,\"Ġresc\":6811,\"Ġnav\":6812,\"ĠAdminist\":6813,\"da\":6814,\"utral\":6815,\"plate\":6816,\"Ġimportance\":6817,\"Ġassert\":6818,\"iously\":6819,\"cription\":6820,\"Ġinjuries\":6821,\"ĠCheck\":6822,\"Ġregistered\":6823,\"Ġintent\":6824,\"Ġmissed\":6825,\"ographic\":6826,\"Ġsentence\":6827,\"ounter\":6828,\"Ġassistance\":6829,\"evin\":6830,\"Ġdatabase\":6831,\"Ġbuildings\":6832,\"Ġclassic\":6833,\"Ġthinks\":6834,\"ĠOhio\":6835,\"Pr\":6836,\"ugg\":6837,\"Ġfee\":6838,\"pan\":6839,\"Ġeffectively\":6840,\"Ġfacility\":6841,\"Ġbear\":6842,\"Ġchapter\":6843,\"Ġdogs\":6844,\"ĠColumb\":6845,\"Ġlatter\":6846,\"itial\":6847,\"Ġadmitted\":6848,\"TV\":6849,\"ĠGeorg\":6850,\"Ġposts\":6851,\"\\\\\\\\\":6852,\"Ġlawyer\":6853,\"Ġequival\":6854,\"Ġmand\":6855,\"Ġcontrolled\":6856,\"ĠWalk\":6857,\"ĠAndrew\":6858,\"Ġmenu\":6859,\"amental\":6860,\"Ġprotected\":6861,\"va\":6862,\"Ġadministr\":6863,\"oral\":6864,\"Ġrein\":6865,\"ĠSar\":6866,\"Ġamounts\":6867,\"Ġnative\":6868,\"ĠMoon\":6869,\"Ġrepresents\":6870,\"Ġabandon\":6871,\"Ġcarrying\":6872,\"Ġtank\":6873,\"mary\":6874,\"Ġdeclared\":6875,\"Tube\":6876,\"Ġhat\":6877,\"Ġpunish\":6878,\"ellect\":6879,\"mes\":6880,\"Ġuniverse\":6881,\"ĠRod\":6882,\"phy\":6883,\"Ġinfrastructure\":6884,\"Ġ51\":6885,\"Ġopposed\":6886,\"ownt\":6887,\"ca\":6888,\"ĠMake\":6889,\"Ġhardware\":6890,\"Ġcoffee\":6891,\"Rel\":6892,\"bal\":6893,\"world\":6894,\"ĠSaf\":6895,\"ĠSea\":6896,\"inals\":6897,\"Ġowned\":6898,\"Ġhall\":6899,\"ersion\":6900,\"Ġdescribe\":6901,\"ĠPot\":6902,\"Ġportion\":6903,\"Ġatmosp\":6904,\"Ġgovernments\":6905,\"Ġdepending\":6906,\"Ġoffense\":6907,\"Ġtrick\":6908,\"awa\":6909,\"ĠLine\":6910,\"ĠVis\":6911,\"ĠHard\":6912,\"ĠOrig\":6913,\"ĠClick\":6914,\"Ġdesk\":6915,\"ĠValley\":6916,\"ĠSov\":6917,\"Ġmovies\":6918,\"Ġremark\":6919,\"Ġmail\":6920,\"Ġconscious\":6921,\"Ġruling\":6922,\"ĠRights\":6923,\"Ġmedic\":6924,\"hent\":6925,\"ĠWomen\":6926,\"><\":6927,\"Ġreplaced\":6928,\"ĠPrem\":6929,\"ĠThanks\":6930,\"Ġrenew\":6931,\"ĠBall\":6932,\"iform\":6933,\"Ġshots\":6934,\"Comm\":6935,\"Ġarmed\":6936,\"Ġconstant\":6937,\"Ġtaste\":6938,\"Ġrealized\":6939,\"Ġbuff\":6940,\"Ġmo\":6941,\"Ġefficient\":6942,\"Most\":6943,\"oration\":6944,\"ifies\":6945,\"Ġcommunication\":6946,\"Ġflood\":6947,\"Ġconsequences\":6948,\"Ġanyway\":6949,\"igg\":6950,\"ĠGM\":6951,\"ĠThank\":6952,\"Ġiron\":6953,\"Ġevolution\":6954,\"ĠCop\":6955,\"twitter\":6956,\"Ġ95\":6957,\"Ġrelationships\":6958,\"adel\":6959,\"ĠYoung\":6960,\"Ġproposal\":6961,\"ayers\":6962,\"uilding\":6963,\"ĠHot\":6964,\"ORE\":6965,\"cos\":6966,\"Ġcollabor\":6967,\"PG\":6968,\"axy\":6969,\"Ġknowing\":6970,\"Ġsupports\":6971,\"owed\":6972,\"Ġcontrols\":6973,\"Ġmerely\":6974,\"umer\":6975,\"Ġathlet\":6976,\"Ġfashion\":6977,\"path\":6978,\"Ġgift\":6979,\"Ġera\":6980,\"AND\":6981,\"Ġkinds\":6982,\"ĠKorean\":6983,\"Ġlegit\":6984,\"ulous\":6985,\"Ġessentially\":6986,\"Ġtherap\":6987,\"nic\":6988,\"Ġsuffered\":6989,\"Ġhur\":6990,\"Ġpromise\":6991,\"Ġexcess\":6992,\"Ġoverw\":6993,\"Ġprime\":6994,\"ĠHouston\":6995,\"erry\":6996,\"ĠMs\":6997,\"RS\":6998,\"2012\":6999,\"Ġstores\":7000,\"ĠOlymp\":7001,\"Ġjourney\":7002,\"Although\":7003,\"Sub\":7004,\"ĠEduc\":7005,\"ĠChapter\":7006,\"Ġrequests\":7007,\"Ġconsumers\":7008,\"Ġtiny\":7009,\"Ġisol\":7010,\"ĠFair\":7011,\"ba\":7012,\"ĠYOU\":7013,\"Ġcrash\":7014,\"celer\":7015,\"Ġemotional\":7016,\"Ġgoods\":7017,\"Ġelected\":7018,\"Ġmoder\":7019,\"ĠLinux\":7020,\"Ġblocks\":7021,\"Ġisland\":7022,\"ĠSociety\":7023,\"Ġelections\":7024,\"Ġbroadcast\":7025,\"Ġcheap\":7026,\"Ġnations\":7027,\"Ġseasons\":7028,\"400\":7029,\"Ġwaste\":7030,\"ĠSat\":7031,\"Ġfields\":7032,\"employ\":7033,\"Ġprofile\":7034,\"Ġauthors\":7035,\"ALL\":7036,\"ĠGra\":7037,\"west\":7038,\"ĠTy\":7039,\"Ġdeaths\":7040,\"Ġvacc\":7041,\"Ġformed\":7042,\"Ġdu\":7043,\"Ġongoing\":7044,\"ĠMuslims\":7045,\"elf\":7046,\"igure\":7047,\"Ġassume\":7048,\"ĠUkraine\":7049,\"water\":7050,\"Ġcoast\":7051,\"Ġvoted\":7052,\"gor\":7053,\"ĠAS\":7054,\"ĠMichigan\":7055,\"aza\":7056,\"ĠArm\":7057,\"iro\":7058,\"Ġflex\":7059,\"asters\":7060,\"''\":7061,\"Ġwelcome\":7062,\"arl\":7063,\"Ġlocations\":7064,\"igation\":7065,\"ĠFil\":7066,\"Ġbuying\":7067,\"Ġarchitect\":7068,\"Ġharder\":7069,\"ĠCub\":7070,\"Ġinterface\":7071,\"Ġrestaurant\":7072,\"Ġdiscover\":7073,\"Ġexceed\":7074,\"Ġfavour\":7075,\"gery\":7076,\"Ġduty\":7077,\"Ġpitch\":7078,\"ador\":7079,\"ĠMach\":7080,\"boy\":7081,\"Ġresponded\":7082,\"Ġextended\":7083,\"hers\":7084,\"Many\":7085,\"raid\":7086,\"ifer\":7087,\"ĠIns\":7088,\"Ser\":7089,\"Ġmedium\":7090,\"she\":7091,\"ĠSports\":7092,\"Ġmagazine\":7093,\"utation\":7094,\"Ġlimits\":7095,\"ĠGall\":7096,\"Ġexternal\":7097,\"razil\":7098,\"Ġyounger\":7099,\"tle\":7100,\"Ġremind\":7101,\"ĠCON\":7102,\"Ġimmediate\":7103,\"Ġhidden\":7104,\"Ġvolunte\":7105,\"Ġsimpl\":7106,\"odcast\":7107,\"Ġphase\":7108,\"dr\":7109,\"Ġplot\":7110,\"Ġexposure\":7111,\"RI\":7112,\"ograp\":7113,\"vin\":7114,\"anish\":7115,\"ĠAcad\":7116,\"ĠEngine\":7117,\"Ġexpansion\":7118,\"ĠPay\":7119,\"Your\":7120,\"Ġpushed\":7121,\"ĠEll\":7122,\"ĠHead\":7123,\"Ġmarketing\":7124,\"ĠAC\":7125,\"ket\":7126,\"Ġhits\":7127,\"Ġgro\":7128,\"ĠAge\":7129,\"ĠScot\":7130,\"][\":7131,\"Ġstim\":7132,\"ĠiPhone\":7133,\"ĪĴ\":7134,\"Ġnarrow\":7135,\"ĠGetty\":7136,\"ĠTurkey\":7137,\"Ġperfectly\":7138,\"Ġenable\":7139,\"utch\":7140,\"Ġprecise\":7141,\"Ġregime\":7142,\"Ġshif\":7143,\"Ġcompens\":7144,\"gun\":7145,\"div\":7146,\"Ġchosen\":7147,\"ĠKen\":7148,\"Any\":7149,\"Ġtrees\":7150,\"Ġrecommended\":7151,\"ĠRen\":7152,\"uable\":7153,\"ĠHT\":7154,\"Follow\":7155,\"EG\":7156,\"ĠHand\":7157,\"ĠKenn\":7158,\"Ġarguments\":7159,\"Ġexists\":7160,\"Ġbike\":7161,\"ĠConserv\":7162,\"Ġbreaking\":7163,\"ĠGar\":7164,\"Ġcrazy\":7165,\"Ġvirtual\":7166,\"aylor\":7167,\"ixel\":7168,\"Ġ1980\":7169,\"Ġpermission\":7170,\"ĠSeries\":7171,\"Ġconsumer\":7172,\"Ġclosely\":7173,\"called\":7174,\"Ġ54\":7175,\"Ġhopes\":7176,\"Ġarray\":7177,\"ĠWin\":7178,\"ĠLabour\":7179,\"Ġspons\":7180,\"ĠIre\":7181,\"Ġpow\":7182,\"Ġreaders\":7183,\"Ġemployment\":7184,\"Ġcreature\":7185,\"Ġresulting\":7186,\"Ġaccurate\":7187,\"Ġmoments\":7188,\"Ġargued\":7189,\"Ġped\":7190,\"During\":7191,\"Ġ53\":7192,\"ĠTal\":7193,\"Ġsought\":7194,\"Ġsuffering\":7195,\"Ġicon\":7196,\"lee\":7197,\"Ġ($\":7198,\"alian\":7199,\"Â°\":7200,\"Ġpra\":7201,\"Ġbonus\":7202,\"(\\\"\":7203,\"ko\":7204,\"Ġacting\":7205,\"DE\":7206,\"fall\":7207,\"Ġcomparison\":7208,\"Ġsmooth\":7209,\"ĠNAS\":7210,\"upp\":7211,\"ĠJoseph\":7212,\"eping\":7213,\"ĠTake\":7214,\"ĠMid\":7215,\"Ġsending\":7216,\"fast\":7217,\"ĠFall\":7218,\"Ġdealing\":7219,\"user\":7220,\"ĠOrgan\":7221,\"Co\":7222,\"Ġattached\":7223,\"Ġsees\":7224,\"%.\":7225,\"Ġtypical\":7226,\"ART\":7227,\"Ġfinds\":7228,\"ĠAsia\":7229,\"umin\":7230,\"ĠCore\":7231,\"ĠEnt\":7232,\"inent\":7233,\"uce\":7234,\"ĠBlood\":7235,\"ĠNever\":7236,\"Ġemails\":7237,\"Ġhighlight\":7238,\"Ġconfront\":7239,\"atus\":7240,\"uted\":7241,\"Ġunus\":7242,\"Ġtopic\":7243,\"ĠAdam\":7244,\"Ġble\":7245,\"ati\":7246,\"Ġunderstood\":7247,\"Set\":7248,\"struct\":7249,\"TP\":7250,\"Ġmob\":7251,\"aa\":7252,\"ĠStart\":7253,\"pected\":7254,\"sell\":7255,\"Ġdedicated\":7256,\"ĠCA\":7257,\"uan\":7258,\"Ġsongs\":7259,\"escription\":7260,\"Ġtech\":7261,\"Ġrape\":7262,\"Ġaside\":7263,\"Ġgrant\":7264,\"Ġ56\":7265,\"sub\":7266,\"Ġargue\":7267,\"Ġcontaining\":7268,\"Ġschedule\":7269,\"Ġliberal\":7270,\"Ġpublicly\":7271,\"Ġheavily\":7272,\"ĠUt\":7273,\"iner\":7274,\"ĠSection\":7275,\"ĠCare\":7276,\"weet\":7277,\"ls\":7278,\"Dis\":7279,\"âĶĢ\":7280,\"ĠFollow\":7281,\"Back\":7282,\"ĠIT\":7283,\"Ġbes\":7284,\"ji\":7285,\"ĠHit\":7286,\"ested\":7287,\"Ġeverybody\":7288,\"ĠSwed\":7289,\"Ġfemin\":7290,\"Ġfacilities\":7291,\"Ġconven\":7292,\"Comp\":7293,\"ĠOS\":7294,\"core\":7295,\"Ġanx\":7296,\"Ġdivision\":7297,\"ĠCam\":7298,\"ĠStan\":7299,\"mates\":7300,\"Ġexplore\":7301,\"plom\":7302,\"Ġshares\":7303,\"pload\":7304,\"anes\":7305,\"Ġideal\":7306,\"eters\":7307,\"ĠBase\":7308,\"Ġplastic\":7309,\"Ġdistinct\":7310,\"ĠNetwork\":7311,\"ĠSeattle\":7312,\"Ġtrading\":7313,\"ensus\":7314,\"intend\":7315,\"Ġexhib\":7316,\"Ġinitially\":7317,\"ĠFood\":7318,\"Ġthousand\":7319,\"ĠBusiness\":7320,\"acter\":7321,\"Ġparagraph\":7322,\"Ġroughly\":7323,\"Ġwww\":7324,\"Ġcreative\":7325,\"ĠConf\":7326,\"Ġconsumption\":7327,\"Ġfilms\":7328,\"agan\":7329,\"Ġobtain\":7330,\"Ġtall\":7331,\"Ġtor\":7332,\"Ġacknowled\":7333,\"Ġgrown\":7334,\"alo\":7335,\"KE\":7336,\"Ġ400\":7337,\"enders\":7338,\"taining\":7339,\"UG\":7340,\"Ġsuicide\":7341,\"Ġwatched\":7342,\"ĠList\":7343,\"ali\":7344,\"rehens\":7345,\"Ġsurrounding\":7346,\"Ġpip\":7347,\"Ġflying\":7348,\"ĠJava\":7349,\"ordan\":7350,\"Ġserving\":7351,\"inations\":7352,\"post\":7353,\"Ġsho\":7354,\"Av\":7355,\"Ġjail\":7356,\"zy\":7357,\"Ġ1999\":7358,\"Ġ</\":7359,\"Ġliterally\":7360,\"ĠSir\":7361,\"Ġexposed\":7362,\"Ġlies\":7363,\"star\":7364,\"Ġbat\":7365,\"Ġearned\":7366,\"ĠDig\":7367,\"Ġspecified\":7368,\"ĠSeason\":7369,\"Ġdegrees\":7370,\"Donald\":7371,\"Ġcentre\":7372,\"Ġsharing\":7373,\"Ġwinter\":7374,\"ĠCO\":7375,\"Che\":7376,\"ĠÎ\":7377,\"MP\":7378,\"Ġunw\":7379,\"Ġfewer\":7380,\"ĠMir\":7381,\"Ġsomewhere\":7382,\"ĠKey\":7383,\"Ġattacked\":7384,\"ĠKir\":7385,\"Ġdomain\":7386,\"Ġstronger\":7387,\"Ġ99\":7388,\"Ġpenalty\":7389,\"Id\":7390,\"Script\":7391,\"Ġdeclined\":7392,\"Ġneck\":7393,\"Ġfraud\":7394,\"Ġcurrency\":7395,\"Ġrising\":7396,\"RC\":7397,\"âĢ¦âĢ¦\":7398,\"Hz\":7399,\"Ġtab\":7400,\"Ġtalent\":7401,\"nam\":7402,\"ĠNBA\":7403,\"Ġvillage\":7404,\"Ġlegs\":7405,\"ĠNext\":7406,\"Ed\":7407,\"Ġacid\":7408,\"Ġhyd\":7409,\"800\":7410,\"Ġinvolving\":7411,\"ĠImage\":7412,\"ĠBefore\":7413,\"Fl\":7414,\"Ġyesterday\":7415,\"Source\":7416,\"Ġterrorist\":7417,\"Ġsup\":7418,\"Ġsynt\":7419,\"ĠSaudi\":7420,\"Ġwest\":7421,\"Ġru\":7422,\"burg\":7423,\"Ġvisible\":7424,\"Ġstruck\":7425,\"rison\":7426,\"Ġawesome\":7427,\"Ġdrawn\":7428,\"Ġanswers\":7429,\"ĠGirl\":7430,\"ĠRam\":7431,\"Ġthreats\":7432,\"Ġdefeat\":7433,\"osit\":7434,\"Ġvent\":7435,\"aturally\":7436,\"American\":7437,\"enda\":7438,\"ĠHoly\":7439,\"Ġrum\":7440,\"%,\":7441,\"case\":7442,\"ĠHistory\":7443,\"ĠYouTube\":7444,\"Ġsituations\":7445,\"ĠDNA\":7446,\"Ste\":7447,\"Ġsaved\":7448,\"Item\":7449,\"Ġrecip\":7450,\"ologist\":7451,\"Ġfaced\":7452,\"Ġelig\":7453,\"Once\":7454,\"ĠLi\":7455,\"uh\":7456,\"Ġmistake\":7457,\"ĠDivision\":7458,\"ĠBell\":7459,\"Ġsymptoms\":7460,\"Â®\":7461,\"Ġdomin\":7462,\"Ġfalling\":7463,\"Ġending\":7464,\"ashes\":7465,\"Ġmatches\":7466,\"ĠOnline\":7467,\"Ġexplanation\":7468,\"Def\":7469,\"redit\":7470,\"Ġanymore\":7471,\"ĠTotal\":7472,\"ĠFOR\":7473,\"ushed\":7474,\"Ġletters\":7475,\"Ġrisks\":7476,\"ĠOK\":7477,\"Ġreportedly\":7478,\":\\\\\":7479,\"Ġplate\":7480,\"Ġsubjects\":7481,\"Ġattempted\":7482,\"ifier\":7483,\"iana\":7484,\"Ġunlikely\":7485,\"ĠThough\":7486,\"uma\":7487,\"ĠInvest\":7488,\"ĠPrin\":7489,\"ican\":7490,\"ĠDar\":7491,\"ĠColorado\":7492,\"aug\":7493,\"Ġveget\":7494,\"aos\":7495,\"ria\":7496,\"Ġshel\":7497,\"Ġmarked\":7498,\"Ġ()\":7499,\"Ġspr\":7500,\"po\":7501,\"ĠLink\":7502,\"Ġdefe\":7503,\"ĠJr\":7504,\"Ġtheme\":7505,\"Ġpassion\":7506,\"ĠPen\":7507,\"Ġinfo\":7508,\"izer\":7509,\"Ġshit\":7510,\"ĠCivil\":7511,\"apse\":7512,\"cre\":7513,\"Ġpoly\":7514,\"Ġcomponent\":7515,\"ĠCharles\":7516,\"ĠIreland\":7517,\"ĠProv\":7518,\"Ġdoctors\":7519,\"Ġgranted\":7520,\"Ġpaint\":7521,\"Ġhonor\":7522,\"Ġsmoke\":7523,\"Ġpayments\":7524,\"Ġprimarily\":7525,\"ĠKingdom\":7526,\"rich\":7527,\"atell\":7528,\"Ġdeals\":7529,\"Ġscheduled\":7530,\"Ġfundamental\":7531,\"Ġprotein\":7532,\"Ġnewspaper\":7533,\"Ġclients\":7534,\"ython\":7535,\"ĠDate\":7536,\"hus\":7537,\"Ġfeedback\":7538,\"Ġstretch\":7539,\"Ġcock\":7540,\"Ġhotel\":7541,\"ĠQueen\":7542,\"Ġsugar\":7543,\"Ġju\":7544,\"Ġmilk\":7545,\"Ġapproval\":7546,\"ĠLive\":7547,\"Ġequivalent\":7548,\"efully\":7549,\"Ġinsert\":7550,\"zona\":7551,\"Ġextension\":7552,\"dri\":7553,\"John\":7554,\"Ġaccomp\":7555,\"Sm\":7556,\"ĠFund\":7557,\"Ġconstantly\":7558,\"Ġ``\":7559,\"Ġgenerated\":7560,\"ĠAction\":7561,\"ĠPsych\":7562,\"ĠTri\":7563,\"Ġrecognize\":7564,\"Ġvary\":7565,\"pha\":7566,\"ĠRa\":7567,\"df\":7568,\"etch\":7569,\"ĠSoviet\":7570,\"Two\":7571,\"Ġpatterns\":7572,\"Ġprofession\":7573,\"aning\":7574,\"Time\":7575,\"ĠLim\":7576,\"Ġcolors\":7577,\"ĠAz\":7578,\"ĠTR\":7579,\"Ġinfect\":7580,\"Ġphenomen\":7581,\"Ġshell\":7582,\"Also\":7583,\"Ġputs\":7584,\"Ġdelivery\":7585,\"Ġbrown\":7586,\"Ġprocessing\":7587,\"Ġlights\":7588,\"essage\":7589,\"ĠBrook\":7590,\"ĠAud\":7591,\"lation\":7592,\"Ġindustrial\":7593,\"Like\":7594,\"ĠBrazil\":7595,\"rous\":7596,\"ESS\":7597,\"ĠLuc\":7598,\"Ġsomehow\":7599,\"Ġ85\":7600,\"Ġproport\":7601,\"Ġpoliticians\":7602,\"Ġindicate\":7603,\"Ġhole\":7604,\"Ġtechniques\":7605,\"Ġcompetitive\":7606,\"Ġphr\":7607,\"Ġvo\":7608,\"istent\":7609,\"ĠDream\":7610,\"Ġcampus\":7611,\"Ġaspects\":7612,\"Ġhelpful\":7613,\"Ġshield\":7614,\"orse\":7615,\"Ġtrigger\":7616,\"mal\":7617,\"Ġ58\":7618,\"Ġtort\":7619,\"Ġpersonally\":7620,\"Ġtag\":7621,\"Ġkeeps\":7622,\"ĠVideo\":7623,\"Ġbench\":7624,\"Ġgap\":7625,\"aire\":7626,\"Ġeast\":7627,\"Ġrecovery\":7628,\"perial\":7629,\"Ġprofit\":7630,\"ĠMic\":7631,\"Ġ57\":7632,\"Ġcolon\":7633,\"Ġstrongly\":7634,\"style\":7635,\"Ġallegations\":7636,\"han\":7637,\"Ġreporters\":7638,\"jo\":7639,\"rine\":7640,\"arget\":7641,\"andal\":7642,\"Ġ03\":7643,\"Ġflash\":7644,\"trans\":7645,\"Ġstrict\":7646,\"Ġparking\":7647,\"ĠPakistan\":7648,\"Ġli\":7649,\"Ġweird\":7650,\"ĠEric\":7651,\"Ġregions\":7652,\"ĠJun\":7653,\"Ġintellect\":7654,\"ĠWH\":7655,\"oding\":7656,\"ributes\":7657,\"upid\":7658,\"ĠTit\":7659,\"Ġfinger\":7660,\"oria\":7661,\"Ġelev\":7662,\"ĠField\":7663,\"Ġconclusion\":7664,\";;\":7665,\"Ġfeelings\":7666,\"Ġextensive\":7667,\"Ġmixed\":7668,\"Ġneuro\":7669,\"vy\":7670,\"Ġharass\":7671,\"ĠCirc\":7672,\"ouch\":7673,\"Ġterritory\":7674,\"Ġsuccessfully\":7675,\"Mar\":7676,\"Ġingred\":7677,\"Ġoverwhel\":7678,\"Ġlayer\":7679,\"View\":7680,\"Ġallies\":7681,\"illance\":7682,\"ĠThree\":7683,\"Ġbunch\":7684,\"Ġnormally\":7685,\"Ġnetworks\":7686,\"Ġsacr\":7687,\"ĠCIA\":7688,\"bles\":7689,\"Ġchose\":7690,\"Ġopponents\":7691,\"Ġregardless\":7692,\"Ġfranch\":7693,\"Ġpref\":7694,\"ĠPo\":7695,\"Ġbridge\":7696,\"anna\":7697,\"ĠSilver\":7698,\"Ġwage\":7699,\"page\":7700,\"rior\":7701,\"Ġradical\":7702,\"ĠLittle\":7703,\"Ġmanip\":7704,\"Ġsecretary\":7705,\"Ġgang\":7706,\"DR\":7707,\"FA\":7708,\"Ġdecent\":7709,\"ĠSpirit\":7710,\"Ġuncle\":7711,\"ĠDevelopment\":7712,\"Ġinvestors\":7713,\"Ġwalls\":7714,\"Ġpublish\":7715,\"Ġgenerate\":7716,\"issions\":7717,\"car\":7718,\"Ġpromote\":7719,\"Ġcutting\":7720,\"Ġchest\":7721,\"Ġdrinking\":7722,\"Ġcollected\":7723,\"Ġ72\":7724,\"Ġhoping\":7725,\"Ġembr\":7726,\"gorith\":7727,\"Ġwarned\":7728,\"Ġinstructions\":7729,\"OG\":7730,\"ĠDid\":7731,\"ĠAgency\":7732,\"Ġgear\":7733,\"Ġcriticism\":7734,\"ĠFurther\":7735,\"Ġutil\":7736,\"anny\":7737,\"Red\":7738,\"Ġcounsel\":7739,\"ĠAsian\":7740,\"Ġreduction\":7741,\"pool\":7742,\"Ġteaching\":7743,\"Ġdeeply\":7744,\"iy\":7745,\"Ġestimates\":7746,\"Ġchoices\":7747,\"Ġpermanent\":7748,\"inem\":7749,\"kel\":7750,\"Ġfasc\":7751,\"pse\":7752,\"file\":7753,\"ĠLow\":7754,\"ĠPerson\":7755,\"Ġtournament\":7756,\"stal\":7757,\"Ġmel\":7758,\"UST\":7759,\"ĠRay\":7760,\"azi\":7761,\"Val\":7762,\"Ġcontained\":7763,\"ĠHolly\":7764,\"Ġwake\":7765,\"Ġreveal\":7766,\"Ġprocesses\":7767,\"ĠISIS\":7768,\"Ġ09\":7769,\"Ġblind\":7770,\"Ġsteel\":7771,\"ĠBad\":7772,\"Ġcarefully\":7773,\"appy\":7774,\"roit\":7775,\"Ġgaming\":7776,\"Ġhouses\":7777,\"ĠColl\":7778,\"Ġtruck\":7779,\"erm\":7780,\"Ġscored\":7781,\"Ġoccas\":7782,\"return\":7783,\"bound\":7784,\"var\":7785,\"Ġsharp\":7786,\"Ġafraid\":7787,\"ĠEX\":7788,\"amber\":7789,\"cific\":7790,\"Ġscheme\":7791,\"NC\":7792,\"ĠPolit\":7793,\"Ġdecline\":7794,\"Ġ1998\":7795,\"Ġpushing\":7796,\"Ġpossession\":7797,\"Ġprivile\":7798,\"Ġteachers\":7799,\"Ġyield\":7800,\"HA\":7801,\"ĠDavis\":7802,\"itled\":7803,\"########\":7804,\"Ġrig\":7805,\"ĠDaniel\":7806,\"acon\":7807,\"Ġhide\":7808,\"uten\":7809,\"Ġcolleagues\":7810,\"Ġprinciples\":7811,\"Ġloud\":7812,\"Ġsin\":7813,\"ĠDemon\":7814,\"Ġstone\":7815,\"Ġ02\":7816,\"Ġtaught\":7817,\"Ġterrible\":7818,\"Ġstuck\":7819,\"ĠPolicy\":7820,\"teen\":7821,\"Ġimplementation\":7822,\"ĠBBC\":7823,\"ĠAPI\":7824,\"Ġwheel\":7825,\"allas\":7826,\"Ġchampions\":7827,\"olars\":7828,\"player\":7829,\"Ġrepeatedly\":7830,\"ĠStill\":7831,\"Ġlikes\":7832,\"asty\":7833,\"ester\":7834,\"ĠCatholic\":7835,\"RL\":7836,\"Ġbath\":7837,\"Ġnoise\":7838,\"title\":7839,\"Ġnorthern\":7840,\"Part\":7841,\"Ġmagn\":7842,\"Ġfab\":7843,\"ĠAsh\":7844,\"Ġdispl\":7845,\"Ġticket\":7846,\"Ġmurd\":7847,\"Ġalongside\":7848,\"ĠMusic\":7849,\"Ġriver\":7850,\"ĠSteel\":7851,\"ĠCL\":7852,\"ĠPlayer\":7853,\"ĠMult\":7854,\"owing\":7855,\"rep\":7856,\"size\":7857,\"Ġtur\":7858,\"ĠGeorgia\":7859,\"iscal\":7860,\"raction\":7861,\"Ġcable\":7862,\"Ġ59\":7863,\"Ġwins\":7864,\"Ġupcoming\":7865,\"Ġsurvive\":7866,\"Ġinspired\":7867,\"ĠEducation\":7868,\"Ġstatistics\":7869,\"ĠFoot\":7870,\"iami\":7871,\"Ġyellow\":7872,\"ĠPage\":7873,\".-\":7874,\"ĠHas\":7875,\"Ġurban\":7876,\"Ġax\":7877,\"essel\":7878,\"\\\\\\\"\":7879,\"Ġquarterback\":7880,\"Ġregister\":7881,\"ĠLabor\":7882,\"Ġabilities\":7883,\"ĠFamily\":7884,\"Ġvariable\":7885,\"ĠPrice\":7886,\"Ġcontem\":7887,\"Ġthin\":7888,\"ĠEqu\":7889,\"data\":7890,\"Ġgotten\":7891,\"Ġconstit\":7892,\"Ġasks\":7893,\"Ġtail\":7894,\"Ġexciting\":7895,\"ĠEffect\":7896,\"ĠSpanish\":7897,\"Ġencourage\":7898,\"inson\":7899,\"ĠAh\":7900,\"Ġcommitment\":7901,\"CS\":7902,\"Ġrally\":7903,\"Ġ::\":7904,\"Ġsubsid\":7905,\"Ġspin\":7906,\"Ġcaptured\":7907,\"2018\":7908,\"Ġinnoc\":7909,\"Ġallegedly\":7910,\"ĠCome\":7911,\"Ġartists\":7912,\"ĠNumber\":7913,\"Ġelectronic\":7914,\"Ġregional\":7915,\"apes\":7916,\"Ġwra\":7917,\"Ġmyth\":7918,\"prise\":7919,\"ĠMiller\":7920,\"ĠCreat\":7921,\"ĠEpisode\":7922,\"bell\":7923,\"Ġdirected\":7924,\"Ġextract\":7925,\"Ġsorry\":7926,\"Ġvice\":7927,\"agger\":7928,\"ĠSupport\":7929,\"Ġ66\":7930,\"ĠIron\":7931,\"Ġwonderful\":7932,\"Ġgra\":7933,\"Net\":7934,\"ione\":7935,\"Eng\":7936,\"Ġships\":7937,\"ikes\":7938,\"ĠKevin\":7939,\"itar\":7940,\"Ġactivists\":7941,\"true\":7942,\"ĠArizona\":7943,\"enth\":7944,\"ĠDespite\":7945,\"ĠSE\":7946,\"Ġhabit\":7947,\"ernel\":7948,\"Ġinqu\":7949,\"Ġabortion\":7950,\"Ġvoid\":7951,\"Ġexplicit\":7952,\"Ġengaged\":7953,\"Ġangry\":7954,\"Ġrating\":7955,\"Ġfrag\":7956,\"bro\":7957,\"icking\":7958,\"dev\":7959,\"Ġworried\":7960,\"Ġobser\":7961,\"Ġapartment\":7962,\"ĠGT\":7963,\"Ġestate\":7964,\"ĠConstitution\":7965,\"emon\":7966,\"ĠSnow\":7967,\"Ġcounty\":7968,\"Ġdisag\":7969,\"ĠStephen\":7970,\"Ġimmigrants\":7971,\"wind\":7972,\"ĠNations\":7973,\"Ġfolks\":7974,\"Out\":7975,\"Ġgall\":7976,\"Ġtargeted\":7977,\"Ġstead\":7978,\"ĠBon\":7979,\"ĠLib\":7980,\"Ġinformed\":7981,\"Ġ120\":7982,\"chain\":7983,\"idelines\":7984,\"orough\":7985,\"Ġdriven\":7986,\"Ġregularly\":7987,\"Ġbasket\":7988,\"Ġprinciple\":7989,\"ocument\":7990,\"Ġstun\":7991,\"ibilities\":7992,\"ĠRoman\":7993,\"ĠAbout\":7994,\"Ġalert\":7995,\"Ġdemocracy\":7996,\"Ġrepresented\":7997,\"HS\":7998,\"cers\":7999,\"parent\":8000,\"Art\":8001,\"pack\":8002,\"Ġdiplom\":8003,\"rets\":8004,\"ĠNO\":8005,\"Ġcapture\":8006,\"ĠAdv\":8007,\"Ħ¢\":8008,\"Ġannouncement\":8009,\"ĠLear\":8010,\"Ġhook\":8011,\"Ġpurs\":8012,\"ĠSuch\":8013,\"ĠCamer\":8014,\"Ġrefugees\":8015,\"ĠVe\":8016,\"Pol\":8017,\"Ġrecognized\":8018,\"lib\":8019,\"Ġhadn\":8020,\"Ass\":8021,\"Ġpilot\":8022,\"ushing\":8023,\"Ġreturning\":8024,\"Ġtrail\":8025,\"ĠStone\":8026,\"Ġroutine\":8027,\"Ġcourts\":8028,\"Ġdesper\":8029,\"Ġfriendly\":8030,\"ĠItaly\":8031,\"Ġpled\":8032,\"Ġbreath\":8033,\"Ġstudio\":8034,\"NS\":8035,\"Ġimpressive\":8036,\"ĠAfghanistan\":8037,\"Ġfing\":8038,\"Ġdownt\":8039,\"inking\":8040,\"ĠRog\":8041,\"iary\":8042,\"color\":8043,\"sex\":8044,\"aron\":8045,\"Ġfault\":8046,\"ĠNick\":8047,\"Down\":8048,\"ĠRose\":8049,\"ĠSouthern\":8050,\"XX\":8051,\"isodes\":8052,\"List\":8053,\"600\":8054,\"Ġoutcome\":8055,\"err\":8056,\"Ġelsewhere\":8057,\"Ġretire\":8058,\"Ġpounds\":8059,\"ĠGlobal\":8060,\"People\":8061,\"Ġcommunications\":8062,\"Ġloan\":8063,\"Ġratio\":8064,\"ĠEmpire\":8065,\"Ġgonna\":8066,\"Ġinvent\":8067,\"DF\":8068,\"Ġ1970\":8069,\"ĠCommon\":8070,\"pat\":8071,\"Ġpromised\":8072,\"Ġdinner\":8073,\"ĠHom\":8074,\"Ġcreates\":8075,\"Ġoperate\":8076,\"verty\":8077,\"ĠJordan\":8078,\"etime\":8079,\"Ġsustain\":8080,\"Reg\":8081,\"Ġincredible\":8082,\"ima\":8083,\"Ġwarrant\":8084,\"Ġmm\":8085,\"Att\":8086,\"Ġlawsuit\":8087,\"Ġreviews\":8088,\"iture\":8089,\"ĠSource\":8090,\"lights\":8091,\"ĠFord\":8092,\"Ġ63\":8093,\"group\":8094,\"store\":8095,\"Ġfeatured\":8096,\"Ġforever\":8097,\"Ġpoverty\":8098,\"ĠPop\":8099,\"ĠCNN\":8100,\"azz\":8101,\"abis\":8102,\"aching\":8103,\"Ġlaid\":8104,\"ĠSupp\":8105,\"Ġfilter\":8106,\"ena\":8107,\"ĠCommunity\":8108,\"Ġcreatures\":8109,\"uction\":8110,\"ĠRoyal\":8111,\"Ġassociation\":8112,\"ĠConnect\":8113,\"ĠBrad\":8114,\"âĸĪ\":8115,\"lers\":8116,\"there\":8117,\"ĠGi\":8118,\"Ġvaluable\":8119,\"ACK\":8120,\"ĠTaylor\":8121,\"Ġliquid\":8122,\"ĠAttorney\":8123,\"ĠCarl\":8124,\"ĠFinal\":8125,\"aga\":8126,\"ĠWilson\":8127,\"Because\":8128,\"ĠProfessor\":8129,\"aka\":8130,\"Ġincredibly\":8131,\"rance\":8132,\"!)\":8133,\"Ref\":8134,\"sk\":8135,\"Ġsolutions\":8136,\"Ġatmosphere\":8137,\"Ġblame\":8138,\"umes\":8139,\"ĠNob\":8140,\"CA\":8141,\"umps\":8142,\"rical\":8143,\"ĠPutin\":8144,\"ĠDest\":8145,\"oric\":8146,\"ĠPA\":8147,\"Ġrespectively\":8148,\"wan\":8149,\"Ġfifth\":8150,\"âĦ¢\":8151,\"ĠCry\":8152,\"Ġgovernor\":8153,\"resident\":8154,\"Ġpurchased\":8155,\"Ġhack\":8156,\"Ġintense\":8157,\"obs\":8158,\"Ġorigin\":8159,\"Ġdefine\":8160,\"Ġcareful\":8161,\"***\":8162,\"Ġshoulder\":8163,\"Click\":8164,\"Ġtied\":8165,\"Ġdestruction\":8166,\"oured\":8167,\"Ġnobody\":8168,\"Ġho\":8169,\"ĠExper\":8170,\"Ġtip\":8171,\"\\\";\":8172,\"Ġtechnique\":8173,\"Ġjur\":8174,\"ĠPok\":8175,\"bow\":8176,\"Ġlegend\":8177,\"Ġaccord\":8178,\"Ġbusy\":8179,\"ĠIntel\":8180,\"Ġhang\":8181,\"aki\":8182,\".]\":8183,\"âĢĶâĢĶâĢĶâĢĶ\":8184,\"Ġsurgery\":8185,\"Ġreprodu\":8186,\"Ġuniform\":8187,\"Ġscenes\":8188,\"code\":8189,\"Ġ62\":8190,\"lisher\":8191,\"ĠHave\":8192,\"phia\":8193,\"Ġcrypt\":8194,\"Ġrecon\":8195,\"Ġscream\":8196,\"Ġadopted\":8197,\"Ġscores\":8198,\"Ne\":8199,\"ĠItalian\":8200,\"including\":8201,\"BO\":8202,\"Ġindicated\":8203,\"Ġentertain\":8204,\"Gu\":8205,\"Text\":8206,\"iel\":8207,\"Ġtwenty\":8208,\"Ġengage\":8209,\"offs\":8210,\"ĠPacific\":8211,\"Ġsmile\":8212,\"Ġpersonnel\":8213,\"Ġtoler\":8214,\"Ġdoors\":8215,\"Ġtone\":8216,\"Ġmachines\":8217,\"Ġentering\":8218,\"tenance\":8219,\"CO\":8220,\"ĠJersey\":8221,\"Ġforest\":8222,\"Ġhorse\":8223,\"Ġcomplaint\":8224,\"ĠSpring\":8225,\"yo\":8226,\"ĠPlus\":8227,\"eding\":8228,\"ĠReturn\":8229,\"quarters\":8230,\"ials\":8231,\"cow\":8232,\"Ġacademic\":8233,\"Ġfruit\":8234,\"Ġ1996\":8235,\"ogether\":8236,\"Ġwine\":8237,\"Ġpursu\":8238,\"ĠSteven\":8239,\"Ġlicens\":8240,\"Who\":8241,\"Ġclothes\":8242,\"rection\":8243,\"Ġsquad\":8244,\"Ġstable\":8245,\"Ġraw\":8246,\"zens\":8247,\"Star\":8248,\"uties\":8249,\"ancer\":8250,\"Ġkeys\":8251,\"ĠMu\":8252,\"Ġcomplicated\":8253,\"iger\":8254,\"ĠText\":8255,\"Ġabsor\":8256,\"Ġ68\":8257,\"Ġfunny\":8258,\"Ġrelief\":8259,\"ĠLew\":8260,\"ĠCook\":8261,\"Ġchart\":8262,\"Ġdrawing\":8263,\"GE\":8264,\"Ġmodule\":8265,\"ĠBull\":8266,\"ILL\":8267,\"Ġsalt\":8268,\"00000000\":8269,\"ille\":8270,\"Ġresource\":8271,\"away\":8272,\"adelphia\":8273,\"ĠBru\":8274,\"Ġ67\":8275,\"Ġsomebody\":8276,\"Ġparticipate\":8277,\"Ġrose\":8278,\"wered\":8279,\"Ġmuscle\":8280,\"Ġconsent\":8281,\"Ġcontinuing\":8282,\"ĠGuardian\":8283,\"ĠOrder\":8284,\"regon\":8285,\"Ġrear\":8286,\"Ġprovision\":8287,\"Ġliked\":8288,\"rient\":8289,\"Ġbra\":8290,\"Trans\":8291,\"Ġmeetings\":8292,\"Ġtox\":8293,\"Ġconvent\":8294,\"Ġauto\":8295,\"Ġrecording\":8296,\"ĠSoft\":8297,\"001\":8298,\"ĠRoll\":8299,\"Ġprogramming\":8300,\"Ġpic\":8301,\"Ġproved\":8302,\"Ġstab\":8303,\"ĠAst\":8304,\"Ġcaption\":8305,\"ulating\":8306,\"ĠAttack\":8307,\"Ġnewly\":8308,\"Ġ1997\":8309,\"fr\":8310,\"Ġdiscipl\":8311,\"ĠGreek\":8312,\"Ġedition\":8313,\"ĠDoes\":8314,\"ĠBox\":8315,\"ifle\":8316,\"acket\":8317,\"Ġpasses\":8318,\"Ġguest\":8319,\"Ġacceler\":8320,\"itals\":8321,\"UD\":8322,\"Ġauthent\":8323,\"ĠRest\":8324,\"oval\":8325,\"ta\":8326,\"uine\":8327,\"Ġarmor\":8328,\"ĠTown\":8329,\"Ġcompat\":8330,\"Ġinches\":8331,\"Despite\":8332,\"Ġassign\":8333,\"herent\":8334,\"Ġprepare\":8335,\"ĠMeg\":8336,\"ockey\":8337,\"Ġdepends\":8338,\"Ġtracks\":8339,\"watch\":8340,\"Ġlists\":8341,\"ĠNorthern\":8342,\"Ġalter\":8343,\"rec\":8344,\"ĠEastern\":8345,\"Ġcondem\":8346,\"Ġeverywhere\":8347,\"?'\":8348,\"Ġaffili\":8349,\"Ġfought\":8350,\"\\\":{\\\"\":8351,\"Ġmac\":8352,\"itarian\":8353,\"Ġscope\":8354,\"ĠAL\":8355,\"aws\":8356,\"arms\":8357,\"Ġque\":8358,\"Ġenjoyed\":8359,\"nesota\":8360,\"Ġaggressive\":8361,\"ĠStory\":8362,\"ĠIV\":8363,\"Ġrecipe\":8364,\"Ġrarely\":8365,\"ĠMedical\":8366,\"value\":8367,\"angel\":8368,\"aying\":8369,\"omething\":8370,\"Ġsubsection\":8371,\"Ġsouthern\":8372,\"Ġfrequency\":8373,\"rete\":8374,\"rolled\":8375,\"ults\":8376,\"ĠNic\":8377,\"Ġbehalf\":8378,\"Ġsequence\":8379,\"abet\":8380,\"Ġcontroversial\":8381,\"Ġcomprom\":8382,\"Ġworker\":8383,\"Ġmainly\":8384,\"Ġalgorith\":8385,\"ĠMajor\":8386,\"orce\":8387,\"gender\":8388,\"Ġorganized\":8389,\"Ġfake\":8390,\"Ġconcluded\":8391,\"ĠED\":8392,\"ĠExec\":8393,\"rage\":8394,\"Ġchances\":8395,\"berry\":8396,\"ĠTrad\":8397,\"Ġconfiguration\":8398,\"Ġwithdraw\":8399,\"Ġfro\":8400,\"udes\":8401,\"ĠBrother\":8402,\"ĠBrian\":8403,\"Ġtries\":8404,\"Ġsamples\":8405,\"Ġbid\":8406,\"ĠGolden\":8407,\"Ġphotograph\":8408,\"ifest\":8409,\"ĠDO\":8410,\"ĠParliament\":8411,\"****************\":8412,\"Rem\":8413,\"Ġcontest\":8414,\"Ġsigning\":8415,\"px\":8416,\"ĠZeal\":8417,\"âĶĢâĶĢ\":8418,\"Ear\":8419,\"Ġexit\":8420,\"Before\":8421,\"ĠCorpor\":8422,\"null\":8423,\"month\":8424,\"Ġracial\":8425,\"otted\":8426,\"ĠVeg\":8427,\"ĠReuters\":8428,\"Ġsword\":8429,\"pson\":8430,\"ĠRomney\":8431,\"aed\":8432,\"Ġtrib\":8433,\"Ġinner\":8434,\"Ġprotocol\":8435,\"ĠBi\":8436,\"ĠMiami\":8437,\"everal\":8438,\"press\":8439,\"Ġshipping\":8440,\"ĠAmendment\":8441,\"ĠHoward\":8442,\"connect\":8443,\"ĠDisc\":8444,\"ĠJac\":8445,\"iamond\":8446,\"ĠTherefore\":8447,\"ses\":8448,\"ĠPrincess\":8449,\"ĠUSB\":8450,\"ĠAnth\":8451,\"Ġsurveillance\":8452,\"Ġapolog\":8453,\"Ġ61\":8454,\"owa\":8455,\"Ġfulf\":8456,\"js\":8457,\"Ġluck\":8458,\"usted\":8459,\"ĠÂ§\":8460,\"ni\":8461,\"Ġanticip\":8462,\"eman\":8463,\"Ġwinner\":8464,\"Ġsilver\":8465,\"lla\":8466,\"icity\":8467,\"Ġunusual\":8468,\"Ġcrack\":8469,\"Ġties\":8470,\"ez\":8471,\"Ġpractical\":8472,\"Ġprovince\":8473,\"ĠPlace\":8474,\"Ġpriority\":8475,\"ICE\":8476,\"Ġdescribes\":8477,\"Ġbranch\":8478,\"Form\":8479,\"aska\":8480,\"missions\":8481,\"bi\":8482,\"Ġporn\":8483,\"ĠTurk\":8484,\"Ġenthus\":8485,\"Ġfighters\":8486,\"Ġ08\":8487,\"ĠDetroit\":8488,\"Ġfoundation\":8489,\"avid\":8490,\"Are\":8491,\"Ġjudgment\":8492,\"cling\":8493,\"Ġsolve\":8494,\"ĠDesign\":8495,\"Where\":8496,\"hesis\":8497,\"ĠTro\":8498,\"after\":8499,\"Ġneutral\":8500,\"ĠPalestinian\":8501,\"ĠHollywood\":8502,\"Ġadvis\":8503,\"ĠNon\":8504,\"yes\":8505,\"olis\":8506,\"Ġreputation\":8507,\"Ġsmell\":8508,\"Ġbread\":8509,\"ĠBul\":8510,\"ĠBeach\":8511,\"Ġclaiming\":8512,\"Ġgenetic\":8513,\"Ġtechnologies\":8514,\"Ġupgrade\":8515,\"rows\":8516,\"Ġdeveloper\":8517,\"ĠJosh\":8518,\"ĠDisney\":8519,\"erved\":8520,\"ipal\":8521,\"Ġunex\":8522,\"Ġbarely\":8523,\"then\":8524,\"ĠPub\":8525,\"Ġillness\":8526,\"etary\":8527,\"ĠBal\":8528,\"Ġpatch\":8529,\"Ġbutt\":8530,\"Ġstupid\":8531,\"ĠDog\":8532,\"ĠDallas\":8533,\"front\":8534,\"iece\":8535,\"Ġprotests\":8536,\"Ġchat\":8537,\"oenix\":8538,\"Ġwing\":8539,\"Ġparliament\":8540,\"Ġ77\":8541,\"osexual\":8542,\"Ġrender\":8543,\"ptions\":8544,\"ĠCoast\":8545,\"osa\":8546,\"ĠGreg\":8547,\"hop\":8548,\"ĠManagement\":8549,\"Ġbitcoin\":8550,\"Ġrecover\":8551,\"Ġincorpor\":8552,\"orne\":8553,\"ĠUsing\":8554,\"Ġpreced\":8555,\"Ġthreatened\":8556,\"Ġspiritual\":8557,\"ĠEvent\":8558,\"ĠFred\":8559,\"Ġadvertising\":8560,\"Ġimprovements\":8561,\"ĠCustom\":8562,\"Ġerrors\":8563,\"Ġsensitive\":8564,\"ĠNavy\":8565,\"Ġcream\":8566,\"Look\":8567,\"Ġexclusive\":8568,\"Ġcomprehens\":8569,\"Ġdeleg\":8570,\"Ġconce\":8571,\"Ġremem\":8572,\"Ġstructures\":8573,\"Ġstored\":8574,\"ND\":8575,\"Ġ1000\":8576,\"UP\":8577,\"ĠBudd\":8578,\"AF\":8579,\"woman\":8580,\"ĠAcademy\":8581,\"ðŁ\":8582,\"sea\":8583,\"Ġtemporary\":8584,\"About\":8585,\"esters\":8586,\"Ġtickets\":8587,\"Ġpossess\":8588,\"inch\":8589,\"oz\":8590,\"Ġla\":8591,\"Ġcontracts\":8592,\"Ġunp\":8593,\"Ġcig\":8594,\"ĠKat\":8595,\"ultural\":8596,\"asm\":8597,\"Ġmountain\":8598,\"ĠCaptain\":8599,\"Step\":8600,\"making\":8601,\"ĠSpain\":8602,\"Ġequally\":8603,\"Ġlands\":8604,\"aters\":8605,\"Ġrejected\":8606,\"era\":8607,\"imm\":8608,\"rix\":8609,\"CD\":8610,\"Ġtransaction\":8611,\"gener\":8612,\"lessly\":8613,\"Ġ||\":8614,\"Ġcos\":8615,\"ĠHenry\":8616,\"Ġprovisions\":8617,\"Ġgained\":8618,\"Ġdirectory\":8619,\"Ġraising\":8620,\"ĠSep\":8621,\"olen\":8622,\"onder\":8623,\"Ġconsole\":8624,\"inst\":8625,\"Ġbom\":8626,\"Ġuncertain\":8627,\"150\":8628,\"ocking\":8629,\"Ġmeasured\":8630,\"Ġplain\":8631,\"Ġseats\":8632,\"Ġdict\":8633,\"SL\":8634,\"afe\":8635,\"Ġestimate\":8636,\"izon\":8637,\"athered\":8638,\"Ġcontributed\":8639,\"Ġepisodes\":8640,\"ommod\":8641,\"Gr\":8642,\"ANT\":8643,\"Ġ69\":8644,\"Gener\":8645,\"Ġ250\":8646,\"viously\":8647,\"rogen\":8648,\"Ġterrorism\":8649,\"Ġmovements\":8650,\"entle\":8651,\"ounce\":8652,\"ĠSoul\":8653,\"Ġprev\":8654,\"ĠTable\":8655,\"acts\":8656,\"riors\":8657,\"tab\":8658,\"Ġsuffer\":8659,\"Ġnerv\":8660,\"Ġmainstream\":8661,\"ĠWolf\":8662,\"Ġfranchise\":8663,\"bat\":8664,\"Ġdemands\":8665,\"Ġagenda\":8666,\"Ġdozen\":8667,\"Ġclinical\":8668,\"izard\":8669,\"ĠOp\":8670,\"td\":8671,\"Ġvisited\":8672,\"ĠPerhaps\":8673,\"Ġactor\":8674,\"Ġdelic\":8675,\"Ġcontribute\":8676,\"Ġinject\":8677,\"ĠEs\":8678,\"acco\":8679,\"Ġlistening\":8680,\"Ġcongress\":8681,\"ependent\":8682,\"Ġpremium\":8683,\"Ġ76\":8684,\"ĠIrish\":8685,\"Ġassigned\":8686,\"ĠPhys\":8687,\"Ġworldwide\":8688,\"Ġnarrative\":8689,\"otype\":8690,\"mont\":8691,\"base\":8692,\"ĠBowl\":8693,\"ĠAdministration\":8694,\"Ġrelation\":8695,\"ĠEV\":8696,\"CP\":8697,\"Ġcovers\":8698,\"Ġ78\":8699,\"Ġcertific\":8700,\"Ġgrass\":8701,\"Ġ04\":8702,\"piracy\":8703,\"ira\":8704,\"Ġengineering\":8705,\"ĠMars\":8706,\"Ġunemploy\":8707,\"ĠForeign\":8708,\"stract\":8709,\"Ġven\":8710,\"Ġsteal\":8711,\"Ġreplied\":8712,\"Ġultimate\":8713,\"Ġtitles\":8714,\"dated\":8715,\"Ġjoy\":8716,\"aus\":8717,\"Ġhyper\":8718,\"aku\":8719,\"Ġofficially\":8720,\"ĠProduct\":8721,\"Ġdifficulty\":8722,\"peror\":8723,\"Ġresulted\":8724,\"ribed\":8725,\"link\":8726,\"who\":8727,\"~~~~\":8728,\"ĠSpeed\":8729,\"ĠViet\":8730,\"Wind\":8731,\"ĠBarack\":8732,\"Ġrestrictions\":8733,\"ĠShare\":8734,\"Ġ1995\":8735,\"itionally\":8736,\"Ġbeauty\":8737,\"opt\":8738,\"Ġmaps\":8739,\"ĠCR\":8740,\"ĠNation\":8741,\"ĠCruz\":8742,\"Will\":8743,\"Ġelectricity\":8744,\"Ġorg\":8745,\"Ġburd\":8746,\"Ġviolation\":8747,\"Ġusage\":8748,\"Ġpermit\":8749,\"ĠChron\":8750,\"ĠFant\":8751,\"Ġnaturally\":8752,\"Ġ07\":8753,\"Ġthrown\":8754,\"ĠAwoken\":8755,\"Ġalien\":8756,\"ĠHero\":8757,\"ĠKent\":8758,\"ĠRick\":8759,\"rike\":8760,\"Ġpace\":8761,\"},{\\\"\":8762,\"GL\":8763,\"Ġpoison\":8764,\"ĠTower\":8765,\"Ġformal\":8766,\"alysis\":8767,\"Ġgenuine\":8768,\"Ġkil\":8769,\"aver\":8770,\"Ġprocedure\":8771,\"ĠProp\":8772,\"intendo\":8773,\"ĠMain\":8774,\"asant\":8775,\"Ġtrained\":8776,\"Game\":8777,\"ĠLoad\":8778,\"ĠMA\":8779,\"Ġcrucial\":8780,\"Ġlets\":8781,\"ĠFR\":8782,\"Ġchampion\":8783,\"101\":8784,\"ĠConference\":8785,\"Ġwriters\":8786,\"Ġconnections\":8787,\"Ġokay\":8788,\"irms\":8789,\"ĠRand\":8790,\"Ġencounter\":8791,\"ĠBuff\":8792,\"Ġachieved\":8793,\"Ġchecks\":8794,\"iscons\":8795,\"Ġassistant\":8796,\"Ġwhenever\":8797,\"ĠAccess\":8798,\"ĠUr\":8799,\"bin\":8800,\"Ġclock\":8801,\"isp\":8802,\"opher\":8803,\"Ġborrow\":8804,\"Ġmad\":8805,\"Ġpersonality\":8806,\"only\":8807,\"IST\":8808,\"abama\":8809,\"Ġgains\":8810,\"Ġcommonly\":8811,\"Ġterr\":8812,\"Ġhypot\":8813,\"Ġrely\":8814,\"Ġtiss\":8815,\"isconsin\":8816,\"Ġridic\":8817,\"function\":8818,\"ĠOregon\":8819,\"Ġuncom\":8820,\"rating\":8821,\"eland\":8822,\"ĠNC\":8823,\"Ġmoon\":8824,\"annon\":8825,\"Ġvulnerable\":8826,\"utive\":8827,\"ÂłÂłÂłÂł\":8828,\"ĠRadio\":8829,\"Ġwestern\":8830,\"sect\":8831,\"ĠTony\":8832,\"Ġoccurs\":8833,\"ĠOs\":8834,\"ĠHon\":8835,\"ÃŃ\":8836,\"Ġvessel\":8837,\"ĠScotland\":8838,\"Ġdiscrimination\":8839,\"Ġsubsequent\":8840,\"string\":8841,\"Ġfantasy\":8842,\"ĠShadow\":8843,\"Ġtestim\":8844,\"WE\":8845,\"iti\":8846,\"ras\":8847,\"Ġboat\":8848,\"Ġmarks\":8849,\"Ġordinary\":8850,\"Ġren\":8851,\"Ġrepresentative\":8852,\"Ġpetition\":8853,\"Ġ73\":8854,\"Ġadventure\":8855,\"Ġignore\":8856,\"ĠPhiladelphia\":8857,\"ĠSav\":8858,\"VP\":8859,\"Ġfactory\":8860,\"Ġtasks\":8861,\"Ġdepression\":8862,\"zed\":8863,\"................................\":8864,\"ĠStorm\":8865,\"Ġcogn\":8866,\"Ġeligible\":8867,\"Ġreducing\":8868,\"via\":8869,\"Ġ05\":8870,\"Ġstriking\":8871,\"Ġdollar\":8872,\"ho\":8873,\"OV\":8874,\"Ġinstrument\":8875,\"Ġphilosophy\":8876,\"ĠMoore\":8877,\"ĠAvenue\":8878,\"Ġruled\":8879,\"ĠFront\":8880,\"INE\":8881,\"ĠMah\":8882,\"Ġscenario\":8883,\"ĠNASA\":8884,\"Ġenorm\":8885,\"Ġdebut\":8886,\"Ġtea\":8887,\"Today\":8888,\"Ġabsence\":8889,\"Sim\":8890,\"Ġham\":8891,\"leep\":8892,\"Ġtables\":8893,\"ĠHeart\":8894,\"MI\":8895,\"Ke\":8896,\"requ\":8897,\"VD\":8898,\"map\":8899,\"Ġchairman\":8900,\"Ġpump\":8901,\"Ġrapidly\":8902,\"vi\":8903,\"Ġsubstantial\":8904,\"EP\":8905,\"des\":8906,\"chant\":8907,\"ilipp\":8908,\"ĠSanta\":8909,\"riers\":8910,\"anchester\":8911,\"Load\":8912,\"ĠCase\":8913,\"Ġsaving\":8914,\"Ġ74\":8915,\"ĠAFP\":8916,\"erning\":8917,\"ounced\":8918,\"ĠMinnesota\":8919,\"ĠWas\":8920,\"Ġrecru\":8921,\"Ġassessment\":8922,\"ĠBron\":8923,\"UE\":8924,\"Ġdynamic\":8925,\"Ġfurn\":8926,\"ulator\":8927,\"Ġpropag\":8928,\"high\":8929,\"Ġaccommod\":8930,\"Ġstack\":8931,\"ĠSus\":8932,\"writ\":8933,\"Ġreven\":8934,\"ĠGodd\":8935,\"ĠZealand\":8936,\"abs\":8937,\"Ġbrut\":8938,\"Ġperpet\":8939,\"hot\":8940,\"Ġhardly\":8941,\"ĠBurn\":8942,\"ãĤ¹\":8943,\"Ġsty\":8944,\"Ġtransactions\":8945,\"Ġgate\":8946,\"Ġscreens\":8947,\"Ġsubmitted\":8948,\"Ġ101\":8949,\"Ġlanguages\":8950,\"ught\":8951,\"emen\":8952,\"Ġfalls\":8953,\"Ġcoc\":8954,\"Ĥ¬\":8955,\"Ġstrikes\":8956,\"pa\":8957,\"Ġdeliber\":8958,\"ĠIM\":8959,\"Ġrelax\":8960,\"annels\":8961,\"ĠSenator\":8962,\"Ġextrem\":8963,\"Ġ},\":8964,\"ĠDeb\":8965,\"Ġbell\":8966,\"Ġdisorder\":8967,\"cut\":8968,\"ĠiOS\":8969,\"Ġlocked\":8970,\"Ġemissions\":8971,\"Ġshortly\":8972,\"\\\"]\":8973,\"ĠJudge\":8974,\"ĠSometimes\":8975,\"Ġrival\":8976,\"Ġdust\":8977,\"Ġreaching\":8978,\"File\":8979,\"Â¯Â¯Â¯Â¯\":8980,\"inois\":8981,\"ĠJason\":8982,\"Ġsatell\":8983,\"aret\":8984,\"Ġstations\":8985,\"Ġagric\":8986,\"ĠTechnology\":8987,\"comes\":8988,\"ĠUnfortunately\":8989,\"ĠChildren\":8990,\"Ġapplies\":8991,\"asted\":8992,\"Ġanger\":8993,\"ailability\":8994,\"ĠDamage\":8995,\"Ġcompare\":8996,\"ĠStandard\":8997,\"Ġaimed\":8998,\"ĠBa\":8999,\"anguage\":9000,\"Ġregulation\":9001,\"Ġjury\":9002,\"Ġairport\":9003,\"Ġsections\":9004,\"ĠPrince\":9005,\"emed\":9006,\"Ġmedicine\":9007,\"Ġhitting\":9008,\"Ġspark\":9009,\"olves\":9010,\"Ġads\":9011,\"State\":9012,\"Ġfoods\":9013,\"Ġreplacement\":9014,\"Ġchicken\":9015,\"Ġlowest\":9016,\"Ġminds\":9017,\"Ġinvolves\":9018,\"ui\":9019,\"Ġarrang\":9020,\"Ġprocedures\":9021,\"ĠWhich\":9022,\"iversary\":9023,\"Ġbills\":9024,\"Ġimprovement\":9025,\"Ġinev\":9026,\"Ġexpectations\":9027,\"Ġintellectual\":9028,\"Ġspaces\":9029,\"Ġmechanism\":9030,\"250\":9031,\"break\":9032,\"ĠZe\":9033,\"ĠTenn\":9034,\"ĠBalt\":9035,\"Ġbarrel\":9036,\"Ġstatic\":9037,\"mann\":9038,\"Police\":9039,\"Ġtips\":9040,\"Ġhandling\":9041,\"cus\":9042,\"oded\":9043,\"ilton\":9044,\"iry\":9045,\"Ġjournalists\":9046,\"ourse\":9047,\"Ġcomic\":9048,\"Ġnomine\":9049,\"ITY\":9050,\"Ġversus\":9051,\"Ġloop\":9052,\"Ġsurf\":9053,\"ĠIndust\":9054,\"ĠHunter\":9055,\"Ġbeliefs\":9056,\"isan\":9057,\"Ġsetup\":9058,\"Ġbrew\":9059,\"image\":9060,\"Ġcomputers\":9061,\"fol\":9062,\"},\\\"\":9063,\"ĠMedal\":9064,\"Ġtaxp\":9065,\"Ġdisplayed\":9066,\"Ġgrav\":9067,\"Ġfiscal\":9068,\"Mon\":9069,\"ĠMoscow\":9070,\"ĠKong\":9071,\"ĠCentre\":9072,\"Ġcameras\":9073,\"ĠMrs\":9074,\"ĠHay\":9075,\"Ġaver\":9076,\"ĠKelly\":9077,\"py\":9078,\"Ġrequirement\":9079,\"Ġentitled\":9080,\"ombie\":9081,\"Ġshadow\":9082,\"agic\":9083,\"ĠAk\":9084,\"Ġelite\":9085,\"Ġdivided\":9086,\"Ġheading\":9087,\"Ġcopies\":9088,\"Ġlosses\":9089,\"Ġvit\":9090,\"ked\":9091,\"ĠBry\":9092,\"Ġans\":9093,\"ĠSteam\":9094,\"Ġreporter\":9095,\"heim\":9096,\"ĠItem\":9097,\"Ġsuperior\":9098,\"don\":9099,\"erent\":9100,\"Ã¶\":9101,\"Ġtherapy\":9102,\"Ġpeak\":9103,\"ĠModel\":9104,\"Ġlying\":9105,\"Ġgam\":9106,\"zer\":9107,\"ritten\":9108,\"Ġresponses\":9109,\"Ġconsideration\":9110,\"ĠBible\":9111,\"Ġloyal\":9112,\"Ġinstant\":9113,\"Ġpm\":9114,\"ĠForest\":9115,\"Ã¼\":9116,\"Ġextend\":9117,\"Ġconvicted\":9118,\"Ġfounder\":9119,\"Ġconvin\":9120,\"ĠOak\":9121,\"check\":9122,\"Ġscholars\":9123,\"ped\":9124,\"Ġoverse\":9125,\"Top\":9126,\"count\":9127,\"ĠArk\":9128,\"Â·\":9129,\"Ġ06\":9130,\"ĠLA\":9131,\"md\":9132,\"ĠLatin\":9133,\"imental\":9134,\"ĠCPU\":9135,\"Ġsubstance\":9136,\"Ġminority\":9137,\"Ġmanufacturing\":9138,\"Er\":9139,\"ocolate\":9140,\"Ġattended\":9141,\"ĠManager\":9142,\"rations\":9143,\"Ġappreciate\":9144,\"omy\":9145,\"GBT\":9146,\"idency\":9147,\"BL\":9148,\"Ġguarantee\":9149,\"position\":9150,\"Ġocean\":9151,\"clude\":9152,\"Ġheaded\":9153,\"Ġtape\":9154,\"Ġloose\":9155,\"Ġlogic\":9156,\"Ġproven\":9157,\"Ġspir\":9158,\"Ġadmit\":9159,\"isa\":9160,\"Ġinvestigate\":9161,\"Ġ1994\":9162,\"sylv\":9163,\"ĠLost\":9164,\"cest\":9165,\"Ġ71\":9166,\"Ġrequested\":9167,\"Ġwindows\":9168,\"ĠPokÃ©\":9169,\"ĠWithout\":9170,\"Met\":9171,\"Ġbehaviour\":9172,\"Ġreader\":9173,\"Ġhung\":9174,\"ĠKeep\":9175,\"Ġroles\":9176,\"Ġimplemented\":9177,\"Ġblank\":9178,\"Ġserves\":9179,\"ĠJay\":9180,\"Ġcited\":9181,\"ĠFriend\":9182,\"profit\":9183,\"apon\":9184,\"Ġrepair\":9185,\"item\":9186,\"arrass\":9187,\"Ġcritics\":9188,\"adi\":9189,\"ĠFather\":9190,\"Ġshout\":9191,\"Ġfool\":9192,\"Ġ88\":9193,\"Ġproducing\":9194,\"Ġlib\":9195,\"Ġrounds\":9196,\"Ġcircle\":9197,\"Ġprepar\":9198,\"Ġsubmit\":9199,\"Ġnic\":9200,\"morrow\":9201,\"ãĥ«\":9202,\"Under\":9203,\"Ġvital\":9204,\"atern\":9205,\"Ġpassword\":9206,\"Ġpublication\":9207,\"Ġprominent\":9208,\"Ġspeaks\":9209,\"Ġbars\":9210,\"Ġdeeper\":9211,\"ĠMill\":9212,\"ported\":9213,\"Ġwid\":9214,\"Ġbutter\":9215,\"Ġsmoking\":9216,\"Ġindicates\":9217,\"Key\":9218,\"ropri\":9219,\"ĠFile\":9220,\"alling\":9221,\"asting\":9222,\"ĠRus\":9223,\"Ġadj\":9224,\"Ġ79\":9225,\"aval\":9226,\"Ġpresum\":9227,\"burgh\":9228,\"onic\":9229,\"Ġfur\":9230,\"Ġpolls\":9231,\"ika\":9232,\"Ġsecondary\":9233,\"Ġmonster\":9234,\"igs\":9235,\"ĠCurrent\":9236,\"Event\":9237,\"Ġownership\":9238,\"endar\":9239,\"Ġarrive\":9240,\"ĠTax\":9241,\"Ġnull\":9242,\"ĠPriv\":9243,\"Ġthro\":9244,\"Ġkiss\":9245,\"cat\":9246,\"Ġupset\":9247,\"angle\":9248,\"itches\":9249,\"ector\":9250,\"ologists\":9251,\"ĠGalaxy\":9252,\"Ġcorruption\":9253,\"Ġhint\":9254,\"enter\":9255,\"ĠHospital\":9256,\"Ġgreatly\":9257,\"Ġbegun\":9258,\"esy\":9259,\"Ġsoil\":9260,\"ĠAnton\":9261,\"Ġmaintenance\":9262,\"ãĥ©\":9263,\"Ġdozens\":9264,\"Ġhumanity\":9265,\"ĠAlabama\":9266,\"Ġrom\":9267,\"worth\":9268,\"aping\":9269,\"sylvania\":9270,\"lah\":9271,\"Ġgathered\":9272,\"GA\":9273,\"Ġattacking\":9274,\"found\":9275,\"ĠSquare\":9276,\"Ġarbit\":9277,\"ictions\":9278,\"ĠWisconsin\":9279,\"Ġdance\":9280,\"ĠSaint\":9281,\"archy\":9282,\"Ġbaseball\":9283,\"Ġcontributions\":9284,\"Ġliterature\":9285,\"Ġexha\":9286,\"perty\":9287,\"test\":9288,\"Ġbab\":9289,\"Ġcontainer\":9290,\"letter\":9291,\"Ġfallen\":9292,\"Ġwebsites\":9293,\"Ġbottle\":9294,\"ĠSac\":9295,\"Ġbreast\":9296,\"ĠPL\":9297,\"Ġveteran\":9298,\"Ġinterviews\":9299,\"ĠAle\":9300,\"Ġbanned\":9301,\"engers\":9302,\"ĠRevolution\":9303,\"inth\":9304,\"Ġconcerning\":9305,\"IVE\":9306,\"Ġexpenses\":9307,\"ĠMatthew\":9308,\"ĠColumbia\":9309,\"ds\":9310,\"istance\":9311,\"Ġentity\":9312,\"...\\\"\":9313,\"Ġreliable\":9314,\"Ġparalle\":9315,\"ĠChristians\":9316,\"Ġopinions\":9317,\"Ġindu\":9318,\"low\":9319,\"Ġcompete\":9320,\"Ġthorough\":9321,\"Ġemployed\":9322,\"Ġestablishment\":9323,\"igen\":9324,\"ĠCro\":9325,\"Ġlawyers\":9326,\"ĠStation\":9327,\"TE\":9328,\"ĠLind\":9329,\"ĠPur\":9330,\"itary\":9331,\"Ġefficiency\":9332,\"âĢĲ\":9333,\"ĠLy\":9334,\"Ġmask\":9335,\"Ġdisaster\":9336,\"Ġages\":9337,\"ERE\":9338,\"esis\":9339,\"ĠHold\":9340,\"Ġcasual\":9341,\"bled\":9342,\"Ġenabled\":9343,\"ĠEnvironment\":9344,\"ĠIntelligence\":9345,\"iper\":9346,\"ĠMap\":9347,\"ĠBE\":9348,\"Ġemerged\":9349,\"isdom\":9350,\"Ġcabin\":9351,\"Ġregistration\":9352,\"Ġfingers\":9353,\"Ġroster\":9354,\"Ġframework\":9355,\"ĠDoctor\":9356,\"etts\":9357,\"Ġtransportation\":9358,\"Ġawareness\":9359,\"Her\":9360,\"Ġattempting\":9361,\"Off\":9362,\"ĠStore\":9363,\"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ\":9364,\"ĠKnow\":9365,\"Ġdefence\":9366,\"Ġscan\":9367,\"ĠTen\":9368,\"ĠChair\":9369,\"ĠPH\":9370,\"ĠAtlanta\":9371,\"Ġfucking\":9372,\"Ġanswered\":9373,\"bn\":9374,\"ĠKar\":9375,\"Ġcategories\":9376,\"Ġrational\":9377,\"Ġcust\":9378,\"Ġrobot\":9379,\"Ġcorrectly\":9380,\"Ġgif\":9381,\"Ġgraphics\":9382,\"mic\":9383,\"Ġgrounds\":9384,\"ĠOpp\":9385,\"iate\":9386,\"Ġdistributed\":9387,\"Ġsanctions\":9388,\"Ġchallenging\":9389,\"uto\":9390,\"Ġingredients\":9391,\"Ġinvited\":9392,\"Ġfounded\":9393,\"ĠRequ\":9394,\"ded\":9395,\"Ġbowl\":9396,\"Ġbrothers\":9397,\"ĠHa\":9398,\"IO\":9399,\"Ġwages\":9400,\"imore\":9401,\"ocial\":9402,\"Ġseed\":9403,\"atively\":9404,\"Ġaddresses\":9405,\"ĠIowa\":9406,\"abeth\":9407,\"Ġattitude\":9408,\"isd\":9409,\"child\":9410,\"Ġmole\":9411,\"Ġdiscovery\":9412,\"yard\":9413,\"Br\":9414,\"Ġ82\":9415,\"Ġsupplies\":9416,\"elling\":9417,\"Ġdistingu\":9418,\"CR\":9419,\"Ġrecept\":9420,\"Ġvert\":9421,\"Ġswim\":9422,\"bec\":9423,\"door\":9424,\"ĠYeah\":9425,\"Ġgal\":9426,\"Ġinteract\":9427,\"ĠESP\":9428,\"ĠCS\":9429,\"amps\":9430,\"Ġconvinced\":9431,\"Ġobjective\":9432,\"Ġdish\":9433,\"ĠPhotos\":9434,\"lad\":9435,\"Ġdowntown\":9436,\"oil\":9437,\"inction\":9438,\"Ġtomorrow\":9439,\"ĠCOM\":9440,\"Ġsurvival\":9441,\"shot\":9442,\"Ġsettlement\":9443,\"Cons\":9444,\"ĠXbox\":9445,\"interest\":9446,\"ĠSM\":9447,\"argo\":9448,\"eness\":9449,\"Ġethnic\":9450,\"bered\":9451,\"Min\":9452,\"ĠTok\":9453,\"Ġincent\":9454,\"ĠCommand\":9455,\"Ġmaintained\":9456,\"Ġbreaks\":9457,\"bridge\":9458,\"atar\":9459,\"agg\":9460,\"ĠFinally\":9461,\"unicip\":9462,\"ĠOnt\":9463,\"left\":9464,\"Ġrecognition\":9465,\"Ġ*/\":9466,\"ĠPers\":9467,\"Ġwelf\":9468,\"Ġaddressed\":9469,\"ĠKansas\":9470,\"Ġvirus\":9471,\"Ġwhereas\":9472,\"Ġpapers\":9473,\"rams\":9474,\"ĠMinistry\":9475,\"Ġpleasure\":9476,\"Ġacquired\":9477,\"Ġduration\":9478,\"jpg\":9479,\"Ġcalm\":9480,\"ĠNHL\":9481,\"Ġburning\":9482,\"Ġfolder\":9483,\"icked\":9484,\"ĠPy\":9485,\"ĠIllinois\":9486,\"Class\":9487,\"ĠGoddess\":9488,\"Ġperforming\":9489,\"Ġwelfare\":9490,\"jar\":9491,\"Inter\":9492,\"Ġlin\":9493,\"Ġenhance\":9494,\"Ġnotion\":9495,\"fare\":9496,\"ypes\":9497,\"ĠArea\":9498,\"Ġcannabis\":9499,\"ĠDiego\":9500,\"fs\":9501,\"ĠManchester\":9502,\"comm\":9503,\"inite\":9504,\"Ġcovering\":9505,\"ĠSound\":9506,\"Ġ1960\":9507,\"Ġ84\":9508,\"elect\":9509,\"zing\":9510,\"Ġcitizen\":9511,\"Ġphones\":9512,\"Ġraid\":9513,\"Ġignored\":9514,\"ĠObject\":9515,\"Ġupload\":9516,\"card\":9517,\"Ġmodified\":9518,\"Ġrooms\":9519,\"iah\":9520,\"range\":9521,\"heast\":9522,\"achus\":9523,\"Ġsuggesting\":9524,\"âĢĭ\":9525,\"grade\":9526,\"El\":9527,\"Ġclothing\":9528,\"Ġrh\":9529,\"ĠHan\":9530,\"unity\":9531,\"encing\":9532,\"ĠAustin\":9533,\"secution\":9534,\"tra\":9535,\"dem\":9536,\"ĠQual\":9537,\"Ġheaven\":9538,\"Ġstages\":9539,\"Ġwedd\":9540,\"plus\":9541,\"ificial\":9542,\"ĠImm\":9543,\"ĠHo\":9544,\"ieties\":9545,\"Ġphrase\":9546,\"Ġbrill\":9547,\"actory\":9548,\"Ġproviders\":9549,\"Ġsilence\":9550,\"Ġaer\":9551,\"ĠAI\":9552,\"ĠAdventure\":9553,\"Ġplatforms\":9554,\"Ġdemonstrated\":9555,\"Ġinterf\":9556,\"ington\":9557,\"Ġraces\":9558,\"Ġgrade\":9559,\"ultane\":9560,\"ĠThrough\":9561,\"false\":9562,\"Ġbow\":9563,\"ĠAB\":9564,\"Ġflavor\":9565,\"Ġhistoric\":9566,\"gov\":9567,\"Ġcolour\":9568,\"Ġviewed\":9569,\"ĠEmail\":9570,\"elcome\":9571,\"Ġintervention\":9572,\"Ġdiversity\":9573,\"Ġperiods\":9574,\"Ġreverse\":9575,\"ĠVery\":9576,\"Ġquote\":9577,\"ĠLeft\":9578,\"through\":9579,\"Ġscrew\":9580,\"Ġlanding\":9581,\"Ġpill\":9582,\"Ġwet\":9583,\"Ġprotesters\":9584,\"Ġrepeat\":9585,\"aved\":9586,\"erk\":9587,\"Ġsalary\":9588,\"ĠPennsylvania\":9589,\"Still\":9590,\"Ġmayor\":9591,\"Ġkitchen\":9592,\"Ġfeaturing\":9593,\"ĠMuseum\":9594,\"ĠTournament\":9595,\"ĠFal\":9596,\"Ġservers\":9597,\"UC\":9598,\"Ġanybody\":9599,\"img\":9600,\"ĠTrade\":9601,\"ixture\":9602,\"theless\":9603,\"Ġfinance\":9604,\"Ġclosing\":9605,\"ĠPatri\":9606,\"iac\":9607,\"abel\":9608,\"Ġ>>\":9609,\"orous\":9610,\"Ġfirms\":9611,\"screen\":9612,\"una\":9613,\"Ġembarrass\":9614,\"ulse\":9615,\"Ġletting\":9616,\"Ġthrew\":9617,\"iley\":9618,\"Ġchannels\":9619,\"lan\":9620,\"ĠVegas\":9621,\"Ġsear\":9622,\"Ġfantastic\":9623,\"arre\":9624,\"uzzle\":9625,\"ĠDer\":9626,\"Those\":9627,\"Ġswing\":9628,\"Ġsheet\":9629,\"index\":9630,\"cover\":9631,\"ogan\":9632,\"Ġvariables\":9633,\"ĠTech\":9634,\"Ġspoken\":9635,\"achel\":9636,\"ĠDa\":9637,\"ĠMountain\":9638,\"Ġloaded\":9639,\"Ġfootage\":9640,\"version\":9641,\"Ġunl\":9642,\"ĠPhoenix\":9643,\"Ġthrowing\":9644,\"Ġfiring\":9645,\"Ġtracking\":9646,\"Ġwidth\":9647,\"Ġstruggling\":9648,\"rooms\":9649,\"otion\":9650,\"Ġmonthly\":9651,\"ĠServer\":9652,\"Ġeggs\":9653,\"open\":9654,\"MC\":9655,\"Ġ1993\":9656,\"Ġhired\":9657,\"Ġstayed\":9658,\"ĠAllen\":9659,\"Ġstro\":9660,\"Ġ98\":9661,\"step\":9662,\"ĠTurkish\":9663,\"Ġfabric\":9664,\"isting\":9665,\"ĠDom\":9666,\"Ġdates\":9667,\"Ġpron\":9668,\"Ġbasketball\":9669,\"Ġlucky\":9670,\"ĠArabia\":9671,\"Ġassumed\":9672,\"esty\":9673,\"Ġaffairs\":9674,\"Ġglad\":9675,\"ĠIndeed\":9676,\"ĠFA\":9677,\"ĠWord\":9678,\"Ġjoining\":9679,\"ifice\":9680,\"pread\":9681,\"irts\":9682,\"ĠSelect\":9683,\"Ġpopulations\":9684,\"aware\":9685,\"Ġnose\":9686,\"Ġcomplaints\":9687,\"start\":9688,\"Ġscoring\":9689,\"Thanks\":9690,\"Ġmining\":9691,\"Ġvisitors\":9692,\"SH\":9693,\"Ġdamaged\":9694,\"Ġcharacteristics\":9695,\"ĠPent\":9696,\"DC\":9697,\"Ġ83\":9698,\"ĠSix\":9699,\"rates\":9700,\"Ġflags\":9701,\"ĠBrew\":9702,\"dog\":9703,\"Mark\":9704,\"////\":9705,\"Ġexecution\":9706,\"Ġjoke\":9707,\"phones\":9708,\"Ġtestimony\":9709,\"Ġobst\":9710,\"QL\":9711,\"ĠCut\":9712,\"Ġstudied\":9713,\"ĠNintendo\":9714,\"icket\":9715,\"ĠNBC\":9716,\"Ġlad\":9717,\"ĠBra\":9718,\"ĠMoh\":9719,\"Ġkernel\":9720,\"Ġoverwhelming\":9721,\"Ġaged\":9722,\"Ġapplicable\":9723,\"ĠCond\":9724,\"Ġroads\":9725,\"ĠBlock\":9726,\"made\":9727,\"odge\":9728,\"Ġcommands\":9729,\"Ġoffices\":9730,\"veland\":9731,\"Ġtut\":9732,\"Ġreceiver\":9733,\"ĠFro\":9734,\"Ġshopping\":9735,\"ĠiP\":9736,\"ĠStre\":9737,\"ĠABC\":9738,\"Ġentertainment\":9739,\"ĠBow\":9740,\"orted\":9741,\"Mc\":9742,\"Ġreads\":9743,\"grad\":9744,\"ĠCollect\":9745,\"ĠâĪĴ\":9746,\"ĠCapital\":9747,\"ederation\":9748,\"Ġemployer\":9749,\"Ġinvolvement\":9750,\"Ġanxiety\":9751,\"alia\":9752,\"Ġroof\":9753,\"ĠAmong\":9754,\"ĠDemocrat\":9755,\"Ġstats\":9756,\"ĠVill\":9757,\"Ġconstitutional\":9758,\"Ġreferring\":9759,\"itty\":9760,\"Ġtackle\":9761,\"outube\":9762,\"Ġbacked\":9763,\"ĠHong\":9764,\"ĠBroad\":9765,\"Ġele\":9766,\"ĠOtt\":9767,\"Ġ1992\":9768,\"hour\":9769,\"achusetts\":9770,\"Cal\":9771,\"Ġdefeated\":9772,\"Ġ81\":9773,\"esp\":9774,\"Ġseemingly\":9775,\"was\":9776,\"ĠJenn\":9777,\"ĠKurd\":9778,\"Ġgene\":9779,\"Ġdiscount\":9780,\"Ret\":9781,\"ECT\":9782,\"();\":9783,\"Ġclubs\":9784,\"Ġsid\":9785,\"ĠMarsh\":9786,\"Check\":9787,\"Ġpp\":9788,\"ĠEag\":9789,\"idespread\":9790,\"Ġbeings\":9791,\"FT\":9792,\"Ġintroduction\":9793,\"ĠChange\":9794,\"ARD\":9795,\"Ġ110\":9796,\"adows\":9797,\"ierce\":9798,\"Ġmeal\":9799,\"author\":9800,\"ĠBang\":9801,\"lahoma\":9802,\"Ġranks\":9803,\"2011\":9804,\"????\":9805,\"max\":9806,\"Ġcollapse\":9807,\"Ġopens\":9808,\"Ġecho\":9809,\"Ġsoph\":9810,\"Ġracist\":9811,\"Ġenormous\":9812,\"Ġwaves\":9813,\"Ġtap\":9814,\"Ġcomprehensive\":9815,\".--\":9816,\"ĠRoy\":9817,\"Ġfarmers\":9818,\"Related\":9819,\"aired\":9820,\"rones\":9821,\"ĠCrim\":9822,\"Ġproportion\":9823,\"Ġdesigns\":9824,\"Ġnegotiations\":9825,\"Ġvirtually\":9826,\"ĠBatman\":9827,\"Ġwarn\":9828,\"Ġlegitimate\":9829,\"mate\":9830,\"Ġconvention\":9831,\",,\":9832,\"netic\":9833,\"ĠSD\":9834,\"Ġconsistently\":9835,\"Ġcompensation\":9836,\"Ġpunishment\":9837,\"Ġye\":9838,\"Ġtie\":9839,\"ĠBureau\":9840,\"irlf\":9841,\"ĠBu\":9842,\"ĠAren\":9843,\"ĠPhilipp\":9844,\"Ġknife\":9845,\"Ġmemories\":9846,\"ĠRoss\":9847,\"Ġangle\":9848,\"Ġ86\":9849,\"ĠThunder\":9850,\"Ġrend\":9851,\"ĠTour\":9852,\"Ġcounts\":9853,\"sung\":9854,\"ĠImp\":9855,\"Ġeducational\":9856,\"Ġaccessible\":9857,\"COM\":9858,\"Ġdrew\":9859,\"yer\":9860,\"Gl\":9861,\"amine\":9862,\"ORT\":9863,\"OB\":9864,\"IB\":9865,\"master\":9866,\"Ġtrials\":9867,\"ogy\":9868,\"har\":9869,\"ĠTrust\":9870,\"Ġpreferred\":9871,\"irlfriend\":9872,\"ĠNev\":9873,\"Ġbin\":9874,\"Ġcow\":9875,\"Page\":9876,\"Ġsignature\":9877,\"ĠBL\":9878,\"700\":9879,\"Ġretired\":9880,\"Ġbytes\":9881,\"Ġneighb\":9882,\"ĠLegend\":9883,\"Ġdevast\":9884,\"Ġsuspected\":9885,\"isons\":9886,\"ĠPokÃ©mon\":9887,\"scale\":9888,\"Ġcapabilities\":9889,\"Ġrevel\":9890,\"Ġcheese\":9891,\"dy\":9892,\"igrant\":9893,\"Ġfailing\":9894,\"bits\":9895,\"ĠHeroes\":9896,\"ĠGhost\":9897,\"ĠScient\":9898,\"Ġappointed\":9899,\"uri\":9900,\"Ġinstitution\":9901,\"Ġexpanded\":9902,\"greg\":9903,\"Ġmonitoring\":9904,\"Ġpodcast\":9905,\"Ġcoalition\":9906,\"Ġ96\":9907,\"Jo\":9908,\"Ġstolen\":9909,\"ĠSab\":9910,\"Ġstops\":9911,\"Ġholiday\":9912,\"Ġintr\":9913,\"Car\":9914,\"Black\":9915,\"ĠLGBT\":9916,\"Ġwarming\":9917,\"ĠAnderson\":9918,\"Ġ89\":9919,\"Ġproducer\":9920,\"Med\":9921,\"Ġaccuracy\":9922,\"ĠMarvel\":9923,\"izabeth\":9924,\"ĠPatrick\":9925,\"mony\":9926,\"Ġmini\":9927,\"acles\":9928,\"Ġovert\":9929,\"they\":9930,\"Ġmembership\":9931,\"ĠVen\":9932,\"Ġexch\":9933,\"Ġremoval\":9934,\"ĠDave\":9935,\"TY\":9936,\"mad\":9937,\"ĠFind\":9938,\"Ġadequ\":9939,\"Ġec\":9940,\"Ġteeth\":9941,\"Ġemotion\":9942,\"Ġperm\":9943,\"Ġsolely\":9944,\"db\":9945,\"Ġextraord\":9946,\"IGHT\":9947,\"cal\":9948,\"Ġguidelines\":9949,\"Ġdying\":9950,\"Ġsuspended\":9951,\"ĠPremier\":9952,\"ĠAnthony\":9953,\"elve\":9954,\"Ġdad\":9955,\"ĠEth\":9956,\"ĠFootball\":9957,\"Ġabandoned\":9958,\"Ġ<<\":9959,\"Ġmarch\":9960,\"Ġhorror\":9961,\"âĢ¦\\\"\":9962,\"Ġchildhood\":9963,\"Ġcampaigns\":9964,\"Ġlunch\":9965,\"ĠAlbert\":9966,\"block\":9967,\"âĸĪâĸĪ\":9968,\"ounding\":9969,\"Ġbone\":9970,\"organ\":9971,\"aders\":9972,\"ĠFlash\":9973,\"ĠDrive\":9974,\"Ġtonight\":9975,\"Ġwars\":9976,\"ĠFL\":9977,\"Ġformation\":9978,\"const\":9979,\"News\":9980,\"Ġcompe\":9981,\"orious\":9982,\"ĠStaff\":9983,\"Ġdiscussions\":9984,\"ĠProtection\":9985,\"ĠJam\":9986,\"Ġcriteria\":9987,\"Ġinstallation\":9988,\"Ġaccomplish\":9989,\"izza\":9990,\"Ġpublisher\":9991,\"Ġrescue\":9992,\"ĠTry\":9993,\"ULL\":9994,\"ĠSom\":9995,\"ĠHop\":9996,\"oret\":9997,\"ths\":9998,\"ordon\":9999,\"Ġpocket\":10000,\"ĠInv\":10001,\"Download\":10002,\"ĠCrime\":10003,\"Ġbene\":10004,\"ĠGuide\":10005,\"ĠAssembly\":10006,\"Ġparameters\":10007,\"IE\":10008,\"ĠAlexander\":10009,\"Ġconcert\":10010,\"ĠSche\":10011,\"Ġshoes\":10012,\"Ġvisiting\":10013,\"Ġrecall\":10014,\"Ġbub\":10015,\"Ġrural\":10016,\"Ġconcrete\":10017,\"ĠRos\":10018,\"Next\":10019,\"Russ\":10020,\"Ġloans\":10021,\"ĠShield\":10022,\"Ġtrem\":10023,\"hemat\":10024,\"kg\":10025,\"ĠHarris\":10026,\"isition\":10027,\"ĠMove\":10028,\"ĠFC\":10029,\"Ġfate\":10030,\"ĠCho\":10031,\"Ġtired\":10032,\"Ġprincipal\":10033,\"hist\":10034,\"iences\":10035,\"athy\":10036,\"Ġsevent\":10037,\"Ġmood\":10038,\"Ġstrategic\":10039,\"Ġdiseases\":10040,\"Ġforum\":10041,\"Ġtempor\":10042,\"Ġheadquarters\":10043,\"Par\":10044,\"ige\":10045,\"flix\":10046,\"Ġguitar\":10047,\"Ġ94\":10048,\"Only\":10049,\"Ġreleases\":10050,\"roph\":10051,\"================================\":10052,\"Ġ600\":10053,\"ĠContinue\":10054,\"igate\":10055,\"ĠCrit\":10056,\"system\":10057,\"Ġdisabled\":10058,\"Ġunexpected\":10059,\"ithub\":10060,\"Ġunclear\":10061,\"ĠEst\":10062,\"Ġcontrad\":10063,\"Ġstrategies\":10064,\"ventures\":10065,\"Ġpassage\":10066,\"AME\":10067,\"Ġimproving\":10068,\"Ġreveals\":10069,\"Ġdecrease\":10070,\"ova\":10071,\"Ġannoy\":10072,\"ĠShort\":10073,\"ĠLibrary\":10074,\"Ġcyber\":10075,\"nell\":10076,\"ĠHur\":10077,\"ĠCB\":10078,\"Ġphotograp\":10079,\"UI\":10080,\"Ġsed\":10081,\"Ge\":10082,\"Ġ87\":10083,\"Ġdiverse\":10084,\"Ġencouraged\":10085,\"Ġconspiracy\":10086,\"Ġbirds\":10087,\"Ġoperator\":10088,\"Ġhandful\":10089,\"Ġclassified\":10090,\"?)\":10091,\"Ġdramatic\":10092,\"Ġinvestigators\":10093,\"ito\":10094,\"Ġwidespread\":10095,\"ĠRoom\":10096,\"----------------------------------------------------------------\":10097,\"Ġcollective\":10098,\"Ġjournalist\":10099,\"String\":10100,\"Ġtemperatures\":10101,\"ila\":10102,\"Ġguid\":10103,\"Ġinspect\":10104,\"Ġmissile\":10105,\"ĠMayor\":10106,\"Ġmanual\":10107,\"Ġsimultane\":10108,\"Ġratings\":10109,\"Ġsuck\":10110,\"Ġ97\":10111,\"Ġuniversal\":10112,\"Ġpharm\":10113,\"Ġdisrupt\":10114,\"iano\":10115,\"AV\":10116,\"Ġft\":10117,\"Ġstatist\":10118,\"olds\":10119,\"ĠWalker\":10120,\"php\":10121,\"Ġundert\":10122,\"ĠLas\":10123,\"ishop\":10124,\"ntil\":10125,\"reshold\":10126,\"ĠWhether\":10127,\"Ms\":10128,\"Ġdeny\":10129,\"ĠCloud\":10130,\"Ġprovider\":10131,\"Ġsurviv\":10132,\"ĠUpdate\":10133,\"has\":10134,\"Ġmistakes\":10135,\"charge\":10136,\"pled\":10137,\"rity\":10138,\"Ġnode\":10139,\"ĠMassachusetts\":10140,\"ools\":10141,\"lication\":10142,\"Ġfails\":10143,\"emale\":10144,\"ori\":10145,\"backs\":10146,\"Ġshirt\":10147,\"Ġ''\":10148,\"ĠNAT\":10149,\"Ġwaters\":10150,\"elson\":10151,\"Ġease\":10152,\"Ġscar\":10153,\"Ġcontents\":10154,\"mind\":10155,\"Ġcontribution\":10156,\"Ġshr\":10157,\"Ġhanded\":10158,\"Ġstability\":10159,\"Ġtrave\":10160,\"Em\":10161,\"Ġmirror\":10162,\"123\":10163,\"Ġweigh\":10164,\"Ġfiction\":10165,\"ouver\":10166,\"istant\":10167,\"rition\":10168,\"ĠFed\":10169,\"Ġphysically\":10170,\"Ġstake\":10171,\"ĠArticle\":10172,\"ĠArc\":10173,\"ĠLewis\":10174,\"ĠMind\":10175,\"Ġdemonstrate\":10176,\"Ġprofits\":10177,\"vision\":10178,\"omic\":10179,\"olid\":10180,\"Ġbattles\":10181,\"Ġdrives\":10182,\"Ġeastern\":10183,\"ĠSony\":10184,\"!!!\":10185,\"aration\":10186,\"vard\":10187,\"ĠGL\":10188,\"portation\":10189,\"Ġ92\":10190,\"Ġlawmakers\":10191,\"Ġprotecting\":10192,\"ĠEPA\":10193,\"Ġyeah\":10194,\"Ġshame\":10195,\"olph\":10196,\"even\":10197,\"xit\":10198,\"Ġattach\":10199,\"Ġrepresenting\":10200,\"Ġobs\":10201,\"ĠUtah\":10202,\"iffs\":10203,\"ĠFreedom\":10204,\"Ã³\":10205,\"AK\":10206,\"Ġincidents\":10207,\"itage\":10208,\"Ġviewers\":10209,\"cd\":10210,\"Ġmouse\":10211,\"Ġclar\":10212,\"Ġaccordance\":10213,\"Ġbot\":10214,\"cor\":10215,\"ĠSummer\":10216,\"held\":10217,\"Ġinnocent\":10218,\"Ġinitiative\":10219,\"ols\":10220,\"________________________________\":10221,\"Ġspots\":10222,\"pace\":10223,\"Ġconventional\":10224,\"Ġcorporations\":10225,\"Ġblocked\":10226,\"HD\":10227,\"attered\":10228,\"Ġrefers\":10229,\"Ġbuck\":10230,\"ĠDigital\":10231,\"120\":10232,\"Ġtopics\":10233,\"TF\":10234,\"Äģ\":10235,\"brid\":10236,\"reement\":10237,\"Ġunderlying\":10238,\"ĠMember\":10239,\"Ġinvestigating\":10240,\"Ġpregnancy\":10241,\"Ġtouchdown\":10242,\"ĠBand\":10243,\"ĠCaller\":10244,\"Ġinstances\":10245,\"PP\":10246,\"wa\":10247,\"Good\":10248,\"Ġ1991\":10249,\"ĠCold\":10250,\"Ġfears\":10251,\"Ġremarks\":10252,\"ĨĴ\":10253,\"atal\":10254,\"Ġmit\":10255,\"Ġexperiments\":10256,\"ipt\":10257,\"Color\":10258,\"indu\":10259,\"Update\":10260,\"Ġ93\":10261,\"Ag\":10262,\"Ġå\":10263,\"ancouver\":10264,\"Both\":10265,\"Ġjudges\":10266,\"Object\":10267,\"Ġstere\":10268,\"umbn\":10269,\"Ġparticipation\":10270,\"ĠStars\":10271,\"ĠJere\":10272,\"Ġweekly\":10273,\"ĠBan\":10274,\"Ġconversations\":10275,\"ĠPitt\":10276,\"uz\":10277,\"ĠIndiana\":10278,\"ĠKick\":10279,\"Ġinfection\":10280,\"Ġheroes\":10281,\"Ġsettled\":10282,\"Ġstrip\":10283,\"Ġhal\":10284,\"Ġdump\":10285,\"ĠSci\":10286,\"Ġles\":10287,\"Ġreferences\":10288,\"ĠURL\":10289,\"ĠBridge\":10290,\"Ġwanting\":10291,\"Force\":10292,\"Ġexclus\":10293,\"Meanwhile\":10294,\"mn\":10295,\"Ġgentle\":10296,\"maker\":10297,\"senal\":10298,\"ĠGro\":10299,\"ouri\":10300,\"ĠRain\":10301,\"ĠAlliance\":10302,\"Ġlift\":10303,\"ela\":10304,\"SD\":10305,\"ĠCleveland\":10306,\"Ġranked\":10307,\"Ġstadium\":10308,\"Ġdeadly\":10309,\"ä¸\":10310,\"Ġriding\":10311,\"aria\":10312,\"ĠArmor\":10313,\"Ġdocumentation\":10314,\"ĠGreece\":10315,\"reek\":10316,\"Ġlens\":10317,\"ĠSa\":10318,\"Ġgross\":10319,\"ĠEmer\":10320,\"agers\":10321,\"ĠDub\":10322,\"ĠRh\":10323,\"ĠAMD\":10324,\"Ġarrival\":10325,\"Ġdesert\":10326,\"Ġsupplement\":10327,\"ĠResp\":10328,\"Ġknee\":10329,\"Ġmargin\":10330,\"font\":10331,\"ogg\":10332,\"2010\":10333,\"ĠPir\":10334,\"ĠProm\":10335,\"ivals\":10336,\"Ġintake\":10337,\"Ġdifferently\":10338,\"ugs\":10339,\"Ġbits\":10340,\"cluded\":10341,\"Ġsearching\":10342,\"ĠDu\":10343,\"umble\":10344,\"Ġfunctional\":10345,\"ĠBaltimore\":10346,\"ĠCould\":10347,\"Ġdesired\":10348,\"Ġcircuit\":10349,\"ĠLyn\":10350,\"ĠGO\":10351,\"ĠFalse\":10352,\"repre\":10353,\"':\":10354,\"alties\":10355,\"Ġminim\":10356,\"Ġdrove\":10357,\"ĠShould\":10358,\"Ġhip\":10359,\"Ġpros\":10360,\"Ġutility\":10361,\"ĠNature\":10362,\"ĠMode\":10363,\"President\":10364,\"opp\":10365,\"rat\":10366,\"formance\":10367,\"Ġconcentration\":10368,\"Ġfont\":10369,\"ĠBud\":10370,\"Ġamid\":10371,\"Ġrevers\":10372,\"ĠML\":10373,\"Bar\":10374,\"Ġinteraction\":10375,\"Ġjurisd\":10376,\"Ġspells\":10377,\"dep\":10378,\"fil\":10379,\"Ġcivilians\":10380,\"utter\":10381,\"ĠCooper\":10382,\"ĠBelow\":10383,\"Ġentrance\":10384,\"Ġconvert\":10385,\"Ġcontroversy\":10386,\"owered\":10387,\"Ġcontrary\":10388,\"Ġarc\":10389,\"ĠExecutive\":10390,\"ĠOfficer\":10391,\"Ġpackages\":10392,\"Ġprogressive\":10393,\"width\":10394,\"Ġreserved\":10395,\"vol\":10396,\"ĠSamsung\":10397,\"Ġprinted\":10398,\"Ġcenters\":10399,\"Ġintroduce\":10400,\"ĠKennedy\":10401,\"Ġodds\":10402,\"Ġsurely\":10403,\"Ġindependence\":10404,\"Ġpassengers\":10405,\"reprene\":10406,\"ĠBeh\":10407,\"Ġloves\":10408,\"ĠESPN\":10409,\"Ġfacilit\":10410,\"Ġidentical\":10411,\"Ġdoct\":10412,\"Ġpartnership\":10413,\"conf\":10414,\"ĠHide\":10415,\"Ġconfused\":10416,\"ĠCow\":10417,\"Men\":10418,\"Ġwrest\":10419,\"ĠIraqi\":10420,\"Ġholes\":10421,\"ĠStudies\":10422,\"Ġpregnant\":10423,\"hard\":10424,\"Ġsignals\":10425,\"IX\":10426,\"Ġpulling\":10427,\"Ġgraduate\":10428,\"Ġnominee\":10429,\"Date\":10430,\"Ġpermitted\":10431,\"ĠâĤ¬\":10432,\"ĠOklahoma\":10433,\"Start\":10434,\"Ġauthorized\":10435,\"Ġalarm\":10436,\"ĠCos\":10437,\"van\":10438,\"Ġgenerations\":10439,\"cular\":10440,\"Ġdragon\":10441,\"ĠSoftware\":10442,\"ĠEdward\":10443,\"Ġcontroller\":10444,\"Sen\":10445,\"gered\":10446,\"ĠVik\":10447,\"Ġapproached\":10448,\"Thank\":10449,\"Ġcance\":10450,\"Ġformula\":10451,\"ĠSmall\":10452,\"Ġweakness\":10453,\"Ġramp\":10454,\"itudes\":10455,\"jud\":10456,\"Ġbrilliant\":10457,\"Ġaccus\":10458,\"source\":10459,\"Ġ800\":10460,\"ĠEvil\":10461,\"Sw\":10462,\"Ġhomeless\":10463,\"week\":10464,\"iens\":10465,\"rics\":10466,\"ĠThird\":10467,\"TO\":10468,\"Ġorganic\":10469,\"Ġpresentation\":10470,\"agh\":10471,\"ĠDownload\":10472,\"vation\":10473,\"Ġassembly\":10474,\"orable\":10475,\"holders\":10476,\"ĠBernie\":10477,\"ĠHelp\":10478,\"Ġtong\":10479,\"ĠFight\":10480,\"Ġbeach\":10481,\"Book\":10482,\"ĠLic\":10483,\"Ġrush\":10484,\"ĠRound\":10485,\"oup\":10486,\"ĠMarx\":10487,\"Ġcalculated\":10488,\"ĠDevil\":10489,\"ĠSarah\":10490,\"Ġoccasionally\":10491,\"Ġbullet\":10492,\"Available\":10493,\"gate\":10494,\"Ġ91\":10495,\"Ġhosp\":10496,\"Ġpromises\":10497,\"ĠHIV\":10498,\"ĠStadium\":10499,\"ĠStock\":10500,\"ĠCorporation\":10501,\"gage\":10502,\"NG\":10503,\"ĠCredit\":10504,\"Ġsne\":10505,\"ibl\":10506,\"Ġaccum\":10507,\"such\":10508,\"Ġterrorists\":10509,\"Ġconsciousness\":10510,\"ĠZh\":10511,\"Ġdrama\":10512,\"oola\":10513,\"piration\":10514,\"Ġlabour\":10515,\"ĠNin\":10516,\"Ġutter\":10517,\"Ġdemocratic\":10518,\"Ġassass\":10519,\"ilation\":10520,\"Ġgest\":10521,\"Ġabroad\":10522,\"Ġmetab\":10523,\"Ġsorts\":10524,\"Ġflav\":10525,\"UB\":10526,\"Ġmg\":10527,\"ĠNothing\":10528,\"ĠOd\":10529,\"Ġmusical\":10530,\"2009\":10531,\"Ġdrops\":10532,\"ocated\":10533,\"ateral\":10534,\"000000\":10535,\"Ġgre\":10536,\"Ġequality\":10537,\"Ġburden\":10538,\"Ġvig\":10539,\"ĠLeader\":10540,\"------------\":10541,\"Ġceremony\":10542,\"Ġfighter\":10543,\"Ġactors\":10544,\"Ġæ\":10545,\"aman\":10546,\"Fi\":10547,\"Ġalign\":10548,\"puter\":10549,\"Ġelder\":10550,\"ĠNSA\":10551,\"Ġrepresentation\":10552,\"ĠOntario\":10553,\"ITH\":10554,\"usalem\":10555,\"Ġharassment\":10556,\"itzer\":10557,\"Ġsymp\":10558,\"Ġboxes\":10559,\"ĠDR\":10560,\"Ġmanifest\":10561,\"atre\":10562,\"Ġ^\":10563,\"Ġdies\":10564,\"leton\":10565,\"Ġmissions\":10566,\"ethe\":10567,\"Ġresolve\":10568,\"Ġfollowers\":10569,\"Ġasc\":10570,\"Ġkm\":10571,\"lord\":10572,\"ammed\":10573,\"Ġsilent\":10574,\"ĠAssociated\":10575,\"Ġtiming\":10576,\"Ġprisoners\":10577,\"ĠKings\":10578,\"ĠFive\":10579,\"Ġtower\":10580,\"Ġapproaches\":10581,\"Ġprecisely\":10582,\"Ġbureau\":10583,\"ĠMother\":10584,\"ĠIss\":10585,\"Ġkeyboard\":10586,\"itual\":10587,\"Ġfunded\":10588,\"Ġstaying\":10589,\"Ġpsychological\":10590,\"Ġmile\":10591,\"ĠLeon\":10592,\"ĠBarb\":10593,\"will\":10594,\"Ġwider\":10595,\"ĠAtlantic\":10596,\"Ġtill\":10597,\"ĠRome\":10598,\"rot\":10599,\"Ġaccompan\":10600,\"Ġflour\":10601,\"aco\":10602,\"World\":10603,\"ĠExpress\":10604,\"ĠYu\":10605,\"Cor\":10606,\"Ġpleased\":10607,\"party\":10608,\"Ġpointing\":10609,\"Ġinflation\":10610,\"Ġroy\":10611,\"Ġ),\":10612,\"ainer\":10613,\"Ġwedding\":10614,\"ormon\":10615,\"Ġrequiring\":10616,\"Ġqualified\":10617,\"Ġsegment\":10618,\"END\":10619,\"Ġsizes\":10620,\"eals\":10621,\"Ġcorrupt\":10622,\"assador\":10623,\"Ġceleb\":10624,\"Ġdreams\":10625,\"ĠMess\":10626,\"Ġchecking\":10627,\"ĠVersion\":10628,\"Ġpreparing\":10629,\"Ġactively\":10630,\"ĠDiff\":10631,\"Ġlux\":10632,\"ĠWinter\":10633,\"acteria\":10634,\"ĠNE\":10635,\"Ġdeputy\":10636,\"Ġtransgender\":10637,\"Ġsummary\":10638,\"Ġinher\":10639,\"eries\":10640,\"char\":10641,\"ĠYan\":10642,\"Ġknock\":10643,\"ĠPath\":10644,\"Ġlip\":10645,\"roller\":10646,\"Ġimpression\":10647,\"Ġcelebrate\":10648,\"Ġslide\":10649,\"Ġguests\":10650,\"Ġclip\":10651,\"FS\":10652,\"Ġsavings\":10653,\"Ġcaptain\":10654,\"Ġlegacy\":10655,\"ĠDenver\":10656,\"Ġwounded\":10657,\"taboola\":10658,\"ACT\":10659,\"Ġpursue\":10660,\"Ġoxy\":10661,\"Ġq\":10662,\"Ġsemi\":10663,\"ĠNeed\":10664,\"ĠAffairs\":10665,\"Ġobsc\":10666,\"Ġchecked\":10667,\"Ġdual\":10668,\"Code\":10669,\"ĠMD\":10670,\"lem\":10671,\"ulty\":10672,\"ĠÂ©\":10673,\"ĠElizabeth\":10674,\"Ġcenturies\":10675,\"arded\":10676,\"src\":10677,\"Ġevident\":10678,\"ennis\":10679,\"atin\":10680,\"Ġunemployment\":10681,\"ĠMario\":10682,\"Ġintim\":10683,\"Christ\":10684,\"Ġbiological\":10685,\"Ġsoldier\":10686,\"ĠAdded\":10687,\"Ġmath\":10688,\"ĠGil\":10689,\"Ġbias\":10690,\"Ġdating\":10691,\"ĠOcean\":10692,\"Ġmice\":10693,\"Mus\":10694,\"hire\":10695,\"ĠTes\":10696,\"Server\":10697,\"limited\":10698,\"Size\":10699,\"Ġmeters\":10700,\"Ġrocket\":10701,\"essee\":10702,\"Ġcertificate\":10703,\"ĠIranian\":10704,\"ASS\":10705,\"Ġgrid\":10706,\"Dec\":10707,\"Ġrolling\":10708,\"commun\":10709,\"ĠSweden\":10710,\"bury\":10711,\"Ġtissue\":10712,\"Ġracism\":10713,\"ĠLocal\":10714,\"Ġmystery\":10715,\"Ġexamine\":10716,\"Ġstem\":10717,\"Ġsits\":10718,\"Ġhoped\":10719,\"oting\":10720,\"Ġdialogue\":10721,\"Ġpersu\":10722,\"Watch\":10723,\"lay\":10724,\"MAN\":10725,\"Ġchronic\":10726,\"ĠPortland\":10727,\"market\":10728,\"ĠSEC\":10729,\"Ġparallel\":10730,\"Ġscandal\":10731,\"Ġcarries\":10732,\"Ġphenomenon\":10733,\"human\":10734,\"acker\":10735,\"ĠOx\":10736,\"Ġretirement\":10737,\"tainment\":10738,\"ovie\":10739,\"ĠGear\":10740,\"Ġduties\":10741,\"Ġdose\":10742,\"Ġscroll\":10743,\"MB\":10744,\"inf\":10745,\"Ġsauce\":10746,\"Ġlandscape\":10747,\"reddit\":10748,\"ĠChampionship\":10749,\"ĠReddit\":10750,\"alid\":10751,\"Ġcoin\":10752,\"Ġovers\":10753,\"Ġposting\":10754,\"about\":10755,\"Ġfel\":10756,\"andy\":10757,\"Ġbold\":10758,\"Ġfocusing\":10759,\"effect\":10760,\"GR\":10761,\"Ġdeemed\":10762,\"Ġrecommendations\":10763,\"Ġstepped\":10764,\"Ġvoter\":10765,\"ĠDeep\":10766,\"ĠInstagram\":10767,\"Ġmoderate\":10768,\"ĠMaryland\":10769,\"Ġrestricted\":10770,\"ĠMB\":10771,\"ĠChall\":10772,\"Ġtob\":10773,\"Ġcir\":10774,\"ĠOcc\":10775,\"ĠEver\":10776,\"Ġcollaps\":10777,\"INFO\":10778,\"=-\":10779,\"ĠPict\":10780,\"ĠAccount\":10781,\"nc\":10782,\"Ġought\":10783,\"Ġexport\":10784,\"Ġdrunk\":10785,\"('\":10786,\"Ġwise\":10787,\"ĠMort\":10788,\"necess\":10789,\"Ġancest\":10790,\"ĠIncre\":10791,\"Ġfrequent\":10792,\"mir\":10793,\"Ġinterpretation\":10794,\"Ġdependent\":10795,\"Ġcoins\":10796,\"ĠBol\":10797,\"Video\":10798,\"ĠJustin\":10799,\"Ġfatal\":10800,\"Ġcooking\":10801,\"Ġconfusion\":10802,\"ipher\":10803,\"Ġcustody\":10804,\"ĠMorgan\":10805,\"omach\":10806,\"ĠGovernor\":10807,\"Ġrestaurants\":10808,\"eling\":10809,\"Ġacknowledged\":10810,\"Ġther\":10811,\"Ġgenes\":10812,\"ching\":10813,\"Hey\":10814,\"Ġtactics\":10815,\"ĠMexican\":10816,\"Ġvend\":10817,\"Ġhes\":10818,\"quer\":10819,\"Ġnoting\":10820,\"ĠCameron\":10821,\"Ġtargeting\":10822,\"rock\":10823,\"Ġcredits\":10824,\"Ġemotions\":10825,\"Ġrepresentatives\":10826,\"news\":10827,\"Ġlegislative\":10828,\"Ġremoving\":10829,\"Ġtweeted\":10830,\"ĠCarter\":10831,\"ĠFixed\":10832,\"Ġforcing\":10833,\"Ġspeaker\":10834,\"Ġmales\":10835,\"ĠVietnam\":10836,\"lined\":10837,\"Ġconcepts\":10838,\"Ġvoices\":10839,\"oir\":10840,\"ĠTrib\":10841,\"Whe\":10842,\"ĠJerusalem\":10843,\"ĠSant\":10844,\"Ġcul\":10845,\"Ġlady\":10846,\"ĠHawai\":10847,\"Ġarts\":10848,\"ĠInn\":10849,\"ĠMachine\":10850,\"ĠEmperor\":10851,\"Ġslot\":10852,\"gly\":10853,\"ĠProcess\":10854,\"III\":10855,\"Ġathletes\":10856,\"ĠTemple\":10857,\"ĠRepresent\":10858,\"Ġpresc\":10859,\"Ġtons\":10860,\"Ġgolden\":10861,\"Ġpunch\":10862,\"ĠGR\":10863,\"iverpool\":10864,\"Ġenact\":10865,\"Ġlobby\":10866,\"Ġmos\":10867,\"Ġpicking\":10868,\"Ġlifetime\":10869,\"Ġcognitive\":10870,\"Each\":10871,\"zo\":10872,\"Ġdub\":10873,\"Ġconsists\":10874,\"oln\":10875,\"Ġfestival\":10876,\"amous\":10877,\"Ġintellig\":10878,\"words\":10879,\"ĠSmart\":10880,\"Ġdele\":10881,\"Ġlapt\":10882,\"Ġmagical\":10883,\"ĠSin\":10884,\"bus\":10885,\"urities\":10886,\"ighth\":10887,\"ĠRuby\":10888,\"ĠSure\":10889,\"olving\":10890,\"Ġjun\":10891,\"OST\":10892,\"Ġimposed\":10893,\"Ġastron\":10894,\"Ġcorrel\":10895,\"ĠNS\":10896,\"ĠKit\":10897,\"ĠFuture\":10898,\"burn\":10899,\"Ġimmune\":10900,\"ocus\":10901,\"Ġcourses\":10902,\"ĠString\":10903,\"Ġlean\":10904,\"Ġghost\":10905,\"Ġoutcomes\":10906,\"Ġexpense\":10907,\"Ġeveryday\":10908,\"Ġacceptable\":10909,\"Ah\":10910,\"Ġequipped\":10911,\"Ġorange\":10912,\"FR\":10913,\"ĠDutch\":10914,\"Though\":10915,\"ĠRank\":10916,\"QU\":10917,\"ĠRoberts\":10918,\"what\":10919,\"rend\":10920,\"Ġdisappear\":10921,\"Ġspawn\":10922,\"ĠLam\":10923,\"ois\":10924,\"Ġdeserve\":10925,\"Ġminimal\":10926,\"Ġnervous\":10927,\"ĠWould\":10928,\"Ġrook\":10929,\"ĠVancouver\":10930,\"Ġresign\":10931,\"shire\":10932,\"ĠWorks\":10933,\"ĠBuild\":10934,\"Ġaffordable\":10935,\"ĠGary\":10936,\"ĠArena\":10937,\"Ġhanging\":10938,\"Ġimplications\":10939,\"ĠSong\":10940,\"Ġmaintaining\":10941,\"Ġguards\":10942,\"CON\":10943,\"Ġderived\":10944,\"Ġexecuted\":10945,\"Ġtheories\":10946,\"Ġquoted\":10947,\"ĠAndre\":10948,\"oga\":10949,\"seless\":10950,\"info\":10951,\"ĠBelg\":10952,\"Ġtears\":10953,\"ĠSurv\":10954,\"Ġbirthday\":10955,\"igious\":10956,\"immer\":10957,\"Ġspectrum\":10958,\"Ġarchitecture\":10959,\"Ġrecruit\":10960,\"arma\":10961,\"Table\":10962,\"Ġmonsters\":10963,\"ĠGov\":10964,\"Ġdestination\":10965,\"Ġattractive\":10966,\"Ġfoss\":10967,\"ĠMoreover\":10968,\"Ġpresents\":10969,\"THE\":10970,\"Ġreply\":10971,\"pton\":10972,\"Ġcum\":10973,\"Ġdelight\":10974,\"Ġaffects\":10975,\"Ġdonations\":10976,\"ĠToy\":10977,\"ĠHim\":10978,\"MENT\":10979,\"Ġovercome\":10980,\"itched\":10981,\"ĠFantasy\":10982,\"ĠHat\":10983,\"ĠBeast\":10984,\"bott\":10985,\"Ġinvestigations\":10986,\"Run\":10987,\"Ġhunting\":10988,\"di\":10989,\"fund\":10990,\"Ġsessions\":10991,\"estyle\":10992,\"Ġportray\":10993,\"oids\":10994,\"Yeah\":10995,\"Ġcommunicate\":10996,\"Ġcomedy\":10997,\"ĠYang\":10998,\"Ġbelt\":10999,\"ĠMarine\":11000,\"Ġpredicted\":11001,\"Play\":11002,\"Ġimportantly\":11003,\"Ġremarkable\":11004,\"Ġeliminate\":11005,\"David\":11006,\"Ġbind\":11007,\"VID\":11008,\"Ġadvocates\":11009,\"ĠGaza\":11010,\"imp\":11011,\"DB\":11012,\"ĠNa\":11013,\"ĠSimilar\":11014,\"IES\":11015,\"Ġcharity\":11016,\"vas\":11017,\"math\":11018,\"Ġâĸ\":11019,\"oker\":11020,\"ndum\":11021,\"Ġcaps\":11022,\"ĠHal\":11023,\"2000\":11024,\"ean\":11025,\"Ġfleet\":11026,\"Ġrecre\":11027,\"Right\":11028,\"Ġsleeping\":11029,\"ijing\":11030,\"kind\":11031,\"Ġdesignated\":11032,\"Ã¤\":11033,\"Ġanimation\":11034,\"kee\":11035,\"ĠIntrodu\":11036,\"Ġ/>\":11037,\"Ġdelayed\":11038,\"Ġtremend\":11039,\"Ġcurious\":11040,\"Use\":11041,\"Ġlect\":11042,\"dam\":11043,\"Ġinnovation\":11044,\"ĠPoints\":11045,\"Ġloading\":11046,\"Ġdispute\":11047,\"ctic\":11048,\"irds\":11049,\"ĠBY\":11050,\"Ġnurs\":11051,\"ĠValue\":11052,\"IONS\":11053,\"ĠHum\":11054,\"Ġtemplate\":11055,\"mers\":11056,\"Ġappearances\":11057,\"ĠEntertainment\":11058,\"Ġtranslation\":11059,\"Ġsake\":11060,\"Ġbeneath\":11061,\"Ġinhib\":11062,\"Ġeuro\":11063,\"abetes\":11064,\"Ġstudying\":11065,\"ĠMas\":11066,\"Ġperceived\":11067,\"Ġexamined\":11068,\"Ġeager\":11069,\"Ġcoaches\":11070,\"Ġimper\":11071,\"chi\":11072,\"Ġproduces\":11073,\"\\\").\":11074,\"ĠEveryone\":11075,\"Ġmunicip\":11076,\"Ġgirlfriend\":11077,\"Ġhire\":11078,\"ĠVice\":11079,\"Ġsuitable\":11080,\"opy\":11081,\"Ġinequ\":11082,\"ĠDuke\":11083,\"fish\":11084,\"first\":11085,\"ĠObs\":11086,\"Ġinterior\":11087,\"ĠBruce\":11088,\"ĠRy\":11089,\"Ġanalys\":11090,\"Ġconsiderable\":11091,\"Ġforecast\":11092,\"Ġfert\":11093,\"orship\":11094,\"ĠDrug\":11095,\"ĠALL\":11096,\":\\\"\":11097,\"thur\":11098,\"ĠMail\":11099,\"Ġballot\":11100,\"Ġinstantly\":11101,\"ĠChannel\":11102,\"Ġpicks\":11103,\"Ġ1989\":11104,\"Ġtent\":11105,\"oli\":11106,\"Ġcivilian\":11107,\"bling\":11108,\"ello\":11109,\"bu\":11110,\"Ġinch\":11111,\"Ġlogo\":11112,\"Ġcooperation\":11113,\"Ġwalks\":11114,\"Ġinvestments\":11115,\"Ġimprison\":11116,\"ĠFestival\":11117,\"ĠKy\":11118,\"Ġlegally\":11119,\"Ġgri\":11120,\"charg\":11121,\"Sl\":11122,\"Ġthreatening\":11123,\"duction\":11124,\"flow\":11125,\"Ġdismissed\":11126,\"ibraries\":11127,\"cap\":11128,\"ele\":11129,\"ĠMcG\":11130,\"ĠHarvard\":11131,\"ĠConservative\":11132,\"ĠCBS\":11133,\"png\":11134,\"Ġroots\":11135,\"ĠHaving\":11136,\"umbled\":11137,\"ĠFun\":11138,\"\\\\/\":11139,\"ĠSearch\":11140,\"plex\":11141,\"Ġdiscussing\":11142,\"Ġcontinu\":11143,\"ĠTai\":11144,\"ĠWik\":11145,\"Free\":11146,\"fit\":11147,\"Ġrefuse\":11148,\"Ġmanaging\":11149,\"Ġsynd\":11150,\"ipedia\":11151,\"walk\":11152,\"Ġprofessionals\":11153,\"Ġguidance\":11154,\"Ġuniversities\":11155,\"Ġassemb\":11156,\"untu\":11157,\"Finally\":11158,\"ASE\":11159,\"ĠAuto\":11160,\"ĠHad\":11161,\"Ġanniversary\":11162,\"LD\":11163,\"ĠDur\":11164,\"ĠUltimate\":11165,\"ihad\":11166,\"product\":11167,\"Ġtransit\":11168,\"Ġrestore\":11169,\"Ġexplaining\":11170,\"Ġasset\":11171,\"Ġtransferred\":11172,\"Ġburst\":11173,\"apolis\":11174,\"ĠMagazine\":11175,\"ĠCra\":11176,\"ĠBR\":11177,\"gged\":11178,\"ĠHE\":11179,\"Mich\":11180,\"bet\":11181,\"ĠLady\":11182,\"ylum\":11183,\"erves\":11184,\"Ġmeets\":11185,\"white\":11186,\"Log\":11187,\"Ġcorresponding\":11188,\"Ġinsisted\":11189,\"GG\":11190,\"Ġsurrounded\":11191,\"Ġtens\":11192,\"Ġlane\":11193,\"Ġcoinc\":11194,\"home\":11195,\"Ġexisted\":11196,\"ected\":11197,\"ĠDouble\":11198,\"lamm\":11199,\"Ġskept\":11200,\"exp\":11201,\"Ġperception\":11202,\"iev\":11203,\"ĠBeing\":11204,\"oft\":11205,\"Ġadopt\":11206,\".:\":11207,\"];\":11208,\"Windows\":11209,\"Ġsatellite\":11210,\"ASH\":11211,\"Ġinfant\":11212,\"description\":11213,\"ĠMeanwhile\":11214,\"cm\":11215,\"oca\":11216,\"ĠTreat\":11217,\"actor\":11218,\"Ġtobacco\":11219,\"ĠNorm\":11220,\"emption\":11221,\"Ġflesh\":11222,\"Ġje\":11223,\"oop\":11224,\"ĠHeaven\":11225,\"Ġbeating\":11226,\"anim\":11227,\"Ġgathering\":11228,\"Ġcultiv\":11229,\"GO\":11230,\"abe\":11231,\"ĠJonathan\":11232,\"ĠSafety\":11233,\"Ġbadly\":11234,\"prot\":11235,\"Ġchoosing\":11236,\"Ġcontacted\":11237,\"Ġquit\":11238,\"Ġdistur\":11239,\"Ġstir\":11240,\"Ġtoken\":11241,\"Det\":11242,\"ĠPa\":11243,\"Ġfunctionality\":11244,\"003\":11245,\"some\":11246,\"Ġlimitations\":11247,\"Ġmeth\":11248,\"build\":11249,\"config\":11250,\"NT\":11251,\"rell\":11252,\"blem\":11253,\"ĠMom\":11254,\"Ġveterans\":11255,\"ĠHu\":11256,\"Ġtrends\":11257,\"arer\":11258,\"ĠGiven\":11259,\"ĠCaption\":11260,\"may\":11261,\"AST\":11262,\"Ġwondering\":11263,\"ĠClark\":11264,\"normal\":11265,\"Ġseparated\":11266,\"Ġdesp\":11267,\"stic\":11268,\"brew\":11269,\"Ġrelating\":11270,\"ĠNik\":11271,\"ĠFarm\":11272,\"Ġenthusi\":11273,\"good\":11274,\"deb\":11275,\"Ġactivist\":11276,\"Ġmart\":11277,\"Ġexplosion\":11278,\"ĠEconomic\":11279,\"Link\":11280,\"Ġinsight\":11281,\"Ġconvenient\":11282,\"Ġcounterpart\":11283,\"support\":11284,\"ĠVirt\":11285,\"agen\":11286,\"ĠTennessee\":11287,\"ĠSimon\":11288,\"ĠAward\":11289,\"OCK\":11290,\"ĠFigure\":11291,\"Ġoverseas\":11292,\"Ġpride\":11293,\"ĠCas\":11294,\"note\":11295,\"mg\":11296,\"Current\":11297,\"Ġdisplays\":11298,\"content\":11299,\"Ġtraveling\":11300,\"Ġhospitals\":11301,\"ĠFinancial\":11302,\"ĠPast\":11303,\"Ġdefendant\":11304,\"Ġstreaming\":11305,\"mble\":11306,\"ĠBerlin\":11307,\"uki\":11308,\"Ġdistribut\":11309,\"Ġantib\":11310,\"Ġchocolate\":11311,\"ĠCastle\":11312,\"Ġinterrupt\":11313,\"ĠRow\":11314,\"Ġconversion\":11315,\"Ġbugs\":11316,\"ĠRather\":11317,\"liest\":11318,\"LY\":11319,\"ĠJean\":11320,\"common\":11321,\"akh\":11322,\"Ġ130\":11323,\"otton\":11324,\"ĠDean\":11325,\"Ġamendment\":11326,\"Ġgameplay\":11327,\"ĠWarren\":11328,\"oda\":11329,\"Ġhighlights\":11330,\"Ġirre\":11331,\"ĠNATO\":11332,\"Ġballs\":11333,\"Ġdemanding\":11334,\"URE\":11335,\"ĠLuke\":11336,\"Figure\":11337,\"stop\":11338,\"onia\":11339,\"zone\":11340,\"izers\":11341,\"ĠWR\":11342,\"Ġawarded\":11343,\"Ġregulatory\":11344,\"ĠHart\":11345,\"ĠSN\":11346,\"pling\":11347,\"Ġsour\":11348,\"ĠPixel\":11349,\"usive\":11350,\"Ġfet\":11351,\"ĠSent\":11352,\"Ġautomatic\":11353,\"Ġfer\":11354,\"vernment\":11355,\"ĠKhan\":11356,\"TON\":11357,\"father\":11358,\"Ġextraordinary\":11359,\"throp\":11360,\"ĠPython\":11361,\"ĠGPU\":11362,\"Ġsexually\":11363,\"Ġdesktop\":11364,\"itivity\":11365,\"ĠAntonio\":11366,\"Ġorient\":11367,\"Ġears\":11368,\"obby\":11369,\"ouses\":11370,\"vertisements\":11371,\"Ġmanufacturers\":11372,\"icient\":11373,\"minute\":11374,\"Ġconviction\":11375,\"Ġgarden\":11376,\"public\":11377,\"Ġsatisfied\":11378,\"fold\":11379,\"OK\":11380,\"Ġinhab\":11381,\"ĠThink\":11382,\"Ġprogramme\":11383,\"Ġstomach\":11384,\"Ġcoordin\":11385,\"Ġholy\":11386,\"Ġthreshold\":11387,\"Ġrhet\":11388,\"Ġserial\":11389,\"Ġemployers\":11390,\"ĠEverything\":11391,\"rah\":11392,\"Ġbother\":11393,\"Ġbrands\":11394,\"Value\":11395,\"ĠTed\":11396,\"ĠPlanet\":11397,\"Ġpink\":11398,\"ĠFurthermore\":11399,\"sa\":11400,\"PE\":11401,\"reck\":11402,\"ĠUSD\":11403,\"otte\":11404,\"Ġ&&\":11405,\"Ġlanded\":11406,\"gets\":11407,\"Ġproducers\":11408,\"Ġhealthcare\":11409,\"Ġdominant\":11410,\"Ġdestro\":11411,\"Ġamended\":11412,\"chron\":11413,\"Ġfits\":11414,\"ĠSyd\":11415,\"ĠAuthority\":11416,\"ATCH\":11417,\"Ġfights\":11418,\"ĠLLC\":11419,\"Ġ---\":11420,\"ĠCorp\":11421,\"Ġtoxic\":11422,\"specific\":11423,\"ĠCorn\":11424,\"ĠChel\":11425,\"Ġtelephone\":11426,\"ĠPant\":11427,\"Ġmysterious\":11428,\"aunch\":11429,\"odox\":11430,\"media\":11431,\"Ġwitnesses\":11432,\"agu\":11433,\"Ġquestioned\":11434,\"ĠBrexit\":11435,\"ĠRemember\":11436,\"enez\":11437,\"Ġendorse\":11438,\"iatric\":11439,\"ĠIdent\":11440,\"Ġridiculous\":11441,\"110\":11442,\"Ġprayer\":11443,\"Ġscientist\":11444,\"Ġ1950\":11445,\"ĠAqu\":11446,\"Ġunderground\":11447,\"ĠUFC\":11448,\"mare\":11449,\"ĠLater\":11450,\"wich\":11451,\"Ġsubscrib\":11452,\"Ġhosts\":11453,\"Ġerr\":11454,\"Ġgrants\":11455,\"antom\":11456,\"Ġsummon\":11457,\"early\":11458,\"ĠClear\":11459,\"ĠPrim\":11460,\"Ġsuspension\":11461,\"Ġguaranteed\":11462,\"apper\":11463,\"Ġrice\":11464,\"ĠSean\":11465,\"ĠShin\":11466,\"Ġreferendum\":11467,\"Ġfled\":11468,\"rust\":11469,\"Ġ360\":11470,\"tery\":11471,\"Ġshocked\":11472,\"BR\":11473,\"ĠOil\":11474,\"ĠAllah\":11475,\"Ġpartly\":11476,\"Ġignor\":11477,\"Ġtransmission\":11478,\"Ġhomosexual\":11479,\"iversal\":11480,\"Ġhopefully\":11481,\"ãĤ¤\":11482,\"Ġlesson\":11483,\"Leg\":11484,\"Ġ..\":11485,\"Yet\":11486,\"table\":11487,\"appropri\":11488,\"rett\":11489,\"Ġboards\":11490,\"Ġincorrect\":11491,\"Ġbacteria\":11492,\"aru\":11493,\"amac\":11494,\"Ġsnap\":11495,\".'\\\"\":11496,\"Ġparad\":11497,\"tem\":11498,\"heart\":11499,\"Ġavailability\":11500,\"Ġwisdom\":11501,\"Ġ(+\":11502,\"Ġpriest\":11503,\"ĠÂłĠÂł\":11504,\"Open\":11505,\"Ġspan\":11506,\"Ġparameter\":11507,\"Ġconvince\":11508,\"Ġ(%)\":11509,\"rac\":11510,\"Ġfo\":11511,\"Ġsafely\":11512,\"Ġconverted\":11513,\"ĠOlympic\":11514,\"Ġreserve\":11515,\"Ġhealing\":11516,\"ĠMine\":11517,\"Max\":11518,\"Ġinherent\":11519,\"ĠGraham\":11520,\"Ġintegrated\":11521,\"Dem\":11522,\"Ġpipeline\":11523,\"Ġapplying\":11524,\"Ġembed\":11525,\"ĠCharlie\":11526,\"Ġcave\":11527,\"2008\":11528,\"Ġconsensus\":11529,\"Ġrewards\":11530,\"Pal\":11531,\"ĠHTML\":11532,\"Ġpopularity\":11533,\"looking\":11534,\"ĠSword\":11535,\"ĠArts\":11536,\"')\":11537,\"Ġelectron\":11538,\"clusions\":11539,\"Ġintegrity\":11540,\"Ġexclusively\":11541,\"Ġgrace\":11542,\"Ġtorture\":11543,\"Ġburned\":11544,\"two\":11545,\"Ġ180\":11546,\"Produ\":11547,\"Ġentreprene\":11548,\"raphics\":11549,\"Ġgym\":11550,\"ricane\":11551,\"ĠTam\":11552,\"Ġadministrative\":11553,\"Ġmanufacturer\":11554,\"Ġvel\":11555,\"ĠNi\":11556,\"Ġisolated\":11557,\"ĠMedicine\":11558,\"Ġbackup\":11559,\"Ġpromoting\":11560,\"Ġcommander\":11561,\"Ġflee\":11562,\"ĠRussell\":11563,\"Ġforgotten\":11564,\"ĠMissouri\":11565,\"Ġresidence\":11566,\"mons\":11567,\"Ġresemb\":11568,\"Ġwand\":11569,\"Ġmeaningful\":11570,\"PT\":11571,\"Ġbol\":11572,\"Ġhelic\":11573,\"Ġwealthy\":11574,\"Ġrifle\":11575,\"strong\":11576,\"rowing\":11577,\"plan\":11578,\"asury\":11579,\"âĢ¦.\":11580,\"Ġexpanding\":11581,\"ĠHamilton\":11582,\"Ġreceives\":11583,\"SI\":11584,\"eatures\":11585,\"ĠAnim\":11586,\"REE\":11587,\"Put\":11588,\"Ġbriefly\":11589,\"rive\":11590,\"Ġstimul\":11591,\"Ġ``(\":11592,\"Ġ__\":11593,\"Ġchip\":11594,\"Ġhaz\":11595,\"Ġprize\":11596,\"ĠThings\":11597,\"ACE\":11598,\"ulin\":11599,\"dict\":11600,\"oku\":11601,\"Ġassociate\":11602,\"ockets\":11603,\"youtube\":11604,\"Story\":11605,\"ategory\":11606,\"Ġmild\":11607,\"ailing\":11608,\"ĠYe\":11609,\"Orig\":11610,\"ĠKa\":11611,\"orig\":11612,\"Ġpropaganda\":11613,\"Ġanonymous\":11614,\"Ġstruggled\":11615,\"Ġoutrage\":11616,\"ATED\":11617,\"ĠBeijing\":11618,\"rary\":11619,\"Ġleather\":11620,\"Ġworlds\":11621,\"Ġbroader\":11622,\"125\":11623,\"idal\":11624,\"ĠBetter\":11625,\"Ġtear\":11626,\"Ext\":11627,\"Ġproposals\":11628,\"Ġiter\":11629,\"ĠSquad\":11630,\"Ġvolunt\":11631,\"mi\":11632,\"Did\":11633,\"ĠPu\":11634,\"pin\":11635,\"Ġspeakers\":11636,\"Ġborders\":11637,\"Ġfigured\":11638,\"='\":11639,\"Ġsimultaneously\":11640,\"aeda\":11641,\"Ġcharging\":11642,\"Ġurged\":11643,\"Ġconj\":11644,\"256\":11645,\"ĠGordon\":11646,\"merce\":11647,\"Ġdocumentary\":11648,\"Share\":11649,\"itol\":11650,\"ONE\":11651,\"ĠGarden\":11652,\"hatt\":11653,\"ĠThompson\":11654,\"aneous\":11655,\"apore\":11656,\"Ġtanks\":11657,\"Ġlessons\":11658,\"track\":11659,\"Ġoutstanding\":11660,\"Ġvolunteers\":11661,\"Ġspray\":11662,\"Ġmanagers\":11663,\"large\":11664,\"Ġcamps\":11665,\"Ġartificial\":11666,\"ĠRu\":11667,\"Ġbags\":11668,\"thal\":11669,\"Ġcompatible\":11670,\"ĠBlade\":11671,\"Ġfed\":11672,\"Ġargues\":11673,\"FI\":11674,\"Ġunfair\":11675,\"Ġcorn\":11676,\"Ġoffset\":11677,\"Ġdirections\":11678,\"Ġdisappointed\":11679,\"ĠConvention\":11680,\"Ġviewing\":11681,\"ME\":11682,\"ocity\":11683,\"Ġtowns\":11684,\"Ġlayers\":11685,\"Ġrolled\":11686,\"Ġjumped\":11687,\"Ġattribute\":11688,\"Ġunnecess\":11689,\"incoln\":11690,\"Ġsuppose\":11691,\"ĠNether\":11692,\"cha\":11693,\"Ġburied\":11694,\"Ġsixth\":11695,\"Ben\":11696,\"ressing\":11697,\"OUR\":11698,\"Ġwound\":11699,\"Ġcycl\":11700,\"Ġmechanisms\":11701,\"Ġcongressional\":11702,\"ĠElement\":11703,\"Ġagreements\":11704,\"Ġdecor\":11705,\"Ġclosest\":11706,\"ĠMit\":11707,\"Google\":11708,\"}}\":11709,\"Ġmixture\":11710,\"Ġfluid\":11711,\"Sign\":11712,\"ĠScholar\":11713,\"Ġpist\":11714,\"asket\":11715,\"abling\":11716,\"Ġracing\":11717,\"hero\":11718,\"riel\":11719,\"assy\":11720,\"Ġcheaper\":11721,\"ben\":11722,\"Ġvertical\":11723,\"amacare\":11724,\"ĠReading\":11725,\"gments\":11726,\"Ġhelicop\":11727,\"Ġsacrifice\":11728,\"aya\":11729,\"paren\":11730,\"VA\":11731,\"ĠLes\":11732,\"ĠStudio\":11733,\"Ġviolations\":11734,\"ĠAnna\":11735,\"acer\":11736,\"é¾\":11737,\"ĠRat\":11738,\"ĠBeck\":11739,\"ĠDick\":11740,\"ĠACT\":11741,\"Ġcomposition\":11742,\"Ġtexture\":11743,\"ĠOwn\":11744,\"Ġsmartphone\":11745,\"ĠNA\":11746,\"Ġforb\":11747,\"import\":11748,\"Ġdefending\":11749,\"ilst\":11750,\"rer\":11751,\"Ġoh\":11752,\"ĠJeremy\":11753,\"Ġbanking\":11754,\"ceptions\":11755,\"Ġrespective\":11756,\"/.\":11757,\"Ġdrinks\":11758,\"ĠWi\":11759,\"Ġbands\":11760,\"ĠLiverpool\":11761,\"Ġgrip\":11762,\"ĠBuy\":11763,\"Ġopenly\":11764,\"Ġreviewed\":11765,\"pert\":11766,\"Ġverify\":11767,\"ĠCole\":11768,\"ĠWales\":11769,\"MO\":11770,\"Ġunpre\":11771,\"Ġshelter\":11772,\"ĠImperial\":11773,\"Ġgui\":11774,\"ĠDak\":11775,\"Ġsuggestions\":11776,\"Ġexplicitly\":11777,\"Ġslave\":11778,\"Ġblockchain\":11779,\"Ġcompeting\":11780,\"Ġpromising\":11781,\"SON\":11782,\"Ġsoccer\":11783,\"Ġconstitution\":11784,\"429\":11785,\"Ġdistract\":11786,\"ĠUser\":11787,\"esides\":11788,\"ĠMethod\":11789,\"ĠTokyo\":11790,\"Ġaccompanied\":11791,\"Client\":11792,\"sur\":11793,\"alog\":11794,\"Ġidentification\":11795,\"Ġinvasion\":11796,\"asma\":11797,\"Ġindustries\":11798,\"ppers\":11799,\"Ġsubtle\":11800,\"ĠUnit\":11801,\"natural\":11802,\"Ġsurvived\":11803,\"Ġflaw\":11804,\"ĺħ\":11805,\"ĠHoll\":11806,\"Ġdeficit\":11807,\"Ġtutorial\":11808,\"ĠChance\":11809,\"Ġarguing\":11810,\"Ġcontemporary\":11811,\"Ġintegration\":11812,\"forward\":11813,\"Ġtum\":11814,\"itis\":11815,\"Ġhiding\":11816,\"ĠDomin\":11817,\"ĠTan\":11818,\"ĠBuilding\":11819,\"ĠVin\":11820,\"Ġspokesperson\":11821,\"ĠNotes\":11822,\"Ġemerging\":11823,\"Ġpreparation\":11824,\"Ġprost\":11825,\"Ġsuspects\":11826,\"Ġautonom\":11827,\"Description\":11828,\"Ġdealt\":11829,\"ĠPear\":11830,\"Ġsteady\":11831,\"Ġdecreased\":11832,\"Ġsovere\":11833,\"ĠClin\":11834,\"Ġgradually\":11835,\"orses\":11836,\"ĠWAR\":11837,\"Serv\":11838,\"ãĤ¢\":11839,\"hr\":11840,\"Ġdirty\":11841,\"ĠBarn\":11842,\"ĠBC\":11843,\"Ġdil\":11844,\"Ġcalendar\":11845,\"Ġcompliance\":11846,\"Ġchamber\":11847,\"bb\":11848,\"Ġpassenger\":11849,\"ateful\":11850,\"ĠTitle\":11851,\"ĠSydney\":11852,\"ĠGot\":11853,\"Ġdarkness\":11854,\"Ġdefect\":11855,\"Ġpacked\":11856,\"assion\":11857,\"Ġgods\":11858,\"Ġharsh\":11859,\"ICK\":11860,\"leans\":11861,\"Ġalgorithm\":11862,\"Ġoxygen\":11863,\"Ġvisits\":11864,\"Ġblade\":11865,\"Ġkilomet\":11866,\"ĠKentucky\":11867,\"Ġkiller\":11868,\"Pack\":11869,\"enny\":11870,\"Ġdivine\":11871,\"Ġnomination\":11872,\"being\":11873,\"Ġengines\":11874,\"Ġcats\":11875,\"Ġbuffer\":11876,\"ĠPhill\":11877,\"Ġtraff\":11878,\"AGE\":11879,\"Ġtongue\":11880,\"Ġradiation\":11881,\"erer\":11882,\"mem\":11883,\"ĠExplicit\":11884,\"é¾į\":11885,\"Ġcouples\":11886,\"Ġphysics\":11887,\"ĠMcK\":11888,\"Ġpolitically\":11889,\"awks\":11890,\"ĠBloom\":11891,\"Ġworship\":11892,\"eger\":11893,\"uter\":11894,\"ĠFO\":11895,\"Ġmathemat\":11896,\"Ġsentenced\":11897,\"Ġdisk\":11898,\"ĠMarg\":11899,\"Ġ/*\":11900,\"PI\":11901,\"Ġoptional\":11902,\"Ġbabies\":11903,\"Ġseeds\":11904,\"ĠScottish\":11905,\"Ġthy\":11906,\"]]\":11907,\"ĠHitler\":11908,\"PH\":11909,\"ngth\":11910,\"Ġrecovered\":11911,\"inge\":11912,\"Ġpowder\":11913,\"Ġlips\":11914,\"Ġdesigner\":11915,\"Ġdisorders\":11916,\"Ġcourage\":11917,\"Ġchaos\":11918,\"\\\"},{\\\"\":11919,\"Ġcarrier\":11920,\"bably\":11921,\"High\":11922,\"ĠRT\":11923,\"esity\":11924,\"len\":11925,\"Ġroutes\":11926,\"uating\":11927,\"Fil\":11928,\"NOT\":11929,\"wall\":11930,\"sburgh\":11931,\"Ġengaging\":11932,\"ĠJavaScript\":11933,\"orer\":11934,\"lihood\":11935,\"Ġunions\":11936,\"ĠFederation\":11937,\"ĠTesla\":11938,\"Ġcompletion\":11939,\"ĠTa\":11940,\"Ġprivilege\":11941,\"ĠOrange\":11942,\"Ġneur\":11943,\"parency\":11944,\"Ġbones\":11945,\"Ġtitled\":11946,\"Ġprosecutors\":11947,\"ĠME\":11948,\"Ġengineer\":11949,\"ĠUniverse\":11950,\"ĠHig\":11951,\"nie\":11952,\"oard\":11953,\"Ġhearts\":11954,\"ĠGre\":11955,\"ussion\":11956,\"Ġministry\":11957,\"Ġpenet\":11958,\"ĠNut\":11959,\"ĠOw\":11960,\"ĠXP\":11961,\"instein\":11962,\"Ġbulk\":11963,\"System\":11964,\"icism\":11965,\"ĠMarketable\":11966,\"Ġpreval\":11967,\"Ġposter\":11968,\"Ġattending\":11969,\"urable\":11970,\"Ġlicensed\":11971,\"ĠGh\":11972,\"etry\":11973,\"ĠTradable\":11974,\"Ġblast\":11975,\"à¤\":11976,\"ĠTitan\":11977,\"elled\":11978,\"die\":11979,\"Have\":11980,\"ĠFlame\":11981,\"Ġprofound\":11982,\"Ġparticipating\":11983,\"Ġanime\":11984,\"ĠEss\":11985,\"Ġspecify\":11986,\"Ġregarded\":11987,\"ĠSpell\":11988,\"Ġsons\":11989,\"owned\":11990,\"Ġmerc\":11991,\"Ġexperimental\":11992,\"lando\":11993,\"hs\":11994,\"ĠDungeon\":11995,\"inos\":11996,\"Ġcomply\":11997,\"ĠSystems\":11998,\"arth\":11999,\"Ġseized\":12000,\"local\":12001,\"ĠGirls\":12002,\"udo\":12003,\"oned\":12004,\"ĠFle\":12005,\"Ġconstructed\":12006,\"Ġhosted\":12007,\"Ġscared\":12008,\"actic\":12009,\"ĠIslands\":12010,\"ĠMORE\":12011,\"Ġbless\":12012,\"Ġblocking\":12013,\"Ġchips\":12014,\"Ġevac\":12015,\"Ps\":12016,\"Ġcorporation\":12017,\"Ġox\":12018,\"Ġlighting\":12019,\"Ġneighbors\":12020,\"ĠUb\":12021,\"aro\":12022,\"Ġbeef\":12023,\"ĠUber\":12024,\"Facebook\":12025,\"armed\":12026,\"itate\":12027,\"ĠRating\":12028,\"ĠQuick\":12029,\"Ġoccupied\":12030,\"Ġaims\":12031,\"ĠAdditionally\":12032,\"ĠInterest\":12033,\"Ġdramatically\":12034,\"Ġheal\":12035,\"Ġpainting\":12036,\"Ġengineers\":12037,\"MM\":12038,\"ĠMust\":12039,\"Ġquantity\":12040,\"Paul\":12041,\"Ġearnings\":12042,\"ĠPosts\":12043,\"stra\":12044,\"ãĥ¼ãĥ\":12045,\"Ġstance\":12046,\"Ġdropping\":12047,\"script\":12048,\"Ġdressed\":12049,\"Make\":12050,\"Ġjustify\":12051,\"ĠLtd\":12052,\"Ġprompted\":12053,\"Ġscrut\":12054,\"Ġspeeds\":12055,\"ĠGiants\":12056,\"omer\":12057,\"ĠEditor\":12058,\"Ġdescribing\":12059,\"ĠLie\":12060,\"mented\":12061,\"Ġnowhere\":12062,\"ocaly\":12063,\"Ġinstruction\":12064,\"fortable\":12065,\"Ġentities\":12066,\"Ġcm\":12067,\"ĠNatural\":12068,\"Ġinquiry\":12069,\"Ġpressed\":12070,\"izont\":12071,\"forced\":12072,\"Ġraises\":12073,\"ĠNetflix\":12074,\"ĠSide\":12075,\"Ġouter\":12076,\"Ġamongst\":12077,\"ims\":12078,\"owski\":12079,\"Ġclimb\":12080,\"never\":12081,\"Ġcombine\":12082,\"ding\":12083,\"Ġcompr\":12084,\"Ġsignificance\":12085,\"Ġremembered\":12086,\"ĠNevada\":12087,\"ĠTel\":12088,\"ĠScar\":12089,\"ĠWarriors\":12090,\"ĠJane\":12091,\"Ġcoup\":12092,\"bas\":12093,\"Ġterminal\":12094,\",-\":12095,\"OH\":12096,\"Ġtension\":12097,\"Ġwings\":12098,\"ĠMyster\":12099,\"ï¿½ï¿½ï¿½ï¿½\":12100,\"ĠUnlike\":12101,\"valid\":12102,\"vironments\":12103,\"ĠAli\":12104,\"Ġnaked\":12105,\"books\":12106,\"ĠMun\":12107,\"ĠGulf\":12108,\"Ġdensity\":12109,\"Ġdimin\":12110,\"Ġdesperate\":12111,\"Ġpresidency\":12112,\"Ġ1986\":12113,\"hy\":12114,\"IND\":12115,\"Ġunlock\":12116,\"imens\":12117,\"Ġhandled\":12118,\"ĠEb\":12119,\"Ġdisappeared\":12120,\"Ġgenre\":12121,\"Ġ1988\":12122,\"Ġdetermination\":12123,\"Stream\":12124,\"iko\":12125,\"apters\":12126,\"Ġacknowledge\":12127,\"Jan\":12128,\"Ġcapitalism\":12129,\"Pat\":12130,\"Ġ2020\":12131,\"Ġpainful\":12132,\"Ġcurve\":12133,\"Ġbombs\":12134,\"storm\":12135,\"ĠMetal\":12136,\"encer\":12137,\"ĠFig\":12138,\"ĠAaron\":12139,\"anches\":12140,\"Ġinspiration\":12141,\"Ġexhaust\":12142,\"tains\":12143,\"ashi\":12144,\"Ġdescript\":12145,\"Ġritual\":12146,\"ĠChelsea\":12147,\"Ġpromotion\":12148,\"ĠHung\":12149,\"ĠWard\":12150,\"iva\":12151,\"ĠET\":12152,\"Ġtoss\":12153,\"allow\":12154,\"ĠFrancis\":12155,\"Dep\":12156,\"Ġhappiness\":12157,\"ĠGlass\":12158,\"Ġbeta\":12159,\"Ġstrengthen\":12160,\"NE\":12161,\"oa\":12162,\"Ġbuttons\":12163,\"ĠMurray\":12164,\"Ġkicked\":12165,\"Quest\":12166,\"ĠTalk\":12167,\"ĠSeveral\":12168,\"ĠZero\":12169,\"Ġdrone\":12170,\"ulk\":12171,\"Ġcam\":12172,\"ĠMobile\":12173,\"Ġpreventing\":12174,\"Ġretro\":12175,\"ĠAx\":12176,\"Ġcruel\":12177,\"Ġfloat\":12178,\".),\":12179,\"Ġfiling\":12180,\"ĠGrant\":12181,\"ĠBor\":12182,\"Ġrib\":12183,\"Ġchampionship\":12184,\"ĠMerc\":12185,\"Ġstyles\":12186,\"Ġcake\":12187,\"Ġbuilds\":12188,\"ĠSelf\":12189,\"iox\":12190,\"Ġepic\":12191,\"oyd\":12192,\"Bel\":12193,\"ĠStew\":12194,\".(\":12195,\"ahu\":12196,\"ĠBeyond\":12197,\"Ġouts\":12198,\"Ġsolo\":12199,\"ĠTree\":12200,\"Ġpreserve\":12201,\"Ġtub\":12202,\"ARE\":12203,\"roc\":12204,\"ĠImpro\":12205,\"ĠWright\":12206,\"Ġbund\":12207,\"Ġtraged\":12208,\"Ġoccasional\":12209,\"bian\":12210,\"Second\":12211,\"rons\":12212,\"Ġinteractions\":12213,\"formed\":12214,\"sing\":12215,\"Ġowns\":12216,\"Ġhockey\":12217,\"General\":12218,\"Ġlogical\":12219,\"Ġexpend\":12220,\"Ġescal\":12221,\"ĠGriff\":12222,\"ĠCrown\":12223,\"ĠReserve\":12224,\"Ġstopping\":12225,\"Ġexcuse\":12226,\"second\":12227,\"Ġoperated\":12228,\"Ġreaches\":12229,\"ĠMalays\":12230,\"Ġpollution\":12231,\"ĠBrooklyn\":12232,\"Ġdelete\":12233,\"Ġhash\":12234,\"Block\":12235,\"aha\":12236,\"âĢ³\":12237,\"Ġshorter\":12238,\"piece\":12239,\"></\":12240,\"Ġhorm\":12241,\"ĠWat\":12242,\"ĠBreak\":12243,\"Ġprohibited\":12244,\"Ġintensity\":12245,\"ĠAlan\":12246,\"Ġliability\":12247,\"?!\":12248,\"anded\":12249,\"Ġneighbour\":12250,\"ĠCollection\":12251,\"Ġfires\":12252,\"Ġrevolutionary\":12253,\"fly\":12254,\"ĠOrleans\":12255,\"White\":12256,\"ĠWrit\":12257,\"ĠDawn\":12258,\"Ġsettle\":12259,\"Ġexecute\":12260,\"BM\":12261,\"Ġspokeswoman\":12262,\"Ġlifestyle\":12263,\"Ġclicking\":12264,\"ĠKill\":12265,\"ĠLiberal\":12266,\"ĠNazi\":12267,\"Ġtrailer\":12268,\"Ġmountains\":12269,\"Ġdamn\":12270,\"zes\":12271,\"pes\":12272,\"Ġpressing\":12273,\"Ġbail\":12274,\"ĠOrganization\":12275,\"Ġpir\":12276,\"Ġthirty\":12277,\"Ġelectrical\":12278,\"Ġ115\":12279,\"ĠPoly\":12280,\"ĠRap\":12281,\"ĠStrike\":12282,\"ĠCann\":12283,\"Ġdemanded\":12284,\"Ġbacking\":12285,\"default\":12286,\"speed\":12287,\"ĠLegisl\":12288,\"Ġmothers\":12289,\"ĠBody\":12290,\"Ġvariation\":12291,\"cedented\":12292,\"powered\":12293,\"leading\":12294,\"Never\":12295,\"Ġgrave\":12296,\"ĠAnti\":12297,\"AW\":12298,\"Ġinterviewed\":12299,\"ĠGab\":12300,\"ĠFat\":12301,\"Ġrookie\":12302,\"uu\":12303,\"Ġdepos\":12304,\"ixon\":12305,\"Ġampl\":12306,\"retion\":12307,\"ĠHeat\":12308,\"Ġpeaceful\":12309,\"SM\":12310,\"ieve\":12311,\"Ġdiver\":12312,\"ĠVictoria\":12313,\"Ġmic\":12314,\"pdf\":12315,\"Ġstating\":12316,\"Ġlung\":12317,\"Ġcriticized\":12318,\"Ġvaccine\":12319,\"ĠLoading\":12320,\"urse\":12321,\"Take\":12322,\"ĠFran\":12323,\"ĠSold\":12324,\"ĠRobin\":12325,\"Ġdetected\":12326,\"ĠScript\":12327,\"Ġadjusted\":12328,\"Ġsenator\":12329,\"Ġopposing\":12330,\"Error\":12331,\"Count\":12332,\"Ġconflicts\":12333,\"Ġow\":12334,\"ĠArgent\":12335,\"Ġmatching\":12336,\"hh\":12337,\"ĠTrek\":12338,\"starter\":12339,\"\\\"),\":12340,\"ĠAF\":12341,\"oder\":12342,\"xxxx\":12343,\"ĠAlt\":12344,\"acre\":12345,\"ĠPick\":12346,\"ĠSolar\":12347,\"ĠDal\":12348,\"Oct\":12349,\"ĠBatt\":12350,\"Ġsrc\":12351,\"Ġengagement\":12352,\"Ġexecutives\":12353,\"Ġliberty\":12354,\"java\":12355,\"Ġtalented\":12356,\"igenous\":12357,\"Ġconsecut\":12358,\".....\":12359,\"Info\":12360,\"Ġhorrible\":12361,\"Ġsurprisingly\":12362,\"feed\":12363,\"icating\":12364,\"ĠLED\":12365,\"Ġfemales\":12366,\"Station\":12367,\"eller\":12368,\"ĠOakland\":12369,\"Ġmechanical\":12370,\"iology\":12371,\"ĠVar\":12372,\"Ġrobust\":12373,\"ettings\":12374,\"otta\":12375,\"Ġtheoret\":12376,\"Ġretain\":12377,\"kward\":12378,\"Ġda\":12379,\"Ġdeployed\":12380,\"del\":12381,\"ĠAndy\":12382,\"Ġsubscribe\":12383,\"web\":12384,\"Ġna\":12385,\"ĠMichel\":12386,\"Ġpartially\":12387,\"ĠComey\":12388,\"Ġcrown\":12389,\"ĠMaj\":12390,\"ĠBlu\":12391,\"rator\":12392,\"Day\":12393,\"INT\":12394,\"Ġdocumented\":12395,\"ĠGDP\":12396,\"gi\":12397,\"chell\":12398,\"Ġbrutal\":12399,\"ĠBab\":12400,\"stration\":12401,\"Ġtheft\":12402,\"Ġtube\":12403,\"@@\":12404,\"Ġquery\":12405,\"ĠLincoln\":12406,\"Ġpublishing\":12407,\"Ġwore\":12408,\"orical\":12409,\"Ġric\":12410,\"Ġnotable\":12411,\"Ġsubsequently\":12412,\"nex\":12413,\"Ġobserve\":12414,\"ĠBoe\":12415,\"Ġcodes\":12416,\"main\":12417,\"WH\":12418,\"ĠSL\":12419,\"Ġresidential\":12420,\"avan\":12421,\"Ġmas\":12422,\"arest\":12423,\"adeon\":12424,\"OUT\":12425,\"Ġsophistic\":12426,\"ante\":12427,\"Ġcens\":12428,\"Ġ**\":12429,\"Ġmortality\":12430,\"Ġyours\":12431,\"Ġoccasions\":12432,\"Ġrecalled\":12433,\"ĠDriver\":12434,\"Ġvocal\":12435,\"Ġbathroom\":12436,\"Ġshops\":12437,\"Ġcollaboration\":12438,\"ĠObamacare\":12439,\"ĠCell\":12440,\"Char\":12441,\"Super\":12442,\"Cre\":12443,\"Ġtends\":12444,\"Ġtorn\":12445,\"Ġeconomics\":12446,\"avery\":12447,\"ĠRaid\":12448,\"ĠSem\":12449,\"Ġshoulders\":12450,\"Ġexpecting\":12451,\"Ġexamination\":12452,\"ename\":12453,\"ĠUI\":12454,\"iability\":12455,\"olas\":12456,\"ĠAmb\":12457,\"ĠDra\":12458,\"Ġmidfield\":12459,\"ĠIC\":12460,\"Ġlayout\":12461,\"Ġfloating\":12462,\"fi\":12463,\"itative\":12464,\"Ġtremendous\":12465,\"ĠÐ\":12466,\"Ġabund\":12467,\"Work\":12468,\"ĠLightning\":12469,\"Ġsimilarly\":12470,\"Ġconservatives\":12471,\"Ġpray\":12472,\"BE\":12473,\"izarre\":12474,\"Ġtempt\":12475,\"Ġemphasis\":12476,\"ĠMetro\":12477,\"Ġfishing\":12478,\"Ġmarry\":12479,\"neg\":12480,\"ĠStudy\":12481,\"Ġreck\":12482,\"Ġdispos\":12483,\"oning\":12484,\"bsite\":12485,\"Ġsuspic\":12486,\"Ġmerch\":12487,\"ĠGib\":12488,\"ĠDescription\":12489,\"ĠDVD\":12490,\"whe\":12491,\"ĠYemen\":12492,\"Ġenvironments\":12493,\"ooting\":12494,\"ĠModern\":12495,\"eu\":12496,\"Ġreflects\":12497,\"Ġhoney\":12498,\"Ġanalyst\":12499,\"Ġgut\":12500,\"dec\":12501,\"Action\":12502,\"Ġhouseholds\":12503,\"Ġster\":12504,\"Ġtemple\":12505,\"Ġreforms\":12506,\"Ġfavourite\":12507,\"Ġdeadline\":12508,\"ĠLE\":12509,\"Three\":12510,\"ĠWithin\":12511,\"Aug\":12512,\"Ġnights\":12513,\"elta\":12514,\"Ġinvalid\":12515,\"ĠExchange\":12516,\"ĠDelhi\":12517,\"when\":12518,\"income\":12519,\"ĠðŁ\":12520,\"Ġwireless\":12521,\"scribe\":12522,\"ista\":12523,\"Ġhostile\":12524,\"Ġally\":12525,\"Ġgig\":12526,\"Ġoutlets\":12527,\"ĠDor\":12528,\"EMENT\":12529,\"Ġash\":12530,\"Ġabstract\":12531,\"ORD\":12532,\"ĠMotor\":12533,\"Ġadviser\":12534,\"istle\":12535,\"Ġbases\":12536,\"Ġcourtesy\":12537,\"Ġcrossing\":12538,\"Ġcleared\":12539,\"Ġrefugee\":12540,\"cosystem\":12541,\"Ġthrows\":12542,\"fun\":12543,\"bourne\":12544,\"days\":12545,\"Ġdisagree\":12546,\"ĠNative\":12547,\"Ġreflected\":12548,\"ĠFast\":12549,\"ĠYellow\":12550,\"ĠSingapore\":12551,\"ĠRaven\":12552,\"Ġembrace\":12553,\"ĠKu\":12554,\"ĠChen\":12555,\"ĠEarly\":12556,\"Ġappointment\":12557,\"ĠMini\":12558,\"itement\":12559,\"Ġplacing\":12560,\"Ġbicy\":12561,\"SR\":12562,\"Ġwhis\":12563,\"SU\":12564,\"Ġinvestigated\":12565,\"Ġphotographs\":12566,\"github\":12567,\"ĠBeat\":12568,\"ĠRing\":12569,\"ighed\":12570,\"iar\":12571,\"Ġevolved\":12572,\"erald\":12573,\"Ġdun\":12574,\"Ġhub\":12575,\"IAL\":12576,\"Ġencouraging\":12577,\"ĠPrint\":12578,\"ĠDays\":12579,\"Ġprosecution\":12580,\"Ġpants\":12581,\"azy\":12582,\"live\":12583,\"Ġfossil\":12584,\"ĠJu\":12585,\"Ġrocks\":12586,\"udge\":12587,\"ĠRace\":12588,\"Ġgreet\":12589,\"bie\":12590,\"Ġfilling\":12591,\"ĠLen\":12592,\"Ġdiabetes\":12593,\"Ġfirearms\":12594,\"uming\":12595,\"enezuel\":12596,\"ĠBB\":12597,\"Ġaccepting\":12598,\"ATH\":12599,\"Ġresort\":12600,\"Ġhunt\":12601,\"rik\":12602,\"ucker\":12603,\"aments\":12604,\"Ġsustained\":12605,\"Ġcrossed\":12606,\"Ġbreakfast\":12607,\"Ġattributes\":12608,\"lected\":12609,\"atile\":12610,\"Ġvibr\":12611,\"ĠKal\":12612,\"arson\":12613,\"oples\":12614,\"Ġtouched\":12615,\"Ġdamages\":12616,\"Ġimpressed\":12617,\"rup\":12618,\"Ġanch\":12619,\"ĠAdams\":12620,\"Hel\":12621,\"ĠVictor\":12622,\"Ġmounted\":12623,\"ĠCC\":12624,\"Ġdelicious\":12625,\"span\":12626,\"ella\":12627,\"Ġelabor\":12628,\"amples\":12629,\"Ġdefic\":12630,\"Ġconstitu\":12631,\"uates\":12632,\"ĠMission\":12633,\"ĠTher\":12634,\"ĠMonster\":12635,\"bes\":12636,\"Reuters\":12637,\"ĠIndones\":12638,\"hill\":12639,\"munition\":12640,\"Ġconfirmation\":12641,\"ĠConsider\":12642,\"acent\":12643,\"Ġjet\":12644,\"ĠEmploy\":12645,\"ĠGTX\":12646,\"nan\":12647,\"ĠSpider\":12648,\"Ġprocessor\":12649,\"Ġpatri\":12650,\"ĠPentagon\":12651,\"ĠRobinson\":12652,\"Ġrealistic\":12653,\"Ã±\":12654,\"Ġappearing\":12655,\"Ġpipe\":12656,\"omed\":12657,\"Ġfru\":12658,\"Ġawful\":12659,\"Ġevaluation\":12660,\"Ġintelligent\":12661,\"ĠCitiz\":12662,\"Ġfundra\":12663,\"odium\":12664,\"Ġtweets\":12665,\"Ġworn\":12666,\"pring\":12667,\"Ġkidn\":12668,\"Ġrebels\":12669,\"ĠKam\":12670,\"ĠNetherlands\":12671,\"ĠSW\":12672,\"Ġacquisition\":12673,\"ĠMale\":12674,\"ãĥª\":12675,\"ombies\":12676,\"Ġtradem\":12677,\"ĠStatus\":12678,\"Bre\":12679,\"ĠTHIS\":12680,\"Ġadverse\":12681,\"ĠNEW\":12682,\"sign\":12683,\"Ġorganisation\":12684,\"enc\":12685,\"ĠHarper\":12686,\"apor\":12687,\"ĠMembers\":12688,\"ĠPeace\":12689,\"ĠAirport\":12690,\"ĠOthers\":12691,\"Ġscratch\":12692,\"ĠPil\":12693,\"Ġsensor\":12694,\"Ġadoption\":12695,\"ĠHotel\":12696,\"ĠDrag\":12697,\"Ġhonestly\":12698,\"Ġyard\":12699,\"ĠForces\":12700,\"Ġpatent\":12701,\"Ġbass\":12702,\"Ġquietly\":12703,\"Ġbreathing\":12704,\"Ġpose\":12705,\"iors\":12706,\"ĠJess\":12707,\"static\":12708,\"ITE\":12709,\"Offic\":12710,\"Ġjew\":12711,\"wcs\":12712,\"Ġ140\":12713,\"Ġpreview\":12714,\"ippi\":12715,\"Ġunfortunately\":12716,\"okemon\":12717,\"Ġhorn\":12718,\"Ġreass\":12719,\"Ġpeer\":12720,\"ocker\":12721,\"Ġunto\":12722,\"ĠGray\":12723,\"Ġcleaning\":12724,\"Ġattracted\":12725,\"2007\":12726,\"Point\":12727,\"kill\":12728,\"ĠAgreement\":12729,\"urches\":12730,\"Ġhorr\":12731,\"ĠMississ\":12732,\"Ġworthy\":12733,\"Ġflowers\":12734,\"town\":12735,\"dll\":12736,\"Ġreactions\":12737,\"Ġdece\":12738,\"Ġindicating\":12739,\"MD\":12740,\"Ġpreference\":12741,\"ĠMVP\":12742,\"essional\":12743,\"ĠTarget\":12744,\"gence\":12745,\"ĠIndians\":12746,\"Ġmisc\":12747,\"Ġfreely\":12748,\"Ġmuscles\":12749,\"Ġlineup\":12750,\"Ġimpacts\":12751,\"ousing\":12752,\"omi\":12753,\"acular\":12754,\"Ġcontrolling\":12755,\"agine\":12756,\"cery\":12757,\"hell\":12758,\"Ġranking\":12759,\"ĠNich\":12760,\"ĠAve\":12761,\"128\":12762,\"Ġhighway\":12763,\"Ġincons\":12764,\"Ġbinding\":12765,\"Ġstruggles\":12766,\"ĠPittsburgh\":12767,\"Ġgray\":12768,\"rin\":12769,\"Ġcomics\":12770,\"ĠSport\":12771,\"Ġrelatives\":12772,\"Ġfright\":12773,\"Ġprobe\":12774,\"ĠPortug\":12775,\"Ġvoc\":12776,\"Ġtu\":12777,\"ĠCorps\":12778,\"Ġpossibilities\":12779,\"Ġqualify\":12780,\"wcsstore\":12781,\"Ġlibraries\":12782,\"Ġmigrants\":12783,\"Ġentries\":12784,\"Ġconsecutive\":12785,\"vals\":12786,\"ĠChairman\":12787,\"Ġhill\":12788,\"IME\":12789,\"ĠGard\":12790,\"Ġinequality\":12791,\"fox\":12792,\"ĠSave\":12793,\"Ġcort\":12794,\"claimed\":12795,\"Ġtraits\":12796,\"Ġpour\":12797,\"Ġmissiles\":12798,\"Ġessence\":12799,\"Ġsends\":12800,\"Ġalliance\":12801,\"Ġwishes\":12802,\"ĠChristopher\":12803,\"Big\":12804,\"NY\":12805,\"ĠJacob\":12806,\"san\":12807,\"urred\":12808,\"ĠSO\":12809,\"lly\":12810,\"Ġadvocate\":12811,\"ĠBond\":12812,\"Ġ\\\"/\":12813,\"Using\":12814,\"Ġdistricts\":12815,\"ĠGate\":12816,\"ĠBir\":12817,\"ridge\":12818,\"ĠNaz\":12819,\"ĠRs\":12820,\"boards\":12821,\"ĠGa\":12822,\"ĠReagan\":12823,\"Ġinfluenced\":12824,\"1000\":12825,\"apy\":12826,\"Ġchallenged\":12827,\"Ġbarg\":12828,\"Ġfaculty\":12829,\"ĠFif\":12830,\"Ġacquire\":12831,\"Ac\":12832,\"Ġinsect\":12833,\"Ġinstruments\":12834,\"Ġleaf\":12835,\"thodox\":12836,\"Message\":12837,\"Ġtale\":12838,\"Ġthereby\":12839,\"Ġtrap\":12840,\"Ġstrongest\":12841,\"ĠMilitary\":12842,\"isible\":12843,\"Ġ1984\":12844,\"etheless\":12845,\"Ġflexible\":12846,\"Ġkills\":12847,\"Ġfinishing\":12848,\"ĠSize\":12849,\"Ġreduces\":12850,\"Ġepid\":12851,\"Ġorientation\":12852,\"full\":12853,\"Ġtrace\":12854,\"Ġlaser\":12855,\"Ġoppose\":12856,\"Ġediting\":12857,\"Ġmomentum\":12858,\"äº\":12859,\"show\":12860,\"VI\":12861,\"ĠLad\":12862,\"Ġ1985\":12863,\"Ġmurdered\":12864,\"900\":12865,\"uther\":12866,\"Ġprobability\":12867,\"ĠPoll\":12868,\"Ġreluct\":12869,\"ĠChem\":12870,\"ĠMontreal\":12871,\"Ġadequate\":12872,\"ĠPoland\":12873,\"ĠSheriff\":12874,\"umph\":12875,\"Ġok\":12876,\"Ġ000\":12877,\"Ġ\\\"[\":12878,\"Ġoperators\":12879,\"ĠFer\":12880,\"Ġmodes\":12881,\"ĠEve\":12882,\"Ġdiscipline\":12883,\"NET\":12884,\"Hand\":12885,\"Ġoral\":12886,\"ĠWE\":12887,\"email\":12888,\"JP\":12889,\"ĠPalestinians\":12890,\"Ġhence\":12891,\"ĠLess\":12892,\"Ġoverl\":12893,\"dig\":12894,\"Ġintimid\":12895,\"ĠCoal\":12896,\"Ġranging\":12897,\"tha\":12898,\"Ġdistant\":12899,\"Ġfib\":12900,\"ĠIndex\":12901,\"ĠWonder\":12902,\"ĠPel\":12903,\"hattan\":12904,\"ĠHug\":12905,\"ÃĹ\":12906,\"rait\":12907,\"Ġwrapped\":12908,\"ĠRPG\":12909,\"Ġchemicals\":12910,\"ĠMoney\":12911,\"Ġfrozen\":12912,\"Ġindirect\":12913,\"ĠAgainst\":12914,\"End\":12915,\"Ġuncomfortable\":12916,\"ĠGallery\":12917,\"ĠPosted\":12918,\"Ø§\":12919,\"onduct\":12920,\"Ġconsequence\":12921,\"Ġbitter\":12922,\"Ġ1987\":12923,\"pop\":12924,\"Ġcountless\":12925,\"ĠAlaska\":12926,\"ffff\":12927,\"Ġdeparture\":12928,\"Ġrefund\":12929,\"ĠIan\":12930,\"iated\":12931,\"Ġseeks\":12932,\"Ġmechanics\":12933,\"Ġjurisdiction\":12934,\"lynn\":12935,\"Ġalike\":12936,\"ĠHunt\":12937,\"athon\":12938,\"Ġresolved\":12939,\"Ġcache\":12940,\"Ġdistinction\":12941,\"direct\":12942,\"Ġencount\":12943,\"oub\":12944,\"beat\":12945,\"ĠCountry\":12946,\"search\":12947,\"Ġcontinuous\":12948,\"Ġmodest\":12949,\"ĠRail\":12950,\"thood\":12951,\"130\":12952,\"BUG\":12953,\"Ġcriminals\":12954,\"Ġindication\":12955,\"Ġencountered\":12956,\"last\":12957,\"ĠWy\":12958,\"Ġideology\":12959,\"ĠPDF\":12960,\"security\":12961,\"])\":12962,\"ĠJimmy\":12963,\"ĠEN\":12964,\"Ġhiring\":12965,\"Tem\":12966,\"Ġpig\":12967,\"aunt\":12968,\"ĠCrystal\":12969,\"Ġpenalties\":12970,\"Ġcapability\":12971,\"Ġpy\":12972,\"Ġproductive\":12973,\"Ġbalanced\":12974,\"ĠGeForce\":12975,\"click\":12976,\"olitan\":12977,\"ods\":12978,\"Ġafterwards\":12979,\"Ġplayoffs\":12980,\"ĠGill\":12981,\"User\":12982,\"Ġbacks\":12983,\"pub\":12984,\"tag\":12985,\"Ġabsurd\":12986,\"piring\":12987,\"Ġciting\":12988,\"Ġtrillion\":12989,\"Ġobligation\":12990,\"Ġmaxim\":12991,\"ahoo\":12992,\"cf\":12993,\"umi\":12994,\"ĠAlpha\":12995,\"ĠNelson\":12996,\"Ġpursuant\":12997,\"initely\":12998,\"Ġfract\":12999,\"entry\":13000,\"bery\":13001,\"ĠThor\":13002,\"Added\":13003,\"ĠDJ\":13004,\"ĠGene\":13005,\"Ġawkward\":13006,\"Stud\":13007,\"Ġwallet\":13008,\"ĠDivine\":13009,\"arios\":13010,\"Ġreleasing\":13011,\"Ġedited\":13012,\"Ġaccomplished\":13013,\"Best\":13014,\"Ġedges\":13015,\"Ġplanes\":13016,\"Ġfeeding\":13017,\"\\\"},\\\"\":13018,\"Ġdisclosure\":13019,\"Ġgrain\":13020,\"airy\":13021,\"oons\":13022,\"ernand\":13023,\"VR\":13024,\"Ġreasonably\":13025,\"Ġdrum\":13026,\"Ġpartial\":13027,\"Ġgraphic\":13028,\"Ġunprecedented\":13029,\"Ġadvised\":13030,\"Micro\":13031,\"ĠAssad\":13032,\"points\":13033,\"scar\":13034,\"ĠZone\":13035,\"ttes\":13036,\"Ġ700\":13037,\"vo\":13038,\"ĠHamp\":13039,\"Ġfixes\":13040,\"Ġcaution\":13041,\"Ġstrings\":13042,\"Ġpanels\":13043,\"Ġleak\":13044,\"Ġpricing\":13045,\"rowth\":13046,\"ĠError\":13047,\"ĠSaints\":13048,\"fix\":13049,\"Ġobservations\":13050,\"ĠAbs\":13051,\"Ġsuggestion\":13052,\"ĠUkrainian\":13053,\"Ġbarrier\":13054,\"Ġpainted\":13055,\"Bet\":13056,\"imir\":13057,\"ĠSpect\":13058,\"pot\":13059,\"orneys\":13060,\"Ġcompound\":13061,\"Ġbears\":13062,\"ĠRush\":13063,\"Ġluxury\":13064,\"Sum\":13065,\"Ġorbit\":13066,\"ĠMarc\":13067,\"Ġexempt\":13068,\"ĠTrail\":13069,\"ĠMO\":13070,\"ĠHans\":13071,\"ĠWeapon\":13072,\"ocused\":13073,\"uminum\":13074,\"ĠJerry\":13075,\"Ġbust\":13076,\"ĠAG\":13077,\"ĠWiki\":13078,\"Ġendless\":13079,\"ĠVlad\":13080,\"ĠBah\":13081,\"ĠRadeon\":13082,\"keys\":13083,\"ĠSurvey\":13084,\"ĠViol\":13085,\"define\":13086,\"lean\":13087,\"Ġcommod\":13088,\"Ġrevenues\":13089,\"Åį\":13090,\"Ġfurniture\":13091,\"Ġcasting\":13092,\"Ġdiplomatic\":13093,\"ĠPlayers\":13094,\"ĠKilled\":13095,\"Ġmodify\":13096,\"Ġinnovative\":13097,\"ĠAbu\":13098,\"nor\":13099,\"Ġbonds\":13100,\"Ġcoaching\":13101,\"Mer\":13102,\"Ġmodules\":13103,\"ĠPatriots\":13104,\"Ġenhanced\":13105,\"Ġproceedings\":13106,\"Ġteammates\":13107,\"Ġ128\":13108,\"ardo\":13109,\"Ġcompromise\":13110,\"ĠMuch\":13111,\"Ġflew\":13112,\"ĠEdge\":13113,\"Ġunnecessary\":13114,\"Ġdoctrine\":13115,\"report\":13116,\"ĠOrlando\":13117,\"ĠProfile\":13118,\"Ġplayoff\":13119,\"friendly\":13120,\"Ġcomplain\":13121,\"ĠMC\":13122,\"ĠOpt\":13123,\"ĠGB\":13124,\"Ġbeaten\":13125,\"Ġgolf\":13126,\"Ġplacement\":13127,\"Bit\":13128,\"Ġnewsletter\":13129,\"Ġ2019\":13130,\"visor\":13131,\"rawl\":13132,\"ĠiPad\":13133,\"Ġacted\":13134,\"Ġjuice\":13135,\"Ġdecks\":13136,\"PN\":13137,\"success\":13138,\"ĠHalf\":13139,\"Ġdeleted\":13140,\"Ġsecrets\":13141,\"Ġasylum\":13142,\"Mart\":13143,\"ĠActiv\":13144,\"ĠGuy\":13145,\"ĠTs\":13146,\"Ġdys\":13147,\"Ġassuming\":13148,\"Ġmana\":13149,\"Ġsubur\":13150,\"Ġ125\":13151,\"Media\":13152,\"ARY\":13153,\"ride\":13154,\"cp\":13155,\"Ġdifficulties\":13156,\"Ġcollecting\":13157,\"Ġbankrupt\":13158,\"non\":13159,\"Ġcomposed\":13160,\"Ġvolt\":13161,\"Ġmilitants\":13162,\"Ġ>>>\":13163,\"ĠMormon\":13164,\"tor\":13165,\"Ġparticles\":13166,\"ĠBart\":13167,\"ryption\":13168,\"Ġadmin\":13169,\"Ġsquee\":13170,\"VIDIA\":13171,\"Ġcreator\":13172,\"iameter\":13173,\"icular\":13174,\"NBC\":13175,\"Ġgrabbed\":13176,\"Ġnodd\":13177,\"Ġrated\":13178,\"Ġrotation\":13179,\"Ġgrasp\":13180,\"Ġexcessive\":13181,\"ĠEC\":13182,\"ĠWhit\":13183,\"Ġinventory\":13184,\"aults\":13185,\"ĠFB\":13186,\"Ġecosystem\":13187,\"Ġbillions\":13188,\"Ġventure\":13189,\"named\":13190,\"Ġdefender\":13191,\"oute\":13192,\"Instead\":13193,\"irable\":13194,\"War\":13195,\"Ġassumption\":13196,\"Ġbite\":13197,\"Ġearthqu\":13198,\"tail\":13199,\"space\":13200,\"Ġgifts\":13201,\"boys\":13202,\"Ġinevitable\":13203,\"Ġstructural\":13204,\"Ġbeneficial\":13205,\"Ġcompelling\":13206,\"hole\":13207,\"ervation\":13208,\"Ġcoat\":13209,\"oj\":13210,\"incarn\":13211,\"ĠYears\":13212,\"Ġdetermining\":13213,\"Ġrhetoric\":13214,\"Ġboundaries\":13215,\"Ġwhites\":13216,\"Ant\":13217,\"addy\":13218,\")-\":13219,\"raham\":13220,\"etermin\":13221,\"Ġharvest\":13222,\"ĠConc\":13223,\"Ġlaptop\":13224,\"ĠMatch\":13225,\"Ġenjoying\":13226,\"cca\":13227,\"ollar\":13228,\"Ġtrips\":13229,\"Ġaddiction\":13230,\"ĠSak\":13231,\"Ġpowered\":13232,\"Ġcous\":13233,\"ĠRussians\":13234,\"iere\":13235,\"Ġretrie\":13236,\"quality\":13237,\"Ġdiffer\":13238,\"Ġkingdom\":13239,\"ĠLaur\":13240,\"ĠCapitol\":13241,\"Ġconclusions\":13242,\"ĠAltern\":13243,\"ĠNav\":13244,\"Ġtransparent\":13245,\"BER\":13246,\"Group\":13247,\"ĠComplete\":13248,\"Ġinfer\":13249,\"Ġintrig\":13250,\"Ġinsane\":13251,\"RO\":13252,\"ophob\":13253,\"isen\":13254,\"qual\":13255,\"Michael\":13256,\"Ġmuseum\":13257,\"ĠPope\":13258,\"Ġreset\":13259,\"rative\":13260,\"five\":13261,\"Ġaggreg\":13262,\"ittees\":13263,\"ository\":13264,\"Ġcarb\":13265,\"ĠRecord\":13266,\"Ġdecides\":13267,\"ĠFix\":13268,\"Ġexceptions\":13269,\"ĠCommissioner\":13270,\"uns\":13271,\"ĠEnvironmental\":13272,\"Ġlegendary\":13273,\"istence\":13274,\"Ġtunnel\":13275,\"km\":13276,\"Ġinsult\":13277,\"Ġtroll\":13278,\"Ġshake\":13279,\"Ġdetention\":13280,\"ques\":13281,\"ĠChrome\":13282,\"ĠFiles\":13283,\"Ġsubt\":13284,\"Ġprospects\":13285,\"Ġprol\":13286,\"render\":13287,\"proof\":13288,\"Ġperformances\":13289,\"Str\":13290,\"Ġhref\":13291,\"ername\":13292,\"Ġachievement\":13293,\"Ġfut\":13294,\"Full\":13295,\"ĠLeban\":13296,\"google\":13297,\"ãĥĪ\":13298,\"ampa\":13299,\"Maybe\":13300,\"Ġprojected\":13301,\"ĠEmb\":13302,\"Ġcolleg\":13303,\"Ġawards\":13304,\"ĠâĶ\":13305,\"Gold\":13306,\"ĠBlake\":13307,\"ĠRaj\":13308,\"ifting\":13309,\"Ġpending\":13310,\"Ġinstinct\":13311,\"Ġdevelopments\":13312,\"Connect\":13313,\"ĠMand\":13314,\"ĠWITH\":13315,\"ĠPhilippines\":13316,\"profile\":13317,\"Ġaltogether\":13318,\"ĠBund\":13319,\"ĠTD\":13320,\"oooo\":13321,\"amped\":13322,\"iph\":13323,\"Ġsteam\":13324,\"Ġoldest\":13325,\"Ġdetection\":13326,\"ulpt\":13327,\"Ġç\":13328,\"ĠWayne\":13329,\"2006\":13330,\"fa\":13331,\"Ġcircles\":13332,\"ĠFu\":13333,\"Ġdonors\":13334,\"appropriate\":13335,\"ĠDakota\":13336,\"jamin\":13337,\"Ġmotivated\":13338,\"Ġpurchases\":13339,\"ĠLouisiana\":13340,\"ĠSpl\":13341,\"Ġglobe\":13342,\"Ġ105\":13343,\"zip\":13344,\"call\":13345,\"Ġdepartments\":13346,\"Ġsustainable\":13347,\"105\":13348,\"ĠOP\":13349,\"ifiers\":13350,\"Ġprevented\":13351,\"Ġincomp\":13352,\"ĠCommander\":13353,\"Ġdominated\":13354,\"ĠÂ»\":13355,\"Ġinvested\":13356,\"Ġcomplexity\":13357,\"Ġincl\":13358,\"Ġensuring\":13359,\"Ġrealm\":13360,\"ync\":13361,\"ĠIndependent\":13362,\"rained\":13363,\"ĠJen\":13364,\"ĠFlight\":13365,\"Ġathe\":13366,\"Ġspeculation\":13367,\"ĠTE\":13368,\"ocate\":13369,\"tic\":13370,\"Ġplaint\":13371,\"herry\":13372,\"Ġtoy\":13373,\"Ġ111\":13374,\"Ġplates\":13375,\"status\":13376,\"ĠIsa\":13377,\"Ġdevoted\":13378,\"Cop\":13379,\"ĠES\":13380,\"255\":13381,\"urrency\":13382,\"Main\":13383,\"Ġslaves\":13384,\"Ġpepper\":13385,\"Ġquotes\":13386,\"Ġceiling\":13387,\"ĠFish\":13388,\"Ġtransformation\":13389,\"Ġfraction\":13390,\"Ġadvantages\":13391,\"Ġtoile\":13392,\"Ġstunning\":13393,\"Ġmoist\":13394,\"breaking\":13395,\"si\":13396,\"ĠLocation\":13397,\"ĠMedium\":13398,\"Ġtexts\":13399,\"Ġugly\":13400,\"Ġbio\":13401,\".âĢĶ\":13402,\"ĠBased\":13403,\"Ġtrains\":13404,\"ĠWing\":13405,\"ĠAncient\":13406,\"ĠRecords\":13407,\"ĠHope\":13408,\"Special\":13409,\"adesh\":13410,\"obi\":13411,\"[/\":13412,\"Ġtemporarily\":13413,\"Ver\":13414,\"hu\":13415,\"oser\":13416,\"Ġovernight\":13417,\"Ġmamm\":13418,\"ĠTreasury\":13419,\"ĠVenezuel\":13420,\"ĠMega\":13421,\"Ġtar\":13422,\"Ġexpects\":13423,\"black\":13424,\"orph\":13425,\"\\\\\\\\\\\\\\\\\":13426,\"Ġacceptance\":13427,\"Ġradar\":13428,\"sis\":13429,\"Ġjunior\":13430,\"Ġframes\":13431,\"Ġobservation\":13432,\"acies\":13433,\"Power\":13434,\"ĠAdvanced\":13435,\"Mag\":13436,\"ologically\":13437,\"ĠMechan\":13438,\"Ġsentences\":13439,\"Ġanalysts\":13440,\"aughters\":13441,\"forcement\":13442,\"Ġvague\":13443,\"Ġclause\":13444,\"Ġdirectors\":13445,\"Ġevaluate\":13446,\"Ġcabinet\":13447,\"Matt\":13448,\"ĠClassic\":13449,\"Ang\":13450,\"Ġcler\":13451,\"ĠBuck\":13452,\"Ġresearcher\":13453,\"Ġ160\":13454,\"Ġpoorly\":13455,\"Ġexperiencing\":13456,\"ĠPed\":13457,\"ĠManhattan\":13458,\"Ġfreed\":13459,\"Ġthemes\":13460,\"advant\":13461,\"Ġnin\":13462,\"Ġpraise\":13463,\"104\":13464,\"ĠLibya\":13465,\"best\":13466,\"Ġtrusted\":13467,\"Ġcease\":13468,\"Ġdign\":13469,\"Direct\":13470,\"Ġbombing\":13471,\"Ġmigration\":13472,\"ĠSciences\":13473,\"Ġmunicipal\":13474,\"ĠAverage\":13475,\"Ġglory\":13476,\"Ġrevealing\":13477,\"Ġarena\":13478,\"Ġuncertainty\":13479,\"Ġbattlefield\":13480,\"iao\":13481,\"God\":13482,\"Ġcinem\":13483,\"rape\":13484,\"elle\":13485,\"apons\":13486,\"Ġlisting\":13487,\"Ġwaited\":13488,\"Ġspotted\":13489,\"keley\":13490,\"ĠAudio\":13491,\"eor\":13492,\"arding\":13493,\"idding\":13494,\"igma\":13495,\"ĠNeg\":13496,\"Ġlone\":13497,\"Ġ----\":13498,\"exe\":13499,\"deg\":13500,\"Ġtransf\":13501,\"Ġwash\":13502,\"Ġslavery\":13503,\"Ġexploring\":13504,\"ĠWW\":13505,\"atson\":13506,\"Ġencl\":13507,\"lies\":13508,\"ĠCreek\":13509,\"Ġwooden\":13510,\"Manager\":13511,\"ĠBrand\":13512,\"ummy\":13513,\"ĠArthur\":13514,\"Ġbureaucr\":13515,\"Ġblend\":13516,\"arians\":13517,\"Further\":13518,\"Ġsupposedly\":13519,\"Ġwinds\":13520,\"Ġ1979\":13521,\"Ġgravity\":13522,\"Ġanalyses\":13523,\"ĠTravel\":13524,\"ĠVeter\":13525,\"Ġdumb\":13526,\"Ġalternate\":13527,\"gal\":13528,\"Ġconsumed\":13529,\"Ġeffectiveness\":13530,\".''\":13531,\"Ġpaths\":13532,\"onda\":13533,\"LA\":13534,\"ĠStrong\":13535,\"Ġenables\":13536,\"Ġescaped\":13537,\"Ġ\\\"\\\"\":13538,\"Ġ112\":13539,\"Ġ1983\":13540,\"Ġsmiled\":13541,\"Ġtendency\":13542,\"Fire\":13543,\"Ġpars\":13544,\"ĠRoc\":13545,\"Ġlake\":13546,\"Ġfitness\":13547,\"ĠAth\":13548,\"ĠHorn\":13549,\"Ġhier\":13550,\"Ġimpose\":13551,\"mother\":13552,\"Ġpension\":13553,\"icut\":13554,\"borne\":13555,\"iciary\":13556,\"._\":13557,\"ĠSU\":13558,\"Ġpolar\":13559,\"isy\":13560,\"engu\":13561,\"itialized\":13562,\"ATA\":13563,\"write\":13564,\"Ġexercises\":13565,\"ĠDiamond\":13566,\"otypes\":13567,\"Ġharmful\":13568,\"onz\":13569,\"Ġprinting\":13570,\"story\":13571,\"Ġexpertise\":13572,\"ĠGer\":13573,\"Ġtragedy\":13574,\"ĠFly\":13575,\"Ġdivid\":13576,\"ampire\":13577,\"stock\":13578,\"Mem\":13579,\"Ġreign\":13580,\"Ġunve\":13581,\"Ġamend\":13582,\"ĠProphet\":13583,\"Ġmutual\":13584,\"ĠFac\":13585,\"Ġreplacing\":13586,\"Har\":13587,\"ĠCircuit\":13588,\"Ġthroat\":13589,\"ĠShot\":13590,\"Ġbatteries\":13591,\"Ġtoll\":13592,\"Ġaddressing\":13593,\"ĠMedicaid\":13594,\"Ġpupp\":13595,\"ĠNar\":13596,\"olk\":13597,\"Ġequity\":13598,\"MR\":13599,\"ĠHispan\":13600,\"ĠLarge\":13601,\"mid\":13602,\"Dev\":13603,\"Ġexped\":13604,\"Ġdemo\":13605,\"ĠMarshall\":13606,\"ergus\":13607,\"Ġfiber\":13608,\"Ġdivorce\":13609,\"ĠCreate\":13610,\"Ġslower\":13611,\"ĠParker\":13612,\"ĠStudent\":13613,\"ĠTraining\":13614,\"Return\":13615,\"ĠTru\":13616,\"Ġcub\":13617,\"ĠReached\":13618,\"Ġpanic\":13619,\"Ġquarters\":13620,\"Ġrect\":13621,\"Ġtreating\":13622,\"Ġrats\":13623,\"ĠChristianity\":13624,\"oler\":13625,\"Ġsacred\":13626,\"Ġdeclare\":13627,\"ulative\":13628,\"eting\":13629,\"Ġdelivering\":13630,\"estone\":13631,\"Ġtel\":13632,\"ĠLarry\":13633,\"Ġmeta\":13634,\"accept\":13635,\"artz\":13636,\"ĠRoger\":13637,\"handed\":13638,\"Ġheader\":13639,\"Ġtrapped\":13640,\"ĠCentury\":13641,\"Ġknocked\":13642,\"ĠOxford\":13643,\"Ġsurvivors\":13644,\"bot\":13645,\"Ġdemonstration\":13646,\"Ġdirt\":13647,\"Ġassists\":13648,\"OME\":13649,\"ĠDraft\":13650,\"ortunate\":13651,\"folio\":13652,\"pered\":13653,\"usters\":13654,\"gt\":13655,\"ĠLock\":13656,\"Ġjudicial\":13657,\"verted\":13658,\"Ġsecured\":13659,\"outing\":13660,\"ĠBooks\":13661,\"Ġhosting\":13662,\"Ġlifted\":13663,\"length\":13664,\"Ġjer\":13665,\"Ġwheels\":13666,\"ĠRange\":13667,\"umbnails\":13668,\"Ġdiagnosis\":13669,\"tech\":13670,\"ĠStewart\":13671,\"ĠPract\":13672,\"Ġnationwide\":13673,\"Ġdear\":13674,\"Ġobligations\":13675,\"Ġgrows\":13676,\"Ġmandatory\":13677,\"Ġsuspicious\":13678,\"!'\":13679,\"Apr\":13680,\"Great\":13681,\"Ġmortgage\":13682,\"Ġprosecutor\":13683,\"Ġeditorial\":13684,\"ĠKr\":13685,\"Ġprocessed\":13686,\"ungle\":13687,\"Ġflexibility\":13688,\"Earlier\":13689,\"ĠCart\":13690,\"ĠSug\":13691,\"Ġfocuses\":13692,\"Ġstartup\":13693,\"Ġbreach\":13694,\"ĠTob\":13695,\"cycle\":13696,\"ãĢĮ\":13697,\"rose\":13698,\"Ġbizarre\":13699,\"ãĢį\":13700,\"Ġvegetables\":13701,\"$$\":13702,\"Ġretreat\":13703,\"oshi\":13704,\"ĠShop\":13705,\"ĠGround\":13706,\"ĠStop\":13707,\"ĠHawaii\":13708,\"ĠAy\":13709,\"Perhaps\":13710,\"ĠBeaut\":13711,\"uffer\":13712,\"enna\":13713,\"Ġproductivity\":13714,\"Fixed\":13715,\"control\":13716,\"Ġabsent\":13717,\"ĠCampaign\":13718,\"Green\":13719,\"Ġidentifying\":13720,\"Ġregret\":13721,\"Ġpromoted\":13722,\"ĠSeven\":13723,\"Ġeru\":13724,\"neath\":13725,\"aughed\":13726,\"ĠPin\":13727,\"ĠLiving\":13728,\"Cost\":13729,\"omatic\":13730,\"mega\":13731,\"ĠNig\":13732,\"ocy\":13733,\"Ġinbox\":13734,\"Ġempire\":13735,\"Ġhorizont\":13736,\"Ġbranches\":13737,\"Ġmetaph\":13738,\"Active\":13739,\"edi\":13740,\"ĠFilm\":13741,\"ĠSomething\":13742,\"Ġmods\":13743,\"incial\":13744,\"ĠOriginal\":13745,\"Gen\":13746,\"Ġspirits\":13747,\"Ġearning\":13748,\"Hist\":13749,\"Ġriders\":13750,\"Ġsacrific\":13751,\"MT\":13752,\"ĠVA\":13753,\"ĠSalt\":13754,\"Ġoccupation\":13755,\"ĠMi\":13756,\"Ġdisg\":13757,\"lict\":13758,\"Ġnit\":13759,\"Ġnodes\":13760,\"eem\":13761,\"ĠPier\":13762,\"Ġhatred\":13763,\"psy\":13764,\"ãĥī\":13765,\"Ġtheater\":13766,\"Ġsophisticated\":13767,\"Ġdefended\":13768,\"Ġbesides\":13769,\"Ġthoroughly\":13770,\"ĠMedicare\":13771,\"Ġblamed\":13772,\"arently\":13773,\"Ġcrying\":13774,\"FOR\":13775,\"priv\":13776,\"Ġsinging\":13777,\"ĠIl\":13778,\"Ġcute\":13779,\"oided\":13780,\"olitical\":13781,\"ĠNeuro\":13782,\"å¤\":13783,\"Ġdonation\":13784,\"ĠEagles\":13785,\"ĠGive\":13786,\"Tom\":13787,\"Ġsubstantially\":13788,\"ĠLicense\":13789,\"ĠJa\":13790,\"Ġgrey\":13791,\"ĠAnimal\":13792,\"ĠER\":13793,\"ĠUnd\":13794,\"Ġkeen\":13795,\"Ġconclude\":13796,\"ĠMississippi\":13797,\"Engine\":13798,\"ĠStudios\":13799,\"Press\":13800,\"overs\":13801,\"llers\":13802,\"Ġ350\":13803,\"ĠRangers\":13804,\"Ġrou\":13805,\"erto\":13806,\"Ep\":13807,\"issa\":13808,\"ivan\":13809,\"Ġseal\":13810,\"ĠRegist\":13811,\"display\":13812,\"Ġweaken\":13813,\"uum\":13814,\"ĠCommons\":13815,\"ĠSay\":13816,\"Ġcultures\":13817,\"Ġlaughed\":13818,\"Ġslip\":13819,\"Ġtreatments\":13820,\"izable\":13821,\"mart\":13822,\"ĠRice\":13823,\"Ġbeast\":13824,\"Ġobesity\":13825,\"ĠLaure\":13826,\"iga\":13827,\"Which\":13828,\"holder\":13829,\"Ġelderly\":13830,\"Ġpays\":13831,\"Ġcomplained\":13832,\"Ġcrop\":13833,\"Ġproc\":13834,\"Ġexplosive\":13835,\"ĠFan\":13836,\"ĠArsenal\":13837,\"Author\":13838,\"eful\":13839,\"Ġmeals\":13840,\"Ġ(-\":13841,\"idays\":13842,\"Ġimagination\":13843,\"Ġannually\":13844,\"Ġms\":13845,\"asures\":13846,\"Head\":13847,\"ikh\":13848,\"matic\":13849,\"Ġboyfriend\":13850,\"ĠComputer\":13851,\"Ġbump\":13852,\"Ġsurge\":13853,\"ĠCraig\":13854,\"ĠKirk\":13855,\"Del\":13856,\"mediate\":13857,\"Ġscenarios\":13858,\"ĠMut\":13859,\"ĠStream\":13860,\"Ġcompetitors\":13861,\"ÙĦ\":13862,\"ĠStanford\":13863,\"ĠResources\":13864,\"azed\":13865,\"bage\":13866,\"Ġorganis\":13867,\"ĠRelease\":13868,\"Ġseparately\":13869,\"Ġhabits\":13870,\"Ġmeasurements\":13871,\"ĠClose\":13872,\"Ġaccompany\":13873,\"Ġgly\":13874,\"Ġtang\":13875,\"ĠRou\":13876,\"Ġplugin\":13877,\"Ġconvey\":13878,\"ĠChallenge\":13879,\"oots\":13880,\"jan\":13881,\"Ġcurs\":13882,\"ĠRelations\":13883,\"keeper\":13884,\"Ġapproaching\":13885,\"ping\":13886,\"Speaking\":13887,\"Ġarrangement\":13888,\"ĠVI\":13889,\"arettes\":13890,\"Ġaffecting\":13891,\"Ġpermits\":13892,\"because\":13893,\"Ġuseless\":13894,\"ĠHus\":13895,\"!!!!\":13896,\"Ġdestroying\":13897,\"Unfortunately\":13898,\"Ġfascinating\":13899,\"Sem\":13900,\"Ġelectoral\":13901,\"Ġtransparency\":13902,\"ĠChaos\":13903,\"Ġvolunteer\":13904,\"Ġstatistical\":13905,\"Ġactivated\":13906,\"rox\":13907,\"Web\":13908,\"HE\":13909,\"ĠHampshire\":13910,\"isive\":13911,\"Map\":13912,\"Ġtrash\":13913,\"ĠLawrence\":13914,\"stick\":13915,\"Cr\":13916,\"Ġrings\":13917,\"EXT\":13918,\"Ġoperational\":13919,\"opes\":13920,\"Does\":13921,\"ĠEvans\":13922,\"Ġwitnessed\":13923,\"Port\":13924,\"Ġlaunching\":13925,\"econom\":13926,\"wear\":13927,\"ĠParticip\":13928,\"umm\":13929,\"cules\":13930,\"ĠRAM\":13931,\"ĠTun\":13932,\"Ġassured\":13933,\"Ġbinary\":13934,\"Ġbetray\":13935,\"Ġexploration\":13936,\"ĠFel\":13937,\"Ġadmission\":13938,\"itated\":13939,\"Sy\":13940,\"Ġavoided\":13941,\"ĠSimulator\":13942,\"Ġcelebrated\":13943,\"ĠElectric\":13944,\"¥ŀ\":13945,\"Ġcluster\":13946,\"itzerland\":13947,\"health\":13948,\"Line\":13949,\"ĠNash\":13950,\"aton\":13951,\"Ġspare\":13952,\"Ġenterprise\":13953,\"ĠDIS\":13954,\"cludes\":13955,\"Ġflights\":13956,\"Ġregards\":13957,\"ĠÃĹ\":13958,\"half\":13959,\"Ġtrucks\":13960,\"Ġcontacts\":13961,\"Ġuncons\":13962,\"ĠClimate\":13963,\"Ġimmense\":13964,\"NEW\":13965,\"occ\":13966,\"ective\":13967,\"Ġembod\":13968,\"Ġpatrol\":13969,\"Ġbeside\":13970,\"Ġviable\":13971,\"Ġcreep\":13972,\"Ġtriggered\":13973,\"verning\":13974,\"Ġcomparable\":13975,\"ql\":13976,\"Ġgaining\":13977,\"asses\":13978,\"Ġ();\":13979,\"ĠGrey\":13980,\"ĠMLS\":13981,\"sized\":13982,\"Ġprosper\":13983,\"\\\"?\":13984,\"Ġpolling\":13985,\"Ġshar\":13986,\"ĠRC\":13987,\"Ġfirearm\":13988,\"orient\":13989,\"Ġfence\":13990,\"Ġvariations\":13991,\"giving\":13992,\"ĠPi\":13993,\"ospel\":13994,\"Ġpledge\":13995,\"Ġcure\":13996,\"Ġspy\":13997,\"Ġviolated\":13998,\"Ġrushed\":13999,\"Ġstroke\":14000,\"ĠBlog\":14001,\"sels\":14002,\"ĠEc\":14003,\",''\":14004,\"Ġpale\":14005,\"ĠCollins\":14006,\"terror\":14007,\"ĠCanadians\":14008,\"Ġtune\":14009,\"Ġlaboratory\":14010,\"Ġnons\":14011,\"tarian\":14012,\"Ġdisability\":14013,\"ĠGam\":14014,\"Ġsinger\":14015,\"alg\":14016,\"ĠSenior\":14017,\"Ġtraded\":14018,\"ĠWarrior\":14019,\"Ġinfring\":14020,\"ĠFranklin\":14021,\"Ġstrain\":14022,\"ĠSwedish\":14023,\"Ġseventh\":14024,\"ĠBenn\":14025,\"ĠTell\":14026,\"Ġsyndrome\":14027,\"Ġwondered\":14028,\"iden\":14029,\"++++\":14030,\"igo\":14031,\"Ġpurple\":14032,\"Ġjournalism\":14033,\"Ġrebel\":14034,\"Ġfu\":14035,\"blog\":14036,\"Ġinvite\":14037,\"rencies\":14038,\"ĠContact\":14039,\"Israel\":14040,\"ĠContent\":14041,\"Ġcheer\":14042,\"Ġbedroom\":14043,\"ĠEngineering\":14044,\"ĠQueens\":14045,\"Ġdwell\":14046,\"ĠPlayStation\":14047,\"ĠDim\":14048,\"ĠColon\":14049,\"lr\":14050,\"Ġoperates\":14051,\"Ġmotivation\":14052,\"USA\":14053,\"astered\":14054,\"Core\":14055,\"ĠTruth\":14056,\"olo\":14057,\"OSE\":14058,\"ĠMemory\":14059,\"Ġpredec\":14060,\"Ġanarch\":14061,\"Ġ1920\":14062,\"ĠYam\":14063,\"Ã¨\":14064,\"bid\":14065,\"Ġgrateful\":14066,\"Ġexcitement\":14067,\"Ġtreasure\":14068,\"Ġlongest\":14069,\"ctive\":14070,\"Ġdeserves\":14071,\"Ġreserves\":14072,\"Ġcops\":14073,\"ĠOttawa\":14074,\"ĠEgyptian\":14075,\"anked\":14076,\"Ġartif\":14077,\"Ġhypothesis\":14078,\":/\":14079,\"Ġpurchasing\":14080,\"Ġlovely\":14081,\"HP\":14082,\"Ġdivide\":14083,\"Ġstrictly\":14084,\"Ġquestioning\":14085,\"Ġtaxpayers\":14086,\"ĠJoy\":14087,\"Ġrolls\":14088,\"ĠHeavy\":14089,\"Ġports\":14090,\"Ġmagnetic\":14091,\"Ġinflamm\":14092,\"Ġbrush\":14093,\"tics\":14094,\"âĪĴ\":14095,\"Ġbottles\":14096,\"ppy\":14097,\"Ġpadd\":14098,\"ãĤ¯\":14099,\"million\":14100,\"Ġdevastating\":14101,\"Ġcompiled\":14102,\"Ġmedication\":14103,\"Ġtwelve\":14104,\"ĠPerry\":14105,\"Space\":14106,\"imb\":14107,\"your\":14108,\"Ġleaked\":14109,\"ĠTar\":14110,\"Ġunity\":14111,\"Ġinfected\":14112,\"Ġtraveled\":14113,\"IDE\":14114,\"ĠMcDonald\":14115,\"txt\":14116,\"ĠPrinc\":14117,\"Ġinterven\":14118,\"ĠTaiwan\":14119,\"ĠPow\":14120,\"Ġbearing\":14121,\"ĠThread\":14122,\"Ġzones\":14123,\"izards\":14124,\"unks\":14125,\"Chapter\":14126,\"llor\":14127,\"ĠÂ·\":14128,\"Ġwounds\":14129,\"Ġdiscretion\":14130,\"Ġsucceeded\":14131,\"iking\":14132,\"Ġiconic\":14133,\"Call\":14134,\"Ġscreening\":14135,\"ĠMis\":14136,\"icts\":14137,\"Ġministers\":14138,\"Ġseparation\":14139,\"Player\":14140,\"Ġbip\":14141,\"Ġbeloved\":14142,\"Ġcounting\":14143,\"ĠEye\":14144,\"around\":14145,\"inging\":14146,\"Ġtablet\":14147,\"Ġoffence\":14148,\"inance\":14149,\"have\":14150,\"ĠInfo\":14151,\"ĠNinja\":14152,\"Ġprotective\":14153,\"ĠCass\":14154,\"Mac\":14155,\"ĠQuality\":14156,\"North\":14157,\"Ġic\":14158,\"ĠCuba\":14159,\"ĠChronicle\":14160,\"ĠProperty\":14161,\"Ġfastest\":14162,\"otos\":14163,\"ĠGerm\":14164,\"OWN\":14165,\"Ġboom\":14166,\"ĠStanley\":14167,\"erguson\":14168,\"Ġclever\":14169,\"Ġenters\":14170,\"mode\":14171,\"terior\":14172,\"ĠSens\":14173,\"Ġlinear\":14174,\"ARK\":14175,\"Ġcomparing\":14176,\"Ġpurely\":14177,\"Ġsafer\":14178,\"ĠPotter\":14179,\"Ġcups\":14180,\"RT\":14181,\"Ġgluc\":14182,\"Ġattributed\":14183,\"Ġdupl\":14184,\"ĠPap\":14185,\"Ġprecious\":14186,\"Ġpa\":14187,\"ictionary\":14188,\"ĠTig\":14189,\"ĠToo\":14190,\"olutions\":14191,\"stan\":14192,\"Ġrobots\":14193,\"Ġlobb\":14194,\"Ġstatute\":14195,\"Ġprevention\":14196,\"western\":14197,\"160\":14198,\"ĠActive\":14199,\"ĠMaria\":14200,\"hal\":14201,\"None\":14202,\"ellar\":14203,\"ĠKB\":14204,\"ĠPartners\":14205,\"ĠSingle\":14206,\"ĠFollowing\":14207,\"ango\":14208,\"acious\":14209,\"Ġthou\":14210,\"Ġkg\":14211,\"Ġinfluential\":14212,\"ĠFriends\":14213,\"Sur\":14214,\"ainted\":14215,\"Ġforums\":14216,\"Ġstarter\":14217,\"Ġcitizenship\":14218,\"ĠElection\":14219,\"onge\":14220,\"otation\":14221,\"osph\":14222,\";;;;\":14223,\"utical\":14224,\"pur\":14225,\"eren\":14226,\"Ġaccusations\":14227,\"bitious\":14228,\"abbit\":14229,\"ĠOrd\":14230,\"Posted\":14231,\"irk\":14232,\"Ġsensitivity\":14233,\"iche\":14234,\"ĠAmy\":14235,\"ĠFab\":14236,\"Ġsummit\":14237,\"Ġpedest\":14238,\"Ġrubber\":14239,\"Ġagricultural\":14240,\"Ġcancel\":14241,\"AE\":14242,\"Ġinaug\":14243,\"Ġcontam\":14244,\"Ġfirmly\":14245,\"iw\":14246,\"stage\":14247,\"ĠKan\":14248,\"Ġtier\":14249,\"Ġinvention\":14250,\"Ġtranslated\":14251,\"ĠRules\":14252,\"Box\":14253,\"Twitter\":14254,\"IDS\":14255,\"Ġpizza\":14256,\"Ġdebug\":14257,\"ĠDrop\":14258,\"vs\":14259,\"Ġhorses\":14260,\"big\":14261,\"Ġboring\":14262,\"Ġhood\":14263,\"ĠMcCain\":14264,\"atched\":14265,\"ĠBros\":14266,\"Ġskip\":14267,\"Ġessay\":14268,\"stat\":14269,\"ĠLegends\":14270,\"Ġammunition\":14271,\"auc\":14272,\"Ġshooter\":14273,\"Ġunh\":14274,\"Ġsupplied\":14275,\"Ġgeneric\":14276,\"ĠSK\":14277,\"iban\":14278,\"yrics\":14279,\"Ġ255\":14280,\"Ġclimbing\":14281,\"Former\":14282,\"Ġflip\":14283,\"Ġjumping\":14284,\"Ġfrustration\":14285,\"ĠTerry\":14286,\"Ġneighborhoods\":14287,\"Ġmedian\":14288,\"bean\":14289,\"Ġbrains\":14290,\"Following\":14291,\"Ġshaped\":14292,\"Ġdraws\":14293,\"Ġaltered\":14294,\"Jack\":14295,\"Ġrecipes\":14296,\"Ġskilled\":14297,\"wealth\":14298,\"achi\":14299,\"election\":14300,\"Ġbehaviors\":14301,\"deals\":14302,\"ĠUntil\":14303,\"Fe\":14304,\"Ġdeclaration\":14305,\"marks\":14306,\"ĠBetween\":14307,\"celona\":14308,\"Ġreson\":14309,\"Ġbubble\":14310,\"Among\":14311,\"Ġimperial\":14312,\"GS\":14313,\"Ġfeminist\":14314,\"2005\":14315,\"ĠKyle\":14316,\"Ġaccounting\":14317,\"ĠTele\":14318,\"ĠTyr\":14319,\"Ġconnecting\":14320,\"Ġrehab\":14321,\"ĠPred\":14322,\"sim\":14323,\"Ġmeantime\":14324,\"Ġphysician\":14325,\"MW\":14326,\"ĠCampbell\":14327,\"ĠBrandon\":14328,\"Ġcontributing\":14329,\"ĠRule\":14330,\"ĠWeight\":14331,\"ĠNap\":14332,\"Ġinteractive\":14333,\"Ġvag\":14334,\"Ġhelmet\":14335,\"ĠComb\":14336,\"four\":14337,\"Ġshipped\":14338,\"Ġcompleting\":14339,\"ĠPD\":14340,\"PDATE\":14341,\"Ġspreading\":14342,\"Ġscary\":14343,\"erving\":14344,\"ĠGas\":14345,\"Ġfrank\":14346,\"school\":14347,\"Ġromantic\":14348,\"Ġstabil\":14349,\"Rob\":14350,\"Ġaccurately\":14351,\"Ġacute\":14352,\"ĠHann\":14353,\"Ġsymbols\":14354,\"Ġcivilization\":14355,\"ĠAW\":14356,\"Ġlightning\":14357,\"Ġconsiders\":14358,\"Ġvenue\":14359,\"Ġ×\":14360,\"Ġoven\":14361,\"ĠSF\":14362,\"his\":14363,\"Ġnu\":14364,\"ĠLearn\":14365,\"Ġpeoples\":14366,\"Ġstd\":14367,\"Ġslee\":14368,\"Ġslic\":14369,\"ĠStatistics\":14370,\"Ġcorners\":14371,\"ĠBaker\":14372,\"Ġ:)\":14373,\"mentation\":14374,\"olver\":14375,\"Ġlaughing\":14376,\"ĠTodd\":14377,\"onde\":14378,\"ĠHills\":14379,\"Ġnuts\":14380,\"ĠWoman\":14381,\"plane\":14382,\"Ġliver\":14383,\"ĠInside\":14384,\"Sorry\":14385,\"Ġagrees\":14386,\"Ġfundament\":14387,\"ĠFisher\":14388,\"Ġauction\":14389,\"Ġthreads\":14390,\"glas\":14391,\"ĠBasic\":14392,\"ĠNat\":14393,\"Ġlacking\":14394,\"Ġcelebration\":14395,\"ju\":14396,\"Ġsilly\":14397,\"Euro\":14398,\"Ġtatt\":14399,\"ighty\":14400,\"controlled\":14401,\"Test\":14402,\"ĠSingh\":14403,\"Ġrage\":14404,\"Ġrhyth\":14405,\"offic\":14406,\"ĠPhantom\":14407,\"Ġheadlines\":14408,\"Ġresponding\":14409,\"ĠMorning\":14410,\"Ġvitamin\":14411,\"Ġboots\":14412,\"ĠSite\":14413,\"alin\":14414,\"pi\":14415,\"Ġviral\":14416,\"ĠUC\":14417,\"DER\":14418,\"ĠSex\":14419,\"Ġstocks\":14420,\"current\":14421,\"Ġchurches\":14422,\"ĠRare\":14423,\"ĠMurphy\":14424,\"Ġdenial\":14425,\"ĠGaming\":14426,\"Ġtoug\":14427,\"Ġnick\":14428,\"Ġmakers\":14429,\"ĠRonald\":14430,\"Ġgenerous\":14431,\"ĠDoc\":14432,\"ĠMorris\":14433,\"Ġtransformed\":14434,\"ĠNormal\":14435,\"Ġ104\":14436,\"ĠKickstarter\":14437,\"ĠUpon\":14438,\"Online\":14439,\"ĠIRS\":14440,\"Ġwrap\":14441,\"Ġloving\":14442,\"Ġarrives\":14443,\"ĠDue\":14444,\"Ġheter\":14445,\"ĠMade\":14446,\"Ġrental\":14447,\"Ġbelongs\":14448,\"Ġattorneys\":14449,\"Ġcrops\":14450,\"Ġmatched\":14451,\"ulum\":14452,\"oline\":14453,\"109\":14454,\"Ġdispar\":14455,\"Ġbuyers\":14456,\"ĠCambridge\":14457,\"Ġethics\":14458,\"roups\":14459,\"Ġjustified\":14460,\"Ġmarginal\":14461,\"Ġrespected\":14462,\"winning\":14463,\"Ġnodded\":14464,\"ĠSerge\":14465,\"ĠFormer\":14466,\"Craft\":14467,\"################\":14468,\"ĠWarner\":14469,\"Ġdash\":14470,\"ete\":14471,\"Ġentert\":14472,\"ĠEscape\":14473,\"outheast\":14474,\"Ġknees\":14475,\"ĠBomb\":14476,\"Ġrug\":14477,\"Pass\":14478,\"Ġattitudes\":14479,\"government\":14480,\"ĠPrior\":14481,\"Ġqualities\":14482,\"Ġnotification\":14483,\"ĠPhone\":14484,\"lie\":14485,\"Ġanticipated\":14486,\"ĠCombat\":14487,\"ĠBarry\":14488,\"Ġ1982\":14489,\"Users\":14490,\"oner\":14491,\"Ġcomputing\":14492,\"ĠConnecticut\":14493,\"Ġlesser\":14494,\"Ġpeers\":14495,\"ĠCu\":14496,\"Ġtechnically\":14497,\"Ġsubmission\":14498,\"ĠUniversal\":14499,\"Ġmanually\":14500,\"ourge\":14501,\"Ġrespondents\":14502,\"ĠBTC\":14503,\"ĠHost\":14504,\"Ġfare\":14505,\"ĠBird\":14506,\"Ġreceipt\":14507,\"also\":14508,\"Ġjack\":14509,\"Ġagriculture\":14510,\"Ġskull\":14511,\"Ġ!=\":14512,\"Ġpassive\":14513,\"ĠCI\":14514,\"Ġsocieties\":14515,\"Ġreminded\":14516,\"Ġinterference\":14517,\"Buy\":14518,\"Ġâľ\":14519,\"gon\":14520,\"Ġscrutiny\":14521,\"ĠWitch\":14522,\"Ġconducting\":14523,\"Ġãĥ\":14524,\"Ġexchanges\":14525,\"ĠMitchell\":14526,\"Ġinhabit\":14527,\"Ġtwist\":14528,\"BD\":14529,\"Ġwherever\":14530,\"groupon\":14531,\"Ġjokes\":14532,\"ĠBenjamin\":14533,\"ĠRandom\":14534,\"frame\":14535,\"ĠLions\":14536,\"Ġhighlighted\":14537,\"ĠArkansas\":14538,\"Ent\":14539,\"Ġpile\":14540,\"Ġprelim\":14541,\"gs\":14542,\"minded\":14543,\"Ġfelony\":14544,\"ĠGA\":14545,\"ĠLuck\":14546,\"Ġpractically\":14547,\"ĠBos\":14548,\"Ġactress\":14549,\"Dam\":14550,\"ĠBou\":14551,\"Ġvisa\":14552,\"Ġembedded\":14553,\"Ġhybrid\":14554,\"Ġearliest\":14555,\"Ġsooner\":14556,\"social\":14557,\"ĠHA\":14558,\"Ġsteep\":14559,\"Ġdisadvant\":14560,\"Ġexploit\":14561,\"ĠEgg\":14562,\"ĠUltra\":14563,\"Ġnecessity\":14564,\"Local\":14565,\"iege\":14566,\"Ġdated\":14567,\"Ġmasses\":14568,\"Ġsubscription\":14569,\"pless\":14570,\"Ġanonym\":14571,\"Ġpresumably\":14572,\"Blue\":14573,\"Their\":14574,\"asketball\":14575,\"ĠPhilip\":14576,\"Ġcomed\":14577,\"loaded\":14578,\"rane\":14579,\"Ġreflection\":14580,\"China\":14581,\"Ġextends\":14582,\"Ġforming\":14583,\"Ġunders\":14584,\"2001\":14585,\"Ġgrat\":14586,\"Ġconcentrations\":14587,\"Ġinsulin\":14588,\"Ġsecular\":14589,\"Ġwhilst\":14590,\"Ġwinners\":14591,\"Advertisements\":14592,\"Ġdeliberately\":14593,\"ĠWorking\":14594,\"Ġsink\":14595,\"etics\":14596,\"dale\":14597,\"Ġmandate\":14598,\"Ġgram\":14599,\"Ġvacation\":14600,\"Ġwarnings\":14601,\"ripp\":14602,\"ĠTHAT\":14603,\"Ġcommentary\":14604,\"Ġintu\":14605,\"Ġaest\":14606,\"Ġreasoning\":14607,\"Ġbreakdown\":14608,\"ĠZombie\":14609,\"Ġ-->\":14610,\"ĠPolitical\":14611,\"cott\":14612,\"Ġthrust\":14613,\"Ġtechnological\":14614,\"Ġdeciding\":14615,\"Ġtrafficking\":14616,\"Long\":14617,\"Welcome\":14618,\"prising\":14619,\"ĠCommunications\":14620,\"Ġendors\":14621,\"Ġswift\":14622,\"Ġmetabol\":14623,\"coins\":14624,\"resa\":14625,\"ĠHTTP\":14626,\"Ġenroll\":14627,\"ĠHappy\":14628,\"usr\":14629,\"intage\":14630,\"Ġ[\\\"\":14631,\"uably\":14632,\"ĠMaterial\":14633,\"Ġrepeal\":14634,\"Sept\":14635,\"kh\":14636,\"ĠModi\":14637,\"Ġunderneath\":14638,\"ĠIL\":14639,\"shore\":14640,\"Ġdiagnosed\":14641,\"aceutical\":14642,\"Ġshower\":14643,\"aux\":14644,\"ĠSwitch\":14645,\"ĠStrength\":14646,\"Ġjihad\":14647,\"national\":14648,\"Ġtrauma\":14649,\"ussy\":14650,\"oni\":14651,\"Ġconsolid\":14652,\"Ġcalories\":14653,\"ĠFlynn\":14654,\"agged\":14655,\"168\":14656,\"ĠPink\":14657,\"Ġfulfill\":14658,\"Ġchains\":14659,\"Ġnotably\":14660,\"ĠAV\":14661,\"Life\":14662,\"ĠChuck\":14663,\"mus\":14664,\"ĠUrban\":14665,\"ĠHend\":14666,\"Ġdeposit\":14667,\"ĠSad\":14668,\"Ġaffair\":14669,\"ORK\":14670,\"ieval\":14671,\"ĠFDA\":14672,\"Ġtrop\":14673,\"ĠOverall\":14674,\"Ġvirtue\":14675,\"Ġsatisfaction\":14676,\"aund\":14677,\"Ġlun\":14678,\"ĠSwitzerland\":14679,\"ĠOperation\":14680,\"process\":14681,\"Ġshook\":14682,\"Ġcounties\":14683,\"leased\":14684,\"ĠCharlotte\":14685,\"112\":14686,\"Ġtranscript\":14687,\"Ġredd\":14688,\"push\":14689,\"ĠHey\":14690,\"ĠAnalysis\":14691,\"[\\\"\":14692,\"Ġalternatives\":14693,\"ardless\":14694,\"Ġeleph\":14695,\"Ġprejud\":14696,\"ĠLeaf\":14697,\"Having\":14698,\"ĠHub\":14699,\"Ġexpressions\":14700,\"ĠVolume\":14701,\"Ġshocking\":14702,\"ĠReds\":14703,\"Ġreadily\":14704,\"Ġplanets\":14705,\"adata\":14706,\"Ġcollapsed\":14707,\"ĠMadrid\":14708,\"Ġirrit\":14709,\"ipper\":14710,\"ĠEnc\":14711,\"ĠWire\":14712,\"Ġbuzz\":14713,\"ĠGP\":14714,\"asha\":14715,\"Ġaccidentally\":14716,\"uru\":14717,\"Ġfrustrated\":14718,\"ĠSA\":14719,\"Ġhungry\":14720,\"ĠHuff\":14721,\"Ġlabels\":14722,\"anto\":14723,\"ĠEP\":14724,\"Ġbarriers\":14725,\")|\":14726,\"ĠBerkeley\":14727,\"ĠJets\":14728,\"Ġpairs\":14729,\"ĠLan\":14730,\"James\":14731,\"ĠBear\":14732,\"Ġhumor\":14733,\"ĠLiberty\":14734,\"Ġmagnitude\":14735,\"Ġaging\":14736,\"ĠMason\":14737,\"Ġfriendship\":14738,\"umbling\":14739,\"Ġemerge\":14740,\"Ġnewspapers\":14741,\"Ġambitious\":14742,\"ĠRichards\":14743,\"aternal\":14744,\"Ġ1981\":14745,\"Ġcookies\":14746,\"Ġsculpt\":14747,\"Ġpursuit\":14748,\"Location\":14749,\"Ġscripts\":14750,\"pc\":14751,\"Ġarrangements\":14752,\"Ġdiameter\":14753,\"Ġloses\":14754,\"amation\":14755,\"Ġliqu\":14756,\"ĠJake\":14757,\"arette\":14758,\"Ġunderstands\":14759,\"ĠZen\":14760,\"vm\":14761,\"Ġapprove\":14762,\"Ġwip\":14763,\"Ġultra\":14764,\"Ġintend\":14765,\"ĠDI\":14766,\"ascular\":14767,\"Ġstays\":14768,\"ĠKor\":14769,\"ĠKl\":14770,\"Ġinvesting\":14771,\"La\":14772,\"Ġbelieving\":14773,\"bad\":14774,\"mouth\":14775,\"Ġtaxpayer\":14776,\"ãĥĥ\":14777,\"ĠQuebec\":14778,\"Ġlap\":14779,\"ĠSwiss\":14780,\"drop\":14781,\"Ġdrain\":14782,\"iri\":14783,\"etc\":14784,\"ften\":14785,\"ĠNex\":14786,\"Ġstraw\":14787,\"Ġscreaming\":14788,\"Ġcounted\":14789,\"Ġdamaging\":14790,\"Ġambassador\":14791,\"century\":14792,\"Ġprox\":14793,\"Ġarrests\":14794,\"uv\":14795,\"ilateral\":14796,\"ĠCharg\":14797,\"Ġprescribed\":14798,\"Ġindependently\":14799,\"Ġfierce\":14800,\"ĠBaby\":14801,\"Ġbrave\":14802,\"Ġsuits\":14803,\"=>\":14804,\"Ġbaseline\":14805,\"ĠRate\":14806,\"Ġislands\":14807,\"Ġ((\":14808,\"green\":14809,\"ixels\":14810,\"Ġnamely\":14811,\"ĠVillage\":14812,\"than\":14813,\"amy\":14814,\"Version\":14815,\"gmail\":14816,\"entials\":14817,\"ĠSud\":14818,\"ĠMelbourne\":14819,\"Ġarriving\":14820,\"Ġquantum\":14821,\"eff\":14822,\"ropolitan\":14823,\"Tri\":14824,\"Ġfuneral\":14825,\"ĠIR\":14826,\"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ\":14827,\"ĠCob\":14828,\"itably\":14829,\"Ġturb\":14830,\"Ġcombo\":14831,\"Review\":14832,\"Ġdeployment\":14833,\"uity\":14834,\"ĠBott\":14835,\"Ġinvisible\":14836,\"Ġrendering\":14837,\"Ġunlocked\":14838,\"Ġaqu\":14839,\"ĠVladimir\":14840,\"Ġpad\":14841,\"ĠBrain\":14842,\"ĠLegacy\":14843,\"dragon\":14844,\"ĠKurdish\":14845,\"Ġsounded\":14846,\"Ġdetained\":14847,\"ĠDM\":14848,\"gary\":14849,\"Ġdaughters\":14850,\"Ġdisturbing\":14851,\"uka\":14852,\"ĠParad\":14853,\"Ġtast\":14854,\"Ġunfortunate\":14855,\"Ġul\":14856,\"emin\":14857,\"Ġattendance\":14858,\"trl\":14859,\"Ġparks\":14860,\"ĠMemorial\":14861,\"ĠAlice\":14862,\"othy\":14863,\"guard\":14864,\"ĠDise\":14865,\"ĠShan\":14866,\"ĠForum\":14867,\"Rich\":14868,\"Ġshifted\":14869,\"uez\":14870,\"Ġlighter\":14871,\"ĠMagn\":14872,\"Ġcod\":14873,\"Sch\":14874,\"hammad\":14875,\"Pub\":14876,\"350\":14877,\"ĠPokemon\":14878,\"Ġprototype\":14879,\"Ġunre\":14880,\"Base\":14881,\"ĠStudents\":14882,\"ĠReply\":14883,\"ĠCommunist\":14884,\"Ġgau\":14885,\"ĠTyler\":14886,\"IZ\":14887,\"Ġparticipated\":14888,\"Ġsuprem\":14889,\"ĠDetails\":14890,\"Ġvessels\":14891,\"rod\":14892,\"Ġtribe\":14893,\"keep\":14894,\"Ġassumptions\":14895,\"Ġpound\":14896,\"Ġcrude\":14897,\"ĠAvailable\":14898,\"Ġswimming\":14899,\"Ġinclusion\":14900,\"Ġadvances\":14901,\"culation\":14902,\"Ġconservation\":14903,\"Ġoverd\":14904,\"ĠBuffalo\":14905,\"Article\":14906,\"edge\":14907,\"Ġawa\":14908,\"ĠMadison\":14909,\"Ġsidew\":14910,\"Ġcatast\":14911,\"ĠKrist\":14912,\"ucle\":14913,\"ĠHighway\":14914,\"ĠTerror\":14915,\"Ġactivation\":14916,\"Ġunconscious\":14917,\"ĠSatan\":14918,\"ĠSusan\":14919,\"illery\":14920,\"Ġarranged\":14921,\"iop\":14922,\"Ġrumors\":14923,\"urring\":14924,\"think\":14925,\"ĠKeith\":14926,\"ĠKind\":14927,\"Ġavoiding\":14928,\"byn\":14929,\"nut\":14930,\"ĠSpeaker\":14931,\"rus\":14932,\"names\":14933,\"Ġguilt\":14934,\"ĠOlympics\":14935,\"Ġsail\":14936,\"ĠMes\":14937,\"levant\":14938,\"ĠColumbus\":14939,\"aft\":14940,\"City\":14941,\"South\":14942,\"ĠHarvey\":14943,\"ĠPun\":14944,\"Several\":14945,\"Ġmentally\":14946,\"Ġimpress\":14947,\"mount\":14948,\"ĠUbuntu\":14949,\"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ\":14950,\"ĠSuperman\":14951,\"ĠMPs\":14952,\"Ġintentions\":14953,\"ĠRacing\":14954,\"Ġlikelihood\":14955,\"Ġ240\":14956,\"Total\":14957,\"Ġtoys\":14958,\"ĠWatson\":14959,\"Ġurge\":14960,\"Lear\":14961,\"ĠPaper\":14962,\"Ġoccurring\":14963,\"ĠBeng\":14964,\"ĠCert\":14965,\"Ġstones\":14966,\"Tim\":14967,\"ĠTwin\":14968,\"zb\":14969,\"ĠDynam\":14970,\"Ġpolitician\":14971,\"kens\":14972,\"ĠEnterprise\":14973,\"UTERS\":14974,\"Ġabol\":14975,\"Ġrefresh\":14976,\"Ġarbitrary\":14977,\"pection\":14978,\"Ġtroubles\":14979,\"Ġ});\":14980,\"tv\":14981,\"Ġpilots\":14982,\"Ġdistribute\":14983,\"Ġaudit\":14984,\"Ġpause\":14985,\"original\":14986,\"Ġrivals\":14987,\"Â£\":14988,\"Fig\":14989,\"TL\":14990,\"abil\":14991,\"rying\":14992,\"Lin\":14993,\"ioned\":14994,\"lon\":14995,\"Ġfancy\":14996,\"Ġcrashed\":14997,\"Ġtract\":14998,\"Ġshed\":14999,\"Ġconsume\":15000,\"Based\":15001,\"download\":15002,\"init\":15003,\"Ġvoltage\":15004,\"Introdu\":15005,\"Ġcondemned\":15006,\"ĠFinance\":15007,\"respect\":15008,\"Ġexcluded\":15009,\"Ġestablishing\":15010,\"heric\":15011,\"Ġheritage\":15012,\"Ġspectacular\":15013,\"Ġunst\":15014,\"ĠSnowden\":15015,\"ĠLane\":15016,\"San\":15017,\"Ġprotections\":15018,\"struction\":15019,\"incinn\":15020,\"Ġmacro\":15021,\"Custom\":15022,\"iosity\":15023,\"Ġesp\":15024,\"Ġfunctioning\":15025,\"Ġmush\":15026,\"Ġpuzzle\":15027,\"Ġethical\":15028,\"Mal\":15029,\"Ġgoverning\":15030,\"ĠFerguson\":15031,\"Ġrestored\":15032,\"Ġstressed\":15033,\"ĠCounter\":15034,\"ĠKas\":15035,\"clip\":15036,\"ANS\":15037,\"Ġseiz\":15038,\"UK\":15039,\"byss\":15040,\"oldown\":15041,\"api\":15042,\"Ġpermanently\":15043,\"ounters\":15044,\"West\":15045,\"Through\":15046,\"Light\":15047,\"atoes\":15048,\"Ġneat\":15049,\"Ġcord\":15050,\"urer\":15051,\"Ġseverely\":15052,\"ĠAven\":15053,\"Ġinterrog\":15054,\"Ġtriple\":15055,\"Given\":15056,\"Number\":15057,\"Ġarise\":15058,\"Ġsher\":15059,\"plant\":15060,\"Ġflower\":15061,\"ĠCou\":15062,\"Ġate\":15063,\"Ġnewer\":15064,\"bul\":15065,\"Ġmeanwhile\":15066,\"ĠLair\":15067,\"Ġadjustment\":15068,\"ĠCopyright\":15069,\"Ġdivers\":15070,\"iological\":15071,\"Ġgamers\":15072,\"oat\":15073,\"Ġhistorically\":15074,\"Ġanalog\":15075,\"Ġlongtime\":15076,\"Ġprescription\":15077,\"ĠMist\":15078,\"ĠHyper\":15079,\"ĠMaine\":15080,\"ĠDeity\":15081,\"Ġmultipl\":15082,\"ĠReincarn\":15083,\"ĠHyd\":15084,\"ĠPic\":15085,\"Sil\":15086,\"rants\":15087,\"ĠCris\":15088,\".;\":15089,\"({\":15090,\"ependence\":15091,\"Ġrecy\":15092,\"ateur\":15093,\"Ġquad\":15094,\"Ġglob\":15095,\"Ġconced\":15096,\"team\":15097,\"Ġcapitalist\":15098,\"ĠLot\":15099,\"Ġroyal\":15100,\"ĠCyber\":15101,\"Ġblacks\":15102,\"metic\":15103,\"riv\":15104,\"ĠDanny\":15105,\"Ġspo\":15106,\"ĠRO\":15107,\"Ġanimated\":15108,\"rypted\":15109,\"ĠDeputy\":15110,\"Ġrendered\":15111,\"FE\":15112,\"Ġstreak\":15113,\"Ġclouds\":15114,\"ĠDoug\":15115,\"~~~~~~~~\":15116,\"Ġdiscour\":15117,\"ĠVeh\":15118,\"Ġpsychology\":15119,\"ĠJourney\":15120,\"Ġcrystal\":15121,\"ĠFrost\":15122,\"Ġsuspicion\":15123,\"Ġrelate\":15124,\"orus\":15125,\"ĠCrypt\":15126,\"ĠNVIDIA\":15127,\"comed\":15128,\"uting\":15129,\"incinnati\":15130,\"Ġvulnerability\":15131,\"ostic\":15132,\"Ġisolation\":15133,\"Ġcooling\":15134,\"ĠCoalition\":15135,\"Ġ119\":15136,\"Four\":15137,\"ĠDeal\":15138,\"Ġâī\":15139,\"semble\":15140,\"rament\":15141,\"ĠBarcelona\":15142,\"Ġ102\":15143,\"Ġcocaine\":15144,\"ocalypse\":15145,\"Feb\":15146,\"ogenic\":15147,\"Ġmutation\":15148,\"Ġcryptoc\":15149,\"ĠKel\":15150,\"ĠGit\":15151,\"ais\":15152,\"Ġsisters\":15153,\"ANK\":15154,\"Ġactivate\":15155,\"Ter\":15156,\"Ġdread\":15157,\"ylon\":15158,\"Ġpropri\":15159,\"Aust\":15160,\"ĠDefault\":15161,\"Ġoutdoor\":15162,\"Ġsheer\":15163,\"ceive\":15164,\"Ġgently\":15165,\"Ð¾\":15166,\"Program\":15167,\"ĠâĨĴ\":15168,\"Ġvegan\":15169,\"ĠCrus\":15170,\"Ġresponsibilities\":15171,\"ĠHR\":15172,\"OLD\":15173,\"Ġprevents\":15174,\"Ġstiff\":15175,\"ĠWere\":15176,\"Ġathletic\":15177,\"ĠScore\":15178,\"Ġ):\":15179,\"Ġcolumns\":15180,\"ĠLoc\":15181,\"available\":15182,\"ĠFram\":15183,\"ĠSessions\":15184,\"Ġcompanion\":15185,\"Ġpacks\":15186,\"140\":15187,\"ĠKnights\":15188,\"Ġfart\":15189,\"Ġstreams\":15190,\"Ġshore\":15191,\"Ġappeals\":15192,\"ĠPerformance\":15193,\"haul\":15194,\"ĠStra\":15195,\"ĠNag\":15196,\"103\":15197,\"ĠTransportation\":15198,\"BB\":15199,\"Ev\":15200,\"zan\":15201,\"Public\":15202,\"Ġtwin\":15203,\"ulsion\":15204,\"Mult\":15205,\"Ġelectro\":15206,\"Ġstatue\":15207,\"ationally\":15208,\"ĠNort\":15209,\"Ġinspection\":15210,\"/*\":15211,\"igue\":15212,\"Ġcompassion\":15213,\"ĠTales\":15214,\"ĠStein\":15215,\"ĠScreen\":15216,\"ĠBug\":15217,\"ĠLion\":15218,\"girl\":15219,\"Ġwithdrawal\":15220,\"Ġobjectives\":15221,\"Ġbloody\":15222,\"Ġpreliminary\":15223,\"Ġjacket\":15224,\"Ġdimensions\":15225,\"ĠCool\":15226,\"ĠOccup\":15227,\"Ġwreck\":15228,\"Ġdoubled\":15229,\"anking\":15230,\"Ġ1975\":15231,\"Ġglasses\":15232,\"ĠWang\":15233,\"prov\":15234,\"Path\":15235,\"connected\":15236,\"ĠMulti\":15237,\"ĠNorway\":15238,\"agonist\":15239,\"Ġfeared\":15240,\"Ġtouching\":15241,\"Ġarguably\":15242,\"Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯\":15243,\"ĠNCAA\":15244,\"chem\":15245,\"Ġspat\":15246,\"ĠWWE\":15247,\"ĠCel\":15248,\"igger\":15249,\"Ġattacker\":15250,\"ĠJoin\":15251,\"object\":15252,\"etta\":15253,\"Ġeliminated\":15254,\"det\":15255,\"Ġdestruct\":15256,\"ĠLucas\":15257,\"ctuary\":15258,\"180\":15259,\"ĠBrady\":15260,\"ĠBlues\":15261,\"Bay\":15262,\"aukee\":15263,\"Ġtimeline\":15264,\"Ġdelegates\":15265,\"written\":15266,\"ufficient\":15267,\"Ġshapes\":15268,\"Copyright\":15269,\"ouble\":15270,\"service\":15271,\"Ġpione\":15272,\"Ġcolleges\":15273,\"Ġrows\":15274,\"Ġspite\":15275,\"Ġassessed\":15276,\"360\":15277,\"Ġlease\":15278,\"Ġconfidential\":15279,\"cker\":15280,\"ĠManning\":15281,\"ĠVoice\":15282,\"Ġsealed\":15283,\"Ġcalculate\":15284,\"NO\":15285,\"ĠAssistant\":15286,\"Ġteenager\":15287,\"ulent\":15288,\"atherine\":15289,\"Ġmock\":15290,\"Ġdiamond\":15291,\"Ġfest\":15292,\"Ġswitched\":15293,\"Ġresume\":15294,\"ĠPuerto\":15295,\"Ġlanes\":15296,\"iration\":15297,\"ĠSimilarly\":15298,\"Ġrod\":15299,\"ĠSel\":15300,\"ĠPalace\":15301,\"ĠLimited\":15302,\"eous\":15303,\"Ġvariant\":15304,\"Ġward\":15305,\"Ġ))\":15306,\"Show\":15307,\"OOK\":15308,\"Alex\":15309,\"ĠNep\":15310,\"bris\":15311,\"ĠWikipedia\":15312,\"Ġexceptional\":15313,\"Ġmanages\":15314,\"ĠDraw\":15315,\"Again\":15316,\"Ġcopper\":15317,\"utt\":15318,\"Ġexports\":15319,\"Ġportfolio\":15320,\"Ġelevated\":15321,\"Rated\":15322,\"ĠOtherwise\":15323,\"ĠTact\":15324,\"ĠShel\":15325,\"ĠTX\":15326,\"\\\"âĢĶ\":15327,\"Ġresur\":15328,\"ĠWa\":15329,\"venant\":15330,\"Ġmonetary\":15331,\"people\":15332,\"Email\":15333,\"Ġfifty\":15334,\"ĠSweet\":15335,\"ĠMalaysia\":15336,\"Ġconfusing\":15337,\"ĠRio\":15338,\"uda\":15339,\"utenant\":15340,\"\\\");\":15341,\"Ġpraised\":15342,\"Ġvolumes\":15343,\"turn\":15344,\"Ġmature\":15345,\"Ġnonprofit\":15346,\"Ġpassionate\":15347,\"ĠPrivate\":15348,\"Ġ103\":15349,\"Ġdescend\":15350,\"ç¥ŀ\":15351,\"uffy\":15352,\"headed\":15353,\"Whether\":15354,\"rien\":15355,\"zech\":15356,\"beit\":15357,\"Ġchrom\":15358,\"ĠMcM\":15359,\"Ġdancing\":15360,\"Ġeleg\":15361,\"ĠNoticed\":15362,\"115\":15363,\"Ġadvocacy\":15364,\"ENTS\":15365,\"ambling\":15366,\"ĠMinor\":15367,\"ĠFinn\":15368,\"Ġpriorities\":15369,\"Ġthereof\":15370,\"ĠStage\":15371,\"ĠRogers\":15372,\"Ġsubstitute\":15373,\"ĠJar\":15374,\"ĠJefferson\":15375,\"Ġlightly\":15376,\"102\":15377,\"ĠLisa\":15378,\"uits\":15379,\"ysical\":15380,\"Ġshifts\":15381,\"Ġdrones\":15382,\"Ġworkplace\":15383,\"Ġresid\":15384,\"ensed\":15385,\"ahn\":15386,\"Ġpreferences\":15387,\"server\":15388,\"Ġdebates\":15389,\"doc\":15390,\"ĠGods\":15391,\"Ġhelicopter\":15392,\"Ġhonour\":15393,\"Ġconsiderably\":15394,\"eded\":15395,\"ĠFemale\":15396,\"ĠAnne\":15397,\"Ġreun\":15398,\"ĠFace\":15399,\"ĠHallow\":15400,\"ĠBudget\":15401,\"Ġcondemn\":15402,\"Ġtender\":15403,\"Prof\":15404,\"ocratic\":15405,\"ĠTurner\":15406,\"ĠAgric\":15407,\"Ġ1976\":15408,\"Ġapt\":15409,\"disc\":15410,\"ĠFighter\":15411,\"ĠAur\":15412,\"Ġgarbage\":15413,\"input\":15414,\"ĠKarl\":15415,\"ĠOliver\":15416,\"ĠLanguage\":15417,\"kn\":15418,\"Non\":15419,\"ĠClar\":15420,\"Ġtraditions\":15421,\"Ġadvertisement\":15422,\"ĠSor\":15423,\"Ġarchive\":15424,\"Ġvillages\":15425,\"750\":15426,\"Ġimplementing\":15427,\"waukee\":15428,\"Ġdietary\":15429,\"Ġswitching\":15430,\"Republic\":15431,\"Ġvelocity\":15432,\"Ġcit\":15433,\"ĠAwards\":15434,\"Ġfinancing\":15435,\"Ġlasted\":15436,\")]\":15437,\"Ġreminder\":15438,\"Person\":15439,\"Ġprecision\":15440,\"Ġdesigners\":15441,\"ĠFried\":15442,\"ĠBorder\":15443,\"Ġtragic\":15444,\"Ġwield\":15445,\"Ġinitiatives\":15446,\"ĠTank\":15447,\"wer\":15448,\"Ġjoins\":15449,\"Ro\":15450,\"inery\":15451,\"Ġarrow\":15452,\"Ġgenerating\":15453,\"founder\":15454,\"Ġsearches\":15455,\"Ġrandomly\":15456,\"Access\":15457,\"Ġbatch\":15458,\"Ġposed\":15459,\"lat\":15460,\"Ġpursuing\":15461,\"asa\":15462,\"Ġtestified\":15463,\"forming\":15464,\"ĠShar\":15465,\"wiki\":15466,\"ĠEither\":15467,\"Sometimes\":15468,\"Ġsenators\":15469,\"ĠJohnny\":15470,\"ĠTaliban\":15471,\"ĠGPS\":15472,\"\\\":\\\"/\":15473,\"ãģ®å\":15474,\"Ġanalyzed\":15475,\"ĠRubio\":15476,\"ĠMovement\":15477,\"opard\":15478,\"iii\":15479,\"Stand\":15480,\"fight\":15481,\"Ġignoring\":15482,\"iang\":15483,\"ĠGN\":15484,\"soever\":15485,\"ĠSTAT\":15486,\"Ġrefusing\":15487,\"Ġsweat\":15488,\"Ġbay\":15489,\"PORT\":15490,\"irmed\":15491,\"aky\":15492,\"Ġdispro\":15493,\"Ġlabeled\":15494,\"Ġ108\":15495,\"Hello\":15496,\"Ġpleasant\":15497,\"aba\":15498,\"Ġtriumph\":15499,\"Ġaboard\":15500,\"Ġincom\":15501,\"ĠCrow\":15502,\"lett\":15503,\"Ġfolk\":15504,\"Ġchase\":15505,\"``\":15506,\"ĠBrus\":15507,\"Ġteens\":15508,\"cue\":15509,\"Ġterrain\":15510,\"hyd\":15511,\"ilight\":15512,\"ORY\":15513,\"Support\":15514,\"ews\":15515,\"lli\":15516,\"raints\":15517,\"ĠCand\":15518,\"Ġabused\":15519,\"achment\":15520,\"larg\":15521,\"Bas\":15522,\"ĠCancer\":15523,\"Ġ1978\":15524,\"Ġsupporter\":15525,\"access\":15526,\"ĠTermin\":15527,\"ĠTampa\":15528,\"ĠANY\":15529,\"Ġnewest\":15530,\"ĠCriminal\":15531,\"edu\":15532,\"Ġ1930\":15533,\"Ġadmits\":15534,\"Ġende\":15535,\"Ġfailures\":15536,\"urate\":15537,\"fulness\":15538,\"cycl\":15539,\"ĠSubject\":15540,\"Ġinfinite\":15541,\"three\":15542,\"WA\":15543,\"pit\":15544,\"ĠInstall\":15545,\"Rad\":15546,\"iliation\":15547,\"GM\":15548,\"Ġcontinent\":15549,\"Ġaccommodate\":15550,\"ĠClay\":15551,\"Ġpup\":15552,\"ĠFunction\":15553,\"Ġhammer\":15554,\"ĠAlberta\":15555,\"Ġrevised\":15556,\"Ġminorities\":15557,\"Ġmeasurement\":15558,\"Connell\":15559,\"Ġdisable\":15560,\"ĠMix\":15561,\"Incre\":15562,\"Ġfork\":15563,\"ĠRosen\":15564,\"Ġimplies\":15565,\"umblr\":15566,\"ANG\":15567,\"Ġproteins\":15568,\"Ġaggression\":15569,\"Ġfacilitate\":15570,\"SN\":15571,\"Ġillegally\":15572,\"uer\":15573,\"Ġacadem\":15574,\"Ġpuzz\":15575,\"ĠShift\":15576,\"pay\":15577,\"ollo\":15578,\"Ġaudiences\":15579,\"Build\":15580,\"Ġnoble\":15581,\"Ġsyntax\":15582,\"âĺħ\":15583,\"Ġbeam\":15584,\"ĠBed\":15585,\"ĠAld\":15586,\"Ġorigins\":15587,\"video\":15588,\"Ġ1977\":15589,\"ĠAssault\":15590,\"Ġgarage\":15591,\"Team\":15592,\"Ġverdict\":15593,\"Ġdwar\":15594,\"ĠVirtual\":15595,\"event\":15596,\"Keep\":15597,\"Ġsentiment\":15598,\"Ġwildlife\":15599,\"shirt\":15600,\"Ġburg\":15601,\"Ġrecommendation\":15602,\"represent\":15603,\"Ġgallery\":15604,\"owners\":15605,\"Ġscholar\":15606,\"Ġconvenience\":15607,\"ĠSwift\":15608,\"Ġconvinc\":15609,\"Cap\":15610,\"Ġwarfare\":15611,\"ĠVisual\":15612,\"Ġconstitute\":15613,\"Ġabort\":15614,\"ĠWeather\":15615,\"ĠLooking\":15616,\"ĠHem\":15617,\"Ġmartial\":15618,\"Ġincoming\":15619,\"etition\":15620,\"Ġtolerance\":15621,\"ĠCreated\":15622,\"Ġflows\":15623,\"ĠElder\":15624,\"Ġsouls\":15625,\"Ġfoul\":15626,\"ĠPain\":15627,\"ĠCAN\":15628,\"Ġ220\":15629,\"bc\":15630,\"hend\":15631,\"Ġgenius\":15632,\"Real\":15633,\"ĠWr\":15634,\"ometer\":15635,\"pad\":15636,\"Ġlimiting\":15637,\"ĠSi\":15638,\"ĠLore\":15639,\"ĠAdventures\":15640,\"Ġvaried\":15641,\"Disc\":15642,\"fin\":15643,\"ĠPersonal\":15644,\"Chris\":15645,\"Ġinvented\":15646,\"Ġdive\":15647,\"ĠRise\":15648,\"Ġoz\":15649,\"ĠComics\":15650,\"Ġexpose\":15651,\"ĠReb\":15652,\"letters\":15653,\"site\":15654,\"imated\":15655,\"Ġhacking\":15656,\"Ġeducated\":15657,\"ĠNobody\":15658,\"Ġdepri\":15659,\"Ġincentive\":15660,\"ãĤ·\":15661,\"Ġoversight\":15662,\"Ġtribes\":15663,\"ĠBelgium\":15664,\"Ġlicensing\":15665,\"ourt\":15666,\"Product\":15667,\"ahl\":15668,\"ĠGem\":15669,\"Ġspecialist\":15670,\"Ġcra\":15671,\"anners\":15672,\"ĠCorbyn\":15673,\"Ġ1973\":15674,\"READ\":15675,\"Ġsummar\":15676,\"Ġoverlook\":15677,\"ĠApplication\":15678,\"Ġinappropriate\":15679,\"Ġdownloaded\":15680,\"Que\":15681,\"ĠBears\":15682,\"Ġthumb\":15683,\"ĠCharacter\":15684,\"ĠReincarnated\":15685,\"ĠSid\":15686,\"Ġdemonstrates\":15687,\"sky\":15688,\"ĠBloomberg\":15689,\"ĠArray\":15690,\"ĠResults\":15691,\"ĠFourth\":15692,\"ĠEDT\":15693,\"ĠOscar\":15694,\"cend\":15695,\"Ġ106\":15696,\"ĠNULL\":15697,\"ĠHERE\":15698,\"match\":15699,\"ĠBrun\":15700,\"Ġglucose\":15701,\"ieg\":15702,\"egu\":15703,\"Ġcertified\":15704,\"Ġrelie\":15705,\"Ġhumanitarian\":15706,\"Ġprayers\":15707,\"King\":15708,\"Ġnan\":15709,\"hou\":15710,\"108\":15711,\"ulu\":15712,\"Ġrenewable\":15713,\"Ġdistinguish\":15714,\"Ġdense\":15715,\"ĠVent\":15716,\"ĠPackage\":15717,\"ĠBoss\":15718,\"Ġeditors\":15719,\"Ġmigr\":15720,\"Tra\":15721,\"ĠPeters\":15722,\"ĠArctic\":15723,\"2004\":15724,\"ĠCape\":15725,\"Ġlocally\":15726,\"Ġlasting\":15727,\"Ġhandy\":15728,\".).\":15729,\"Pan\":15730,\"ĠRES\":15731,\"Index\":15732,\"Ġtensions\":15733,\"Ġformerly\":15734,\"Ġideological\":15735,\"Ġsensors\":15736,\"Ġdealers\":15737,\"Ġdefines\":15738,\"Sk\":15739,\"Ġproceeds\":15740,\"Ġproxy\":15741,\"azines\":15742,\"ĠBash\":15743,\"ĠPad\":15744,\"ĠCraft\":15745,\"ealous\":15746,\"Ġsheets\":15747,\"ometry\":15748,\"June\":15749,\"clock\":15750,\"TT\":15751,\"ĠTheatre\":15752,\"ĠBuzz\":15753,\"Ġchapters\":15754,\"Ġmillenn\":15755,\"Ġdough\":15756,\"ĠCongressional\":15757,\"Ġimagined\":15758,\"avior\":15759,\"Ġclinic\":15760,\"Ġ1945\":15761,\"Ġholder\":15762,\"root\":15763,\"olester\":15764,\"Ġrestart\":15765,\"BN\":15766,\"ĠHamas\":15767,\"ĠJob\":15768,\"Ġorb\":15769,\"Ġram\":15770,\"Ġdisclose\":15771,\"Ġtranslate\":15772,\"Ġimmigrant\":15773,\"Ġannoying\":15774,\"Ġtreaty\":15775,\"anium\":15776,\"ĠTea\":15777,\"ĠLegion\":15778,\"Ġcrowds\":15779,\"ĠBec\":15780,\"ĠAer\":15781,\"ohyd\":15782,\"Bro\":15783,\"Looking\":15784,\"Ġlbs\":15785,\"Ġaggress\":15786,\"Ġseam\":15787,\"Ġintercept\":15788,\"ĠMI\":15789,\"mercial\":15790,\"activ\":15791,\"ĠCit\":15792,\"Ġdimension\":15793,\"Ġconsistency\":15794,\"Ġrushing\":15795,\"ĠDouglas\":15796,\"Ġtrim\":15797,\"Install\":15798,\"icker\":15799,\"Ġshy\":15800,\"106\":15801,\"Ġmentions\":15802,\"pelled\":15803,\"ĠTak\":15804,\"cost\":15805,\"Ġclassroom\":15806,\"Ġfortune\":15807,\"driven\":15808,\"Ġunle\":15809,\"ĠWheel\":15810,\"Ġinvestor\":15811,\"ĠMasters\":15812,\"kit\":15813,\"Ġassociations\":15814,\"ĠEvolution\":15815,\"oping\":15816,\"uscript\":15817,\"Ġprovincial\":15818,\"ĠWalter\":15819,\"avi\":15820,\"SO\":15821,\"Ġunlimited\":15822,\"English\":15823,\"ĠCards\":15824,\"ĠEbola\":15825,\"nered\":15826,\"Ġrevenge\":15827,\"Ġoutright\":15828,\"umper\":15829,\"Ġfitting\":15830,\"ĠSolid\":15831,\"Ġformally\":15832,\"Ġproblematic\":15833,\"Ġhazard\":15834,\"Ġencryption\":15835,\"Ġstraightforward\":15836,\"ĠAK\":15837,\"Ġpse\":15838,\"ĠOrb\":15839,\"ĠChamber\":15840,\"ĠMak\":15841,\"Contents\":15842,\"Ġloyalty\":15843,\"Ġlyrics\":15844,\"ĠSym\":15845,\"Ġwelcomed\":15846,\"Ġcooked\":15847,\"Ġmonop\":15848,\"Ġnurse\":15849,\"Ġmisleading\":15850,\"Ġeternal\":15851,\"Ġshifting\":15852,\"Ġ+=\":15853,\"Vis\":15854,\"Ġinstitutional\":15855,\"illary\":15856,\"Ġpant\":15857,\"VERT\":15858,\"ĠACC\":15859,\"ĠEnh\":15860,\"Ġincon\":15861,\"ĠREUTERS\":15862,\"Ġdonated\":15863,\"âĢ¦âĢ¦âĢ¦âĢ¦\":15864,\"Intern\":15865,\"Ġexhibit\":15866,\"Ġtire\":15867,\"ĠRic\":15868,\"ĠChampion\":15869,\"ĠMuhammad\":15870,\"NING\":15871,\"ĠSoccer\":15872,\"Ġmobility\":15873,\"Ġvarying\":15874,\"ĠMovie\":15875,\"Ġlord\":15876,\"oak\":15877,\"Field\":15878,\"Ġvector\":15879,\"usions\":15880,\"Ġscrap\":15881,\"Ġenabling\":15882,\"make\":15883,\"Tor\":15884,\".*\":15885,\"||\":15886,\"ĠWebsite\":15887,\"ĠNPC\":15888,\"Ġsocialist\":15889,\"ĠBilly\":15890,\"ĠAdditional\":15891,\"Ġcargo\":15892,\"Ġfarms\":15893,\"ĠSoon\":15894,\"ĠPrize\":15895,\"Ġmidnight\":15896,\"Ġ900\":15897,\"seen\":15898,\"ĠSpot\":15899,\"Ġsheep\":15900,\"Ġsponsored\":15901,\"ĠHi\":15902,\"ĠJump\":15903,\"Ġ1967\":15904,\"Microsoft\":15905,\"ĠAgent\":15906,\"Ġcharts\":15907,\"dir\":15908,\"Ġadjacent\":15909,\"Ġtricks\":15910,\"Ġmanga\":15911,\"Ġexagger\":15912,\"/>\":15913,\"football\":15914,\"ĠFCC\":15915,\"GC\":15916,\"ĠTier\":15917,\"andra\":15918,\"OUND\":15919,\"%),\":15920,\"Ġfruits\":15921,\"VC\":15922,\"ĠAA\":15923,\"Rober\":15924,\"Ġmidst\":15925,\"âĹ\":15926,\"anka\":15927,\"Ġlegislature\":15928,\"ĠNeil\":15929,\"Ġtourists\":15930,\"\\\"\\\"\":15931,\"ĠWarning\":15932,\"ĠNevertheless\":15933,\"ĠOfficial\":15934,\"ĠWhatever\":15935,\"Ġmold\":15936,\"Ġdrafted\":15937,\"Ġsubstances\":15938,\"Ġbreed\":15939,\"Ġtags\":15940,\"ĠTask\":15941,\"Ġverb\":15942,\"Ġmanufactured\":15943,\"comments\":15944,\"ĠPolish\":15945,\"Prov\":15946,\"Ġdetermines\":15947,\"Obama\":15948,\"kers\":15949,\"Ġutterly\":15950,\"Ġsect\":15951,\"sche\":15952,\"ĠGates\":15953,\"ĠChap\":15954,\"Ġaluminum\":15955,\"Ġzombie\":15956,\"ĠTouch\":15957,\"ĠUP\":15958,\"Ġsatisfy\":15959,\"Ġpredomin\":15960,\"ascript\":15961,\"Ġelaborate\":15962,\"Ġ1968\":15963,\"Ġmeasuring\":15964,\"ĠVari\":15965,\"anyahu\":15966,\"Ġsir\":15967,\"ulates\":15968,\"idges\":15969,\"ickets\":15970,\"ĠSpencer\":15971,\"TM\":15972,\"oubted\":15973,\"Ġprey\":15974,\"Ġinstalling\":15975,\"ĠCab\":15976,\"reed\":15977,\"reated\":15978,\"Supp\":15979,\"Ġwrist\":15980,\"ĠKerry\":15981,\"107\":15982,\"ĠKle\":15983,\"ĠRachel\":15984,\"Ġcotton\":15985,\"ĠARE\":15986,\"ĠEle\":15987,\"Control\":15988,\"Ġloads\":15989,\"ĠDod\":15990,\"anas\":15991,\"bone\":15992,\"Ġclassical\":15993,\"ĠRegional\":15994,\"ĠInteg\":15995,\"VM\":15996,\"Ġdesires\":15997,\"Ġautism\":15998,\"supported\":15999,\"ĠMessage\":16000,\"Ġcompact\":16001,\"writer\":16002,\"Ġ109\":16003,\"ĠHurricane\":16004,\"cision\":16005,\"Ġcycles\":16006,\"Ġdrill\":16007,\"Ġcolleague\":16008,\"Ġmaker\":16009,\"German\":16010,\"Ġmistaken\":16011,\"Sun\":16012,\"ĠGay\":16013,\"Ġwhatsoever\":16014,\"Ġsells\":16015,\"ĠAirl\":16016,\"liv\":16017,\"ĠOption\":16018,\"Ġsolved\":16019,\"Ġsectors\":16020,\"Ġhorizontal\":16021,\"Ġequation\":16022,\"ĠSkill\":16023,\"ĠBio\":16024,\"gement\":16025,\"ĠSnap\":16026,\"ĠLegal\":16027,\"Ġtrademark\":16028,\"Ġmakeup\":16029,\"Ġassembled\":16030,\"Ġsaves\":16031,\"ĠHalloween\":16032,\"ĠVermont\":16033,\"ĠFROM\":16034,\"Ġfarming\":16035,\"ĠPodcast\":16036,\"acceptable\":16037,\"ĠHigher\":16038,\"Ġasleep\":16039,\"ullivan\":16040,\"Ġreferen\":16041,\"ĠLev\":16042,\"Ġbullets\":16043,\"oko\":16044,\"HC\":16045,\"Ġstairs\":16046,\"Ġmaintains\":16047,\"ĠLower\":16048,\"ĠVi\":16049,\"Ġmarine\":16050,\"Ġacres\":16051,\"Ġcoordinator\":16052,\"ĠJoh\":16053,\"Ġcounterparts\":16054,\"ĠBrothers\":16055,\"Ġindict\":16056,\"bra\":16057,\"Ġchunk\":16058,\"Ġcents\":16059,\"Home\":16060,\"ĠMonth\":16061,\"Ġaccordingly\":16062,\"ifles\":16063,\"ĠGermans\":16064,\"ĠSyn\":16065,\"Hub\":16066,\"Ġeyeb\":16067,\"âĶĢâĶĢâĶĢâĶĢ\":16068,\"Ġranges\":16069,\"ĠHolland\":16070,\"ĠRobot\":16071,\"fc\":16072,\"Mike\":16073,\"Ġplasma\":16074,\"Ġswap\":16075,\"Ġathlete\":16076,\"ĠRams\":16077,\",'\\\"\":16078,\"Ġinfections\":16079,\"Ġcorrid\":16080,\"Ġvib\":16081,\"Ġpatches\":16082,\"Ġtraditionally\":16083,\"Ġrevelation\":16084,\"Ġsweep\":16085,\"Ġglance\":16086,\"Ġinex\":16087,\"2003\":16088,\"ĠRaw\":16089,\"working\":16090,\"osures\":16091,\"ĠDat\":16092,\"ĠLynch\":16093,\"Ġleverage\":16094,\"ĠReid\":16095,\"Ġcorrelation\":16096,\"iances\":16097,\"avascript\":16098,\"Ġrepository\":16099,\"retty\":16100,\"Ġ1972\":16101,\"240\":16102,\"Ġoun\":16103,\"pol\":16104,\"ĠReed\":16105,\"Ġtactical\":16106,\"isite\":16107,\"Apple\":16108,\"ĠQuinn\":16109,\"Ġraped\":16110,\"illo\":16111,\"Europe\":16112,\"Ġalgorithms\":16113,\"ĠRodrig\":16114,\"iu\":16115,\"Ġillum\":16116,\"Ġfame\":16117,\"Ġintroducing\":16118,\"Ġdelays\":16119,\"ĠRaiders\":16120,\"Ġwhistle\":16121,\"Ġnovels\":16122,\"ĠReally\":16123,\"Ġderiv\":16124,\"Ġpublications\":16125,\"ĠNeither\":16126,\"ĠCommerce\":16127,\"Ġaston\":16128,\"language\":16129,\"Notes\":16130,\"ĠRoth\":16131,\"ĠFear\":16132,\"Ġmate\":16133,\"Ġparade\":16134,\"ĠQB\":16135,\"Ġmaneu\":16136,\"ĠCincinnati\":16137,\"mitting\":16138,\"Ġwaist\":16139,\"ĠRew\":16140,\"Ġdiscont\":16141,\"Ð°\":16142,\"Ġstaring\":16143,\"Ġalias\":16144,\"Ġsecurities\":16145,\"Ġtoilet\":16146,\"ĠJedi\":16147,\"Ġunlaw\":16148,\"vised\":16149,\"////////\":16150,\"](\":16151,\"ĠWeiss\":16152,\"Ġprest\":16153,\"ĠCompan\":16154,\"Ġmemo\":16155,\"ĠGrace\":16156,\"July\":16157,\"ĠElite\":16158,\"center\":16159,\"ĠStay\":16160,\"Ġgalaxy\":16161,\"Ġtooth\":16162,\"ĠSettings\":16163,\"Ġsubjected\":16164,\"ãĤ¦\":16165,\"Ġlineback\":16166,\"Ġretailers\":16167,\"ĠWant\":16168,\"Ġdangers\":16169,\"Air\":16170,\"Ġvoluntary\":16171,\"eway\":16172,\"Ġinterpreted\":16173,\"otine\":16174,\"Ã§\":16175,\"Ġpel\":16176,\"Service\":16177,\"ĠEventually\":16178,\"Ġcareers\":16179,\"Ġthreaten\":16180,\"Ġmemor\":16181,\"ĠBradley\":16182,\"ancies\":16183,\"sn\":16184,\"ĠUnknown\":16185,\"National\":16186,\"Ġshadows\":16187,\"ailand\":16188,\"ĠDash\":16189,\"Everyone\":16190,\"izzard\":16191,\"March\":16192,\"=(\":16193,\"Ġpulls\":16194,\"Ġstranger\":16195,\"Ġbackwards\":16196,\"ĠBernard\":16197,\"imensional\":16198,\"Ġchron\":16199,\"Ġtheoretical\":16200,\"ktop\":16201,\"Ġware\":16202,\"ĠInvestig\":16203,\"ĠIniti\":16204,\"ĠOperations\":16205,\"oven\":16206,\"ocide\":16207,\"*/\":16208,\"Ġflames\":16209,\"ĠCash\":16210,\"shit\":16211,\"Ġcab\":16212,\"ĠAnaly\":16213,\"ĠSeah\":16214,\"Ġdefining\":16215,\"Ġordering\":16216,\"Ġimmun\":16217,\"Ġpersistent\":16218,\"ACH\":16219,\"Russian\":16220,\"mans\":16221,\"Ġhind\":16222,\"Ġphotography\":16223,\"Â©\":16224,\"Ġhug\":16225,\"Ġ107\":16226,\"ĠHence\":16227,\"iots\":16228,\"udeau\":16229,\"Ġsubsidies\":16230,\"Ġroutinely\":16231,\"ĠDevice\":16232,\"itic\":16233,\"Ġdisgust\":16234,\"lander\":16235,\"Ġ1940\":16236,\"Ġassignment\":16237,\"ĠBesides\":16238,\"wick\":16239,\"ĠDust\":16240,\"usc\":16241,\"structed\":16242,\"111\":16243,\"develop\":16244,\"Ġfond\":16245,\"Ġintersection\":16246,\"Ġdignity\":16247,\"Ġcommissioner\":16248,\"Without\":16249,\"reach\":16250,\"Ġcartoon\":16251,\"Ġscales\":16252,\"ãĥŃ\":16253,\"FIG\":16254,\"Ġsurveys\":16255,\"ĠIndonesia\":16256,\"Ġartwork\":16257,\"Ġunch\":16258,\"Ġcycling\":16259,\"unct\":16260,\"auer\":16261,\"orate\":16262,\"ĠObviously\":16263,\"Ġcharacterized\":16264,\"feld\":16265,\"Ġaffirm\":16266,\"Ġinnings\":16267,\"Ġé\":16268,\"Ġaliens\":16269,\"Ġcloth\":16270,\"etooth\":16271,\"ĠCertain\":16272,\"Â§\":16273,\"Ġdigest\":16274,\"know\":16275,\"ĠXL\":16276,\"Ġpredictions\":16277,\"Ġdin\":16278,\"WAR\":16279,\"Ġaftermath\":16280,\"Example\":16281,\"ĠSuccess\":16282,\"ĠThr\":16283,\"IGN\":16284,\"Ġminer\":16285,\"Bus\":16286,\"Ġclarity\":16287,\"heimer\":16288,\"ĠOUT\":16289,\"ĠSend\":16290,\"ĠCircle\":16291,\"ĠDiet\":16292,\"Ġpronounced\":16293,\"Ġcreators\":16294,\"Ġearthquake\":16295,\"attery\":16296,\"geons\":16297,\"Ġod\":16298,\"Ġlaying\":16299,\"orp\":16300,\"Ult\":16301,\"project\":16302,\"Ġundermin\":16303,\"Ġsequel\":16304,\"Sam\":16305,\"ĠDarkness\":16306,\"Ġreception\":16307,\"bull\":16308,\"YS\":16309,\"ĠVir\":16310,\"Ġsequences\":16311,\"ĠCoin\":16312,\"Ġoutfit\":16313,\"ĠWait\":16314,\"119\":16315,\"Ġdelivers\":16316,\"......\":16317,\"Ġblown\":16318,\"ĠEsc\":16319,\"ĠMath\":16320,\"perm\":16321,\"ĠUl\":16322,\"Ġglim\":16323,\"Ġfacial\":16324,\"Ġgreenhouse\":16325,\"Ġtokens\":16326,\"/-\":16327,\"ĠAnnual\":16328,\"ĠONE\":16329,\"Ġteenage\":16330,\"ĠPhysical\":16331,\"ĠLang\":16332,\"ĠCelt\":16333,\"Ġsued\":16334,\"ividually\":16335,\"Ġpatience\":16336,\"chair\":16337,\"regular\":16338,\"Ġaug\":16339,\"inv\":16340,\"except\":16341,\"ĠLil\":16342,\"Ġnest\":16343,\"fd\":16344,\"sum\":16345,\"ĠChase\":16346,\"Russia\":16347,\"ĠJennifer\":16348,\"Ġoffseason\":16349,\"Overall\":16350,\"Fore\":16351,\"Ġriot\":16352,\"Aud\":16353,\"former\":16354,\"Ġdefenders\":16355,\"ĠCT\":16356,\"iotic\":16357,\"ribly\":16358,\"Ġautomated\":16359,\"Ġpenis\":16360,\"Ġinsist\":16361,\"Ġdiagram\":16362,\"ĠSQL\":16363,\"ĠGarc\":16364,\"Ġwitch\":16365,\"client\":16366,\"ierra\":16367,\"ambers\":16368,\"Ġrecount\":16369,\"far\":16370,\"Very\":16371,\"osterone\":16372,\"Ġappreciated\":16373,\"ĠPerfect\":16374,\"Section\":16375,\"Ġdoses\":16376,\"ocaust\":16377,\"Ġcostly\":16378,\"Ġgrams\":16379,\"ĠShi\":16380,\"Ġwrestling\":16381,\"Ġ1971\":16382,\"Ġtrophy\":16383,\"Ġnerve\":16384,\"ĠKaz\":16385,\"ĠExperience\":16386,\"Ġpledged\":16387,\"Ġplayback\":16388,\"Ġcreativity\":16389,\"bye\":16390,\"Ġattackers\":16391,\"Ġholders\":16392,\"ĠCoach\":16393,\"ĠPhD\":16394,\"Ġtransfers\":16395,\"Ġcolored\":16396,\"ĠHindu\":16397,\"Ġdrown\":16398,\"Ġlistened\":16399,\"ĠWA\":16400,\"iasm\":16401,\"PO\":16402,\"Ġappealing\":16403,\"Ġdisclosed\":16404,\"ĠChicken\":16405,\"agging\":16406,\"Ġpleaded\":16407,\"Ġnavigation\":16408,\"ĠReturns\":16409,\"Ġ[[\":16410,\"ROR\":16411,\"EA\":16412,\"Ġphotographer\":16413,\"ĠRider\":16414,\"ippers\":16415,\"Ġslice\":16416,\"Ġerect\":16417,\"Ġhed\":16418,\"issance\":16419,\"ĠVikings\":16420,\"urious\":16421,\"Ġappet\":16422,\"oubtedly\":16423,\"Child\":16424,\"Ġauthentic\":16425,\"oos\":16426,\"ĠMaking\":16427,\"Ġannouncing\":16428,\"Ġbod\":16429,\"Ġmeter\":16430,\"ĠNine\":16431,\"ĠRogue\":16432,\"Ġworkforce\":16433,\"Ġrenewed\":16434,\"Ġorganisations\":16435,\"acs\":16436,\"PLE\":16437,\"Short\":16438,\"Ġcompounds\":16439,\"ĠVisit\":16440,\"Ġenvelop\":16441,\"earth\":16442,\"Ġsupportive\":16443,\"ggle\":16444,\"ĠBrussels\":16445,\"ĠGuild\":16446,\"Create\":16447,\"REL\":16448,\"Ġaveraged\":16449,\"Ġ1969\":16450,\"riages\":16451,\"Ġlengthy\":16452,\"Ġforgot\":16453,\"Okay\":16454,\"ĠErd\":16455,\"Ġdealer\":16456,\"Ġrecession\":16457,\"DD\":16458,\"Ġdesperately\":16459,\"Ġhunger\":16460,\"Ġsticks\":16461,\"Ġmph\":16462,\"ĠFaith\":16463,\"Ġintentionally\":16464,\"Ġdemol\":16465,\"ueller\":16466,\"ĠSale\":16467,\"Ġdebris\":16468,\"spring\":16469,\"Ġleap\":16470,\">>>>\":16471,\"Ġcontainers\":16472,\"selling\":16473,\"ranean\":16474,\"attering\":16475,\"Ġcommented\":16476,\"ĠCM\":16477,\"onut\":16478,\"Ġwoods\":16479,\"especially\":16480,\"Ġorganize\":16481,\"ivic\":16482,\"ĠWoods\":16483,\"anga\":16484,\"squ\":16485,\"Ġmaj\":16486,\"amon\":16487,\"Ġaxis\":16488,\"Ġ1974\":16489,\"ĠDenmark\":16490,\"Ġwarrior\":16491,\"ĠPand\":16492,\"Ġoutlined\":16493,\"ĠBO\":16494,\"insula\":16495,\"zilla\":16496,\"ebook\":16497,\"Ġdare\":16498,\"Ġsearched\":16499,\"Ġnavigate\":16500,\"Sn\":16501,\"writing\":16502,\"Ġunited\":16503,\"Japan\":16504,\"ĠHebrew\":16505,\"Ġflame\":16506,\"Ġrelies\":16507,\"Ġcatching\":16508,\"ĠSho\":16509,\"Ġimprisonment\":16510,\"Ġpockets\":16511,\"Ġclosure\":16512,\"ĠFam\":16513,\"tim\":16514,\"adequ\":16515,\"Activity\":16516,\"Ġrecruiting\":16517,\"ĠWATCH\":16518,\"ĠArgentina\":16519,\"dest\":16520,\"Ġapologize\":16521,\"oro\":16522,\"Ġlacks\":16523,\"Ġtuned\":16524,\"ĠGriffin\":16525,\"Ġinfamous\":16526,\"Ġcelebrity\":16527,\"sson\":16528,\"Ġ----------------------------------------------------------------\":16529,\"ĠIsis\":16530,\"ĠDisplay\":16531,\"Ġcredibility\":16532,\"Ġeconomies\":16533,\"Ġheadline\":16534,\"ĠCowboys\":16535,\"Ġindef\":16536,\"Ġlately\":16537,\"Ġincentives\":16538,\"button\":16539,\"ĠMob\":16540,\"Aut\":16541,\"Ġresigned\":16542,\"ĠOm\":16543,\"camp\":16544,\"Ġprofiles\":16545,\"Ġschemes\":16546,\"olphins\":16547,\"ayed\":16548,\"Clinton\":16549,\"enh\":16550,\"ĠYahoo\":16551,\"Ġabst\":16552,\"Ġank\":16553,\"suits\":16554,\"Ġwished\":16555,\"ĠMarco\":16556,\"udden\":16557,\"Ġsphere\":16558,\"ĠBishop\":16559,\"Ġincorporated\":16560,\"ĠPlant\":16561,\"114\":16562,\"Ġhated\":16563,\"pic\":16564,\"Ġdonate\":16565,\"Ġlined\":16566,\"Ġbeans\":16567,\"Ġstealing\":16568,\"Ġcostume\":16569,\"Ġsheriff\":16570,\"Ġforty\":16571,\"Ġintact\":16572,\"Ġadapted\":16573,\"Ġtravelling\":16574,\"bart\":16575,\"Ġnicely\":16576,\"Ġdried\":16577,\"Ġscal\":16578,\"osity\":16579,\"NOTE\":16580,\"ĠBh\":16581,\"ĠBroncos\":16582,\"ĠIgn\":16583,\"Ġintimate\":16584,\"Ġchemistry\":16585,\"Ġoptimal\":16586,\"Deb\":16587,\"ĠGeneration\":16588,\"Ġ],\":16589,\"ichi\":16590,\"ĠWii\":16591,\"ĠYOUR\":16592,\"ventions\":16593,\"Write\":16594,\"Ġpopul\":16595,\"unning\":16596,\"ĠWor\":16597,\"Vol\":16598,\"Ġqueen\":16599,\"heads\":16600,\"KK\":16601,\"Ġanalyze\":16602,\"opic\":16603,\"earchers\":16604,\"Ġdot\":16605,\"legraph\":16606,\"astically\":16607,\"Ġupgrades\":16608,\"Ġcares\":16609,\"Ġextending\":16610,\"Ġfreeze\":16611,\"Ġinability\":16612,\"Ġorgans\":16613,\"Ġpretend\":16614,\"Ġoutlet\":16615,\"113\":16616,\"olan\":16617,\"ĠMall\":16618,\"uling\":16619,\"talk\":16620,\"Ġexpressing\":16621,\"ĠAlways\":16622,\"ĠBegin\":16623,\"files\":16624,\"Ġlicenses\":16625,\"%%\":16626,\"ĠMitt\":16627,\"Ġfilters\":16628,\"ĠMilwaukee\":16629,\"GN\":16630,\"Ġunfold\":16631,\"Mo\":16632,\"Ġnutrition\":16633,\"ppo\":16634,\"Bo\":16635,\"Ġfounding\":16636,\"Ġundermine\":16637,\"Ġeasiest\":16638,\"ĠCzech\":16639,\"ĠMack\":16640,\"Ġsexuality\":16641,\"ĠNixon\":16642,\"Win\":16643,\"ĠArn\":16644,\"ĠKin\":16645,\"ãĤ£\":16646,\"icer\":16647,\"Ġfortun\":16648,\"Ġsurfaces\":16649,\"aghd\":16650,\"Ġcarriers\":16651,\"ĠPART\":16652,\"ĠTib\":16653,\"Ġinterval\":16654,\"Ġfrustrating\":16655,\"ĠShip\":16656,\"ĠArmed\":16657,\"ffe\":16658,\"Ġboats\":16659,\"ĠAbraham\":16660,\"inis\":16661,\"Ġsuited\":16662,\"thread\":16663,\"iov\":16664,\"abul\":16665,\"ĠVenezuela\":16666,\"Ġtom\":16667,\"super\":16668,\"Ġcastle\":16669,\"although\":16670,\"ioxide\":16671,\"eches\":16672,\"Ġevolutionary\":16673,\"Ġnegotiate\":16674,\"Ġconfronted\":16675,\"Remember\":16676,\"Ġ170\":16677,\"Such\":16678,\"Ġ911\":16679,\"mult\":16680,\"ĠAbyss\":16681,\"urry\":16682,\"kees\":16683,\"spec\":16684,\"ĠBarbara\":16685,\"Ġbelonging\":16686,\"Ġvillain\":16687,\"istani\":16688,\"Ġaccountable\":16689,\"Ġportions\":16690,\"ĠDecl\":16691,\"Ur\":16692,\"ĠKate\":16693,\"gre\":16694,\"Ġmagazines\":16695,\"UCK\":16696,\"Ġregulate\":16697,\"omon\":16698,\"ĠAlmost\":16699,\"Ġoverview\":16700,\"Ġscram\":16701,\"Ġloot\":16702,\"ĠFitz\":16703,\"Ġcharacteristic\":16704,\"ĠSnake\":16705,\"say\":16706,\"ĠRico\":16707,\"Ġtrait\":16708,\"ĠJoined\":16709,\"aucus\":16710,\"Ġadaptation\":16711,\"ĠAirlines\":16712,\"Ġarchae\":16713,\"ĠIde\":16714,\"Ġbikes\":16715,\"Ġliterary\":16716,\"Ġinfluences\":16717,\"ĠUsed\":16718,\"Creat\":16719,\"Ġplea\":16720,\"ĠDefence\":16721,\"ĠAssass\":16722,\"Ġpond\":16723,\"ULT\":16724,\")\\\"\":16725,\"Ġevaluated\":16726,\"Ġobtaining\":16727,\"Ġdemographic\":16728,\"Ġvigil\":16729,\"aley\":16730,\"Ġspouse\":16731,\"ĠSeahawks\":16732,\"respons\":16733,\"ĠBelt\":16734,\"umatic\":16735,\"Ġrises\":16736,\"runner\":16737,\"ĠMichelle\":16738,\"Ġpotent\":16739,\"race\":16740,\"ĠPAC\":16741,\"Find\":16742,\"olesterol\":16743,\"ISS\":16744,\"ĠIntroduced\":16745,\"resses\":16746,\"ignment\":16747,\"Os\":16748,\"ĠTu\":16749,\"ĠDex\":16750,\"icides\":16751,\"Ġsparked\":16752,\"ĠLaura\":16753,\"ĠBryant\":16754,\"Ġsmiling\":16755,\"ĠNexus\":16756,\"Ġdefendants\":16757,\"ĠCatal\":16758,\"Ġdishes\":16759,\"shaped\":16760,\"Ġprolong\":16761,\"mt\":16762,\"($\":16763,\"ãĢĤ\":16764,\"Ġcalculations\":16765,\"ĠSame\":16766,\"Ġpiv\":16767,\"HH\":16768,\"Ġcancelled\":16769,\"Ġgrin\":16770,\"Ġterritories\":16771,\"istically\":16772,\"Come\":16773,\"ĠParent\":16774,\"Project\":16775,\"Ġneglig\":16776,\"ĠPrivacy\":16777,\"Ġammo\":16778,\"LECT\":16779,\"olutely\":16780,\"ĠEpic\":16781,\"Ġmisunder\":16782,\"wal\":16783,\"April\":16784,\"mos\":16785,\"pathy\":16786,\"ĠCarson\":16787,\"Ġalbums\":16788,\"ĠEasy\":16789,\"Ġpistol\":16790,\"<<\":16791,\"Ġ\\\\(\":16792,\"target\":16793,\"help\":16794,\"Ġinterpre\":16795,\"conscious\":16796,\"ĠHousing\":16797,\"ĠJoint\":16798,\"127\":16799,\"Ġbeers\":16800,\"science\":16801,\"ĠFirefox\":16802,\"effective\":16803,\"ĠCabin\":16804,\"ĠOkay\":16805,\"ĠApplic\":16806,\"Ġspacecraft\":16807,\"ĠSR\":16808,\"vet\":16809,\"ĠStrange\":16810,\"SB\":16811,\"Ġcorps\":16812,\"iberal\":16813,\"efficient\":16814,\"Ġprevalence\":16815,\"Ġeconomists\":16816,\"118\":16817,\"Thread\":16818,\"ordable\":16819,\"ODE\":16820,\"ĠCant\":16821,\"=-=-\":16822,\"ifiable\":16823,\"ĠAround\":16824,\"Ġpole\":16825,\"Ġwillingness\":16826,\"CLA\":16827,\"ĠKid\":16828,\"Ġcomplement\":16829,\"Ġscattered\":16830,\"Ġinmates\":16831,\"Ġbleeding\":16832,\"every\":16833,\"Ġqueue\":16834,\"ĠTrain\":16835,\"Ġhij\":16836,\"Ġmelee\":16837,\"pleted\":16838,\"Ġdigit\":16839,\"Ġgem\":16840,\"official\":16841,\"Ġlifting\":16842,\"Ðµ\":16843,\"Requ\":16844,\"itutes\":16845,\"Ġpackaging\":16846,\"ĠWorkers\":16847,\"hran\":16848,\"ĠLebanon\":16849,\"olesc\":16850,\"Ġpunished\":16851,\"ĠJuan\":16852,\"Ġjam\":16853,\"ĠDocument\":16854,\"Ġmapping\":16855,\"icates\":16856,\"Ġinevitably\":16857,\"Ġvanilla\":16858,\"ĠTon\":16859,\"Ġwatches\":16860,\"Ġleagues\":16861,\"Ġinitiated\":16862,\"degree\":16863,\"portion\":16864,\"Ġrecalls\":16865,\"Ġruin\":16866,\"Ġmelt\":16867,\"IAN\":16868,\"Ġhem\":16869,\"Exp\":16870,\"Ġbaking\":16871,\"ĠColomb\":16872,\"atible\":16873,\"Ġradius\":16874,\"plug\":16875,\"ĠIF\":16876,\"etically\":16877,\"Ġfict\":16878,\"HER\":16879,\"ĠTap\":16880,\"atinum\":16881,\"Ġink\":16882,\"Ġcoh\":16883,\"ĠWizard\":16884,\"both\":16885,\"tex\":16886,\"Ġspends\":16887,\"ĠCurrently\":16888,\"ĠPit\":16889,\"Ġneurons\":16890,\"ignt\":16891,\"Ġrall\":16892,\"Ġbuses\":16893,\"building\":16894,\"Ġadjustments\":16895,\"Ġcried\":16896,\"iblical\":16897,\"atted\":16898,\"ĠZion\":16899,\"ĠMatter\":16900,\"Ġmeditation\":16901,\"ĠDennis\":16902,\"Ġours\":16903,\"ĠTab\":16904,\"Ġrankings\":16905,\"ortal\":16906,\"Ġadvers\":16907,\"Ġsurrender\":16908,\"ĠGob\":16909,\"cium\":16910,\"omas\":16911,\"imeter\":16912,\"Ġmultiplayer\":16913,\"Ġheroin\":16914,\"Ġoptimistic\":16915,\"Ġindicator\":16916,\"ĠBrig\":16917,\"Ġgrocery\":16918,\"Ġapplicant\":16919,\"ĠRocket\":16920,\"vid\":16921,\"Exception\":16922,\"pent\":16923,\"Ġorganizing\":16924,\"Ġencounters\":16925,\"ĠTOD\":16926,\"Ġjewel\":16927,\"Save\":16928,\"ĠChristie\":16929,\"Ġheating\":16930,\"Ġlazy\":16931,\"ĠCP\":16932,\"Ġcousin\":16933,\"Config\":16934,\"Ġregener\":16935,\"Ġnearest\":16936,\"Ġachieving\":16937,\"ENS\":16938,\"throw\":16939,\"ĠRichmond\":16940,\"antle\":16941,\"2002\":16942,\"Ġanten\":16943,\"bird\":16944,\"133\":16945,\"Ġnarc\":16946,\"raint\":16947,\"unny\":16948,\"ĠHispanic\":16949,\"ournaments\":16950,\"Ġprophe\":16951,\"ĠThailand\":16952,\"ĠTi\":16953,\"Ġinjection\":16954,\"Ġinherit\":16955,\"ravis\":16956,\"Ġmedi\":16957,\"Ġwhoever\":16958,\"ĠDEBUG\":16959,\"GP\":16960,\"ĠHud\":16961,\"Card\":16962,\"prom\":16963,\"Ġpor\":16964,\"Ġoverhead\":16965,\"Law\":16966,\"Ġviolate\":16967,\"Ġheated\":16968,\"Ġdescriptions\":16969,\"Ġachievements\":16970,\"ĠBeer\":16971,\"ĠQuant\":16972,\"Was\":16973,\"Ġeighth\":16974,\"ĠIv\":16975,\"Ġspecialized\":16976,\"UPDATE\":16977,\"ĠDelta\":16978,\"Pop\":16979,\"Jul\":16980,\"ĠAsk\":16981,\"ophy\":16982,\"Ġnewsletters\":16983,\"ĠTool\":16984,\"Ġgard\":16985,\"ĠConfeder\":16986,\"ĠGMT\":16987,\"ĠAbbott\":16988,\"Ġimmunity\":16989,\"ĠVM\":16990,\"Islam\":16991,\"Ġimplicit\":16992,\"wd\":16993,\"Ġ1944\":16994,\"ravity\":16995,\"ometric\":16996,\"Ġsurviving\":16997,\"urai\":16998,\"ĠPrison\":16999,\"Ġrust\":17000,\"ĠSketch\":17001,\"Ġbees\":17002,\"ĠTheory\":17003,\"Ġmerit\":17004,\"Tex\":17005,\"chat\":17006,\"Ġmim\":17007,\"Ġpaste\":17008,\"ĠKoch\":17009,\"Ġignorance\":17010,\"ĠShoot\":17011,\"Ġbasement\":17012,\"United\":17013,\"ĠAdvis\":17014,\"height\":17015,\"Ġfoster\":17016,\"Ġdetain\":17017,\"information\":17018,\"Ġneural\":17019,\"';\":17020,\"Ġproves\":17021,\"allery\":17022,\"Ġinvitation\":17023,\"umbers\":17024,\"Ġcattle\":17025,\"Ġbicycle\":17026,\"zi\":17027,\"Ġconsultant\":17028,\"Ġapology\":17029,\"ĠTiger\":17030,\"Ġ123\":17031,\"999\":17032,\"Ġindividually\":17033,\"rt\":17034,\"igion\":17035,\"ĠBrazilian\":17036,\"Ġdisturb\":17037,\"Ġentrepreneurs\":17038,\"Ġforests\":17039,\"cerpt\":17040,\"plates\":17041,\"pher\":17042,\"clipse\":17043,\"Ġtwitter\":17044,\"Ġacids\":17045,\"ographical\":17046,\"hum\":17047,\"ĠBald\":17048,\"ifully\":17049,\"Ġcompiler\":17050,\"ĠDA\":17051,\"Ġdonor\":17052,\"asi\":17053,\"Ġtribal\":17054,\"lash\":17055,\"ĠConfig\":17056,\"Ġapplicants\":17057,\"Ġsalaries\":17058,\"135\":17059,\"Putin\":17060,\"ĠFocus\":17061,\"irs\":17062,\"Ġmisconduct\":17063,\"ĠHaz\":17064,\"Ġeaten\":17065,\"Mobile\":17066,\"Muslim\":17067,\"ĠMarcus\":17068,\"viol\":17069,\"Ġfavorable\":17070,\"Ġstub\":17071,\"adin\":17072,\"ĠHob\":17073,\"Ġfaithful\":17074,\"Ġelectronics\":17075,\"Ġvacuum\":17076,\"wait\":17077,\"backed\":17078,\"economic\":17079,\"dist\":17080,\"Ġtenure\":17081,\"Ġsincere\":17082,\"ĠTogether\":17083,\"ĠWave\":17084,\"Ġprogression\":17085,\"Ġdenying\":17086,\"Ġdistress\":17087,\"braska\":17088,\"third\":17089,\"Ġmixing\":17090,\"Ġcolonial\":17091,\"Ġprivately\":17092,\"Ġunrest\":17093,\"aternity\":17094,\"Ġpremises\":17095,\"anti\":17096,\"gregation\":17097,\"Ġlicence\":17098,\"ĠHind\":17099,\"ĠSamuel\":17100,\"Ġconvincing\":17101,\"ĠAce\":17102,\"ĠRust\":17103,\"ĠNetanyahu\":17104,\"Ġhandles\":17105,\"ĠPatch\":17106,\"oriented\":17107,\"aho\":17108,\"ĠGonz\":17109,\"Ġhackers\":17110,\"claimer\":17111,\"Ġcustoms\":17112,\"ĠGran\":17113,\"fighters\":17114,\"Ġluc\":17115,\"Ġmanuscript\":17116,\"arenthood\":17117,\"Ġdevil\":17118,\"Ġwarriors\":17119,\"Ġoffenders\":17120,\"William\":17121,\"Ġholidays\":17122,\"Ġnightmare\":17123,\"Ġlever\":17124,\"ifferent\":17125,\"Stat\":17126,\"Ġexhibition\":17127,\"puted\":17128,\"ĠPure\":17129,\"Ġalpha\":17130,\"Ġenthusiasm\":17131,\"ĠRepresentatives\":17132,\"EAR\":17133,\"ĠTyp\":17134,\"Ġwheat\":17135,\"ĠAlf\":17136,\"Ġcorrection\":17137,\"Ġevangel\":17138,\"ATT\":17139,\"Miss\":17140,\"Ġsoup\":17141,\"Ġimplied\":17142,\"param\":17143,\"Ġsexy\":17144,\"ĠLux\":17145,\"Ġrepublic\":17146,\"patch\":17147,\"ablish\":17148,\"Ġicons\":17149,\"Ġfathers\":17150,\"ĠGET\":17151,\"ĠCarib\":17152,\"Ġregulated\":17153,\"ĠCohen\":17154,\"ĠBobby\":17155,\"Ġner\":17156,\"Ġbent\":17157,\"ventory\":17158,\"ĠAlong\":17159,\"ĠEST\":17160,\"ĠWallace\":17161,\"Ġmurders\":17162,\"rise\":17163,\"kell\":17164,\"ĠCommonwealth\":17165,\"Ġnasty\":17166,\"eta\":17167,\"ĠMIT\":17168,\"Ġadministered\":17169,\"Ġgenuinely\":17170,\"Editor\":17171,\"nick\":17172,\"Ġhydro\":17173,\"********************************\":17174,\"ĠBle\":17175,\"Ġfines\":17176,\"Ġgorge\":17177,\"ausible\":17178,\"rh\":17179,\"Ġapple\":17180,\"mentioned\":17181,\"Ġrope\":17182,\"otyp\":17183,\"HR\":17184,\"Ġdisappointing\":17185,\"Ġcage\":17186,\"nik\":17187,\"Ġdoubts\":17188,\"ĠFREE\":17189,\"prints\":17190,\"ĠMUST\":17191,\"Ġvendors\":17192,\"ĠInqu\":17193,\"Ġliberals\":17194,\"Ġcontractor\":17195,\"Ġupside\":17196,\"children\":17197,\"Ġtricky\":17198,\"Ġregulators\":17199,\"charged\":17200,\"liter\":17201,\"Ġ***\":17202,\"Ġrebell\":17203,\"lang\":17204,\"Ġlocals\":17205,\"Ġphysicians\":17206,\"Ġhey\":17207,\"arse\":17208,\"tm\":17209,\"ĠLex\":17210,\"Ġbehavioral\":17211,\"successful\":17212,\"FX\":17213,\"Ġbrick\":17214,\"ovic\":17215,\"Ġconform\":17216,\"Ġreviewing\":17217,\"Ġinsights\":17218,\"Ġbiology\":17219,\"ĠRemove\":17220,\"ĠExtra\":17221,\"Ġcommitting\":17222,\"induced\":17223,\"ignty\":17224,\"igm\":17225,\"Ġatomic\":17226,\"Common\":17227,\"ĠEM\":17228,\"ĠPere\":17229,\"ĠItems\":17230,\"eh\":17231,\"Ġpreserved\":17232,\"ĠHood\":17233,\"Ġprisoner\":17234,\"Ġbankruptcy\":17235,\"Ġgren\":17236,\"ushes\":17237,\"Ġexploitation\":17238,\"Ġsignatures\":17239,\"Ġfinan\":17240,\"],\\\"\":17241,\"ĠMR\":17242,\"Ġmeg\":17243,\"remlin\":17244,\"Ġmusicians\":17245,\"Ġselecting\":17246,\"Ġexamining\":17247,\"INK\":17248,\"lated\":17249,\"Hi\":17250,\"Ġartic\":17251,\"Ġpets\":17252,\"Ġimpair\":17253,\"ĠMAN\":17254,\"Ġtablets\":17255,\"include\":17256,\"Range\":17257,\"Ġcaut\":17258,\"Ġlogs\":17259,\"Ġmounting\":17260,\"Ġunaware\":17261,\"Ġdynamics\":17262,\"ĠPalestine\":17263,\"ĠQuarter\":17264,\"ĠPurple\":17265,\"Ġma\":17266,\"ĠImport\":17267,\"Ġcollections\":17268,\"ciation\":17269,\"Ġsuccessor\":17270,\"Ġclone\":17271,\"Ġaiming\":17272,\"Ġpossessed\":17273,\"Ġsticking\":17274,\"Ġshaking\":17275,\"Ġlocate\":17276,\"ĠHockey\":17277,\"Turn\":17278,\"170\":17279,\"Ġfifteen\":17280,\"ĠHarrison\":17281,\"Ġcontinuously\":17282,\"ĠTC\":17283,\"ĠValent\":17284,\"ĠRescue\":17285,\"Ġbypass\":17286,\"amount\":17287,\"Ġmast\":17288,\"Ġprotects\":17289,\"Ġartistic\":17290,\"Ġsometime\":17291,\"Ġshoe\":17292,\"Ġshouted\":17293,\"ificant\":17294,\"etitive\":17295,\"ĠRegister\":17296,\"ĠJin\":17297,\"Ġconcentrated\":17298,\"lington\":17299,\"onies\":17300,\"Ġgenerator\":17301,\"yrim\":17302,\"ĠArmen\":17303,\"Ġclearing\":17304,\"ido\":17305,\"ĠTW\":17306,\"alph\":17307,\"Ġladies\":17308,\"Hard\":17309,\"Ġdialog\":17310,\"Ġinputs\":17311,\"æľ\":17312,\"Ġposes\":17313,\"Ġslots\":17314,\"ĠPremium\":17315,\"Ġleaks\":17316,\"Ġbosses\":17317,\"Ġ113\":17318,\"course\":17319,\"Acc\":17320,\"ĠNewton\":17321,\"ĠAustria\":17322,\"ĠMage\":17323,\"Ġteaches\":17324,\"abad\":17325,\"Ġwears\":17326,\"Ġcyl\":17327,\"Ġcurse\":17328,\"ĠSales\":17329,\"ĠWings\":17330,\"Ġpsy\":17331,\"Ġgaps\":17332,\"ĠIceland\":17333,\"ĠPinterest\":17334,\"Ġlandlord\":17335,\"Ġdefinitions\":17336,\"ĠKer\":17337,\"Ġsufficiently\":17338,\"ĠPence\":17339,\"ĠArchitect\":17340,\"Ġsurpass\":17341,\"Ġ114\":17342,\"Ġsuperhero\":17343,\"ĠDisease\":17344,\"Ġpriests\":17345,\"ĠCulture\":17346,\"Ġdefinitive\":17347,\"Ġsecretly\":17348,\"ĠDance\":17349,\"install\":17350,\"chief\":17351,\"ĠJessica\":17352,\"Would\":17353,\"Updated\":17354,\"Ġlocker\":17355,\"ĠKay\":17356,\"Ġmemorial\":17357,\"è¦\":17358,\"fat\":17359,\"Ġdisgu\":17360,\"Ġflavors\":17361,\"ĠBaseball\":17362,\"ĠResistance\":17363,\"Ġkicks\":17364,\"Ġenv\":17365,\"Ġteenagers\":17366,\"Dark\":17367,\"ĠCAR\":17368,\"Ġhalt\":17369,\"ĠLG\":17370,\"ĠGabriel\":17371,\"Ġfever\":17372,\"Ġsatur\":17373,\"Ġmall\":17374,\"Ġaffiliate\":17375,\"ĠSleep\":17376,\"ĠSpecific\":17377,\"ĠVel\":17378,\"Ġjar\":17379,\"ĠSacred\":17380,\"ĠEdwards\":17381,\"ĠACL\":17382,\"Ġretained\":17383,\"ĠGiant\":17384,\"Ġlimitation\":17385,\"inces\":17386,\"Ġrefusal\":17387,\"ĠTale\":17388,\"ĠButler\":17389,\"Ġaccidents\":17390,\"ĠCSS\":17391,\"Ġimported\":17392,\"ĠCopy\":17393,\"Î±\":17394,\"ERT\":17395,\"zel\":17396,\"Ġdivisions\":17397,\"hots\":17398,\"ĠAlb\":17399,\"ĠDS\":17400,\"Loader\":17401,\"Washington\":17402,\"atisf\":17403,\"ĠCreative\":17404,\"\\\\.\":17405,\"ĠAutom\":17406,\"redict\":17407,\"Ġreceptor\":17408,\"ĠCarlos\":17409,\"Method\":17410,\"oka\":17411,\"Ġmalicious\":17412,\"Ġstepping\":17413,\",[\":17414,\"ĠDad\":17415,\"Ġattraction\":17416,\"ĠEffects\":17417,\"ĠPirate\":17418,\"ĠCer\":17419,\"ĠIndustry\":17420,\"ĠRud\":17421,\"Ġcharter\":17422,\"Ġdining\":17423,\"Ġinsists\":17424,\"Ġconfigure\":17425,\"Ġ(#\":17426,\"ĠSimple\":17427,\"ĠScroll\":17428,\"UTC\":17429,\"175\":17430,\"ĠKon\":17431,\"Ġmarketplace\":17432,\"ĠãĤ\":17433,\"Ġrefres\":17434,\"Ġgates\":17435,\"erred\":17436,\"ĠPod\":17437,\"Ġbehave\":17438,\"Frank\":17439,\"node\":17440,\"Ġendorsed\":17441,\"hett\":17442,\"asive\":17443,\"ĠHomeland\":17444,\"Ġrides\":17445,\"ĠLeave\":17446,\"erness\":17447,\"Ġflooding\":17448,\"AFP\":17449,\"Ġrisen\":17450,\"Ġcontinually\":17451,\"Ġunanim\":17452,\"ĠContract\":17453,\"ĠPas\":17454,\"Ġguided\":17455,\"ĠChile\":17456,\"bd\":17457,\"Ġsucc\":17458,\"ptic\":17459,\"Ġcommittees\":17460,\"ĠLuther\":17461,\"ĠAnyone\":17462,\"Ġsab\":17463,\"124\":17464,\"Ġpixel\":17465,\"ĠBak\":17466,\"ĠTag\":17467,\"ĠBennett\":17468,\"Enter\":17469,\"small\":17470,\"ĠPresidential\":17471,\"Ġpul\":17472,\"Ġcontrace\":17473,\"archive\":17474,\"Ġcoastal\":17475,\"ĠKids\":17476,\"192\":17477,\"âĢ²\":17478,\"icky\":17479,\"INGTON\":17480,\"Ġwolf\":17481,\"ĠStalin\":17482,\"Tur\":17483,\"idget\":17484,\"amas\":17485,\"ĠUnless\":17486,\"Ġsponsor\":17487,\"Ġmorph\":17488,\"ĠChoose\":17489,\"Ġrunner\":17490,\"Ġunbel\":17491,\"Ġmud\":17492,\"ĠMana\":17493,\"Ġdubbed\":17494,\"Ġgodd\":17495,\"urers\":17496,\"window\":17497,\"Ġrelied\":17498,\"Ġcelebrating\":17499,\"osc\":17500,\"Ġ135\":17501,\"Ġlobbying\":17502,\"Ġincomplete\":17503,\"Ġrestriction\":17504,\"Ġincap\":17505,\"itus\":17506,\"Ġexpectation\":17507,\"ĠApollo\":17508,\"Ġintens\":17509,\"Ġsync\":17510,\"GH\":17511,\"Ġmanipulation\":17512,\"BY\":17513,\"Ġspear\":17514,\"Ġbreasts\":17515,\"Ġvolcan\":17516,\"ilia\":17517,\"Material\":17518,\"Ġformats\":17519,\"ĠBast\":17520,\"Ġparliamentary\":17521,\"Ġsnake\":17522,\"Ġservants\":17523,\"ĠTrudeau\":17524,\"ĠGrim\":17525,\"ĠArabic\":17526,\"ĠSCP\":17527,\"ĠBoys\":17528,\"station\":17529,\"Ġprospective\":17530,\"orde\":17531,\"initialized\":17532,\"Ġbored\":17533,\"ABLE\":17534,\"Ġaccessed\":17535,\"Ġtaxi\":17536,\"ĠShell\":17537,\"aiden\":17538,\"ursed\":17539,\"inates\":17540,\"ĠInsurance\":17541,\"ĠPete\":17542,\"September\":17543,\"650\":17544,\"Ġadventures\":17545,\"ĠCover\":17546,\"Ġtribute\":17547,\"Ġsketch\":17548,\"Ġempower\":17549,\"ĠØ\":17550,\"ĠGlenn\":17551,\"ĠDaw\":17552,\"=\\\\\\\"\":17553,\"ĠPolitics\":17554,\"Ġguides\":17555,\"Ġdioxide\":17556,\"ĠGore\":17557,\"ĠBright\":17558,\"ĠSierra\":17559,\"Ġvalued\":17560,\"cond\":17561,\"Ġpointer\":17562,\"Select\":17563,\"Ġrisky\":17564,\"Ġabsorb\":17565,\"images\":17566,\"Ġrefuses\":17567,\"Ġbonuses\":17568,\"___\":17569,\"Ġhilar\":17570,\"ĠFeatures\":17571,\"220\":17572,\"ĠCollector\":17573,\"Foot\":17574,\"Ġ1964\":17575,\"culus\":17576,\"Ġdawn\":17577,\"Ġworkout\":17578,\"ĠLO\":17579,\"Ġphilosophical\":17580,\"ĠSandy\":17581,\"ĠYouth\":17582,\"Ġliable\":17583,\"Af\":17584,\"blue\":17585,\"Ġoverturn\":17586,\"lessness\":17587,\"ĠTribune\":17588,\"ĠIng\":17589,\"Ġfactories\":17590,\"Ġcatches\":17591,\"Ġprone\":17592,\"Ġmatrix\":17593,\"Ġlogin\":17594,\"Ġinacc\":17595,\"Ġexert\":17596,\"sys\":17597,\"Ġneedle\":17598,\"ĠQur\":17599,\"Ġnotified\":17600,\"oulder\":17601,\"tx\":17602,\"Ġreminds\":17603,\"Ġpublishers\":17604,\"Ġnort\":17605,\"Ġgit\":17606,\"Ġflies\":17607,\"ĠEmily\":17608,\"Ġflowing\":17609,\"ĠAlien\":17610,\"ĠStrateg\":17611,\"Ġhardest\":17612,\"Ġmodification\":17613,\"API\":17614,\"ĠMY\":17615,\"Ġcrashes\":17616,\"stairs\":17617,\"number\":17618,\"Ġurging\":17619,\"channel\":17620,\"ĠFalcon\":17621,\"Ġinhabitants\":17622,\"Ġterrifying\":17623,\"Ġutilize\":17624,\"Ġbanner\":17625,\"Ġcigarettes\":17626,\"Ġsenses\":17627,\"ĠHolmes\":17628,\"Ġpractition\":17629,\"ĠPhillips\":17630,\"otto\":17631,\"Ġcompile\":17632,\"Model\":17633,\"ĠKo\":17634,\"Ġ[]\":17635,\"Americans\":17636,\"ĠTerms\":17637,\"Ġmedications\":17638,\"ĠAna\":17639,\"Ġfundamentally\":17640,\"ĠNotice\":17641,\"Ġweaker\":17642,\"Ġ0000\":17643,\"Ġgarlic\":17644,\"Ġoutbreak\":17645,\"Ġeconomist\":17646,\"ĠBirth\":17647,\"Ġobstacles\":17648,\"arcer\":17649,\"ĠOrthodox\":17650,\"Ġplacebo\":17651,\"ĠCrew\":17652,\"aspberry\":17653,\"ĠAngels\":17654,\"Ġdischarge\":17655,\"Ġdestructive\":17656,\"117\":17657,\"ĠRising\":17658,\"Ġdairy\":17659,\"late\":17660,\"Ġcollision\":17661,\"ĠTigers\":17662,\"eanor\":17663,\"ocumented\":17664,\"ĠInvalid\":17665,\"Ġdont\":17666,\"ĠLiter\":17667,\"ĠVa\":17668,\"Ġhydrogen\":17669,\"Ġvariants\":17670,\"ĠBrowns\":17671,\"Ġ1965\":17672,\"Ġindigenous\":17673,\"Ġtrades\":17674,\"Ġremainder\":17675,\"Ġswept\":17676,\"ĠImpact\":17677,\"Ġredist\":17678,\"Ġunint\":17679,\"graduate\":17680,\"ãĥķ\":17681,\"ĠWILL\":17682,\"ãģ®ç\":17683,\"ĠCritical\":17684,\"Ġfisher\":17685,\"Ġvicious\":17686,\"Ġreversed\":17687,\"Year\":17688,\"ĠSox\":17689,\"Ġshootings\":17690,\"Ġfilming\":17691,\"Ġtouchdowns\":17692,\"aires\":17693,\"mel\":17694,\"Ġgrandfather\":17695,\"Ġaffection\":17696,\"ingle\":17697,\"Ġoverly\":17698,\"Additional\":17699,\"Ġsupreme\":17700,\"ĠGrad\":17701,\"Ġsporting\":17702,\"Ġmercy\":17703,\"ĠBrooks\":17704,\"ounty\":17705,\"Ġperforms\":17706,\"Ġtightly\":17707,\"Ġdemons\":17708,\"Ġkillings\":17709,\"Ġfaction\":17710,\"ĠNova\":17711,\"auts\":17712,\"Ġundoubtedly\":17713,\"arin\":17714,\"Ġunderway\":17715,\"rak\":17716,\"Ġliv\":17717,\"ĠRegion\":17718,\"Ġbriefing\":17719,\"sers\":17720,\"cloud\":17721,\"ĠMik\":17722,\"usp\":17723,\"Ġprediction\":17724,\"azor\":17725,\"Ġportable\":17726,\"ĠGand\":17727,\"Ġpresenting\":17728,\"Ġ1080\":17729,\"Â»\":17730,\"ushi\":17731,\"ĠSpark\":17732,\"thereum\":17733,\"Ġjustification\":17734,\"ĠNy\":17735,\"Ġcontractors\":17736,\"mingham\":17737,\"ĠStyle\":17738,\"åħ\":17739,\"ĠChronicles\":17740,\"ĠPicture\":17741,\"Ġproving\":17742,\"Ġwives\":17743,\"sett\":17744,\"Ġmolecules\":17745,\"ĠFairy\":17746,\"Ġconsisting\":17747,\"Ġpier\":17748,\"alone\":17749,\"inition\":17750,\"Ġnucle\":17751,\"json\":17752,\"Ġgotta\":17753,\"Ġmobil\":17754,\"Ġverbal\":17755,\"arium\":17756,\"Ġmonument\":17757,\"ucked\":17758,\"Ġ256\":17759,\"Tech\":17760,\"minecraft\":17761,\"ĠTrack\":17762,\"Ġtile\":17763,\"Ġcompatibility\":17764,\"asis\":17765,\"Ġsadd\":17766,\"Ġinstructed\":17767,\"ĠMueller\":17768,\"Ġlethal\":17769,\"Ġhormone\":17770,\"Ġorche\":17771,\"else\":17772,\"Ġskelet\":17773,\"Ġentertaining\":17774,\"Ġminimize\":17775,\"again\":17776,\"Ġundergo\":17777,\"Ġconstraints\":17778,\"Ġcigarette\":17779,\"ĠIslamist\":17780,\"Ġtravels\":17781,\"ĠPanthers\":17782,\"lings\":17783,\"Care\":17784,\"Ġlawsuits\":17785,\"uras\":17786,\"Ġcryst\":17787,\"Ġlowered\":17788,\"Ġaerial\":17789,\"Ġcombinations\":17790,\"Ġhaun\":17791,\"Ġcha\":17792,\"Ġvine\":17793,\"Ġquantities\":17794,\"Ġlinking\":17795,\"bank\":17796,\"Ġsoy\":17797,\"Bill\":17798,\"ĠAngela\":17799,\"Ġrecipient\":17800,\"ĠProtest\":17801,\"Ġsocket\":17802,\"Ġsolidarity\":17803,\"ĠâĨ\":17804,\"mill\":17805,\"Ġvaries\":17806,\"ĠPakistani\":17807,\"Dragon\":17808,\"Ġune\":17809,\"Ġhorizon\":17810,\"ÂłÂłÂłÂłÂłÂłÂłÂł\":17811,\"Ġprovinces\":17812,\"Ġfrankly\":17813,\"Ġenacted\":17814,\"notes\":17815,\"['\":17816,\"Ġ192\":17817,\"ocracy\":17818,\"Ġendorsement\":17819,\"Ġovertime\":17820,\"True\":17821,\"Lab\":17822,\"licted\":17823,\"ĠDNC\":17824,\"Ġbeats\":17825,\"ĠJamie\":17826,\"152\":17827,\"ĠINT\":17828,\"Contact\":17829,\"Ġaccounted\":17830,\"hash\":17831,\"ĠPackers\":17832,\"pires\":17833,\"Ġlesbian\":17834,\"Ġamendments\":17835,\"Ġhopeful\":17836,\"ĠFinland\":17837,\"Ġspotlight\":17838,\"Ġconfigured\":17839,\"Ġtroubled\":17840,\"Ġgaze\":17841,\"ĠCalgary\":17842,\"Ġreliability\":17843,\"Ġinsurg\":17844,\"swer\":17845,\"buy\":17846,\"ĠSkin\":17847,\"Ġpixels\":17848,\"Ġhandgun\":17849,\"Ġparas\":17850,\"Ġcategor\":17851,\"ĠEL\":17852,\"ĠRex\":17853,\"Indeed\":17854,\"Ġkinda\":17855,\"Ġconjunction\":17856,\"ĠBryan\":17857,\"ĠManufact\":17858,\"yang\":17859,\"Plus\":17860,\"SQL\":17861,\"ishment\":17862,\"Ġdominate\":17863,\"Ġnail\":17864,\"Ġoath\":17865,\"Ġerupt\":17866,\"ĠFine\":17867,\"itbart\":17868,\"ĠChip\":17869,\"ĠAbd\":17870,\"ĠNam\":17871,\"Ġbuyer\":17872,\"Ġdissent\":17873,\"Leaks\":17874,\"Contin\":17875,\"Ġrider\":17876,\"ĠSomeone\":17877,\"Ġillusion\":17878,\"cin\":17879,\"ĠBoeing\":17880,\"Ġinadequ\":17881,\"ovation\":17882,\"iants\":17883,\"Ġrebuild\":17884,\"450\":17885,\"ĠDestiny\":17886,\"SW\":17887,\"ĠTill\":17888,\"Hit\":17889,\"iaz\":17890,\"ĠBangl\":17891,\"achers\":17892,\"ĠReform\":17893,\"Ġsegments\":17894,\"Ġsystematic\":17895,\"dc\":17896,\"ĠConservatives\":17897,\"Ġportal\":17898,\"hor\":17899,\"ĠDragonbound\":17900,\"Ġdragged\":17901,\"omo\":17902,\"Ġthee\":17903,\"advert\":17904,\"ĠReports\":17905,\"ĠEt\":17906,\"Ġbarrels\":17907,\"August\":17908,\"Ġcomparisons\":17909,\"Ġhex\":17910,\"Ġanthrop\":17911,\"\\\"[\":17912,\"borough\":17913,\"abi\":17914,\"Ġpictured\":17915,\"playing\":17916,\"ĠAddress\":17917,\"ĠMirror\":17918,\"Smith\":17919,\"Ġtires\":17920,\"ĠNPR\":17921,\"AAAA\":17922,\"Ġclassification\":17923,\"ĠThan\":17924,\"ĠHarm\":17925,\"ĠRA\":17926,\"Ġrejection\":17927,\"mination\":17928,\"Ġranged\":17929,\"ĠFalls\":17930,\"DI\":17931,\"Host\":17932,\"ãĤ´\":17933,\"ĠExample\":17934,\"listed\":17935,\"thirds\":17936,\"Ġsafegu\":17937,\"brand\":17938,\"Ġprobable\":17939,\"Canada\":17940,\"ITION\":17941,\"ĠQaeda\":17942,\"Ġchick\":17943,\"Ġimports\":17944,\"hit\":17945,\"loc\":17946,\"WW\":17947,\"Ġblew\":17948,\"Ġanytime\":17949,\"Ġwholes\":17950,\"iked\":17951,\"Ġcalculation\":17952,\"create\":17953,\"ĠOri\":17954,\"Ġupgraded\":17955,\"Ġappar\":17956,\"utory\":17957,\"ĠMol\":17958,\"Brit\":17959,\"ĠJong\":17960,\"INAL\":17961,\"ĠStarting\":17962,\"Ġdice\":17963,\"urtle\":17964,\"Ġrelying\":17965,\"closure\":17966,\"Ġprofitable\":17967,\"Ġslaughter\":17968,\"ĠManual\":17969,\"caster\":17970,\"Ġ\\\"$\":17971,\"Ġfeather\":17972,\"ĠSimply\":17973,\"ieves\":17974,\"Ġdeterior\":17975,\"ĠPCI\":17976,\"Ġstamp\":17977,\"Ġflaws\":17978,\"Ġshade\":17979,\"hammer\":17980,\"Ġpassport\":17981,\"Ġconting\":17982,\"amel\":17983,\"Ġobservers\":17984,\"Ġneglect\":17985,\"ĠRB\":17986,\"ĠBrotherhood\":17987,\"Ġskeptical\":17988,\"family\":17989,\"usk\":17990,\"Ġemotionally\":17991,\"âĻ\":17992,\"ĠBeta\":17993,\"asonable\":17994,\"idity\":17995,\"ĠMul\":17996,\"Ġkicking\":17997,\"ĠCarm\":17998,\"ollah\":17999,\"VERTIS\":18000,\"ĠAthen\":18001,\"Ġladder\":18002,\"ĠBullet\":18003,\"å£\":18004,\"0001\":18005,\"ĠWildlife\":18006,\"ĠMask\":18007,\"ĠNan\":18008,\"Rev\":18009,\"Ġunacceptable\":18010,\"legal\":18011,\"Ġcrowded\":18012,\"agi\":18013,\"ĠCox\":18014,\"je\":18015,\"Ġmorality\":18016,\"Ġfuels\":18017,\"Ġcables\":18018,\"Ġmankind\":18019,\"ĠCaribbean\":18020,\"Ġanchor\":18021,\"Ġbyte\":18022,\"ĠOften\":18023,\"ĠOz\":18024,\"Ġcrafted\":18025,\"Ġhistorian\":18026,\"ĠWu\":18027,\"Ġtowers\":18028,\"ĠCitizens\":18029,\"Ġhelm\":18030,\"Ġcredentials\":18031,\"Ġsingular\":18032,\"ĠJesse\":18033,\"Ġtackles\":18034,\"Ġcontempt\":18035,\"Ġafore\":18036,\"ĠShadows\":18037,\"Ġnil\":18038,\"Ġurgent\":18039,\"apple\":18040,\"blood\":18041,\"Ġvon\":18042,\"Ġoffline\":18043,\"Ġbreathe\":18044,\"Ġjumps\":18045,\"Ġirrelevant\":18046,\"oxic\":18047,\"omal\":18048,\"important\":18049,\"Jim\":18050,\"Ġgloves\":18051,\"arming\":18052,\"depth\":18053,\"Ġtalents\":18054,\"ookie\":18055,\"ĠSB\":18056,\"Ġpalm\":18057,\"uffs\":18058,\"esta\":18059,\"IGH\":18060,\"Ġcanon\":18061,\"ĠVerizon\":18062,\"ĠPle\":18063,\"Ġcoupled\":18064,\"velt\":18065,\"Ġfundraising\":18066,\"ĠGetting\":18067,\"ĠDLC\":18068,\"Ġmathematical\":18069,\"ĠHS\":18070,\"ĠCardinals\":18071,\"telling\":18072,\"Ġsponsors\":18073,\"ĠÏ\":18074,\"ĠBulls\":18075,\"option\":18076,\"Ġpropose\":18077,\"Ġmemorable\":18078,\"Ġembraced\":18079,\"Ġdeclining\":18080,\"Health\":18081,\"eda\":18082,\"Ġ};\":18083,\"Ġspam\":18084,\"mile\":18085,\"Ġpitcher\":18086,\"ĠEight\":18087,\"Ġcaring\":18088,\"utic\":18089,\"role\":18090,\"Ġairline\":18091,\"ernandez\":18092,\"ĠAthlet\":18093,\"Ġcertification\":18094,\"uxe\":18095,\"riger\":18096,\"Ġempir\":18097,\"Ġsensation\":18098,\"Ġdism\":18099,\"Ġbolt\":18100,\"Ġevolve\":18101,\"House\":18102,\"Ġconsultation\":18103,\"ĠDuty\":18104,\"Ġtouches\":18105,\"ĠNathan\":18106,\"Ġfaint\":18107,\"had\":18108,\"\\\"(\":18109,\"ĠConsumer\":18110,\"ĠExtreme\":18111,\"Ġ127\":18112,\"ĠHerm\":18113,\"ĠSacrament\":18114,\"izoph\":18115,\"Ġanxious\":18116,\"ulously\":18117,\"Ġsocially\":18118,\"ĠUTC\":18119,\"Ġsolving\":18120,\"ĠLetter\":18121,\"History\":18122,\"educ\":18123,\"Price\":18124,\"));\":18125,\"Ġreload\":18126,\"amic\":18127,\"Ġpork\":18128,\"Ġdiscourse\":18129,\"Ġtournaments\":18130,\"airo\":18131,\"ĠKur\":18132,\"ĠCosta\":18133,\"Ġviolating\":18134,\"Ġinterfere\":18135,\"Ġrecreational\":18136,\"uffle\":18137,\"Ġspeeches\":18138,\"Ġneeding\":18139,\"Ġremembers\":18140,\"Ġcredited\":18141,\"nia\":18142,\"focused\":18143,\"amera\":18144,\"Ġbru\":18145,\"umbs\":18146,\"ĠCuban\":18147,\"Ġpreceding\":18148,\"Ġnonsense\":18149,\"acial\":18150,\"Ġsmartphones\":18151,\"ĠStories\":18152,\"Sports\":18153,\"ĠEmergency\":18154,\"ouncing\":18155,\"efined\":18156,\"Ġber\":18157,\"Ġconsulting\":18158,\"Ġmasters\":18159,\"heastern\":18160,\".\\\"[\":18161,\"ĠRunning\":18162,\"Ġsuscept\":18163,\"ĠFeng\":18164,\"America\":18165,\"prises\":18166,\"stitial\":18167,\"ĠWeekly\":18168,\"ĠGreater\":18169,\"modules\":18170,\"ifter\":18171,\"Graphics\":18172,\"uler\":18173,\"Ġwholly\":18174,\"Ġsuppress\":18175,\"Ġconcealed\":18176,\"Ġhappily\":18177,\"Ġaccepts\":18178,\"ĠEnjoy\":18179,\"Ġrivers\":18180,\"ĠExcept\":18181,\"225\":18182,\"ĠNHS\":18183,\"ĠMcConnell\":18184,\"Ġpussy\":18185,\"ferred\":18186,\"utable\":18187,\"Ġattain\":18188,\"Ġ>=\":18189,\"Ġdeposits\":18190,\"rophic\":18191,\"Ġnotorious\":18192,\"ĠShaw\":18193,\"ilitation\":18194,\"Ġepidemic\":18195,\"allic\":18196,\"Ġsmallest\":18197,\"ovich\":18198,\"Ġaccessories\":18199,\"perties\":18200,\"Ġsurplus\":18201,\"ĠMech\":18202,\"Ġambig\":18203,\"ĠImmigration\":18204,\"Ġchim\":18205,\"eval\":18206,\"Ġpracticing\":18207,\"ĠMystery\":18208,\"Ġdomains\":18209,\"ĠSilicon\":18210,\"apps\":18211,\"Ġkilometers\":18212,\"ea\":18213,\"ĠSmash\":18214,\"Ġwarranty\":18215,\"Ġnost\":18216,\"sil\":18217,\"rev\":18218,\"Jon\":18219,\"ĠDublin\":18220,\"Ġtastes\":18221,\"Ġbout\":18222,\"great\":18223,\"error\":18224,\"Ġswitches\":18225,\"ĠBapt\":18226,\"DO\":18227,\"oki\":18228,\"Ġsourced\":18229,\"produ\":18230,\"Ġattachment\":18231,\"ĠIssue\":18232,\"ĠQuestion\":18233,\"Join\":18234,\"Ġfitted\":18235,\"Ġunlawful\":18236,\"^^\":18237,\"erek\":18238,\"Ġauthentication\":18239,\"Ġstole\":18240,\"Ġaccountability\":18241,\"label\":18242,\"Search\":18243,\"Ġalbeit\":18244,\"atican\":18245,\"funded\":18246,\"ĠAdding\":18247,\"ĠIQ\":18248,\"Ġsubmar\":18249,\"lit\":18250,\"aque\":18251,\"ĠLearning\":18252,\"Ġinteger\":18253,\"Master\":18254,\"ĠChrom\":18255,\"Ġpremier\":18256,\"Op\":18257,\"ĠLiu\":18258,\"Ġblessed\":18259,\"ĠGlobe\":18260,\"ĠResponse\":18261,\"Ġlegitim\":18262,\"ĠMerkel\":18263,\"Ġdisposal\":18264,\"Â´\":18265,\"Ġgauge\":18266,\"peat\":18267,\"Ġinduced\":18268,\"Ġquestionable\":18269,\"arthy\":18270,\"ĠVit\":18271,\"ĠFeed\":18272,\"Until\":18273,\"Ut\":18274,\"worthy\":18275,\"RY\":18276,\"ĠHerald\":18277,\"ĠHammer\":18278,\"Ġmedal\":18279,\"ĠRivers\":18280,\"ĠHack\":18281,\"Ġclarify\":18282,\"Ġtracked\":18283,\"Ġautonomous\":18284,\"Ġtenant\":18285,\"ĠQatar\":18286,\"erie\":18287,\"Ġgrim\":18288,\"ĠMonitor\":18289,\"Ġresistant\":18290,\"ĠSpec\":18291,\"ĠWells\":18292,\"NAS\":18293,\"148\":18294,\"Ġminers\":18295,\"iotics\":18296,\"Ġmisses\":18297,\"116\":18298,\"gian\":18299,\"git\":18300,\"ĠEyes\":18301,\"pres\":18302,\"Ġgraduated\":18303,\"Ġangel\":18304,\"Ġsynchron\":18305,\"Ġefficiently\":18306,\"Ġtransmitted\":18307,\"Harry\":18308,\"Ġglobally\":18309,\"ENCE\":18310,\"ĠMontana\":18311,\"raged\":18312,\"ĠPrevention\":18313,\"Ġpiss\":18314,\"ĠLl\":18315,\"Ġshelf\":18316,\"ĠBJP\":18317,\"ĠTestament\":18318,\"ĠLate\":18319,\"iker\":18320,\"ĠHapp\":18321,\"ĠJulian\":18322,\"hall\":18323,\"Ġspont\":18324,\"Ġshutdown\":18325,\"Ġinconsistent\":18326,\"Ġsubscribers\":18327,\"Ġskeleton\":18328,\"ĠNebraska\":18329,\"Ġinspire\":18330,\"ĠVoid\":18331,\"Feed\":18332,\"Ġangles\":18333,\"ĠSprings\":18334,\"Ġbenchmark\":18335,\"Ġvaccines\":18336,\"izophren\":18337,\"sexual\":18338,\"uffed\":18339,\"Ġshine\":18340,\"ĠKath\":18341,\"Ġgesture\":18342,\"inea\":18343,\"Ġrip\":18344,\"Ġoppression\":18345,\"Ġconscience\":18346,\"bt\":18347,\"ĠLum\":18348,\"Ġincidence\":18349,\"ĠFa\":18350,\"wr\":18351,\"Ġmineral\":18352,\"ĠSpurs\":18353,\"alky\":18354,\"Ġthunder\":18355,\"Ġopio\":18356,\"Being\":18357,\"ĠPalm\":18358,\"Ġwasted\":18359,\"Ġlb\":18360,\"iaries\":18361,\"ĠInitiative\":18362,\"Ġcurric\":18363,\"Ġmarker\":18364,\"ĠMcL\":18365,\"Ġextensions\":18366,\"ĠPv\":18367,\"ĠArms\":18368,\"Ġofferings\":18369,\"Ġdefenses\":18370,\"Ġvendor\":18371,\"Ġcontradict\":18372,\"ĠColin\":18373,\"Ġreddit\":18374,\"Ġperipher\":18375,\"122\":18376,\"Ġsins\":18377,\"Edit\":18378,\"ICT\":18379,\"Soft\":18380,\"ĠShah\":18381,\"Ġadministrator\":18382,\"ĠTrip\":18383,\"Ġpornography\":18384,\"Ġtuition\":18385,\"inence\":18386,\"ĠProgress\":18387,\"Ġcatalog\":18388,\"Ġsuite\":18389,\"Ġhike\":18390,\"Ġreproductive\":18391,\"engine\":18392,\"Ġdrought\":18393,\"ĠNoah\":18394,\"Ġ230\":18395,\"Ġdude\":18396,\"Ġrelaxed\":18397,\"Ġpartition\":18398,\"Ġparticipant\":18399,\"Ġtelesc\":18400,\"Ġfeas\":18401,\"ĠFF\":18402,\"owner\":18403,\"Ġsweeping\":18404,\"Ġlenses\":18405,\"Ġmatchup\":18406,\"ĠRepl\":18407,\"ournals\":18408,\"Ġcredible\":18409,\"Ġgrandmother\":18410,\"Ġthermal\":18411,\"Ġsubscribing\":18412,\"Ġidentities\":18413,\"colm\":18414,\"UCT\":18415,\"Ġreluctant\":18416,\"users\":18417,\"ĠCort\":18418,\"Ġassisted\":18419,\"OSS\":18420,\"ATIONS\":18421,\"ISH\":18422,\"Ġpharmaceutical\":18423,\"icable\":18424,\"adian\":18425,\"ĠSonic\":18426,\"ĠFury\":18427,\"ĠMong\":18428,\"AH\":18429,\"ĠPsychology\":18430,\"Ġphosph\":18431,\"Ġtreats\":18432,\"ŃĶ\":18433,\"Ġsteadily\":18434,\"ĠHello\":18435,\"Ġrelates\":18436,\"Ġclue\":18437,\"Expl\":18438,\"auth\":18439,\"Ġrevision\":18440,\"Ġeld\":18441,\"osion\":18442,\"Ġbron\":18443,\"144\":18444,\"rikes\":18445,\"Ġmines\":18446,\"Ġblanket\":18447,\"ĠFail\":18448,\"eled\":18449,\"ĠImagine\":18450,\"ĠPlanned\":18451,\"aic\":18452,\"Request\":18453,\"Mad\":18454,\"ĠHorse\":18455,\"ĠEagle\":18456,\"Ġcapac\":18457,\"157\":18458,\"Ġling\":18459,\"ĠNice\":18460,\"ĠParenthood\":18461,\"minster\":18462,\"ogs\":18463,\"ensitive\":18464,\"Nothing\":18465,\"Ġcarn\":18466,\"Fin\":18467,\"ĠPE\":18468,\"Ġrifles\":18469,\"ĠLP\":18470,\"Sand\":18471,\"ĠguiActive\":18472,\"Ġtourist\":18473,\"CNN\":18474,\"Ġunveiled\":18475,\"Ġpredecessor\":18476,\"}{\":18477,\"uber\":18478,\"Ġoffshore\":18479,\"Ġoptical\":18480,\"ĠRot\":18481,\"ĠPearl\":18482,\"eton\":18483,\"Ġstared\":18484,\"Ġfarther\":18485,\"atility\":18486,\"contin\":18487,\"ĠGy\":18488,\"ĠFoster\":18489,\"ĠCoc\":18490,\"rients\":18491,\"Ġdesigning\":18492,\"ĠEconomy\":18493,\"ONG\":18494,\"Women\":18495,\"ĠNancy\":18496,\"erver\":18497,\"Ġmascul\":18498,\"Ġcasualties\":18499,\"Ġ225\":18500,\"ĠSullivan\":18501,\"ĠChoice\":18502,\"Ġaster\":18503,\"ws\":18504,\"Ġhotels\":18505,\"Ġconsiderations\":18506,\"Ġcouch\":18507,\"ĠStrip\":18508,\"ĠGn\":18509,\"Ġmanipulate\":18510,\"lied\":18511,\"Ġsynthetic\":18512,\"Ġassaulted\":18513,\"Ġoffenses\":18514,\"ĠDrake\":18515,\"Ġimpe\":18516,\"October\":18517,\"ĠHeritage\":18518,\"hl\":18519,\"ĠBlair\":18520,\"Unlike\":18521,\"Ġgrief\":18522,\"Ġ450\":18523,\"Ġopted\":18524,\"Ġresignation\":18525,\"ilo\":18526,\"Ġverse\":18527,\"ĠTomb\":18528,\"Ġupt\":18529,\"Ġaired\":18530,\"ĠHook\":18531,\"ĠMLB\":18532,\"Ġassumes\":18533,\"outed\":18534,\"ĠVers\":18535,\"Ġinferior\":18536,\"Ġbundle\":18537,\"ĠDNS\":18538,\"ographer\":18539,\"Ġmultip\":18540,\"ĠSouls\":18541,\"Ġillustrated\":18542,\"Ġtactic\":18543,\"Ġdressing\":18544,\"Ġduo\":18545,\"Conf\":18546,\"Ġrelent\":18547,\"Ġcant\":18548,\"Ġscarce\":18549,\"Ġcandy\":18550,\"ĠCF\":18551,\"Ġaffiliated\":18552,\"Ġsprint\":18553,\"ylan\":18554,\"ĠGarcia\":18555,\"Ġjunk\":18556,\"Print\":18557,\"exec\":18558,\"Crit\":18559,\"Ġportrait\":18560,\"iries\":18561,\"ĠOFF\":18562,\"Ġdisputes\":18563,\"WR\":18564,\"Love\":18565,\"ãģĦ\":18566,\"ĠReyn\":18567,\"Ġhipp\":18568,\"opath\":18569,\"Ġfloors\":18570,\"ĠFeel\":18571,\"Ġworries\":18572,\"Ġsettlements\":18573,\"ĠPos\":18574,\"Ġmosque\":18575,\"Ġfinals\":18576,\"Ġcrushed\":18577,\"ĠProbably\":18578,\"ĠBot\":18579,\"ĠMans\":18580,\"ĠPeriod\":18581,\"Ġsovereignty\":18582,\"Ġseller\":18583,\"Ġapost\":18584,\"Ġamateur\":18585,\"Ġdorm\":18586,\"Ġconsuming\":18587,\"Ġarmour\":18588,\"ĠRoose\":18589,\"Ġintensive\":18590,\"Ġeliminating\":18591,\"ĠSunni\":18592,\"ĠAleppo\":18593,\"jin\":18594,\"Ġadvise\":18595,\"pal\":18596,\"ĠHalo\":18597,\"Ġdescent\":18598,\"Ġsimpler\":18599,\"Ġbooth\":18600,\"STR\":18601,\"Later\":18602,\"ĠCave\":18603,\"===\":18604,\"Ġmol\":18605,\"Ġfist\":18606,\"Ġshotgun\":18607,\"supp\":18608,\"Ġrobbery\":18609,\"Effect\":18610,\"Ġobscure\":18611,\"ĠProfessional\":18612,\"Ġembassy\":18613,\"Ġmilitant\":18614,\"Ġincarcer\":18615,\"Ġgenerates\":18616,\"Ġlaunches\":18617,\"Ġadministrators\":18618,\"Ġshaft\":18619,\"Ġcircular\":18620,\"Ġfreshman\":18621,\"ĠWes\":18622,\"ĠJoel\":18623,\"ĠDrew\":18624,\"ĠDuncan\":18625,\"ĠApparently\":18626,\"sight\":18627,\"ĠInternal\":18628,\"ĠIndividual\":18629,\"ĠFE\":18630,\"Ġbore\":18631,\"ĠMt\":18632,\"Ġbroadly\":18633,\"ĠOptions\":18634,\"ountain\":18635,\"ipes\":18636,\"ĠVideos\":18637,\"204\":18638,\"Ġhills\":18639,\"Ġsimulation\":18640,\"Ġdisappointment\":18641,\"itan\":18642,\"ĠLaboratory\":18643,\"Ġupward\":18644,\"Ġboundary\":18645,\"Ġdarker\":18646,\"hart\":18647,\"Ġdominance\":18648,\"Cong\":18649,\"ĠOracle\":18650,\"ĠLords\":18651,\"Ġscholarship\":18652,\"ĠVincent\":18653,\"ede\":18654,\"ĠRah\":18655,\"Ġencourages\":18656,\"rov\":18657,\"Ġquo\":18658,\"Ġpremise\":18659,\"ĠCrisis\":18660,\"ĠHolocaust\":18661,\"Ġrhythm\":18662,\"Ġmetric\":18663,\"club\":18664,\"Ġtransported\":18665,\"Ġnod\":18666,\"ĠPist\":18667,\"Ġancestors\":18668,\"ĠFreder\":18669,\"thumbnails\":18670,\"ĠCE\":18671,\"OND\":18672,\"Phil\":18673,\"venge\":18674,\"ĠProducts\":18675,\"castle\":18676,\"Ġqualifying\":18677,\"ĠKaren\":18678,\"VERTISEMENT\":18679,\"Ġmighty\":18680,\"Ġexplanations\":18681,\"Ġfixing\":18682,\"Di\":18683,\"Ġdeclaring\":18684,\"Ġanonymity\":18685,\"Ġjuven\":18686,\"ĠNord\":18687,\"ĠDoom\":18688,\"ĠActually\":18689,\"Ok\":18690,\"phis\":18691,\"ĠDesert\":18692,\"Ġ116\":18693,\"IK\":18694,\"ĠFM\":18695,\"Ġincomes\":18696,\"VEL\":18697,\"okers\":18698,\"Ġpecul\":18699,\"Ġlightweight\":18700,\"gue\":18701,\"Ġaccent\":18702,\"Ġincrement\":18703,\"ĠChan\":18704,\"Ġcomplaining\":18705,\"ĠBaghd\":18706,\"Ġmidfielder\":18707,\"Ġoverhaul\":18708,\"Process\":18709,\"ĠHollow\":18710,\"ĠTitans\":18711,\"Small\":18712,\"manuel\":18713,\"ĠUnity\":18714,\"ĠEvents\":18715,\"Sty\":18716,\"Ġdisproportion\":18717,\"nesty\":18718,\"enes\":18719,\"ĠCod\":18720,\"Ġdemonstrations\":18721,\"ĠCrimson\":18722,\"ĠOH\":18723,\"Ġenrolled\":18724,\"Ġcel\":18725,\"ĠBrett\":18726,\"Ġaide\":18727,\"Ġheels\":18728,\"Ġbroadband\":18729,\"Ġmarking\":18730,\"Ġwizard\":18731,\"ĠNJ\":18732,\"ĠChiefs\":18733,\"Ġingredient\":18734,\"Ġdug\":18735,\"ĠShut\":18736,\"urchase\":18737,\"endor\":18738,\"Ġfarmer\":18739,\"ĠGoldman\":18740,\"129\":18741,\"155\":18742,\"Order\":18743,\"Ġlion\":18744,\"iably\":18745,\"Ġstain\":18746,\"array\":18747,\"ilitary\":18748,\"ĠFAQ\":18749,\"Ġexploded\":18750,\"ĠMcCarthy\":18751,\"ĠTweet\":18752,\"ĠGreens\":18753,\"eking\":18754,\"ln\":18755,\"ensen\":18756,\"Ġmotorcycle\":18757,\"Ġparticle\":18758,\"Ġcholesterol\":18759,\"Bron\":18760,\"Ġstair\":18761,\"Ġoxid\":18762,\"Ġdesirable\":18763,\"ibles\":18764,\"Ġtheor\":18765,\"forcing\":18766,\"Ġpromotional\":18767,\"ovo\":18768,\"boot\":18769,\"ĠBonus\":18770,\"rawling\":18771,\"Ġshortage\":18772,\"ĠPsy\":18773,\"Ġrecruited\":18774,\"Ġinfants\":18775,\"Ġtestosterone\":18776,\"Ġdeduct\":18777,\"Ġdistinctive\":18778,\"Ġfirmware\":18779,\"built\":18780,\"145\":18781,\"Ġexplored\":18782,\"Ġfactions\":18783,\"Ġvide\":18784,\"Ġtattoo\":18785,\"Ġfinancially\":18786,\"Ġfatigue\":18787,\"Ġproceeding\":18788,\"constitutional\":18789,\"Ġmiser\":18790,\"Ġchairs\":18791,\"gging\":18792,\"ipple\":18793,\"Ġdent\":18794,\"Ġdisreg\":18795,\"çĶ\":18796,\"stant\":18797,\"llo\":18798,\"bps\":18799,\"akening\":18800,\"Ġabnormal\":18801,\"ĠERA\":18802,\"å£«\":18803,\"ĠHBO\":18804,\"ĠMAR\":18805,\"Ġconcess\":18806,\"Ġservant\":18807,\"Ġaspir\":18808,\"lav\":18809,\"ĠPanel\":18810,\"amo\":18811,\"Ġprecip\":18812,\"Ġrecordings\":18813,\"Ġproceeded\":18814,\"Ġcolony\":18815,\"ĠTang\":18816,\"ablo\":18817,\"Ġstripped\":18818,\"Left\":18819,\"too\":18820,\"Ġpotatoes\":18821,\"Ġfinest\":18822,\"%).\":18823,\"Ġcrap\":18824,\"ĠZach\":18825,\"abases\":18826,\"ĠGoth\":18827,\"Ġbillionaire\":18828,\"wolf\":18829,\"Ġsanction\":18830,\"SK\":18831,\"Ġlogged\":18832,\"Po\":18833,\"eyed\":18834,\"unal\":18835,\"Ġcricket\":18836,\"Ġarmies\":18837,\"Ġuncovered\":18838,\"Cloud\":18839,\"Ã³n\":18840,\"Ġrebounds\":18841,\"Ġmes\":18842,\"Oper\":18843,\"Pac\":18844,\"Ġnationally\":18845,\"Ġinserted\":18846,\"pict\":18847,\"Ġgovernance\":18848,\"Ð¸\":18849,\"Ġprivileges\":18850,\"GET\":18851,\"Ġfavorites\":18852,\"imity\":18853,\"Ġlover\":18854,\"them\":18855,\"empl\":18856,\"Ġgorgeous\":18857,\"Ann\":18858,\"Ġslipped\":18859,\"Ġveto\":18860,\"Bob\":18861,\"Ġslim\":18862,\"ucc\":18863,\"ĠFame\":18864,\"uddenly\":18865,\"Ġdenies\":18866,\"ĠMaur\":18867,\"Ġdistances\":18868,\"Ġwanna\":18869,\"tar\":18870,\"ĠSER\":18871,\"ĠâĪ\":18872,\"Ġlemon\":18873,\"athetic\":18874,\"Ġliteral\":18875,\"Ġdistinguished\":18876,\"Ġanswering\":18877,\"GI\":18878,\"Ġreligions\":18879,\"ĠPhilos\":18880,\"ĠLay\":18881,\"Ġcompos\":18882,\"irements\":18883,\"ĠKos\":18884,\"inez\":18885,\"rolling\":18886,\"Ġyoungest\":18887,\"andise\":18888,\"ĠBorn\":18889,\"Ġaltar\":18890,\"amina\":18891,\"ĠBoot\":18892,\"voc\":18893,\"Ġdigging\":18894,\"Ġpressures\":18895,\"Ġlen\":18896,\"264\":18897,\"Ġassassination\":18898,\"ĠBirmingham\":18899,\"ĠMyth\":18900,\"Ġsovereign\":18901,\"ĠArtist\":18902,\"ĠPhotograph\":18903,\"Ġdepicted\":18904,\"Ġdispens\":18905,\"orthy\":18906,\"Ġambul\":18907,\"integ\":18908,\"ĠCele\":18909,\"ĠTibet\":18910,\"Ġhierarchy\":18911,\"Ġcu\":18912,\"Ġpreseason\":18913,\"ĠPeterson\":18914,\"Ġcolours\":18915,\"Ġworrying\":18916,\"Ġbackers\":18917,\"ĠPalmer\":18918,\"ĠÎ¼\":18919,\"Ġcontributor\":18920,\"Ġhearings\":18921,\"Ġurine\":18922,\"ĠÙ\":18923,\"ourgeois\":18924,\"Similar\":18925,\"ĠZimmer\":18926,\"something\":18927,\"ĠUSC\":18928,\"Ġstrengths\":18929,\"ĠFI\":18930,\"Ġlogging\":18931,\"Asked\":18932,\"ĠThai\":18933,\"inqu\":18934,\"ĠWalt\":18935,\"Ġcrews\":18936,\"itism\":18937,\"301\":18938,\"Ġsharply\":18939,\"umed\":18940,\"Ġredirect\":18941,\"rators\":18942,\"Inf\":18943,\"ĠWeapons\":18944,\"Ġteasp\":18945,\"1999\":18946,\"Live\":18947,\"ĠEspecially\":18948,\"ĠSter\":18949,\"ĠVeterans\":18950,\"Ġintro\":18951,\"otherapy\":18952,\"Ġmalware\":18953,\"Ġbreeding\":18954,\"Ġmolecular\":18955,\"ĠRoute\":18956,\"ĠComment\":18957,\"ochem\":18958,\"Ġain\":18959,\"Season\":18960,\"Ġlinebacker\":18961,\"Ä«\":18962,\"ĠEconomics\":18963,\"esar\":18964,\"ĠLives\":18965,\"ĠEmma\":18966,\"Ġkin\":18967,\"ĠTerrit\":18968,\"Ġplanted\":18969,\"oton\":18970,\"ĠButter\":18971,\"ĠSpons\":18972,\"PER\":18973,\"Ġdungeon\":18974,\"Ġsymbolic\":18975,\"Ġfilmed\":18976,\"Ġdiets\":18977,\"Ġconcludes\":18978,\"Ġcertainty\":18979,\"ĠFormat\":18980,\"Ġstrangers\":18981,\"format\":18982,\"ĠPhase\":18983,\"Ġcopied\":18984,\"Ġmetres\":18985,\"lda\":18986,\"ĠUsers\":18987,\"Ġdeliberate\":18988,\"Ġwashed\":18989,\"ĠLance\":18990,\"imation\":18991,\"Ġimproper\":18992,\"ĠGenesis\":18993,\"ickr\":18994,\"ĠKush\":18995,\"Ġrealise\":18996,\"Ġembarrassing\":18997,\"alking\":18998,\"bucks\":18999,\"Ġverified\":19000,\"Ġoutline\":19001,\"years\":19002,\"ĠIncome\":19003,\"202\":19004,\"Ġzombies\":19005,\"Final\":19006,\"ĠMillenn\":19007,\"Ġmodifications\":19008,\"ĠVision\":19009,\"ĠMoses\":19010,\"verb\":19011,\"iterranean\":19012,\"ĠJet\":19013,\"Ġnaval\":19014,\"ĠAgg\":19015,\"Ġurl\":19016,\"Ġvictories\":19017,\"Ġnonetheless\":19018,\"Ġinjust\":19019,\"ĠFact\":19020,\"çļ\":19021,\"Ġinsufficient\":19022,\"review\":19023,\"facebook\":19024,\"Ġnegotiating\":19025,\"Ġguarantees\":19026,\"imen\":19027,\"utenberg\":19028,\"Ġgambling\":19029,\"Ġcongr\":19030,\"Loading\":19031,\"Ġnevertheless\":19032,\"Ġpresidents\":19033,\"ĠIndustrial\":19034,\"Ġ118\":19035,\"Ġpoured\":19036,\"ĠTory\":19037,\"Ġ175\":19038,\"Ġ:=\":19039,\"Scott\":19040,\"angered\":19041,\"Tok\":19042,\"Ġorganizers\":19043,\"Mat\":19044,\"ĠGrowth\":19045,\"Ġadul\":19046,\"Ġensures\":19047,\"Ġ117\":19048,\"é¾įå\":19049,\"Ġmassacre\":19050,\"Ġgrades\":19051,\"before\":19052,\"ADVERTISEMENT\":19053,\"ĠSlow\":19054,\"ĠMMA\":19055,\"âĢĶ\\\"\":19056,\"ĠVatican\":19057,\"Qaeda\":19058,\"Ġowe\":19059,\"6666\":19060,\"ĠSorry\":19061,\"ĠGrass\":19062,\"Ġbackgrounds\":19063,\"Ġexhausted\":19064,\"Ġclan\":19065,\"Ġcompromised\":19066,\"ĠElf\":19067,\"ĠIsaac\":19068,\"enson\":19069,\"Invest\":19070,\"IFA\":19071,\"Ġinterrupted\":19072,\"ãĥīãĥ©\":19073,\"Ġtwisted\":19074,\"ĠDragons\":19075,\"Mode\":19076,\"ĠKremlin\":19077,\"Ġfertil\":19078,\"heres\":19079,\"phan\":19080,\"ĠNode\":19081,\"fed\":19082,\"ĠOrc\":19083,\"Ġunwilling\":19084,\"Cent\":19085,\"Ġpriorit\":19086,\"Ġgraduates\":19087,\"Ġsubjective\":19088,\"Ġissuing\":19089,\"ĠLt\":19090,\"Ġviewer\":19091,\"Ġwoke\":19092,\"Thus\":19093,\"brook\":19094,\"Ġdepressed\":19095,\"Ġbracket\":19096,\"ĠGor\":19097,\"ĠFighting\":19098,\"Ġstriker\":19099,\"Report\":19100,\"ĠPortugal\":19101,\"Ġneo\":19102,\"wed\":19103,\"199\":19104,\"Ġfleeing\":19105,\"shadow\":19106,\"identified\":19107,\"USE\":19108,\"Steam\":19109,\"Ġstretched\":19110,\"Ġrevelations\":19111,\"arted\":19112,\"ĠDw\":19113,\"Ġalignment\":19114,\"eston\":19115,\"ĠJared\":19116,\"Sep\":19117,\"Ġblogs\":19118,\"update\":19119,\"gom\":19120,\"risk\":19121,\"Ġclash\":19122,\"ĠHour\":19123,\"Ġruntime\":19124,\"Ġunwanted\":19125,\"Ġscam\":19126,\"Ġrack\":19127,\"Ġenlight\":19128,\"onest\":19129,\"ĠFerr\":19130,\"Ġconvictions\":19131,\"Ġpiano\":19132,\"Ġcirculation\":19133,\"ĠWelcome\":19134,\"Ġbacklash\":19135,\"ĠWade\":19136,\"Ġreceivers\":19137,\"otive\":19138,\"Jeff\":19139,\"Ġnetworking\":19140,\"ĠPrep\":19141,\"ĠExplorer\":19142,\"Ġlecture\":19143,\"Ġuploaded\":19144,\"ĠMeat\":19145,\"BLE\":19146,\"ĠNazis\":19147,\"ĠSynd\":19148,\"stud\":19149,\"roots\":19150,\"rians\":19151,\"Ġportrayed\":19152,\"Ġ??\":19153,\"ĠBuddha\":19154,\"sun\":19155,\"Robert\":19156,\"ĠComplex\":19157,\"Ġoversee\":19158,\"Ġstealth\":19159,\"Title\":19160,\"ĠJobs\":19161,\"ĠKum\":19162,\"Ġappreciation\":19163,\"ĠMOD\":19164,\"Ġbasics\":19165,\"Ġclips\":19166,\"Ġnursing\":19167,\"Ġproposition\":19168,\"Ġrealised\":19169,\"ĠNYC\":19170,\"Ġallocated\":19171,\"rium\":19172,\"aran\":19173,\"ĠProduction\":19174,\"ĠVote\":19175,\"Ġsmugg\":19176,\"Ġhunter\":19177,\"azer\":19178,\"ĠChanges\":19179,\"Ġfluct\":19180,\"yon\":19181,\"Array\":19182,\"Ġkits\":19183,\"Water\":19184,\"Ġuncommon\":19185,\"Ġresting\":19186,\"ells\":19187,\"would\":19188,\"Ġpursued\":19189,\"Ġassertion\":19190,\"ometown\":19191,\"ĠMosul\":19192,\"ĠPlatform\":19193,\"iolet\":19194,\"Ġshareholders\":19195,\"Ġtrails\":19196,\"Pay\":19197,\"ĠEnforcement\":19198,\"types\":19199,\"ĠAnonymous\":19200,\"Ġsatisfying\":19201,\"ilogy\":19202,\"Ġ('\":19203,\"wave\":19204,\"city\":19205,\"Steve\":19206,\"Ġconfrontation\":19207,\"ĠEld\":19208,\"Capt\":19209,\"ahan\":19210,\"htm\":19211,\"ĠCtrl\":19212,\"ONS\":19213,\"230\":19214,\"ifa\":19215,\"holding\":19216,\"Ġdelicate\":19217,\"Ġjaw\":19218,\"ĠGoing\":19219,\"orum\":19220,\"Sal\":19221,\"Ġdull\":19222,\"ĠBeth\":19223,\"Ġprisons\":19224,\"Ġego\":19225,\"ĠElsa\":19226,\"avorite\":19227,\"ĠGang\":19228,\"ĠNuclear\":19229,\"Ġspider\":19230,\"atsu\":19231,\"Ġsampling\":19232,\"Ġabsorbed\":19233,\"ĠPharm\":19234,\"ieth\":19235,\"Ġbucket\":19236,\"ĠRecomm\":19237,\"OF\":19238,\"ĠFactory\":19239,\"ANCE\":19240,\"Ġbacter\":19241,\"Has\":19242,\"ĠObserv\":19243,\"121\":19244,\"Ġpremiere\":19245,\"Develop\":19246,\"Ġcurrencies\":19247,\"Cast\":19248,\"Ġaccompanying\":19249,\"ĠNashville\":19250,\"Ġfatty\":19251,\"ĠBrend\":19252,\"Ġlocks\":19253,\"Ġcentered\":19254,\"ĠUT\":19255,\"aughs\":19256,\"orie\":19257,\"ĠAffordable\":19258,\"vance\":19259,\"DL\":19260,\"emet\":19261,\"Ġthrone\":19262,\"ĠBluetooth\":19263,\"Ġnaming\":19264,\"ifts\":19265,\"ADE\":19266,\"Ġcorrected\":19267,\"Ġpromptly\":19268,\"ĠSTR\":19269,\"Ġgenome\":19270,\"Ġcope\":19271,\"Ġvalley\":19272,\"Ġrounded\":19273,\"ĠKend\":19274,\"alion\":19275,\"pers\":19276,\"Ġtourism\":19277,\"Ġstark\":19278,\"vl\":19279,\"Ġblowing\":19280,\"ĠSchedule\":19281,\"std\":19282,\"Ġunhappy\":19283,\"Ġlitigation\":19284,\"cedes\":19285,\"Ġandroid\":19286,\"Ġintegral\":19287,\"erers\":19288,\"uded\":19289,\"tax\":19290,\"Ġreiter\":19291,\"ĠMotors\":19292,\"ociated\":19293,\"Ġwonders\":19294,\"ĠApost\":19295,\"ucking\":19296,\"ĠRoosevelt\":19297,\"fram\":19298,\"Ġyields\":19299,\"Ġconstitutes\":19300,\"awk\":19301,\"Interest\":19302,\"Ġinterim\":19303,\"Ġbreakthrough\":19304,\"ĠCher\":19305,\"Ġprosec\":19306,\"ĠDj\":19307,\"ĠMT\":19308,\"Resp\":19309,\"ĠPT\":19310,\"Ġsperm\":19311,\"edit\":19312,\"BT\":19313,\"Linux\":19314,\"country\":19315,\"league\":19316,\"Ġdick\":19317,\"Ġoct\":19318,\"Ġinserting\":19319,\"Ġscra\":19320,\"ĠBrewing\":19321,\"Ġ1966\":19322,\"Ġrunners\":19323,\"Ġplun\":19324,\"idy\":19325,\"ĠDian\":19326,\"Ġdysfunction\":19327,\"Ġexclusion\":19328,\"Ġdisgr\":19329,\"Ġincorporate\":19330,\"Ġreconc\":19331,\"Ġnominated\":19332,\"ĠArcher\":19333,\"draw\":19334,\"achelor\":19335,\"Ġwritings\":19336,\"Ġshallow\":19337,\"Ġhast\":19338,\"ĠBMW\":19339,\"ĠRS\":19340,\"Ġthigh\":19341,\"Ġ1963\":19342,\"Ġlamb\":19343,\"Ġfavored\":19344,\"agle\":19345,\"Ġcooler\":19346,\"ĠHours\":19347,\"ĠGU\":19348,\"ĠOrigin\":19349,\"Ġglimpse\":19350,\"--------------------\":19351,\"Lim\":19352,\"Ġcheek\":19353,\"Ġjealous\":19354,\"-'\":19355,\"Ġharness\":19356,\"ĠPoison\":19357,\"Ġdisabilities\":19358,\"neapolis\":19359,\"Ġoutlook\":19360,\"Ġnotify\":19361,\"ĠIndianapolis\":19362,\"Ġabrupt\":19363,\"nsic\":19364,\"Ġencrypted\":19365,\"Ġforfe\":19366,\"reath\":19367,\"Ġrabb\":19368,\"Ġfoundations\":19369,\"Ġcompliment\":19370,\"ĠInterview\":19371,\"ĠSwe\":19372,\"Ġadolesc\":19373,\"Ġmonitors\":19374,\"ĠSacramento\":19375,\"Ġtimely\":19376,\"Ġcontempl\":19377,\"Ġpositioned\":19378,\"Ġposters\":19379,\"phies\":19380,\"iovascular\":19381,\"void\":19382,\"ĠFifth\":19383,\"Ġinvestigative\":19384,\"OUN\":19385,\"Ġintegrate\":19386,\"ĠINC\":19387,\"isha\":19388,\"iblings\":19389,\"ĠRequest\":19390,\"ĠRodriguez\":19391,\"Ġslides\":19392,\"ĠDX\":19393,\"Ġfeminism\":19394,\"Ġdatas\":19395,\"Ġbend\":19396,\"irus\":19397,\"ĠNigeria\":19398,\"Fox\":19399,\"Change\":19400,\"Ġairplane\":19401,\"ĠLaden\":19402,\"Ġpublicity\":19403,\"ixty\":19404,\"Ġcommitments\":19405,\"Ġaggregate\":19406,\"Ġdisplaying\":19407,\"ĠArrow\":19408,\"Ġ122\":19409,\"Ġrespects\":19410,\"android\":19411,\"six\":19412,\"ĠSha\":19413,\"Ġrestoration\":19414,\")\\\\\":19415,\"WS\":19416,\"oys\":19417,\"Ġillustrate\":19418,\"without\":19419,\"126\":19420,\"ĠâĶĤ\":19421,\"Ġpickup\":19422,\"nels\":19423,\"Ġ....\":19424,\"food\":19425,\"ĠFen\":19426,\")?\":19427,\"Ġphenomena\":19428,\"Ġcompanions\":19429,\"ĠWrite\":19430,\"Ġspill\":19431,\"Ġbridges\":19432,\"ĠUpdated\":19433,\"ĠFo\":19434,\"Ġinsects\":19435,\"ASHINGTON\":19436,\"Ġscare\":19437,\"iltr\":19438,\"ĠZhang\":19439,\"Ġseverity\":19440,\"Ġindul\":19441,\"149\":19442,\"ĠCoffee\":19443,\"Ġnorms\":19444,\"Ġpulse\":19445,\"ĠFT\":19446,\"Ġhorrific\":19447,\"ĠDestroy\":19448,\"ĠJSON\":19449,\"Ġolive\":19450,\"Ġdiscusses\":19451,\"Rest\":19452,\"Elect\":19453,\"ĠWinn\":19454,\"ĠSurviv\":19455,\"ĠHait\":19456,\"Sure\":19457,\"oped\":19458,\"Ġrooted\":19459,\"ĠSke\":19460,\"ĠBronze\":19461,\"Ġlol\":19462,\"Default\":19463,\"Ġcommodity\":19464,\"redited\":19465,\"Ġlibertarian\":19466,\"Ġforbidden\":19467,\"Ġgran\":19468,\"à¨\":19469,\"Ġlag\":19470,\"enz\":19471,\"drive\":19472,\"Ġmathematics\":19473,\"Ġwires\":19474,\"Ġcritically\":19475,\"Ġcarbohyd\":19476,\"ĠChancellor\":19477,\"ĠEddie\":19478,\"Ġbanning\":19479,\"ĠFri\":19480,\"Ġcomplications\":19481,\"etric\":19482,\"ĠBangladesh\":19483,\"Ġbandwidth\":19484,\"Stop\":19485,\"ĠOriginally\":19486,\"Ġhalfway\":19487,\"ynasty\":19488,\"shine\":19489,\"Ġtales\":19490,\"rities\":19491,\"avier\":19492,\"Ġspinning\":19493,\"ĠWHO\":19494,\"Ġneighbourhood\":19495,\"bach\":19496,\"Ġcommerce\":19497,\"ĠSle\":19498,\"BU\":19499,\"Ġentrepreneur\":19500,\"Ġpeculiar\":19501,\"ĠComments\":19502,\"fre\":19503,\"320\":19504,\"ICS\":19505,\"Ġimagery\":19506,\"ĠCanon\":19507,\"ĠElectronic\":19508,\"short\":19509,\"((\":19510,\"Dig\":19511,\"Ġcommem\":19512,\"uced\":19513,\"Ġinclined\":19514,\"ĠSummon\":19515,\"Ġcliff\":19516,\"ĠMediterranean\":19517,\"Ġpoetry\":19518,\"Ġprosperity\":19519,\"ĠRece\":19520,\"Ġpills\":19521,\"member\":19522,\"Ġfinale\":19523,\"unc\":19524,\"ĠGig\":19525,\"ä½\":19526,\"Ġlod\":19527,\"Ġbackward\":19528,\"-+\":19529,\"ĠForward\":19530,\"Ġthri\":19531,\"sure\":19532,\"Ġsoap\":19533,\"ĠFX\":19534,\"RES\":19535,\"ĠSexual\":19536,\"oulos\":19537,\"Ġfoolish\":19538,\"Ġrighteous\":19539,\"Ġcoff\":19540,\"terrorism\":19541,\"ustain\":19542,\"oter\":19543,\"Ġabuses\":19544,\"next\":19545,\"Ġabusive\":19546,\"Ġthereafter\":19547,\"Ġprohibition\":19548,\"ĠSUP\":19549,\"Ġdip\":19550,\"Ġripped\":19551,\"Ġinherited\":19552,\"Ġbats\":19553,\"stru\":19554,\"GT\":19555,\"Ġflawed\":19556,\"phabet\":19557,\"Ġfog\":19558,\"doors\":19559,\"Ġimaging\":19560,\"Ġdigits\":19561,\"ĠHungary\":19562,\"Ġarrog\":19563,\"Ġteachings\":19564,\"Ġprotocols\":19565,\"ĠBanks\":19566,\"à¸\":19567,\"pound\":19568,\"ĠCurt\":19569,\".\\\")\":19570,\"./\":19571,\"Ġexemption\":19572,\"endix\":19573,\"ĠMull\":19574,\"Ġimproves\":19575,\"ĠGamer\":19576,\"dimensional\":19577,\"Icon\":19578,\"ĠMargaret\":19579,\"Status\":19580,\"dates\":19581,\"Ġintends\":19582,\"Ġdepict\":19583,\"Ġparked\":19584,\"Joe\":19585,\"ĠMarines\":19586,\"chnology\":19587,\"!).\":19588,\"Ġjudged\":19589,\"Ġweights\":19590,\"Ray\":19591,\"Ġapartments\":19592,\"hester\":19593,\"Ġreinforce\":19594,\"Ġoffender\":19595,\"occup\":19596,\"Ġsore\":19597,\"ept\":19598,\"ĠPHP\":19599,\"ĠBrow\":19600,\"Ġauthorization\":19601,\"ĠRisk\":19602,\"ĠDelaware\":19603,\"ĠQU\":19604,\"Ġnotifications\":19605,\"Ġsunlight\":19606,\"Ġexclude\":19607,\"dat\":19608,\"Ġmesh\":19609,\"ĠSudan\":19610,\"Ġbelonged\":19611,\"Ġsubway\":19612,\"Ġnoon\":19613,\"ĠInterior\":19614,\"olics\":19615,\"ĠLakers\":19616,\"Ġcoding\":19617,\"Disclaimer\":19618,\"Calif\":19619,\"Old\":19620,\"Ġdisl\":19621,\"?????\":19622,\"Ġconfirms\":19623,\"Ġrecruitment\":19624,\"Ġhomicide\":19625,\"Consider\":19626,\"ĠJeffrey\":19627,\"fty\":19628,\"};\":19629,\"Ġobjection\":19630,\"doing\":19631,\"ĠLeo\":19632,\"Want\":19633,\"Ġglow\":19634,\"ĠClarke\":19635,\"ĠNorman\":19636,\"Ġverification\":19637,\"Ġpacket\":19638,\"ĠFormula\":19639,\"Ġplag\":19640,\"esville\":19641,\"Ġshouting\":19642,\"Ġov\":19643,\"ĠREC\":19644,\"ĠBub\":19645,\"Ġninth\":19646,\"Ġenerg\":19647,\"Ġvalidity\":19648,\"Ġups\":19649,\"jack\":19650,\"Ġneighboring\":19651,\"ĠNec\":19652,\"eworks\":19653,\"ĠHab\":19654,\"arez\":19655,\"Ġspine\":19656,\"Ġeventual\":19657,\"ĠLeaders\":19658,\"ĠCarn\":19659,\"Ġprobation\":19660,\"Ġromance\":19661,\"msg\":19662,\"ĠMechanical\":19663,\"ERY\":19664,\"Rock\":19665,\"Ġpartisan\":19666,\"Node\":19667,\"assets\":19668,\"minent\":19669,\"Ġforeigners\":19670,\"Ġtestify\":19671,\"ĠUsually\":19672,\"lords\":19673,\"ĠGren\":19674,\"ĠPowell\":19675,\"BIL\":19676,\"Ġsr\":19677,\"Ġaddict\":19678,\"Ġshells\":19679,\"Ġsigh\":19680,\"ĠYale\":19681,\"ternity\":19682,\"Ġ750\":19683,\"EU\":19684,\"ĠRifle\":19685,\"Ġpatron\":19686,\"ema\":19687,\"ĠBannon\":19688,\"anity\":19689,\"Ġtropical\":19690,\"ĠVII\":19691,\"cross\":19692,\"Everything\":19693,\"ĠISO\":19694,\"Ġhumble\":19695,\"assing\":19696,\"ĠFIG\":19697,\"Ġupdating\":19698,\"yson\":19699,\"Ġcalcium\":19700,\"Ġcompetent\":19701,\"Ġsteering\":19702,\"Prot\":19703,\"ĠSY\":19704,\"ĠFinals\":19705,\"ĠRug\":19706,\"159\":19707,\"137\":19708,\"ĠGolf\":19709,\"Ġ126\":19710,\"Ġaccommodation\":19711,\"ĠHughes\":19712,\"Ġaesthetic\":19713,\"artisan\":19714,\"ĠTwilight\":19715,\"Ġprince\":19716,\"ĠAgriculture\":19717,\"ĠDisco\":19718,\"Ġprecedent\":19719,\"Ġtyping\":19720,\"authorized\":19721,\"Option\":19722,\"ĠAub\":19723,\"lishes\":19724,\"acht\":19725,\"mag\":19726,\"Peter\":19727,\"ĠUFO\":19728,\"monton\":19729,\"ĠLith\":19730,\"Ġarom\":19731,\"Ġsecuring\":19732,\"Ġconfined\":19733,\"private\":19734,\"Ġswords\":19735,\"Ġmarkers\":19736,\"Ġmetabolic\":19737,\"select\":19738,\"ĠCurse\":19739,\"ĠOt\":19740,\"gressive\":19741,\"Ġincumb\":19742,\"ĠSaga\":19743,\"Ġpriced\":19744,\"Ġclearance\":19745,\"Content\":19746,\"Ġdrilling\":19747,\"Ġnotices\":19748,\"Ġbourgeois\":19749,\"Ġvest\":19750,\"Ġcookie\":19751,\"ĠGuardians\":19752,\"rys\":19753,\"inyl\":19754,\"Ġ124\":19755,\"Ġplausible\":19756,\"ongh\":19757,\"ĠOdin\":19758,\"Ġconception\":19759,\"ĠYuk\":19760,\"ĠBaghdad\":19761,\"ĠFlag\":19762,\"Austral\":19763,\"ĠIBM\":19764,\"Ġinternationally\":19765,\"ĠWikiLeaks\":19766,\"IED\":19767,\"Ġcyn\":19768,\"Ġchooses\":19769,\"ĠPill\":19770,\"Ġcombining\":19771,\"Ġradi\":19772,\"ĠMohammed\":19773,\"defense\":19774,\"atching\":19775,\"Subject\":19776,\"iciency\":19777,\"Frame\":19778,\"Ġ{\\\"\":19779,\"Ġchess\":19780,\"Ġtimer\":19781,\"190\":19782,\"Ġtin\":19783,\"Ġordinance\":19784,\"emetery\":19785,\"Ġaccusing\":19786,\"Ġnoticeable\":19787,\"Ġcentres\":19788,\"Ġlid\":19789,\"ĠMills\":19790,\"imgur\":19791,\"Ġzoom\":19792,\"ergic\":19793,\"Ġcompression\":19794,\"prim\":19795,\"find\":19796,\"Ġsurg\":19797,\"Ġpand\":19798,\"ĠKee\":19799,\"ĠChad\":19800,\"cellence\":19801,\"oyle\":19802,\"Ġsocialism\":19803,\"ĠTravis\":19804,\"ĠMHz\":19805,\"Ġguild\":19806,\"ALLY\":19807,\"ĠSubscribe\":19808,\"ĠRelated\":19809,\"Ġoccurrence\":19810,\"itching\":19811,\"Ġfictional\":19812,\"Ġcrush\":19813,\"ĠEA\":19814,\"cod\":19815,\"mix\":19816,\"ĠTriple\":19817,\"Ġretrieve\":19818,\"Ġstimulus\":19819,\"Ġpsychiat\":19820,\"ĠDoor\":19821,\"Ġhomosexuality\":19822,\"Ġelementary\":19823,\"Ġcellular\":19824,\"idian\":19825,\"ĠLaun\":19826,\"Ġintriguing\":19827,\"Ġfoam\":19828,\"ĠBass\":19829,\"idi\":19830,\"itsu\":19831,\"Ġassure\":19832,\"Ġcongrat\":19833,\"Ġbusinessman\":19834,\"ĠBoost\":19835,\"close\":19836,\"Ġlied\":19837,\"Ġsciences\":19838,\"ĠOmega\":19839,\"ĠGraphics\":19840,\"Ġ<=\":19841,\"spoken\":19842,\"Ġconnectivity\":19843,\"Saturday\":19844,\"ĠAvengers\":19845,\"Ġtoggle\":19846,\"Ġankle\":19847,\"Ġnationalist\":19848,\"model\":19849,\"ĠPool\":19850,\"ophobia\":19851,\"Var\":19852,\"ĠMons\":19853,\"atories\":19854,\"Ġaggressively\":19855,\"Clear\":19856,\"Forge\":19857,\"acters\":19858,\"Ġhedge\":19859,\"Ġpipes\":19860,\"Ġblunt\":19861,\"Ġsq\":19862,\"Ġremotely\":19863,\"Wed\":19864,\"asers\":19865,\"Ġrefriger\":19866,\"Ġtiles\":19867,\"Ġrescued\":19868,\"Ġcomprised\":19869,\"insky\":19870,\"Ġmanif\":19871,\"avanaugh\":19872,\"Ġprolifer\":19873,\"Ġaligned\":19874,\"xml\":19875,\"Ġtriv\":19876,\"Ġcoordination\":19877,\"ĠPER\":19878,\"ĠQuote\":19879,\"134\":19880,\"bf\":19881,\"ĠSaw\":19882,\"Ġtermination\":19883,\"Ġ190\":19884,\"Ġadditions\":19885,\"Ġtrio\":19886,\"Ġprojections\":19887,\"Ġpositively\":19888,\"Ġinclusive\":19889,\"Ġmembr\":19890,\"1990\":19891,\"older\":19892,\"Ġpracticed\":19893,\"inkle\":19894,\"Arch\":19895,\"Ġstarters\":19896,\"arius\":19897,\"Ġintermediate\":19898,\"ĠBenef\":19899,\"ĠKiller\":19900,\"Ġinterventions\":19901,\"ĠKil\":19902,\"ĠFlying\":19903,\"Inv\":19904,\"Ġpremature\":19905,\"Ġpsychiatric\":19906,\"Ġindie\":19907,\"Ġcollar\":19908,\"ĠRainbow\":19909,\"afi\":19910,\"Ġdisruption\":19911,\"ĠFOX\":19912,\"casting\":19913,\"Ġmisdem\":19914,\"cro\":19915,\"Ġwipe\":19916,\"ardon\":19917,\"Ġbast\":19918,\"ĠTommy\":19919,\"ĠRepresentative\":19920,\"Ġbelly\":19921,\"ĠPO\":19922,\"ĠBreitbart\":19923,\"132\":19924,\"Ġmessaging\":19925,\"Should\":19926,\"References\":19927,\"ĠGRE\":19928,\"istical\":19929,\"LP\":19930,\"ĠCav\":19931,\"ĠCrazy\":19932,\"Ġintuitive\":19933,\"keeping\":19934,\"ĠMoss\":19935,\"Ġdiscontin\":19936,\"ĠModule\":19937,\"Ġunrelated\":19938,\"ĠPractice\":19939,\"ĠTransport\":19940,\"Ġstatistically\":19941,\"orns\":19942,\"Ġsized\":19943,\"pu\":19944,\"Ġcaf\":19945,\"ĠWorlds\":19946,\"ĠRodgers\":19947,\"ĠLun\":19948,\"ĠComic\":19949,\"living\":19950,\"Ġcared\":19951,\"Ġclimbed\":19952,\"){\":19953,\"Ġconsisted\":19954,\"Ġmedieval\":19955,\"folk\":19956,\"Ġhacked\":19957,\"Ġdire\":19958,\"ĠHermione\":19959,\"Ġtended\":19960,\"ceans\":19961,\"Daniel\":19962,\"went\":19963,\"Ġlegislators\":19964,\"Ġredes\":19965,\"games\":19966,\"Ġgn\":19967,\"amiliar\":19968,\"Ġ++\":19969,\"ggy\":19970,\"threat\":19971,\"Ġmagnet\":19972,\"Ġperceive\":19973,\"Ġzip\":19974,\"Ġindictment\":19975,\"Ġcritique\":19976,\"gard\":19977,\"ĠSafe\":19978,\"ĠCream\":19979,\"Ġadvent\":19980,\"oba\":19981,\"Ġvowed\":19982,\"ousands\":19983,\"Ġski\":19984,\"Ġabortions\":19985,\"uart\":19986,\"Ġstunned\":19987,\"Ġadvancing\":19988,\"Ġlacked\":19989,\"Ġ\\\\\\\"\":19990,\"Ġschizophren\":19991,\"Ġelegant\":19992,\"Ġconferences\":19993,\"Ġcanceled\":19994,\"ĠHudson\":19995,\"ĠHopefully\":19996,\"Ġtrump\":19997,\"Ġfrequencies\":19998,\"Ġmeteor\":19999,\"ĠJunior\":20000,\"ĠFleet\":20001,\"ĠMalcolm\":20002,\"ĠTools\":20003,\"Ġ........\":20004,\"Ġhobby\":20005,\"ĠEuropeans\":20006,\"Ġ1500\":20007,\"ĠInto\":20008,\"Ġsway\":20009,\"ĠAppro\":20010,\"ĠCompl\":20011,\"Community\":20012,\"Ġtide\":20013,\"ĠSummit\":20014,\"ä»\":20015,\"Ġintervals\":20016,\"ĠEther\":20017,\"Ġhabitat\":20018,\"ĠStevens\":20019,\"lishing\":20020,\"ĠDomain\":20021,\"Ġtriggers\":20022,\"Ġchasing\":20023,\"Ġcharm\":20024,\"ĠFlower\":20025,\"itored\":20026,\"Ġblessing\":20027,\"Ġtextures\":20028,\"Five\":20029,\"Ġliquor\":20030,\"RP\":20031,\"FIN\":20032,\"Ġ1962\":20033,\"CAR\":20034,\"Unknown\":20035,\"Ġresil\":20036,\"ĠLily\":20037,\"Ġabundance\":20038,\"Ġpredictable\":20039,\"rar\":20040,\"Ġbullshit\":20041,\"leen\":20042,\"chet\":20043,\"Mor\":20044,\"Much\":20045,\"ä¹\":20046,\"Ġemphasized\":20047,\"Ġcrust\":20048,\"Ġprimitive\":20049,\"Ġenjoyable\":20050,\"ĠPictures\":20051,\"Ġteammate\":20052,\"pler\":20053,\"ĠTol\":20054,\"ĠKane\":20055,\"Ġsummoned\":20056,\"thy\":20057,\"rama\":20058,\"ĠHonda\":20059,\"Ġrealizing\":20060,\"Ġquicker\":20061,\"Ġconcentrate\":20062,\"clear\":20063,\"Ġ210\":20064,\"ĠErdogan\":20065,\"aris\":20066,\"Ġresponds\":20067,\"ĠBI\":20068,\"Ġeligibility\":20069,\"Ġpushes\":20070,\"ĠIdaho\":20071,\"Ġaggrav\":20072,\"Ġruins\":20073,\"urations\":20074,\"Ġbans\":20075,\"Ġanat\":20076,\"share\":20077,\"Ġgrind\":20078,\"hin\":20079,\"umen\":20080,\"Ġutilities\":20081,\"ĠYankees\":20082,\"Ġdatabases\":20083,\"ĠDD\":20084,\"Ġdisplaced\":20085,\"Ġdependencies\":20086,\"Ġstimulation\":20087,\"hun\":20088,\"houses\":20089,\"ĠPretty\":20090,\"ĠRavens\":20091,\"ĠTODAY\":20092,\"Ġassociates\":20093,\"Ġtherape\":20094,\"cled\":20095,\"Ġdeer\":20096,\"Ġrepairs\":20097,\"rentice\":20098,\"Ġreceptors\":20099,\"Ġremed\":20100,\"ĠCe\":20101,\"Ġmarriages\":20102,\"Ġballots\":20103,\"ĠSoldier\":20104,\"Ġhilarious\":20105,\"opl\":20106,\"138\":20107,\"Ġinherently\":20108,\"Ġignorant\":20109,\"Ġbounce\":20110,\"ĠEaster\":20111,\"RELATED\":20112,\"ĠCurrency\":20113,\"EV\":20114,\"ãĥŀ\":20115,\"ĠLead\":20116,\"Ġdeceased\":20117,\"Brien\":20118,\"ĠMusk\":20119,\"JS\":20120,\"Ġmerge\":20121,\"hearted\":20122,\"creat\":20123,\"mitt\":20124,\"mund\":20125,\"ĠâĢĭ\":20126,\"ĠBag\":20127,\"Ġprojection\":20128,\"Ġjava\":20129,\"ĠStandards\":20130,\"ĠLeonard\":20131,\"Ġcoconut\":20132,\"ĠPopulation\":20133,\"Ġtraject\":20134,\"Ġimply\":20135,\"Ġcuriosity\":20136,\"ĠDB\":20137,\"ĠFresh\":20138,\"ĠPor\":20139,\"Ġheavier\":20140,\"neys\":20141,\"gomery\":20142,\"Ġdeserved\":20143,\"Ġphrases\":20144,\"ĠGC\":20145,\"Ġyeast\":20146,\"desc\":20147,\"Death\":20148,\"Ġreboot\":20149,\"Ġmetadata\":20150,\"ICAL\":20151,\"Ġrepay\":20152,\"ĠIndependence\":20153,\"Ġsuburban\":20154,\"icals\":20155,\"Ġatop\":20156,\"Ġallocation\":20157,\"generation\":20158,\"ĠGram\":20159,\"Ġmoisture\":20160,\"Ġpine\":20161,\"ĠLiberals\":20162,\"Ġaides\":20163,\"Ġunderest\":20164,\"ĠBerry\":20165,\"Ġceremon\":20166,\"370\":20167,\"astrous\":20168,\"ĠPirates\":20169,\"Ġtense\":20170,\"ĠIndustries\":20171,\"ĠAppeals\":20172,\"ĠNear\":20173,\"Ġè£ıç\":20174,\"Ġlovers\":20175,\"ĠCAP\":20176,\"ĠCraw\":20177,\"Ġgiants\":20178,\"Ġefficacy\":20179,\"Element\":20180,\"ĠBehavior\":20181,\"ĠToyota\":20182,\"Ġintest\":20183,\"Priv\":20184,\"AI\":20185,\"Ġmaneuver\":20186,\"Ġperfection\":20187,\"Ġbang\":20188,\"paper\":20189,\"rill\":20190,\"George\":20191,\"border\":20192,\"inters\":20193,\"ĠSeth\":20194,\"Ġclues\":20195,\"ĠLevi\":20196,\"ĠRevenue\":20197,\"147\":20198,\"Ġvapor\":20199,\"Ġfortunate\":20200,\"Ġthreatens\":20201,\"Ġvet\":20202,\"Ġdependency\":20203,\"ersed\":20204,\"article\":20205,\"ĠBlizzard\":20206,\"Ġchlor\":20207,\"Ġminus\":20208,\"ĠBills\":20209,\"Ġcryptocurrency\":20210,\"Ġmetabolism\":20211,\"tering\":20212,\"Ġpestic\":20213,\"steps\":20214,\"ĠTreasure\":20215,\"racted\":20216,\"ĠConstant\":20217,\"Ġtemp\":20218,\"139\":20219,\"ĠDetective\":20220,\"urally\":20221,\"Ġrecovering\":20222,\"Ġcortex\":20223,\"Ġ144\":20224,\"closed\":20225,\"Ġprejudice\":20226,\"aunted\":20227,\"Ġstorms\":20228,\"ĠNOW\":20229,\"Ġmachinery\":20230,\"Address\":20231,\"Ġcompelled\":20232,\"270\":20233,\"Ġdespair\":20234,\"bane\":20235,\"Ġvegetable\":20236,\"Ġbeds\":20237,\"Learn\":20238,\"Ġcolorful\":20239,\"Ġspike\":20240,\"Ġmargins\":20241,\"Ġsympathy\":20242,\"Ġworkshop\":20243,\"ĠCBC\":20244,\"Sat\":20245,\"Ġburns\":20246,\"ĠGender\":20247,\"Ġ129\":20248,\"ĠCable\":20249,\"Ġdebts\":20250,\"ĠTheresa\":20251,\"Ġreflecting\":20252,\"Ġairst\":20253,\"Ġrim\":20254,\"ramid\":20255,\"Ġweaknesses\":20256,\"Writ\":20257,\"oggle\":20258,\"ti\":20259,\"ĠCharge\":20260,\"Ġweighed\":20261,\"Ġ(.\":20262,\"Ġlaughter\":20263,\"Ġrouter\":20264,\"ĠDemocracy\":20265,\"Dear\":20266,\"Ġhasht\":20267,\"Ġdy\":20268,\"Ġhints\":20269,\"running\":20270,\"Ġfinishes\":20271,\"arus\":20272,\"Mass\":20273,\"result\":20274,\"ascus\":20275,\"Ġvintage\":20276,\"Ġconqu\":20277,\"Ġwildly\":20278,\"acist\":20279,\"Ġlingu\":20280,\"Ġprotagonist\":20281,\"strom\":20282,\"teenth\":20283,\"ĠSolo\":20284,\"mac\":20285,\"filled\":20286,\"Ġrenown\":20287,\"itives\":20288,\"Ġmotive\":20289,\"ĠAntar\":20290,\"ĠMann\":20291,\"ĠAdjust\":20292,\"Ġrockets\":20293,\"Ġtroubling\":20294,\"ei\":20295,\"Ġorganisms\":20296,\"assis\":20297,\"Christian\":20298,\"Ġ145\":20299,\"ĠHass\":20300,\"Ġswall\":20301,\"Ġwax\":20302,\"ĠSurvival\":20303,\"VS\":20304,\"ĠMurd\":20305,\"vd\":20306,\"standard\":20307,\"Ġdragons\":20308,\"Ġacceleration\":20309,\"rational\":20310,\"final\":20311,\"Ġpaired\":20312,\"ĠEthereum\":20313,\"Ġinterfaces\":20314,\"Ġresent\":20315,\"Ġartifacts\":20316,\"Å«\":20317,\"arel\":20318,\"Ġcompetitor\":20319,\"ĠNicholas\":20320,\"ĠSurface\":20321,\"cpp\":20322,\"ĠTot\":20323,\"Ġeconomically\":20324,\"Ġorganised\":20325,\"Ġenforced\":20326,\"inho\":20327,\"Ġvarieties\":20328,\"Ġabdom\":20329,\"ĠBailey\":20330,\"idav\":20331,\"ĠSalv\":20332,\"paid\":20333,\"Ġaltitude\":20334,\"essert\":20335,\"ĠGutenberg\":20336,\"area\":20337,\"opoulos\":20338,\"Ġprofessors\":20339,\"iggs\":20340,\"ĠFate\":20341,\"hey\":20342,\"Ġ3000\":20343,\"Dist\":20344,\"Ġtwins\":20345,\"cill\":20346,\"ĠMaps\":20347,\"Ġtraps\":20348,\"Ġweed\":20349,\"ĠKiss\":20350,\"Ġyoga\":20351,\"Ġrecipients\":20352,\"ĠWestminster\":20353,\"Ġpools\":20354,\"ĠWalmart\":20355,\"188\":20356,\"ĠSchools\":20357,\"attack\":20358,\"ĠARM\":20359,\"paragraph\":20360,\"Warning\":20361,\"jl\":20362,\"Ġselfish\":20363,\"anchez\":20364,\"ĠHeights\":20365,\"Fre\":20366,\"ĠSoph\":20367,\"Ġ--------------------------------\":20368,\"tml\":20369,\"333\":20370,\"Ġraids\":20371,\"Ġsatellites\":20372,\"KEY\":20373,\"Ġlasts\":20374,\"ÑĤ\":20375,\"Ins\":20376,\"ĠDame\":20377,\"Ġunpredict\":20378,\"///\":20379,\"ghai\":20380,\"Ġartillery\":20381,\"Ġcruise\":20382,\"Ġgel\":20383,\"ĠCabinet\":20384,\"Ġblows\":20385,\"ĠEsp\":20386,\"Ġproximity\":20387,\"othe\":20388,\"ĠSkills\":20389,\"ĠUpper\":20390,\"obo\":20391,\"ĠNDP\":20392,\"Ġenjoys\":20393,\"Ġrepeating\":20394,\"ĠConstruction\":20395,\"ĠQuestions\":20396,\"Hillary\":20397,\"Ġuint\":20398,\"Ġprocessors\":20399,\"ĠGibson\":20400,\"ĠMultiple\":20401,\"qa\":20402,\"ĠBom\":20403,\"ĠMiles\":20404,\"ventional\":20405,\"Ġhurts\":20406,\"skin\":20407,\"ĠAIDS\":20408,\"Ġadvisers\":20409,\"ĠRoot\":20410,\"Ġmethodology\":20411,\"ĠDale\":20412,\"Ġdeton\":20413,\"ĠKnowledge\":20414,\"sequently\":20415,\"Ġ121\":20416,\"Ġconnects\":20417,\"Cy\":20418,\"ĠDanger\":20419,\"Ġcontributors\":20420,\"ĠBent\":20421,\"Ġbrass\":20422,\"ĠGuns\":20423,\"into\":20424,\"ĠFortune\":20425,\"Ġbroker\":20426,\"balance\":20427,\"Ġlengths\":20428,\"Ġvic\":20429,\"Ġaveraging\":20430,\"Ġappropriately\":20431,\"ĠCamera\":20432,\"Ġsandwich\":20433,\"ĠCDC\":20434,\"Ġcoordinate\":20435,\"Ġnavig\":20436,\"Ġgoodness\":20437,\"laim\":20438,\"Ġbrake\":20439,\"Ġextremist\":20440,\"ĠWake\":20441,\"ĠMend\":20442,\"ĠTiny\":20443,\"ĠCOL\":20444,\"ĠRF\":20445,\"ĠDual\":20446,\"ĠWine\":20447,\"Case\":20448,\"Ġrefined\":20449,\"Ġlamp\":20450,\"Lead\":20451,\"Ġbapt\":20452,\"ĠCarb\":20453,\"ĠSadd\":20454,\"ĠMinneapolis\":20455,\"PDF\":20456,\"Early\":20457,\"ĠHidden\":20458,\"Its\":20459,\"ĠTIME\":20460,\"Ġpap\":20461,\"Ġcommissioned\":20462,\"ĠFew\":20463,\"ĠColts\":20464,\"ĠBren\":20465,\"Ġbothered\":20466,\"Ġlikewise\":20467,\"Exper\":20468,\"ĠSchw\":20469,\"cry\":20470,\"nn\":20471,\"ĠMitch\":20472,\"imon\":20473,\"MG\":20474,\"bm\":20475,\"UMP\":20476,\"rays\":20477,\"Ġregistry\":20478,\"Ġ270\":20479,\"achine\":20480,\"rella\":20481,\"anting\":20482,\"00000\":20483,\"Ġruined\":20484,\"spot\":20485,\"Ġta\":20486,\"Ġmaximize\":20487,\"Ġinconven\":20488,\"Dead\":20489,\"Human\":20490,\"Enabled\":20491,\"ĠMarie\":20492,\"Ġchill\":20493,\"ĠParadise\":20494,\"Ġstarring\":20495,\"ĠLatino\":20496,\"ĠProtocol\":20497,\"ĠEVER\":20498,\"Ġsuppliers\":20499,\"message\":20500,\"ĠBrock\":20501,\"Ġserum\":20502,\"âĸĪâĸĪâĸĪâĸĪ\":20503,\"Ġencomp\":20504,\"Ġambition\":20505,\"uese\":20506,\"Ġarrows\":20507,\"Andrew\":20508,\"Ġantenna\":20509,\"Ġ1961\":20510,\"ĠBark\":20511,\"Ġbool\":20512,\"ãĤª\":20513,\"ĠStorage\":20514,\"Ġrailway\":20515,\"Ġtougher\":20516,\"ĠCad\":20517,\"Ġwashing\":20518,\"Py\":20519,\"']\":20520,\"embed\":20521,\"ĠMemphis\":20522,\"ackle\":20523,\"Ġfamously\":20524,\"ĠFortunately\":20525,\"ovies\":20526,\"Ġmindset\":20527,\"Ġsneak\":20528,\"ĠDh\":20529,\"RAW\":20530,\"ĠSimpson\":20531,\"Ġlivest\":20532,\"Ġlandmark\":20533,\"Ġcement\":20534,\"Low\":20535,\"Ġthrilled\":20536,\"ĠCourse\":20537,\"inel\":20538,\"Ġchuck\":20539,\"idate\":20540,\"global\":20541,\"Ġwhit\":20542,\"Ġï¿½\":20543,\"adays\":20544,\"ski\":20545,\"ĠSV\":20546,\"Ġviruses\":20547,\"306\":20548,\"ĠRespons\":20549,\"Ġtheaters\":20550,\"ĠBranch\":20551,\"ĠGeneva\":20552,\"ĠMK\":20553,\"Ġunbeliev\":20554,\"Ġcommunist\":20555,\"Original\":20556,\"ĠReceived\":20557,\"ĠTransfer\":20558,\"ĠArg\":20559,\"Input\":20560,\"ĠStrategy\":20561,\"Ġpalace\":20562,\"thening\":20563,\"Dri\":20564,\"Ġsentencing\":20565,\"umbnail\":20566,\"Ġpins\":20567,\"recy\":20568,\"Ġsiblings\":20569,\"Getting\":20570,\"ĠBU\":20571,\"ĠNorthwest\":20572,\"Ġprolonged\":20573,\"ĠSakura\":20574,\"Comb\":20575,\"ĠBour\":20576,\"Ġinadequate\":20577,\"ĠKash\":20578,\"Ġusername\":20579,\"ĠImprove\":20580,\"Ġbattling\":20581,\"ĠMAC\":20582,\"Ġcurriculum\":20583,\"Ġsoda\":20584,\"ĠCannon\":20585,\"Ġsensible\":20586,\"spons\":20587,\"December\":20588,\"Ġwicked\":20589,\"ĠPengu\":20590,\"Ġdictators\":20591,\"ĠHearts\":20592,\"ogyn\":20593,\"Ġsimilarities\":20594,\"ĠStats\":20595,\"Ġhollow\":20596,\"itations\":20597,\"\\\":[\":20598,\"Ġhover\":20599,\"ĠListen\":20600,\"sch\":20601,\"Sund\":20602,\"Ġcad\":20603,\"ĠParks\":20604,\"Ġlur\":20605,\"Ġhype\":20606,\"ĠLem\":20607,\"NAME\":20608,\"isure\":20609,\"Friday\":20610,\"Ġshoots\":20611,\"Ġcloses\":20612,\"Ġdb\":20613,\"ĠRidge\":20614,\"ĠDifferent\":20615,\"Ġreplies\":20616,\"ĠBroadway\":20617,\"opers\":20618,\"Ġintoler\":20619,\"ĠZeus\":20620,\"akespe\":20621,\"Ġproprietary\":20622,\"Ġrequesting\":20623,\"Ġcontrollers\":20624,\"ĠMIN\":20625,\"imedia\":20626,\"becca\":20627,\"Ġexpans\":20628,\"Ġoils\":20629,\"Bot\":20630,\"ĠChand\":20631,\"Ġprinter\":20632,\"Ġtopped\":20633,\"ĠPOL\":20634,\"ĠEarlier\":20635,\"Social\":20636,\"avin\":20637,\"Ġdecreases\":20638,\"ĠSeb\":20639,\"Ġspecifications\":20640,\"ĠBlast\":20641,\"ĠKurt\":20642,\"Ġfreel\":20643,\"Brown\":20644,\"Ġdilig\":20645,\"roe\":20646,\"ĠProblem\":20647,\"ĠQuad\":20648,\"Ġdecentral\":20649,\"ĠVector\":20650,\"anut\":20651,\"Ġplugins\":20652,\"ĠGregory\":20653,\"Ġfucked\":20654,\"elines\":20655,\"ĠAmbassador\":20656,\"take\":20657,\"Ġcleans\":20658,\"ongyang\":20659,\"Anonymous\":20660,\"stro\":20661,\"\\\"}\":20662,\"aline\":20663,\"ĠOdd\":20664,\"ĠEug\":20665,\"216\":20666,\"Ġboil\":20667,\"ĠPowers\":20668,\"Ġnurses\":20669,\"Obviously\":20670,\"ĠTechnical\":20671,\"Ġexceeded\":20672,\"ORS\":20673,\"Ġextremists\":20674,\"Ġtraces\":20675,\"expl\":20676,\"Ġcomr\":20677,\"ĠSach\":20678,\")/\":20679,\"Ġmasks\":20680,\"Ġsci\":20681,\"Bon\":20682,\"Ġregression\":20683,\"wegian\":20684,\"Ġadvisor\":20685,\"itures\":20686,\"ĠVo\":20687,\"example\":20688,\"ĠInstruct\":20689,\"Ġsiege\":20690,\"Ġreductions\":20691,\"ptr\":20692,\"Ġstatutory\":20693,\"Ġremoves\":20694,\"Ġpuck\":20695,\"redits\":20696,\"Ġbee\":20697,\"Ġsalad\":20698,\"Ġpromotions\":20699,\"ĠJoshua\":20700,\"withstanding\":20701,\"ETH\":20702,\"ĠCha\":20703,\"imus\":20704,\"Ġexpenditure\":20705,\"aunting\":20706,\"Ġdelighted\":20707,\"Ġ155\":20708,\"beh\":20709,\"Ġcarpet\":20710,\"ĠSpart\":20711,\"Ġjungle\":20712,\"lists\":20713,\"Ġbullying\":20714,\"ĠNobel\":20715,\"ĠGlen\":20716,\"Ġreferenced\":20717,\"Ġintroduces\":20718,\"sein\":20719,\"Ġchopped\":20720,\"glass\":20721,\"ĠWrest\":20722,\"Ġneutrality\":20723,\"ĠâĻ\":20724,\"Ġinvestigator\":20725,\"Ġshelves\":20726,\"Ġunconstitutional\":20727,\"Ġreproduction\":20728,\"Ġmerchant\":20729,\"mia\":20730,\"Ġmetrics\":20731,\"Ġexplosives\":20732,\"ĠSonia\":20733,\"Ġbodily\":20734,\"Ġthickness\":20735,\"Ġpredominantly\":20736,\"ĠAbility\":20737,\"Ġmonitored\":20738,\"ICH\":20739,\"Ġ].\":20740,\"ĠMartinez\":20741,\"Ġvisibility\":20742,\"Ġqueries\":20743,\"Ġgenocide\":20744,\"ĠWarfare\":20745,\"Query\":20746,\"Ġstudios\":20747,\"Ġembry\":20748,\"Ġcorridor\":20749,\"Ġcleaned\":20750,\"complete\":20751,\"ĠMH\":20752,\"Ġenrollment\":20753,\"INGS\":20754,\"Ġimpacted\":20755,\"Ġdisastrous\":20756,\"ĠYun\":20757,\"ĠClaire\":20758,\"ĠBasically\":20759,\"yt\":20760,\"usterity\":20761,\"Ġindirectly\":20762,\"wik\":20763,\"Ġdod\":20764,\"ĠCarr\":20765,\"Ġamp\":20766,\"Ġprohibit\":20767,\"ĠInitial\":20768,\"ĠRd\":20769,\"iji\":20770,\"Ġeducate\":20771,\"corn\":20772,\"iott\":20773,\"ĠBeauty\":20774,\"Ġdetective\":20775,\"ĠConn\":20776,\"since\":20777,\"Ġstagger\":20778,\"Ġobese\":20779,\"Ġbree\":20780,\"ologic\":20781,\"isse\":20782,\"walker\":20783,\"Ġblades\":20784,\"Ġlawful\":20785,\"func\":20786,\"ĠBehind\":20787,\"Ġappetite\":20788,\"Ġ(*\":20789,\"Ġtennis\":20790,\"Ġoffspring\":20791,\"Ġjets\":20792,\"Ġstructured\":20793,\"Ġaforementioned\":20794,\"Nov\":20795,\"Ġscaling\":20796,\"fill\":20797,\"Ġstew\":20798,\"Ġcurb\":20799,\"ĠStephan\":20800,\"edIn\":20801,\"SF\":20802,\"obic\":20803,\"éŃĶ\":20804,\"oug\":20805,\"ĠMM\":20806,\"Ġgenetically\":20807,\"opez\":20808,\"136\":20809,\"Ġumb\":20810,\"ancers\":20811,\"Ġcohort\":20812,\"Ġmerchandise\":20813,\"Ġimposing\":20814,\"ĠLegislature\":20815,\"ĠArchive\":20816,\"ivia\":20817,\"ĠNaval\":20818,\"Ġoffences\":20819,\"Ġmiracle\":20820,\"Ġsnapped\":20821,\"Ġfoes\":20822,\"Ġextensively\":20823,\"ĠRaf\":20824,\"Ġcater\":20825,\"edience\":20826,\"Kit\":20827,\"ĠBin\":20828,\"Ġrecommends\":20829,\"ĠCities\":20830,\"Ġrigid\":20831,\"ĠREAD\":20832,\"ĠNoble\":20833,\"ĠTian\":20834,\"Ġcertificates\":20835,\"antis\":20836,\"oiler\":20837,\"ĠBuddhist\":20838,\"did\":20839,\"Ġsurveyed\":20840,\"Ġdownward\":20841,\"Ġprints\":20842,\"ĠMotion\":20843,\"ronics\":20844,\"ĠSans\":20845,\"ossibly\":20846,\"uctions\":20847,\"Ġcolonies\":20848,\"ĠDanish\":20849,\"unit\":20850,\"Ġspoil\":20851,\"Ġadvisory\":20852,\"berries\":20853,\"Plan\":20854,\"Ġspecification\":20855,\"ophers\":20856,\"ĠResource\":20857,\"Ġshirts\":20858,\"prisingly\":20859,\"communications\":20860,\"Ġtrivial\":20861,\"Ġmentioning\":20862,\"isexual\":20863,\"Ġsupplements\":20864,\"Ġsupervision\":20865,\"BP\":20866,\"vor\":20867,\"Ġwit\":20868,\"Ġcooldown\":20869,\"Ġplaintiff\":20870,\"ĠReviews\":20871,\"ĠSri\":20872,\"ĠMint\":20873,\"ĠSugar\":20874,\"Ġafterward\":20875,\"ĠPriest\":20876,\"ĠInvestment\":20877,\"ogene\":20878,\"ĠTaking\":20879,\"Ġstretching\":20880,\"Ġinflammation\":20881,\"ĠTehran\":20882,\"Ġlining\":20883,\"Ġfreezing\":20884,\"ĠEntity\":20885,\"Ġinspiring\":20886,\"special\":20887,\"price\":20888,\"Ġsue\":20889,\"ĠPorter\":20890,\"ounge\":20891,\"ETA\":20892,\"ĠDerek\":20893,\"ĠLuis\":20894,\"uo\":20895,\"ymph\":20896,\"Ġexterior\":20897,\"ihil\":20898,\"ĠAshley\":20899,\"inator\":20900,\"Ġnutrients\":20901,\"ĠThrones\":20902,\"Ġfinances\":20903,\"ĠInspect\":20904,\"Ġspecially\":20905,\"ĠRequired\":20906,\"ĠPTS\":20907,\"ĠViolence\":20908,\"ointed\":20909,\"shots\":20910,\"Ġexcerpt\":20911,\"coon\":20912,\"INS\":20913,\"ĠGri\":20914,\"Ġrecognised\":20915,\"Week\":20916,\"Young\":20917,\"Ġvom\":20918,\"isle\":20919,\"ĠCurry\":20920,\"ĠBuddh\":20921,\"Ġnotebook\":20922,\"Ġdurable\":20923,\"/?\":20924,\"ĠGad\":20925,\"ĠPupp\":20926,\"Ġforgive\":20927,\"park\":20928,\"Ġpersonalities\":20929,\"analysis\":20930,\"clamation\":20931,\"Ġelevator\":20932,\"Ġwarehouse\":20933,\"ĠRole\":20934,\"unn\":20935,\"Ġillustration\":20936,\"ĠScan\":20937,\"Ġatmospheric\":20938,\"Import\":20939,\"ANC\":20940,\"ricted\":20941,\"fu\":20942,\"010\":20943,\"Ġarche\":20944,\"Ġrewarded\":20945,\"akespeare\":20946,\"Ġinternally\":20947,\"ĠRBI\":20948,\"alker\":20949,\"Ġelephant\":20950,\"owitz\":20951,\"ĠPizza\":20952,\"Ġbipartisan\":20953,\"Ã©s\":20954,\"Ġslowed\":20955,\"ĠStark\":20956,\"Ġoverride\":20957,\"OUS\":20958,\"Ġ320\":20959,\"undreds\":20960,\"ĠDeck\":20961,\"ĠCensus\":20962,\"bee\":20963,\"146\":20964,\"otor\":20965,\"Ġip\":20966,\"Ġub\":20967,\"ocations\":20968,\"ĠButton\":20969,\"rice\":20970,\"Ġcripp\":20971,\"fff\":20972,\"Ġoriginated\":20973,\"Ġoverwhelmed\":20974,\"appa\":20975,\"Ġforemost\":20976,\"âĢĳ\":20977,\"ĠLEG\":20978,\"release\":20979,\"eatured\":20980,\"atches\":20981,\"Ġreps\":20982,\"Ġlending\":20983,\"ĠReference\":20984,\"ĠClient\":20985,\"165\":20986,\"venth\":20987,\"Complete\":20988,\"ĠPatrol\":20989,\"Ġsworn\":20990,\"cam\":20991,\"Ġshuttle\":20992,\"ĠRalph\":20993,\"Ġhometown\":20994,\"-,\":20995,\"onal\":20996,\"ĠBP\":20997,\"åı\":20998,\"Ġpersuade\":20999,\"ĠAlexand\":21000,\"Ġcombines\":21001,\"Ġvivid\":21002,\"ĠLag\":21003,\"Ġencoding\":21004,\"Ġsalvation\":21005,\"wen\":21006,\"ĠRecovery\":21007,\"iya\":21008,\"University\":21009,\"ĠBiden\":21010,\"Ġbudgets\":21011,\"ĠTexans\":21012,\"fits\":21013,\"Ġhonored\":21014,\"Ġpython\":21015,\"TD\":21016,\"###\":21017,\"clone\":21018,\"Ġblink\":21019,\"ĠLiquid\":21020,\"Ġunemployed\":21021,\"Ġclashes\":21022,\"ĠCounsel\":21023,\"Ġdirecting\":21024,\"Ġpunct\":21025,\"ĠFalcons\":21026,\"Ġshark\":21027,\"ĠDamascus\":21028,\"Ġjeans\":21029,\"Ġembark\":21030,\"Ġseize\":21031,\"Ġupwards\":21032,\"280\":21033,\"ĠEz\":21034,\"ĠAnything\":21035,\"Ġexotic\":21036,\"lower\":21037,\"ĠCreator\":21038,\"ĠUm\":21039,\"Ġsuburbs\":21040,\"berger\":21041,\"ĠWend\":21042,\"Ġmint\":21043,\"ĠXX\":21044,\"ĠDro\":21045,\"Ġsuffers\":21046,\"Ġherb\":21047,\"tree\":21048,\"Ġfragile\":21049,\"Ġflooded\":21050,\"ĠAlcohol\":21051,\"olean\":21052,\"nyder\":21053,\"ĠKO\":21054,\"Fram\":21055,\"Ġ136\":21056,\"Ġowed\":21057,\"ĠMelee\":21058,\"ĠHash\":21059,\"Ġwhisk\":21060,\"Ġsudo\":21061,\"rr\":21062,\"Quick\":21063,\"appro\":21064,\"Ġii\":21065,\"ĠExamples\":21066,\"hee\":21067,\"Ġpromotes\":21068,\"perature\":21069,\"kar\":21070,\"ĠHonor\":21071,\"Ġsodium\":21072,\"ĠLif\":21073,\"rosso\":21074,\"intendent\":21075,\"Ġcorrespondent\":21076,\"Found\":21077,\"secret\":21078,\"Ġidentifies\":21079,\"agne\":21080,\"Ġlou\":21081,\"ĠPP\":21082,\"Ġcoincidence\":21083,\"move\":21084,\"Ġmilitia\":21085,\"Ġinfiltr\":21086,\"ĠPrimary\":21087,\"Ġpitching\":21088,\"ĠIb\":21089,\"ĠGOOD\":21090,\"ãĤ¸\":21091,\"ĠWizards\":21092,\"iral\":21093,\"ĠVenus\":21094,\"RR\":21095,\"ĠâĢķ\":21096,\"ĠCasey\":21097,\"Ġsadly\":21098,\"Ġadmire\":21099,\"Ġembarrassed\":21100,\"cb\":21101,\"Mel\":21102,\"Ġtubes\":21103,\"Ġbeautifully\":21104,\"ĠQueensland\":21105,\"Below\":21106,\"rez\":21107,\"quet\":21108,\"pleasant\":21109,\"ĠÂ«\":21110,\"Camp\":21111,\"Ġdecisive\":21112,\"1998\":21113,\"ĠLamb\":21114,\"utton\":21115,\"hn\":21116,\"ĠJagu\":21117,\"aunder\":21118,\"ĠCord\":21119,\"Ġclerk\":21120,\"Ġcaffe\":21121,\"Ġwiped\":21122,\"Ġreim\":21123,\"ĠMountains\":21124,\"Ġimprisoned\":21125,\"Ġdevelops\":21126,\"ĠPra\":21127,\"Ġmodeling\":21128,\"Anyone\":21129,\"ancel\":21130,\"ĠSit\":21131,\"Ġshields\":21132,\"Ġlawn\":21133,\"Ġcardiovascular\":21134,\"Ġdemonstrating\":21135,\"Ġparse\":21136,\"ĠIsraelis\":21137,\"Ġeuros\":21138,\"143\":21139,\"Ġglorious\":21140,\"inski\":21141,\"ecd\":21142,\"Ġconditioning\":21143,\"Ġhelpless\":21144,\"Ġmicrosc\":21145,\"ĠHarbor\":21146,\"Ġstakes\":21147,\"Ġ260\":21148,\"Ġunequ\":21149,\"ĠFloyd\":21150,\"Ġdamp\":21151,\"Ġapparatus\":21152,\"ĠLaws\":21153,\"Ġcounters\":21154,\"Ġinduce\":21155,\"atable\":21156,\"ĠAhmed\":21157,\"Ġslam\":21158,\"November\":21159,\"Ġpersist\":21160,\"Ġimminent\":21161,\"Ã¡n\":21162,\"Ġshred\":21163,\"Ġphases\":21164,\"ĠEdmonton\":21165,\"ĠArmstrong\":21166,\"ĠMeet\":21167,\"ĠKitty\":21168,\"ÑĢ\":21169,\"circ\":21170,\"ĠAdult\":21171,\"Ġarose\":21172,\"ĠXen\":21173,\"Dan\":21174,\"gow\":21175,\"Ġsuperf\":21176,\"ĠAdmir\":21177,\"Ġendure\":21178,\"Ġkeyword\":21179,\"yrus\":21180,\"Ġyarn\":21181,\"Ġpathway\":21182,\"ĠHopkins\":21183,\"midt\":21184,\"Ġcensorship\":21185,\"dependent\":21186,\"Ġinstructor\":21187,\"Sources\":21188,\"Ġtoe\":21189,\"Ġballoon\":21190,\"Nob\":21191,\"Ġswear\":21192,\"ĠCastro\":21193,\"Ġgloss\":21194,\"ĠKavanaugh\":21195,\"Ġremarkably\":21196,\"Photos\":21197,\"ĠNom\":21198,\"ĠSoutheast\":21199,\"yers\":21200,\"Ġvalidation\":21201,\"Ġcannon\":21202,\"ĠVictory\":21203,\"ĠPierre\":21204,\"Ġcautious\":21205,\"Audio\":21206,\"Ġfetch\":21207,\"ĠGift\":21208,\"ĠHyp\":21209,\"Ġremedy\":21210,\"ZE\":21211,\"Ġscent\":21212,\"Ġbeard\":21213,\"ĠRut\":21214,\"-\\\"\":21215,\"Ġpatents\":21216,\"Hy\":21217,\"Ġunjust\":21218,\"Ġpotato\":21219,\"Ġforthcoming\":21220,\"Ġchef\":21221,\"ĠRift\":21222,\"affe\":21223,\"ĠROM\":21224,\"ĠLaunch\":21225,\"Ġpads\":21226,\"ĠNeo\":21227,\"Ġonset\":21228,\"Ġsqueeze\":21229,\"safe\":21230,\"Ġprefix\":21231,\"ĠTM\":21232,\"ĠNearly\":21233,\"ĠClinical\":21234,\"ĠMental\":21235,\"otiation\":21236,\"ĠUnic\":21237,\"antry\":21238,\"ĠCir\":21239,\"Ġepit\":21240,\"Ã¦\":21241,\"Ġextracted\":21242,\"versely\":21243,\"riad\":21244,\"Ġstrains\":21245,\"Ġtops\":21246,\"Ġpoem\":21247,\"ĠRandy\":21248,\"ĠMaple\":21249,\"THER\":21250,\"upiter\":21251,\"ĠSSD\":21252,\"ļé\":21253,\"Ġuncon\":21254,\"pering\":21255,\"Ġslept\":21256,\"iners\":21257,\"Ġunderwater\":21258,\"ĠEvidence\":21259,\"gone\":21260,\"205\":21261,\"Ġhistorians\":21262,\"Ġsynthesis\":21263,\"Ġfrog\":21264,\"basketball\":21265,\"Ġvibrant\":21266,\"Ġsubord\":21267,\"Ġ365\":21268,\"ĠDial\":21269,\"Ġcooperate\":21270,\"HAHA\":21271,\"Ġgreeted\":21272,\"158\":21273,\"Ġjazz\":21274,\"Ġintox\":21275,\"ĠWalking\":21276,\"Ġsupervisor\":21277,\"ĠFusion\":21278,\"ĠMercedes\":21279,\"send\":21280,\"Ham\":21281,\"sd\":21282,\"nl\":21283,\"Ġtours\":21284,\"ĠFIFA\":21285,\"Ġculp\":21286,\"gd\":21287,\"304\":21288,\"Ġpleas\":21289,\"Ġillustrates\":21290,\"ĠColombia\":21291,\"Ġhighlighting\":21292,\"ĠSummary\":21293,\"Ġexposing\":21294,\"ĠDru\":21295,\"Ġirony\":21296,\"ritional\":21297,\"ĠCarroll\":21298,\"ĠEllis\":21299,\"Pict\":21300,\"ĠRapt\":21301,\"Ġadapter\":21302,\"Ġunm\":21303,\"Ġcorpse\":21304,\"Ġcelebrities\":21305,\"Den\":21306,\"atum\":21307,\"ĠApocalypse\":21308,\"ĠWag\":21309,\"lining\":21310,\"Ġhormones\":21311,\"Rub\":21312,\"ĠXi\":21313,\"ĠVaults\":21314,\"208\":21315,\"alkyrie\":21316,\"inosaur\":21317,\"Ġfeeds\":21318,\"vity\":21319,\"Ġdefeating\":21320,\"Wait\":21321,\"Ġemphasize\":21322,\"ĠSteelers\":21323,\"yrinth\":21324,\"leys\":21325,\"ĠWhenever\":21326,\"Currently\":21327,\"ĠClock\":21328,\"Ġcollectively\":21329,\"anyon\":21330,\"ĠJP\":21331,\"Ġmentality\":21332,\"Ġdownloads\":21333,\"Ġsurroundings\":21334,\"ĠBarnes\":21335,\"Ġflagship\":21336,\"Ġindicators\":21337,\"Ġgrapp\":21338,\"January\":21339,\"ĠElemental\":21340,\"ĠAthena\":21341,\"ibal\":21342,\"Ġsights\":21343,\"Ġcapita\":21344,\"ĠTreaty\":21345,\"Ġvoiced\":21346,\"ĠGaz\":21347,\"lette\":21348,\"Ġya\":21349,\"Ġexpired\":21350,\"Legend\":21351,\"Hot\":21352,\"nature\":21353,\"Ġunstable\":21354,\"Ġ280\":21355,\"Ãº\":21356,\"Comment\":21357,\"ALE\":21358,\"Ġquests\":21359,\"Ġhandler\":21360,\"nis\":21361,\"Ġversatile\":21362,\"Ġconceal\":21363,\"engeance\":21364,\"ĠInteractive\":21365,\"Ġobsessed\":21366,\"ĠDogs\":21367,\"Ġcracked\":21368,\"Sound\":21369,\"sv\":21370,\"ĠDylan\":21371,\"roads\":21372,\"fx\":21373,\"ĠCatholics\":21374,\"ĠHag\":21375,\"Ġslammed\":21376,\"Ġglowing\":21377,\"sale\":21378,\"Ġtissues\":21379,\"ĠChi\":21380,\"nee\":21381,\"Ġcher\":21382,\"sic\":21383,\"urrection\":21384,\"Ġbacon\":21385,\"ulatory\":21386,\").\\\"\":21387,\"Ġirregular\":21388,\"FORM\":21389,\"assed\":21390,\"Ġintentional\":21391,\"Ġcompensate\":21392,\"ĠSpeaking\":21393,\"ĠSets\":21394,\"153\":21395,\"Ġconventions\":21396,\"bands\":21397,\"emade\":21398,\"Ġecc\":21399,\"ĠWinston\":21400,\"ĠAssassin\":21401,\"ĠBelgian\":21402,\"Ġdependence\":21403,\"Ġniche\":21404,\"Ġbark\":21405,\"ĠJazz\":21406,\"Ġdisadvantage\":21407,\"Ġgasoline\":21408,\"Ġ165\":21409,\"çļĦ\":21410,\"essa\":21411,\"module\":21412,\"angular\":21413,\"OY\":21414,\"ĠTreatment\":21415,\"itas\":21416,\"olation\":21417,\"ĠArnold\":21418,\"Ġfeud\":21419,\"ĠNest\":21420,\"Ġtheatre\":21421,\"ewater\":21422,\"Ġminors\":21423,\"olicy\":21424,\"ĠHaven\":21425,\"division\":21426,\"Ġtrunk\":21427,\"Far\":21428,\"ĠPull\":21429,\"Ġcapturing\":21430,\"Ġ1800\":21431,\"ĠTeen\":21432,\"Ġexempl\":21433,\"Ġclinics\":21434,\"ĠBurg\":21435,\"Ġsubstit\":21436,\"Ġpayload\":21437,\"ĠLav\":21438,\"ĠTroy\":21439,\"ĠWitness\":21440,\"Ġfragments\":21441,\"Ġpasswords\":21442,\"Ġgospel\":21443,\"ĠGin\":21444,\"Ġtenants\":21445,\"olith\":21446,\"Six\":21447,\"Previous\":21448,\"ĠAges\":21449,\"ĠDarwin\":21450,\"Ġblat\":21451,\"Ġempathy\":21452,\"smith\":21453,\"bag\":21454,\"ĠEcho\":21455,\"ĠCamb\":21456,\"ĠMadd\":21457,\"ĠBoo\":21458,\"Ġrede\":21459,\"ĠBurning\":21460,\"Ġsmoothly\":21461,\"ĠAdrian\":21462,\"ĠVampire\":21463,\"ĠMonsters\":21464,\"steam\":21465,\"Style\":21466,\"Ma\":21467,\"rea\":21468,\"ĠDwar\":21469,\"alyst\":21470,\"ursor\":21471,\"Ġelimination\":21472,\"Ġcrypto\":21473,\"cht\":21474,\"ĠEternal\":21475,\"âĢ¦]\":21476,\"ĠSorce\":21477,\"Ill\":21478,\"NER\":21479,\"Ġuh\":21480,\"Conclusion\":21481,\"wage\":21482,\"Ġrespir\":21483,\"Ġreminis\":21484,\"hetical\":21485,\"Ġgy\":21486,\"Ġutilized\":21487,\"icidal\":21488,\"Ġ1900\":21489,\"Ġhunters\":21490,\"ĠSwan\":21491,\"ĠReact\":21492,\"Ġvisitor\":21493,\"ĠThanksgiving\":21494,\"308\":21495,\"Posts\":21496,\"Ġhips\":21497,\"1997\":21498,\"omers\":21499,\"Ġknocking\":21500,\"ĠVehicle\":21501,\"Ġtil\":21502,\"Ġ138\":21503,\"Ġmi\":21504,\"ĠInvestigation\":21505,\"ĠKenya\":21506,\"Ġcasino\":21507,\"Ġmotives\":21508,\"Ġregain\":21509,\"rex\":21510,\"Ġweekends\":21511,\"Ġstabbed\":21512,\"boro\":21513,\"Ġexploited\":21514,\"ĠHAVE\":21515,\"ĠTelevision\":21516,\"cock\":21517,\"Ġpreparations\":21518,\"Ġendeav\":21519,\"ĠRemote\":21520,\"ĠMaker\":21521,\"ĠProdu\":21522,\"ĠEvan\":21523,\"Ġinformational\":21524,\"ĠLouisville\":21525,\"154\":21526,\"ĠDreams\":21527,\"Ġplots\":21528,\"ĠRunner\":21529,\"Ġhurting\":21530,\"Ġacademy\":21531,\"ĠMontgomery\":21532,\"nm\":21533,\"ĠLanc\":21534,\"ĠAlz\":21535,\"210\":21536,\"elong\":21537,\"Ġretailer\":21538,\"Ġarising\":21539,\"Ġrebellion\":21540,\"Ġblonde\":21541,\"played\":21542,\"Ġinstrumental\":21543,\"Cross\":21544,\"Ġretention\":21545,\"Ġtherapeutic\":21546,\"Ġseas\":21547,\"Ġinfantry\":21548,\"ĠClint\":21549,\"Ġprompting\":21550,\"Ġbitch\":21551,\"Ġstems\":21552,\"ĠKra\":21553,\"Ġthesis\":21554,\"ĠBog\":21555,\"rued\":21556,\"Ġkings\":21557,\"Ġclay\":21558,\"ificent\":21559,\"ĠYES\":21560,\"ĠThing\":21561,\"ĠCubs\":21562,\"veyard\":21563,\"elsh\":21564,\"inarily\":21565,\"ĠEy\":21566,\"ĠRolling\":21567,\"Ġevolving\":21568,\"India\":21569,\"Ġrecognizes\":21570,\"Ġgraduation\":21571,\"isers\":21572,\"Ġfertility\":21573,\"ĠMilan\":21574,\"Command\":21575,\"Ġboxing\":21576,\"Ġ1943\":21577,\"Ġgluten\":21578,\"ĠEmir\":21579,\"Ġidol\":21580,\"Ġconceived\":21581,\"ĠCreation\":21582,\"Merit\":21583,\"uddy\":21584,\"ussions\":21585,\"ĠLieutenant\":21586,\"ietal\":21587,\"Ġunchanged\":21588,\"ĠScale\":21589,\"ĠCrimea\":21590,\"balls\":21591,\"atorial\":21592,\"Ġdepths\":21593,\"Ġempirical\":21594,\"Ġtransm\":21595,\"Ġunsafe\":21596,\"missible\":21597,\"comfort\":21598,\"156\":21599,\"Ġmechanic\":21600,\"002\":21601,\"lins\":21602,\"Ġsmoked\":21603,\"Pos\":21604,\"Ġslowing\":21605,\"Ġlav\":21606,\"Texas\":21607,\"Ġcheating\":21608,\"ĠMetropolitan\":21609,\"ethyl\":21610,\"Ġdiscovering\":21611,\"asse\":21612,\"Ġpencil\":21613,\"ĠPyongyang\":21614,\"Ġcloset\":21615,\"ĠSheet\":21616,\"ĠEntry\":21617,\"oustic\":21618,\"Ġmyst\":21619,\"erate\":21620,\"ariat\":21621,\"Ġminerals\":21622,\"Ġmusician\":21623,\"ĠPul\":21624,\"ĠMaz\":21625,\"249\":21626,\"Ġpermissions\":21627,\"Ġiv\":21628,\"enary\":21629,\"ickers\":21630,\"ĠBing\":21631,\"hea\":21632,\"enable\":21633,\"Ġgriev\":21634,\"Ġasserted\":21635,\"ĠColonel\":21636,\"Ġaffidav\":21637,\"wo\":21638,\"Ġseated\":21639,\"ĠRide\":21640,\"Ġpaintings\":21641,\"ĠPix\":21642,\"Ġ137\":21643,\"ishi\":21644,\"umbai\":21645,\"gotten\":21646,\"ĠEarl\":21647,\"Ġinning\":21648,\"Ġcensus\":21649,\"Ġtravelled\":21650,\"ĠConsult\":21651,\"185\":21652,\"bind\":21653,\"Ġsimplicity\":21654,\"Ġoverlooked\":21655,\"ĠHelpful\":21656,\"Ġmonkey\":21657,\"Ġoverwhelmingly\":21658,\"Blood\":21659,\"ĠFlint\":21660,\"ĠJama\":21661,\"ĠPresent\":21662,\"ĠRage\":21663,\"ĠTA\":21664,\"ptive\":21665,\"Ġturnout\":21666,\"wald\":21667,\"ĠDolphins\":21668,\"ĠVPN\":21669,\"Ġonion\":21670,\"Ġcrafting\":21671,\"mma\":21672,\"ĠMercury\":21673,\"Ġarrange\":21674,\"Ġalerts\":21675,\"ĠOT\":21676,\"zbollah\":21677,\"Ġgases\":21678,\"ĠRichardson\":21679,\"sal\":21680,\"lar\":21681,\"Ġfrost\":21682,\"Ġlowering\":21683,\"Ġacclaim\":21684,\"Ġstartups\":21685,\"ĠGain\":21686,\"essment\":21687,\"Ġguardian\":21688,\"äºº\":21689,\"ĠPie\":21690,\"ĠLinks\":21691,\"Ġmerits\":21692,\"Ġawake\":21693,\"Ġparental\":21694,\"Ġexceeds\":21695,\"Ġidle\":21696,\"ĠPilot\":21697,\"ĠeBay\":21698,\"ĠAccept\":21699,\"ipeg\":21700,\"Cam\":21701,\"ĠKot\":21702,\"Ġtraders\":21703,\"olitics\":21704,\"unker\":21705,\"ĠPale\":21706,\"osi\":21707,\"anmar\":21708,\"Ġ1947\":21709,\"ĠFell\":21710,\"estial\":21711,\"itating\":21712,\"GF\":21713,\"ĠSr\":21714,\"ifted\":21715,\"Ġconnector\":21716,\"ĠBone\":21717,\"illes\":21718,\"260\":21719,\"hma\":21720,\"Ġoverlap\":21721,\"ĠGitHub\":21722,\"Ġcleaner\":21723,\"ĠBaptist\":21724,\"ĠWAS\":21725,\"Ġlungs\":21726,\"Ñģ\":21727,\"ĠBUT\":21728,\"Ġcite\":21729,\"Ġpitched\":21730,\"reatment\":21731,\"Ġtrophies\":21732,\"ĠNu\":21733,\"386\":21734,\"ĠPride\":21735,\"Ġattendees\":21736,\"[]\":21737,\"179\":21738,\"Ġspatial\":21739,\"Ġprizes\":21740,\"ĠReligion\":21741,\"Ġshowcase\":21742,\"ĠCategory\":21743,\"vidia\":21744,\"Target\":21745,\"Property\":21746,\"?,\":21747,\"Ġfusion\":21748,\"pie\":21749,\"ĠUCLA\":21750,\"Ġsoundtrack\":21751,\"Ġprincess\":21752,\"ĠCaval\":21753,\"should\":21754,\"Ġlimbs\":21755,\"Background\":21756,\"Ġlonely\":21757,\"Ġcores\":21758,\"ĠTail\":21759,\"sheet\":21760,\"Ġ132\":21761,\"Ra\":21762,\"ãĤ«\":21763,\"ĠBolt\":21764,\"Ġbooked\":21765,\"Ġadminister\":21766,\"Ġequals\":21767,\"wy\":21768,\"Ġobserving\":21769,\"ĠBaron\":21770,\"ĠAdobe\":21771,\"Ġvirgin\":21772,\"ĠSocialist\":21773,\"Move\":21774,\"ghazi\":21775,\"ĠLinda\":21776,\"212\":21777,\"Ġbrewing\":21778,\"Ġmerchants\":21779,\"burse\":21780,\"Ġdivor\":21781,\"Ġmetals\":21782,\"ĠNer\":21783,\"Ġsums\":21784,\"ĠEnemy\":21785,\"Ġenvision\":21786,\"Ġgranting\":21787,\"ĠHoney\":21788,\"ĠSkyrim\":21789,\"Ġsocio\":21790,\"graded\":21791,\"Ġselective\":21792,\"WASHINGTON\":21793,\"Ġ1948\":21794,\"ĠSirius\":21795,\"ĠGross\":21796,\"activity\":21797,\"ĠIvan\":21798,\"Ġfurious\":21799,\"BSD\":21800,\"ĠPrevious\":21801,\"Ġresponsive\":21802,\"Ġcharitable\":21803,\"Ġleaning\":21804,\"ĠPew\":21805,\"Ġviolates\":21806,\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":21807,\"ĠComing\":21808,\"wire\":21809,\"Ġpoet\":21810,\"Ġresolutions\":21811,\"command\":21812,\"ĠPortuguese\":21813,\"Ġnickname\":21814,\"Ġdeaf\":21815,\"February\":21816,\"Ġrecognise\":21817,\"Ġentirety\":21818,\"Ġseasonal\":21819,\"placed\":21820,\"ĠTelegraph\":21821,\"Ġmicrophone\":21822,\"ouring\":21823,\"Ġgrains\":21824,\"Ġgoverned\":21825,\"Ġpostp\":21826,\"ĠWaters\":21827,\"inement\":21828,\"Ġundocumented\":21829,\"ĠComcast\":21830,\"Ġfox\":21831,\"Ġassaults\":21832,\"reon\":21833,\"many\":21834,\"ĠJenkins\":21835,\"ĠAnyway\":21836,\"Ġassessments\":21837,\"Ġdowns\":21838,\"ĠMouse\":21839,\"Ġsuperb\":21840,\"kt\":21841,\"ĠDow\":21842,\"Ġtaxation\":21843,\"401\":21844,\"Ġsmiles\":21845,\"Ġundertaken\":21846,\"Ġexh\":21847,\"Ġenthusiastic\":21848,\"Ġtwent\":21849,\"Ġgovernmental\":21850,\"Ġautonomy\":21851,\"ĠTechnologies\":21852,\"ĠChain\":21853,\"Ġprevalent\":21854,\"fb\":21855,\"Ġnicotine\":21856,\"ogram\":21857,\"job\":21858,\"Ġawaiting\":21859,\"ĠMenu\":21860,\"Ġdeputies\":21861,\"kov\":21862,\"ishops\":21863,\"Button\":21864,\"ĠShanghai\":21865,\"Ġdiesel\":21866,\"ĠDuck\":21867,\"Ryan\":21868,\"ĠPCs\":21869,\"NF\":21870,\"jury\":21871,\"ente\":21872,\"Ġinaccurate\":21873,\"eddy\":21874,\"Whatever\":21875,\"Ġshowc\":21876,\"ĠNad\":21877,\"odus\":21878,\"etr\":21879,\"Ġplaintiffs\":21880,\"ĠWOR\":21881,\"ĠAssange\":21882,\"Ġprivat\":21883,\"Ġpremiums\":21884,\"Ġtam\":21885,\"URL\":21886,\"Ġelites\":21887,\"ĠRanger\":21888,\"ottenham\":21889,\"ĠHoff\":21890,\"ĠAthens\":21891,\"Ġdefinite\":21892,\"Ġsighed\":21893,\"Ġevenly\":21894,\"211\":21895,\"ĠAmber\":21896,\"akia\":21897,\"Ġmailing\":21898,\"Ġcrashing\":21899,\"ĠConfederate\":21900,\"rugged\":21901,\"Wal\":21902,\"ĠDepths\":21903,\"Ġjuvenile\":21904,\"Ġreactor\":21905,\"Introduction\":21906,\"ĠDeluxe\":21907,\"1995\":21908,\"ĠSanchez\":21909,\"ĠMead\":21910,\"ivable\":21911,\":-\":21912,\"ĠPlanning\":21913,\"ĠTrap\":21914,\"quin\":21915,\"ĠProtect\":21916,\"vered\":21917,\"Information\":21918,\"Ġkidney\":21919,\"innamon\":21920,\"las\":21921,\"Ġpolicing\":21922,\"Ġtolerate\":21923,\"ĠQi\":21924,\"Ġbiased\":21925,\"Fort\":21926,\"ĠKi\":21927,\"save\":21928,\"Ġprivileged\":21929,\"Ġbeasts\":21930,\"ĠGlas\":21931,\"ĠCinem\":21932,\"Ġcomeback\":21933,\"Sunday\":21934,\"Ġextinction\":21935,\"hops\":21936,\"Ġtransmit\":21937,\"Ġdoubles\":21938,\"ĠFlat\":21939,\"167\":21940,\"Ġdisputed\":21941,\"Ġinjustice\":21942,\"foo\":21943,\"Vict\":21944,\"roleum\":21945,\"ĠJulie\":21946,\"Context\":21947,\"ĠRarity\":21948,\"issue\":21949,\"Component\":21950,\"Ġcounseling\":21951,\"anne\":21952,\"dark\":21953,\"Ġobjections\":21954,\"uilt\":21955,\"Ġgast\":21956,\"Ġplac\":21957,\"Ġunused\":21958,\"ãĥĩ\":21959,\"ĠTrial\":21960,\"ĠJas\":21961,\"hedral\":21962,\"obb\":21963,\"Ġtemporal\":21964,\"ĠPRO\":21965,\"ĠNW\":21966,\"ĠAnniversary\":21967,\"Large\":21968,\"Ġtherm\":21969,\"Ġdavid\":21970,\"Ġsystemic\":21971,\"ĠShir\":21972,\"mut\":21973,\"ĠNept\":21974,\"address\":21975,\"Ġscanning\":21976,\"Ġunderstandable\":21977,\"Ġcanvas\":21978,\"Cat\":21979,\"ĠZoo\":21980,\"Ġangels\":21981,\"LO\":21982,\"ĠStatement\":21983,\"ĠSig\":21984,\"ovable\":21985,\"ĠAway\":21986,\"sharing\":21987,\"ocrats\":21988,\"stated\":21989,\"Ġweighing\":21990,\"Nor\":21991,\"wild\":21992,\"Bey\":21993,\"Ġastonishing\":21994,\"ĠReynolds\":21995,\"Ġopener\":21996,\"Ġtrainer\":21997,\"Ġsurgical\":21998,\"pn\":21999,\"Ġadjusting\":22000,\"wheel\":22001,\"Ġfrown\":22002,\"ervative\":22003,\"Ġsuspend\":22004,\"Within\":22005,\"tein\":22006,\"Ġobstacle\":22007,\"Ġliberties\":22008,\"ymes\":22009,\"Ġuranium\":22010,\"ansom\":22011,\"anol\":22012,\"uba\":22013,\"ĠLoss\":22014,\"Ġarous\":22015,\"ĠHenderson\":22016,\"Wow\":22017,\"spl\":22018,\"cur\":22019,\"ĠÂŃ\":22020,\"Ġtheirs\":22021,\"Damage\":22022,\"Ġdownloading\":22023,\"Ġdiscern\":22024,\"ĠSto\":22025,\"ĠFla\":22026,\"Ġhath\":22027,\"ĠAj\":22028,\"Ġunpleasant\":22029,\"European\":22030,\"expensive\":22031,\"Ġscreenshot\":22032,\"ĠUV\":22033,\"Ġallied\":22034,\"ĠPersian\":22035,\"Ġmonopoly\":22036,\"Ġatom\":22037,\"ĠRedskins\":22038,\"\\\"><\":22039,\"Ġcancell\":22040,\"Ġcinema\":22041,\"131\":22042,\"fair\":22043,\"ĠAlfred\":22044,\"Ġduck\":22045,\"args\":22046,\"223\":22047,\"ĠISI\":22048,\"Ġsignaling\":22049,\"inar\":22050,\"Ġlaughs\":22051,\"Ġforwards\":22052,\"Ġreckless\":22053,\"Ġlisteners\":22054,\"ativity\":22055,\"Ġvastly\":22056,\"nant\":22057,\"Less\":22058,\"ĠHunting\":22059,\"ĠScientific\":22060,\"ITED\":22061,\"Ġknight\":22062,\"ĠHTC\":22063,\"usa\":22064,\"tmp\":22065,\"Ġrude\":22066,\"ĠLegendary\":22067,\"Ġarises\":22068,\"Bad\":22069,\"ĠClaim\":22070,\"peg\":22071,\"Ġrealities\":22072,\"Think\":22073,\"ĠÂ°\":22074,\"Ġrode\":22075,\"Ġstrive\":22076,\"Ġanecd\":22077,\"Ġshorts\":22078,\"Ġhypothes\":22079,\"Ġcoordinated\":22080,\"ĠGandhi\":22081,\"ĠFPS\":22082,\"RED\":22083,\"Ġsusceptible\":22084,\"Ġshrink\":22085,\"ĠChart\":22086,\"Help\":22087,\"Ġion\":22088,\"deep\":22089,\"ribes\":22090,\"ĠKai\":22091,\"ĠCustomer\":22092,\"Summary\":22093,\"Ġcough\":22094,\"wife\":22095,\"Ġlend\":22096,\"Ġpositioning\":22097,\"Ġlottery\":22098,\"ĠCanyon\":22099,\"Ġfade\":22100,\"Ġbronze\":22101,\"ĠKenny\":22102,\"Ġboasts\":22103,\"ĠEnhanced\":22104,\"record\":22105,\"Ġemergence\":22106,\"Ġakin\":22107,\"ĠBert\":22108,\"itous\":22109,\"âĸĳ\":22110,\"Ġstip\":22111,\"Ġexchanged\":22112,\"omore\":22113,\"alsh\":22114,\"Ġreservoir\":22115,\"Ġstandpoint\":22116,\"WM\":22117,\"Ġinitiate\":22118,\"Ġdecay\":22119,\"Ġbrewery\":22120,\"Ġterribly\":22121,\"Ġmortal\":22122,\"levard\":22123,\"Ġrevis\":22124,\"NI\":22125,\"elo\":22126,\"Ġconfess\":22127,\"ĠMSNBC\":22128,\"Ġsubmissions\":22129,\"Controller\":22130,\"Ġ202\":22131,\"ĠRuth\":22132,\"});\":22133,\"ĠAzure\":22134,\"Ġ.\\\"\":22135,\"206\":22136,\"ĠMarketing\":22137,\"Ġlaund\":22138,\"iencies\":22139,\"Ġrenowned\":22140,\"ĠTrou\":22141,\"ĠNGO\":22142,\"blems\":22143,\"Ġterrified\":22144,\"Ġwarns\":22145,\"Ġpert\":22146,\"Ġunsure\":22147,\"480\":22148,\"alez\":22149,\"ultz\":22150,\"ĠOutside\":22151,\"Ġstyl\":22152,\"ĠUnderground\":22153,\"Ġpanc\":22154,\"Ġdictionary\":22155,\"Ġfoe\":22156,\"riminal\":22157,\"ĠNorwegian\":22158,\"Ġjailed\":22159,\"Ġmaternal\":22160,\"Ã©e\":22161,\"ĠLucy\":22162,\"cop\":22163,\"Cho\":22164,\"Ġunsigned\":22165,\"ĠZelda\":22166,\"ĠInsider\":22167,\"ĠContinued\":22168,\"Ġ133\":22169,\"ĠNaruto\":22170,\"ĠMajority\":22171,\"169\":22172,\"ĠWo\":22173,\"ãĤĵ\":22174,\"Ġpastor\":22175,\"Ġinformal\":22176,\"Ð½\":22177,\"anthrop\":22178,\"join\":22179,\"ãģĹ\":22180,\"itational\":22181,\"NP\":22182,\"ĠWriting\":22183,\"fn\":22184,\"ĠBever\":22185,\"195\":22186,\"Ġyelling\":22187,\"Ġdrastically\":22188,\"Ġeject\":22189,\"Ġneut\":22190,\"Ġthrive\":22191,\"ĠFrequ\":22192,\"oux\":22193,\"Ġpossesses\":22194,\"ĠSenators\":22195,\"ĠDES\":22196,\"ĠShakespeare\":22197,\"ĠFranco\":22198,\"ĠLB\":22199,\"uchi\":22200,\"Ġincarn\":22201,\"Ġfounders\":22202,\"Function\":22203,\"Ġbrightness\":22204,\"ĠBT\":22205,\"Ġwhale\":22206,\"ĠTheater\":22207,\"mass\":22208,\"ĠDoll\":22209,\"Something\":22210,\"Ġechoed\":22211,\"ĠHex\":22212,\"crit\":22213,\"afia\":22214,\"Ġgoddess\":22215,\"Ġeleven\":22216,\"ĠPreview\":22217,\"ĠAurora\":22218,\"Ġ401\":22219,\"ulsive\":22220,\"ĠLogan\":22221,\"inburgh\":22222,\"ĠCenters\":22223,\"ĠONLY\":22224,\"ĠAid\":22225,\"Ġparadox\":22226,\"Ġhurd\":22227,\"ĠLC\":22228,\"Due\":22229,\"court\":22230,\"Ġoffended\":22231,\"Ġevaluating\":22232,\"ĠMatthews\":22233,\"Ġtomb\":22234,\"Ġpayroll\":22235,\"Ġextraction\":22236,\"ĠHands\":22237,\"ifi\":22238,\"Ġsupernatural\":22239,\"ĠCOMM\":22240,\"]=\":22241,\"dogs\":22242,\"Ġ512\":22243,\"ĠMeeting\":22244,\"Richard\":22245,\"ĠMaximum\":22246,\"Ġideals\":22247,\"Things\":22248,\"mand\":22249,\"ĠRegardless\":22250,\"Ġhumili\":22251,\"buffer\":22252,\"Little\":22253,\"ĠDani\":22254,\"ĠNak\":22255,\"Ġliberation\":22256,\"ĠAbe\":22257,\"ĠOL\":22258,\"Ġstuffed\":22259,\"aca\":22260,\"inda\":22261,\"raphic\":22262,\"Ġmosqu\":22263,\"Ġcampaigning\":22264,\"Ġoccupy\":22265,\"Squ\":22266,\"rina\":22267,\"ĠWel\":22268,\"ĠVS\":22269,\"Ġphysic\":22270,\"Ġpuls\":22271,\"rint\":22272,\"oaded\":22273,\"ETF\":22274,\"ĠArchives\":22275,\"Ġvenues\":22276,\"hner\":22277,\"ĠTurbo\":22278,\"Ġlust\":22279,\"Ġappealed\":22280,\"quez\":22281,\"ilib\":22282,\"ĠTimothy\":22283,\"Ġomn\":22284,\"dro\":22285,\"Ġobsession\":22286,\"ĠSavage\":22287,\"1996\":22288,\"Global\":22289,\"Jes\":22290,\"214\":22291,\"Ġsliding\":22292,\"Ġdisappro\":22293,\"ĠMagical\":22294,\"Ġvoluntarily\":22295,\"gb\":22296,\"aney\":22297,\"Ġprophet\":22298,\"ĠRein\":22299,\"ĠJulia\":22300,\"ĠWorth\":22301,\"aurus\":22302,\"Ġbounds\":22303,\"ieu\":22304,\")))\":22305,\"Ġcrore\":22306,\"ĠCitizen\":22307,\"Sky\":22308,\"Ġcolumnist\":22309,\"Ġseekers\":22310,\"ondo\":22311,\"ISA\":22312,\"ĠLength\":22313,\"Ġnostalg\":22314,\"Ġnewcom\":22315,\"Ġdetrim\":22316,\"entric\":22317,\"375\":22318,\"ĠGE\":22319,\"Ġautop\":22320,\"Ġacademics\":22321,\"AppData\":22322,\"ĠShen\":22323,\"Ġidiot\":22324,\"ĠTransit\":22325,\"Ġteaspoon\":22326,\"Wil\":22327,\"KO\":22328,\"ĠComedy\":22329,\">,\":22330,\"Ġpopulated\":22331,\"WD\":22332,\"Ġpigs\":22333,\"ĠOculus\":22334,\"Ġsympathetic\":22335,\"Ġmarathon\":22336,\"198\":22337,\"Ġseizure\":22338,\"sided\":22339,\"Ġdop\":22340,\"irtual\":22341,\"Land\":22342,\"ĠFloor\":22343,\"osaurs\":22344,\"...]\":22345,\"Ġlos\":22346,\"Ġsubsidiary\":22347,\"EY\":22348,\"ĠParts\":22349,\"ĠStef\":22350,\"ĠJudiciary\":22351,\"Ġ134\":22352,\"Ġmirrors\":22353,\"Ġket\":22354,\"times\":22355,\"Ġneurolog\":22356,\"Ġcav\":22357,\"ĠGuest\":22358,\"Ġtumor\":22359,\"scill\":22360,\"ĠLloyd\":22361,\"Est\":22362,\"Ġclearer\":22363,\"Ġstereotypes\":22364,\"Ġdur\":22365,\"nothing\":22366,\"Reddit\":22367,\"Ġnegotiated\":22368,\"------------------------\":22369,\"235\":22370,\"Ġflown\":22371,\"ĠSeoul\":22372,\"ĠResident\":22373,\"ĠSCH\":22374,\"Ġdisappearance\":22375,\"ĠVince\":22376,\"grown\":22377,\"Ġgrabs\":22378,\"ril\":22379,\"ĠInfinite\":22380,\"ĠTwenty\":22381,\"Ġpedestrian\":22382,\"Ġjersey\":22383,\"ĠFur\":22384,\"ĠInfinity\":22385,\"ĠElliott\":22386,\"Ġmentor\":22387,\"Ġmorally\":22388,\"Ġobey\":22389,\"secure\":22390,\"iffe\":22391,\"Ġantibiotics\":22392,\"angled\":22393,\"ĠFreeman\":22394,\"ĠIntroduction\":22395,\"Jun\":22396,\"Ġmarsh\":22397,\"icans\":22398,\"ĠEVENTS\":22399,\"ochond\":22400,\"Wall\":22401,\"iculty\":22402,\"Ġmisdemeanor\":22403,\"Ġly\":22404,\"Thomas\":22405,\"ĠResolution\":22406,\"Ġanimations\":22407,\"ĠDry\":22408,\"Ġintercourse\":22409,\"ĠNewcastle\":22410,\"ĠHog\":22411,\"ĠEquipment\":22412,\"177\":22413,\"Ġterritorial\":22414,\"Ġarchives\":22415,\"203\":22416,\"Filter\":22417,\"ĠMunich\":22418,\"Ġcommanded\":22419,\"ĠWand\":22420,\"Ġpitches\":22421,\"ĠCroat\":22422,\"Ġratios\":22423,\"ĠMits\":22424,\"Ġaccumulated\":22425,\"ĠSpecifically\":22426,\"Ġgentleman\":22427,\"acerb\":22428,\"Ġpenn\":22429,\"Ġaka\":22430,\"ĠFuk\":22431,\"Ġintervene\":22432,\"ĠRefuge\":22433,\"ĠAlzheimer\":22434,\"Ġsuccession\":22435,\"ohan\":22436,\"does\":22437,\"Lord\":22438,\"Ġseparat\":22439,\"Ġcorrespondence\":22440,\"Ġshiny\":22441,\"Prior\":22442,\"Ġsulf\":22443,\"Ġmiserable\":22444,\"Ġdedication\":22445,\"().\":22446,\"Ġspecialists\":22447,\"Ġdefects\":22448,\"ĠCult\":22449,\"ĠXia\":22450,\"Ġjeopard\":22451,\"ĠOre\":22452,\"Ability\":22453,\"Ġlear\":22454,\"Ġambitions\":22455,\"ĠBMI\":22456,\"ĠArabs\":22457,\"Ġ1942\":22458,\"Ġpreservation\":22459,\"ificate\":22460,\"Ġashamed\":22461,\"loss\":22462,\"ĠRestaur\":22463,\"Ġresemble\":22464,\"Ġenrich\":22465,\"ĠKN\":22466,\"ĠClan\":22467,\"float\":22468,\"Ġplayable\":22469,\"ITT\":22470,\"Ġharmony\":22471,\"arrison\":22472,\"ĠWeinstein\":22473,\"were\":22474,\"Ġpoisoning\":22475,\"ĠComput\":22476,\"ĠWordPress\":22477,\"major\":22478,\"ĠValve\":22479,\"Fan\":22480,\"ĠThrow\":22481,\"ĠRomans\":22482,\"ĠDepression\":22483,\"ados\":22484,\"Ġtortured\":22485,\"Ġbalancing\":22486,\"bottom\":22487,\"Ġacquiring\":22488,\"ĠMonte\":22489,\"ardi\":22490,\"Ġaura\":22491,\"Ġ##\":22492,\"ĠStanding\":22493,\"ĠAtlas\":22494,\"CF\":22495,\"Ġintrins\":22496,\"ĠBenghazi\":22497,\"Ġcamping\":22498,\"Ġtapped\":22499,\"blade\":22500,\"strous\":22501,\"ĠRabb\":22502,\"ĠWritten\":22503,\"tip\":22504,\"ĠNeigh\":22505,\"sterdam\":22506,\"ĠAllow\":22507,\"ĠHealing\":22508,\"ĠRhod\":22509,\"num\":22510,\"Ġcaffeine\":22511,\"ĠPercent\":22512,\"Ġboo\":22513,\"Ġapples\":22514,\"305\":22515,\"Ġwelcoming\":22516,\"Ġapplaud\":22517,\"Ġausterity\":22518,\"Â±\":22519,\"ĠReality\":22520,\"efe\":22521,\"å®\":22522,\"Ġsucks\":22523,\"Ġtabs\":22524,\"ĠPayPal\":22525,\"Ġbackpack\":22526,\"Ġgifted\":22527,\"abulary\":22528,\"ĠScout\":22529,\"irteen\":22530,\"Ġchin\":22531,\"Ġomitted\":22532,\"Ġnegatively\":22533,\"Ġaccessing\":22534,\"ĠEarn\":22535,\"Ġambulance\":22536,\"Ġheadphones\":22537,\"Ġ205\":22538,\"ĠRefresh\":22539,\"president\":22540,\"ĠKitchen\":22541,\"ĠEntered\":22542,\"ĠSnyder\":22543,\"005\":22544,\"omical\":22545,\"Ġborrowed\":22546,\"ĠNem\":22547,\"Ġaviation\":22548,\"Ġstall\":22549,\"rimination\":22550,\"Ġuniforms\":22551,\"itime\":22552,\"ĠSimmons\":22553,\"energy\":22554,\"ablished\":22555,\"yy\":22556,\"qualified\":22557,\"Ġrallies\":22558,\"ĠStuart\":22559,\"flight\":22560,\"Ġgangs\":22561,\"rag\":22562,\"Ġvault\":22563,\"lux\":22564,\"ĠCompar\":22565,\"Ġdesignation\":22566,\"209\":22567,\"ĠJos\":22568,\"dollar\":22569,\"zero\":22570,\"Ġwells\":22571,\"303\":22572,\"Ġconstituents\":22573,\"Ġheck\":22574,\"Ġcows\":22575,\"Ġcommanders\":22576,\"Ġdifferential\":22577,\"ĠCatherine\":22578,\"299\":22579,\"Ġvalve\":22580,\"Ġbrace\":22581,\"Ġperspectives\":22582,\"cert\":22583,\"fact\":22584,\"icularly\":22585,\"ĠMcN\":22586,\"planes\":22587,\"Ġintric\":22588,\"Ġpeas\":22589,\"ovan\":22590,\"Ġtossed\":22591,\"retch\":22592,\"ĠLopez\":22593,\"Ġunfamiliar\":22594,\"death\":22595,\"ĠApart\":22596,\"ĠChang\":22597,\"Ġrelieved\":22598,\"rophe\":22599,\"Ġairports\":22600,\"Ġfreak\":22601,\"util\":22602,\"Mill\":22603,\"ĠChin\":22604,\"ĠOwen\":22605,\"male\":22606,\"ĠBroken\":22607,\"ĠWinds\":22608,\"rob\":22609,\"rising\":22610,\"Ġfirefighters\":22611,\"Ġauthoritarian\":22612,\"Ġ148\":22613,\"Bitcoin\":22614,\"external\":22615,\"Ġbrowsers\":22616,\"ichever\":22617,\"orian\":22618,\"Ġunb\":22619,\"Ġpoke\":22620,\"ĠZot\":22621,\"Mid\":22622,\"ĠPopular\":22623,\"Ġcovert\":22624,\"Ġcontributes\":22625,\"Ġ650\":22626,\"Ġcontention\":22627,\"Gate\":22628,\"Ġconsoles\":22629,\"Ġchromos\":22630,\"ĠIX\":22631,\"Ġvisually\":22632,\"ĠEisen\":22633,\"Ġjewelry\":22634,\"Ġdelegation\":22635,\"Ġaccelerate\":22636,\"ĠRiley\":22637,\"Ġslope\":22638,\"Ġindoor\":22639,\"itially\":22640,\"Ġhugely\":22641,\"Ġtunnels\":22642,\"Ġfined\":22643,\"Ġdirective\":22644,\"Ġforehead\":22645,\"ustomed\":22646,\"Ġskate\":22647,\"Music\":22648,\"gas\":22649,\"Ġrecognizing\":22650,\"ambo\":22651,\"Ġoverweight\":22652,\"ĠGrade\":22653,\"ÙĬ\":22654,\"Ġsounding\":22655,\"Ġlocking\":22656,\"ĠREM\":22657,\"Store\":22658,\"Ġexcav\":22659,\"ĠLikewise\":22660,\"ĠLights\":22661,\"Ġelbow\":22662,\"ĠSupply\":22663,\"wic\":22664,\"Ġhandsome\":22665,\"1994\":22666,\"Coll\":22667,\"Ġadequately\":22668,\"ĠAssociate\":22669,\"Ġstrips\":22670,\"Ġcrackdown\":22671,\"Ġmarvel\":22672,\"ĠKun\":22673,\"Ġpassages\":22674,\"@@@@\":22675,\"ĠTall\":22676,\"Ġthoughtful\":22677,\"namese\":22678,\"Ġprostitution\":22679,\"business\":22680,\"Ġballistic\":22681,\"personal\":22682,\"cig\":22683,\"izational\":22684,\"Round\":22685,\"ĠÂłĠÂłĠÂłĠÂł\":22686,\"ĠColeman\":22687,\"Ġadmitting\":22688,\"ĠPlug\":22689,\"Ġbitcoins\":22690,\"ĠSuz\":22691,\"Ġfairness\":22692,\"Ġsupplier\":22693,\"Ġcatastrophic\":22694,\"ĠHelen\":22695,\"oqu\":22696,\"Marc\":22697,\"ĠArticles\":22698,\"gie\":22699,\"Ġendangered\":22700,\"Ġdestiny\":22701,\"ĠVolt\":22702,\"olia\":22703,\"axis\":22704,\"Ġcheat\":22705,\"Ġunified\":22706,\"ICO\":22707,\"quote\":22708,\"302\":22709,\"ĠSed\":22710,\"Ġsuppression\":22711,\"Ġanalyzing\":22712,\"Ġsquat\":22713,\"Ġfiguring\":22714,\"Ġcoordinates\":22715,\"Ġchunks\":22716,\"Ġ1946\":22717,\"Ġsubp\":22718,\"Ġwiki\":22719,\"ĠForbes\":22720,\"ĠJupiter\":22721,\"ĠErik\":22722,\"imer\":22723,\"ĠCommercial\":22724,\"\\\\)\":22725,\"Ġlegitimacy\":22726,\"Ġdental\":22727,\"ĠMean\":22728,\"Ġdeficits\":22729,\"550\":22730,\"Originally\":22731,\"ĠHorror\":22732,\"Ġcontamination\":22733,\"llah\":22734,\"Ġconfisc\":22735,\"ĠClare\":22736,\"TB\":22737,\"ĠFailed\":22738,\"aned\":22739,\"Ġruler\":22740,\"ĠController\":22741,\"Ġfeminists\":22742,\"Fix\":22743,\"gay\":22744,\"207\":22745,\"Ġrabbit\":22746,\"Third\":22747,\"owntown\":22748,\"Ġglue\":22749,\"Ġvolatile\":22750,\"Ġshining\":22751,\"Ġfoll\":22752,\"Ġimpaired\":22753,\"Ġsupers\":22754,\"æĪ\":22755,\"Ġclutch\":22756,\"ļéĨĴ\":22757,\"Ġprolet\":22758,\"Ġ(!\":22759,\"Ġyelled\":22760,\"ĠKiev\":22761,\"ĠErn\":22762,\"ĠShock\":22763,\"KB\":22764,\"Ġsituated\":22765,\"query\":22766,\"ĠNas\":22767,\"Ġannex\":22768,\"character\":22769,\"ĠHoliday\":22770,\"Ġautomation\":22771,\"ĠJill\":22772,\"ĠRemastered\":22773,\"Ġlinem\":22774,\"Ġwilderness\":22775,\"ĠHorizon\":22776,\"ĠGuinea\":22777,\"AZ\":22778,\"Ġmainland\":22779,\"Ġsecrecy\":22780,\"LEASE\":22781,\"Ġpunk\":22782,\"ĠProvince\":22783,\"(),\":22784,\"Speed\":22785,\"Ġhanding\":22786,\"ĠSebast\":22787,\"Sir\":22788,\"rase\":22789,\"Ġjournals\":22790,\"Ġcongest\":22791,\"ĠTut\":22792,\"irrel\":22793,\"Ġschizophrenia\":22794,\"Ġmisogyn\":22795,\"healthy\":22796,\"Iron\":22797,\"Ġreacted\":22798,\"-$\":22799,\"252\":22800,\"Ġplural\":22801,\"Ġplum\":22802,\"Ġbargain\":22803,\"Ġgrounded\":22804,\"finder\":22805,\"Ġdisse\":22806,\"ĠLaz\":22807,\"OOD\":22808,\"Ġatroc\":22809,\"Factory\":22810,\"Ġminions\":22811,\"Ġori\":22812,\"ĠBrave\":22813,\"ĠPRE\":22814,\"ĠMyanmar\":22815,\"ĠHod\":22816,\"Ġexpedition\":22817,\"Ġexplode\":22818,\"ĠCoord\":22819,\"Ġextr\":22820,\"ĠBrief\":22821,\"ĠADHD\":22822,\"Ġhardcore\":22823,\"feeding\":22824,\"Ġdile\":22825,\"ĠFruit\":22826,\"Ġvaccination\":22827,\"ĠMao\":22828,\"osphere\":22829,\"Ġcontests\":22830,\"-|\":22831,\"Ġfren\":22832,\"isphere\":22833,\"Rom\":22834,\"ĠSharp\":22835,\"ĠTrend\":22836,\"Ġdisconnect\":22837,\"âĢ¢âĢ¢\":22838,\"Ġpersecution\":22839,\"Earth\":22840,\"Ġhealthier\":22841,\"384\":22842,\"Ġcob\":22843,\"ĠTrinity\":22844,\"OWS\":22845,\"ANN\":22846,\"Ġspecialty\":22847,\"Ġgru\":22848,\"Ġcooperative\":22849,\"why\":22850,\"Starting\":22851,\"ĠIssues\":22852,\"stre\":22853,\"ensor\":22854,\"Ġ185\":22855,\"Adv\":22856,\"!?\":22857,\"ĠRevel\":22858,\"emia\":22859,\"ĠHulk\":22860,\"Ġcelebrations\":22861,\"ĠSou\":22862,\"raud\":22863,\"ĠKlein\":22864,\"Ġunreal\":22865,\"context\":22866,\"Ġpartnerships\":22867,\"Ġadopting\":22868,\"tical\":22869,\"Ġsplash\":22870,\"ĠHezbollah\":22871,\"category\":22872,\"cyclop\":22873,\"xton\":22874,\"ĠDot\":22875,\"urdy\":22876,\"tz\":22877,\"Ġenvelope\":22878,\"ĠNL\":22879,\"âķ\":22880,\"Ġwherein\":22881,\"Spec\":22882,\"184\":22883,\"Ġtelev\":22884,\"aliation\":22885,\"Ġmyths\":22886,\"å°\":22887,\"Ġrigorous\":22888,\"Ġcommunicating\":22889,\"Ġobserver\":22890,\"Ġrehe\":22891,\"ĠWash\":22892,\"Ġapologized\":22893,\"ĠTin\":22894,\"Ġexpenditures\":22895,\"workers\":22896,\"document\":22897,\"Ġhesitate\":22898,\"ĠLenin\":22899,\"Ġunpredictable\":22900,\"Ġrenewal\":22901,\"cler\":22902,\"okia\":22903,\"ĠCONT\":22904,\"Ġpostseason\":22905,\"Tokens\":22906,\"Ġexacerb\":22907,\"Ġbetting\":22908,\"Ġ147\":22909,\"Ġelevation\":22910,\"Wood\":22911,\"ĠSolomon\":22912,\"194\":22913,\"004\":22914,\"output\":22915,\"Ġredund\":22916,\"ĠMumbai\":22917,\"ĠpH\":22918,\"Ġreproduce\":22919,\"ĠDuration\":22920,\"MAX\":22921,\"Ġbog\":22922,\"CBS\":22923,\"ĠBalance\":22924,\"ĠSgt\":22925,\"ĠRecent\":22926,\"Ġcd\":22927,\"Ġpopped\":22928,\"Ġincompet\":22929,\"prop\":22930,\"ayan\":22931,\"guy\":22932,\"Pacific\":22933,\"Ġtyr\":22934,\"Ġ{{\":22935,\"ĠMystic\":22936,\"ĠDana\":22937,\"Ġmasturb\":22938,\"Ġgeometry\":22939,\"Ã¢\":22940,\"ĠCorrect\":22941,\"Ġtrajectory\":22942,\"Ġdistracted\":22943,\"Ġfoo\":22944,\"ĠWelsh\":22945,\"Luc\":22946,\"mith\":22947,\"Ġrugby\":22948,\"Ġrespiratory\":22949,\"Ġtriangle\":22950,\"Ġ215\":22951,\"Ġundergraduate\":22952,\"ĠSuperior\":22953,\"changing\":22954,\"_-\":22955,\"Ġrightly\":22956,\"Ġreferee\":22957,\"Ġlucrative\":22958,\"Ġunauthorized\":22959,\"Ġresembles\":22960,\"ĠGNU\":22961,\"ĠDerby\":22962,\"Ġpathways\":22963,\"ĠLed\":22964,\"Ġendurance\":22965,\"Ġstint\":22966,\"Ġcollector\":22967,\"Fast\":22968,\"Ġdots\":22969,\"Ġnationals\":22970,\"ĠSecurities\":22971,\"Ġwhip\":22972,\"Param\":22973,\"Ġlearns\":22974,\"Magic\":22975,\"Ġdetailing\":22976,\"moon\":22977,\"Ġbroadcasting\":22978,\"Ġbaked\":22979,\"265\":22980,\"holm\":22981,\"ĠSah\":22982,\"ĠHussein\":22983,\"ĠCourtesy\":22984,\"174\":22985,\"Ġ146\":22986,\"Ġgeographic\":22987,\"peace\":22988,\"Ġjudging\":22989,\"ĠStern\":22990,\"Bur\":22991,\"Ġstoryline\":22992,\"Gun\":22993,\"ĠStick\":22994,\"245\":22995,\"307\":22996,\"ãĤ´ãĥ³\":22997,\"ĠAdministrator\":22998,\"Ġburnt\":22999,\"Ġpave\":23000,\"choes\":23001,\"Exec\":23002,\"Ġcampuses\":23003,\"Result\":23004,\"Ġmutations\":23005,\"ĠCharter\":23006,\"Ġcaptures\":23007,\"Ġcompares\":23008,\"Ġbadge\":23009,\"Scient\":23010,\"Ġerad\":23011,\"iery\":23012,\"oi\":23013,\"ettes\":23014,\"ĠEstate\":23015,\"Ġstrap\":23016,\"Ġproudly\":23017,\"Ġfried\":23018,\"Ġwithdrawn\":23019,\"ĠVoy\":23020,\"phony\":23021,\"Items\":23022,\"ĠPierce\":23023,\"bard\":23024,\"Ġannotation\":23025,\"anton\":23026,\"illon\":23027,\"Impro\":23028,\"...)\":23029,\"Ġhappier\":23030,\"------\":23031,\"adjust\":23032,\"Ġstaffers\":23033,\"Ġactivism\":23034,\"Ġperf\":23035,\"Ġalright\":23036,\"Need\":23037,\"Ġcommence\":23038,\"Ġopioid\":23039,\"ĠAmanda\":23040,\"Es\":23041,\"ĠPars\":23042,\"ĠKaw\":23043,\"Works\":23044,\"248\":23045,\"Ġindo\":23046,\"tc\":23047,\"endant\":23048,\"ĠMoto\":23049,\"Ġlegalization\":23050,\"OTE\":23051,\"Ġtasked\":23052,\"Ġtsp\":23053,\"ĠACTIONS\":23054,\"166\":23055,\"Ġrefreshing\":23056,\"ĠNR\":23057,\"ĠPerez\":23058,\"Ġinfringement\":23059,\"SY\":23060,\"Listen\":23061,\"inning\":23062,\"ku\":23063,\"Ġrotate\":23064,\"program\":23065,\"arah\":23066,\"Design\":23067,\"Ġ(Â£\":23068,\"Ġstoring\":23069,\"Ġwarrants\":23070,\"Ġjudgement\":23071,\"ĠBrist\":23072,\"usually\":23073,\"photo\":23074,\"ĠRan\":23075,\"ĠPine\":23076,\"Ġoutrageous\":23077,\"ĠValentine\":23078,\"luence\":23079,\"ĠEverybody\":23080,\"Altern\":23081,\"Ġrelevance\":23082,\"Ġterminated\":23083,\"Ġdessert\":23084,\"Ġfulfilled\":23085,\"Ġprosecuted\":23086,\"ĠWords\":23087,\"Ġmigrant\":23088,\"Ġcultivation\":23089,\"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ\":23090,\"idelity\":23091,\"ĠVern\":23092,\"ĠLogin\":23093,\"Ġmetaphor\":23094,\"ĠTip\":23095,\"Ġrecruits\":23096,\"ĠPig\":23097,\"ribing\":23098,\"Ġenthusiasts\":23099,\"exper\":23100,\"Ġfrightening\":23101,\"ĠHair\":23102,\"anson\":23103,\"strate\":23104,\"Ġhi\":23105,\"Height\":23106,\"Ġowning\":23107,\"none\":23108,\"Ġdislike\":23109,\"Ġknives\":23110,\"pherd\":23111,\"Ġloudly\":23112,\"ĠAPIs\":23113,\"Display\":23114,\"ĠLac\":23115,\"ĠUSS\":23116,\"abl\":23117,\"verages\":23118,\"Jew\":23119,\"Ġ172\":23120,\"ĠHistorical\":23121,\"atoon\":23122,\"ĠPhysics\":23123,\"intern\":23124,\"Ġwarmth\":23125,\"Ġtopp\":23126,\"DM\":23127,\"Ġgunman\":23128,\"Ġemperor\":23129,\"odi\":23130,\"ãĥ£\":23131,\"inatory\":23132,\"ĠRib\":23133,\"Ġ131\":23134,\"ĠSaturn\":23135,\"ĠShining\":23136,\"Ġwaking\":23137,\"Quotes\":23138,\"Ġcomedian\":23139,\"enberg\":23140,\"Â½\":23141,\"Ġbelievers\":23142,\"Ġpaperwork\":23143,\"custom\":23144,\"Ġlev\":23145,\"Ġlament\":23146,\"Ġpouring\":23147,\"222\":23148,\"political\":23149,\"ĠSupplement\":23150,\"maid\":23151,\"Ġcruelty\":23152,\"Ġtread\":23153,\"ysics\":23154,\"Aw\":23155,\"rites\":23156,\"Ġmodifier\":23157,\"ĠPosition\":23158,\"Adam\":23159,\"lb\":23160,\"ubs\":23161,\"Ġimperfect\":23162,\"Ġclusters\":23163,\"ĠEngineer\":23164,\"ĠCherry\":23165,\"Ġinauguration\":23166,\"ĠSau\":23167,\"Ġembodiment\":23168,\"ĠUncle\":23169,\"Ġoverr\":23170,\"Ġexplosions\":23171,\"cule\":23172,\"ĠPrinceton\":23173,\"ĠAndrea\":23174,\"Ġincorrectly\":23175,\"Ġearnest\":23176,\"Ġpilgr\":23177,\"ĠSprint\":23178,\"Ġsleeve\":23179,\"Ġhears\":23180,\"ĠAmazing\":23181,\"Ġbrowsing\":23182,\"agin\":23183,\"Ġhomeland\":23184,\"Ġhaw\":23185,\"Ġdiving\":23186,\"istered\":23187,\"178\":23188,\"Ġbargaining\":23189,\"ĠArcade\":23190,\"Ġdelegate\":23191,\"terson\":23192,\"................................................................\":23193,\"ĠJacksonville\":23194,\"275\":23195,\"Ġstagn\":23196,\"Ġadam\":23197,\"ĠSherman\":23198,\"CB\":23199,\"Ġsuburb\":23200,\"ĠFoods\":23201,\"Ġconverting\":23202,\"ĠArist\":23203,\"Ġchambers\":23204,\"love\":23205,\"Ġamino\":23206,\"ĠGan\":23207,\"Ġmadness\":23208,\"mc\":23209,\"ĠUSE\":23210,\"defined\":23211,\"Ġultr\":23212,\"indust\":23213,\"Ġwolves\":23214,\"lance\":23215,\"Additionally\":23216,\"Ġcracks\":23217,\"asia\":23218,\"ĠReason\":23219,\"ĠPump\":23220,\"Ġaccidental\":23221,\"ĠLaser\":23222,\"ĠRid\":23223,\"Ġinitialized\":23224,\"elli\":23225,\"Ġunnamed\":23226,\"Ġnoun\":23227,\"ĠPassed\":23228,\"Ġhostage\":23229,\"ĠEthiop\":23230,\"shirts\":23231,\"Ġunrel\":23232,\"ĠEmbassy\":23233,\"Ġ1941\":23234,\"Ġatoms\":23235,\"Ġpurported\":23236,\"164\":23237,\"ĠFi\":23238,\"Ġgallons\":23239,\"ĠMonica\":23240,\"Ġpg\":23241,\"enment\":23242,\"Ġsorted\":23243,\"ĠGospel\":23244,\"Ġheights\":23245,\"Ġtraced\":23246,\"Ġundergoing\":23247,\"Shell\":23248,\"Ġsacks\":23249,\"Ġproportions\":23250,\"Ġhalluc\":23251,\"Font\":23252,\"acet\":23253,\"Ġwarmer\":23254,\"ĠINTER\":23255,\"Ġgrabbing\":23256,\"Plug\":23257,\"Ġrealization\":23258,\"ĠBurke\":23259,\"Ġenchant\":23260,\"ATER\":23261,\"ĠSeed\":23262,\"Ġabundant\":23263,\"FM\":23264,\"Ġcivic\":23265,\"Vs\":23266,\"isi\":23267,\"Ġvow\":23268,\"Ġreper\":23269,\"ĠPartnership\":23270,\"Ġpenetration\":23271,\"Ġaxe\":23272,\"Ġshattered\":23273,\"ĠZombies\":23274,\"Ġvinyl\":23275,\"ĠAlert\":23276,\"eon\":23277,\"Ġobliged\":23278,\"ĠIllust\":23279,\"ĠPlaza\":23280,\"ĠFrontier\":23281,\"Ġdavidjl\":23282,\"ĠSerial\":23283,\"ĠHav\":23284,\"ĠNutrition\":23285,\"Bi\":23286,\"ĠâĸĪ\":23287,\"ĠJays\":23288,\"linux\":23289,\"Ġhurry\":23290,\"Ġvoy\":23291,\"Ġhopeless\":23292,\"ĠStealth\":23293,\"Ġãģ\":23294,\"essors\":23295,\"ttle\":23296,\"borg\":23297,\"ĠSafari\":23298,\"fell\":23299,\"Ġwary\":23300,\"due\":23301,\"ĠAbove\":23302,\"Ha\":23303,\"ELL\":23304,\"Ġnotor\":23305,\"ĠWon\":23306,\"Too\":23307,\"Ġoccupations\":23308,\"Ġpossessions\":23309,\"Ġinviting\":23310,\"Ġpredators\":23311,\"Ġaccelerated\":23312,\"Ġ157\":23313,\"uterte\":23314,\"ĠCube\":23315,\"east\":23316,\"account\":23317,\"Give\":23318,\"Ġtransplant\":23319,\"redients\":23320,\"idable\":23321,\"Ġscreenshots\":23322,\"ĠGund\":23323,\"ĠFS\":23324,\"Ġtravelers\":23325,\"Ġsensory\":23326,\"ĠFiat\":23327,\"ĠRockets\":23328,\"İĭ\":23329,\"_{\":23330,\"Friend\":23331,\"Ġcharming\":23332,\"ALS\":23333,\"Ġenjoyment\":23334,\"mph\":23335,\"Ġ5000\":23336,\"ĠREG\":23337,\"ÙĨ\":23338,\"bia\":23339,\"Ġcompilation\":23340,\"rost\":23341,\"ĠVP\":23342,\"ĠSchne\":23343,\"2019\":23344,\"Ġcopying\":23345,\"MORE\":23346,\"ĠFlore\":23347,\"falls\":23348,\"215\":23349,\"total\":23350,\"Ġdisciples\":23351,\"double\":23352,\"Ġexceeding\":23353,\"Ġsmashed\":23354,\"Ġconceptual\":23355,\"ĠRomania\":23356,\"ĠBrent\":23357,\"ĠICE\":23358,\"ĠTou\":23359,\"Ġgrap\":23360,\"Ġnails\":23361,\"189\":23362,\"ãĥĺ\":23363,\"Ġprocure\":23364,\"eur\":23365,\"Ġconfirming\":23366,\"ĠCec\":23367,\"awi\":23368,\"ĠEden\":23369,\"Ġng\":23370,\"Ġengineered\":23371,\"atics\":23372,\"Ġhooked\":23373,\"Ġdisgusting\":23374,\"ĠMurder\":23375,\"ãĤ¿\":23376,\"Library\":23377,\"Ġ168\":23378,\"Almost\":23379,\"hematic\":23380,\"Menu\":23381,\"ĠNotre\":23382,\"ĠJur\":23383,\"Ġkidnapped\":23384,\"Ġhacker\":23385,\"ĠJade\":23386,\"Ġcreepy\":23387,\"Ġdrawings\":23388,\"ĠSponsor\":23389,\"Ġcyclists\":23390,\"ĠGoblin\":23391,\"Ġoptimized\":23392,\"Ġstaged\":23393,\"ĠMcD\":23394,\"between\":23395,\"Age\":23396,\"eno\":23397,\"Sex\":23398,\"ĠWide\":23399,\"nings\":23400,\"avis\":23401,\"Ġincapable\":23402,\"ĠKob\":23403,\"Ġrewarding\":23404,\"ĠLone\":23405,\"olescent\":23406,\"Ġcontracted\":23407,\"Ġsticky\":23408,\"Jose\":23409,\"Ball\":23410,\"fest\":23411,\"ĠInput\":23412,\"ĠRecently\":23413,\"Ġtomat\":23414,\"square\":23415,\"Application\":23416,\"Ġnitrogen\":23417,\"Ġduplicate\":23418,\"ĠRecon\":23419,\"ĠDear\":23420,\"London\":23421,\"Ġintra\":23422,\"Ġdock\":23423,\"Ġoutreach\":23424,\"ĠMillion\":23425,\"Ġmammals\":23426,\"ampton\":23427,\"VAL\":23428,\"Ġsnaps\":23429,\"Ġdos\":23430,\"ĠWhole\":23431,\"ĠReady\":23432,\"Try\":23433,\"ĠWinnipeg\":23434,\"earance\":23435,\"Ġincurred\":23436,\"renched\":23437,\"ĠNSW\":23438,\"ilot\":23439,\"raine\":23440,\"Ġcube\":23441,\"got\":23442,\"Ġrunway\":23443,\"etermined\":23444,\"ĠHawks\":23445,\"Ġsurvivor\":23446,\"ĠWish\":23447,\"ĠDin\":23448,\"ĠDEF\":23449,\"ĠVault\":23450,\"187\":23451,\"Ġmushrooms\":23452,\"Ġcrisp\":23453,\"bey\":23454,\"ĠDiscovery\":23455,\"Ġdevelopmental\":23456,\"Ġparadigm\":23457,\"Ġchaotic\":23458,\"ĠTsu\":23459,\"Ġ333\":23460,\"bons\":23461,\"Ġbacterial\":23462,\"Ġcommits\":23463,\"Ġcosmic\":23464,\"Ġmega\":23465,\"ocative\":23466,\"ĠPaint\":23467,\"ophobic\":23468,\"Ġvain\":23469,\"Ġcarved\":23470,\"ĠThief\":23471,\"ĠGul\":23472,\"owship\":23473,\"Ġcites\":23474,\"ĠEdinburgh\":23475,\"Ġdiminished\":23476,\"Ġacknowledges\":23477,\"ĠKills\":23478,\"Ġmicrow\":23479,\"ĠHera\":23480,\"Ġseniors\":23481,\"Ġwhereby\":23482,\"Hop\":23483,\"atron\":23484,\"Ġunavailable\":23485,\"ĠNate\":23486,\"Ġ480\":23487,\"Ġslated\":23488,\"ĠRebecca\":23489,\"ĠBattery\":23490,\"Ġgrammar\":23491,\"Ġheadset\":23492,\"Ġcursor\":23493,\"Ġexcluding\":23494,\"anye\":23495,\"aundering\":23496,\"ebin\":23497,\"Ġfeasible\":23498,\"ĠPublishing\":23499,\"ĠLabs\":23500,\"ĠCliff\":23501,\"ĠFerrari\":23502,\"Ġpac\":23503,\"visible\":23504,\"marked\":23505,\"pell\":23506,\"Ġpolite\":23507,\"Ġstaggering\":23508,\"ĠGalactic\":23509,\"Ġsuperst\":23510,\"Ġparan\":23511,\"ĠOfficers\":23512,\"ãĢģ\":23513,\"Ġspecifics\":23514,\"ulus\":23515,\"239\":23516,\"ĠPaste\":23517,\"AMP\":23518,\"ĠPanama\":23519,\"ĠDelete\":23520,\"anguard\":23521,\"restrial\":23522,\"Ġheroic\":23523,\"ĠDy\":23524,\"Ø§ÙĦ\":23525,\"Ġincumbent\":23526,\"Ġcrunch\":23527,\"tro\":23528,\"Ġscoop\":23529,\"Ġblogger\":23530,\"Ġsellers\":23531,\"uren\":23532,\"Ġmedicines\":23533,\"ĠCaps\":23534,\"ĠAnimation\":23535,\"oxy\":23536,\"Ġoutward\":23537,\"Ġinquiries\":23538,\"229\":23539,\"Ġpsychologist\":23540,\"ĠSask\":23541,\"evil\":23542,\"Ġcontaminated\":23543,\"ãĤ¨\":23544,\"herence\":23545,\"Ġbranded\":23546,\"ĠAbdul\":23547,\"zh\":23548,\"Ġparagraphs\":23549,\"Ġmins\":23550,\"Ġcorrelated\":23551,\"erb\":23552,\"Ġimpart\":23553,\"Ġmilestone\":23554,\"ĠSolutions\":23555,\"otle\":23556,\"Ġundercover\":23557,\"Ġmarched\":23558,\"ĠChargers\":23559,\"fax\":23560,\"ĠSecrets\":23561,\"Ġruth\":23562,\"weather\":23563,\"Ġfeminine\":23564,\"Ġsham\":23565,\"Ġprestigious\":23566,\"iggins\":23567,\"Ġsung\":23568,\"history\":23569,\"ettle\":23570,\"ggie\":23571,\"Ġoutdated\":23572,\"oland\":23573,\"Ġperceptions\":23574,\"ĠSession\":23575,\"ĠDodgers\":23576,\"uj\":23577,\"ĠEND\":23578,\"Doc\":23579,\"Ġdeficiency\":23580,\"Grand\":23581,\"ĠJoker\":23582,\"Ġretrospect\":23583,\"Ġdiagnostic\":23584,\"Ġharmless\":23585,\"Ġrogue\":23586,\"ĠAval\":23587,\"Equ\":23588,\"Ġtransc\":23589,\"ĠRobertson\":23590,\"ĠDepending\":23591,\"ĠBurns\":23592,\"ivo\":23593,\"Ġhostility\":23594,\"Features\":23595,\"ĵĺ\":23596,\"Ġdiscomfort\":23597,\"ĠLCD\":23598,\"specified\":23599,\"ĠExpect\":23600,\"340\":23601,\"Ġimperative\":23602,\"ĠRegular\":23603,\"Chinese\":23604,\"Ġstatewide\":23605,\"Ġsymm\":23606,\"Ġloops\":23607,\"Ġautumn\":23608,\"Nick\":23609,\"Ġshaping\":23610,\"Ġquot\":23611,\"Ġcherry\":23612,\"ĠCrossref\":23613,\"è¦ļéĨĴ\":23614,\"Standard\":23615,\"heed\":23616,\"ĠDell\":23617,\"ĠVietnamese\":23618,\"Ġost\":23619,\"ĠValkyrie\":23620,\"OA\":23621,\"Assad\":23622,\"Ġrebound\":23623,\"ĠTraffic\":23624,\"places\":23625,\"æĺ\":23626,\"ĠBuc\":23627,\"172\":23628,\"Ġshelters\":23629,\"Ġinsisting\":23630,\"ĠCertainly\":23631,\"ĠKenneth\":23632,\"ĠTCP\":23633,\"Ġpenal\":23634,\"ĠReplay\":23635,\"heard\":23636,\"Ġdialect\":23637,\"iza\":23638,\"ĠFY\":23639,\"itcher\":23640,\"ĠDL\":23641,\"Ġspiral\":23642,\"Ġquarterbacks\":23643,\"Ġhull\":23644,\"Ġgoogle\":23645,\"Ġtodd\":23646,\"ĠSterling\":23647,\"ĠPlate\":23648,\"Ġspying\":23649,\"mbol\":23650,\"ĠRealm\":23651,\"ĠProced\":23652,\"ĠCrash\":23653,\"Ġterminate\":23654,\"Ġprotesting\":23655,\"Center\":23656,\"guided\":23657,\"Ġuncover\":23658,\"Ġboycott\":23659,\"Ġrealizes\":23660,\"sound\":23661,\"Ġpretending\":23662,\"ĠVas\":23663,\"1980\":23664,\"Ġframed\":23665,\"Ġ139\":23666,\"Ġdescended\":23667,\"Ġrehabilitation\":23668,\"Ġborrowing\":23669,\"ĠBuch\":23670,\"Ġblur\":23671,\"Ron\":23672,\"ĠFrozen\":23673,\"enza\":23674,\"Chief\":23675,\"ĠPoor\":23676,\"Ġtranslates\":23677,\"MIN\":23678,\"Ġ212\":23679,\"JECT\":23680,\"Ġerupted\":23681,\"Ġsuccesses\":23682,\"SEC\":23683,\"Ġplague\":23684,\"Ġgems\":23685,\"doms\":23686,\"Ġstretches\":23687,\"ĠSpy\":23688,\"Ġstorytelling\":23689,\"Credit\":23690,\"ĠPush\":23691,\"Ġtraction\":23692,\"Ġineffective\":23693,\"ĠLuna\":23694,\"Ġtapes\":23695,\"Ġanalytics\":23696,\"ercise\":23697,\"Ġprogrammes\":23698,\"ĠCarbon\":23699,\"Ġbehold\":23700,\"heavy\":23701,\"ĠConservation\":23702,\"ĠFIR\":23703,\"Ġsack\":23704,\"termin\":23705,\"ricks\":23706,\"Ġhoused\":23707,\"Ġunusually\":23708,\"Ice\":23709,\"Ġexecuting\":23710,\"ĠMoroc\":23711,\"eday\":23712,\"Ġeditions\":23713,\"Ġsmarter\":23714,\"ĠBA\":23715,\"Ġoutlaw\":23716,\"Ġvanished\":23717,\"iba\":23718,\"ALSE\":23719,\"ĠSilva\":23720,\"238\":23721,\"Could\":23722,\"Ġphilosopher\":23723,\"Ġevacuated\":23724,\"Secret\":23725,\"142\":23726,\"Ġvisas\":23727,\"ãĤ¬\":23728,\"ĠMalt\":23729,\"ĠClearly\":23730,\"ĠNiger\":23731,\"ĠCairo\":23732,\"ĠFist\":23733,\"380\":23734,\"ĠXML\":23735,\"auto\":23736,\"itant\":23737,\"Ġreinforced\":23738,\"Record\":23739,\"ĠSurvivor\":23740,\"GHz\":23741,\"Ġscrews\":23742,\"parents\":23743,\"Ġoceans\":23744,\"mares\":23745,\"Ġbrakes\":23746,\"vasive\":23747,\"Ġhello\":23748,\"ĠSIM\":23749,\"rimp\":23750,\"Ġore\":23751,\"ĠArmour\":23752,\"247\":23753,\"Ġterrific\":23754,\"Ġtones\":23755,\"141\":23756,\"ĠMinutes\":23757,\"Episode\":23758,\"Ġcurves\":23759,\"Ġinflammatory\":23760,\"Ġbatting\":23761,\"ĠBeautiful\":23762,\"Lay\":23763,\"Ġunpop\":23764,\"vable\":23765,\"Ġriots\":23766,\"ĠTactics\":23767,\"baugh\":23768,\"ĠCock\":23769,\"Ġorgasm\":23770,\"ĠSas\":23771,\"Ġconstructor\":23772,\"etz\":23773,\"Gov\":23774,\"Ġantagon\":23775,\"Ġtheat\":23776,\"Ġdeeds\":23777,\"hao\":23778,\"cuts\":23779,\"ĠMcCl\":23780,\"Ġum\":23781,\"ĠScientists\":23782,\"Ġgrassroots\":23783,\"yssey\":23784,\"\\\"]=>\":23785,\"Ġsurfaced\":23786,\"Ġshades\":23787,\"Ġneighbours\":23788,\"Ġadvertis\":23789,\"oya\":23790,\"Ġmerged\":23791,\"Upon\":23792,\"Ġgad\":23793,\"Ġanticipate\":23794,\"Anyway\":23795,\"Ġslogan\":23796,\"Ġdisrespect\":23797,\"Iran\":23798,\"ĠTB\":23799,\"acted\":23800,\"Ġsubpoen\":23801,\"mediately\":23802,\"OOOO\":23803,\"Ġwaiver\":23804,\"Ġvulnerabilities\":23805,\"ottesville\":23806,\"ĠHuffington\":23807,\"Josh\":23808,\"ĠDH\":23809,\"Monday\":23810,\"ĠEllen\":23811,\"Know\":23812,\"xon\":23813,\"items\":23814,\"228\":23815,\"Ġfills\":23816,\"ĠNike\":23817,\"Ġcumulative\":23818,\"andals\":23819,\"Ir\":23820,\"Ġì\":23821,\"Ġfriction\":23822,\"igator\":23823,\"Ġscans\":23824,\"ĠVienna\":23825,\"ldom\":23826,\"Ġperformers\":23827,\"Prim\":23828,\"Ġbidding\":23829,\"Mur\":23830,\"Ġleaned\":23831,\"ĠPrix\":23832,\"alks\":23833,\"Ġ[âĢ¦]\":23834,\"ĠTwitch\":23835,\"ĠDeveloper\":23836,\"ĠGir\":23837,\"Ġcallback\":23838,\"Abstract\":23839,\"Ġaccustomed\":23840,\"Ġfreedoms\":23841,\"ĠPG\":23842,\"uracy\":23843,\"Ġlump\":23844,\"isman\":23845,\",,,,\":23846,\"1992\":23847,\"ĠRED\":23848,\"Ġworm\":23849,\"Match\":23850,\"ĠPlatinum\":23851,\"IJ\":23852,\"ĠOwner\":23853,\"Trivia\":23854,\"compl\":23855,\"Ġnewborn\":23856,\"Ġfantas\":23857,\"Own\":23858,\"Ġ1959\":23859,\"Ġsympath\":23860,\"Ġubiqu\":23861,\"Ġoutputs\":23862,\"Ġallev\":23863,\"Ġprag\":23864,\"Kevin\":23865,\"Ġfavors\":23866,\"Ġburial\":23867,\"Ġnurt\":23868,\"solete\":23869,\"cache\":23870,\"Ġ156\":23871,\"Ġunlocks\":23872,\"techn\":23873,\"Making\":23874,\"Ġconquer\":23875,\"adic\":23876,\"æĸ\":23877,\"Ġelf\":23878,\"Ġelectorate\":23879,\"ĠKurds\":23880,\"ĠStack\":23881,\"ĠSamurai\":23882,\"Ġâĺħ\":23883,\"Ġ{}\":23884,\"ĠSaid\":23885,\"ĠFallout\":23886,\"Ġkindness\":23887,\"ĠCustoms\":23888,\"ĠBoulevard\":23889,\"Ġhelicopters\":23890,\"otics\":23891,\"ĠVeget\":23892,\"comment\":23893,\"Ġcriticised\":23894,\"Ġpolished\":23895,\"ĠRemix\":23896,\"ĠCultural\":23897,\"Ġrecons\":23898,\"Ġdoi\":23899,\"atem\":23900,\"Screen\":23901,\"Ġbarred\":23902,\"Comments\":23903,\"ĠGenerally\":23904,\"Ġslap\":23905,\"720\":23906,\"Vari\":23907,\"pine\":23908,\"Ġempt\":23909,\"Ġhats\":23910,\"ĠPlaying\":23911,\"lab\":23912,\"average\":23913,\"forms\":23914,\"ĠCotton\":23915,\"Ġcans\":23916,\"ĠDON\":23917,\"ĠSomalia\":23918,\"Crypt\":23919,\"ĠIncreases\":23920,\"Ever\":23921,\"modern\":23922,\"Ġsurgeon\":23923,\"3000\":23924,\"Ġrandomized\":23925,\"================================================================\":23926,\"Bern\":23927,\"impl\":23928,\"ĠCOR\":23929,\"Ġproclaim\":23930,\"thouse\":23931,\"Ġtoes\":23932,\"Ġample\":23933,\"Ġpreserving\":23934,\"Ġdisbel\":23935,\"grand\":23936,\"Besides\":23937,\"Ġsilk\":23938,\"ĠPattern\":23939,\"hm\":23940,\"Ġenterprises\":23941,\"Ġaffidavit\":23942,\"ĠAdvisory\":23943,\"Ġadvertised\":23944,\"ĠReligious\":23945,\"sections\":23946,\"psych\":23947,\"ĠFields\":23948,\"aways\":23949,\"Ġhashtag\":23950,\"ĠNightmare\":23951,\"Ġvampire\":23952,\"Ġforensic\":23953,\"rossover\":23954,\"nar\":23955,\"Ġnavy\":23956,\"Ġvacant\":23957,\"ĠDuel\":23958,\"Ġhallway\":23959,\"Ġfacebook\":23960,\"identally\":23961,\"ĠNRA\":23962,\"Ġmatt\":23963,\"Ġhurricane\":23964,\"ĠKirby\":23965,\"ĠPuzzle\":23966,\"Ġskirt\":23967,\"oust\":23968,\"dullah\":23969,\"Ġanalogy\":23970,\"inion\":23971,\"Ġtomatoes\":23972,\"ĠNV\":23973,\"ĠPeak\":23974,\"ĠMeyer\":23975,\"Ġappointments\":23976,\"Ġmasc\":23977,\"Ġalley\":23978,\"rehend\":23979,\"Ġcharities\":23980,\"Ġundo\":23981,\"Ġdestinations\":23982,\"ĠTesting\":23983,\"\\\"></\":23984,\"Ġdestined\":23985,\"Ġimplements\":23986,\"ĠHarold\":23987,\"RECT\":23988,\"Ġoptimization\":23989,\"Ġkilometres\":23990,\"Ġcmd\":23991,\"Ġimpairment\":23992,\"Ġunsuccessful\":23993,\"Ġswiftly\":23994,\"ĠGlasgow\":23995,\"arten\":23996,\"ĠShares\":23997,\"ĠAnswer\":23998,\"ĠAlbum\":23999,\"Ġnutritional\":24000,\"ãĥĸ\":24001,\"ĠFut\":24002,\"Ġbloc\":24003,\"ĠNFC\":24004,\"Ġwholesale\":24005,\"ĠCW\":24006,\"Ġneglected\":24007,\"Ġlauncher\":24008,\"Ġannouncements\":24009,\"OULD\":24010,\"comb\":24011,\"Ġrotating\":24012,\"Ġrests\":24013,\"ĠTicket\":24014,\"chedel\":24015,\"Lou\":24016,\"ĠVic\":24017,\"Ġ\\\"'\":24018,\"Ġtemplates\":24019,\"Ġreplaces\":24020,\"Arc\":24021,\"::::\":24022,\"ĠGilbert\":24023,\"Ġillnesses\":24024,\"Ġschedules\":24025,\"Ġheterosexual\":24026,\"LINE\":24027,\"Ġherein\":24028,\"Ġcoerc\":24029,\"Ġdecreasing\":24030,\"Ġdeportation\":24031,\"sudo\":24032,\"ĠIndigenous\":24033,\"Ġweighs\":24034,\"Along\":24035,\"');\":24036,\"ĠBengals\":24037,\"707\":24038,\"Ġjoints\":24039,\"verts\":24040,\"Ġ149\":24041,\"naire\":24042,\"Ġsimplest\":24043,\"Ġlore\":24044,\"1080\":24045,\"fiction\":24046,\"ĠDatabase\":24047,\"Ġreservation\":24048,\"Ġsou\":24049,\"Ġsanctuary\":24050,\"audio\":24051,\"aple\":24052,\"Ġvegetarian\":24053,\"Ġanticipation\":24054,\"micro\":24055,\"Ġenduring\":24056,\"Ġdeparted\":24057,\"Ġsidewalk\":24058,\"Ġprohibits\":24059,\"ĠFont\":24060,\"Ġcompute\":24061,\"ĠSect\":24062,\"Ġ158\":24063,\"Battle\":24064,\"Ġbomber\":24065,\"Ġdistraction\":24066,\"Ġendured\":24067,\"Ġpractitioners\":24068,\"Ġdisturbed\":24069,\"Ġdrank\":24070,\"ordered\":24071,\"Ġsurprises\":24072,\"seat\":24073,\"Security\":24074,\"ĠWisdom\":24075,\"ogo\":24076,\"Ġsubparagraph\":24077,\"ĠPeninsula\":24078,\"ĠOrigins\":24079,\"iren\":24080,\"ĠPav\":24081,\"iggle\":24082,\"Ġgratitude\":24083,\"ĠGravity\":24084,\"overty\":24085,\"iman\":24086,\"ctr\":24087,\"ĠCaesar\":24088,\"could\":24089,\"gem\":24090,\"Ġskies\":24091,\"Ġchamp\":24092,\"Ġagreeing\":24093,\"Family\":24094,\"Div\":24095,\"176\":24096,\"Ġmessy\":24097,\"umption\":24098,\"Federal\":24099,\"erno\":24100,\"ĠChat\":24101,\"Beyond\":24102,\"Ġdevote\":24103,\"ĠWalsh\":24104,\"Ġdumped\":24105,\"Ġaccumulation\":24106,\"stad\":24107,\"hibition\":24108,\"Ġsmokers\":24109,\"Ġinspector\":24110,\"French\":24111,\"issan\":24112,\"ĠVita\":24113,\"Ġresearching\":24114,\"RAM\":24115,\"ĠCeltics\":24116,\"Ġcloak\":24117,\"ĠTerra\":24118,\"Mary\":24119,\"sold\":24120,\"ĠDOM\":24121,\"mods\":24122,\"Intel\":24123,\"Ġmultitude\":24124,\"ĠImproved\":24125,\"Ġreliance\":24126,\"Ġartifact\":24127,\"Ġalarming\":24128,\"Prom\":24129,\"hon\":24130,\"TION\":24131,\"medium\":24132,\"Ġreflex\":24133,\"ĠExcel\":24134,\"Ġweakened\":24135,\"163\":24136,\"224\":24137,\"Ġcostumes\":24138,\"Ġuniquely\":24139,\"Ġsorrow\":24140,\"Ġmansion\":24141,\"wp\":24142,\"Ġsalv\":24143,\"ĠGrove\":24144,\"bsp\":24145,\"ĠSniper\":24146,\"ĠShipping\":24147,\"ĠPOW\":24148,\"Ġundis\":24149,\"Ġbranding\":24150,\"Girl\":24151,\"ĠAhmad\":24152,\"ĠLakes\":24153,\"ĠCorey\":24154,\"Ġinheritance\":24155,\"enery\":24156,\"Ġpacking\":24157,\"ĠPrest\":24158,\"Dest\":24159,\"FW\":24160,\"Ġregulator\":24161,\"locked\":24162,\"Ġcontested\":24163,\"ĠMelissa\":24164,\"ĠDuc\":24165,\"Ġunpopular\":24166,\"Ġstacked\":24167,\"Ġ1917\":24168,\"Ġyearly\":24169,\"Ġstare\":24170,\"Ġassessing\":24171,\"Ã¸\":24172,\"Ġbeverages\":24173,\"Ġcompetitions\":24174,\"Ġstrengthening\":24175,\"along\":24176,\"ĠLud\":24177,\"Ġmelted\":24178,\"stanbul\":24179,\"Ġbounty\":24180,\"ENC\":24181,\"ĠLands\":24182,\"Ġdeclares\":24183,\"Ġcustomize\":24184,\"Ġcomposite\":24185,\"ãĥ¬\":24186,\"CM\":24187,\"ographics\":24188,\"ĠTemp\":24189,\"Ġcontender\":24190,\"Ġinsign\":24191,\"ĠLAN\":24192,\"Ġdisasters\":24193,\"inspired\":24194,\"Ġjudgments\":24195,\"ustainable\":24196,\"ursion\":24197,\"Ġvariance\":24198,\"ĠUltimately\":24199,\"Ġ--------\":24200,\"uador\":24201,\"ĠRX\":24202,\"Ġmelting\":24203,\"ĠExtended\":24204,\"ĠTwe\":24205,\"Major\":24206,\"ĠBil\":24207,\"Ġsyrup\":24208,\"quick\":24209,\"ĠHolder\":24210,\"Ġinnocence\":24211,\"ULE\":24212,\"ĠMight\":24213,\"9999\":24214,\"Ġfal\":24215,\"Ġcontinuity\":24216,\"Ġ1953\":24217,\"ĠBS\":24218,\"still\":24219,\"Lat\":24220,\"ĠAbuse\":24221,\"Ġunsupported\":24222,\"xxxxxxxx\":24223,\"Ġinstitute\":24224,\"Ġfragment\":24225,\"ĠPep\":24226,\"Western\":24227,\"ĠCause\":24228,\"ĠFrag\":24229,\"ĠArs\":24230,\"à¥\":24231,\"astics\":24232,\"Ġbishop\":24233,\"Ġcrosses\":24234,\"Ġ154\":24235,\"ĠUpgrade\":24236,\"Ġmitigate\":24237,\"ĠRaymond\":24238,\"Mods\":24239,\"Ġtomato\":24240,\"Ġstumbled\":24241,\"Ġdiffers\":24242,\"Initial\":24243,\"ĠRaspberry\":24244,\"Ġignores\":24245,\"Ġtant\":24246,\"Ãł\":24247,\"Ġrelay\":24248,\"Ġbisexual\":24249,\"Ġconfession\":24250,\"Ġdement\":24251,\"inas\":24252,\"ĠHeather\":24253,\"platform\":24254,\"driving\":24255,\"bourg\":24256,\"ĠMush\":24257,\"Ġhyster\":24258,\"Details\":24259,\"Ġdrift\":24260,\"ĠWald\":24261,\"ĠLuckily\":24262,\"orf\":24263,\"Ġexpire\":24264,\"ĠPunch\":24265,\"zyme\":24266,\"gold\":24267,\"Ġunpaid\":24268,\"ĠTrent\":24269,\"Ġunarmed\":24270,\"Ġillicit\":24271,\"ĠTottenham\":24272,\"Ġsmash\":24273,\"International\":24274,\"inker\":24275,\"Ġsting\":24276,\"ĠSaddam\":24277,\"ĠART\":24278,\"Ġtruths\":24279,\"birth\":24280,\"Ġsober\":24281,\"ĠNit\":24282,\"Ġib\":24283,\"Ġusable\":24284,\"Ġstacks\":24285,\"ĠSylv\":24286,\"Ġnortheast\":24287,\"Ġdomination\":24288,\"ĠMour\":24289,\"ENSE\":24290,\"ĠMeasure\":24291,\"Ġprogrammer\":24292,\"Ġ<-\":24293,\"182\":24294,\"ĠCondition\":24295,\"Ġbackyard\":24296,\"irling\":24297,\"ĠJeb\":24298,\"ĠCreed\":24299,\"ĠHang\":24300,\"ĠCOMP\":24301,\"FER\":24302,\"ĠIsh\":24303,\"Ġdetectives\":24304,\"---------------\":24305,\"ĠMessenger\":24306,\"Ġlooph\":24307,\"Ġgateway\":24308,\"151\":24309,\"ĠMaterials\":24310,\"ĠDT\":24311,\"Ġdoomed\":24312,\"odo\":24313,\"Ġslices\":24314,\"Ġemailed\":24315,\"ĠPerl\":24316,\"Ġrenov\":24317,\"UTH\":24318,\"odynam\":24319,\"ĠSouthwest\":24320,\"getic\":24321,\"ĠTPP\":24322,\"Ġoptimism\":24323,\"ĠTow\":24324,\"ulators\":24325,\"protected\":24326,\"yles\":24327,\"Â«\":24328,\"Ġexile\":24329,\"env\":24330,\"Prop\":24331,\"ĠZimmerman\":24332,\"Ùİ\":24333,\"Ca\":24334,\"omaly\":24335,\"ãĥĨ\":24336,\"Ġrailroad\":24337,\"Lee\":24338,\"232\":24339,\"Ġreplicate\":24340,\"Ġcomfortably\":24341,\"actly\":24342,\"Ġrav\":24343,\"Ġtelescope\":24344,\"Ġhonesty\":24345,\"ĠPepper\":24346,\"ĠBring\":24347,\"Ġrichest\":24348,\"Ġoutdoors\":24349,\"Ġhalls\":24350,\"Ġcontend\":24351,\"ISE\":24352,\"Ġsubmitting\":24353,\"Ġnaive\":24354,\"arations\":24355,\"Ġ143\":24356,\"Ġpoised\":24357,\"responsible\":24358,\"Ġsocks\":24359,\"ĠSkull\":24360,\"Question\":24361,\"Ġdiscoveries\":24362,\"Joined\":24363,\"ĠEnemies\":24364,\"ĠWireless\":24365,\"ĠRevenge\":24366,\"Ġpuzzles\":24367,\"Ġceased\":24368,\"290\":24369,\"criptions\":24370,\"ĠConsole\":24371,\"Ġboiling\":24372,\"Ġdiscrep\":24373,\"Ġdeduction\":24374,\"Ġarsenal\":24375,\"XXXX\":24376,\"ĠAmsterdam\":24377,\"roximately\":24378,\"ĠShane\":24379,\"Ġposing\":24380,\"ĠACLU\":24381,\"ĠCompanies\":24382,\"Ġtheology\":24383,\"ĠUg\":24384,\"quarter\":24385,\"ĠHank\":24386,\"Coin\":24387,\"ĠLv\":24388,\"Ġallegation\":24389,\"ĠAvoid\":24390,\"Ġindefinitely\":24391,\"Ġcommodities\":24392,\"Ġbrig\":24393,\"ĠManit\":24394,\"Ġtenth\":24395,\"method\":24396,\"ĠKnicks\":24397,\"ĠâĢİ\":24398,\"Ġinvoked\":24399,\"Dial\":24400,\"ARA\":24401,\"Ġcaucus\":24402,\"227\":24403,\"ĠJab\":24404,\"Ġounces\":24405,\"bay\":24406,\"Ġbuddy\":24407,\"fan\":24408,\"234\":24409,\"ĠHil\":24410,\"adh\":24411,\"ĠTY\":24412,\"ĠIND\":24413,\"Ġ1939\":24414,\"Ġiteration\":24415,\"ĠGonzalez\":24416,\"ĠVert\":24417,\"ĠIO\":24418,\"emb\":24419,\"rera\":24420,\"ench\":24421,\"ĠRequirements\":24422,\"ĠWins\":24423,\"Ġlivestock\":24424,\"hours\":24425,\"\\\"âĢ¦\":24426,\"bral\":24427,\"Marg\":24428,\"ĠDone\":24429,\"Ġwasting\":24430,\"inged\":24431,\"groups\":24432,\"Ġwishing\":24433,\"ĠTumblr\":24434,\"Ġtapping\":24435,\"Ġnationalism\":24436,\"ĠByr\":24437,\"Ġsquares\":24438,\"ĠActions\":24439,\"ãĥ¥\":24440,\"Inside\":24441,\"debug\":24442,\"Ġappend\":24443,\"Ġstubborn\":24444,\"ĠCind\":24445,\"Tell\":24446,\"Ġtearing\":24447,\"ĠRey\":24448,\"orc\":24449,\"ĠDayton\":24450,\"ĠNH\":24451,\"ĠMadness\":24452,\"Charl\":24453,\"ĠMorrison\":24454,\"filter\":24455,\"Ġaccuse\":24456,\"Ġ./\":24457,\"Ġtorrent\":24458,\"Ġdeclines\":24459,\"gallery\":24460,\"Mine\":24461,\"Ġnegotiation\":24462,\"ĠBashar\":24463,\"opia\":24464,\"1993\":24465,\"emort\":24466,\"ĠNovel\":24467,\"ĠFang\":24468,\"ersive\":24469,\"ĠInstant\":24470,\"Ġroller\":24471,\"Around\":24472,\"ĠElections\":24473,\"Games\":24474,\"Ġinexpensive\":24475,\"Ġwors\":24476,\"Ġvul\":24477,\"ĠHole\":24478,\"Ġunbelievable\":24479,\"Ġnause\":24480,\"Ġentr\":24481,\"boat\":24482,\"ĠSTE\":24483,\"Ġbush\":24484,\"ĠHassan\":24485,\"Ġwo\":24486,\"Ġpaused\":24487,\"ĠMig\":24488,\"lived\":24489,\"Ġscout\":24490,\"Ġlith\":24491,\"Published\":24492,\"duino\":24493,\"cool\":24494,\"Ġcirculating\":24495,\"idas\":24496,\"ĠPam\":24497,\"violent\":24498,\"ĠCrawford\":24499,\"uddle\":24500,\"ĠLetters\":24501,\"Guard\":24502,\"morph\":24503,\"Ġwandering\":24504,\"Ġsophomore\":24505,\"Ġqueer\":24506,\"ĠBlind\":24507,\"rue\":24508,\"ĠMarriage\":24509,\"Dom\":24510,\"Ġpadding\":24511,\"Ġfolders\":24512,\"Ġmeaningless\":24513,\"Ġcandidacy\":24514,\"afort\":24515,\"Ġwhistlebl\":24516,\"ĠIdentified\":24517,\"Ġcigar\":24518,\"Ġhid\":24519,\"ĠDubai\":24520,\"Ġposture\":24521,\"Ġhiking\":24522,\"ĠTerminal\":24523,\"Legendary\":24524,\"ĠTP\":24525,\"ĠATK\":24526,\"ĠStarbucks\":24527,\"ĠRiot\":24528,\"1991\":24529,\"ĠBottom\":24530,\"effic\":24531,\"ĠEugene\":24532,\"ĠWyoming\":24533,\"ĠRocky\":24534,\"Ġsalmon\":24535,\"Ġmetro\":24536,\"Ġbilateral\":24537,\"Ġcelebrates\":24538,\"Length\":24539,\"billion\":24540,\"Bat\":24541,\"Ġreleg\":24542,\"Ġpseudo\":24543,\"DT\":24544,\"ĠRhode\":24545,\"Parent\":24546,\"pletion\":24547,\"Ġattribut\":24548,\"Ġtuning\":24549,\"ĠNOTE\":24550,\"ĠRebel\":24551,\"icus\":24552,\"Fund\":24553,\"Ġcocktail\":24554,\"Ġ501\":24555,\"Ġspoon\":24556,\"Ġbrutality\":24557,\"Ġunite\":24558,\"Ġmicrobi\":24559,\"ĠReich\":24560,\"positive\":24561,\"Ġamazed\":24562,\"ĠNT\":24563,\"Desc\":24564,\"ECTION\":24565,\"Ġfalsely\":24566,\"ĠHighlander\":24567,\"ĠCrist\":24568,\"ĠVictorian\":24569,\"Ġdistributions\":24570,\"their\":24571,\"ĠEinstein\":24572,\"Ġpod\":24573,\"Ġepidem\":24574,\"Ġheap\":24575,\"ĠRanch\":24576,\"Ġanthem\":24577,\"Ġreapp\":24578,\"ĠAuburn\":24579,\"Ġconcurrent\":24580,\"ĠThroughout\":24581,\"ĠPOST\":24582,\"âĺ\":24583,\"Ġhomemade\":24584,\"kick\":24585,\"Beg\":24586,\"Ġchassis\":24587,\"counter\":24588,\"Ġmerger\":24589,\"Ġlaps\":24590,\"217\":24591,\"union\":24592,\"ĠTrigger\":24593,\"Ġdebated\":24594,\"Ġsilently\":24595,\"Ġrestraint\":24596,\"Bal\":24597,\"0000000\":24598,\"Ġformidable\":24599,\"ĠFilip\":24600,\"Ġsacrifices\":24601,\"Food\":24602,\"Ġdwarf\":24603,\"ĠSequ\":24604,\"inian\":24605,\"Moreover\":24606,\"Ġtangible\":24607,\"opsis\":24608,\"ĠMinecraft\":24609,\"ĠRegistration\":24610,\"oan\":24611,\"Ġrepresentations\":24612,\"Ġthirst\":24613,\"Ġcorp\":24614,\"irement\":24615,\"Made\":24616,\"loe\":24617,\">\\\"\":24618,\"cats\":24619,\"*.\":24620,\"Ġgestures\":24621,\"general\":24622,\"League\":24623,\"Ġpackets\":24624,\"ĠInspector\":24625,\"ĠBerg\":24626,\"Ġfraudulent\":24627,\"Ġcriticize\":24628,\"Fun\":24629,\"Ġblaming\":24630,\"ndra\":24631,\"Ġslash\":24632,\"ĠEston\":24633,\"Ġproposing\":24634,\"Ġwhales\":24635,\"Ġtherapist\":24636,\"Ġsubset\":24637,\"Ġleisure\":24638,\"ELD\":24639,\"ĠCVE\":24640,\"ĠActivity\":24641,\"Ġculmin\":24642,\"shop\":24643,\"ĠDAY\":24644,\"ischer\":24645,\"ĠAdmiral\":24646,\"ĠAttacks\":24647,\"Ġ1958\":24648,\"Ġmemoir\":24649,\"Ġfolded\":24650,\"Ġsexist\":24651,\"Ġ153\":24652,\"ĠLI\":24653,\"Ġreadings\":24654,\"Ġembarrassment\":24655,\"ĠEmployment\":24656,\"wart\":24657,\"chin\":24658,\"Ġcontinuation\":24659,\"lia\":24660,\"Recently\":24661,\"Ġduel\":24662,\"Ġevacuation\":24663,\"ĠKashmir\":24664,\"Ġdisposition\":24665,\"ĠRig\":24666,\"Ġbolts\":24667,\"Ġinsurers\":24668,\"467\":24669,\"Mex\":24670,\"Ġretaliation\":24671,\"Ġmisery\":24672,\"Ġunreasonable\":24673,\"raining\":24674,\"Imm\":24675,\"ĠPU\":24676,\"emer\":24677,\"Ġgenital\":24678,\"ãĤ³\":24679,\"ĠCandy\":24680,\"Ġonions\":24681,\"ĠPatt\":24682,\"liner\":24683,\"Ġconceded\":24684,\"Ġfa\":24685,\"Ġforc\":24686,\"ĠHernandez\":24687,\"ĠGeoff\":24688,\"debian\":24689,\"ĠTeams\":24690,\"Ġcries\":24691,\"Ġhomeowners\":24692,\"237\":24693,\"ABC\":24694,\"Ġstitch\":24695,\"Ġstatistic\":24696,\"Ġheaders\":24697,\"ĠBiology\":24698,\"Ġmotors\":24699,\"ĠGEN\":24700,\"ĠLip\":24701,\"Ġhates\":24702,\"Ġheel\":24703,\"Self\":24704,\"ipl\":24705,\"EDIT\":24706,\"orting\":24707,\"Ġannot\":24708,\"ĠSpeech\":24709,\"oldemort\":24710,\"ĠJavascript\":24711,\"ĠLeBron\":24712,\"Ġfootprint\":24713,\"Ġfn\":24714,\"Ġseizures\":24715,\"nas\":24716,\"hide\":24717,\"Ġ1954\":24718,\"ĠBee\":24719,\"ĠDeclaration\":24720,\"ĠKatie\":24721,\"Ġreservations\":24722,\"NR\":24723,\"female\":24724,\"Ġsaturated\":24725,\"Ġbiblical\":24726,\"Ġtrolls\":24727,\"Device\":24728,\"photos\":24729,\"Ġdrums\":24730,\"ãĥīãĥ©ãĤ´ãĥ³\":24731,\"Night\":24732,\"fighter\":24733,\"ĠHak\":24734,\"riber\":24735,\"Ġcush\":24736,\"Ġdisciplinary\":24737,\"baum\":24738,\"ĠGH\":24739,\"ĠSchmidt\":24740,\"ilibrium\":24741,\"Ġsixty\":24742,\"ĠKushner\":24743,\"rots\":24744,\"Ġpund\":24745,\"ĠRac\":24746,\"Ġsprings\":24747,\"Ġconve\":24748,\"Business\":24749,\"Fall\":24750,\"Ġqualifications\":24751,\"Ġverses\":24752,\"Ġnarciss\":24753,\"ĠKoh\":24754,\"ĠWow\":24755,\"ĠCharlottesville\":24756,\"edo\":24757,\"Ġinterrogation\":24758,\"ĠWool\":24759,\"365\":24760,\"Brian\":24761,\"Ġâľĵ\":24762,\"Ġalleges\":24763,\"onds\":24764,\"idation\":24765,\"ĠJackie\":24766,\"yu\":24767,\"Ġlakes\":24768,\"Ġworthwhile\":24769,\"Ġcrystals\":24770,\"ĠJuda\":24771,\"Ġcomprehend\":24772,\"Ġflush\":24773,\"Ġabsorption\":24774,\"ĠOC\":24775,\"Ġfrightened\":24776,\"ĠChocolate\":24777,\"Martin\":24778,\"Ġbuys\":24779,\"Ġbucks\":24780,\"Ġappell\":24781,\"ĠChampionships\":24782,\"Ġlistener\":24783,\"ĠDefensive\":24784,\"Ġcz\":24785,\"uds\":24786,\"ĠMate\":24787,\"Ġreplay\":24788,\"Ġdecorated\":24789,\"Ġsunk\":24790,\"ĠVIP\":24791,\"ĠAnk\":24792,\"Ġ195\":24793,\"aaaa\":24794,\"Nobody\":24795,\"ĠMilk\":24796,\"ĠGur\":24797,\"ĠMk\":24798,\"ĠSara\":24799,\"Ġseating\":24800,\"ĠWid\":24801,\"Track\":24802,\"Ġemploys\":24803,\"Ġgigantic\":24804,\"APP\":24805,\"ãĤ§\":24806,\"inventory\":24807,\"Ġtowel\":24808,\"atche\":24809,\"lasting\":24810,\"ĠTL\":24811,\"Ġlatency\":24812,\"Ġkne\":24813,\"Ber\":24814,\"meaning\":24815,\"Ġupheld\":24816,\"Ġplayground\":24817,\"Ġmant\":24818,\"Side\":24819,\"Ġstereo\":24820,\"Ġnorthwest\":24821,\"Ġexceptionally\":24822,\"Ġrays\":24823,\"Ġrecurring\":24824,\"Drive\":24825,\"Ġupright\":24826,\"Ġabduct\":24827,\"ĠMarathon\":24828,\"Ġgoodbye\":24829,\"Ġalphabet\":24830,\"hp\":24831,\"Ġcourtroom\":24832,\"rington\":24833,\"othing\":24834,\"Tag\":24835,\"Ġdiplomats\":24836,\"Ġbarbar\":24837,\"ĠAqua\":24838,\"183\":24839,\"3333\":24840,\"Ġmaturity\":24841,\"Ġinstability\":24842,\"ĠApache\":24843,\"Ġ===\":24844,\"Ġfasting\":24845,\"ĠGrid\":24846,\"ModLoader\":24847,\"Ġ152\":24848,\"Abs\":24849,\"ĠOperating\":24850,\"etti\":24851,\"Ġacquaint\":24852,\"Donnell\":24853,\"ĠKem\":24854,\"ĠForge\":24855,\"Ġarmored\":24856,\"Mil\":24857,\"Ġphilosophers\":24858,\"invest\":24859,\"Players\":24860,\"âĪ\":24861,\"Ġmyriad\":24862,\"Ġcomrades\":24863,\"Rot\":24864,\"Ġremembering\":24865,\"Ġcorresponds\":24866,\"Ġprogrammers\":24867,\"ĠLynn\":24868,\"Ġolig\":24869,\"Ġcoherent\":24870,\"ynchron\":24871,\"ĠChemical\":24872,\"Ġjugg\":24873,\"pair\":24874,\"posts\":24875,\"Eye\":24876,\"ĠInner\":24877,\"Ġsemester\":24878,\"ottest\":24879,\"ĠEmirates\":24880,\"ricanes\":24881,\"orously\":24882,\"mits\":24883,\"ĠWis\":24884,\"Ġdodge\":24885,\"location\":24886,\"Ġfaded\":24887,\"Amazon\":24888,\"ĠProceed\":24889,\"ĠINFO\":24890,\"journal\":24891,\"ĠTruck\":24892,\"Ten\":24893,\"Ġ217\":24894,\"Ġstatutes\":24895,\"mobile\":24896,\"ĠTypes\":24897,\"Recomm\":24898,\"buster\":24899,\"pex\":24900,\"Ġlegends\":24901,\"Ġheadache\":24902,\"faced\":24903,\"ĠWiFi\":24904,\"ifty\":24905,\"ĠHER\":24906,\"Ġcircuits\":24907,\"ERROR\":24908,\"226\":24909,\"olin\":24910,\"Ġcylinder\":24911,\"ospace\":24912,\"ikers\":24913,\"Prem\":24914,\"Quant\":24915,\"Ġconflicting\":24916,\"Ġslightest\":24917,\"Ġforged\":24918,\"ionage\":24919,\"Stephen\":24920,\"ĠKub\":24921,\"ĠOpportun\":24922,\"ĠHeal\":24923,\"Ġblo\":24924,\"Ġrulers\":24925,\"Ġhuh\":24926,\"Ġsubmarine\":24927,\"fy\":24928,\"asser\":24929,\"Ġallowance\":24930,\"ĠKasich\":24931,\"ĠTas\":24932,\"ĠAustralians\":24933,\"ForgeModLoader\":24934,\"ĠâĨĳ\":24935,\"ĠMatrix\":24936,\"amins\":24937,\"Ġ1200\":24938,\"ĠAcqu\":24939,\"236\":24940,\"Document\":24941,\"ĠBreaking\":24942,\"193\":24943,\"ĠSubst\":24944,\"ĠRoller\":24945,\"ĠProperties\":24946,\"ĠNI\":24947,\"tier\":24948,\"Ġcrushing\":24949,\"Ġadvocating\":24950,\"Furthermore\":24951,\"keepers\":24952,\"Ġsexism\":24953,\"xd\":24954,\"Ġcaller\":24955,\"ĠSense\":24956,\"chieve\":24957,\"ĠTF\":24958,\"Ġfueled\":24959,\"Ġreminiscent\":24960,\"Ġobsess\":24961,\"urst\":24962,\"Ġuphold\":24963,\"ĠFans\":24964,\"hetics\":24965,\"ĠâĹ\":24966,\"ĠBath\":24967,\"Ġbeverage\":24968,\"Ġoscill\":24969,\"254\":24970,\"Ġpoles\":24971,\"Ġgradual\":24972,\"Ġexting\":24973,\"ĠSuff\":24974,\"ĠSuddenly\":24975,\"Ġliking\":24976,\"Ġ1949\":24977,\"unciation\":24978,\"amination\":24979,\"ĠOmar\":24980,\"ĠLV\":24981,\"ĠConsequently\":24982,\"Ġsynthes\":24983,\"ĠGIF\":24984,\"Ġpains\":24985,\"Ġinteracting\":24986,\"uously\":24987,\"incre\":24988,\"Ġrumor\":24989,\"ĠScientology\":24990,\"197\":24991,\"ĠZig\":24992,\"Ġspelling\":24993,\"ĠASS\":24994,\"Ġextingu\":24995,\"mson\":24996,\"Ġgh\":24997,\"Ġremarked\":24998,\"ĠStrategic\":24999,\"ĠMON\":25000,\"å¥\":25001,\"gae\":25002,\"ĠWHAT\":25003,\"Eric\":25004,\"ĠCampus\":25005,\"Ġmethane\":25006,\"Ġimagin\":25007,\"JUST\":25008,\"ĠAlm\":25009,\"XT\":25010,\"iq\":25011,\"ĠRSS\":25012,\"Ġwrongdoing\":25013,\"atta\":25014,\"Ġbigot\":25015,\"Ġdemonstrators\":25016,\"ĠCalvin\":25017,\"ĠVilla\":25018,\"Ġmembrane\":25019,\"ĠAwesome\":25020,\"Ġbenefic\":25021,\"268\":25022,\"Ġmagnificent\":25023,\"ĠLots\":25024,\"Greg\":25025,\"ĠBoris\":25026,\"Ġdetainees\":25027,\"ĠHerman\":25028,\"Ġwhispered\":25029,\"Ġawe\":25030,\"Professor\":25031,\"funding\":25032,\"Ġphysiological\":25033,\"ĠDestruction\":25034,\"Ġlimb\":25035,\"Ġmanipulated\":25036,\"Ġbubbles\":25037,\"Ġpseud\":25038,\"Ġhydra\":25039,\"ĠBristol\":25040,\"Ġstellar\":25041,\"ĠExpansion\":25042,\"ĠKell\":25043,\"ĠInterestingly\":25044,\"Ġmans\":25045,\"Ġdragging\":25046,\"Ġecological\":25047,\"ĠFit\":25048,\"Ġgent\":25049,\"Ġbenefited\":25050,\"ĠHaiti\":25051,\"Ġpolyg\":25052,\"ãĥİ\":25053,\"Ġ2030\":25054,\"Ġprow\":25055,\"Ġreconstruction\":25056,\"Ġwast\":25057,\"Ġpsychic\":25058,\"ĠGreeks\":25059,\"Handler\":25060,\"162\":25061,\"ĠPulse\":25062,\"Ġsolicit\":25063,\"Ġsys\":25064,\"Ġinflux\":25065,\"ĠGentle\":25066,\"percent\":25067,\"Ġproliferation\":25068,\"Ġtaxable\":25069,\"Ġdisregard\":25070,\"Ġescaping\":25071,\"Ġginger\":25072,\"Ġwithstand\":25073,\"Ġdevastated\":25074,\"ĠDew\":25075,\"series\":25076,\"Ġinjected\":25077,\"elaide\":25078,\"Ġturnover\":25079,\"heat\":25080,\"ĻĤ\":25081,\"Happy\":25082,\"ĠSilent\":25083,\"ãĤŃ\":25084,\"ivism\":25085,\"Ġirrational\":25086,\"AMA\":25087,\"Ġreef\":25088,\"rub\":25089,\"Ġ162\":25090,\"Ġbankers\":25091,\"ĠEthics\":25092,\"vv\":25093,\"Ġcriticisms\":25094,\"Kn\":25095,\"186\":25096,\"Movie\":25097,\"ĠTories\":25098,\"Ġnood\":25099,\"Ġdistortion\":25100,\"False\":25101,\"odore\":25102,\"Ġtasty\":25103,\"Research\":25104,\"ĠUID\":25105,\"-)\":25106,\"Ġdivorced\":25107,\"ĠMU\":25108,\"ĠHayes\":25109,\"ĠIsn\":25110,\"iani\":25111,\"ĠHQ\":25112,\"Ġ\\\"#\":25113,\"ignant\":25114,\"Ġtraumatic\":25115,\"ĠLing\":25116,\"Hun\":25117,\"Ġsabot\":25118,\"online\":25119,\"random\":25120,\"Ġrenamed\":25121,\"rared\":25122,\"KA\":25123,\"dead\":25124,\"Ã©t\":25125,\"ĠAssistance\":25126,\"Ġseaf\":25127,\"++++++++\":25128,\"Ġseldom\":25129,\"ĠWebb\":25130,\"Ġboolean\":25131,\"ulet\":25132,\"Ġrefrain\":25133,\"ĠDIY\":25134,\"rule\":25135,\"Ġshutting\":25136,\"Ġutilizing\":25137,\"loading\":25138,\"ĠParam\":25139,\"coal\":25140,\"ooter\":25141,\"Ġattracting\":25142,\"ĠDol\":25143,\"Ġhers\":25144,\"agnetic\":25145,\"ĠReach\":25146,\"imo\":25147,\"Ġdiscarded\":25148,\"ĠPip\":25149,\"015\":25150,\"Ã¼r\":25151,\"Ġmug\":25152,\"Imagine\":25153,\"COL\":25154,\"Ġcursed\":25155,\"ĠShows\":25156,\"ĠCurtis\":25157,\"ĠSachs\":25158,\"speaking\":25159,\"ĠVista\":25160,\"ĠFramework\":25161,\"ongo\":25162,\"Ġsubreddit\":25163,\"Ġcrus\":25164,\"ĠOval\":25165,\"Row\":25166,\"growing\":25167,\"Ġinstallment\":25168,\"Ġglac\":25169,\"ĠAdvance\":25170,\"ECK\":25171,\"ĠLGBTQ\":25172,\"LEY\":25173,\"Ġacet\":25174,\"Ġsuccessive\":25175,\"ĠNicole\":25176,\"Ġ1957\":25177,\"Quote\":25178,\"Ġcircumstance\":25179,\"ackets\":25180,\"Ġ142\":25181,\"ortium\":25182,\"Ġguessed\":25183,\"ĠFrame\":25184,\"Ġperpetrators\":25185,\"ĠAviation\":25186,\"ĠBench\":25187,\"Ġhandc\":25188,\"Ap\":25189,\"Ġ1956\":25190,\"259\":25191,\"rand\":25192,\"NetMessage\":25193,\"din\":25194,\"urtles\":25195,\"hig\":25196,\"ĠVIII\":25197,\"ffiti\":25198,\"ĠSwords\":25199,\"bial\":25200,\"Ġkidnapping\":25201,\"device\":25202,\"Ġbarn\":25203,\"ĠEli\":25204,\"aucas\":25205,\"Send\":25206,\"Constructed\":25207,\"ĠÂ½\":25208,\"Ġneedles\":25209,\"Ġadvertisements\":25210,\"Ġvou\":25211,\"Ġexhibited\":25212,\"ĠFortress\":25213,\"Ask\":25214,\"Berry\":25215,\"TYPE\":25216,\"Ġcancers\":25217,\"umping\":25218,\"ĠTerritory\":25219,\"Ġprud\":25220,\"Ġnas\":25221,\"Ġatheist\":25222,\"Ġbalances\":25223,\"ãģŁ\":25224,\"ĠShawn\":25225,\"&&\":25226,\"Ġlandsc\":25227,\"ĠRGB\":25228,\"Ġpetty\":25229,\"Ġexcellence\":25230,\"Ġtranslations\":25231,\"Ġparcel\":25232,\"ĠChev\":25233,\"East\":25234,\"ĠOutput\":25235,\"imi\":25236,\"Ġambient\":25237,\"ĠThreat\":25238,\"Ġvillains\":25239,\"Ġ550\":25240,\"ICA\":25241,\"Ġtaller\":25242,\"Ġleaking\":25243,\"cup\":25244,\"Ġpolish\":25245,\"Ġinfectious\":25246,\"ĠKC\":25247,\"Ġ@@\":25248,\"background\":25249,\"Ġbureaucracy\":25250,\"ĠSai\":25251,\"unless\":25252,\"itious\":25253,\"ĠSkype\":25254,\"Atl\":25255,\"IDENT\":25256,\"008\":25257,\"Ġhypocr\":25258,\"Ġpitchers\":25259,\"Ġguessing\":25260,\"ĠFINAL\":25261,\"Between\":25262,\"Ġvillagers\":25263,\"Ġ252\":25264,\"fashion\":25265,\"ĠTunis\":25266,\"Beh\":25267,\"ĠExc\":25268,\"ĠMID\":25269,\"288\":25270,\"ĠHaskell\":25271,\"196\":25272,\"ĠNOR\":25273,\"Ġspecs\":25274,\"Ġinvari\":25275,\"Ġglut\":25276,\"ĠCars\":25277,\"Ġimpulse\":25278,\"Ġhonors\":25279,\"gel\":25280,\"Ġjurisdictions\":25281,\"ĠBundle\":25282,\"ulas\":25283,\"California\":25284,\"ĠIncrease\":25285,\"Ġpear\":25286,\"Ġsingles\":25287,\"Ġcues\":25288,\"Ġunderwent\":25289,\"ĠWS\":25290,\"Ġexaggerated\":25291,\"Ġdubious\":25292,\"Ġflashing\":25293,\"LOG\":25294,\")].\":25295,\"Journal\":25296,\"tg\":25297,\"Van\":25298,\"ĠIstanbul\":25299,\"ĠInsp\":25300,\"ĠFranken\":25301,\"Draw\":25302,\"Ġsadness\":25303,\"Ġironic\":25304,\"ĠFry\":25305,\"xc\":25306,\"Ġ164\":25307,\"isch\":25308,\"Way\":25309,\"ĠProtestant\":25310,\"horn\":25311,\"Ġunaff\":25312,\"ĠViv\":25313,\"illas\":25314,\"ĠProductions\":25315,\"ĠHogan\":25316,\"Ġperimeter\":25317,\"ĠSisters\":25318,\"Ġspontaneous\":25319,\"Ġdownside\":25320,\"Ġdescendants\":25321,\"Ġorn\":25322,\"worm\":25323,\"Japanese\":25324,\"Ġ1955\":25325,\"Ġ151\":25326,\"ĠDoing\":25327,\"elsen\":25328,\"umbles\":25329,\"Ġradically\":25330,\"ĠDrum\":25331,\"ĠBach\":25332,\"Ġliabilities\":25333,\"ĠOB\":25334,\"ĠElementary\":25335,\"Ġmeme\":25336,\"ynes\":25337,\"Ġfingerprint\":25338,\"ĠGrab\":25339,\"Ġundertake\":25340,\"Members\":25341,\"ĠReader\":25342,\"ĠSims\":25343,\"god\":25344,\"Ġhypothetical\":25345,\"scient\":25346,\"ĠAJ\":25347,\"Ġcharism\":25348,\"Ġadmissions\":25349,\"ĠMissile\":25350,\"trade\":25351,\"Ġexercising\":25352,\"ĠBackground\":25353,\"Written\":25354,\"Ġvocals\":25355,\"whether\":25356,\"Ġvi\":25357,\"ĠWinner\":25358,\"Ġlitter\":25359,\"ĠShooting\":25360,\"STEM\":25361,\"ãĤ¡\":25362,\"ĠAFL\":25363,\"Ġvariability\":25364,\"Ġeats\":25365,\"ĠDPS\":25366,\"brow\":25367,\"Ġelephants\":25368,\"Ġstrat\":25369,\"ĠÅ\":25370,\"Ġsettlers\":25371,\"Matthew\":25372,\"Ġinadvert\":25373,\"HI\":25374,\"ĠIMF\":25375,\"ĠGoal\":25376,\"Ġnerves\":25377,\"Johnson\":25378,\"eye\":25379,\"ablishment\":25380,\"Thursday\":25381,\"BILITY\":25382,\"Had\":25383,\"amoto\":25384,\"hetamine\":25385,\"eps\":25386,\"Ġmitochond\":25387,\"Ġcompressed\":25388,\"ĠTrevor\":25389,\"ĠAnimals\":25390,\"Tool\":25391,\"Lock\":25392,\"Ġtweak\":25393,\"Ġpinch\":25394,\"Ġcancellation\":25395,\"Pot\":25396,\"Ġfocal\":25397,\"ĠAstron\":25398,\"173\":25399,\"ĠASC\":25400,\"ĠOTHER\":25401,\"umni\":25402,\"Ġdemise\":25403,\"dl\":25404,\"Ùħ\":25405,\"Semitism\":25406,\"Ġcracking\":25407,\"Ġcollaborative\":25408,\"Ġexplores\":25409,\"sql\":25410,\"Ġherbs\":25411,\"Ġconfigurations\":25412,\"mis\":25413,\"ĠResult\":25414,\"acey\":25415,\"ĠSmoke\":25416,\"Ġsanct\":25417,\"elia\":25418,\"Ġdegener\":25419,\"Ġdeepest\":25420,\"Ġscreamed\":25421,\"Ġnap\":25422,\"Software\":25423,\"ĠSTAR\":25424,\"EF\":25425,\"ĠXin\":25426,\"sponsored\":25427,\"manship\":25428,\"233\":25429,\"Ġprimaries\":25430,\"Ġfiltering\":25431,\"Ġassemble\":25432,\"mil\":25433,\"ĠMyers\":25434,\"bows\":25435,\"Ġpunched\":25436,\"Mic\":25437,\"Ġinnovations\":25438,\"Ġfunc\":25439,\"ando\":25440,\"Ġfracking\":25441,\"ĠVul\":25442,\"Ð¾Ð\":25443,\"oshop\":25444,\"ĠImmun\":25445,\"Ġsettling\":25446,\"Ġadolescents\":25447,\"Ġrebuilding\":25448,\"Ġtransforming\":25449,\"Ġparole\":25450,\"Ġharbor\":25451,\"Ġbooking\":25452,\"otional\":25453,\"ongevity\":25454,\"ĠYo\":25455,\"bug\":25456,\"Ġemerges\":25457,\"ĠMethods\":25458,\"ĠChu\":25459,\"Pres\":25460,\"ĠDungeons\":25461,\"Ġtrailing\":25462,\"ĠRum\":25463,\"ĠHugh\":25464,\"å¤©\":25465,\"ĠEra\":25466,\"ĠBattles\":25467,\"Results\":25468,\"ĠTrading\":25469,\"Ġversa\":25470,\"css\":25471,\"axies\":25472,\"heet\":25473,\"Ġgreed\":25474,\"1989\":25475,\"Ġgardens\":25476,\"Ġcontingent\":25477,\"Park\":25478,\"ĠLeafs\":25479,\"hook\":25480,\"robe\":25481,\"Ġdiplomacy\":25482,\"ĠFuel\":25483,\"ĠInvasion\":25484,\"Ġupgrading\":25485,\"Male\":25486,\"Ġelic\":25487,\"Ġrelentless\":25488,\"ĠCovenant\":25489,\"apesh\":25490,\"ĠTrop\":25491,\"Ty\":25492,\"production\":25493,\"arty\":25494,\"Ġpunches\":25495,\"ako\":25496,\"cyclopedia\":25497,\"ĠRabbit\":25498,\"ĠHDMI\":25499,\"Ġ141\":25500,\"Ġfoil\":25501,\"ItemImage\":25502,\"ĠFG\":25503,\"Ġimplementations\":25504,\"ĠPom\":25505,\"ixtures\":25506,\"Ġawait\":25507,\"Ġ330\":25508,\"amus\":25509,\"Ġumbrella\":25510,\"Ġforesee\":25511,\"separ\":25512,\"Ġcircumcision\":25513,\"Ġperipheral\":25514,\"Say\":25515,\"ĠExpert\":25516,\"Inc\":25517,\"Ġwithdrew\":25518,\"ĠAnders\":25519,\"fried\":25520,\"Ġradioactive\":25521,\"ĠOpening\":25522,\"Ġboarding\":25523,\"ĠND\":25524,\"Ġoverthrow\":25525,\"Activ\":25526,\"WP\":25527,\"ĠActs\":25528,\"×Ļ\":25529,\"Ġmotions\":25530,\"vic\":25531,\"ĠMighty\":25532,\"ĠDefender\":25533,\"aer\":25534,\"Ġthankful\":25535,\"ĠKilling\":25536,\"ĠBris\":25537,\"moil\":25538,\"Ġpredicting\":25539,\"266\":25540,\"choice\":25541,\"Ġkillers\":25542,\"Ġincub\":25543,\"ĠChest\":25544,\"athering\":25545,\"Ġproclaimed\":25546,\"flower\":25547,\"ossom\":25548,\"umbledore\":25549,\"ĠCycling\":25550,\"ĠOccupy\":25551,\"AGES\":25552,\"Pen\":25553,\"ĠYug\":25554,\"Ġpackaged\":25555,\"Ġheightened\":25556,\"cot\":25557,\"stack\":25558,\"Cond\":25559,\"Ġstamps\":25560,\"mage\":25561,\"Ġpersuaded\":25562,\"Ġensl\":25563,\"ĠCardinal\":25564,\"Ġsolitary\":25565,\"Ġpossessing\":25566,\"ĠCork\":25567,\"Ġevid\":25568,\"ĠTay\":25569,\"Ġblues\":25570,\"Ġextremism\":25571,\"Ġlunar\":25572,\"Ġclown\":25573,\"Techn\":25574,\"Ġfestivals\":25575,\"ĠPvP\":25576,\"ĠLar\":25577,\"Ġconsequently\":25578,\"present\":25579,\"Ġsomeday\":25580,\"çİĭ\":25581,\"ĠMeteor\":25582,\"Ġtouring\":25583,\"culture\":25584,\"Ġbeaches\":25585,\"Ship\":25586,\"cause\":25587,\"ĠFlood\":25588,\"ãĥ¯\":25589,\"Ġpurity\":25590,\"those\":25591,\"Ġemission\":25592,\"bolt\":25593,\"Ġchord\":25594,\"ĠScripture\":25595,\"Lu\":25596,\"Ġ${\":25597,\"created\":25598,\"Others\":25599,\"258\":25600,\"Ġelemental\":25601,\"Ġannoyed\":25602,\"ĠAE\":25603,\"dan\":25604,\"ĠSag\":25605,\"Researchers\":25606,\"Ġfairy\":25607,\"âĢĵâĢĵ\":25608,\"============\":25609,\"Smart\":25610,\"GGGG\":25611,\"Ġskeletons\":25612,\"Ġpupils\":25613,\"linked\":25614,\"Ġurgency\":25615,\"enabled\":25616,\"ĠFuck\":25617,\"Ġcouncill\":25618,\"rab\":25619,\"UAL\":25620,\"TI\":25621,\"Ġlifes\":25622,\"Ġconfessed\":25623,\"Bug\":25624,\"Ġharmon\":25625,\"ĠCONFIG\":25626,\"ĠNeutral\":25627,\"Double\":25628,\"Ġstaple\":25629,\"ĠSHA\":25630,\"British\":25631,\"ĠSNP\":25632,\"ATOR\":25633,\"oco\":25634,\"Ġswinging\":25635,\"gex\":25636,\"oleon\":25637,\"plain\":25638,\"ĠMissing\":25639,\"ĠTrophy\":25640,\"vari\":25641,\"ranch\":25642,\"Ġ301\":25643,\"440\":25644,\"0000000000000000\":25645,\"Ġrestoring\":25646,\"Ġhaul\":25647,\"ucing\":25648,\"nerg\":25649,\"Ġfutures\":25650,\"Ġstrategist\":25651,\"question\":25652,\"Ġlateral\":25653,\"ĠBard\":25654,\"Ġsor\":25655,\"ĠRhodes\":25656,\"ĠDowntown\":25657,\"?????-\":25658,\"ĠLit\":25659,\"ĠBened\":25660,\"Ġcoil\":25661,\"street\":25662,\"ĠPortal\":25663,\"FILE\":25664,\"ĠGru\":25665,\"*,\":25666,\"231\":25667,\"neum\":25668,\"Ġsucked\":25669,\"Ġrapper\":25670,\"Ġtendencies\":25671,\"ĠLauren\":25672,\"cellaneous\":25673,\"267\":25674,\"Ġbrowse\":25675,\"Ġoverc\":25676,\"header\":25677,\"oise\":25678,\"Ġbeet\":25679,\"ĠGle\":25680,\"Stay\":25681,\"Ġmum\":25682,\"Ġtyped\":25683,\"Ġdiscounts\":25684,\"Talk\":25685,\"ĠOg\":25686,\"existing\":25687,\"ĠSell\":25688,\"uph\":25689,\"CI\":25690,\"ĠAustrian\":25691,\"ĠWarm\":25692,\"Ġdismissal\":25693,\"Ġaverages\":25694,\"camera\":25695,\"Ġallegiance\":25696,\"LAN\":25697,\"=\\\"#\":25698,\"Ġcommentators\":25699,\"ĠSetting\":25700,\"ĠMidwest\":25701,\"Ġpharmac\":25702,\"ĠEXP\":25703,\"Ġstainless\":25704,\"Chicago\":25705,\"Ġtan\":25706,\"244\":25707,\"Ġcountryside\":25708,\"ĠVac\":25709,\"295\":25710,\"Ġpinned\":25711,\"Ġcrises\":25712,\"Ġstandardized\":25713,\"Task\":25714,\"ĠJail\":25715,\"ĠDocker\":25716,\"colored\":25717,\"forth\":25718,\"\\\"},\":25719,\"Ġpatrons\":25720,\"Ġspice\":25721,\"Ġmourn\":25722,\"ĠMood\":25723,\"Ġlaundry\":25724,\"Ġequip\":25725,\"ĠMole\":25726,\"yll\":25727,\"ĠTHC\":25728,\"nation\":25729,\"ĠSherlock\":25730,\"Ġissu\":25731,\"ĠKre\":25732,\"ĠAmericas\":25733,\"ĠAAA\":25734,\"Ġsystematically\":25735,\"Ġcontra\":25736,\"ĠSally\":25737,\"Ġrationale\":25738,\"Ġcarriage\":25739,\"Ġpeaks\":25740,\"Ġcontradiction\":25741,\"ensation\":25742,\"ĠFailure\":25743,\"Ġprops\":25744,\"Ġnamespace\":25745,\"Ġcove\":25746,\"fields\":25747,\"ãĤĭ\":25748,\"Ġwool\":25749,\"ĠCatch\":25750,\"Ġpresumed\":25751,\"ĠDiana\":25752,\"ragon\":25753,\"igi\":25754,\"Ġhamm\":25755,\"Ġstunt\":25756,\"ĠGUI\":25757,\"ĠObservatory\":25758,\"ĠShore\":25759,\"Ġsmells\":25760,\"annah\":25761,\"Ġcockpit\":25762,\"ĠDuterte\":25763,\"850\":25764,\"Ġoppressed\":25765,\"breaker\":25766,\"ĠContribut\":25767,\"ĠPeru\":25768,\"ĠMonsanto\":25769,\"ĠAttempt\":25770,\"Ġcommanding\":25771,\"Ġfridge\":25772,\"ĠRin\":25773,\"ĠChess\":25774,\"uality\":25775,\"Ġol\":25776,\"Republican\":25777,\"ĠGlory\":25778,\"ĠWIN\":25779,\".......\":25780,\"agent\":25781,\"reading\":25782,\"Ġinh\":25783,\"Jones\":25784,\"Ġclicks\":25785,\"alan\":25786,\"Ġ[];\":25787,\"ĠMajesty\":25788,\"ĠCed\":25789,\"opus\":25790,\"atel\":25791,\"Ãª\":25792,\"ARC\":25793,\"ĠEcuador\":25794,\"ãĥł\":25795,\"ĠKuro\":25796,\"Ġrituals\":25797,\"Ġcaptive\":25798,\"Ġounce\":25799,\"Ġdisagreement\":25800,\"Ġslog\":25801,\"fuel\":25802,\"Pet\":25803,\"Mail\":25804,\"Ġexercised\":25805,\"Ġsolic\":25806,\"Ġrainfall\":25807,\"Ġdevotion\":25808,\"ĠAssessment\":25809,\"Ġrobotic\":25810,\"options\":25811,\"ĠRP\":25812,\"ĠFamilies\":25813,\"ĠFlames\":25814,\"Ġassignments\":25815,\"007\":25816,\"akedown\":25817,\"Ġvocabulary\":25818,\"Reilly\":25819,\"Ġcaval\":25820,\"gars\":25821,\"Ġsuppressed\":25822,\"ĠSET\":25823,\"ĠJohns\":25824,\"Ġwarp\":25825,\"broken\":25826,\"Ġstatues\":25827,\"Ġadvocated\":25828,\"Ġ275\":25829,\"Ġperil\":25830,\"omorph\":25831,\"ĠFemin\":25832,\"perfect\":25833,\"Ġhatch\":25834,\"Lib\":25835,\"512\":25836,\"Ġlifelong\":25837,\"313\":25838,\"Ġcheeks\":25839,\"Ġnumbered\":25840,\"ĠMug\":25841,\"Body\":25842,\"ravel\":25843,\"Weight\":25844,\"ĠJak\":25845,\"ĠHeath\":25846,\"Ġkissing\":25847,\"ĠJUST\":25848,\"Ġwaving\":25849,\"upload\":25850,\"Ġinsider\":25851,\"ĠProgressive\":25852,\"ĠFilter\":25853,\"tta\":25854,\"ĠBeam\":25855,\"Ġviolently\":25856,\"ipation\":25857,\"Ġskepticism\":25858,\"Ġ1918\":25859,\"ĠAnnie\":25860,\"ĠSI\":25861,\"Ġgenetics\":25862,\"Ġonboard\":25863,\"atl\":25864,\"ĠFriedman\":25865,\"ĠBri\":25866,\"ceptive\":25867,\"Ġpirate\":25868,\"ĠReporter\":25869,\"278\":25870,\"Ġmythology\":25871,\"Ġeclipse\":25872,\"Ġskins\":25873,\"Ġglyph\":25874,\"ingham\":25875,\"Files\":25876,\"Cour\":25877,\"women\":25878,\"Ġregimes\":25879,\"Ġphotographed\":25880,\"Kat\":25881,\"ĠMAX\":25882,\"Officials\":25883,\"Ġunexpectedly\":25884,\"Ġimpressions\":25885,\"Front\":25886,\";;;;;;;;\":25887,\"Ġsupremacy\":25888,\"Ġsang\":25889,\"Ġaggravated\":25890,\"Ġabruptly\":25891,\"ĠSector\":25892,\"Ġexcuses\":25893,\"Ġcosting\":25894,\"idepress\":25895,\"Stack\":25896,\"ĠRNA\":25897,\"obil\":25898,\"Ġghosts\":25899,\"ldon\":25900,\"atibility\":25901,\"Topics\":25902,\"Ġreimburse\":25903,\"ĠHM\":25904,\"ĠDeg\":25905,\"Ġthief\":25906,\"yet\":25907,\"ogenesis\":25908,\"leaning\":25909,\"ĠKol\":25910,\"ĠBasketball\":25911,\"Ġfi\":25912,\"ĠSeeing\":25913,\"Ġrecycling\":25914,\"Ġ[-\":25915,\"Congress\":25916,\"Ġlectures\":25917,\"Psy\":25918,\"Ġnep\":25919,\"Ġmaid\":25920,\"Ġoriented\":25921,\"AX\":25922,\"Ġrespectful\":25923,\"rene\":25924,\"flush\":25925,\"ĠUnloaded\":25926,\"request\":25927,\"grid\":25928,\"ĠAlternatively\":25929,\"ĠHugo\":25930,\"Ġdecree\":25931,\"ĠBuddhism\":25932,\"andum\":25933,\"Android\":25934,\"ĠCongo\":25935,\"ĠJoyce\":25936,\"Ġacknowledging\":25937,\"hesive\":25938,\"ĠTomorrow\":25939,\"ĠHiro\":25940,\"thren\":25941,\"ĠMaced\":25942,\"Ġhoax\":25943,\"ĠIncreased\":25944,\"ĠPradesh\":25945,\"Wild\":25946,\"______\":25947,\"161\":25948,\"Ġaunt\":25949,\"Ġdistributing\":25950,\"ĠTucker\":25951,\"ĠSSL\":25952,\"ĠWolves\":25953,\"Building\":25954,\"oult\":25955,\"ĠLuo\":25956,\"ĠYas\":25957,\"ĠSpir\":25958,\"ĠShape\":25959,\"ĠCambod\":25960,\"ĠIPv\":25961,\"Ġml\":25962,\"Ġextrad\":25963,\"390\":25964,\"ĠPenny\":25965,\"dream\":25966,\"Ġstationed\":25967,\"optional\":25968,\"eworthy\":25969,\".</\":25970,\"Ġundertaking\":25971,\"Ġchickens\":25972,\"Ġstimuli\":25973,\"ĠElse\":25974,\"igators\":25975,\"ĠBeginning\":25976,\"ctory\":25977,\"Ġprepares\":25978,\"Ġdelta\":25979,\"Ġvicinity\":25980,\"tool\":25981,\"Ġworkshops\":25982,\"MHz\":25983,\"Ġaccusation\":25984,\"Ġhistories\":25985,\"ropolis\":25986,\"ĠChurchill\":25987,\"Ġneon\":25988,\"Ġbaff\":25989,\"dies\":25990,\"maybe\":25991,\"Ġè£ıè¦ļéĨĴ\":25992,\"Ġsymptom\":25993,\"ECH\":25994,\"ĠManuel\":25995,\"Ġbanana\":25996,\"ĠHB\":25997,\"Ġ****\":25998,\"ĠKoreans\":25999,\"coll\":26000,\"FB\":26001,\"Ġpraying\":26002,\"ĠCannot\":26003,\"ĠMile\":26004,\"Ġembracing\":26005,\"ĠSilk\":26006,\"393\":26007,\"oters\":26008,\"FD\":26009,\"Ġdaylight\":26010,\"alias\":26011,\"ĠBrigade\":26012,\"ĠHannah\":26013,\"Ġclergy\":26014,\"Ġsoutheast\":26015,\"Ġalcoholic\":26016,\"Ġproposes\":26017,\"livion\":26018,\"Ġcalculating\":26019,\"Ġstimulate\":26020,\"Ġsplitting\":26021,\"eight\":26022,\"ĠIndy\":26023,\"plays\":26024,\"ĠPik\":26025,\"Ġdomest\":26026,\"Ġforgiveness\":26027,\"ĠRings\":26028,\"patient\":26029,\"kinson\":26030,\"Mont\":26031,\"igible\":26032,\";\\\"\":26033,\"Ġperiodically\":26034,\"ammad\":26035,\"ĠBritt\":26036,\"pard\":26037,\"Ġarbitration\":26038,\"ĠSchneider\":26039,\"ĠCorporate\":26040,\"ĠMaya\":26041,\"Ġsnakes\":26042,\"aum\":26043,\"Ġblasted\":26044,\"Ġmysteries\":26045,\"Ġrevive\":26046,\"ocamp\":26047,\"ĠDodge\":26048,\"ĠOpera\":26049,\"279\":26050,\"Ġorphan\":26051,\"Ġspecifies\":26052,\"ĠMets\":26053,\"Duration\":26054,\"Hen\":26055,\"Ġfireworks\":26056,\"Ġprosecute\":26057,\"ĠTillerson\":26058,\"dp\":26059,\"usage\":26060,\"liness\":26061,\"ĠDebian\":26062,\"Ġ224\":26063,\"rises\":26064,\"ĠInfect\":26065,\"atra\":26066,\"ĠRR\":26067,\"ĠLor\":26068,\"diff\":26069,\"ĠCharleston\":26070,\"Ġacoustic\":26071,\"Ġamuse\":26072,\"330\":26073,\"Ġcer\":26074,\"ĠTac\":26075,\"Ġ[+\":26076,\"Ġcardiac\":26077,\"ĠRestaurant\":26078,\"ergy\":26079,\"Ġfuzz\":26080,\"Ġbites\":26081,\"Ġhazardous\":26082,\"Ġbrighter\":26083,\"rans\":26084,\"ĠStephanie\":26085,\"extra\":26086,\"RET\":26087,\"ĠChristine\":26088,\"ĠSue\":26089,\"statement\":26090,\"Ġbolster\":26091,\"Ġantit\":26092,\"Radio\":26093,\"BIT\":26094,\"ãĤ°\":26095,\"Ġvisions\":26096,\"ĠConcept\":26097,\"Ġinline\":26098,\"ĠPhilosophy\":26099,\"isans\":26100,\"ĠIrving\":26101,\"Ã£\":26102,\"taking\":26103,\"Ġinconsist\":26104,\"ĠKumar\":26105,\"Ġlig\":26106,\"ĠSchumer\":26107,\"ĠRegulations\":26108,\"ĠHz\":26109,\"thro\":26110,\"ĠVoldemort\":26111,\"ĠMED\":26112,\"ĠFrederick\":26113,\"Pad\":26114,\"221\":26115,\"Ġalleging\":26116,\"ĠCommunication\":26117,\"Ġ167\":26118,\"Ġforecasts\":26119,\"Ġspiders\":26120,\"Organ\":26121,\"ĠParticipants\":26122,\"ĠOps\":26123,\"design\":26124,\"Close\":26125,\"Ġfacto\":26126,\"Ġbombers\":26127,\"resistant\":26128,\"ategories\":26129,\"School\":26130,\"Ġhomework\":26131,\"Ġcorro\":26132,\"Tuesday\":26133,\"ĠBrendan\":26134,\"ĠMX\":26135,\"ĠTS\":26136,\"ĠStri\":26137,\"Ġstakeholders\":26138,\"ĠMillennium\":26139,\"Ġtransferring\":26140,\"Jud\":26141,\"Ġtac\":26142,\"Ġ1600\":26143,\"ĠSDK\":26144,\"rb\":26145,\"Ġinterpretations\":26146,\"ĠSG\":26147,\"Ġupstairs\":26148,\"ĠHarvest\":26149,\"Ġvagina\":26150,\"Ġingest\":26151,\"xf\":26152,\"ĠOrion\":26153,\"ĠJoey\":26154,\"Ġsandwic\":26155,\"Ġimmortal\":26156,\"Ġflipped\":26157,\"ortex\":26158,\"threatening\":26159,\"Ġsniper\":26160,\"Ġconverts\":26161,\"Ġinstallations\":26162,\"ĠBulgar\":26163,\"orsche\":26164,\"mails\":26165,\"Ġlure\":26166,\"Ġnarrowly\":26167,\"Ġgrenade\":26168,\"ĠGing\":26169,\"Ġunderwear\":26170,\"--------------\":26171,\"Ġchased\":26172,\"ĠVAL\":26173,\"Ġparenting\":26174,\"ĠHamb\":26175,\"ĠBlaz\":26176,\"Ġanarchist\":26177,\"ĠMedian\":26178,\"ĠPrograms\":26179,\"Î½\":26180,\"Ġobj\":26181,\"ĠNokia\":26182,\"orman\":26183,\"anqu\":26184,\"atism\":26185,\"opa\":26186,\"Ġfulfilling\":26187,\"Ġpuppy\":26188,\"Ġentit\":26189,\"ĠSebastian\":26190,\"Ġshooters\":26191,\"Ġricher\":26192,\"è¡\":26193,\"Ġtempted\":26194,\"ĠATT\":26195,\"ĠCV\":26196,\"Ġtore\":26197,\"Resource\":26198,\"ĠDevils\":26199,\"408\":26200,\"inational\":26201,\"Ġassurance\":26202,\"ĠDarren\":26203,\"Ġwhichever\":26204,\"posure\":26205,\"Ġfury\":26206,\"Stock\":26207,\"Ġuniversally\":26208,\"response\":26209,\"Ġoak\":26210,\"Ġworkload\":26211,\"ĠCorner\":26212,\"eele\":26213,\"\\\"...\":26214,\"Ġdeprived\":26215,\"kowski\":26216,\"Ġcasts\":26217,\"Ġaffiliation\":26218,\"ĠAch\":26219,\"ĠAsked\":26220,\"athe\":26221,\"Ġlact\":26222,\"ĠThu\":26223,\"rm\":26224,\"Ġairlines\":26225,\"Ġnotions\":26226,\"Format\":26227,\"ĠFAA\":26228,\"ãĥĬ\":26229,\"driver\":26230,\"Ġtranscend\":26231,\"Settings\":26232,\"ĠProsecut\":26233,\"Ġspinal\":26234,\"Ġdefaults\":26235,\"FK\":26236,\"Ġprefers\":26237,\"rendered\":26238,\"thus\":26239,\"film\":26240,\"Ġtiger\":26241,\"ĠSpicer\":26242,\"recogn\":26243,\"ĠRugby\":26244,\"Network\":26245,\"Ġpity\":26246,\"Ġcompartment\":26247,\"casters\":26248,\"ĠMonroe\":26249,\"Ġ720\":26250,\"Ġcorrections\":26251,\"Ġdopamine\":26252,\"ĠAZ\":26253,\"Cut\":26254,\"Ġroomm\":26255,\"Ġspeculate\":26256,\"Hash\":26257,\"Ġrestrictive\":26258,\"1111\":26259,\"redible\":26260,\"onel\":26261,\"Ġrampant\":26262,\"reported\":26263,\"ĠSuite\":26264,\"ĠMinimum\":26265,\"alys\":26266,\"azard\":26267,\"loop\":26268,\"Ġlent\":26269,\"sha\":26270,\"Ġvandal\":26271,\"menu\":26272,\"ĠBoehner\":26273,\"Ġnarratives\":26274,\"Ġauthenticity\":26275,\"269\":26276,\"anic\":26277,\"duty\":26278,\"285\":26279,\"Ġthanked\":26280,\"Ġbetrayed\":26281,\"lift\":26282,\"Ġsouthwest\":26283,\"ĠDexter\":26284,\"ĠBod\":26285,\"Ġkeywords\":26286,\"Average\":26287,\"DIS\":26288,\"Ġethnicity\":26289,\"!),\":26290,\"ĠNationals\":26291,\"á¹\":26292,\"ĠTah\":26293,\"ioxid\":26294,\"Ġwidget\":26295,\"Ġpasta\":26296,\"Ġbilling\":26297,\"Ġtrilogy\":26298,\"ĠLines\":26299,\"Ġsniff\":26300,\"Ġnephew\":26301,\"Late\":26302,\"Ġprincip\":26303,\"ĠLoop\":26304,\"ĠMarxist\":26305,\"Ġdissolved\":26306,\"Ġcontexts\":26307,\"ĠAmount\":26308,\"ĠSpike\":26309,\"Ġtotals\":26310,\"Ġorganizer\":26311,\"Ġuprising\":26312,\"ships\":26313,\"YY\":26314,\"ĠNortheast\":26315,\"money\":26316,\"gradation\":26317,\"Ġgoalkeeper\":26318,\"ĠHear\":26319,\"Ġsteak\":26320,\"ĠBuzzFeed\":26321,\"Ġsolemn\":26322,\"ĠScand\":26323,\"Ġpopping\":26324,\"Ġadhere\":26325,\"ĠAlleg\":26326,\"byte\":26327,\"ĠWolver\":26328,\"Ġunin\":26329,\"Ġrecol\":26330,\"itud\":26331,\"Ġmimic\":26332,\"ibus\":26333,\"Ġpredicts\":26334,\"ĠKeeper\":26335,\"iating\":26336,\"Ġdeception\":26337,\"Ġlearnt\":26338,\"Ġdiary\":26339,\"Ġconditional\":26340,\"Ġrelic\":26341,\"Ġinvoke\":26342,\"ienced\":26343,\"åĪ\":26344,\"ĠPont\":26345,\"Ġcellphone\":26346,\"Ġspeeding\":26347,\"Ġtackling\":26348,\"Ġnude\":26349,\"opened\":26350,\"ĠManafort\":26351,\"Ġ1952\":26352,\"Ġmajors\":26353,\"ĠSilence\":26354,\"Ġlogistics\":26355,\"Ġweighted\":26356,\"ĠPsychiat\":26357,\"\\\":[\\\"\":26358,\"Ġsickness\":26359,\"Ġdividends\":26360,\"zon\":26361,\"Release\":26362,\"ĠKeys\":26363,\"ĠIch\":26364,\"Ġenz\":26365,\"ĠFernand\":26366,\"ĠÎ±\":26367,\"Ġmeanings\":26368,\"Ġpenny\":26369,\"Ġstern\":26370,\"Ġlar\":26371,\"ĠPublished\":26372,\"Ġbackdrop\":26373,\"Kim\":26374,\"ĠSynt\":26375,\"Ġdebuted\":26376,\"wm\":26377,\"ĠIsle\":26378,\"Ġregulating\":26379,\"otti\":26380,\"ĠScholars\":26381,\"icester\":26382,\"ĠChef\":26383,\"Ġpops\":26384,\"ĠLauncher\":26385,\"ĠVarious\":26386,\"Ġcommenting\":26387,\"oslav\":26388,\"enzie\":26389,\"Ġrivalry\":26390,\"âĤ¬\":26391,\"Really\":26392,\"Ġorc\":26393,\"Ġbean\":26394,\"ĠJudy\":26395,\"Notice\":26396,\"ĠBike\":26397,\"?]\":26398,\"Ġrented\":26399,\"sten\":26400,\"Ġforefront\":26401,\"ĠBaldwin\":26402,\"Ġyielded\":26403,\"tails\":26404,\"Prime\":26405,\"ĠSources\":26406,\"icator\":26407,\"Sean\":26408,\"Ġmarching\":26409,\"Output\":26410,\"ĠJungle\":26411,\"Ġreside\":26412,\"zzle\":26413,\"ĠAndrews\":26414,\"Ġtorque\":26415,\"Basic\":26416,\"Actually\":26417,\"strap\":26418,\"penter\":26419,\"Ġexams\":26420,\"ĠYa\":26421,\"Ġ159\":26422,\"ĠDecision\":26423,\"Ġransom\":26424,\"eteenth\":26425,\"ensing\":26426,\"213\":26427,\"Ġsunset\":26428,\"404\":26429,\"ĠRapid\":26430,\"ĠHein\":26431,\"ĠAboriginal\":26432,\"Ġorganism\":26433,\"ĠSever\":26434,\"Ġcla\":26435,\"aji\":26436,\"Simple\":26437,\"ĠFlavor\":26438,\"ĠEval\":26439,\"prus\":26440,\"Ġchorus\":26441,\"DAY\":26442,\"Ġdenounced\":26443,\"Ġbiography\":26444,\"ĠTurnbull\":26445,\"Recent\":26446,\"Normal\":26447,\"lections\":26448,\"Word\":26449,\"Ġferry\":26450,\"ĠWagner\":26451,\"hom\":26452,\"Unit\":26453,\"Ġsupermarket\":26454,\"ĠSith\":26455,\"Ġnominees\":26456,\"Ġdictatorship\":26457,\"iddler\":26458,\"Ġannounces\":26459,\"ĠThem\":26460,\"ĠNeptune\":26461,\"Ġdeity\":26462,\"ĠYi\":26463,\"Ġmonarch\":26464,\"ARR\":26465,\"Ġinvaded\":26466,\"ĠHok\":26467,\"untary\":26468,\"Certain\":26469,\"ega\":26470,\"Ġkidding\":26471,\"ĠRegulation\":26472,\"Ġtray\":26473,\"Ġphotographers\":26474,\"ĠArcane\":26475,\"Ġdischarged\":26476,\"Ġevangelical\":26477,\"Ġinterchange\":26478,\"Ġfilmmaker\":26479,\"ĠEndless\":26480,\"Ġ290\":26481,\"ĠSalvador\":26482,\"ASY\":26483,\"ĠSignal\":26484,\"Ġwrath\":26485,\"âľ\":26486,\"lot\":26487,\"'/\":26488,\"Ġprojectile\":26489,\"Ġemploying\":26490,\"ĠInterface\":26491,\"191\":26492,\"atellite\":26493,\"ĠRath\":26494,\"package\":26495,\"Ġindications\":26496,\"Jason\":26497,\"Ġargs\":26498,\"ĠGHz\":26499,\"Ġtilt\":26500,\"nants\":26501,\"won\":26502,\"ãĤµ\":26503,\"redd\":26504,\"rescent\":26505,\"ĠCalendar\":26506,\"Ġmodular\":26507,\"Ġassisting\":26508,\"Ġredeem\":26509,\"ĠBean\":26510,\"Ġworsh\":26511,\"Ġdecentralized\":26512,\")...\":26513,\"377\":26514,\"Ġarrays\":26515,\"Ġaccomplishments\":26516,\"Î¿\":26517,\"dot\":26518,\"Ġmutually\":26519,\"Ġobstruct\":26520,\"Ġmisrepresent\":26521,\"orest\":26522,\"ionic\":26523,\"ruce\":26524,\"%;\":26525,\"Ġknowingly\":26526,\"porting\":26527,\"inently\":26528,\"Ari\":26529,\"ĠSchultz\":26530,\"Da\":26531,\"ĠCere\":26532,\"Ġobsolete\":26533,\"ħĭ\":26534,\"give\":26535,\"Ġbait\":26536,\"Ġenlarg\":26537,\"Neill\":26538,\"Ġ1933\":26539,\"Ġreconsider\":26540,\"ĠSergeant\":26541,\"ĠDiane\":26542,\"ĠCogn\":26543,\"ĠIcon\":26544,\"Position\":26545,\"Ġfost\":26546,\"Ġstirring\":26547,\"seven\":26548,\"ĠSpaceX\":26549,\"uggets\":26550,\"Ġmedd\":26551,\"Gal\":26552,\"ĠSister\":26553,\"Boy\":26554,\"Ġtriggering\":26555,\"Taking\":26556,\"Ġscreams\":26557,\"Ġcausal\":26558,\"Ġawaken\":26559,\"Arm\":26560,\"297\":26561,\"Ġdispatched\":26562,\"ĠFALSE\":26563,\"Ġorganizational\":26564,\"ĠTong\":26565,\"Ġdilemma\":26566,\"demon\":26567,\"Spl\":26568,\"Ġhooks\":26569,\"uding\":26570,\"Ġvalidate\":26571,\"Ġpotion\":26572,\"Ġclaw\":26573,\"Ġburgl\":26574,\"Ġquir\":26575,\"ACA\":26576,\"ĠBrennan\":26577,\"Ġdurability\":26578,\"Ġbombings\":26579,\"ĠWindow\":26580,\"Ġculprit\":26581,\"325\":26582,\"Therefore\":26583,\"umbered\":26584,\"performance\":26585,\"warts\":26586,\"Ġenforcing\":26587,\"ĠBlow\":26588,\"Ġreprint\":26589,\"ifax\":26590,\"alpha\":26591,\"Ġsinister\":26592,\"Ġburger\":26593,\"fighting\":26594,\"Score\":26595,\"ĠStones\":26596,\"iem\":26597,\"405\":26598,\"chemy\":26599,\"Ġvinegar\":26600,\"nom\":26601,\"Ġprevailing\":26602,\"ĠLatest\":26603,\"Â¶\":26604,\"Ġba\":26605,\"ĠWriter\":26606,\"Ġ177\":26607,\"ĠConway\":26608,\"Ġcollects\":26609,\"Ġquantitative\":26610,\"Ġhorrors\":26611,\"ogens\":26612,\"ĠSlov\":26613,\"Ġlays\":26614,\"haw\":26615,\"ĠSlash\":26616,\"Ġnightclub\":26617,\"ĠDavies\":26618,\"Ġbride\":26619,\"ĠScarlet\":26620,\"ymm\":26621,\"ĠApplications\":26622,\"velength\":26623,\"Ġrevival\":26624,\"Ġsoftly\":26625,\"Ġzoo\":26626,\"itaire\":26627,\"Cur\":26628,\"Ġelectrom\":26629,\"Ġplanting\":26630,\"OTO\":26631,\"ĠElements\":26632,\"Ġswallow\":26633,\"porter\":26634,\"Ġlaptops\":26635,\"Ġpeanut\":26636,\"Ġlobbyists\":26637,\"Î²\":26638,\"Panel\":26639,\"ĠJoan\":26640,\"imil\":26641,\"tnc\":26642,\"Ġresisted\":26643,\"Ġoutwe\":26644,\"Ġretaining\":26645,\"atri\":26646,\"Ġpoorer\":26647,\"ĠSyrians\":26648,\"ĠHammond\":26649,\"Ġweld\":26650,\"uder\":26651,\"topic\":26652,\"ĠTT\":26653,\"ricia\":26654,\"Ġthieves\":26655,\"Lic\":26656,\"ĠGust\":26657,\"ĠWays\":26658,\"areth\":26659,\"243\":26660,\"Ġbroadcaster\":26661,\"shield\":26662,\"assium\":26663,\"uble\":26664,\"Ġairstrikes\":26665,\"onso\":26666,\"Ġpedal\":26667,\"Ġcollectors\":26668,\"ĠVander\":26669,\"ĠMesa\":26670,\"Ġdictator\":26671,\"Ġdir\":26672,\"enton\":26673,\"cart\":26674,\"score\":26675,\"adder\":26676,\"Cry\":26677,\"Ġssh\":26678,\"gger\":26679,\"Ġdrunken\":26680,\"ĠGS\":26681,\"ĠSeat\":26682,\"Ġcornerback\":26683,\"Ġskipped\":26684,\"ĠResearchers\":26685,\"ĠAudi\":26686,\"Reference\":26687,\"Ġhaunted\":26688,\"Ã«\":26689,\"ĠClinic\":26690,\"cz\":26691,\"Ġps\":26692,\"ĠPaladin\":26693,\"ĠRecipe\":26694,\"Ġstigma\":26695,\"oppy\":26696,\"Ġmonkeys\":26697,\"ĠHawk\":26698,\"Sad\":26699,\"\\\"/>\":26700,\"ĠWorkshop\":26701,\"ĠRetail\":26702,\"ĠAvatar\":26703,\"625\":26704,\"Na\":26705,\"ĠVC\":26706,\"ĠSecure\":26707,\"MY\":26708,\"1988\":26709,\"ossip\":26710,\"Ġprostate\":26711,\"Ġunden\":26712,\"Ġgamer\":26713,\"ĠContents\":26714,\"ĠWarhammer\":26715,\"ĠSentinel\":26716,\"310\":26717,\"Ġsegregation\":26718,\"ĠFlex\":26719,\"ĠMAY\":26720,\"Ġdrills\":26721,\"ĠDrugs\":26722,\"Islamic\":26723,\"Ġspur\":26724,\"Ġcafe\":26725,\"Ġimaginary\":26726,\"Ġguiding\":26727,\"Ġswings\":26728,\"ĠTheme\":26729,\"oby\":26730,\"Ġnud\":26731,\"Ġbegging\":26732,\"Ġstrongh\":26733,\"Ġrejecting\":26734,\"Ġpedestrians\":26735,\"ĠProspect\":26736,\"Rare\":26737,\"sle\":26738,\"Ġconcessions\":26739,\"ĠConstitutional\":26740,\"Ġbeams\":26741,\"Ġfibers\":26742,\"poon\":26743,\"Ġinstincts\":26744,\"property\":26745,\"ĠBIG\":26746,\"Sanders\":26747,\"imates\":26748,\"Ġcoating\":26749,\"Ġcorpses\":26750,\"ĠTRUE\":26751,\"checked\":26752,\"Ġ166\":26753,\"Ash\":26754,\"ĠJS\":26755,\"ĠFiction\":26756,\"Ġcommunal\":26757,\"Ġenergetic\":26758,\"oooooooo\":26759,\"Ġnowadays\":26760,\"ILD\":26761,\"ibo\":26762,\"ĠSUV\":26763,\"Ren\":26764,\"Ġdwelling\":26765,\"Silver\":26766,\"Ġtally\":26767,\"ĠMoving\":26768,\"Ġcoward\":26769,\"Ġgenerals\":26770,\"Ġhorns\":26771,\"Ġcirculated\":26772,\"Ġrobbed\":26773,\"ĠUnlimited\":26774,\"Ġharassed\":26775,\"Ġinhibit\":26776,\"Ġcomposer\":26777,\"ĠSpotify\":26778,\"Ġspreads\":26779,\"364\":26780,\"Ġsuicidal\":26781,\"Ġnoises\":26782,\"ĠStur\":26783,\"Ġsaga\":26784,\"ĠKag\":26785,\"iso\":26786,\"Ġtheoretically\":26787,\"Money\":26788,\"Ġsimilarity\":26789,\"Ġsliced\":26790,\"utils\":26791,\"inges\":26792,\"\\\"-\":26793,\"Ġanth\":26794,\"Ġimped\":26795,\"Module\":26796,\"Throughout\":26797,\"Ġmenus\":26798,\"committee\":26799,\"andi\":26800,\"obj\":26801,\"inav\":26802,\"fired\":26803,\"ĠAbdullah\":26804,\"Ġundead\":26805,\"Ġfonts\":26806,\"Hold\":26807,\"ENG\":26808,\"Ġsustainability\":26809,\"Ġflick\":26810,\"Ġrazor\":26811,\"ĠFest\":26812,\"ĠCharacters\":26813,\"Ġwording\":26814,\"Ġpopulist\":26815,\"Ġcriticizing\":26816,\"Ġmuse\":26817,\"vine\":26818,\"Ġcardboard\":26819,\"Ġkindly\":26820,\"Ġfringe\":26821,\"ĠTheft\":26822,\"icultural\":26823,\"Ġgovernors\":26824,\"Ġï¿½ï¿½ï¿½ï¿½\":26825,\"Ġ163\":26826,\"Ġtimeout\":26827,\"ĠAuth\":26828,\"Children\":26829,\"AU\":26830,\"Ġredemption\":26831,\"ĠAlger\":26832,\"Ġ1914\":26833,\"Ġwaved\":26834,\"Ġastronauts\":26835,\"ograms\":26836,\"Ġswamp\":26837,\"ĠFinnish\":26838,\"Ġcandle\":26839,\"Ġtonnes\":26840,\"utm\":26841,\"Ġray\":26842,\"Ġspun\":26843,\"Ġfearful\":26844,\"articles\":26845,\"Ġcaus\":26846,\"orically\":26847,\"ĠRequires\":26848,\"ĠGol\":26849,\"Ġpope\":26850,\"Ġinaugural\":26851,\"Ġgle\":26852,\"ADA\":26853,\"ĠISIL\":26854,\"ĠOffensive\":26855,\"Ġwatchdog\":26856,\"Ġbalcon\":26857,\"entity\":26858,\"ĠHoo\":26859,\"Ġgallon\":26860,\"ACC\":26861,\"Ġdoubling\":26862,\"Ġimplication\":26863,\"ĠSight\":26864,\"Ġdoctr\":26865,\"-------\":26866,\"Ġ\\\\\\\\\":26867,\"Ġmalt\":26868,\"Roll\":26869,\"Ġâī¥\":26870,\"Ġrecap\":26871,\"adding\":26872,\"uces\":26873,\"ĠBend\":26874,\"figure\":26875,\"Ġturkey\":26876,\"Ġsocietal\":26877,\"ĠTickets\":26878,\"Ġcommercially\":26879,\"Ġspicy\":26880,\"Ġ216\":26881,\"ĠRamp\":26882,\"Ġsuperiority\":26883,\"Ã¯\":26884,\"ĠTracker\":26885,\"Carl\":26886,\"ĠCoy\":26887,\"ĠPatriot\":26888,\"Ġconsulted\":26889,\"Ġlistings\":26890,\"Ġslew\":26891,\"reenshot\":26892,\"ĠGone\":26893,\"Ġ[...]\":26894,\"309\":26895,\"Ġhottest\":26896,\"Ø±\":26897,\"Ġrocky\":26898,\"ĠDiaz\":26899,\"Ġmassage\":26900,\"Ġparaly\":26901,\"Ġpony\":26902,\"Az\":26903,\"Ġcartridge\":26904,\"ĠNZ\":26905,\"Ġsnack\":26906,\"ĠLamar\":26907,\"plement\":26908,\"ĠLeslie\":26909,\"Ġmater\":26910,\"Ġsnipp\":26911,\"246\":26912,\"Ġjointly\":26913,\"ĠBrisbane\":26914,\"ĠiPod\":26915,\"Ġpumping\":26916,\"Ġgoat\":26917,\"ĠSharon\":26918,\"ealing\":26919,\"Ġcoron\":26920,\"Ġanomal\":26921,\"rahim\":26922,\"ĠConnection\":26923,\"Ġsculpture\":26924,\"Ġscheduling\":26925,\"ĠDaddy\":26926,\"athing\":26927,\"Ġeyebrows\":26928,\"Ġcurved\":26929,\"Ġsentiments\":26930,\"Ġdrafting\":26931,\"Drop\":26932,\"([\":26933,\"Ġnominal\":26934,\"ĠLeadership\":26935,\"ĠGrow\":26936,\"Ġ176\":26937,\"Ġconstructive\":26938,\"ivation\":26939,\"Ġcorrupted\":26940,\"gerald\":26941,\"ĠCros\":26942,\"ĠChester\":26943,\"ĠLap\":26944,\"ãģª\":26945,\"OTH\":26946,\"DATA\":26947,\"Ġalmond\":26948,\"probably\":26949,\"Imp\":26950,\"Ġfeast\":26951,\"ĠWarcraft\":26952,\"Flor\":26953,\"Ġcheckpoint\":26954,\"Ġtranscription\":26955,\"Ġ204\":26956,\"Ġtweaks\":26957,\"Ġrelieve\":26958,\"Science\":26959,\"Ġperformer\":26960,\"Zone\":26961,\"Ġturmoil\":26962,\"igated\":26963,\"hibit\":26964,\"ĠCafe\":26965,\"themed\":26966,\"Ġfluor\":26967,\"bench\":26968,\"Ġdecom\":26969,\"ĠUnt\":26970,\"ĠBarrett\":26971,\"ĠFacts\":26972,\"Ġtasting\":26973,\"ĠPTSD\":26974,\"ĠSeal\":26975,\"ĠJudaism\":26976,\"ĠDynamic\":26977,\"ĠCors\":26978,\"Ve\":26979,\"ĠMing\":26980,\"ĠTransform\":26981,\"von\":26982,\"ĠDefenders\":26983,\"ĠTactical\":26984,\"ĠVon\":26985,\"ĠUnivers\":26986,\"Ġdistorted\":26987,\"ĠBreath\":26988,\"?'\\\"\":26989,\"Ġagon\":26990,\"ĠDeadly\":26991,\"Ġlan\":26992,\"ĠCycle\":26993,\"orned\":26994,\"Ġreliably\":26995,\"Ġglor\":26996,\"ĠMonkey\":26997,\"ãĥ¡\":26998,\"Ġadren\":26999,\"Ġmicrowave\":27000,\"ĠAlban\":27001,\"ircraft\":27002,\"digit\":27003,\"smart\":27004,\"ĠDread\":27005,\"Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯\":27006,\"{{\":27007,\"ĠRochester\":27008,\"Ġsimplified\":27009,\"Ġinflicted\":27010,\"Ġtakeover\":27011,\"Ġyourselves\":27012,\"aditional\":27013,\"Ġmuscular\":27014,\"KS\":27015,\"Ġingen\":27016,\"Tax\":27017,\"ĠFeature\":27018,\"277\":27019,\"Ġcruc\":27020,\"Ġcrate\":27021,\"Ġunidentified\":27022,\"Ġacclaimed\":27023,\"ĠManga\":27024,\"ĠFrances\":27025,\"ĠNepal\":27026,\"ĠGerald\":27027,\"ĠKuwait\":27028,\"Ġslain\":27029,\"ĠHeb\":27030,\"ĠGoku\":27031,\"ãģ®æ\":27032,\"286\":27033,\"Mrs\":27034,\"ĠCody\":27035,\"ĠSanctuary\":27036,\"016\":27037,\"Ġdismant\":27038,\"Ġdataset\":27039,\"ĠHond\":27040,\"buck\":27041,\"ĠPatterson\":27042,\"Ġpalette\":27043,\"ĠGD\":27044,\"icol\":27045,\"ĠLodge\":27046,\"Ġplanetary\":27047,\"akin\":27048,\"ĠRegistered\":27049,\"abwe\":27050,\"ĠPetersburg\":27051,\"Ġhailed\":27052,\"ĠPiece\":27053,\"Sche\":27054,\"ĠDOJ\":27055,\"Ġenumer\":27056,\"181\":27057,\"ĠObserver\":27058,\"ĠBold\":27059,\"founded\":27060,\"commerce\":27061,\"Ġexploits\":27062,\"ĠFinding\":27063,\"URN\":27064,\"ĠSne\":27065,\"ĠAcid\":27066,\"ayette\":27067,\"ĠValues\":27068,\"Ġdrastic\":27069,\"Ġarchitectural\":27070,\"Ġ\\\".\":27071,\"×ķ\":27072,\"umped\":27073,\"Ġwrapping\":27074,\"Ġwidow\":27075,\"ĠSlayer\":27076,\"lace\":27077,\"once\":27078,\"Germany\":27079,\"avoid\":27080,\"Ġtemples\":27081,\"PAR\":27082,\"Ã´\":27083,\"ĠLucifer\":27084,\"ĠFlickr\":27085,\"lov\":27086,\"forces\":27087,\"Ġscouting\":27088,\"Ġlouder\":27089,\"tesy\":27090,\"Ġbeforehand\":27091,\"Äĵ\":27092,\"ĠNeon\":27093,\"ĠWol\":27094,\"ĠTypically\":27095,\"ĠPolitico\":27096,\"-+-+\":27097,\"Ġbuilder\":27098,\"Ġderive\":27099,\"Kill\":27100,\"Ġpoker\":27101,\"Ġambiguous\":27102,\"Ġlifts\":27103,\"Ġcyt\":27104,\"Ġribs\":27105,\"oodle\":27106,\"ĠSounds\":27107,\"hair\":27108,\"ĠSyndrome\":27109,\"tf\":27110,\"Ġproportional\":27111,\"uid\":27112,\"Ġpertaining\":27113,\"ĠKindle\":27114,\"ĠNegro\":27115,\"Ġreiterated\":27116,\"ĠTonight\":27117,\"oths\":27118,\"ĠCornell\":27119,\"Ġowing\":27120,\"Ġ208\":27121,\"elfare\":27122,\"ocating\":27123,\"ĠBirds\":27124,\"Subscribe\":27125,\"Ġessays\":27126,\"Ġburdens\":27127,\"Ġillustrations\":27128,\"arious\":27129,\"ERAL\":27130,\"ĠCalcul\":27131,\"Ġxen\":27132,\"ĠLinkedIn\":27133,\"ĠJung\":27134,\"Ġredesign\":27135,\"Connor\":27136,\"296\":27137,\"Ġreversal\":27138,\"ĠAdelaide\":27139,\"ĠLL\":27140,\"Ġsinking\":27141,\"Ġgum\":27142,\"USH\":27143,\"capt\":27144,\"ĠGrimm\":27145,\"Ġfootsteps\":27146,\"ĠCBD\":27147,\"ispers\":27148,\"Ġprose\":27149,\"Wednesday\":27150,\"ĠMovies\":27151,\"edin\":27152,\"Ġoverturned\":27153,\"Ġcontentious\":27154,\"USB\":27155,\"~~~~~~~~~~~~~~~~\":27156,\"ĠCopper\":27157,\"Ġpointless\":27158,\"NV\":27159,\"values\":27160,\"olphin\":27161,\"dain\":27162,\"Ġdeposited\":27163,\"ĠGW\":27164,\"Ġpreceded\":27165,\"ĠCla\":27166,\"ĠGolem\":27167,\"ĠNim\":27168,\"ĠÎ²\":27169,\"ĠEngineers\":27170,\"middle\":27171,\"Ġflatt\":27172,\"operative\":27173,\"Ġcouncils\":27174,\"imbabwe\":27175,\"elin\":27176,\"Ġstressful\":27177,\"ĠLD\":27178,\"Ġresh\":27179,\"lake\":27180,\"Ġwheelchair\":27181,\"ĠAlternative\":27182,\"Ġoptimize\":27183,\"operation\":27184,\"Ġpeek\":27185,\"Ġoneself\":27186,\"igil\":27187,\"Ġtransitions\":27188,\"opathy\":27189,\"blank\":27190,\"Ġ169\":27191,\"171\":27192,\"________________________________________________________________\":27193,\"Ġlaundering\":27194,\"Enc\":27195,\"ĠDEC\":27196,\"Ġworkouts\":27197,\"Ġspikes\":27198,\"Ġdinosaurs\":27199,\"Ġdiscriminatory\":27200,\"Pool\":27201,\"Rather\":27202,\"385\":27203,\"RNA\":27204,\"testers\":27205,\"eto\":27206,\"ĠIdentity\":27207,\"Ġvein\":27208,\"ĠBurton\":27209,\"Ġarcade\":27210,\"420\":27211,\"Ultimately\":27212,\"ĠSadly\":27213,\"Ã°\":27214,\"pill\":27215,\"Ġcubic\":27216,\"ĠSpectrum\":27217,\"these\":27218,\"states\":27219,\"Ġunofficial\":27220,\"hawks\":27221,\"ĠEVERY\":27222,\"Ġrainbow\":27223,\"Ġincarceration\":27224,\"anding\":27225,\"Ġsyll\":27226,\"ĠEverton\":27227,\"Ġ179\":27228,\"ĠSerbia\":27229,\"Ġ189\":27230,\"meter\":27231,\"ĠMickey\":27232,\"Ġantiqu\":27233,\"Ġfactual\":27234,\"neck\":27235,\"ĠNare\":27236,\"norm\":27237,\"must\":27238,\"Ġhighways\":27239,\"Ġglam\":27240,\"Ġdividing\":27241,\"ĠSquadron\":27242,\"ĠMartha\":27243,\"Ġbirths\":27244,\"Cover\":27245,\"////////////////\":27246,\"ĠWong\":27247,\"Phot\":27248,\"ĠALS\":27249,\"rio\":27250,\"ĠNonetheless\":27251,\"ĠLemon\":27252,\"Ġ206\":27253,\"ĠEE\":27254,\"Ġderivative\":27255,\"ĠWWII\":27256,\"vote\":27257,\"Ġtherein\":27258,\"Ġseparating\":27259,\"446\":27260,\"sync\":27261,\"ĠStreets\":27262,\"Ġratt\":27263,\"Ġmunicipality\":27264,\"ĠShortly\":27265,\"Ġmonk\":27266,\"),\\\"\":27267,\"Ġscrub\":27268,\"Ġoperatives\":27269,\"Neither\":27270,\"Place\":27271,\"ĠLimit\":27272,\"Female\":27273,\"ĠActor\":27274,\"Character\":27275,\"Ġconstituted\":27276,\"357\":27277,\"Ġprotested\":27278,\"ĠStraw\":27279,\"ĠHeight\":27280,\"ilda\":27281,\"ĠTyph\":27282,\"Ġfloods\":27283,\"Ġcosmetic\":27284,\"WAY\":27285,\"perture\":27286,\"upon\":27287,\"tons\":27288,\"essing\":27289,\"ĠPocket\":27290,\"Ġrooft\":27291,\"ĠCaucas\":27292,\"Ġantidepress\":27293,\"Ġincompatible\":27294,\"ECD\":27295,\"Ġopera\":27296,\"ĠContest\":27297,\"Ġgenerators\":27298,\"lime\":27299,\"Defense\":27300,\"1987\":27301,\"forum\":27302,\"Ġsavage\":27303,\"ĠHungarian\":27304,\"nz\":27305,\"Ġmetallic\":27306,\"Ġexpelled\":27307,\"Ġresidency\":27308,\"Ġdresses\":27309,\"666\":27310,\"ĠClement\":27311,\"fires\":27312,\"Category\":27313,\"Ġgeek\":27314,\"alis\":27315,\"Ġcemetery\":27316,\"educated\":27317,\"Ġcrawl\":27318,\"ĠUnable\":27319,\"ĠTyson\":27320,\"akis\":27321,\"Ġpardon\":27322,\"ĠWra\":27323,\"Ġstrengthened\":27324,\"ĠFors\":27325,\"335\":27326,\"ĠHC\":27327,\"ĠMond\":27328,\"Ġvisuals\":27329,\"ĠBeatles\":27330,\"ettlement\":27331,\"Ġï\":27332,\"gro\":27333,\"Ġbash\":27334,\"Ġpoorest\":27335,\"Ġexcel\":27336,\"Ġaspirations\":27337,\"ĠMunicip\":27338,\"ensible\":27339,\"Ġceremonies\":27340,\"Ġintimidation\":27341,\"ĠCONTR\":27342,\"beck\":27343,\"ĠKap\":27344,\"asu\":27345,\"Ġtrademarks\":27346,\"ĠSew\":27347,\"ĠCompetition\":27348,\"network\":27349,\"ĠArri\":27350,\"ĠTet\":27351,\"Roaming\":27352,\"WC\":27353,\"Dat\":27354,\"Ġsob\":27355,\"Ġpairing\":27356,\"Ġoverdose\":27357,\"SAY\":27358,\"aber\":27359,\"Ġrevolt\":27360,\"ĠFah\":27361,\"acting\":27362,\"eq\":27363,\"estation\":27364,\"Fight\":27365,\"ĠMarks\":27366,\"273\":27367,\"Ġ178\":27368,\"Raw\":27369,\"ãģĭ\":27370,\"349\":27371,\"blocks\":27372,\"Ġverge\":27373,\"estine\":27374,\"ĠPodesta\":27375,\"Ġinvasive\":27376,\"Ġprofoundly\":27377,\"ĠAo\":27378,\"each\":27379,\"Ġlest\":27380,\"interpret\":27381,\"Ġshrinking\":27382,\"Ġerrone\":27383,\"Ġchees\":27384,\"lys\":27385,\"ĠIvy\":27386,\"ĠDirectory\":27387,\"Ġhinted\":27388,\"VICE\":27389,\"Ġcontacting\":27390,\"ĠGent\":27391,\"hei\":27392,\"Ġlabeling\":27393,\"Ġmercury\":27394,\"ĠLite\":27395,\"Ġexpires\":27396,\"Ġdestabil\":27397,\"ritis\":27398,\"cu\":27399,\"Ġfeathers\":27400,\"Ġsteer\":27401,\"Ġprogrammed\":27402,\"ĠVader\":27403,\"Going\":27404,\"ĠElim\":27405,\"Ġyo\":27406,\"ĠMiche\":27407,\"Ġ203\":27408,\"Ġsleeves\":27409,\"Ġbully\":27410,\"ĠHumans\":27411,\"368\":27412,\"Ġcompress\":27413,\"ĠBanner\":27414,\"ARS\":27415,\"Ġawhile\":27416,\"Ġcalib\":27417,\"Ġsponsorship\":27418,\"ĠDifficulty\":27419,\"ĠPapers\":27420,\"Ġidentifier\":27421,\"}.\":27422,\"Ġyog\":27423,\"ĠShia\":27424,\"Ġcleanup\":27425,\"Ġvibe\":27426,\"introdu\":27427,\"imming\":27428,\"Australia\":27429,\"Ġoutlines\":27430,\"ĠYoutube\":27431,\"train\":27432,\"ĠMakes\":27433,\"Ġdeported\":27434,\"Ġcentr\":27435,\"ĠDug\":27436,\"ĠBoulder\":27437,\"ĠBuffy\":27438,\"Ġinjunction\":27439,\"ĠHarley\":27440,\"ĠGroups\":27441,\"ĠDumbledore\":27442,\"ĠClara\":27443,\"Ġ\\\"-\":27444,\"Ġsacrificed\":27445,\"eph\":27446,\"Shadow\":27447,\"ibling\":27448,\"Ġfreelance\":27449,\"Ġevidently\":27450,\"phal\":27451,\"Ġretains\":27452,\"Mir\":27453,\"Ġfinite\":27454,\"dar\":27455,\"ĠCous\":27456,\"Ġrepaired\":27457,\"Ġperiodic\":27458,\"Ġchampionships\":27459,\"Ġasteroid\":27460,\"blind\":27461,\"Ġexpressly\":27462,\"ĠAstros\":27463,\"Ġscaled\":27464,\"Ġgeographical\":27465,\"ĠRapids\":27466,\"Enjoy\":27467,\"Ġelastic\":27468,\"ĠMohamed\":27469,\"Market\":27470,\"begin\":27471,\"Ġdiscovers\":27472,\"Ġtelecommunications\":27473,\"Ġscanner\":27474,\"Ġenlarge\":27475,\"Ġsharks\":27476,\"Ġpsychedel\":27477,\"ĠRouge\":27478,\"Ġsnapshot\":27479,\"isine\":27480,\"XP\":27481,\"Ġpesticides\":27482,\"ĠLSD\":27483,\"ĠDistribution\":27484,\"really\":27485,\"Ġdegradation\":27486,\"Ġdisguise\":27487,\"Ġbiom\":27488,\"ĠEXT\":27489,\"Ġequations\":27490,\"Ġhazards\":27491,\"ĠCompared\":27492,\")*\":27493,\"Ġvirtues\":27494,\"Ġelders\":27495,\"Ġenhancing\":27496,\"ĠAcross\":27497,\"eros\":27498,\"angling\":27499,\"Ġcombust\":27500,\"ucci\":27501,\"Ġconcussion\":27502,\"Ġcontraception\":27503,\"ĠKang\":27504,\"Ġexpresses\":27505,\"Ġaux\":27506,\"ĠPione\":27507,\"Ġexhibits\":27508,\"Debug\":27509,\"OTAL\":27510,\"ĠAlready\":27511,\"ĠWheeler\":27512,\"Ġexpands\":27513,\"?:\":27514,\"Ġreconciliation\":27515,\"Ġpirates\":27516,\"Ġpurse\":27517,\"Ġdiscourage\":27518,\"Ġspectacle\":27519,\"Rank\":27520,\"Ġwraps\":27521,\"ĠThought\":27522,\"Ġimpending\":27523,\"Opp\":27524,\"ĠAnglo\":27525,\"ĠEUR\":27526,\"Ġscrewed\":27527,\"retched\":27528,\"Ġencouragement\":27529,\"models\":27530,\"Ġconfuse\":27531,\"mmm\":27532,\"ĠVitamin\":27533,\"âĸĳâĸĳ\":27534,\"Cru\":27535,\"Ġknights\":27536,\"Ġdiscard\":27537,\"Ġbishops\":27538,\"ĠWear\":27539,\"ĠGarrett\":27540,\"kan\":27541,\"ãĥŁ\":27542,\"Ġmasculine\":27543,\"capital\":27544,\"ĠAus\":27545,\"Ġfatally\":27546,\"thanks\":27547,\"ĠAU\":27548,\"ĠGut\":27549,\"1200\":27550,\"Ġ00000000\":27551,\"Ġsurrog\":27552,\"ĠBIOS\":27553,\"raits\":27554,\"ĠWatts\":27555,\"Ġresurrection\":27556,\"ĠElectoral\":27557,\"ĠTips\":27558,\"4000\":27559,\"Ġnutrient\":27560,\"Ġdepicting\":27561,\"Ġsprink\":27562,\"Ġmuff\":27563,\"ĠLIM\":27564,\"ĠSample\":27565,\"psc\":27566,\"ibi\":27567,\"generated\":27568,\"Ġspecimens\":27569,\"Ġdissatisf\":27570,\"Ġtailored\":27571,\"Ġholdings\":27572,\"ĠMonthly\":27573,\"ĠEat\":27574,\"poons\":27575,\"Ġnec\":27576,\"ĠCage\":27577,\"ĠLotus\":27578,\"ĠLantern\":27579,\"Ġfrontier\":27580,\"Ġpensions\":27581,\"Ġjoked\":27582,\"ĠHardy\":27583,\"=-=-=-=-\":27584,\"rade\":27585,\"UID\":27586,\"Ġrails\":27587,\"Ġemit\":27588,\"Ġslate\":27589,\"Ġsmug\":27590,\"Ġspit\":27591,\"ĠCalls\":27592,\"ĠJacobs\":27593,\"feat\":27594,\"ĠUE\":27595,\"Ġrestruct\":27596,\"Ġregeneration\":27597,\"Ġenergies\":27598,\"ĠConnor\":27599,\"OHN\":27600,\"ĠCheese\":27601,\"Ġger\":27602,\"Ġresurrect\":27603,\"management\":27604,\"NW\":27605,\"Ġpresently\":27606,\"ĠBruins\":27607,\"Member\":27608,\"ĠMang\":27609,\"idan\":27610,\"Ġboosting\":27611,\"wyn\":27612,\"+.\":27613,\"requisite\":27614,\"ĠNYPD\":27615,\"ĠMegan\":27616,\"ĠConditions\":27617,\"Ġpics\":27618,\"nesium\":27619,\"ĠRash\":27620,\"Ġ174\":27621,\"ĠDucks\":27622,\"Ġembro\":27623,\"zu\":27624,\"onian\":27625,\"religious\":27626,\"Ġcraz\":27627,\"ĠACA\":27628,\"ĠZucker\":27629,\"EMA\":27630,\"ĠPros\":27631,\"Weapon\":27632,\"ĠKnox\":27633,\"ĠArduino\":27634,\"Ġstove\":27635,\"Ġheavens\":27636,\"ĠPurchase\":27637,\"Ġherd\":27638,\"Ġfundraiser\":27639,\"Digital\":27640,\"5000\":27641,\"Ġproponents\":27642,\"/âĢĭ\":27643,\"Ġjelly\":27644,\"ĠVisa\":27645,\"Ġmonks\":27646,\"Ġadvancement\":27647,\"ĠWer\":27648,\"Ġ187\":27649,\"eus\":27650,\"ertility\":27651,\"Ġfetal\":27652,\"Ġ1936\":27653,\"Lo\":27654,\"Ġoutfits\":27655,\"Ġstaircase\":27656,\"bomb\":27657,\"Ġcustomized\":27658,\"clair\":27659,\"Tree\":27660,\"Ġmapped\":27661,\"ĠConsidering\":27662,\"ĠTorres\":27663,\"Ġmethyl\":27664,\"Ġapproximate\":27665,\"Ġdoom\":27666,\"ĠHansen\":27667,\"Ġcrossover\":27668,\"Ġstandalone\":27669,\"ä¼\":27670,\"Ġinvites\":27671,\"Ġgraveyard\":27672,\"Ġhp\":27673,\"DonaldTrump\":27674,\"Ġescort\":27675,\"Gar\":27676,\"Ġpredecessors\":27677,\"Ġhay\":27678,\"Ġenzyme\":27679,\"ĠStraight\":27680,\"visors\":27681,\"Ing\":27682,\"aneously\":27683,\"ĠApplied\":27684,\"Ġfec\":27685,\"ĠDurant\":27686,\"Ġoutspoken\":27687,\"orb\":27688,\"Ġzeal\":27689,\"Ġdisgrace\":27690,\"').\":27691,\"ĠCheng\":27692,\"289\":27693,\"ĠRena\":27694,\"ĠSuicide\":27695,\"294\":27696,\"Ġoutraged\":27697,\"ĠNewman\":27698,\"ĠNvidia\":27699,\"ĠAber\":27700,\"ĠBers\":27701,\"Ġrecreation\":27702,\"Window\":27703,\"ĠDP\":27704,\"xe\":27705,\"Ġpedoph\":27706,\"Ġfallout\":27707,\"amboo\":27708,\"Ġpresentations\":27709,\"ĠApps\":27710,\"Ġhtml\":27711,\"345\":27712,\"ĠXXX\":27713,\"Ġrubbing\":27714,\"ĠLeather\":27715,\"Ġhumidity\":27716,\"seys\":27717,\"established\":27718,\"ĠUnits\":27719,\"646\":27720,\"Ġrespectable\":27721,\"Auto\":27722,\"Ġthriving\":27723,\"ĠInnovation\":27724,\"angs\":27725,\"Extra\":27726,\"regulation\":27727,\"298\":27728,\"pick\":27729,\"Examples\":27730,\"ĠCJ\":27731,\"Attack\":27732,\"Ġdracon\":27733,\"LT\":27734,\"Ġsticker\":27735,\"rers\":27736,\"Ġsunny\":27737,\"Iss\":27738,\"regulated\":27739,\"dim\":27740,\"ĠAbstract\":27741,\"Ġhusbands\":27742,\"Office\":27743,\"omination\":27744,\"itars\":27745,\"ANGE\":27746,\"ascal\":27747,\"ĠKris\":27748,\"ĠInfantry\":27749,\"Ġmalf\":27750,\"ĠAthe\":27751,\"ĠRally\":27752,\"balanced\":27753,\"........................\":27754,\"OUP\":27755,\"Ġmolecule\":27756,\"metics\":27757,\"ĠSplit\":27758,\"ĠInstructions\":27759,\"ĠNights\":27760,\"cards\":27761,\"Ġtug\":27762,\"Ġcone\":27763,\"åŃ\":27764,\"Ġtx\":27765,\"ĠDiscussion\":27766,\"Ġcatastrophe\":27767,\"ppe\":27768,\"gio\":27769,\"Ġcommunism\":27770,\"Ġhalted\":27771,\"ĠGuant\":27772,\"clean\":27773,\"ĠSched\":27774,\"ĠKanye\":27775,\"Ġwander\":27776,\"ĠSeriously\":27777,\"Ġ188\":27778,\"ennial\":27779,\"follow\":27780,\"productive\":27781,\"ĠFlow\":27782,\"ĠSail\":27783,\"Ġcraw\":27784,\"Ġsimulations\":27785,\"oru\":27786,\"angles\":27787,\"ĠNolan\":27788,\"Ġmenstru\":27789,\"470\":27790,\"Ġ207\":27791,\"aja\":27792,\"Ġcasually\":27793,\"boarding\":27794,\"Ġ222\":27795,\"ovy\":27796,\"ĠNumbers\":27797,\"umat\":27798,\"OE\":27799,\"287\":27800,\"ĠClemson\":27801,\"Ġcerts\":27802,\"Ġslid\":27803,\"ĠTribe\":27804,\"Ġtoast\":27805,\"Ġfortunes\":27806,\"Ġfals\":27807,\"ĠCommittees\":27808,\"Ġgp\":27809,\"Ġfiery\":27810,\"ĠNets\":27811,\"ĠAnime\":27812,\"Package\":27813,\"ĠCompare\":27814,\"laughter\":27815,\"infect\":27816,\"Ġatrocities\":27817,\"Ġjustices\":27818,\"Ġinsults\":27819,\"ĠVernon\":27820,\"Ġshaken\":27821,\"Ġpersona\":27822,\"estamp\":27823,\"367\":27824,\"brain\":27825,\"Ġexperimenting\":27826,\"Ken\":27827,\"ĠElectronics\":27828,\"Ġ161\":27829,\"domain\":27830,\"Ġgraphical\":27831,\"bishop\":27832,\"Ġwhopping\":27833,\"ĠEvangel\":27834,\"Ġadvertisers\":27835,\"ĠSpear\":27836,\"Ġbids\":27837,\"Ġdestroys\":27838,\"utz\":27839,\"Ġundersc\":27840,\"ĠADD\":27841,\"Ġants\":27842,\"ĠCum\":27843,\"ipples\":27844,\"ĠFill\":27845,\"Ġglanced\":27846,\"Ġindicted\":27847,\"ĠEff\":27848,\"Ġmiscon\":27849,\"ĠDesktop\":27850,\"Ġabide\":27851,\"ãĥĢ\":27852,\"ĠIo\":27853,\"ĠCoul\":27854,\"Ġcapsule\":27855,\"ĠChrys\":27856,\"MON\":27857,\"Ġundes\":27858,\"ĠIRA\":27859,\"Ġcitation\":27860,\"Ġdictate\":27861,\"ĠNetworks\":27862,\"ĠConflict\":27863,\"ĠStuff\":27864,\"xa\":27865,\"isec\":27866,\"ĠChemistry\":27867,\"Ġquarterly\":27868,\"Williams\":27869,\"anan\":27870,\"Opt\":27871,\"ĠAlexandria\":27872,\"outheastern\":27873,\"ĠSpringfield\":27874,\"ĠBlacks\":27875,\"Ġgeography\":27876,\"242\":27877,\"Ġutmost\":27878,\"ĠExxon\":27879,\"abouts\":27880,\"EVA\":27881,\"ĠEnable\":27882,\"ĠBarr\":27883,\"Ġdisagreed\":27884,\"ĠCyprus\":27885,\"Ġdementia\":27886,\"Ġlabs\":27887,\"Ġubiquitous\":27888,\"ĠLOVE\":27889,\"Ġconsolidated\":27890,\"sr\":27891,\"Ġcreamy\":27892,\"ĠTimber\":27893,\"Regardless\":27894,\"ĠCertificate\":27895,\"Ġ\\\"...\":27896,\"ogenous\":27897,\"Captain\":27898,\"Ġinsulting\":27899,\"ĠSoros\":27900,\"ĠInstr\":27901,\"ĠBulgaria\":27902,\"better\":27903,\"Ġsucking\":27904,\"ĠDavidson\":27905,\"atz\":27906,\"Ġcollateral\":27907,\"gif\":27908,\"Ġplagued\":27909,\"ĠCancel\":27910,\"ĠGardner\":27911,\"RB\":27912,\"Ġsixteen\":27913,\"Remove\":27914,\"uristic\":27915,\"cook\":27916,\"Rod\":27917,\"Ġcomprising\":27918,\"fle\":27919,\")âĢĶ\":27920,\"ĠViking\":27921,\"growth\":27922,\"agonal\":27923,\"Ġsrf\":27924,\"afety\":27925,\"mot\":27926,\"Nearly\":27927,\"stown\":27928,\"ĠFactor\":27929,\"Ġautomobile\":27930,\"Ġprocedural\":27931,\"mask\":27932,\"ampires\":27933,\"Ġdisappears\":27934,\"jab\":27935,\"315\":27936,\"Ġ1951\":27937,\"needed\":27938,\"Ġdaring\":27939,\"leader\":27940,\"Ġpodium\":27941,\"Ġunhealthy\":27942,\"Ġmund\":27943,\"Ġpyramid\":27944,\"ocre\":27945,\"Ġkissed\":27946,\"Ġdreamed\":27947,\"ĠFantastic\":27948,\"ĠGly\":27949,\"åĬ\":27950,\"Ġgreatness\":27951,\"Ġspices\":27952,\"Ġmetropolitan\":27953,\"Ġcompuls\":27954,\"iets\":27955,\"1016\":27956,\"ĠSham\":27957,\"ĠPyr\":27958,\"flies\":27959,\"ĠMidnight\":27960,\"Ġswallowed\":27961,\"Ġgenres\":27962,\"ĠLucky\":27963,\"ĠRewards\":27964,\"Ġdispatch\":27965,\"ĠIPA\":27966,\"ĠApply\":27967,\"Ġaven\":27968,\"alities\":27969,\"312\":27970,\"things\":27971,\"Ġ().\":27972,\"Ġmates\":27973,\"ĠSz\":27974,\"ĠCOP\":27975,\"olate\":27976,\"OFF\":27977,\"Ġrecharge\":27978,\"caps\":27979,\"ĠYorker\":27980,\"icone\":27981,\"Ġgalaxies\":27982,\"ileaks\":27983,\"Dave\":27984,\"ĠPuzz\":27985,\"ĠCeltic\":27986,\"ĠAFC\":27987,\"276\":27988,\"ĠSons\":27989,\"Ġaffirmative\":27990,\"Hor\":27991,\"Ġtutorials\":27992,\"ĠCITY\":27993,\"ĠRosa\":27994,\"ĠExtension\":27995,\"Series\":27996,\"Ġfats\":27997,\"Ġrab\":27998,\"lis\":27999,\"Ġunic\":28000,\"Ġeve\":28001,\"ĠSpin\":28002,\"Ġadulthood\":28003,\"typ\":28004,\"Ġsectarian\":28005,\"Ġcheckout\":28006,\"ĠCycl\":28007,\"Single\":28008,\"Ġmartyr\":28009,\"Ġchilling\":28010,\"888\":28011,\"oufl\":28012,\"Ġ];\":28013,\"Ġcongestion\":28014,\"mk\":28015,\"ĠWhereas\":28016,\"Ġ1938\":28017,\"urrencies\":28018,\"erion\":28019,\"Ġboast\":28020,\"ĠPatients\":28021,\"Ġchap\":28022,\"ĠBD\":28023,\"realDonaldTrump\":28024,\"Ġexamines\":28025,\"hov\":28026,\"Ġstartling\":28027,\"ĠBabylon\":28028,\"wid\":28029,\"omew\":28030,\"brance\":28031,\"ĠOdyssey\":28032,\"wig\":28033,\"Ġtorch\":28034,\"ĠVox\":28035,\"ĠMoz\":28036,\"ĠTroll\":28037,\"ĠAns\":28038,\"Similarly\":28039,\"ĠFul\":28040,\"006\":28041,\"Unless\":28042,\"ĠAlone\":28043,\"stead\":28044,\"ĠPublisher\":28045,\"rights\":28046,\"tu\":28047,\"ĠDoesn\":28048,\"Ġprofessionally\":28049,\"Ġclo\":28050,\"icz\":28051,\"Ġsteals\":28052,\"Ġá\":28053,\"1986\":28054,\"Ġsturdy\":28055,\"ĠJohann\":28056,\"Ġmedals\":28057,\"Ġfilings\":28058,\"ĠFraser\":28059,\"done\":28060,\"Ġmultinational\":28061,\"Ġfeder\":28062,\"Ġworthless\":28063,\"Ġpest\":28064,\"Yesterday\":28065,\"ankind\":28066,\"Ġgays\":28067,\"Ġborne\":28068,\"ĠPOS\":28069,\"Picture\":28070,\"Ġpercentages\":28071,\"251\":28072,\"rame\":28073,\"Ġpotions\":28074,\"AMD\":28075,\"ĠLebanese\":28076,\"Ġrang\":28077,\"ĠLSU\":28078,\"ongs\":28079,\"Ġpeninsula\":28080,\"ĠClause\":28081,\"ALK\":28082,\"oha\":28083,\"ĠMacBook\":28084,\"Ġunanimous\":28085,\"Ġlenders\":28086,\"Ġhangs\":28087,\"Ġfranchises\":28088,\"orers\":28089,\"ĠUpdates\":28090,\"Ġisolate\":28091,\"andro\":28092,\"Soon\":28093,\"Ġdisruptive\":28094,\"ĠSurve\":28095,\"Ġstitches\":28096,\"ĠScorp\":28097,\"ĠDominion\":28098,\"Ġsupplying\":28099,\"Arg\":28100,\"Ġturret\":28101,\"ĠLuk\":28102,\"Ġbrackets\":28103,\"*)\":28104,\"ĠRevolutionary\":28105,\"ĠHonest\":28106,\"Ġnoticing\":28107,\"ĠShannon\":28108,\"Ġafforded\":28109,\"Ġtha\":28110,\"ĠJanet\":28111,\"!--\":28112,\"ĠNarendra\":28113,\"ĠPlot\":28114,\"Hol\":28115,\"sever\":28116,\"eenth\":28117,\"Ġobstruction\":28118,\"Ġ1024\":28119,\"staff\":28120,\"jas\":28121,\"orget\":28122,\"scenes\":28123,\"laughs\":28124,\"ĠFargo\":28125,\"crime\":28126,\"Ġorchestr\":28127,\"Ġdelet\":28128,\"iliary\":28129,\"rieved\":28130,\"Ġmilitar\":28131,\"ĠGreene\":28132,\"âĹı\":28133,\"ãģ¦\":28134,\"ĠGuards\":28135,\"Ġunleashed\":28136,\"ĠWeber\":28137,\"Ġadjustable\":28138,\"Ġcaliber\":28139,\"Ġmotivations\":28140,\"ĠÃł\":28141,\"mAh\":28142,\"ĠLanka\":28143,\"handle\":28144,\"Ġpent\":28145,\"ĠRav\":28146,\"ĠAngular\":28147,\"ĠKau\":28148,\"umbing\":28149,\"Ġphilanthrop\":28150,\"Ġdehyd\":28151,\"Ġtoxicity\":28152,\"eer\":28153,\"ĠYORK\":28154,\"witz\":28155,\"å¼\":28156,\"ĠIE\":28157,\"community\":28158,\"ĠAH\":28159,\"Ġretali\":28160,\"Ġmassively\":28161,\"ĠDaniels\":28162,\"ĠDEL\":28163,\"Ġcarcin\":28164,\"Url\":28165,\"Ġrouting\":28166,\"ĠNPCs\":28167,\"ĠRAF\":28168,\"ryce\":28169,\"Ġwaived\":28170,\"ĠGuatem\":28171,\"Everybody\":28172,\"Ġcovenant\":28173,\"Ġ173\":28174,\"Ġrelaxing\":28175,\"Ġquart\":28176,\"almost\":28177,\"Ġguarded\":28178,\"ĠSoldiers\":28179,\"ĠPLAY\":28180,\"Ġoutgoing\":28181,\"LAND\":28182,\"Ġrewrite\":28183,\"ĠMOV\":28184,\"ĠImper\":28185,\"ĠSolution\":28186,\"Ġphenomenal\":28187,\"Ġlongevity\":28188,\"Ġimpat\":28189,\"ĠNissan\":28190,\"irie\":28191,\"Ġodor\":28192,\"ĠZar\":28193,\"oks\":28194,\"Ġmilitias\":28195,\"ĠSPEC\":28196,\"Ġtolerated\":28197,\"arser\":28198,\"ĠBradford\":28199,\"+,\":28200,\"Ġsurreal\":28201,\"sf\":28202,\"Canadian\":28203,\"Ġresemblance\":28204,\"Ġcarbohydrate\":28205,\"VIEW\":28206,\"Ġaccessory\":28207,\"meal\":28208,\"largest\":28209,\"iegel\":28210,\"Someone\":28211,\"Ġtoughest\":28212,\"oso\":28213,\"Ġfunnel\":28214,\"Ġcondemnation\":28215,\"luent\":28216,\"Ġwired\":28217,\"ĠSunset\":28218,\"Jesus\":28219,\"ĠPST\":28220,\"ĠPages\":28221,\"ĠTycoon\":28222,\"ĠPF\":28223,\"Ġselections\":28224,\"Ġà¤\":28225,\"partisan\":28226,\"Ġhighs\":28227,\"ĠRune\":28228,\"Ġcrafts\":28229,\"lead\":28230,\"ĠParents\":28231,\"Ġreclaim\":28232,\"eker\":28233,\"ĠAllied\":28234,\"aeper\":28235,\"Ġlooming\":28236,\"Ġbeneficiaries\":28237,\"ĠHull\":28238,\"Students\":28239,\"Jewish\":28240,\"dj\":28241,\"Ġpact\":28242,\"template\":28243,\"ĠOfficials\":28244,\"ĠBaylor\":28245,\"Ġhemp\":28246,\"Ġyouths\":28247,\"ĠLevels\":28248,\"ĠXiao\":28249,\"ĠChes\":28250,\"Ġendeavor\":28251,\"ĠRemoved\":28252,\"Ġhippocamp\":28253,\"Hell\":28254,\"ãĤĬ\":28255,\"805\":28256,\"Ġdinosaur\":28257,\"ĠWrath\":28258,\"ĠIndonesian\":28259,\"Ġcalculator\":28260,\"ĠDictionary\":28261,\"Ġ420\":28262,\"ĠMAG\":28263,\"(_\":28264,\"!,\":28265,\"tarians\":28266,\"Ġrestricting\":28267,\"racuse\":28268,\"Ġweekday\":28269,\"OUNT\":28270,\"Ġshrugged\":28271,\"leground\":28272,\"Ġbald\":28273,\"ĠDoctors\":28274,\"Ġtouted\":28275,\"ĠMaxwell\":28276,\"Ġ214\":28277,\"Ġdiplomat\":28278,\"Ġrepression\":28279,\"Ġconstituency\":28280,\"vice\":28281,\"ranked\":28282,\"ĠNapoleon\":28283,\"gang\":28284,\"ĠForever\":28285,\"tun\":28286,\"Ġbulb\":28287,\"ĠPDT\":28288,\"ĠCisco\":28289,\"VEN\":28290,\"Ġresumed\":28291,\"Steven\":28292,\"ĠManitoba\":28293,\"Ġfabulous\":28294,\"ĠAgents\":28295,\"1984\":28296,\"Ġamusing\":28297,\"ĠMysteries\":28298,\"Ġorthodox\":28299,\"floor\":28300,\"Ġquestionnaire\":28301,\"Ġpenetrate\":28302,\"Ġfilmmakers\":28303,\"ĠUnc\":28304,\"Ġstamped\":28305,\"Ġthirteen\":28306,\"Ġoutfield\":28307,\"Ġforwarded\":28308,\"Ġappra\":28309,\"Ġaided\":28310,\"try\":28311,\"Ġunfocused\":28312,\"ĠLiz\":28313,\"ĠWendy\":28314,\"ĠScene\":28315,\"Charg\":28316,\"Ġrejects\":28317,\"Ġleftist\":28318,\"ĠProvidence\":28319,\"ĠBrid\":28320,\"regn\":28321,\"Ġprophecy\":28322,\"ĠLIVE\":28323,\"499\":28324,\"Ġforge\":28325,\"ĠFML\":28326,\"Ġintrinsic\":28327,\"ĠFrog\":28328,\"Ġwont\":28329,\"ĠHolt\":28330,\"Ġfamed\":28331,\"CLUS\":28332,\"aepernick\":28333,\"ĠHate\":28334,\"ĠCay\":28335,\"Ġregistering\":28336,\"ortality\":28337,\"ropy\":28338,\"ocalyptic\":28339,\"aan\":28340,\"nav\":28341,\"Ġfascist\":28342,\"IFIED\":28343,\"Ġimplicated\":28344,\"ĠResort\":28345,\"ĠChandler\":28346,\"ĠBrick\":28347,\"Pin\":28348,\"ysc\":28349,\"Usage\":28350,\"ĠHelm\":28351,\"usra\":28352,\"âĺħâĺħ\":28353,\"ĠAbbas\":28354,\"Ġunanimously\":28355,\"Ġkeeper\":28356,\"Ġaddicted\":28357,\"???\":28358,\"Ġhelmets\":28359,\"Ġantioxid\":28360,\"apsed\":28361,\"808\":28362,\"giene\":28363,\"Ġwaits\":28364,\"Ġminion\":28365,\"raved\":28366,\"ĠPorsche\":28367,\"Ġdreaming\":28368,\"Ġ171\":28369,\"ĠCain\":28370,\"Ġunfor\":28371,\"asso\":28372,\"ĠConfiguration\":28373,\"kun\":28374,\"hardt\":28375,\"Ġnested\":28376,\"ĠLDS\":28377,\"LES\":28378,\"Ġtying\":28379,\"enos\":28380,\"Ġcue\":28381,\"ĠMarqu\":28382,\"skirts\":28383,\"Ġclicked\":28384,\"Ġexpiration\":28385,\"ĠAccordingly\":28386,\"ĠWC\":28387,\"Ġblessings\":28388,\"Ġaddictive\":28389,\"ĠNarr\":28390,\"yx\":28391,\"ĠJaguars\":28392,\"Ġrents\":28393,\"ĠSiber\":28394,\"Ġtipped\":28395,\"ousse\":28396,\"ĠFitzgerald\":28397,\"Ġhierarch\":28398,\"outine\":28399,\"Ġwavelength\":28400,\">.\":28401,\"chid\":28402,\"ĠProcessing\":28403,\"/+\":28404,\"ranking\":28405,\"Easy\":28406,\"ĠConstruct\":28407,\"Ġtet\":28408,\"insured\":28409,\"HUD\":28410,\"Ġquoting\":28411,\"Ġcommunicated\":28412,\"inx\":28413,\"Ġinmate\":28414,\"Ġerected\":28415,\"ĠAbsolutely\":28416,\"ĠSurely\":28417,\"Ġunim\":28418,\"ĠThrone\":28419,\"heid\":28420,\"Ġclaws\":28421,\"Ġsuperstar\":28422,\"ĠLenn\":28423,\"ĠWhis\":28424,\"Uk\":28425,\"abol\":28426,\"Ġsket\":28427,\"ĠNiet\":28428,\"Ġperks\":28429,\"Ġaffinity\":28430,\"Ġopenings\":28431,\"phasis\":28432,\"Ġdiscriminate\":28433,\"Tip\":28434,\"vc\":28435,\"Ġgrinding\":28436,\"ĠJenny\":28437,\"Ġasthma\":28438,\"holes\":28439,\"ĠHomer\":28440,\"Ġregisters\":28441,\"ĠGlad\":28442,\"Ġcreations\":28443,\"Ġlithium\":28444,\"Ġapplause\":28445,\"until\":28446,\"Justice\":28447,\"ĠTurks\":28448,\"Ġscandals\":28449,\"Ġbake\":28450,\"tank\":28451,\"Mech\":28452,\"ĠMeans\":28453,\"ĠMaid\":28454,\"Republicans\":28455,\"isal\":28456,\"windows\":28457,\"ĠSantos\":28458,\"Ġvegetation\":28459,\"338\":28460,\"tri\":28461,\"Ġflux\":28462,\"insert\":28463,\"Ġclarified\":28464,\"Ġmortg\":28465,\"ĠChim\":28466,\"ĠTort\":28467,\"Ġdisclaim\":28468,\"metal\":28469,\"ĠAside\":28470,\"Ġinduction\":28471,\"Ġinfl\":28472,\"Ġatheists\":28473,\"amph\":28474,\"Ġether\":28475,\"ĠVital\":28476,\"ĠBuilt\":28477,\"Mind\":28478,\"Ġweaponry\":28479,\"SET\":28480,\"Ġ186\":28481,\"admin\":28482,\"gam\":28483,\"contract\":28484,\"afa\":28485,\"Ġderivatives\":28486,\"Ġsnacks\":28487,\"Ġchurn\":28488,\"Econom\":28489,\"Ġcapped\":28490,\"ĠUnderstanding\":28491,\"ĠHers\":28492,\"ĠIz\":28493,\"Ġduct\":28494,\"IENT\":28495,\"aughty\":28496,\"ĠâľĶ\":28497,\"ĠNP\":28498,\"Ġsailing\":28499,\"Initialized\":28500,\"Ġted\":28501,\"Ġreactors\":28502,\"ĠLomb\":28503,\"Ġchoke\":28504,\"ĠWorm\":28505,\"Ġadmiration\":28506,\"Ġswung\":28507,\"ensibly\":28508,\"Ġrash\":28509,\"ĠGoals\":28510,\"ĠImportant\":28511,\"Shot\":28512,\"ĠRas\":28513,\"Ġtrainers\":28514,\"ĠBun\":28515,\"Working\":28516,\"Ġharmed\":28517,\"ĠPandora\":28518,\"ĠLTE\":28519,\"Ġmushroom\":28520,\"ĠCHAR\":28521,\"ĠFee\":28522,\"ĠMoy\":28523,\"Born\":28524,\"oliberal\":28525,\"ĠMartial\":28526,\"Ġgentlemen\":28527,\"Ġlingering\":28528,\"Official\":28529,\"Ġgraffiti\":28530,\"ĠNames\":28531,\"Der\":28532,\"Ġquint\":28533,\"istrate\":28534,\"azeera\":28535,\"ĠNOTICE\":28536,\"ĠFlorence\":28537,\"Ġpayable\":28538,\"Ġdepicts\":28539,\"ĠSpecies\":28540,\"Heart\":28541,\"âĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢâĶĢ\":28542,\"Ġenclosed\":28543,\"Increases\":28544,\"Daily\":28545,\"ĠLis\":28546,\"Ġenactment\":28547,\"ĠBacon\":28548,\"ĠSteele\":28549,\"demand\":28550,\"Ġ183\":28551,\"Ġmouths\":28552,\"Ġstranded\":28553,\"Ġenhancement\":28554,\"011\":28555,\"ĠWhats\":28556,\"Ġhealed\":28557,\"eny\":28558,\"ĠRab\":28559,\"Ġ340\":28560,\"ĠLabyrinth\":28561,\"roach\":28562,\"ĠYosh\":28563,\"ĠClippers\":28564,\"Ġconcerts\":28565,\"Internet\":28566,\"355\":28567,\"Ġstickers\":28568,\"Ġtermed\":28569,\"ĠAxe\":28570,\"Ġgrandparents\":28571,\"France\":28572,\"ĠClim\":28573,\"ĠUh\":28574,\"ulic\":28575,\"Ġthrill\":28576,\"centric\":28577,\"ĠOverview\":28578,\"ĠConduct\":28579,\"Ġsubstantive\":28580,\"Ġ182\":28581,\"mur\":28582,\"Ġstray\":28583,\"ĠCoff\":28584,\"Ġrepetitive\":28585,\"ĠForgotten\":28586,\"Ġqualification\":28587,\"ewitness\":28588,\"ĠZimbabwe\":28589,\"Ġsimulated\":28590,\"ĠJD\":28591,\"253\":28592,\"ĠWare\":28593,\"Ġunsc\":28594,\"Times\":28595,\"Ġsummons\":28596,\"Ġdisconnected\":28597,\"Ġ184\":28598,\"cius\":28599,\"ĠGujar\":28600,\"odka\":28601,\"Ġerase\":28602,\"ĠTobacco\":28603,\"elected\":28604,\"Ġuncont\":28605,\"ĠShepard\":28606,\"ĠLamp\":28607,\"Ġalerted\":28608,\"Ġoperative\":28609,\"arna\":28610,\"uint\":28611,\"Ġnegligence\":28612,\"acements\":28613,\"Ġsupra\":28614,\"Ġprevail\":28615,\"ĠShark\":28616,\"Ġbelts\":28617,\"ãģ«\":28618,\"Ġtighter\":28619,\"Engineers\":28620,\"Ġinactive\":28621,\"Ġexponent\":28622,\"ĠWillie\":28623,\"aples\":28624,\"Ġheir\":28625,\"ĠHits\":28626,\"iann\":28627,\"ĠSays\":28628,\"Ġcurrents\":28629,\"ĠBengal\":28630,\"Ġarist\":28631,\"Buffer\":28632,\"Ġbreeze\":28633,\"ĠWesley\":28634,\"Cola\":28635,\"Ġpronoun\":28636,\"Ġdeed\":28637,\"ĠKling\":28638,\"Ġoft\":28639,\"Ġinflict\":28640,\"Ġpunishing\":28641,\"Ġnm\":28642,\"iku\":28643,\"ODUCT\":28644,\"014\":28645,\"Ġsubsidy\":28646,\"ĠDEA\":28647,\"ĠHerbert\":28648,\"ĠJal\":28649,\"Bank\":28650,\"Ġdeferred\":28651,\"Ġshipment\":28652,\"Bott\":28653,\"Ġalle\":28654,\"bearing\":28655,\"HTML\":28656,\"Offline\":28657,\"Ġ213\":28658,\"Ġscrolling\":28659,\"Ġscanned\":28660,\"ĠLibyan\":28661,\"ĠTOP\":28662,\"chrom\":28663,\"dt\":28664,\"column\":28665,\"PsyNetMessage\":28666,\"Zero\":28667,\"Ġtorso\":28668,\"050\":28669,\"âķĲ\":28670,\"Ġimperson\":28671,\"ĠSchwartz\":28672,\"udic\":28673,\"Ġpissed\":28674,\"ĠSapp\":28675,\"257\":28676,\"ĠISPs\":28677,\"ogl\":28678,\"Ġsupervised\":28679,\"Ġadolescent\":28680,\"Ġattained\":28681,\"ĠDelivery\":28682,\"ĠBunny\":28683,\"Ġ1937\":28684,\"Ġminiature\":28685,\"Ġos\":28686,\"Ġ370\":28687,\"608\":28688,\"ĠMourinho\":28689,\"Ġinnate\":28690,\"Ġtempo\":28691,\"ĠNM\":28692,\"ĠFallen\":28693,\"009\":28694,\"Ġprovocative\":28695,\"Streamer\":28696,\"ĠBenedict\":28697,\"ĠBolshe\":28698,\"Ġturtle\":28699,\"ĠPCB\":28700,\"ĠEqual\":28701,\"Director\":28702,\"ĠRend\":28703,\"Ġfluids\":28704,\"Authorities\":28705,\"Ġcousins\":28706,\"requency\":28707,\"ĠNeighbor\":28708,\"sets\":28709,\"shared\":28710,\"Charles\":28711,\"password\":28712,\"Ġgears\":28713,\"Ġ211\":28714,\"ĠHardware\":28715,\"rika\":28716,\"Ġupstream\":28717,\"Hom\":28718,\"Ġdisproportionately\":28719,\"ivities\":28720,\"Ġundefined\":28721,\"Ġelectrons\":28722,\"Ġcommemor\":28723,\"Eventually\":28724,\"Ġ><\":28725,\"Ġirresponsible\":28726,\"218\":28727,\"ĠReleased\":28728,\"ĠOVER\":28729,\"ĠIGN\":28730,\"ĠBread\":28731,\"stellar\":28732,\"ĠSage\":28733,\"tted\":28734,\"damage\":28735,\"edition\":28736,\"ĠPrec\":28737,\"Ġlime\":28738,\"Ġconfinement\":28739,\"Ġcalorie\":28740,\"weapon\":28741,\"Ġdiffering\":28742,\"ĠSina\":28743,\"mys\":28744,\"amd\":28745,\"Ġintricate\":28746,\"kk\":28747,\"ĠPAT\":28748,\"Ã£o\":28749,\"stones\":28750,\"links\":28751,\"Ġranch\":28752,\"Semitic\":28753,\"Ġdifferentiate\":28754,\"ĠSinger\":28755,\"occupied\":28756,\"Ġfortress\":28757,\"cmd\":28758,\"Ġinterception\":28759,\"ĠAnkara\":28760,\"Ġrept\":28761,\"ĠSolitaire\":28762,\"Ġremake\":28763,\"pred\":28764,\"Ġdared\":28765,\"autions\":28766,\"ĠBACK\":28767,\"Running\":28768,\"Ġdebugging\":28769,\"Ġgraphs\":28770,\"399\":28771,\"ĠNigel\":28772,\"Ġbun\":28773,\"Ġpillow\":28774,\"Ġprogressed\":28775,\"fashioned\":28776,\"Ġobedience\":28777,\"ERN\":28778,\"Ġrehears\":28779,\"Cell\":28780,\"tl\":28781,\"Sher\":28782,\"Ġherald\":28783,\"ĠPayment\":28784,\"ĠCory\":28785,\"ĠDept\":28786,\"Ġrepent\":28787,\"ĠWeak\":28788,\"uckland\":28789,\"Ġpleasing\":28790,\"Ġshortages\":28791,\"Ġjurors\":28792,\"ĠKab\":28793,\"qqa\":28794,\"Anti\":28795,\"Ġwow\":28796,\"ĠRCMP\":28797,\"Ġtsun\":28798,\"ĠSic\":28799,\"Ġcomprises\":28800,\"Ġspies\":28801,\"Ġprecinct\":28802,\"nu\":28803,\"Ġurges\":28804,\"Ġtimed\":28805,\"Ġstripes\":28806,\"ĠBoots\":28807,\"Ġyen\":28808,\"Advanced\":28809,\"Ġdiscrete\":28810,\"ĠArchangel\":28811,\"employment\":28812,\"Diff\":28813,\"Ġmonuments\":28814,\"Ġ209\":28815,\"worker\":28816,\"Ġ196\":28817,\"ĠIg\":28818,\"utterstock\":28819,\"TPS\":28820,\"Jac\":28821,\"Ġhomelessness\":28822,\"Ġcommentator\":28823,\"Ġracially\":28824,\"fing\":28825,\"seed\":28826,\"Ele\":28827,\"ellation\":28828,\"Ġethanol\":28829,\"Ġparish\":28830,\"ĠDong\":28831,\"ĠAwakening\":28832,\"Ġdeviation\":28833,\"ĠBearing\":28834,\"ĠTsuk\":28835,\"Ġrecess\":28836,\"Ġlymph\":28837,\"ĠCannabis\":28838,\"åľ\":28839,\"ĠNEWS\":28840,\"Ġdra\":28841,\"ĠStefan\":28842,\"ĠWrong\":28843,\"ĠSAM\":28844,\"Ġloosely\":28845,\"Ġinterpreter\":28846,\"ĠPlain\":28847,\"Government\":28848,\"Ġbigotry\":28849,\"Ġgrenades\":28850,\"avez\":28851,\"pictured\":28852,\"Ġmandated\":28853,\"ĠMonk\":28854,\"ĠPedro\":28855,\"Ġlava\":28856,\"274\":28857,\"Ġcynical\":28858,\"ĠScrolls\":28859,\"locks\":28860,\"Mp\":28861,\"Ġcongregation\":28862,\"ornings\":28863,\"phil\":28864,\"ĠIbid\":28865,\"Ġferv\":28866,\"Ġdisappearing\":28867,\"Ġarrogant\":28868,\"syn\":28869,\"ĠMaver\":28870,\"ĠSuit\":28871,\"241\":28872,\"Ġabbre\":28873,\"ackers\":28874,\"Pa\":28875,\"ĠYel\":28876,\"Whenever\":28877,\"Ġ235\":28878,\"ĠVine\":28879,\"ĠAnat\":28880,\"Ġextinct\":28881,\"LET\":28882,\"Ġexecutable\":28883,\"VERS\":28884,\"oxide\":28885,\"DNA\":28886,\"ĠPrel\":28887,\"Ġresentment\":28888,\"Ġcomprise\":28889,\"ĠAviv\":28890,\"Ġinterceptions\":28891,\"Ġprolific\":28892,\"INA\":28893,\"ĠErin\":28894,\"thought\":28895,\"219\":28896,\"ĠPsychiatry\":28897,\"unky\":28898,\"chemist\":28899,\"Ho\":28900,\"ĠMcCoy\":28901,\"Ġbricks\":28902,\"Los\":28903,\"rily\":28904,\"ĠUSSR\":28905,\"Ġrud\":28906,\"Ġlaud\":28907,\"ĠWise\":28908,\"ĠEmerald\":28909,\"Ġrevived\":28910,\"Ġdamned\":28911,\"ĠRepair\":28912,\"idem\":28913,\"ctica\":28914,\"Ġpatriarch\":28915,\"ĠNurs\":28916,\"meg\":28917,\"Ġcheapest\":28918,\"reements\":28919,\"empty\":28920,\"ĠCelebr\":28921,\"Ġdeprivation\":28922,\"chanted\":28923,\"ĠThumbnails\":28924,\"Energy\":28925,\"ĠEthan\":28926,\"ĠQing\":28927,\"Ġopposes\":28928,\"WIND\":28929,\"vik\":28930,\"ĠMau\":28931,\"ĠSUB\":28932,\"667\":28933,\"GRE\":28934,\"ĠVolunte\":28935,\"nton\":28936,\"Cook\":28937,\"åĲ\":28938,\"esque\":28939,\"Ġplummet\":28940,\"Ġsuing\":28941,\"Ġpronounce\":28942,\"Ġresisting\":28943,\"ĠFishing\":28944,\"ĠTrials\":28945,\"Ġyell\":28946,\"Ġ310\":28947,\"Ġinduct\":28948,\"Ġpersonalized\":28949,\"often\":28950,\"Reb\":28951,\"EMBER\":28952,\"Ġviewpoint\":28953,\"Ġexistential\":28954,\"())\":28955,\"remove\":28956,\"MENTS\":28957,\"lasses\":28958,\"Ġevapor\":28959,\"Ġaisle\":28960,\"meta\":28961,\"Ġreflective\":28962,\"Ġentitlement\":28963,\"Ġdevised\":28964,\"music\":28965,\"ascade\":28966,\"Ġwinding\":28967,\"offset\":28968,\"Ġaccessibility\":28969,\"kered\":28970,\"Better\":28971,\"ĠJohnston\":28972,\"thinking\":28973,\"Snow\":28974,\"ĠCroatia\":28975,\"ĠAtomic\":28976,\"271\":28977,\"348\":28978,\"Ġtextbook\":28979,\"ĠSixth\":28980,\"ĠØ§ÙĦ\":28981,\"Ġslider\":28982,\"ĠBurger\":28983,\"bol\":28984,\"Sync\":28985,\"Ġgrandchildren\":28986,\"Ġcerv\":28987,\"+)\":28988,\"Ġeternity\":28989,\"Ġtweeting\":28990,\"Ġspeculative\":28991,\"Ġpivotal\":28992,\"ĠWP\":28993,\"ĠTER\":28994,\"ynamic\":28995,\"Ġupl\":28996,\"ĠCats\":28997,\"perhaps\":28998,\"Ġclassmates\":28999,\"Ġblatant\":29000,\"'-\":29001,\"Ġlakh\":29002,\"antine\":29003,\"ĠBorg\":29004,\"iom\":29005,\"/(\":29006,\"ĠAthletic\":29007,\"Ġsar\":29008,\"OTA\":29009,\"ĠHoffman\":29010,\"Nevertheless\":29011,\"Ġadorable\":29012,\"Ġspawned\":29013,\"Associated\":29014,\"ĠDomestic\":29015,\"Ġimplant\":29016,\"ĠLuxem\":29017,\"ĠKens\":29018,\"Ġpumps\":29019,\"ĠSAT\":29020,\"Attributes\":29021,\"509\":29022,\"avour\":29023,\"Ġcentralized\":29024,\"ĠTN\":29025,\"Ġfreshly\":29026,\"ĠAchieve\":29027,\"Ġoutsiders\":29028,\"herty\":29029,\"ĠRee\":29030,\"ĠTowers\":29031,\"ĠDart\":29032,\"akable\":29033,\"Ġmp\":29034,\"ĠHeavenly\":29035,\"Ġripe\":29036,\"ĠCaroline\":29037,\"ryan\":29038,\"Ġclassics\":29039,\"Ġretiring\":29040,\"Ġ228\":29041,\"Ġah\":29042,\"Ġdealings\":29043,\"Ġpunching\":29044,\"ĠChapman\":29045,\"Options\":29046,\"maxwell\":29047,\"volume\":29048,\"Ġstal\":29049,\"Ġexported\":29050,\"ĠQuite\":29051,\"Ġnumerical\":29052,\"Burn\":29053,\"Fact\":29054,\"ĠKeystone\":29055,\"Ġtrending\":29056,\"Ġaltering\":29057,\"ĠAfricans\":29058,\"478\":29059,\"ĠMN\":29060,\"ĠKnock\":29061,\"Ġtemptation\":29062,\"Ġprestige\":29063,\"Overview\":29064,\"ĠTraditional\":29065,\"ĠBahrain\":29066,\"Private\":29067,\"ĠHOU\":29068,\"Ġbarr\":29069,\"ĠTat\":29070,\"Cube\":29071,\"USD\":29072,\"ĠGrande\":29073,\"ĠGat\":29074,\"ĠFlo\":29075,\"Ġresides\":29076,\"Ġindec\":29077,\"volent\":29078,\"Ġperpetual\":29079,\"ubes\":29080,\"Ġworldview\":29081,\"ĠQuantum\":29082,\"Ġfiltered\":29083,\"Ġensu\":29084,\"orgetown\":29085,\"ERSON\":29086,\"ĠMild\":29087,\"379\":29088,\"OTT\":29089,\"Ã¥\":29090,\"Ġvitamins\":29091,\"Ġribbon\":29092,\"Ġsincerely\":29093,\"ĠHin\":29094,\"Ġeighteen\":29095,\"Ġcontradictory\":29096,\"Ġglaring\":29097,\"Ġexpectancy\":29098,\"Ġconspir\":29099,\"Ġmonstrous\":29100,\"Ġ380\":29101,\"reci\":29102,\"Ġhandic\":29103,\"Ġpumped\":29104,\"Ġindicative\":29105,\"Ġrapp\":29106,\"Ġavail\":29107,\"ĠLEGO\":29108,\"ĠMarijuana\":29109,\"1985\":29110,\"erton\":29111,\"Ġtwentieth\":29112,\"################################\":29113,\"ĠSwamp\":29114,\"Ġvaluation\":29115,\"Ġaffiliates\":29116,\"adjusted\":29117,\"ĠFacility\":29118,\"262\":29119,\"Ġenzymes\":29120,\"itudinal\":29121,\"Ġimprint\":29122,\"Site\":29123,\"Ġinstaller\":29124,\"ĠTRA\":29125,\"mology\":29126,\"linear\":29127,\"ĠCollective\":29128,\"igating\":29129,\"ĠToken\":29130,\"Ġspeculated\":29131,\"KN\":29132,\"ĠCly\":29133,\"ority\":29134,\"Ġdefer\":29135,\"Ġinspectors\":29136,\"approved\":29137,\"RM\":29138,\"ĠSuns\":29139,\"Ġinforming\":29140,\"ĠSyracuse\":29141,\"ibli\":29142,\"765\":29143,\"Ġglove\":29144,\"Ġauthorize\":29145,\"âĢ¦âĢ¦âĢ¦âĢ¦âĢ¦âĢ¦âĢ¦âĢ¦\":29146,\"ĠCruise\":29147,\"Ġcontracting\":29148,\"shell\":29149,\"IFE\":29150,\"ĠJewel\":29151,\"pract\":29152,\"ĠPhotoshop\":29153,\"ĠKnowing\":29154,\"harm\":29155,\"Ġattractions\":29156,\"adan\":29157,\"etus\":29158,\"018\":29159,\"wagen\":29160,\"Alt\":29161,\"Ġmultiply\":29162,\"Ġequilibrium\":29163,\":{\":29164,\"ĠFighters\":29165,\"ĠEdgar\":29166,\"Ġfourteen\":29167,\"Govern\":29168,\"Ġmisuse\":29169,\"Ġabusing\":29170,\"Ġancestry\":29171,\"ramer\":29172,\"644\":29173,\"Ġworms\":29174,\"Ġthicker\":29175,\"ĠCombine\":29176,\"Ġpeasants\":29177,\"Ġvind\":29178,\"Ġconquest\":29179,\"Ġmocked\":29180,\"Ġcinnamon\":29181,\"ĠCald\":29182,\"ĠGallup\":29183,\"Ġavoidance\":29184,\"Ġincarnation\":29185,\"ĠStrat\":29186,\"Ġtasted\":29187,\"enta\":29188,\"ĠNeal\":29189,\"pared\":29190,\"Ġterminology\":29191,\"jection\":29192,\"Scientists\":29193,\"ĠINS\":29194,\"ĠDee\":29195,\"Ġdirectories\":29196,\"Road\":29197,\"ĠShap\":29198,\"bright\":29199,\"ĠDirectors\":29200,\"ĠColumn\":29201,\"Ġbob\":29202,\"Ġpreferably\":29203,\"Ġglitch\":29204,\"furt\":29205,\"Ġeg\":29206,\"idis\":29207,\"CBC\":29208,\"Ġsurrendered\":29209,\"Ġtestament\":29210,\"336\":29211,\"uggest\":29212,\"ĠNil\":29213,\"another\":29214,\"Ġpathetic\":29215,\"ĠDonna\":29216,\"Ġ218\":29217,\"ĠAvery\":29218,\"Ġwhiskey\":29219,\"Ġfixture\":29220,\"ĠConquest\":29221,\"Ġbets\":29222,\"Occ\":29223,\"ĠLeicester\":29224,\"].\\\"\":29225,\"Ġ));\":29226,\"Ġflashes\":29227,\"456\":29228,\"Ġmasked\":29229,\"gebra\":29230,\"Ġcomputed\":29231,\"chel\":29232,\"auder\":29233,\"Ġdefeats\":29234,\"ĠLiberation\":29235,\"ĠOsama\":29236,\"ĠVive\":29237,\"Changes\":29238,\"Channel\":29239,\"Ġtariffs\":29240,\"Ġmage\":29241,\"ĠSax\":29242,\"Ġinadvertently\":29243,\"ĠCRE\":29244,\"ĠReaper\":29245,\"inky\":29246,\"grading\":29247,\"Ġstereotyp\":29248,\"Ġcurl\":29249,\"ĠFANT\":29250,\"Ġframeworks\":29251,\"Mom\":29252,\"ĠAnch\":29253,\"Ġflavour\":29254,\"carbon\":29255,\"Ġpermitting\":29256,\"letcher\":29257,\"ĠMozilla\":29258,\"ĠParking\":29259,\"ĠChamp\":29260,\"Scroll\":29261,\"Ġmurderer\":29262,\"Ġrested\":29263,\"Ġowes\":29264,\"ĠPoss\":29265,\"ADD\":29266,\"IFF\":29267,\"resolution\":29268,\"ĠMining\":29269,\"Ġcomparative\":29270,\"Dim\":29271,\"Ġneighbouring\":29272,\"ĠAST\":29273,\"ĠToxic\":29274,\"Ġbiases\":29275,\"Ġgunfire\":29276,\"urous\":29277,\"ĠMoment\":29278,\"1983\":29279,\"Ġpervasive\":29280,\"ttp\":29281,\"ĠNormally\":29282,\"rir\":29283,\"Sarah\":29284,\"ĠAlbany\":29285,\"Ġunsett\":29286,\"ĠSMS\":29287,\"ipers\":29288,\"layer\":29289,\"ĠWhites\":29290,\"uple\":29291,\"Ġturbo\":29292,\"ĠLeeds\":29293,\"Ġthats\":29294,\"ĠMiner\":29295,\"MER\":29296,\"ĠReign\":29297,\"Ġperme\":29298,\"ĠBlitz\":29299,\"Ġ1934\":29300,\"Ġintimidating\":29301,\"tube\":29302,\"Ġeccentric\":29303,\"abolic\":29304,\"boxes\":29305,\"ĠAssociates\":29306,\"votes\":29307,\"Ġsimulate\":29308,\"umbo\":29309,\"astery\":29310,\"Ġshipments\":29311,\"FFFF\":29312,\"anth\":29313,\"Ġseasoned\":29314,\"Ġexperimentation\":29315,\"âĸł\":29316,\"laws\":29317,\"Meet\":29318,\"iddles\":29319,\"antics\":29320,\"Rating\":29321,\"ISIS\":29322,\"hift\":29323,\"Ġfronts\":29324,\"buf\":29325,\"017\":29326,\"Ġunatt\":29327,\"ĠDil\":29328,\"leases\":29329,\"ĠGardens\":29330,\"777\":29331,\"touch\":29332,\"vell\":29333,\"458\":29334,\"Ġ=====\":29335,\"saving\":29336,\"Ġerosion\":29337,\"ĠQuin\":29338,\"Ġearns\":29339,\"Ġaccomplishment\":29340,\"ĠWei\":29341,\"Ġ<[\":29342,\"_____\":29343,\"Ġirrig\":29344,\"ĠTeddy\":29345,\"Ġconquered\":29346,\"ĠArmored\":29347,\"Ġasserts\":29348,\"Ġmanipulating\":29349,\"rÃ©\":29350,\"Ġtranscripts\":29351,\"Gallery\":29352,\"Ġplotting\":29353,\"Neil\":29354,\"Ġbetrayal\":29355,\"loader\":29356,\"ĠSul\":29357,\"Ġdisplacement\":29358,\"Ġroyalty\":29359,\"ĠWI\":29360,\"heit\":29361,\"ĠDevices\":29362,\"allel\":29363,\"Ġmunicipalities\":29364,\"Ġcanal\":29365,\"Stars\":29366,\"ĠUAE\":29367,\"Ġ\\\"âĢ¦\":29368,\"ĠCU\":29369,\"above\":29370,\"Ġresonance\":29371,\"ĠguiActiveUn\":29372,\"added\":29373,\"ĠBraves\":29374,\"ĠIbn\":29375,\"Ġhereby\":29376,\"ĠBRE\":29377,\"Ġshareholder\":29378,\"ĠHir\":29379,\"ĠJi\":29380,\"Ġstrangely\":29381,\"Ġadmired\":29382,\"Ġplight\":29383,\"Ġbachelor\":29384,\"ĠPole\":29385,\"ciplinary\":29386,\"Tony\":29387,\"ĠArmenian\":29388,\"Ġunman\":29389,\"ĠZionist\":29390,\"Stage\":29391,\"iscover\":29392,\"Ġautomotive\":29393,\"Ġsidelines\":29394,\"Ġslick\":29395,\"ĠRenaissance\":29396,\"ĠFUN\":29397,\"Images\":29398,\"ĠHaj\":29399,\"Ġping\":29400,\"Ġshortcut\":29401,\"ĠBlvd\":29402,\"ĠLooks\":29403,\"Ġbursts\":29404,\"Ġclamp\":29405,\"Ġmish\":29406,\"Ġsorting\":29407,\"Ġpatriot\":29408,\"Ġcorrectness\":29409,\"ĠScandinav\":29410,\"ĠCavaliers\":29411,\"python\":29412,\"azar\":29413,\"Ġ375\":29414,\"ĠJaune\":29415,\"409\":29416,\"Ġdetrimental\":29417,\"Ġstabbing\":29418,\"Ġpoisoned\":29419,\"Ġfountain\":29420,\"ocent\":29421,\"orst\":29422,\"ĠMari\":29423,\"Ġrains\":29424,\"ĠOvers\":29425,\"ĠInstitution\":29426,\"udget\":29427,\"AMY\":29428,\"tale\":29429,\"ĠKR\":29430,\"ĠPrices\":29431,\"Ġheadaches\":29432,\"Ġlandsl\":29433,\"ĠAura\":29434,\"Bonus\":29435,\"ĠZhao\":29436,\"ĠHip\":29437,\"Ġhops\":29438,\"ĠKurdistan\":29439,\"Ġexploiting\":29440,\"ryn\":29441,\"Ġhypocrisy\":29442,\"opening\":29443,\"Ġgunshot\":29444,\"Ġwed\":29445,\"interstitial\":29446,\"Interstitial\":29447,\"Ġamen\":29448,\"Breaking\":29449,\"Ġmarketed\":29450,\"Wire\":29451,\"ĠCrowd\":29452,\"Continue\":29453,\"ĠKnown\":29454,\"ĠEffective\":29455,\"orean\":29456,\"izons\":29457,\"Joseph\":29458,\"Ġescalation\":29459,\"username\":29460,\"Ġcurtain\":29461,\"ATES\":29462,\"ĠPAR\":29463,\"ĠMiy\":29464,\"Ġcounterfe\":29465,\"lene\":29466,\"Ġcontenders\":29467,\"daily\":29468,\"ĠAsc\":29469,\"ĠPhillip\":29470,\"mostly\":29471,\"Ġfilename\":29472,\"hene\":29473,\"Ġresembling\":29474,\"Ġstaging\":29475,\"ĠChloe\":29476,\"Ġwiring\":29477,\"Hon\":29478,\"ĠRenew\":29479,\"ottage\":29480,\"ĠHybrid\":29481,\"much\":29482,\"Ġstrokes\":29483,\"Ġpolicymakers\":29484,\"APTER\":29485,\"ĠArkham\":29486,\"plot\":29487,\"Ġassistants\":29488,\"Ġdeport\":29489,\"ĠSega\":29490,\"Ġinfluenza\":29491,\"ĠCursed\":29492,\"ĠKobe\":29493,\"Ġskinny\":29494,\"Provider\":29495,\"ĠRip\":29496,\"Ġincremental\":29497,\"products\":29498,\"BF\":29499,\"Ġdome\":29500,\"ĠCredits\":29501,\"Ġlosers\":29502,\"ints\":29503,\"ĠBetty\":29504,\"ĠTalent\":29505,\"ĠDAM\":29506,\"Lv\":29507,\"Ess\":29508,\"Ġdens\":29509,\"temp\":29510,\"Judge\":29511,\"odic\":29512,\"Ġ'(\":29513,\"URES\":29514,\"etsk\":29515,\"VO\":29516,\"Ġretrieved\":29517,\"Ġarchitects\":29518,\"Ùĩ\":29519,\"Ġethic\":29520,\"ĠSecondary\":29521,\"stocks\":29522,\"adia\":29523,\"Ġ325\":29524,\"ĠOpinion\":29525,\"Ġsimultaneous\":29526,\"Ġdizz\":29527,\"ulp\":29528,\"Ġsmuggling\":29529,\"ippery\":29530,\"Random\":29531,\"facing\":29532,\"ĠDas\":29533,\"Ġstockp\":29534,\"Ġdisclosures\":29535,\"pointer\":29536,\"Ġcoral\":29537,\"ĠSelection\":29538,\"ĠPike\":29539,\"ivalent\":29540,\"Ġruthless\":29541,\"ĠRim\":29542,\"Ġensuing\":29543,\"ĠExperiment\":29544,\"Ġcongressman\":29545,\"Ġbeliever\":29546,\"Ġunspecified\":29547,\"ĠMord\":29548,\"Ġknowledgeable\":29549,\"ĠVERY\":29550,\"TX\":29551,\"Ġstraps\":29552,\"Ġturf\":29553,\"apeshifter\":29554,\"Ġmarital\":29555,\"Ġflock\":29556,\"ãģĨ\":29557,\"263\":29558,\"AMES\":29559,\"ĠOpposition\":29560,\"Ġtreasures\":29561,\"ĠGOD\":29562,\"Ġmodeled\":29563,\"ĠWORLD\":29564,\"Ġ([\":29565,\"ĠUsage\":29566,\"HF\":29567,\"Ġ$(\":29568,\"ussed\":29569,\"Ġpioneer\":29570,\"Eight\":29571,\"parse\":29572,\"bread\":29573,\"ritz\":29574,\"ĠMiranda\":29575,\"ĠKant\":29576,\"++)\":29577,\"oren\":29578,\"Ġprovoked\":29579,\"Ġbreeds\":29580,\"ĠIncludes\":29581,\"ĠPastebin\":29582,\"ĠFlip\":29583,\"Java\":29584,\"Ġbrink\":29585,\"Ġrumored\":29586,\"Ġunseen\":29587,\"Ġgarnered\":29588,\"ĠDefin\":29589,\"alted\":29590,\"Ġtattoos\":29591,\"Ġhesitation\":29592,\"isitions\":29593,\"ĠWeaver\":29594,\"ĠReporting\":29595,\"Ġtherapies\":29596,\"Ġconsultants\":29597,\"Ġresidual\":29598,\"ĠMali\":29599,\"ĠRoma\":29600,\"iago\":29601,\"ĠResidents\":29602,\"ubi\":29603,\"Ġremedies\":29604,\"Ġadaptive\":29605,\"ĠAlive\":29606,\"ĠBarcl\":29607,\"Ġwallets\":29608,\"crypt\":29609,\"etermination\":29610,\"ĠPelosi\":29611,\"Ġslipping\":29612,\"otonin\":29613,\"Ġalliances\":29614,\"patrick\":29615,\"iris\":29616,\"Ġorth\":29617,\"ĠPerkins\":29618,\"ĠDeV\":29619,\"ĠGets\":29620,\"Ġdrying\":29621,\"gee\":29622,\"forest\":29623,\"ĠForget\":29624,\"orem\":29625,\"339\":29626,\"Ġvaguely\":29627,\"ĠDion\":29628,\"ĠPorn\":29629,\"ĠHOW\":29630,\"Ġpneum\":29631,\"Ġrubble\":29632,\"ĠTaste\":29633,\"encia\":29634,\"ĠGel\":29635,\"Ġdst\":29636,\"Ġ245\":29637,\"ĠMorocco\":29638,\"inflamm\":29639,\"ĠTwins\":29640,\"Ġbots\":29641,\"daughter\":29642,\"ĠBalk\":29643,\"Ġbrethren\":29644,\"Ġlogos\":29645,\"Ġgobl\":29646,\"fps\":29647,\"Ġsubdivision\":29648,\"Ġpawn\":29649,\"Ġsqueezed\":29650,\"Ġmorale\":29651,\"ĠDW\":29652,\"'\\\"\":29653,\"Ġknot\":29654,\"ooky\":29655,\"Ġdivisive\":29656,\"Ġboosted\":29657,\"chy\":29658,\"ãĥĲ\":29659,\"ifact\":29660,\"Ġnewcomers\":29661,\"ĠWrestling\":29662,\"Ġscouts\":29663,\"wolves\":29664,\"Rat\":29665,\"Ġnineteenth\":29666,\"ĠOsborne\":29667,\"Stats\":29668,\"Ġempowered\":29669,\"Ġpsychopath\":29670,\"ĠOEM\":29671,\"uggage\":29672,\"ĠPK\":29673,\"ĠMohammad\":29674,\"Pak\":29675,\"Ġanarchists\":29676,\"ĠExtract\":29677,\"esthes\":29678,\"ĠStockholm\":29679,\"loo\":29680,\"ĠGraph\":29681,\"Ġdeploying\":29682,\"ĠStranger\":29683,\"ĠMold\":29684,\"Ġstaffer\":29685,\"Ġdiscounted\":29686,\"uckle\":29687,\"please\":29688,\"ĠLanding\":29689,\"ÃŃa\":29690,\"Ġ193\":29691,\"Ġante\":29692,\"Ġrepetition\":29693,\"Ġ+/-\":29694,\"Ġparody\":29695,\"Ġlively\":29696,\"AAA\":29697,\"ĠHorus\":29698,\"Ġpits\":29699,\"inders\":29700,\"LOC\":29701,\"ĠVenice\":29702,\"406\":29703,\"ĠDiscover\":29704,\"âĨ\":29705,\"ellectual\":29706,\"Ġpens\":29707,\"Ġeyel\":29708,\"iguous\":29709,\"Impl\":29710,\"Ġjoking\":29711,\"Ġinval\":29712,\"ĠBelfast\":29713,\"Ġcreditors\":29714,\"ĠSkywalker\":29715,\"ovsky\":29716,\"Ġceasefire\":29717,\"Ġseals\":29718,\"isoft\":29719,\")).\":29720,\"ĠFelix\":29721,\"ITS\":29722,\"Ġtresp\":29723,\"ĠBlockchain\":29724,\"eware\":29725,\"ĠSchwar\":29726,\"enne\":29727,\"mounted\":29728,\"ĠBeacon\":29729,\"lesh\":29730,\"Ġimmensely\":29731,\"Ġcheering\":29732,\"Employ\":29733,\"scene\":29734,\"ishly\":29735,\"atchewan\":29736,\"ĠNicolas\":29737,\"Ġdrained\":29738,\"ĠExit\":29739,\"ĠAzerb\":29740,\"jun\":29741,\"Ġfloated\":29742,\"uania\":29743,\"Deep\":29744,\"Ġsuperv\":29745,\"Ġmystical\":29746,\"ĠDollar\":29747,\"ĠApostle\":29748,\"ĠREL\":29749,\"ĠProvided\":29750,\"ĠBucks\":29751,\"ãĥ´\":29752,\"cutting\":29753,\"Ġenhancements\":29754,\"ĠPenguins\":29755,\"ĠIsaiah\":29756,\"Ġjerk\":29757,\"ĠWyn\":29758,\"Ġstalled\":29759,\"Ġcryptocurrencies\":29760,\"ĠRoland\":29761,\"single\":29762,\"Ġlumin\":29763,\"ĠFellow\":29764,\"ĠCapacity\":29765,\"ĠKazakh\":29766,\"WN\":29767,\"Ġfinanced\":29768,\"389\":29769,\"Ġtid\":29770,\"Ġcollusion\":29771,\"ĠMyr\":29772,\"îĢ\":29773,\"Senator\":29774,\"Ġpediatric\":29775,\"Ġneatly\":29776,\"Ġsandwiches\":29777,\"ĠArchitecture\":29778,\"Ġtucked\":29779,\"Ġbalcony\":29780,\"Ġearthquakes\":29781,\"quire\":29782,\"Future\":29783,\"Ġhefty\":29784,\"éĹ\":29785,\"Ġspecializes\":29786,\"Ġstresses\":29787,\"Ġsender\":29788,\"Ġmisunderstanding\":29789,\"Ġepile\":29790,\"Ġprovoke\":29791,\"ĠColors\":29792,\"Ġdismay\":29793,\"uko\":29794,\"[_\":29795,\"586\":29796,\"neutral\":29797,\"Ġdonating\":29798,\"ĠRandall\":29799,\"Multi\":29800,\"Ġconveniently\":29801,\"ĠSung\":29802,\"ĠCoca\":29803,\"Ġtents\":29804,\"ĠAcceler\":29805,\"Ġpartnered\":29806,\"272\":29807,\"irming\":29808,\"ĠBAS\":29809,\"sometimes\":29810,\"Ġobjected\":29811,\"ubric\":29812,\"posed\":29813,\"LCS\":29814,\"grass\":29815,\"Ġattributable\":29816,\"VIS\":29817,\"Israeli\":29818,\"Ġrepeats\":29819,\"ĠRM\":29820,\"vag\":29821,\"uta\":29822,\"inous\":29823,\"Ġinert\":29824,\"ĠMiguel\":29825,\"æŃ\":29826,\"ĠHawaiian\":29827,\"Board\":29828,\"Ġartific\":29829,\"ĠAzerbai\":29830,\"asio\":29831,\"ĠRent\":29832,\"AIN\":29833,\"Ġappliances\":29834,\"Ġnationality\":29835,\"Ġasshole\":29836,\"ĠNeb\":29837,\"Ġnotch\":29838,\"hani\":29839,\"ĠBride\":29840,\"Availability\":29841,\"Ġintercepted\":29842,\"Ġcontinental\":29843,\"Ġswelling\":29844,\"ĠPerspect\":29845,\"bies\":29846,\".<\":29847,\"ithmetic\":29848,\"ĠLara\":29849,\"Ġtempting\":29850,\"addr\":29851,\"Ġoverseeing\":29852,\"clad\":29853,\"ĠDV\":29854,\"ĠGingrich\":29855,\"Ġmun\":29856,\"ĠAppropri\":29857,\"Ġalterations\":29858,\"ĠPatreon\":29859,\"Ġhavoc\":29860,\"Ġdisciplines\":29861,\"Ġnotoriously\":29862,\"akuya\":29863,\"ieri\":29864,\"?).\":29865,\"ĠWent\":29866,\"Ġsilicon\":29867,\"Ġtremb\":29868,\"Container\":29869,\"Known\":29870,\"Ġmortar\":29871,\"este\":29872,\"icka\":29873,\"Arthur\":29874,\"ĠPreviously\":29875,\"ĠMarty\":29876,\"Ġsparse\":29877,\"gins\":29878,\"Ġinward\":29879,\"ĠParticipant\":29880,\"Copy\":29881,\"ĠMisc\":29882,\"Ġantibiotic\":29883,\"ĠRetro\":29884,\"Ġelusive\":29885,\"Ġassail\":29886,\"ĠBattalion\":29887,\"ĠBought\":29888,\"Ġdiminish\":29889,\"ĠEuropa\":29890,\"session\":29891,\"ĠDangerous\":29892,\"iesel\":29893,\"Ġdisbelief\":29894,\"Ġblasts\":29895,\"extreme\":29896,\"ĠBoyd\":29897,\"ĠProjects\":29898,\"ĠGuys\":29899,\"Ġundergone\":29900,\"Ġgrill\":29901,\"ĠDwight\":29902,\"Ġ197\":29903,\"USER\":29904,\"Ġfilesystem\":29905,\"Ġclocks\":29906,\"Taylor\":29907,\"Ġwrapper\":29908,\"Ġfolding\":29909,\"ousand\":29910,\"ĠPhilippine\":29911,\"ATIONAL\":29912,\"ĠPerth\":29913,\"Ġashes\":29914,\"Ġaccumulate\":29915,\"ĠGateway\":29916,\"Shop\":29917,\"orkshire\":29918,\"Han\":29919,\"ĠBarrel\":29920,\"ĠLeh\":29921,\"ĠXV\":29922,\"Ġwhim\":29923,\"Ġrepo\":29924,\"ĠCG\":29925,\"ĠMam\":29926,\"Ġincorporating\":29927,\"Ġbailout\":29928,\"Ġlinguistic\":29929,\"Ġdisinteg\":29930,\"CLE\":29931,\"Ġcinematic\":29932,\"ĠFiber\":29933,\"Syn\":29934,\"ilion\":29935,\"ĠCompos\":29936,\"chens\":29937,\"Ġneoc\":29938,\"Ġboiled\":29939,\"FINE\":29940,\"ono\":29941,\"uncle\":29942,\"iken\":29943,\"ĠBM\":29944,\"Î¹\":29945,\"Ġreceipts\":29946,\"Ġdisposed\":29947,\"ĠThirty\":29948,\"ĠRough\":29949,\"ĠABS\":29950,\"Ġnotwithstanding\":29951,\"ollen\":29952,\"#$\":29953,\"Ġunreliable\":29954,\"Ġbloom\":29955,\"Ġmediocre\":29956,\"Ġtram\":29957,\"ĠTasman\":29958,\"Ġshakes\":29959,\"Ġmanifesto\":29960,\"ĠMW\":29961,\"Ġsatisfactory\":29962,\"Ġshores\":29963,\"Ġcomputation\":29964,\"Ġassertions\":29965,\"ormons\":29966,\"arag\":29967,\"abit\":29968,\"Democrats\":29969,\"ĠLoot\":29970,\"ĠVolks\":29971,\"haired\":29972,\"Ġgravitational\":29973,\"Sing\":29974,\"ĠMiz\":29975,\"Ġthrottle\":29976,\"Ġtyranny\":29977,\"ĠViews\":29978,\"Ġrobber\":29979,\"ĠMinority\":29980,\"Ġshrine\":29981,\"scope\":29982,\"purpose\":29983,\"Ġnucleus\":29984,\"ourcing\":29985,\"ĠUSDA\":29986,\"ĠDHS\":29987,\"wra\":29988,\"ĠBowie\":29989,\"Scale\":29990,\"ĠBEL\":29991,\"xi\":29992,\"Iter\":29993,\"Ġ(),\":29994,\"wright\":29995,\"Ġsailors\":29996,\"oused\":29997,\"NASA\":29998,\"ĠProof\":29999,\"ĠMineral\":30000,\"token\":30001,\"ĠFD\":30002,\"Rew\":30003,\"Ġell\":30004,\"630\":30005,\"Ġchancellor\":30006,\"ĠGos\":30007,\"Ġamounted\":30008,\"ĠRecre\":30009,\"omez\":30010,\"ĠOptim\":30011,\"ĠOlive\":30012,\"Ġtracker\":30013,\"owler\":30014,\"ĠUnique\":30015,\"Root\":30016,\"Ġmaritime\":30017,\"ĠQuran\":30018,\"ĠAdapt\":30019,\"Ġecosystems\":30020,\"ĠRepeat\":30021,\"ĠSoy\":30022,\"ĠIMP\":30023,\"Ġgraduating\":30024,\"andem\":30025,\"Pur\":30026,\"ĠReset\":30027,\"ĠTrick\":30028,\"ĠPhilly\":30029,\"ĠTue\":30030,\"ĠMalaysian\":30031,\"Ġclimax\":30032,\"Ġbury\":30033,\"Ġconspic\":30034,\"ĠSouthampton\":30035,\"ĠFlowers\":30036,\"Ġescorted\":30037,\"ĠEducational\":30038,\"ĠIRC\":30039,\"Ġbrutally\":30040,\"eating\":30041,\"Ġpillar\":30042,\"ĠSang\":30043,\"ĠJude\":30044,\"arling\":30045,\"ĠAmnesty\":30046,\"Ġreminding\":30047,\"ĠAdministrative\":30048,\"hesda\":30049,\"Ġflashed\":30050,\"ĠPBS\":30051,\"perate\":30052,\"feature\":30053,\"Ġswipe\":30054,\"Ġgraves\":30055,\"oultry\":30056,\"261\":30057,\"breaks\":30058,\"ĠGuer\":30059,\"Ġshrimp\":30060,\"ĠVoting\":30061,\"quist\":30062,\"Ġanalytical\":30063,\"Ġtablespoons\":30064,\"ĠSOU\":30065,\"Ġresearched\":30066,\"Ġdisrupted\":30067,\"Ġjour\":30068,\"Ġreplica\":30069,\"Ġcartoons\":30070,\"bians\":30071,\"})\":30072,\"copy\":30073,\"Got\":30074,\"ouched\":30075,\"PUT\":30076,\"Ġswarm\":30077,\"notations\":30078,\"said\":30079,\"Ġrebuilt\":30080,\"Ġcollaborate\":30081,\"Ġraging\":30082,\"Ġnar\":30083,\"Ġdemographics\":30084,\"ĠDDR\":30085,\"Ġdistrust\":30086,\"ossier\":30087,\"ĠKro\":30088,\"Ġpumpkin\":30089,\"Ġregrets\":30090,\"Ġfatalities\":30091,\"ĠLens\":30092,\"ĠOle\":30093,\"pd\":30094,\"Ġpuppet\":30095,\"ĠOutlook\":30096,\"ĠStam\":30097,\"Ol\":30098,\"Fair\":30099,\"UU\":30100,\"Ġrewritten\":30101,\"Ä±\":30102,\"Ġfascinated\":30103,\"Ġvectors\":30104,\"Ġtribunal\":30105,\"uay\":30106,\"ĠMats\":30107,\"ĠCoins\":30108,\"[[\":30109,\"Ġ181\":30110,\"Ġrenders\":30111,\"ĠKaepernick\":30112,\"Ġespionage\":30113,\"Ġsumm\":30114,\"Ġditch\":30115,\"Account\":30116,\"Ġspreadsheet\":30117,\"Ġmutant\":30118,\"past\":30119,\"407\":30120,\"Ġdye\":30121,\"Ġinitiation\":30122,\"Ġ4000\":30123,\"Ġpunishable\":30124,\"Ġthinner\":30125,\"ĠKhal\":30126,\"Ġintermedi\":30127,\"Dun\":30128,\"ĠGotham\":30129,\"Ġeagerly\":30130,\"Ġvaginal\":30131,\"powers\":30132,\"VW\":30133,\"ĠWATCHED\":30134,\"Ġpredator\":30135,\"amsung\":30136,\"Ġdisparity\":30137,\"Ġ[*\":30138,\"Ġamph\":30139,\"Ġoutskirts\":30140,\"ĠSpirits\":30141,\"Ġskeletal\":30142,\"Ð»\":30143,\"ĠRear\":30144,\"Ġissuance\":30145,\"ĠLogic\":30146,\"released\":30147,\"ZZ\":30148,\"ĠBound\":30149,\"Entry\":30150,\"Ġexits\":30151,\"isol\":30152,\"ĠFounder\":30153,\"Ġwre\":30154,\"ĠGreenland\":30155,\"ĠMMO\":30156,\"taker\":30157,\"INC\":30158,\"ãģ¾\":30159,\"Ġhourly\":30160,\"henko\":30161,\"Ġfantasies\":30162,\"Ġdisob\":30163,\"Ġdemolition\":30164,\"ãĥĭ\":30165,\"Ġenlisted\":30166,\"ratulations\":30167,\"Ġmisguided\":30168,\"Ġensured\":30169,\"Ġdiscouraged\":30170,\"mort\":30171,\"Ġflank\":30172,\"Ġcess\":30173,\"Ġreacts\":30174,\"ĠSere\":30175,\"sensitive\":30176,\"ĠSerpent\":30177,\"assad\":30178,\"Ġ247\":30179,\"Ġcalmly\":30180,\"busters\":30181,\"Ġbleed\":30182,\"ĠStro\":30183,\"Ġamusement\":30184,\"ĠAntarctica\":30185,\"Ġscept\":30186,\"ĠGaw\":30187,\"aq\":30188,\"asonic\":30189,\"Ġsprawling\":30190,\"native\":30191,\"aturated\":30192,\"ĠBattlefield\":30193,\"IVERS\":30194,\"EB\":30195,\"ĠGems\":30196,\"ĠNorthwestern\":30197,\"ĠFilms\":30198,\"ĠAutomatic\":30199,\"Ġapprehend\":30200,\"ãģ¨\":30201,\"ĠguiName\":30202,\"Ġbackend\":30203,\"Ġevidenced\":30204,\"geant\":30205,\"012\":30206,\"ĠSiege\":30207,\"ĠexternalTo\":30208,\"ĠunfocusedRange\":30209,\"ĠguiActiveUnfocused\":30210,\"ĠguiIcon\":30211,\"ĠexternalToEVA\":30212,\"ĠexternalToEVAOnly\":30213,\"Fri\":30214,\"chard\":30215,\"enaries\":30216,\"Ġchiefs\":30217,\"Ġcf\":30218,\"ĠHUD\":30219,\"Ġcorrobor\":30220,\"ĠdB\":30221,\"ĠTaken\":30222,\"ĠPatricia\":30223,\"rail\":30224,\"ĠCharm\":30225,\"ĠLibertarian\":30226,\"rieve\":30227,\"Personal\":30228,\"ĠOUR\":30229,\"geries\":30230,\"Ġdumping\":30231,\"Ġneurological\":30232,\"itimate\":30233,\"ĠClintons\":30234,\"rafted\":30235,\"ĠMolly\":30236,\"Ġterminals\":30237,\"register\":30238,\"Ġflare\":30239,\"Ġencoded\":30240,\"Ġautopsy\":30241,\"pel\":30242,\"machine\":30243,\"Ġexemptions\":30244,\"ĠRoyals\":30245,\"distance\":30246,\"Ġdrafts\":30247,\"Ġlame\":30248,\"ĠCunning\":30249,\"Ġspouses\":30250,\"ĠMarkets\":30251,\"ĠCarrier\":30252,\"Ġimplying\":30253,\"ĠYak\":30254,\"sid\":30255,\"Ġloser\":30256,\"Ġvigilant\":30257,\"Ġimpeachment\":30258,\"Ġaugmented\":30259,\"ĠEmployees\":30260,\"Ġunintended\":30261,\"ternally\":30262,\"ĠWatt\":30263,\"Ġrecognizable\":30264,\"essim\":30265,\"æĿ\":30266,\"Ġcoated\":30267,\"rha\":30268,\"Ġlieutenant\":30269,\"ĠLegislation\":30270,\"published\":30271,\"444\":30272,\"013\":30273,\"Ġideally\":30274,\"ĠPassword\":30275,\"Ġsimplify\":30276,\"ĠMeta\":30277,\"ĠMRI\":30278,\"Ġpleading\":30279,\"organized\":30280,\"handler\":30281,\"Ġunravel\":30282,\"correct\":30283,\"Ġicy\":30284,\"Ġparanoid\":30285,\"Ġpasser\":30286,\"Ġinspections\":30287,\"ofer\":30288,\"ĠHealthcare\":30289,\"283\":30290,\"ĠBrut\":30291,\"iola\":30292,\"forge\":30293,\"ĠMedieval\":30294,\"MSN\":30295,\"ievers\":30296,\"ĠProgramming\":30297,\"åī\":30298,\"Ġ223\":30299,\"mu\":30300,\"ĠCLE\":30301,\"uga\":30302,\"Ġshoppers\":30303,\"Ġinformative\":30304,\"ĠPlans\":30305,\"Ġsupplementation\":30306,\"ĠTests\":30307,\"tyard\":30308,\"ocytes\":30309,\"ĠVega\":30310,\"ĠGujarat\":30311,\"ermanent\":30312,\"Except\":30313,\"ĠLOT\":30314,\"alla\":30315,\"ĠCumm\":30316,\"ĠOsw\":30317,\"Ġvenom\":30318,\"ĠDebt\":30319,\"ĠDOWN\":30320,\"Ġreunion\":30321,\"Ġmuc\":30322,\"ĠRelief\":30323,\"Ġgeop\":30324,\"ĠðŁĺ\":30325,\"alogue\":30326,\"Anth\":30327,\"echo\":30328,\"Ġcorros\":30329,\"Ġreplication\":30330,\"ĠBlazing\":30331,\"ĠDaughter\":30332,\"Ġinflic\":30333,\"ĠLindsey\":30334,\"ÙĪ\":30335,\"284\":30336,\"Exit\":30337,\"Ġgloom\":30338,\"TAIN\":30339,\"Ġundermining\":30340,\"Ġadvising\":30341,\"hidden\":30342,\"Ġoverflow\":30343,\"Ġgor\":30344,\"urdue\":30345,\"Ġechoes\":30346,\"enhagen\":30347,\"Ġimpuls\":30348,\"drug\":30349,\"cash\":30350,\"Ġasync\":30351,\"Ġmirac\":30352,\"atts\":30353,\"punk\":30354,\"Ġpivot\":30355,\"ĠLegislative\":30356,\"Ġbloggers\":30357,\"ĠClaw\":30358,\"sburg\":30359,\"dyl\":30360,\"ĠRecommend\":30361,\"Ġverte\":30362,\"Ġprohibiting\":30363,\"ĠPanther\":30364,\"Jonathan\":30365,\"Ġomin\":30366,\"Ġhateful\":30367,\"281\":30368,\"ĠOrche\":30369,\"ĠMurdoch\":30370,\"downs\":30371,\"Ġasymm\":30372,\"GER\":30373,\"Always\":30374,\"Ġinforms\":30375,\"ĠWM\":30376,\"ĠPony\":30377,\"ĠAppendix\":30378,\"ĠArlington\":30379,\"Jam\":30380,\"Ġmedicinal\":30381,\"ĠSlam\":30382,\"ITIES\":30383,\"Ġreaff\":30384,\"ĠRi\":30385,\"FG\":30386,\"Spring\":30387,\"bool\":30388,\"Ġthighs\":30389,\"Ġmarkings\":30390,\"ĠRaqqa\":30391,\"ĠLak\":30392,\"poll\":30393,\"tsky\":30394,\"ĠMorty\":30395,\"ĠDefinition\":30396,\"Ġdebunk\":30397,\"endered\":30398,\"ĠLeone\":30399,\"avers\":30400,\"Ġmortgages\":30401,\"Apparently\":30402,\"Nic\":30403,\"haus\":30404,\"ĠThousands\":30405,\"auld\":30406,\"Ġmash\":30407,\"shoot\":30408,\"Ġdiarr\":30409,\"Ġconsciously\":30410,\"Hero\":30411,\"eas\":30412,\"ĠNaturally\":30413,\"ĠDestroyer\":30414,\"Ġdashboard\":30415,\"services\":30416,\"Rog\":30417,\"Ġmillennials\":30418,\"Ġinvade\":30419,\"-(\":30420,\"Ġcommissions\":30421,\"ĠAuckland\":30422,\"Ġbroadcasts\":30423,\"Ġfrontal\":30424,\"Ġcrank\":30425,\"ĠHistoric\":30426,\"Ġrumours\":30427,\"CTV\":30428,\"Ġsteril\":30429,\"Ġbooster\":30430,\"rocket\":30431,\"ãĤ¼\":30432,\"utsche\":30433,\"ĠPI\":30434,\"Ġ233\":30435,\"ĠProducer\":30436,\"ĠAnalytics\":30437,\"Ġinvaluable\":30438,\"Ġunintention\":30439,\"ĠCY\":30440,\"Ġscrutin\":30441,\"Ġgigg\":30442,\"Ġengulf\":30443,\"Ġproletariat\":30444,\"Ġhacks\":30445,\"ĠHew\":30446,\"arak\":30447,\"ĠSlime\":30448,\"ielding\":30449,\"agher\":30450,\"ĠElliot\":30451,\"Ġtelecom\":30452,\"Ġ219\":30453,\"ultan\":30454,\"ĠArbor\":30455,\"ĠScouts\":30456,\"Ban\":30457,\"Ġlifespan\":30458,\"Ġblasp\":30459,\"388\":30460,\"Ġjudiciary\":30461,\"ĠContinental\":30462,\"asking\":30463,\"McC\":30464,\"LED\":30465,\"Ġbaggage\":30466,\"ĠSorcerer\":30467,\"Ġremnants\":30468,\"ĠGriffith\":30469,\"etsu\":30470,\"ĠSubaru\":30471,\"ĠPersonality\":30472,\"designed\":30473,\"ushima\":30474,\"agnar\":30475,\"Ġrecoil\":30476,\"Ġpassions\":30477,\"\\\\\\\":\":30478,\"Ġtee\":30479,\"Ġabolition\":30480,\"ĠCreating\":30481,\"jac\":30482,\"Ġ194\":30483,\"019\":30484,\"Ġpillars\":30485,\"riched\":30486,\"/\\\"\":30487,\"tk\":30488,\"Ġlivelihood\":30489,\"Ġroasted\":30490,\"ahon\":30491,\"ĠHutch\":30492,\"assert\":30493,\"Ġdividend\":30494,\"Ġknit\":30495,\"Ġdaunting\":30496,\"Ġdisturbance\":30497,\"Ġshale\":30498,\"Ġcultivated\":30499,\"Ġrefrigerator\":30500,\"LB\":30501,\"ĠNET\":30502,\"Ġcommercials\":30503,\"Ġthinkers\":30504,\"455\":30505,\"Ġchop\":30506,\"Broad\":30507,\"Ġsuspicions\":30508,\"Ġtagged\":30509,\"lifting\":30510,\"Ġstylish\":30511,\"ĠShields\":30512,\"Shortly\":30513,\"Ġtails\":30514,\"Auth\":30515,\"STE\":30516,\"ĠGAME\":30517,\"Ġseism\":30518,\"ĠKis\":30519,\"ologne\":30520,\"Ġcowork\":30521,\"Ġforcibly\":30522,\"Ġthyroid\":30523,\"ĠPB\":30524,\"ANE\":30525,\"married\":30526,\"horse\":30527,\"Ġpolymer\":30528,\"ĠChal\":30529,\"odor\":30530,\"DEBUG\":30531,\"ĠContext\":30532,\"Ġbliss\":30533,\"Ġpinpoint\":30534,\"ĠMathemat\":30535,\"legram\":30536,\"ĠWeekend\":30537,\"Ġlabelled\":30538,\"Ġbart\":30539,\"itles\":30540,\"Ġestrogen\":30541,\"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ\":30542,\"\\\"'\":30543,\"Ġvisibly\":30544,\"Ġoutsider\":30545,\"aida\":30546,\"Area\":30547,\"Ġdissemin\":30548,\"Ġdishonest\":30549,\"ĠClosed\":30550,\"ĠBulletin\":30551,\"ĠRamsey\":30552,\"sword\":30553,\"ĠXI\":30554,\"ourced\":30555,\"Same\":30556,\"346\":30557,\"ĠRepe\":30558,\"ĠKou\":30559,\"cake\":30560,\"emis\":30561,\"Cache\":30562,\"ĠMeaning\":30563,\"ĠEnlight\":30564,\"onomy\":30565,\"Ġmanifestation\":30566,\"sworth\":30567,\"Jay\":30568,\"Ġchore\":30569,\"Ã¶r\":30570,\"Dream\":30571,\"Ġsanctioned\":30572,\"Ġculturally\":30573,\"ĠAra\":30574,\"Nav\":30575,\"Ġtheological\":30576,\"Ġstrut\":30577,\"ĠVO\":30578,\"ĠHandbook\":30579,\"Ġconstructing\":30580,\"ĠÂ¶\":30581,\"ĠBenefits\":30582,\"ĠPsychological\":30583,\"sac\":30584,\"å¸\":30585,\"policy\":30586,\"ĠMatters\":30587,\"ĠReported\":30588,\"ĠByte\":30589,\"Ġvitro\":30590,\"ĠMaiden\":30591,\"Ġlam\":30592,\"ĠJennings\":30593,\"Ġgarment\":30594,\"ĠRutgers\":30595,\"ĠStafford\":30596,\"ĠWellington\":30597,\"Ġintermitt\":30598,\"Ġnpm\":30599,\"Ġordeal\":30600,\"Ġplugged\":30601,\"ooming\":30602,\"inished\":30603,\"framework\":30604,\"Ġtimber\":30605,\"Ġcass\":30606,\"Ġ850\":30607,\"iless\":30608,\"ĠRedux\":30609,\"768\":30610,\"Stre\":30611,\"Ġsurpassed\":30612,\"whel\":30613,\"Ġparallels\":30614,\"Ġveil\":30615,\"ĠGI\":30616,\"ĠREST\":30617,\"Ġreadiness\":30618,\"sort\":30619,\"Ġmodifying\":30620,\"ĠSlate\":30621,\"ruff\":30622,\"Ġmarble\":30623,\"Ġinfrared\":30624,\"Ġauditor\":30625,\"ĠFANTASY\":30626,\"ĠPoverty\":30627,\"ĠSPD\":30628,\"Ġ\\\"(\":30629,\"Ky\":30630,\"RAY\":30631,\"Ġexecutions\":30632,\"ĠBeverly\":30633,\"ĠMarxism\":30634,\"ĠBurst\":30635,\"ĠKali\":30636,\"estones\":30637,\"Clearly\":30638,\"Ell\":30639,\"ãģ§\":30640,\"ĠProceedings\":30641,\"Token\":30642,\"IFIC\":30643,\"Ã±a\":30644,\"Central\":30645,\"ĠHaley\":30646,\"ĠDrama\":30647,\"Ġformations\":30648,\"ORN\":30649,\"Books\":30650,\"Ġdominating\":30651,\"ĠFlyers\":30652,\"ĠCompanion\":30653,\"Ġdisciplined\":30654,\"ĠYugoslav\":30655,\"ĠSpells\":30656,\"Ġvengeance\":30657,\"Ġlandlords\":30658,\"Len\":30659,\"ĠOgre\":30660,\"anoia\":30661,\"Ġpiercing\":30662,\"Ġcongreg\":30663,\"Ġscorer\":30664,\"obia\":30665,\"Ġnickel\":30666,\"ĠLearns\":30667,\"Ġrejo\":30668,\"Ġmasterpiece\":30669,\"Flash\":30670,\"Ġinhabited\":30671,\"ĠOpenGL\":30672,\"ĠDud\":30673,\"ĠICO\":30674,\"Ġarter\":30675,\"Ġplur\":30676,\"Ġmastery\":30677,\"Ġlongstanding\":30678,\"sted\":30679,\"Ġwines\":30680,\"Ġtelevised\":30681,\"ĠShrine\":30682,\"ĠBayern\":30683,\"Ġâĵĺ\":30684,\"Ġenclosure\":30685,\"john\":30686,\"Ġprophets\":30687,\"ĠResurrection\":30688,\"ĠOrders\":30689,\"Ġuneven\":30690,\"rals\":30691,\"Ġdwind\":30692,\"ĠLah\":30693,\"ĠSloven\":30694,\"378\":30695,\"Ġinsistence\":30696,\"affle\":30697,\"ĠClone\":30698,\"Ġhardship\":30699,\"ĠCongressman\":30700,\"Ġplead\":30701,\"Ġreviewers\":30702,\"Ġcured\":30703,\"Ġ1935\":30704,\"asley\":30705,\"fake\":30706,\"ĠThinking\":30707,\"ydia\":30708,\"PART\":30709,\"ĠDota\":30710,\"oit\":30711,\"Ġwhipped\":30712,\"Ġbouncing\":30713,\"ĠHispanics\":30714,\"comings\":30715,\"Ġcannabin\":30716,\"ĠChambers\":30717,\"ĠZack\":30718,\"Optional\":30719,\"Ġcoats\":30720,\"Ġprowess\":30721,\"ĠNorton\":30722,\"Ġplainly\":30723,\"Ġfreight\":30724,\"Ġinhibition\":30725,\"Ġclam\":30726,\"Ġ303\":30727,\"kef\":30728,\"aleigh\":30729,\"Luke\":30730,\"Ġpsycho\":30731,\"atorium\":30732,\"MED\":30733,\"Ġtreaties\":30734,\"Ġindisc\":30735,\"Ġdc\":30736,\"OPS\":30737,\"Ġresilient\":30738,\"ĠInterstate\":30739,\"Ġslack\":30740,\"Ġmundane\":30741,\"Ġestablishes\":30742,\"359\":30743,\"Ġstrained\":30744,\"Ġnond\":30745,\"Sus\":30746,\"Ġcaste\":30747,\"arate\":30748,\"ieving\":30749,\"Ġunfairly\":30750,\"Ġparser\":30751,\"onial\":30752,\"ursive\":30753,\"Via\":30754,\"ĠOtto\":30755,\"ĠAuthorities\":30756,\"stroke\":30757,\"KR\":30758,\"ĠMercy\":30759,\"Ġfurnished\":30760,\"Ġoutset\":30761,\"Ġmetic\":30762,\"1982\":30763,\"olithic\":30764,\"ĠTent\":30765,\"ogical\":30766,\"ĠAircraft\":30767,\"Ġhides\":30768,\"ĠBecame\":30769,\"Ġeducators\":30770,\"reaching\":30771,\"Ġvolatility\":30772,\"Ġtoddler\":30773,\"ĠNASCAR\":30774,\"ĠTwelve\":30775,\"ĠHighlights\":30776,\"Ġgrape\":30777,\"Ġsplits\":30778,\"Ġpeasant\":30779,\"Ġreneg\":30780,\"ĠMSI\":30781,\"Temp\":30782,\"stars\":30783,\"Ġtrek\":30784,\"ĠHyde\":30785,\"binding\":30786,\"Ġrealism\":30787,\"Ġoxide\":30788,\"ĠHos\":30789,\"Ġmounts\":30790,\"Ġbiting\":30791,\"Ġcollapsing\":30792,\"Ġpostal\":30793,\"Ġmuseums\":30794,\"Ġdetached\":30795,\"Ġrespecting\":30796,\"Ġmonopol\":30797,\"Ġworkflow\":30798,\"ĠCake\":30799,\"Template\":30800,\"ĠOrganisation\":30801,\"Ġpersistence\":30802,\"369\":30803,\"Coming\":30804,\"Brad\":30805,\"Ġredundant\":30806,\"ĠGTA\":30807,\"Ġbending\":30808,\"Ġrevoked\":30809,\"Ġoffending\":30810,\"Ġframing\":30811,\"Ġprintf\":30812,\"Commun\":30813,\"members\":30814,\"Outside\":30815,\"Ġconstrued\":30816,\"Ġcoded\":30817,\"FORE\":30818,\"Ġchast\":30819,\"Chat\":30820,\"Indian\":30821,\"ĠYard\":30822,\"?!\\\"\":30823,\"ĠPorts\":30824,\"ĠXavier\":30825,\"ĠRET\":30826,\"'.\\\"\":30827,\"ĠBoat\":30828,\"ivated\":30829,\"icht\":30830,\"umerable\":30831,\"Ds\":30832,\"ĠDunn\":30833,\"Ġcoffin\":30834,\"Ġsecurely\":30835,\"ĠRaptors\":30836,\"ĠBes\":30837,\"Installation\":30838,\"Ġinception\":30839,\"ĠHealthy\":30840,\"endants\":30841,\"Ġpsychologists\":30842,\"ĠSheikh\":30843,\"cultural\":30844,\"ĠBlackBerry\":30845,\"shift\":30846,\"Fred\":30847,\"oche\":30848,\"Ġcakes\":30849,\"ĠSEO\":30850,\"ĠGian\":30851,\"ĠAsians\":30852,\"ogging\":30853,\"element\":30854,\"Ġpundits\":30855,\"ĠVaugh\":30856,\"ĠGavin\":30857,\"Ġhitter\":30858,\"Ġdrowned\":30859,\"Ġchalk\":30860,\"ĠZika\":30861,\"Ġmeasles\":30862,\"802\":30863,\"âĢ¦..\":30864,\"ĠAWS\":30865,\"]\\\"\":30866,\"Ġdistort\":30867,\"ĠMast\":30868,\"Ġantibodies\":30869,\"ĠMash\":30870,\"Memory\":30871,\"ĠUganda\":30872,\"ĠProb\":30873,\"Ġvomiting\":30874,\"ĠTurns\":30875,\"Ġoccupying\":30876,\"Ġevasion\":30877,\"ĠTherapy\":30878,\"Ġpromo\":30879,\"Ġelectr\":30880,\"Ġblueprint\":30881,\"ĠDre\":30882,\"priced\":30883,\"ĠDepot\":30884,\"Ġalleviate\":30885,\"ĠSomali\":30886,\"marg\":30887,\"nine\":30888,\"Ġnostalgia\":30889,\"ĠShepherd\":30890,\"Ġcavalry\":30891,\"Ġtorped\":30892,\"ĠBloody\":30893,\"xb\":30894,\"Ġsank\":30895,\"Ġgoalt\":30896,\"reportprint\":30897,\"embedreportprint\":30898,\"cloneembedreportprint\":30899,\"ĠInitially\":30900,\"ĠFischer\":30901,\"Ġnoteworthy\":30902,\"cern\":30903,\"Ġinefficient\":30904,\"rawdownload\":30905,\"rawdownloadcloneembedreportprint\":30906,\"cation\":30907,\"ĠDynasty\":30908,\"lag\":30909,\"DES\":30910,\"Ġdistinctly\":30911,\"ĠEstonia\":30912,\"Ġopenness\":30913,\"Ġgossip\":30914,\"ruck\":30915,\"Width\":30916,\"ĠIbrahim\":30917,\"Ġpetroleum\":30918,\"Ġavatar\":30919,\"ĠHed\":30920,\"atha\":30921,\"ĠHogwarts\":30922,\"Ġcaves\":30923,\"678\":30924,\"Ġsafeguard\":30925,\"ĠMog\":30926,\"isson\":30927,\"ĠDurham\":30928,\"slaught\":30929,\"ĠGraduate\":30930,\"Ġsubconscious\":30931,\"ĠExcellent\":30932,\"ĠDum\":30933,\"-----\":30934,\"Ġpiles\":30935,\"ĠWORK\":30936,\"ĠGarn\":30937,\"ĠFol\":30938,\"ĠATM\":30939,\"Ġavoids\":30940,\"ĠTul\":30941,\"Ġbleak\":30942,\"ELY\":30943,\"ivist\":30944,\"lightly\":30945,\"Pers\":30946,\"ĠDob\":30947,\"ĠLS\":30948,\"Ġinsanity\":30949,\"Îµ\":30950,\"atalie\":30951,\"Enlarge\":30952,\"Ġtwists\":30953,\"Ġfaulty\":30954,\"Ġpiracy\":30955,\"Ġimpover\":30956,\"Ġrugged\":30957,\"ĠFashion\":30958,\"Ġsands\":30959,\"'?\":30960,\"swick\":30961,\"Ġnatives\":30962,\"Ġhen\":30963,\"ĠNoise\":30964,\"ãĥĹ\":30965,\"Ġgreens\":30966,\"Ġfreezer\":30967,\"Ġdynasty\":30968,\"ĠFathers\":30969,\"ĠNewark\":30970,\"Ġarchaeological\":30971,\"Ġot\":30972,\"obar\":30973,\"Ġblockade\":30974,\"Ġallerg\":30975,\"LV\":30976,\"Ġdebit\":30977,\"ĠRFC\":30978,\"ĠMilton\":30979,\"ĠPressure\":30980,\"Ġwillingly\":30981,\"Ġdisproportionate\":30982,\"Ġoppressive\":30983,\"Ġdiamonds\":30984,\"Ġbelongings\":30985,\"1970\":30986,\"Ġbells\":30987,\"Ġimperialism\":30988,\"Ġ227\":30989,\"Ġexploding\":30990,\"ĠEclipse\":30991,\"Ġ1919\":30992,\"Ġrant\":30993,\"Ġnominations\":30994,\"347\":30995,\"Ġpeacefully\":30996,\"rica\":30997,\"ĠFUCK\":30998,\"Ġvibration\":30999,\"malink\":31000,\"Ġropes\":31001,\"ĠIvanka\":31002,\"ĠBrewery\":31003,\"ĠBooker\":31004,\"ĠOwens\":31005,\"goers\":31006,\"Services\":31007,\"ĠSnape\":31008,\"Ġ191\":31009,\"395\":31010,\"Ġ299\":31011,\"justice\":31012,\"Ġbri\":31013,\"Ġdiscs\":31014,\"Ġprominently\":31015,\"Ġvulgar\":31016,\"Ġskipping\":31017,\"lves\":31018,\"Ġtsunami\":31019,\"374\":31020,\"ĠUrug\":31021,\"ĠEid\":31022,\"recated\":31023,\"phen\":31024,\"Ġfaults\":31025,\"ĠStarted\":31026,\"950\":31027,\"Ġpi\":31028,\"Ġdetector\":31029,\"Ġbastard\":31030,\"Ġvalidated\":31031,\"SpaceEngineers\":31032,\"OURCE\":31033,\"Ġ(~\":31034,\"Ġunsur\":31035,\"Ġaffirmed\":31036,\"Ġfascism\":31037,\"Ġresolving\":31038,\"ĠChavez\":31039,\"ĠCyn\":31040,\"Ġdetract\":31041,\"Lost\":31042,\"Ġrigged\":31043,\"Ġhomage\":31044,\"ĠBruno\":31045,\"555\":31046,\"eca\":31047,\"Ġpresses\":31048,\"Ġhumour\":31049,\"Ġspacing\":31050,\"Ġ'/\":31051,\"olkien\":31052,\"Coun\":31053,\"OPER\":31054,\"Tre\":31055,\"Son\":31056,\"ĠCambodia\":31057,\"ierre\":31058,\"mong\":31059,\"ozy\":31060,\"Ġliquidity\":31061,\"ĠSoviets\":31062,\"ĠFernando\":31063,\"Ġ229\":31064,\"Ġslug\":31065,\"ĠCatalan\":31066,\"electric\":31067,\"Ġscenery\":31068,\"ĠHearth\":31069,\"Ġconstrained\":31070,\"Ġgoalie\":31071,\"ĠGuidelines\":31072,\"ĠAmmo\":31073,\"ĠPearson\":31074,\"Ġtaxed\":31075,\"Ġfetus\":31076,\"Response\":31077,\"ĠAlexis\":31078,\"thia\":31079,\"Guy\":31080,\"Ġreconstruct\":31081,\"Ġextremes\":31082,\"Ġconcluding\":31083,\"ĠPeg\":31084,\"ooks\":31085,\"Ġdeductions\":31086,\"Rose\":31087,\"Ġgroundbreaking\":31088,\"ĠTarg\":31089,\"ãĥģ\":31090,\"ĠReve\":31091,\"resource\":31092,\"Ġmoons\":31093,\"Ġelectromagnetic\":31094,\"Ġamidst\":31095,\"ĠViktor\":31096,\"NESS\":31097,\"BACK\":31098,\"Ġcommute\":31099,\"ĠAnaheim\":31100,\"Ġfluctuations\":31101,\"640\":31102,\"Ġnoodles\":31103,\"ĠCopenhagen\":31104,\"ĠTide\":31105,\"ĠGrizz\":31106,\"ĠSEE\":31107,\"Ġpipelines\":31108,\"Ġscars\":31109,\"endo\":31110,\"agus\":31111,\"ĠETF\":31112,\"/#\":31113,\"ĠBecome\":31114,\"448\":31115,\"Ġvisc\":31116,\"ĠRecommended\":31117,\"Ġjumper\":31118,\"Ġcognition\":31119,\"Ġassassin\":31120,\"Ġwitnessing\":31121,\"ĠSetup\":31122,\"Ġlac\":31123,\"vim\":31124,\"ISM\":31125,\"pages\":31126,\"SSL\":31127,\"358\":31128,\"Ġadject\":31129,\"industrial\":31130,\"lore\":31131,\"chery\":31132,\"Ġglitter\":31133,\"Ġcalf\":31134,\"Florida\":31135,\"Ġspoilers\":31136,\"Ġsucceeds\":31137,\"Ġchanting\":31138,\"Ġslogans\":31139,\"ĠTracy\":31140,\"Visit\":31141,\"rology\":31142,\"Ġmornings\":31143,\"Ġlineage\":31144,\"Ġsip\":31145,\"Ġintensely\":31146,\"Ġflourish\":31147,\"ĠSleeping\":31148,\"ĠFem\":31149,\"orpor\":31150,\"ĠKlan\":31151,\"ĠDarth\":31152,\"hack\":31153,\"ĠNielsen\":31154,\"Ġtumors\":31155,\"Ġprocurement\":31156,\"ĠYorkshire\":31157,\"Ġraided\":31158,\"KY\":31159,\"Anna\":31160,\"Ġ//[\":31161,\"ĠDisorder\":31162,\"ĠMustang\":31163,\"ĠWen\":31164,\"ĠTrying\":31165,\"sq\":31166,\"Ġdeliveries\":31167,\"Ġshutter\":31168,\"Ġcerebral\":31169,\"Ġbipolar\":31170,\"ĠCN\":31171,\"lass\":31172,\"jet\":31173,\"Ġdebating\":31174,\">:\":31175,\"Ġeagle\":31176,\"grades\":31177,\"ĠDixon\":31178,\"UGC\":31179,\"MAS\":31180,\"ĠDraco\":31181,\"ĠMachines\":31182,\"affer\":31183,\"Ġeman\":31184,\"Â²\":31185,\"pron\":31186,\"ĠGym\":31187,\"Ġcomparatively\":31188,\"ĠTribunal\":31189,\"PRO\":31190,\"Ġlex\":31191,\"Ġfertile\":31192,\"Ġdepressing\":31193,\"Ġsuperficial\":31194,\"essential\":31195,\"ĠHunters\":31196,\"gp\":31197,\"Ġprominence\":31198,\"Liber\":31199,\"ĠAncest\":31200,\"otechnology\":31201,\"Ġmocking\":31202,\"ĠTraff\":31203,\"ĸļ\":31204,\"Medium\":31205,\"Iraq\":31206,\"Ġpsychiatrist\":31207,\"Quantity\":31208,\"ĠLect\":31209,\"Ġnoisy\":31210,\"520\":31211,\"GY\":31212,\"Ġslapped\":31213,\"ĠMTV\":31214,\"Ġpara\":31215,\"pull\":31216,\"Multiple\":31217,\"asher\":31218,\"Ġnour\":31219,\"ĠSeg\":31220,\"Spell\":31221,\"vous\":31222,\"ordial\":31223,\"Senior\":31224,\"ĠGoldberg\":31225,\"ĠPlasma\":31226,\"need\":31227,\"Ġmessenger\":31228,\"eret\":31229,\"Ġteamed\":31230,\"Ġliteracy\":31231,\"ĠLeah\":31232,\"ĠDoyle\":31233,\"Ġemitted\":31234,\"UX\":31235,\"Ġevade\":31236,\"Ġmaze\":31237,\"Ġwrongly\":31238,\"ĠLars\":31239,\"Ġstereotype\":31240,\"Ġpledges\":31241,\"Ġaroma\":31242,\"ĠMET\":31243,\"Ġacre\":31244,\"ĠOD\":31245,\"Ġff\":31246,\"Ġbreweries\":31247,\"ĠHilton\":31248,\"undle\":31249,\"ĠKak\":31250,\"ĠThankfully\":31251,\"ĠCanucks\":31252,\"inctions\":31253,\"ĠAppears\":31254,\"Ġcoer\":31255,\"Ġundermined\":31256,\"rovers\":31257,\"Andre\":31258,\"Ġblaze\":31259,\"umers\":31260,\"Ġfamine\":31261,\"amphetamine\":31262,\"ulkan\":31263,\"Amount\":31264,\"Ġdesperation\":31265,\"wikipedia\":31266,\"development\":31267,\"ĠCorinth\":31268,\"ussia\":31269,\"Jackson\":31270,\"LI\":31271,\"Native\":31272,\"Rs\":31273,\"Ohio\":31274,\"ĠKathleen\":31275,\"Fortunately\":31276,\"Ġattendant\":31277,\"ĠPreferred\":31278,\"ĠDidn\":31279,\"ĠVs\":31280,\"Mis\":31281,\"Ġrespondent\":31282,\"Ġboun\":31283,\"stable\":31284,\"Ġpaved\":31285,\"Ġunexpl\":31286,\"ĠCheney\":31287,\"LM\":31288,\"ĠCull\":31289,\"blown\":31290,\"Ġconfronting\":31291,\"ocese\":31292,\"serving\":31293,\"Wi\":31294,\"ĠLithuania\":31295,\"anni\":31296,\"Ġstalk\":31297,\"hd\":31298,\"Ġvener\":31299,\"APH\":31300,\"ynchronous\":31301,\"URR\":31302,\"umably\":31303,\"historic\":31304,\"Half\":31305,\"Hay\":31306,\"Ġresilience\":31307,\"spection\":31308,\"Ġabandoning\":31309,\"Obs\":31310,\"ĠDebbie\":31311,\"Ġgradient\":31312,\"ĠPlaint\":31313,\"ĠCanal\":31314,\"ARCH\":31315,\"Ġexpansive\":31316,\"Ġfung\":31317,\"Ġbounced\":31318,\"Und\":31319,\"Ġprecautions\":31320,\"Ġclarification\":31321,\"Ġdagger\":31322,\"Ġgrips\":31323,\"ĠÂµ\":31324,\"ĠRivera\":31325,\"ĠUndead\":31326,\"isites\":31327,\"ĠFIRST\":31328,\"Ã±o\":31329,\"audi\":31330,\"Ġhostages\":31331,\"Ġcompliant\":31332,\"Ġalumni\":31333,\"Seven\":31334,\"Ġcybersecurity\":31335,\"either\":31336,\"Collect\":31337,\"Ġinvariably\":31338,\"ĠSoci\":31339,\"Ġlawmaker\":31340,\"Ġale\":31341,\"ĠPersonally\":31342,\"Nazi\":31343,\"Ġcustomization\":31344,\"ĠProc\":31345,\"ĠSaskatchewan\":31346,\"eaturing\":31347,\"Ġspared\":31348,\"Ġdiscontinued\":31349,\"Ġcomputational\":31350,\"ĠMotorola\":31351,\"Ġsupremacist\":31352,\"governmental\":31353,\"Ġparadise\":31354,\"ĠDowning\":31355,\"ĠNikon\":31356,\"Ġcatalyst\":31357,\"berra\":31358,\"Toronto\":31359,\"875\":31360,\"beta\":31361,\"ĠMacron\":31362,\"Ġunrealistic\":31363,\"vector\":31364,\"ĠVehicles\":31365,\"itiveness\":31366,\"ĠRV\":31367,\"ĠColbert\":31368,\"sin\":31369,\"oji\":31370,\"entin\":31371,\"ĠKrish\":31372,\"hello\":31373,\"ffield\":31374,\"oky\":31375,\"ĠTate\":31376,\"Ġmaple\":31377,\"Ġaids\":31378,\"chemical\":31379,\"334\":31380,\"nuts\":31381,\"ĠWarp\":31382,\"Ġxx\":31383,\"ĠRobb\":31384,\"umerous\":31385,\"_-_\":31386,\"ftime\":31387,\"ĠVW\":31388,\"Ġwinger\":31389,\"ĠDome\":31390,\"tools\":31391,\"ĠPV\":31392,\"ĠGeorgetown\":31393,\"Ġgeared\":31394,\"Ġjihadists\":31395,\"Ġcp\":31396,\"Ġsteroids\":31397,\"Mother\":31398,\"clerosis\":31399,\"ĠDRM\":31400,\"nesia\":31401,\"Ġlinger\":31402,\"Ġimmersive\":31403,\"ĠCOUN\":31404,\"Ġoutweigh\":31405,\"ensual\":31406,\"Band\":31407,\"Ġtransforms\":31408,\"matched\":31409,\"psons\":31410,\"ĠJudicial\":31411,\"factor\":31412,\"Ġreferral\":31413,\"Ġoddly\":31414,\"ĠWenger\":31415,\"Bring\":31416,\"ĠBows\":31417,\"602\":31418,\"ICLE\":31419,\"Ġlions\":31420,\"ĠAcademic\":31421,\"ĠThorn\":31422,\"ĠRaider\":31423,\"kefeller\":31424,\"Storage\":31425,\"Lower\":31426,\"ĠOrt\":31427,\"ĠEquality\":31428,\"ALT\":31429,\"ĠSOC\":31430,\"Types\":31431,\"Ġlyn\":31432,\"ĠAsset\":31433,\"coat\":31434,\"TPP\":31435,\"CVE\":31436,\"ĠPioneer\":31437,\"application\":31438,\"Modern\":31439,\"ĠHK\":31440,\"Environment\":31441,\"Alright\":31442,\"Rain\":31443,\"IPP\":31444,\"ĠShiite\":31445,\"Ġmound\":31446,\"ĠAbilities\":31447,\"condition\":31448,\"Staff\":31449,\"Ġcompetence\":31450,\"ĠMoor\":31451,\"ĠDiablo\":31452,\"Ġwithheld\":31453,\"Ġostensibly\":31454,\"ĠBrom\":31455,\"Ġmsg\":31456,\"Ġdenomin\":31457,\"ĠReferences\":31458,\"ĠFP\":31459,\"Ġplunged\":31460,\"Ġpamph\":31461,\"moving\":31462,\"central\":31463,\"Ġdownright\":31464,\"Ġfading\":31465,\"Tal\":31466,\"Typ\":31467,\"ĠThy\":31468,\"ukes\":31469,\"ithe\":31470,\"Ġove\":31471,\"Ġbattled\":31472,\"Ġseafood\":31473,\"Ġfigur\":31474,\"ĠRD\":31475,\"crop\":31476,\"Ġsquads\":31477,\"{\\\\\":31478,\"à¹\":31479,\"ĠEh\":31480,\"Ġinterviewing\":31481,\"ĠQin\":31482,\"Ġaspiring\":31483,\"PLIC\":31484,\"Ġclauses\":31485,\"ĠGast\":31486,\"ĠNir\":31487,\"Ġluggage\":31488,\"Ġhose\":31489,\"Ġsystemd\":31490,\"Ġdescending\":31491,\"ĠRevised\":31492,\"ĠRails\":31493,\"align\":31494,\"709\":31495,\"337\":31496,\"Ġfug\":31497,\"charging\":31498,\"tags\":31499,\"Ġuter\":31500,\"kish\":31501,\"WARNING\":31502,\"490\":31503,\"profits\":31504,\"Ġvoyage\":31505,\"Ġace\":31506,\"ĠVanguard\":31507,\"ĠTanks\":31508,\"ĠMuk\":31509,\"Ġ226\":31510,\"Safe\":31511,\"Armor\":31512,\"Ġvolcanic\":31513,\"Ġwomb\":31514,\"ĠMIL\":31515,\"Ġbeginner\":31516,\"ĠRecogn\":31517,\"ĠAAP\":31518,\"PLAY\":31519,\")!\":31520,\"Ġdetecting\":31521,\"cn\":31522,\"Ġbreaches\":31523,\"Basically\":31524,\"ĠPag\":31525,\"ĠMunicipal\":31526,\"ĠIndie\":31527,\"ĠLaf\":31528,\"ĠDisable\":31529,\"ĠOlson\":31530,\"Ġrestrained\":31531,\"Ġrulings\":31532,\"Ġhumane\":31533,\"events\":31534,\"ĠCinema\":31535,\"displayText\":31536,\"ĠHatch\":31537,\"actionDate\":31538,\"onnaissance\":31539,\"Ġassaulting\":31540,\"ĠLug\":31541,\"CHAT\":31542,\"Ġvigorous\":31543,\"ĠPerse\":31544,\"Ġintolerance\":31545,\"ĠSnapchat\":31546,\"ĠSharks\":31547,\"Ġdummy\":31548,\"ĠDiagn\":31549,\"ĠGuitar\":31550,\"imeters\":31551,\"403\":31552,\"REG\":31553,\"Ax\":31554,\"Ġseparates\":31555,\"ĠMahm\":31556,\"Ġtv\":31557,\"jah\":31558,\"OOL\":31559,\"Circ\":31560,\"ĠWindsor\":31561,\"ussian\":31562,\"Ġintuition\":31563,\"Ġdisdain\":31564,\"ĠDonovan\":31565,\"Ġ221\":31566,\"Emb\":31567,\"Ġcondemning\":31568,\"Ġgenerosity\":31569,\"zzy\":31570,\"Ġpanties\":31571,\"ĠPrevent\":31572,\"ActionCode\":31573,\"ANA\":31574,\"342\":31575,\"externalActionCode\":31576,\"Ġspecifying\":31577,\"Ġcrystall\":31578,\"Jere\":31579,\"Ġrupt\":31580,\"ĠApprentice\":31581,\"Ġprofiling\":31582,\"Ðº\":31583,\"Strike\":31584,\"Ġsideline\":31585,\"Ġobligated\":31586,\"Ġoccult\":31587,\"Ġbureaucratic\":31588,\"antically\":31589,\"rupted\":31590,\"negative\":31591,\"ĠEthiopia\":31592,\"ĠCivic\":31593,\"Ġinsiders\":31594,\"eligible\":31595,\"ĠTVs\":31596,\"ĠBAR\":31597,\"ĠTI\":31598,\"iologist\":31599,\"ĠAIR\":31600,\"Ġsubstituted\":31601,\"Arab\":31602,\"ĠSaul\":31603,\"ĠYog\":31604,\"prem\":31605,\"Ġbuilders\":31606,\"Ġstationary\":31607,\"Ġdoubtful\":31608,\"Ġvigorously\":31609,\"Ġthrilling\":31610,\"Physical\":31611,\"ĠCarey\":31612,\"ĠHydra\":31613,\"geoning\":31614,\"ĠSly\":31615,\"yton\":31616,\"Ġborrowers\":31617,\"ĠParkinson\":31618,\"Ġë\":31619,\"ĠJamaica\":31620,\"Ġsatir\":31621,\"Ġinsurgents\":31622,\"ĠFirm\":31623,\"Ġisot\":31624,\"ĠKarn\":31625,\"ourning\":31626,\"akens\":31627,\"docs\":31628,\"little\":31629,\"ĠMonaco\":31630,\"CLASS\":31631,\"Turkey\":31632,\"Ly\":31633,\"ĠConan\":31634,\"assic\":31635,\"Ġstarred\":31636,\"ĠPacers\":31637,\"eties\":31638,\"Ġtipping\":31639,\"Moon\":31640,\"ĠRw\":31641,\"same\":31642,\"Ġcavity\":31643,\"Ġgoof\":31644,\"ĠZo\":31645,\"Shock\":31646,\"ummer\":31647,\"Ġemphasizes\":31648,\"Ġregrett\":31649,\"Ġnovelty\":31650,\"Ġenvy\":31651,\"ĠPassive\":31652,\"rw\":31653,\"505\":31654,\"Ġindifferent\":31655,\"ĠRica\":31656,\"ĠHimself\":31657,\"ĠFreddie\":31658,\"Ġadip\":31659,\"ä¸Ģ\":31660,\"Ġbreakout\":31661,\"Ġhurried\":31662,\"ĠHuang\":31663,\"ĠDisk\":31664,\"Ġroaming\":31665,\"?????-?????-\":31666,\"UV\":31667,\"ĠRicky\":31668,\"ĠSigma\":31669,\"Ġmarginalized\":31670,\"Ġedits\":31671,\"Ġ304\":31672,\"memory\":31673,\"Ġspecimen\":31674,\"293\":31675,\"ãģ¯\":31676,\"Ġvertically\":31677,\"Ġaudition\":31678,\"ĠHeck\":31679,\"Ġcaster\":31680,\"ĠHoldings\":31681,\"adal\":31682,\"ĠCron\":31683,\"ĠLiam\":31684,\"Ġdeflect\":31685,\"Pick\":31686,\"ĠDebug\":31687,\"REF\":31688,\"Ġversatility\":31689,\"othes\":31690,\"classified\":31691,\"ĠMahar\":31692,\"ĠHort\":31693,\"Counter\":31694,\"stasy\":31695,\"noticed\":31696,\"331\":31697,\"ĠShim\":31698,\"fuck\":31699,\"ĠBie\":31700,\"Ġairing\":31701,\"ĠProtein\":31702,\"ĠHolding\":31703,\"Ġspectators\":31704,\"iliated\":31705,\"ĠThatcher\":31706,\"nosis\":31707,\"ãĥ¼ãĥ³\":31708,\"Tele\":31709,\"Boston\":31710,\"ĠTempl\":31711,\"stay\":31712,\"Ġdeclarations\":31713,\"479\":31714,\"Volume\":31715,\"ĠDesigner\":31716,\"ĠOverwatch\":31717,\"idae\":31718,\"Ġonwards\":31719,\"Ġnets\":31720,\"ĠManila\":31721,\"particularly\":31722,\"Ġpolitic\":31723,\"oother\":31724,\"Ġportraits\":31725,\"Ġpavement\":31726,\"cffff\":31727,\"Ġsaints\":31728,\"Ġbeginners\":31729,\"ESPN\":31730,\"Ġshortcomings\":31731,\"âķĲâķĲ\":31732,\"Ġcomet\":31733,\"ĠOrganic\":31734,\"quel\":31735,\"Ġhospitalized\":31736,\"Break\":31737,\"Ġpeel\":31738,\"dylib\":31739,\"aspx\":31740,\"urances\":31741,\"ĠTIM\":31742,\"Pg\":31743,\"Ġreadable\":31744,\"ĠMalik\":31745,\"Ġmuzzle\":31746,\"Ġbenchmarks\":31747,\"dal\":31748,\"ĠVacc\":31749,\"ĠHicks\":31750,\"609\":31751,\"ĠBiblical\":31752,\"heng\":31753,\"Ġoverload\":31754,\"ĠCivilization\":31755,\"Ġimmoral\":31756,\"Ġfries\":31757,\"ãĤĴ\":31758,\"Ġreproduced\":31759,\"Ġformulation\":31760,\"jug\":31761,\"irez\":31762,\"gear\":31763,\"Ġcoached\":31764,\"MpServer\":31765,\"ĠSJ\":31766,\"ĠKw\":31767,\"Init\":31768,\"deal\":31769,\"ĠOro\":31770,\"ĠLoki\":31771,\"ĠSongs\":31772,\"Ġ232\":31773,\"ĠLouise\":31774,\"asionally\":31775,\"Ġuncond\":31776,\"ollywood\":31777,\"Ġprogressives\":31778,\"ĠEnough\":31779,\"ĠDoe\":31780,\"Ġwreckage\":31781,\"Ġbrushed\":31782,\"ĠBaseType\":31783,\"Ġzoning\":31784,\"ishable\":31785,\"hetically\":31786,\"ĠCaucus\":31787,\"ĠHue\":31788,\"Ġkarma\":31789,\"ĠSporting\":31790,\"Ġtrader\":31791,\"Ġseeming\":31792,\"ĠCapture\":31793,\"430\":31794,\"bish\":31795,\"Ġtunes\":31796,\"Ġindoors\":31797,\"ĠSphere\":31798,\"ĠDancing\":31799,\"TERN\":31800,\"Ġnob\":31801,\"ĠGST\":31802,\"maps\":31803,\"Ġpeppers\":31804,\"Fit\":31805,\"Ġoversees\":31806,\"ĠRabbi\":31807,\"ĠRuler\":31808,\"vertising\":31809,\"office\":31810,\"xxx\":31811,\"Ġraft\":31812,\"Changed\":31813,\"Ġtextbooks\":31814,\"Links\":31815,\"ĠOmn\":31816,\"ãĢĳ\":31817,\"Ġinconvenience\":31818,\"ĠDonetsk\":31819,\"=~\":31820,\"Ġimplicitly\":31821,\"Ġboosts\":31822,\"ĠBones\":31823,\"ĠBoom\":31824,\"Courtesy\":31825,\"Ġsensational\":31826,\"ANY\":31827,\"Ġgreedy\":31828,\"eden\":31829,\"Ġinexper\":31830,\"ĠLer\":31831,\"ĠVale\":31832,\"Ġtighten\":31833,\"ĠEAR\":31834,\"ĠNum\":31835,\"Ġancestor\":31836,\"Sent\":31837,\"ĠHorde\":31838,\"urgical\":31839,\"allah\":31840,\"Ġsap\":31841,\"amba\":31842,\"ĠSpread\":31843,\"twitch\":31844,\"Ġgrandson\":31845,\"Ġfracture\":31846,\"Ġmoderator\":31847,\"ĠSeventh\":31848,\"ĠReverse\":31849,\"Ġestimation\":31850,\"Choose\":31851,\"Ġparach\":31852,\"Ġbarric\":31853,\"ãĢĲ\":31854,\"Ġcompass\":31855,\"Ġallergic\":31856,\"âĢķ\":31857,\"OTHER\":31858,\"errilla\":31859,\"Ġwagon\":31860,\"Ġzinc\":31861,\"Ġrubbed\":31862,\"ĠFuller\":31863,\"ĠLuxembourg\":31864,\"ĠHoover\":31865,\"Ġliar\":31866,\"ĠEvening\":31867,\"ĠCobb\":31868,\"esteem\":31869,\"Ġselector\":31870,\"ĠBrawl\":31871,\"isance\":31872,\"ĠEk\":31873,\"Ġtroop\":31874,\"Ġguts\":31875,\"ĠAppeal\":31876,\"ĠTibetan\":31877,\"Ġroutines\":31878,\"ĠMent\":31879,\"Ġsummarized\":31880,\"steamapps\":31881,\"Ġtranqu\":31882,\"Ġ1929\":31883,\"oran\":31884,\"ĠAuthent\":31885,\"Ġgmaxwell\":31886,\"Ġapprehens\":31887,\"Ġpoems\":31888,\"Ġsausage\":31889,\"ĠWebster\":31890,\"urus\":31891,\"Ġthemed\":31892,\"Ġlounge\":31893,\"Ġcharger\":31894,\"Spoiler\":31895,\"Ġspilled\":31896,\"hog\":31897,\"ĠSunder\":31898,\"ĠAin\":31899,\"ĠAngry\":31900,\"Ġdisqual\":31901,\"ĠFrequency\":31902,\"ĠEthernet\":31903,\"Ġhelper\":31904,\"Percent\":31905,\"Ġhorrifying\":31906,\"Ġail\":31907,\"ĠAllan\":31908,\"EEE\":31909,\"ĠCrossing\":31910,\"449\":31911,\"Ġholog\":31912,\"ĠPuzzles\":31913,\"ĠGoes\":31914,\"erenn\":31915,\"604\":31916,\"ãģı\":31917,\"ĠRafael\":31918,\"Ġatten\":31919,\"ĠEmanuel\":31920,\"Ġupro\":31921,\"ĠSusp\":31922,\"Psych\":31923,\"ĠTrainer\":31924,\"ĠNES\":31925,\"ĠHunts\":31926,\"becue\":31927,\"Ġcounselor\":31928,\"Rule\":31929,\"Ġtoxins\":31930,\"Ġbanners\":31931,\"rifice\":31932,\"Ġgreeting\":31933,\"Ġfrenzy\":31934,\"Ġallocate\":31935,\"Ġ*)\":31936,\"expr\":31937,\"503\":31938,\"ĠChick\":31939,\"ĠTorn\":31940,\"Ġconsolidation\":31941,\"ĠFletcher\":31942,\"switch\":31943,\"frac\":31944,\"clips\":31945,\"ĠMcKin\":31946,\"ĠLunar\":31947,\"Month\":31948,\"ITCH\":31949,\"Ġscholarly\":31950,\"raped\":31951,\"398\":31952,\"Ġ1910\":31953,\"Ġegreg\":31954,\"Ġinsecure\":31955,\"Ġvictorious\":31956,\"cffffcc\":31957,\"Ġsingled\":31958,\"Ġelves\":31959,\"ĠWond\":31960,\"burst\":31961,\"Ġcamoufl\":31962,\"ĠBLACK\":31963,\"Ġconditioned\":31964,\"çī\":31965,\"answered\":31966,\"Ġcompulsory\":31967,\"ascist\":31968,\"Ġpodcasts\":31969,\"ĠFrankfurt\":31970,\"bnb\":31971,\"Ġneoliberal\":31972,\"ĠKeyboard\":31973,\"ĠBelle\":31974,\"warm\":31975,\"Ġtrusts\":31976,\"Ġinsured\":31977,\"ĠBucc\":31978,\"usable\":31979,\"607\":31980,\"ĠPlains\":31981,\"Ġ1890\":31982,\"Ġsabotage\":31983,\"Ġlodged\":31984,\"felt\":31985,\"Ġga\":31986,\"ĠNarc\":31987,\"ĠSalem\":31988,\"Ġseventy\":31989,\"ĠBlank\":31990,\"pocket\":31991,\"Ġwhisper\":31992,\"Ġmating\":31993,\"omics\":31994,\"ĠSalman\":31995,\"ĠKad\":31996,\"Ġangered\":31997,\"Ġcollisions\":31998,\"Ġextraordinarily\":31999,\"Ġcoercion\":32000,\"Ghost\":32001,\"birds\":32002,\"èĢ\":32003,\"kok\":32004,\"Ġpermissible\":32005,\"avorable\":32006,\"Ġpointers\":32007,\"Ġdissip\":32008,\"aci\":32009,\"Ġtheatrical\":32010,\"ĠCosmic\":32011,\"Ġforgetting\":32012,\"Ġfinalized\":32013,\"å¤§\":32014,\"yout\":32015,\"library\":32016,\"Ġbooming\":32017,\"ĠBelieve\":32018,\"ĠTeacher\":32019,\"ĠLiv\":32020,\"ĠGOODMAN\":32021,\"ĠDominican\":32022,\"ORED\":32023,\"ĠParties\":32024,\"Ġprecipitation\":32025,\"ĠSlot\":32026,\"Roy\":32027,\"ĠCombined\":32028,\"Ġintegrating\":32029,\"Ġchrome\":32030,\"Ġintestinal\":32031,\"ĠRebell\":32032,\"Ġmatchups\":32033,\"Ġblockbuster\":32034,\"ĠLoren\":32035,\"ĠLevy\":32036,\"Ġpreaching\":32037,\"ĠSending\":32038,\"ĠPurpose\":32039,\"rax\":32040,\"fif\":32041,\"Ġauthoritative\":32042,\"ĠPET\":32043,\"astical\":32044,\"Ġdishon\":32045,\"Ġchatting\":32046,\"Ġ\\\"$:/\":32047,\"Connection\":32048,\"Ġrecreate\":32049,\"Ġdelinqu\":32050,\"Ġbroth\":32051,\"ĠDirty\":32052,\"ĠAdmin\":32053,\"zman\":32054,\"Ġscholarships\":32055,\"Ġ253\":32056,\"contact\":32057,\"alsa\":32058,\"767\":32059,\"creen\":32060,\"abbage\":32061,\"Ġ1915\":32062,\"Ġblended\":32063,\"Ġalarmed\":32064,\"Language\":32065,\"356\":32066,\"Ġblends\":32067,\"ĠChanged\":32068,\"Wolf\":32069,\"Ġhepat\":32070,\"Creating\":32071,\"Ġpersecut\":32072,\"Ġsweetness\":32073,\"arte\":32074,\"Ġforfeiture\":32075,\"ĠRoberto\":32076,\"impro\":32077,\"NFL\":32078,\"ĠMagnet\":32079,\"Detailed\":32080,\"Ġinsignificant\":32081,\"ĠPOLIT\":32082,\"ĠBBQ\":32083,\"ĠCPS\":32084,\"Ġseaw\":32085,\"aminer\":32086,\"mL\":32087,\"endif\":32088,\"finals\":32089,\"Ġ265\":32090,\"uish\":32091,\"Ġ})\":32092,\"ĠProblems\":32093,\"Ġemblem\":32094,\"Ġseriousness\":32095,\"Ġparsing\":32096,\"Ġsubstitution\":32097,\"Ġpressured\":32098,\"Ġrecycled\":32099,\"aleb\":32100,\"Ruby\":32101,\"Ġproficiency\":32102,\"Driver\":32103,\"ĠWester\":32104,\":'\":32105,\"AFTA\":32106,\"Ġmantle\":32107,\"ĠClayton\":32108,\"flag\":32109,\"Ġpractitioner\":32110,\"covered\":32111,\"ĠStruct\":32112,\"addafi\":32113,\"425\":32114,\"ĠTownship\":32115,\"ĠHydro\":32116,\"Louis\":32117,\"343\":32118,\"Ġcondo\":32119,\"ĠTao\":32120,\"Ġutilization\":32121,\"Ġnausea\":32122,\"ĠDems\":32123,\"ridges\":32124,\"pause\":32125,\"Ġformulas\":32126,\"Ġchallenger\":32127,\"376\":32128,\"Ġdefective\":32129,\"ĠRailway\":32130,\"ĠPubMed\":32131,\"Ġyogurt\":32132,\"lbs\":32133,\"ĠNorfolk\":32134,\"OPE\":32135,\"ĠMoody\":32136,\"Ġdistributor\":32137,\"Ġscrolls\":32138,\"Ġextracts\":32139,\"Stan\":32140,\"Ġviability\":32141,\"Ġexposes\":32142,\"Ġstarvation\":32143,\"ĠSteps\":32144,\"ĠDodd\":32145,\"few\":32146,\"STD\":32147,\"332\":32148,\"Ġclosures\":32149,\"Ġcomplementary\":32150,\"ĠSasha\":32151,\"umpy\":32152,\"Ġmonet\":32153,\"Ġarticulate\":32154,\"ĠDoct\":32155,\"killer\":32156,\"Ġscrim\":32157,\"Ġ264\":32158,\"Ġprostitutes\":32159,\"Ġsevered\":32160,\"Ġattachments\":32161,\"Ġcooled\":32162,\"Lev\":32163,\"ĠFalk\":32164,\"fail\":32165,\"Ġpoliceman\":32166,\"ĠDag\":32167,\"Ġprayed\":32168,\"ĠKernel\":32169,\"Ġclut\":32170,\"Ġcath\":32171,\"Ġanomaly\":32172,\"Storm\":32173,\"emaker\":32174,\"ĠBreakfast\":32175,\"uli\":32176,\"oire\":32177,\"JJ\":32178,\"hz\":32179,\"Operation\":32180,\"ĠSick\":32181,\"354\":32182,\"ĠGuatemala\":32183,\"Rate\":32184,\"Ġexposures\":32185,\"faces\":32186,\"ĠArchae\":32187,\"raf\":32188,\"ĠMia\":32189,\"Ġ2025\":32190,\"Ġopaque\":32191,\"Ġdisguised\":32192,\"ĠHeadquarters\":32193,\"Sah\":32194,\"Ġpots\":32195,\"978\":32196,\"ĠMalf\":32197,\"Ġfrowned\":32198,\"Ġpoisonous\":32199,\"ĠConvers\":32200,\"eeks\":32201,\"Ġcrab\":32202,\".\\\"\\\"\":32203,\"Ġtreason\":32204,\"Ġranc\":32205,\"Ġescalating\":32206,\"Ġwarr\":32207,\"Ġmobs\":32208,\"Ġlamps\":32209,\"ĠSunshine\":32210,\"ĠBrunswick\":32211,\"Phones\":32212,\"Ġspelled\":32213,\"ĠSkip\":32214,\"Ġ2050\":32215,\"Ġ1911\":32216,\"ĠPluto\":32217,\"ĠAmend\":32218,\"Ġmeats\":32219,\"387\":32220,\"Ġstomp\":32221,\"ĠZhou\":32222,\"ĠLeviathan\":32223,\"ĠHazard\":32224,\"adv\":32225,\"ĠOrwell\":32226,\"Ġaloud\":32227,\"Ġbumper\":32228,\"ĠAnarch\":32229,\"ubuntu\":32230,\"ĠSerious\":32231,\"fitting\":32232,\"ĠOptional\":32233,\"ĠCecil\":32234,\"REAM\":32235,\"Ġserotonin\":32236,\"Ġcultivate\":32237,\"agogue\":32238,\"}\\\\\":32239,\"Ġmosques\":32240,\"ĠSunny\":32241,\"Ġreactive\":32242,\"revolution\":32243,\"ĠLup\":32244,\"ĠFedora\":32245,\"Ġdefenseman\":32246,\"ĠVID\":32247,\"istine\":32248,\"Ġdrowning\":32249,\"ĠBroadcasting\":32250,\"Ġthriller\":32251,\"ĠScy\":32252,\"Ġaccelerating\":32253,\"Ġdirects\":32254,\"odied\":32255,\"bike\":32256,\"duration\":32257,\"Ġpainfully\":32258,\"Redd\":32259,\"Ġproductions\":32260,\"Ġgag\":32261,\"Ġwhist\":32262,\"Ġsock\":32263,\"Ġinfinitely\":32264,\"ĠConcern\":32265,\"ĠCitadel\":32266,\"Ġlieu\":32267,\"Ġcandles\":32268,\"ogeneous\":32269,\"arger\":32270,\"Ġheavenly\":32271,\"inflammatory\":32272,\"Performance\":32273,\"Cs\":32274,\"ructose\":32275,\"azaki\":32276,\"Ġpessim\":32277,\"Ġinference\":32278,\"Ġpowd\":32279,\"ĠZoe\":32280,\"Ġpaints\":32281,\"Ġdazz\":32282,\"pta\":32283,\"-----------\":32284,\"Ġinspir\":32285,\"ĠExperimental\":32286,\"ĠKnife\":32287,\"regor\":32288,\"bors\":32289,\"Ġshowers\":32290,\"romeda\":32291,\"Ġsaint\":32292,\"Ġbenign\":32293,\"ĠJiang\":32294,\"Ġenvisioned\":32295,\"Ġshroud\":32296,\"IFT\":32297,\"HO\":32298,\"Ġshuff\":32299,\"ĠICC\":32300,\"Ġsegreg\":32301,\"Ġrevisit\":32302,\"ighthouse\":32303,\"Li\":32304,\"Ġsubstrate\":32305,\"ĠSeas\":32306,\"ĠReward\":32307,\"ĠHep\":32308,\"ĠBrass\":32309,\"sbm\":32310,\"Ġeliminates\":32311,\"Ġstamina\":32312,\"ĠVAT\":32313,\"ĠLoan\":32314,\"Ġconstraint\":32315,\"Ġappropriated\":32316,\"Ġpes\":32317,\"ĠALE\":32318,\"ranging\":32319,\"Ġ404\":32320,\"392\":32321,\"Ġintellectuals\":32322,\"achu\":32323,\"Ġrestructuring\":32324,\"ĠLevin\":32325,\"Ġrunes\":32326,\"Ġdelightful\":32327,\"Ġcarbohydrates\":32328,\"ĠModels\":32329,\"ĠExpo\":32330,\"Ġtransporting\":32331,\"alloc\":32332,\"Ġringing\":32333,\"Samsung\":32334,\"Ġscarcely\":32335,\"ĠURLs\":32336,\"ĠMAS\":32337,\"Ġprototypes\":32338,\"Ġnarrator\":32339,\"ĠCPUs\":32340,\"cdn\":32341,\"ĠBarton\":32342,\"Ġdecidedly\":32343,\"ĠShu\":32344,\"ixir\":32345,\"ocious\":32346,\"ĠMyst\":32347,\"Nintendo\":32348,\"Ġreuse\":32349,\"Ġforgiven\":32350,\"Few\":32351,\"inical\":32352,\"nat\":32353,\"Ġseamless\":32354,\"ĠEva\":32355,\"ĠEVE\":32356,\"ĠJO\":32357,\"landers\":32358,\"Ġsofter\":32359,\"negie\":32360,\"Ġtransient\":32361,\"Ġorbital\":32362,\"Ġfulfil\":32363,\"ĠKom\":32364,\"Hopefully\":32365,\"Ġdynamically\":32366,\"ĠHunger\":32367,\"åĽ\":32368,\"ĠArmenia\":32369,\"elman\":32370,\"berto\":32371,\"Ġpige\":32372,\"ĠIDs\":32373,\"limit\":32374,\"Ġveins\":32375,\"Ġsoaring\":32376,\"packs\":32377,\"Golden\":32378,\"ĠCrab\":32379,\"istor\":32380,\"ĠRPM\":32381,\"Ġ$$\":32382,\"gression\":32383,\"Ġjihadist\":32384,\"Ġgamble\":32385,\"Ġcareg\":32386,\"Ġinflated\":32387,\"Face\":32388,\"ĠFirearms\":32389,\"ĠEmmanuel\":32390,\"âĿ\":32391,\"Ġshocks\":32392,\"grab\":32393,\"Ġsplend\":32394,\"ĠHPV\":32395,\"abortion\":32396,\"Above\":32397,\"Entity\":32398,\"players\":32399,\"Ġcommenced\":32400,\"ulence\":32401,\"Ġfulfillment\":32402,\"Ġembodiments\":32403,\"ĠWelfare\":32404,\"Ġhail\":32405,\"Ġ<@\":32406,\"tten\":32407,\"Ġcatcher\":32408,\"ĠJazeera\":32409,\"Ġvolcano\":32410,\"Ġstabilize\":32411,\"ĠHandler\":32412,\"Ġintensified\":32413,\"ĠAbrams\":32414,\"Ġhumiliation\":32415,\"paced\":32416,\"605\":32417,\"ĠCentOS\":32418,\"Specific\":32419,\"Ġheed\":32420,\"ĠCAM\":32421,\"ĠGalile\":32422,\"Die\":32423,\"Ġabolished\":32424,\"ĠThomson\":32425,\"ĠTeachers\":32426,\"ĠWass\":32427,\"jong\":32428,\"ĠISBN\":32429,\"ĠAllies\":32430,\"shake\":32431,\"å·\":32432,\"vict\":32433,\"Howard\":32434,\"Ġdeem\":32435,\"Ġexceedingly\":32436,\"ĠSmartstocks\":32437,\"ibe\":32438,\"Ġdoorway\":32439,\"Ġcompeted\":32440,\"igmat\":32441,\"Ġnationalists\":32442,\"Ġgroom\":32443,\"ĠKeen\":32444,\"Ġdisposable\":32445,\"decl\":32446,\"ĠTolkien\":32447,\"ĠScheme\":32448,\"Ġbiod\":32449,\"Ġavid\":32450,\"ĠElon\":32451,\"agar\":32452,\"ĠTSA\":32453,\"Roman\":32454,\"Ġartificially\":32455,\"Ġadvisors\":32456,\"XL\":32457,\"ĠInferno\":32458,\"366\":32459,\"Ġtedious\":32460,\"ĠPhotography\":32461,\"ĠCarrie\":32462,\"Ġtrope\":32463,\"ĠSandra\":32464,\"Ġdecimal\":32465,\"Queen\":32466,\"ĠGundam\":32467,\"ĠOM\":32468,\"otech\":32469,\"NBA\":32470,\"Ġ1932\":32471,\"Ġentrenched\":32472,\"ĠMarion\":32473,\"Ġfraternity\":32474,\"Labour\":32475,\"Henry\":32476,\"Ġlatitude\":32477,\"Either\":32478,\"Ġenhances\":32479,\"ĠPotential\":32480,\"Ġshines\":32481,\"idad\":32482,\"Ġbreadth\":32483,\"Ġcapacities\":32484,\"ĠðŁĻĤ\":32485,\"ĠBronx\":32486,\"Ġsexes\":32487,\"Ġdifferentiation\":32488,\"Ġheavyweight\":32489,\"ĠTaj\":32490,\"dra\":32491,\"Ġmigrate\":32492,\"Ġexhaustion\":32493,\"ĠRUN\":32494,\"elsius\":32495,\"ĠCuomo\":32496,\"Ġguitars\":32497,\"Ġclones\":32498,\"ĠSomew\":32499,\"ĠPry\":32500,\"-------------\":32501,\"Ġwarranted\":32502,\"cycles\":32503,\"Ġsalvage\":32504,\"Ġdisks\":32505,\"RANT\":32506,\"ĠNGOs\":32507,\"ĠMartian\":32508,\"\\\":[{\\\"\":32509,\"Ġaddicts\":32510,\"ojure\":32511,\"illet\":32512,\"Ġamazingly\":32513,\"artments\":32514,\"pixel\":32515,\"ĠGPUs\":32516,\"Layout\":32517,\"è£\":32518,\"ĠTamil\":32519,\"ĠBasil\":32520,\"Ġimpartial\":32521,\"ĠStructure\":32522,\"fork\":32523,\"bryce\":32524,\"Ġridge\":32525,\"ĠHamburg\":32526,\"rious\":32527,\"Ġblitz\":32528,\"cigarettes\":32529,\"Ġcanned\":32530,\"402\":32531,\"Ġironically\":32532,\"Ġcompassionate\":32533,\"ĠHawkins\":32534,\".#\":32535,\"ĠCathedral\":32536,\"Ġrallied\":32537,\"internal\":32538,\"Ġquota\":32539,\"stakes\":32540,\"TEXT\":32541,\"mom\":32542,\"Ġcompletes\":32543,\"Ġ238\":32544,\"Ġshrug\":32545,\"ãĥĳ\":32546,\"ĠNinth\":32547,\"Ġrevise\":32548,\"ĠProvider\":32549,\"Ġtreacher\":32550,\"Ġquasi\":32551,\"ĠPRES\":32552,\"Ġdeposition\":32553,\"Ġconfidentiality\":32554,\"issors\":32555,\"Ġimbalance\":32556,\"Ġspanning\":32557,\"Ġangular\":32558,\"ĠCul\":32559,\"communication\":32560,\"ĠNora\":32561,\"ĠGenius\":32562,\"opter\":32563,\"Ġsacked\":32564,\"Spot\":32565,\"Ġfinely\":32566,\"ĠCHR\":32567,\"282\":32568,\"waves\":32569,\"Palest\":32570,\"ĠRohing\":32571,\"NL\":32572,\"è¿\":32573,\"Ġshitty\":32574,\"ĠScalia\":32575,\"475\":32576,\"Progress\":32577,\"Ġreferencing\":32578,\"Ġclassrooms\":32579,\"abee\":32580,\"Ġsod\":32581,\"hesion\":32582,\"708\":32583,\"ĠZuckerberg\":32584,\"ĠFinish\":32585,\"ĠScotia\":32586,\"ĠSavior\":32587,\"ĠInstallation\":32588,\"antha\":32589,\"(-\":32590,\"Ġ302\":32591,\"ĠPunk\":32592,\"Ġcrater\":32593,\"youtu\":32594,\"Ġroast\":32595,\"Ġinfluencing\":32596,\"Ġdup\":32597,\"ĠJR\":32598,\"ĠGrav\":32599,\"Ġstature\":32600,\"Ġbathrooms\":32601,\"Aside\":32602,\"Wiki\":32603,\"mean\":32604,\"ĠZak\":32605,\"ĠOnes\":32606,\"ĠNath\":32607,\"Ġhypert\":32608,\"Ġcommencement\":32609,\"Civil\":32610,\"Ġmoderately\":32611,\"Ġdistributors\":32612,\"Ġbreastfeeding\":32613,\"Ġ980\":32614,\"ĠSik\":32615,\"ĠCig\":32616,\"ĠAMER\":32617,\"RIP\":32618,\"ĠCareer\":32619,\"usting\":32620,\"Ġmessed\":32621,\"Ġeh\":32622,\"ĠJensen\":32623,\"/$\":32624,\"Ġblackmail\":32625,\"Ġconversions\":32626,\"Ġscientifically\":32627,\"Ġmantra\":32628,\"paying\":32629,\"Ġivory\":32630,\"ĠCourts\":32631,\"OUGH\":32632,\"auntlet\":32633,\"Serial\":32634,\"Brow\":32635,\"ĠHundreds\":32636,\"323\":32637,\"Ġpee\":32638,\"Ġlinux\":32639,\"Ġsubmer\":32640,\"ĠPrincipal\":32641,\"485\":32642,\"ĠDSL\":32643,\"ĠCousins\":32644,\"Ġdoctrines\":32645,\"ĠAthletics\":32646,\"Ġ315\":32647,\"ĠKarma\":32648,\"Ġattent\":32649,\"urger\":32650,\"Ġprescribe\":32651,\"Ġencaps\":32652,\"ĠCame\":32653,\"Ġsecretive\":32654,\"ĠCrimes\":32655,\"dn\":32656,\"Clean\":32657,\"ĠEgyptians\":32658,\"ĠCarpenter\":32659,\"Ġll\":32660,\"Hum\":32661,\"ĠMilo\":32662,\"Ġcapitalists\":32663,\"Ġbriefed\":32664,\"Twe\":32665,\"ĠBasin\":32666,\"elvet\":32667,\"Mos\":32668,\"Ġplunge\":32669,\"ĠKaiser\":32670,\"ĠFuj\":32671,\"illin\":32672,\"Ġsafeguards\":32673,\"Ġoste\":32674,\"ĠOpportunity\":32675,\"ĠMafia\":32676,\"ĠCalling\":32677,\"apa\":32678,\"urban\":32679,\"brush\":32680,\"illard\":32681,\"cÃ©\":32682,\"intelligence\":32683,\"ĠLob\":32684,\"ĠDruid\":32685,\"Ġsmoother\":32686,\"Ġfooting\":32687,\"Ġmotorists\":32688,\"arcity\":32689,\"Ġmasculinity\":32690,\"Ġmism\":32691,\"Ġabdominal\":32692,\"ĠTavern\":32693,\"ĠRoh\":32694,\"Ġescapes\":32695,\"signed\":32696,\"Anthony\":32697,\"Ġsacrificing\":32698,\"Ġintimacy\":32699,\"Ġanterior\":32700,\"ĠKod\":32701,\"Ġmotif\":32702,\"Ġgraz\":32703,\"Ġvisualization\":32704,\"Ġguitarist\":32705,\"ĠTrotsky\":32706,\"magic\":32707,\"Dar\":32708,\"ĠMori\":32709,\"Ġwards\":32710,\"Ġtoilets\":32711,\"lest\":32712,\"Ġteleport\":32713,\"ĠSundays\":32714,\"ĠPlat\":32715,\"ETS\":32716,\"ĠeSports\":32717,\"Patrick\":32718,\"ĠKatherine\":32719,\"enko\":32720,\"Ġhassle\":32721,\"ĠMick\":32722,\"ggles\":32723,\"Ġhob\":32724,\"aintain\":32725,\"Ġairborne\":32726,\"Ġspans\":32727,\"Ġchili\":32728,\"Ġaperture\":32729,\"Ġvolunteered\":32730,\"ĠIncident\":32731,\"ĠFres\":32732,\"ĠVeteran\":32733,\"aughtered\":32734,\"ingo\":32735,\"Ġuninsured\":32736,\"CLOSE\":32737,\"Ġfuse\":32738,\"Ġerotic\":32739,\"Ġadvertise\":32740,\"raising\":32741,\"Texture\":32742,\"Ġattends\":32743,\"ĠREAL\":32744,\"uddled\":32745,\"Ġsmoot\":32746,\"Ġ305\":32747,\"ĠWillis\":32748,\"Ġblond\":32749,\"Analysis\":32750,\"ĠVT\":32751,\"onica\":32752,\"Ġstronghold\":32753,\"RF\":32754,\"NM\":32755,\".>>\":32756,\"Ġprosperous\":32757,\"Ġboasted\":32758,\"292\":32759,\"ĠManufacturing\":32760,\"PRESS\":32761,\"gren\":32762,\"Ġpharmacy\":32763,\"ĠRockefeller\":32764,\"kai\":32765,\"Ġthumbs\":32766,\"ĠHut\":32767,\"Ġmotherboard\":32768,\"Ġguardians\":32769,\"ĠAlter\":32770,\"llular\":32771,\"Ġshack\":32772,\"Ġwisely\":32773,\"Ġbackbone\":32774,\"erva\":32775,\"Ġsuicides\":32776,\"ĠMcGregor\":32777,\"ijah\":32778,\"Emer\":32779,\"ĠBrav\":32780,\"Ġdesignate\":32781,\"POST\":32782,\"produced\":32783,\"Ġcleansing\":32784,\"irlwind\":32785,\"existent\":32786,\"ĠHumph\":32787,\"ĠPayne\":32788,\"Ġvested\":32789,\"Å¡\":32790,\"Ġstringent\":32791,\"iona\":32792,\"Ġunsub\":32793,\"Ġsummed\":32794,\"ĠHercules\":32795,\"subject\":32796,\"ĠRagnar\":32797,\"ĠNos\":32798,\"Ġcharacterization\":32799,\"Ġsavvy\":32800,\"ĠDawson\":32801,\"ĠCasino\":32802,\"Ġfri\":32803,\"ĠBarrier\":32804,\"Ġmisinformation\":32805,\"Ġinsulation\":32806,\"Ġcorridors\":32807,\"Ġairplanes\":32808,\"ĠNoct\":32809,\"ahi\":32810,\"Ġ1916\":32811,\"kb\":32812,\"armac\":32813,\"Ġshun\":32814,\"Ġschema\":32815,\"Ġhorrified\":32816,\"Ġ239\":32817,\"aunders\":32818,\"NB\":32819,\"iates\":32820,\"erity\":32821,\"ĠShard\":32822,\"Ġrarity\":32823,\"Ġgrouped\":32824,\"ĠGhana\":32825,\"against\":32826,\"ĠBiological\":32827,\"ĠAware\":32828,\"owell\":32829,\"ÏĦ\":32830,\"ĠBeau\":32831,\"shaw\":32832,\"Hack\":32833,\"ĠJulius\":32834,\"USS\":32835,\"olson\":32836,\"auna\":32837,\"cru\":32838,\"ĠMaurice\":32839,\"ĠIk\":32840,\"Ġsequencing\":32841,\"Ġradicals\":32842,\"Ġ(?,\":32843,\"virtual\":32844,\"Ġanyways\":32845,\"Ġreperc\":32846,\"Ġhandlers\":32847,\"Ġhesitant\":32848,\"éĥ\":32849,\"ĠMF\":32850,\"plementation\":32851,\"associated\":32852,\"Ġcampaigned\":32853,\"ĠYue\":32854,\"utations\":32855,\"ĠYoga\":32856,\"Ġsimmer\":32857,\"Ġrods\":32858,\"Ġmelody\":32859,\"Ġconvoy\":32860,\"videos\":32861,\"Ġscreened\":32862,\"Neg\":32863,\"ochemical\":32864,\"Ġ())\":32865,\"Ġultras\":32866,\"Ġantip\":32867,\"ĠIslanders\":32868,\"704\":32869,\"Ġfetish\":32870,\"Ġridiculously\":32871,\"ĠKart\":32872,\"Ġmitochondrial\":32873,\"Ġinterfering\":32874,\"Builder\":32875,\"Ġoverfl\":32876,\"Ġacne\":32877,\"ĠMud\":32878,\"ĠKerr\":32879,\"flex\":32880,\"ĠPostal\":32881,\"ĠBaltic\":32882,\"477\":32883,\"ĠPersons\":32884,\"ourage\":32885,\"HB\":32886,\"ĠMuse\":32887,\"ĠImmortal\":32888,\"ĠDriving\":32889,\"Ġpetitions\":32890,\"Ġsubscript\":32891,\"Ġsorce\":32892,\"ĠProcessor\":32893,\"uton\":32894,\"Sony\":32895,\"Ġphon\":32896,\"Ġraced\":32897,\"ĠAnthrop\":32898,\"Ġdaytime\":32899,\"ĠExercise\":32900,\"Adding\":32901,\"Ġengages\":32902,\"ĠQualcomm\":32903,\"Ġmiracles\":32904,\"Ġmemes\":32905,\"ĠDrink\":32906,\"ĠOrioles\":32907,\"Ġhairs\":32908,\"ĠPolar\":32909,\"athom\":32910,\"Ġslippery\":32911,\"ĠRemy\":32912,\"Ġcaramel\":32913,\"ĠYEAR\":32914,\"Ġalk\":32915,\"Ign\":32916,\"aution\":32917,\"ĠMerlin\":32918,\"ĠCran\":32919,\"Ġapologies\":32920,\"Ġ410\":32921,\"Ġouting\":32922,\"ĠMemories\":32923,\"appointed\":32924,\"Ġcountered\":32925,\"uld\":32926,\"posing\":32927,\"Ġfirewall\":32928,\"ĠWast\":32929,\"ĠWet\":32930,\"worked\":32931,\"seller\":32932,\"Ġrepealed\":32933,\"ereo\":32934,\"assuming\":32935,\"BLIC\":32936,\"mite\":32937,\"ĠCEOs\":32938,\"ĠChapel\":32939,\"elligent\":32940,\"________________________\":32941,\"Dog\":32942,\"Ġwart\":32943,\"Ġsubscriber\":32944,\"sports\":32945,\"Ġbegged\":32946,\"ĠMV\":32947,\"Ġsemif\":32948,\"ethical\":32949,\"Ġpreach\":32950,\"Ġrevital\":32951,\"Ġpunitive\":32952,\"Ġshortcuts\":32953,\"Ġinstituted\":32954,\"ĠWarsaw\":32955,\"Ġabdomen\":32956,\"ĠKING\":32957,\"Ġsuperintendent\":32958,\"Ġfry\":32959,\"ĠGeo\":32960,\"TOR\":32961,\"Ġcontradictions\":32962,\"aptic\":32963,\"Ġlandscapes\":32964,\"bugs\":32965,\"Ġclust\":32966,\"Ġvolley\":32967,\"cribed\":32968,\"Ġtandem\":32969,\"Ġrobes\":32970,\"WHAT\":32971,\"Ġpromoter\":32972,\"Ġeloqu\":32973,\"reviewed\":32974,\"ĠDK\":32975,\"ĠPlato\":32976,\"Ġfps\":32977,\"Tank\":32978,\"ĠDerrick\":32979,\"Ġprioritize\":32980,\"asper\":32981,\"ĠHonduras\":32982,\"ĠCompleted\":32983,\"nec\":32984,\"Ġmog\":32985,\"nir\":32986,\"ĠMayo\":32987,\"DEF\":32988,\"stall\":32989,\"inness\":32990,\"ĠVolkswagen\":32991,\"Ġprecaution\":32992,\"ĠMell\":32993,\"iak\":32994,\"istries\":32995,\"Ġ248\":32996,\"Ġoverlapping\":32997,\"Senate\":32998,\"ĠEnhance\":32999,\"resy\":33000,\"racial\":33001,\"ORTS\":33002,\"ĠMormons\":33003,\"Strong\":33004,\"ĠCoch\":33005,\"Mexico\":33006,\"ĠMaduro\":33007,\"Ġjars\":33008,\"Ġcane\":33009,\"Wik\":33010,\"olla\":33011,\"ifference\":33012,\"Ġphysicist\":33013,\"ĠMaggie\":33014,\"Ġ285\":33015,\"Ġdepiction\":33016,\"ĠMcLaren\":33017,\"Ju\":33018,\"Ġslows\":33019,\"Ġcommissioners\":33020,\"ĠWillow\":33021,\"ĠExplos\":33022,\"hovah\":33023,\"Ġtechnician\":33024,\"Ġhomicides\":33025,\"ĠFlav\":33026,\"ĠTruman\":33027,\"Ġ10000\":33028,\"uctor\":33029,\"Ġshader\":33030,\"Newsletter\":33031,\"457\":33032,\"Ġrever\":33033,\"Ġhardened\":33034,\"Ġwhereabouts\":33035,\"Ġredevelop\":33036,\"Ġcarbs\":33037,\"Ġtravers\":33038,\"Ġsquirrel\":33039,\"Ġfollower\":33040,\"Ġsings\":33041,\"508\":33042,\"Ġrabbits\":33043,\"emonium\":33044,\"Ġdocumenting\":33045,\"Ġmisunderstood\":33046,\")'\":33047,\"Rick\":33048,\"ggies\":33049,\"Ġpremie\":33050,\"Ġskating\":33051,\"Ġpassports\":33052,\"Ġfists\":33053,\"ageddon\":33054,\"Haw\":33055,\"ACP\":33056,\"080\":33057,\"ĠThoughts\":33058,\"ĠCarlson\":33059,\"Ġpriesthood\":33060,\"hua\":33061,\"Ġdungeons\":33062,\"ĠLoans\":33063,\"Ġantis\":33064,\"Ġfamiliarity\":33065,\"ĠSabb\":33066,\"opal\":33067,\"ĠInk\":33068,\"strike\":33069,\"Ġcram\":33070,\"Ġlegalized\":33071,\"Ġcuisine\":33072,\"Ġfibre\":33073,\"Travel\":33074,\"ĠMonument\":33075,\"ODY\":33076,\"ethy\":33077,\"Ġinterstate\":33078,\"ĠPUR\":33079,\"emporary\":33080,\"ĠArabian\":33081,\"developed\":33082,\"Ġsaddle\":33083,\"Ġgithub\":33084,\"ĠOffer\":33085,\"ĠISP\":33086,\"rolet\":33087,\"ĠSUPER\":33088,\"ĠDenis\":33089,\"Ġmultiplier\":33090,\"Ġstirred\":33091,\"Interestingly\":33092,\"Ġcustomary\":33093,\"Ġbilled\":33094,\"hex\":33095,\"Ġmultiplied\":33096,\"Ġflipping\":33097,\"ĠCrosby\":33098,\"Ġfundamentals\":33099,\"iae\":33100,\"ĠPlayed\":33101,\"ĠAtom\":33102,\"amazon\":33103,\"ĠFlam\":33104,\"eez\":33105,\"activated\":33106,\"Ġtablespoon\":33107,\"Ġliberalism\":33108,\"ĠPalin\":33109,\"ĠPatel\":33110,\"Num\":33111,\"ĠTAM\":33112,\"Ġsurn\":33113,\"ĠReloaded\":33114,\"Ġcoined\":33115,\"\\\"],\":33116,\"ĠClash\":33117,\"ĠAgu\":33118,\"Ġpragmatic\":33119,\"ĠActivate\":33120,\"Ġ802\":33121,\"Ġtrailers\":33122,\"Ġsilhou\":33123,\"Ġprobes\":33124,\"Ġcircus\":33125,\"ĠBain\":33126,\"ĠLindsay\":33127,\"ĠAbbey\":33128,\"Delivery\":33129,\"Ġconcession\":33130,\"Ġgastro\":33131,\"ĠSprite\":33132,\"ÄŁ\":33133,\"andel\":33134,\"Ġgimm\":33135,\"Ġautobi\":33136,\"ĠTurtle\":33137,\"Ġwonderfully\":33138,\"ĠHaram\":33139,\"ĠWorldwide\":33140,\"ĠHandle\":33141,\"Ġtheorists\":33142,\"Ġsleek\":33143,\"ĠZhu\":33144,\"ographically\":33145,\"EGA\":33146,\"ĠOwners\":33147,\"aths\":33148,\"ĠAntarctic\":33149,\"natal\":33150,\"=\\\"\\\"\":33151,\"flags\":33152,\"````\":33153,\"Ġsul\":33154,\"Kh\":33155,\"Ġpotassium\":33156,\"Ġlineman\":33157,\"Ġcereal\":33158,\"ĠSeasons\":33159,\"Ġ2022\":33160,\"Ġmathematic\":33161,\"Ġastronomers\":33162,\"professional\":33163,\"Ġfares\":33164,\"cknowled\":33165,\"Ġchi\":33166,\"Ġyoungsters\":33167,\"Ġmistakenly\":33168,\"Ġhemisphere\":33169,\"ĠDivinity\":33170,\"rone\":33171,\"Ġ\\\",\":33172,\"rings\":33173,\"Ġattracts\":33174,\"vana\":33175,\"å¹\":33176,\"CAP\":33177,\"Ġplaylist\":33178,\"Ġporch\":33179,\"ãģ£\":33180,\"Ġincorporates\":33181,\"Ġsoak\":33182,\"Ġasserting\":33183,\"ĠTerrorism\":33184,\"ĠPablo\":33185,\"Ja\":33186,\"cester\":33187,\"Ġfearing\":33188,\"ĠPrayer\":33189,\"Ġescalated\":33190,\"GW\":33191,\"Ġrobe\":33192,\"ĠBrighton\":33193,\"acists\":33194,\"ĠSymphony\":33195,\"ĠDwarf\":33196,\"ĠParade\":33197,\"ĠLego\":33198,\"Ġinexpl\":33199,\"Ġlords\":33200,\"leaf\":33201,\"RAG\":33202,\"liber\":33203,\"Ġcigars\":33204,\"ĠJehovah\":33205,\"606\":33206,\"WINDOWS\":33207,\"ĠLiberia\":33208,\"ebus\":33209,\"Heavy\":33210,\"Ġlubric\":33211,\"ĠRW\":33212,\"anguages\":33213,\"Ġnarrowed\":33214,\"computer\":33215,\"ĠEmber\":33216,\"Ġmurdering\":33217,\"Ġdownstream\":33218,\"ĠTuls\":33219,\"ĠTables\":33220,\"Topic\":33221,\"ĠAccuracy\":33222,\"=/\":33223,\"lost\":33224,\"ĠRei\":33225,\"Ġprogresses\":33226,\"bear\":33227,\"Ġestablishments\":33228,\"Justin\":33229,\"ĠPeach\":33230,\"ĠGomez\":33231,\"å¿\":33232,\"ĠTriangle\":33233,\"Ident\":33234,\"ĠHive\":33235,\"Resources\":33236,\"Ġmixes\":33237,\"ĠAssuming\":33238,\"Mu\":33239,\"Ġhypoc\":33240,\"Ġsane\":33241,\"ĠWan\":33242,\"idious\":33243,\"Success\":33244,\"Ġio\":33245,\"Angel\":33246,\"Ġdangerously\":33247,\"ĠCreature\":33248,\"WORK\":33249,\":[\":33250,\"ĠKatrina\":33251,\"Listener\":33252,\"Miller\":33253,\"ĠIdlib\":33254,\"hang\":33255,\"Ġcircumvent\":33256,\"href\":33257,\"Ġcelestial\":33258,\"ĠWeeks\":33259,\"ĠPug\":33260,\"ĠDalton\":33261,\"Ġsubpoena\":33262,\"uku\":33263,\"Ġpersisted\":33264,\"pei\":33265,\"olding\":33266,\"ĠDocuments\":33267,\"ĠHast\":33268,\"ĠCENT\":33269,\"Ġprimer\":33270,\"Ġsynonymous\":33271,\"Ġnib\":33272,\"ombs\":33273,\"Ġnotation\":33274,\"ĠDish\":33275,\"ĠAtmosp\":33276,\"Ġforbid\":33277,\"ĠANG\":33278,\"pattern\":33279,\"los\":33280,\"Ġprojectiles\":33281,\"brown\":33282,\".\\\",\":33283,\"ĠVenom\":33284,\"Ġfiercely\":33285,\"ublished\":33286,\"ĠUran\":33287,\"ĠNicarag\":33288,\"410\":33289,\"ĠCAL\":33290,\"OTOS\":33291,\"ĠMiracle\":33292,\"ĠEnchant\":33293,\"Ġguarding\":33294,\"append\":33295,\"Attach\":33296,\"Ġleveled\":33297,\"Ġcondoms\":33298,\"ihilation\":33299,\"649\":33300,\"Ġnightmares\":33301,\"ĠTHEY\":33302,\"ĠSTART\":33303,\"ĠKinn\":33304,\"Ġroommate\":33305,\"Ġhygiene\":33306,\"opping\":33307,\"Job\":33308,\"Ġlvl\":33309,\"ĠVER\":33310,\"ĠKeeping\":33311,\"abetic\":33312,\"Ġformatting\":33313,\"erala\":33314,\"Ġrevisions\":33315,\"Ġresurg\":33316,\"Tel\":33317,\"ĠGoodman\":33318,\"353\":33319,\"pod\":33320,\"Ġindisp\":33321,\"ĠTranslation\":33322,\"Ġgown\":33323,\"ĠMund\":33324,\"Ġcis\":33325,\"Ġbystand\":33326,\"collect\":33327,\"ĠPunjab\":33328,\"actively\":33329,\"ĠGamb\":33330,\"tell\":33331,\"Ġimporting\":33332,\"gencies\":33333,\"Ġlocom\":33334,\"ĠBrill\":33335,\"Holy\":33336,\"ĠBerger\":33337,\"Ġshowdown\":33338,\"Ġresponders\":33339,\"ILY\":33340,\"Ġtakedown\":33341,\"leted\":33342,\"Ġmattered\":33343,\"Ġpredictive\":33344,\"Ġoverlay\":33345,\"GPU\":33346,\"ĠVick\":33347,\"Ġconveyed\":33348,\"Tab\":33349,\"peer\":33350,\"Scan\":33351,\"Ġdefensively\":33352,\"vae\":33353,\"Ġapproving\":33354,\"Ġtiers\":33355,\"ĠVia\":33356,\"querade\":33357,\"ĠSaudis\":33358,\"Ġdemolished\":33359,\"ĠProphe\":33360,\"Ġmono\":33361,\"Ġhospitality\":33362,\"HAM\":33363,\"ĠAriel\":33364,\"MOD\":33365,\"ĠTorah\":33366,\"Ġblah\":33367,\"ĠBelarus\":33368,\"erential\":33369,\"ĠTuc\":33370,\"Ġbanker\":33371,\"397\":33372,\"Ġmosquit\":33373,\"ĠScientist\":33374,\"ĠMusical\":33375,\"Ġhust\":33376,\"Shift\":33377,\"Ġtorment\":33378,\"Ġstandoff\":33379,\"Educ\":33380,\"ĠFog\":33381,\"Ġamplifier\":33382,\"Shape\":33383,\"Instance\":33384,\"ĠCritics\":33385,\"Ġdaemon\":33386,\"Houston\":33387,\"Ġmattress\":33388,\"ĠIDF\":33389,\"Ġobscene\":33390,\"ĠAmer\":33391,\"hetti\":33392,\"Ġcompiling\":33393,\"352\":33394,\"verett\":33395,\"ĠReduction\":33396,\"istration\":33397,\"ĠBlessed\":33398,\"ĠBachelor\":33399,\"316\":33400,\"Ġprank\":33401,\"ĠVulcan\":33402,\"dding\":33403,\"Ġmourning\":33404,\"ĠQuint\":33405,\"ĠBlaster\":33406,\"testing\":33407,\"Ġsediment\":33408,\">>>\":33409,\"ĠEternity\":33410,\"ĠWHERE\":33411,\"ĠMaze\":33412,\"Ġreacting\":33413,\"ĠAlv\":33414,\"omsday\":33415,\"ĠCRA\":33416,\"Ġtranslator\":33417,\"Ġbogus\":33418,\"atu\":33419,\"Website\":33420,\"olls\":33421,\"Ġbaptism\":33422,\"Ġsibling\":33423,\"ĠAutumn\":33424,\"vez\":33425,\"ãģ®é\":33426,\"guards\":33427,\"Georg\":33428,\"assadors\":33429,\"ĠFreud\":33430,\"Ġcontinents\":33431,\"ĠRegistry\":33432,\"Bernie\":33433,\"ĸļå£«\":33434,\"Ġtolerant\":33435,\"ĠUW\":33436,\"Ġhorribly\":33437,\"995\":33438,\"ĠMIDI\":33439,\"Ġimpatient\":33440,\"ocado\":33441,\"eri\":33442,\"ĠWorst\":33443,\"ĠNorris\":33444,\"ĠTalking\":33445,\"Ġdefends\":33446,\"ensable\":33447,\"Ġ2021\":33448,\"Ġanatomy\":33449,\"Lew\":33450,\"Ġdrawer\":33451,\"ĠCanberra\":33452,\"Ġpatriotic\":33453,\"é¾įåĸļå£«\":33454,\"ĠAvg\":33455,\"ARM\":33456,\"Ġundisclosed\":33457,\"Ġfarewell\":33458,\"459\":33459,\"bable\":33460,\"ĠAllison\":33461,\"OLOG\":33462,\"Ġconco\":33463,\"tight\":33464,\"ĠACPI\":33465,\"ĠMines\":33466,\"lich\":33467,\"ĠâĶľ\":33468,\"represented\":33469,\"200000\":33470,\"Ġenthusiast\":33471,\"OTS\":33472,\"bil\":33473,\"ĠIngredients\":33474,\"Ġinventor\":33475,\"ĠMySQL\":33476,\"ÂłÂłÂł\":33477,\"ĠABOUT\":33478,\"within\":33479,\"Ġmk\":33480,\"Bul\":33481,\"ĠFake\":33482,\"Ġdraconian\":33483,\"Wa\":33484,\"helm\":33485,\"ĠTerran\":33486,\"erville\":33487,\"Ġcommonplace\":33488,\"SIZE\":33489,\"Ġ\\\"<\":33490,\"replace\":33491,\"ographs\":33492,\"ĠSELECT\":33493,\"incible\":33494,\"ĠMostly\":33495,\"ĠSheffield\":33496,\"ĠIDE\":33497,\"uggle\":33498,\"Ġcitations\":33499,\"hurst\":33500,\"ĠUnix\":33501,\"Ġunleash\":33502,\"ĠPiper\":33503,\"ĠNano\":33504,\"Ġsuccumb\":33505,\"Ġreluctance\":33506,\"Ġ2500\":33507,\"ĠMerchant\":33508,\"Ġwiret\":33509,\"Ġcombos\":33510,\"ĠBirthday\":33511,\"Ġcharcoal\":33512,\"ĠUPS\":33513,\"ĠFairfax\":33514,\"Ġdriveway\":33515,\"ĠTek\":33516,\"ĠPitch\":33517,\"overe\":33518,\"Ġtechnicians\":33519,\"ĠActual\":33520,\"flation\":33521,\"ĠFiscal\":33522,\"ĠEmpty\":33523,\"anamo\":33524,\"Ġmagnesium\":33525,\"Ġslut\":33526,\"Ġgrowers\":33527,\"Investigators\":33528,\"():\":33529,\"ĠSatellite\":33530,\"ĠKeynes\":33531,\"missive\":33532,\"lane\":33533,\"Ġborough\":33534,\"344\":33535,\"ĠTEAM\":33536,\"ĠBethesda\":33537,\"CV\":33538,\"hower\":33539,\"ĠRAD\":33540,\"Ġchant\":33541,\"ĠRiy\":33542,\"Ġcompositions\":33543,\"Ġmildly\":33544,\"Ġmeddling\":33545,\"Ġagility\":33546,\"aneers\":33547,\"501\":33548,\"Ġsynth\":33549,\"linger\":33550,\"291\":33551,\"Ġexclaimed\":33552,\"Party\":33553,\"Ġcontamin\":33554,\"ĠManor\":33555,\"ĠRespond\":33556,\"Ġpraising\":33557,\"Ġmanners\":33558,\"fleet\":33559,\"Summer\":33560,\"ĠLynd\":33561,\"ĠDefinitely\":33562,\"grim\":33563,\"Ġbowling\":33564,\"stri\":33565,\"çĽ\":33566,\"ynt\":33567,\"Ġmandates\":33568,\"DIV\":33569,\"Ġreconcile\":33570,\"views\":33571,\"ĠDamon\":33572,\"vette\":33573,\"Flo\":33574,\"ĠGreatest\":33575,\"ilon\":33576,\"icia\":33577,\"Ġportrayal\":33578,\"Ġcushion\":33579,\"504\":33580,\"1979\":33581,\"ossal\":33582,\"Applic\":33583,\"scription\":33584,\"Ġmitigation\":33585,\"ATS\":33586,\"pac\":33587,\"Ġerased\":33588,\"Ġdeficiencies\":33589,\"ĠHollande\":33590,\"ĠXu\":33591,\"Ġbred\":33592,\"Ġpregnancies\":33593,\"femin\":33594,\"Ġemph\":33595,\"Ġplanners\":33596,\"Ġoutper\":33597,\"uttering\":33598,\"Ġperpetrator\":33599,\"Ġmotto\":33600,\"ĠEllison\":33601,\"ĠNEVER\":33602,\"Ġadmittedly\":33603,\"ARI\":33604,\"ĠAzerbaijan\":33605,\"Ġmillisec\":33606,\"Ġcombustion\":33607,\"ĠBottle\":33608,\"ĠLund\":33609,\"ĠPs\":33610,\"ĠDress\":33611,\"Ġfabricated\":33612,\"Ġbattered\":33613,\"Ġsidel\":33614,\"ĠNotting\":33615,\"Foreign\":33616,\"ĠJerome\":33617,\"020\":33618,\"ĠArbit\":33619,\"Ġknots\":33620,\"ĠRIGHT\":33621,\"Moving\":33622,\"ãģĻ\":33623,\"Ġsurgeries\":33624,\"Ġcourthouse\":33625,\"Ġmastered\":33626,\"Ġhovering\":33627,\"ĠBran\":33628,\"ĠAlison\":33629,\"Ġsafest\":33630,\"military\":33631,\"Ġbullied\":33632,\"Ġbarrage\":33633,\"Reader\":33634,\"ESE\":33635,\"ĠGeographic\":33636,\"Tools\":33637,\"314\":33638,\"ĠGeek\":33639,\"roth\":33640,\"glers\":33641,\"ĠFIN\":33642,\"Ïģ\":33643,\"ĠAston\":33644,\"altern\":33645,\"488\":33646,\"Ġveterin\":33647,\"Gamer\":33648,\"Ġintel\":33649,\"renches\":33650,\"Shield\":33651,\"Ġamnesty\":33652,\"ĠBhar\":33653,\"Ġpiled\":33654,\"Ġhonorable\":33655,\"ĠInstitutes\":33656,\"Ġsoaked\":33657,\"Ġcoma\":33658,\"ĠEFF\":33659,\"341\":33660,\"bytes\":33661,\"ĠGmail\":33662,\"lein\":33663,\"ĠCanadiens\":33664,\"material\":33665,\"Il\":33666,\"Ġinstructors\":33667,\"ĠKY\":33668,\"Ġconceive\":33669,\"ubb\":33670,\"ĠPossible\":33671,\"Ġeasing\":33672,\"ĠChristina\":33673,\"Ġcaric\":33674,\"ĠHDR\":33675,\"ROM\":33676,\"Ġshovel\":33677,\"delete\":33678,\"Ġpuff\":33679,\"ĠChanging\":33680,\"Ġseamlessly\":33681,\"Attribute\":33682,\"Ġacquisitions\":33683,\"akery\":33684,\"ĠEF\":33685,\"Ġautistic\":33686,\"ĠTakes\":33687,\"ĠPowder\":33688,\"ĠStir\":33689,\"510\":33690,\"ĠBubble\":33691,\"settings\":33692,\"ĠFowler\":33693,\"Ġmustard\":33694,\"Ġmoreover\":33695,\"Ġcopyrighted\":33696,\"ĠLEDs\":33697,\"1500\":33698,\"æī\":33699,\"ĠHIS\":33700,\"enf\":33701,\"Ġcustod\":33702,\"ĠHuck\":33703,\"Gi\":33704,\"Ġimg\":33705,\"Answer\":33706,\"Ct\":33707,\"jay\":33708,\"ĠInfrastructure\":33709,\"Ġfederally\":33710,\"Loc\":33711,\"Ġmicrobes\":33712,\"Ġoverrun\":33713,\"dds\":33714,\"otent\":33715,\"adiator\":33716,\">>>>>>>>\":33717,\"Ġtornado\":33718,\"Ġadjud\":33719,\"Ġintrigued\":33720,\"Ġsi\":33721,\"ĠRevelation\":33722,\"progress\":33723,\"Ġburglary\":33724,\"ĠSaiyan\":33725,\"ĠKathy\":33726,\"Ġserpent\":33727,\"ĠAndreas\":33728,\"Ġcompel\":33729,\"essler\":33730,\"ĠPlastic\":33731,\"ĠAdvent\":33732,\"ĠPositive\":33733,\"ĠQt\":33734,\"ĠHindus\":33735,\"registered\":33736,\"ularity\":33737,\"Ġrighteousness\":33738,\"Ġdemonic\":33739,\"uitive\":33740,\"ĠBDS\":33741,\"ĠGregg\":33742,\"cia\":33743,\"ĠCrusade\":33744,\"ĠSinai\":33745,\"WARE\":33746,\"+(\":33747,\"Ġmell\":33748,\"Ġderail\":33749,\"yards\":33750,\"Ast\":33751,\"Ġnoticeably\":33752,\"ĠOber\":33753,\"Ram\":33754,\"Ġunnoticed\":33755,\"Ġseq\":33756,\"avage\":33757,\"Ts\":33758,\"Ġ640\":33759,\"Ġconcede\":33760,\"Ġ])\":33761,\"Fill\":33762,\"Ġcaptivity\":33763,\"ĠImprovement\":33764,\"ĠCrusader\":33765,\"araoh\":33766,\"MAP\":33767,\"æĹ\":33768,\"Ġstride\":33769,\"always\":33770,\"Fly\":33771,\"Nit\":33772,\"Ġalgae\":33773,\"ĠCooking\":33774,\"ĠDoors\":33775,\"Malley\":33776,\"Ġpolicemen\":33777,\"ãģį\":33778,\"Ġastronaut\":33779,\"accessible\":33780,\"495\":33781,\"ĠRAW\":33782,\"cliffe\":33783,\"udicrous\":33784,\"Ġdepended\":33785,\"alach\":33786,\"Ġventures\":33787,\"rake\":33788,\"Ġtits\":33789,\"ĠHou\":33790,\"Ġcondom\":33791,\"ormonal\":33792,\"Ġindent\":33793,\"Ġuploading\":33794,\"Footnote\":33795,\"Important\":33796,\"Ġ271\":33797,\"Ġmindful\":33798,\"Ġcontends\":33799,\"Cra\":33800,\"Ġcalibr\":33801,\"ĠOECD\":33802,\"plugin\":33803,\"Fat\":33804,\"ĠISS\":33805,\"ĠDynamics\":33806,\"ansen\":33807,\"686\":33808,\"'),\":33809,\"Ġsprite\":33810,\"Ġhandheld\":33811,\"ĠHipp\":33812,\"=~=~\":33813,\"Trust\":33814,\"Ġsemantics\":33815,\"ĠBundes\":33816,\"ĠReno\":33817,\"ĠLiterature\":33818,\"sense\":33819,\"Gary\":33820,\"ĠAeg\":33821,\"ĠTrin\":33822,\"EEK\":33823,\"Ġcleric\":33824,\"ĠSSH\":33825,\"Ġchrist\":33826,\"Ġinvading\":33827,\"ibu\":33828,\"Ġenum\":33829,\"aura\":33830,\"Ġallege\":33831,\"ĠIncredible\":33832,\"BBC\":33833,\"Ġthru\":33834,\"Ġsailed\":33835,\"Ġemulate\":33836,\"Ġinsecurity\":33837,\"Ġcrou\":33838,\"Ġaccommodations\":33839,\"Ġincompetent\":33840,\"Ġslips\":33841,\"ĠEarthqu\":33842,\"sama\":33843,\"ILLE\":33844,\"ĠiPhones\":33845,\"asaki\":33846,\"Ġbye\":33847,\"Ġard\":33848,\"Ġextras\":33849,\"Ġslaughtered\":33850,\"Ġcrowdfunding\":33851,\"resso\":33852,\"Ġfilib\":33853,\"ĠERROR\":33854,\"ĠTLS\":33855,\"egg\":33856,\"ĠItal\":33857,\"Ġenlist\":33858,\"ĠCatalonia\":33859,\"ĠScots\":33860,\"Ġsergeant\":33861,\"Ġdissolve\":33862,\"NH\":33863,\"Ġstandings\":33864,\"rique\":33865,\"IQ\":33866,\"Ġbeneficiary\":33867,\"Ġaquarium\":33868,\"YouTube\":33869,\"ĠPowerShell\":33870,\"Ġbrightest\":33871,\"ĠWarrant\":33872,\"Sold\":33873,\"Writing\":33874,\"Ġbeginnings\":33875,\"ĠReserved\":33876,\"ĠLatinos\":33877,\"heading\":33878,\"Ġ440\":33879,\"Ġrooftop\":33880,\"ATING\":33881,\"Ġ390\":33882,\"VPN\":33883,\"Gs\":33884,\"kernel\":33885,\"turned\":33886,\"Ġpreferable\":33887,\"Ġturnovers\":33888,\"ĠHels\":33889,\"Sa\":33890,\"ĠShinji\":33891,\"veh\":33892,\"ĠMODULE\":33893,\"Viol\":33894,\"Ġexiting\":33895,\"Ġjab\":33896,\"ĠVanilla\":33897,\"Ġacron\":33898,\"ĠGap\":33899,\"bern\":33900,\"Ak\":33901,\"ĠMcGu\":33902,\"Ġendlessly\":33903,\"ĠFarage\":33904,\"ĠNoel\":33905,\"Va\":33906,\"MK\":33907,\"Ġbrute\":33908,\"ĠKru\":33909,\"ĠESV\":33910,\"ĠOlivia\":33911,\"âĢł\":33912,\"ĠKaf\":33913,\"Ġtrusting\":33914,\"Ġhots\":33915,\"324\":33916,\"Ġmalaria\":33917,\"Ġjson\":33918,\"Ġpounding\":33919,\"ortment\":33920,\"Country\":33921,\"Ġpostponed\":33922,\"Ġunequiv\":33923,\"?),\":33924,\"ĠRooney\":33925,\"udding\":33926,\"ĠLeap\":33927,\"urrence\":33928,\"shapeshifter\":33929,\"ĠHAS\":33930,\"osate\":33931,\"Ġcavern\":33932,\"Ġconservatism\":33933,\"ĠBAD\":33934,\"Ġmileage\":33935,\"Ġarresting\":33936,\"Vaults\":33937,\"Ġmixer\":33938,\"Democratic\":33939,\"ĠBenson\":33940,\"Ġauthored\":33941,\"8000\":33942,\"Ġproactive\":33943,\"ĠSpiritual\":33944,\"tre\":33945,\"Ġincarcerated\":33946,\"ĠSort\":33947,\"Ġpeaked\":33948,\"Ġwielding\":33949,\"reciation\":33950,\"×Ļ×\":33951,\"Patch\":33952,\"ĠEmmy\":33953,\"Ġexqu\":33954,\"tto\":33955,\"ĠRatio\":33956,\"ĠPicks\":33957,\"ĠGry\":33958,\"phant\":33959,\"Ġfret\":33960,\"Ġethn\":33961,\"Ġarchived\":33962,\"%-\":33963,\"cases\":33964,\"ĠBlaze\":33965,\"Ġimb\":33966,\"cv\":33967,\"yss\":33968,\"imony\":33969,\"Ġcountdown\":33970,\"Ġawakening\":33971,\"ĠTunisia\":33972,\"ĠRefer\":33973,\"ĠMJ\":33974,\"Ġunnatural\":33975,\"ĠCarnegie\":33976,\"izen\":33977,\"ĠNuggets\":33978,\"hess\":33979,\"Ġevils\":33980,\"647\":33981,\"Ġintroductory\":33982,\"loving\":33983,\"ĠMcMahon\":33984,\"Ġambiguity\":33985,\"Label\":33986,\"ĠAlmighty\":33987,\"Ġcoloring\":33988,\"ĠClaus\":33989,\"setting\":33990,\"NULL\":33991,\"ĠFavorite\":33992,\"ĠSIG\":33993,\">(\":33994,\"ĠShiva\":33995,\"ĠMayer\":33996,\"Ġstormed\":33997,\"ĠCoverage\":33998,\"weapons\":33999,\"igham\":34000,\"Ġunanswered\":34001,\"Ġleve\":34002,\"Ġcoy\":34003,\"cas\":34004,\"bags\":34005,\"asured\":34006,\"Seattle\":34007,\"ĠSantorum\":34008,\"serious\":34009,\"Ġcourageous\":34010,\"ĠSoup\":34011,\"Ġconfiscated\":34012,\"Ġ///\":34013,\"Ġunconventional\":34014,\"Ġmoms\":34015,\"ĠRohingya\":34016,\"ĠOrchestra\":34017,\"ĠPotion\":34018,\"Ġdiscredit\":34019,\"ĠFIL\":34020,\"fixed\":34021,\"ĠDeer\":34022,\"doi\":34023,\"ĠDimension\":34024,\"Ġbureaucrats\":34025,\"eteen\":34026,\"ĠactionGroup\":34027,\"ohm\":34028,\"Ġbumps\":34029,\"ĠUtility\":34030,\"Ġsubmarines\":34031,\"renheit\":34032,\"research\":34033,\"ĠShapiro\":34034,\"Ġsketches\":34035,\"Ġdeceptive\":34036,\"ĠVil\":34037,\"esame\":34038,\"ĠEssentially\":34039,\"Ġrampage\":34040,\"isky\":34041,\"Ġmuttered\":34042,\"thritis\":34043,\"Ġ236\":34044,\"fet\":34045,\"bars\":34046,\"Ġpupil\":34047,\"ĠThou\":34048,\"oS\":34049,\"song\":34050,\"Ġfractured\":34051,\"Ġrevert\":34052,\"picture\":34053,\"Ġcriterion\":34054,\"usher\":34055,\"Ġrepercussions\":34056,\"ĠVintage\":34057,\"ĠSuperintendent\":34058,\"Officers\":34059,\"Ġflagged\":34060,\"Ġblames\":34061,\"Ġinverse\":34062,\"ographers\":34063,\"Ġmakeshift\":34064,\"Ġdevoid\":34065,\"Ġfossils\":34066,\"ĠAristotle\":34067,\"ĠFunds\":34068,\"Ġdepleted\":34069,\"ĠFlu\":34070,\"ĠYuan\":34071,\"Ġwoes\":34072,\"Ġlipid\":34073,\"Ġsitu\":34074,\"requisites\":34075,\"Ġfurnish\":34076,\"ĠSamar\":34077,\"Ġshameful\":34078,\"Ġadversely\":34079,\"Ġadept\":34080,\"Ġremorse\":34081,\"Ġmurderous\":34082,\"uckles\":34083,\"ĠESL\":34084,\"Ġ314\":34085,\"sent\":34086,\"Ġredef\":34087,\"ĠCache\":34088,\"ĠPurs\":34089,\"igans\":34090,\"Ġ460\":34091,\"Ġprescriptions\":34092,\"Ġfres\":34093,\"Fuck\":34094,\"ocrates\":34095,\"Twenty\":34096,\"ĠWeird\":34097,\"ĠToggle\":34098,\"ĠCalled\":34099,\"itizens\":34100,\"Ġpoultry\":34101,\"Ġharvesting\":34102,\"ãĤ¦ãĤ¹\":34103,\"Bottom\":34104,\"Ġcautioned\":34105,\"tn\":34106,\"396\":34107,\"ĠNikki\":34108,\"Ġevaluations\":34109,\"Ġharassing\":34110,\"Ġbindings\":34111,\"ĠMonetary\":34112,\"Ġhitters\":34113,\"Ġadversary\":34114,\"unts\":34115,\"Ġsetback\":34116,\"Ġencrypt\":34117,\"ĠCait\":34118,\"Ġlows\":34119,\"enges\":34120,\"ĠNorn\":34121,\"Ġbulbs\":34122,\"Ġbottled\":34123,\"ĠVoyager\":34124,\"317\":34125,\"Ġspheres\":34126,\"politics\":34127,\"Ġsubtract\":34128,\"Ġsensations\":34129,\"Ġappalling\":34130,\"Ġ316\":34131,\"Ġenvironmentally\":34132,\"ĠSTEM\":34133,\"Ġpublishes\":34134,\"560\":34135,\"Ġdiligence\":34136,\"484\":34137,\"Ġadvises\":34138,\"Ġpetrol\":34139,\"Ġimagining\":34140,\"Ġpatrols\":34141,\"ĠInteger\":34142,\"ĠAshes\":34143,\"actus\":34144,\"ĠRadiant\":34145,\"ĠLT\":34146,\"itability\":34147,\"htaking\":34148,\"Setting\":34149,\"Ġnuanced\":34150,\"ĠReef\":34151,\"ĠDevelopers\":34152,\"Ni\":34153,\"pieces\":34154,\"990\":34155,\"License\":34156,\"Ġlowers\":34157,\"ĠOttoman\":34158,\"327\":34159,\"ooo\":34160,\"Ġquitting\":34161,\"markets\":34162,\"Behind\":34163,\"Ġbasin\":34164,\"Ġdocs\":34165,\"anie\":34166,\"flash\":34167,\"ctl\":34168,\"Ġcivilized\":34169,\"ĠFukushima\":34170,\"\\\"],\\\"\":34171,\"ĠKS\":34172,\"ĠHonestly\":34173,\"arat\":34174,\"Ġconstructs\":34175,\"ĠLans\":34176,\"ĠDire\":34177,\"ĠLIKE\":34178,\"ĠTrouble\":34179,\"Ġwithholding\":34180,\"ĠOblivion\":34181,\"Ġsanity\":34182,\"anya\":34183,\"Const\":34184,\"Ġgrocer\":34185,\"ĠCelsius\":34186,\"Ġrecounted\":34187,\"ĠWife\":34188,\"Border\":34189,\"atered\":34190,\"happy\":34191,\"Ġspoiler\":34192,\"Ġlogically\":34193,\"Hall\":34194,\"Ġsucceeding\":34195,\"Ġpolymorph\":34196,\"Ġaxes\":34197,\"ĠShotgun\":34198,\"ĠSlim\":34199,\"ĠPrinciples\":34200,\"ĠLeth\":34201,\"arta\":34202,\"Ġscor\":34203,\"Screenshot\":34204,\"Ġrelaxation\":34205,\"#$#$\":34206,\"Ġdeterrent\":34207,\"iddy\":34208,\"Ġpowerless\":34209,\"Ġlesbians\":34210,\"Ġchords\":34211,\"ĠEdited\":34212,\"selected\":34213,\"Ġseparatists\":34214,\"0002\":34215,\"Ġairspace\":34216,\"Ġturnaround\":34217,\"Ġcunning\":34218,\"PATH\":34219,\"Poly\":34220,\"Ġbombed\":34221,\"Ġtion\":34222,\"xs\":34223,\"Ġwithhold\":34224,\"Ġwaged\":34225,\"ĠLiberties\":34226,\"Flag\":34227,\"Ġcomforting\":34228,\"454\":34229,\"ĠIris\":34230,\"arers\":34231,\"Ġrag\":34232,\"Ġrelocated\":34233,\"ĠGuarant\":34234,\"Ġstrategically\":34235,\"Ġgamma\":34236,\"uberty\":34237,\"ĠLockheed\":34238,\"gres\":34239,\"Ġgrilled\":34240,\"ĠLowe\":34241,\"stats\":34242,\"ĠRocks\":34243,\"Ġsensing\":34244,\"Ġrenting\":34245,\"ĠGeological\":34246,\"Ø§Ø\":34247,\"otrop\":34248,\"Ġsew\":34249,\"Ġimproperly\":34250,\"486\":34251,\"Ġâĸł\":34252,\"Ġstarving\":34253,\"ĠBj\":34254,\"Discussion\":34255,\"328\":34256,\"ĠCombo\":34257,\"ĠFixes\":34258,\"NAT\":34259,\"Ġstriving\":34260,\"thora\":34261,\"Ġharvested\":34262,\"ĠPing\":34263,\"Ġplayful\":34264,\"Ġavenues\":34265,\"Ġoccupational\":34266,\"Ġwakes\":34267,\"ĠCourier\":34268,\"Ġdrummer\":34269,\"ĠBrowser\":34270,\"ĠHouth\":34271,\"itu\":34272,\"Ġapparel\":34273,\"paste\":34274,\"Ġhunted\":34275,\"ĠSecondly\":34276,\"lain\":34277,\"XY\":34278,\"ĠPIN\":34279,\"icons\":34280,\"Ġcocktails\":34281,\"Ġsizable\":34282,\"Ġhurdles\":34283,\"estinal\":34284,\"ĠRecreation\":34285,\"Ġeco\":34286,\"648\":34287,\"ĠDied\":34288,\"mint\":34289,\"Ġfingerprints\":34290,\"Ġdispose\":34291,\"ĠBosnia\":34292,\"tsy\":34293,\"2200\":34294,\"Ġinspected\":34295,\"ĠFou\":34296,\"Ġfuss\":34297,\"Ġambush\":34298,\"ĠRak\":34299,\"Ġmanifested\":34300,\"Prosecut\":34301,\"Ġsuffice\":34302,\"rences\":34303,\"Ġcompensated\":34304,\"ĠCyrus\":34305,\"Ġgenus\":34306,\"ĠWolverine\":34307,\"ĠTrends\":34308,\"Ġhikes\":34309,\"ĠSeen\":34310,\"Ġenrol\":34311,\"Cold\":34312,\"Ġpolitely\":34313,\"ĠSlav\":34314,\"ĠRupert\":34315,\"Ġeyewitness\":34316,\"ĠAlto\":34317,\"Ġuncomp\":34318,\"Ġposterior\":34319,\"Must\":34320,\"ĠHerz\":34321,\"Ġprogressively\":34322,\"Ġ234\":34323,\"Ġindifference\":34324,\"ĠCunningham\":34325,\"Ġacademia\":34326,\"Ġsewer\":34327,\"Ġastounding\":34328,\"ĠAES\":34329,\"rather\":34330,\"Ġeldest\":34331,\"Ġclimbs\":34332,\"ĠAdds\":34333,\"Ġoutcry\":34334,\"Ġcontag\":34335,\"ĠHouses\":34336,\"Ġpept\":34337,\"ĠMelania\":34338,\"interested\":34339,\"ĠUCH\":34340,\"ĠRoots\":34341,\"ĠHubbard\":34342,\"ĠTBD\":34343,\"ĠRomanian\":34344,\"filename\":34345,\"Stone\":34346,\"ĠImpl\":34347,\"Ġchromosome\":34348,\"Cle\":34349,\"dx\":34350,\"Ġscrambled\":34351,\"ĠPt\":34352,\"Ġ242\":34353,\"OPLE\":34354,\"Ġtremendously\":34355,\"Street\":34356,\"Ġcraving\":34357,\"Ġbundled\":34358,\"ĠRG\":34359,\"pipe\":34360,\"Ġinjuring\":34361,\"Ġarcane\":34362,\"Particip\":34363,\"ĠHeroic\":34364,\"sty\":34365,\"Ġtopping\":34366,\"ĠTempest\":34367,\"rentices\":34368,\"bh\":34369,\"Ġparanoia\":34370,\"ĠUnicode\":34371,\"Ġegregious\":34372,\"Ġ\\\\'\":34373,\"ĠOswald\":34374,\"Ġgravel\":34375,\"ĠSimpsons\":34376,\"Ġbland\":34377,\"ĠGuantanamo\":34378,\"Writer\":34379,\"liners\":34380,\"ĠDice\":34381,\"JC\":34382,\"Ġparity\":34383,\"Ġsided\":34384,\"Ġ237\":34385,\"ĠPyrrha\":34386,\"atters\":34387,\"dk\":34388,\"Fine\":34389,\"compan\":34390,\"Ġformulated\":34391,\"ĠIdol\":34392,\"ilers\":34393,\"hemoth\":34394,\"ĠFav\":34395,\"Ġintrusion\":34396,\"Ġcarrots\":34397,\"ĠLayer\":34398,\"ĠHacker\":34399,\"Ġ----------------\":34400,\"Ġmoderation\":34401,\"éģ\":34402,\"ococ\":34403,\"Ġcharacterize\":34404,\"ĠTeresa\":34405,\"Ġsocioeconomic\":34406,\"Ġperk\":34407,\"ĠParticipation\":34408,\"training\":34409,\"ĠPaulo\":34410,\"phys\":34411,\"Ġtrustworthy\":34412,\"Ġembodied\":34413,\"ĠMerch\":34414,\"currency\":34415,\"ĠPriority\":34416,\"Ġteasing\":34417,\"Ġabsorbing\":34418,\"Ġunfinished\":34419,\"ĠComparison\":34420,\"Ġdisple\":34421,\"writers\":34422,\"Ġprofessions\":34423,\"ĠPenguin\":34424,\"Ġangrily\":34425,\"ĠLINK\":34426,\"688\":34427,\"ĠCorrespond\":34428,\"Ġprevailed\":34429,\"Ġcartel\":34430,\"lp\":34431,\"asms\":34432,\"ĠRedemption\":34433,\"ĠIslamists\":34434,\"effects\":34435,\"dose\":34436,\"ĠLatter\":34437,\"ĠHalifax\":34438,\"Ġvas\":34439,\"ĠTopics\":34440,\"ĠNamed\":34441,\"advertising\":34442,\"zza\":34443,\"ICES\":34444,\"Ġretarded\":34445,\"achable\":34446,\"ĠPuppet\":34447,\"ĠItemLevel\":34448,\"Ġretract\":34449,\"Ġidentifiable\":34450,\"Aaron\":34451,\"ĠBuster\":34452,\"sol\":34453,\"helle\":34454,\"assemb\":34455,\"Hope\":34456,\"ranged\":34457,\"Ba\":34458,\"ĠPurch\":34459,\"éĢ\":34460,\"ĠSiri\":34461,\"Ġarrivals\":34462,\"Ġ1912\":34463,\"Ġshortened\":34464,\"Ġ312\":34465,\"Ġdiscrepancy\":34466,\"ĠTemperature\":34467,\"ĠWalton\":34468,\"Ġkinderg\":34469,\"polit\":34470,\"Ġremix\":34471,\"Ġconnectors\":34472,\"ãĥĺãĥ©\":34473,\"ĠKazakhstan\":34474,\"dominated\":34475,\"Ġsugars\":34476,\"imble\":34477,\"ĠPanic\":34478,\"ĠDemand\":34479,\"ĠColony\":34480,\"onen\":34481,\"ĠMER\":34482,\"775\":34483,\"uria\":34484,\"azaar\":34485,\"ĠDegree\":34486,\"Pri\":34487,\"Ġsunshine\":34488,\"Ġ251\":34489,\"Ġpsychedelic\":34490,\"Ġdigitally\":34491,\"ĠBraun\":34492,\"Ġshimmer\":34493,\"Ġshave\":34494,\"ĠTelesc\":34495,\"ĠAstral\":34496,\"ĠVenezuelan\":34497,\"ĠOG\":34498,\"Ġcrawling\":34499,\"Integ\":34500,\"ĠFeather\":34501,\"Ġunfolding\":34502,\"Ġappropriation\":34503,\"Ġè£ıè\":34504,\"ĠMobility\":34505,\"ĠNey\":34506,\"-.\":34507,\"bilt\":34508,\"LIN\":34509,\"ĠTube\":34510,\"ĠConversely\":34511,\"Ġkeyboards\":34512,\"ĠCao\":34513,\"Ġoverth\":34514,\"Ġlaure\":34515,\">>\\\\\":34516,\"ĠViper\":34517,\"acha\":34518,\"Offset\":34519,\"ĠRaleigh\":34520,\"ĠJae\":34521,\"Jordan\":34522,\"jp\":34523,\"Ġtotalitarian\":34524,\"Connector\":34525,\"Ġobserves\":34526,\"ĠSpartan\":34527,\"ĠImmediately\":34528,\"ĠScal\":34529,\"Cool\":34530,\"Ġtaps\":34531,\"Ġroar\":34532,\"Past\":34533,\"Ġchars\":34534,\"ĠBender\":34535,\"ĠSheldon\":34536,\"Ġpainter\":34537,\"Ġbeacon\":34538,\"ĠCreatures\":34539,\"Ġdownturn\":34540,\"Ġhinder\":34541,\"ĠAndromeda\":34542,\"ÃĽ\":34543,\"ccoli\":34544,\"ĠFitness\":34545,\"etrical\":34546,\"Ġutilizes\":34547,\"Ġsenate\":34548,\"Ġensemble\":34549,\"Ġcheers\":34550,\"TW\":34551,\"Ġaffluent\":34552,\"kil\":34553,\"rylic\":34554,\"ordering\":34555,\"Computer\":34556,\"Ġgruesome\":34557,\"ostics\":34558,\"ĠUbisoft\":34559,\"ĠKelley\":34560,\"Ġwrench\":34561,\"Ġbourgeoisie\":34562,\"IBLE\":34563,\"ĠPreston\":34564,\"worn\":34565,\"arist\":34566,\"reating\":34567,\"Ġstained\":34568,\"arine\":34569,\"Ġslime\":34570,\"ENN\":34571,\"Ġchests\":34572,\"Ġgroundwater\":34573,\"annot\":34574,\"ĠTray\":34575,\"ĠLocke\":34576,\"ĠCTR\":34577,\"Ġdudes\":34578,\"ĠExternal\":34579,\"ĠDecoder\":34580,\"Ġparamed\":34581,\"ĠMedline\":34582,\"809\":34583,\"ĠDinner\":34584,\"rupal\":34585,\"gz\":34586,\"ĠGum\":34587,\"ĠDemo\":34588,\"jee\":34589,\"Ġdh\":34590,\"berman\":34591,\"archs\":34592,\"Ġenqu\":34593,\"ĠEpstein\":34594,\"Ġdevastation\":34595,\"Ġfriendships\":34596,\"ĠArd\":34597,\"Ġ231\":34598,\"ĠRubin\":34599,\"ĠDistance\":34600,\"Ġspurred\":34601,\"Ġdossier\":34602,\"Ġoverlooking\":34603,\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":34604,\"Forest\":34605,\"ĠComes\":34606,\"\\\\\\\",\":34607,\"ĠIranians\":34608,\"Ġfixtures\":34609,\"Laughs\":34610,\"Ġcurry\":34611,\"ĠKingston\":34612,\"Ġsquash\":34613,\"Ġcatalogue\":34614,\"Ġabnormalities\":34615,\"Ġdigestive\":34616,\".........\":34617,\"Ġsubordinate\":34618,\"ogly\":34619,\"Ġ249\":34620,\"Middle\":34621,\"Ġmassac\":34622,\"Ġburgers\":34623,\"Ġdownstairs\":34624,\"Ġ1931\":34625,\"394\":34626,\"ĠVG\":34627,\"Ġlasers\":34628,\"ĠSikh\":34629,\"ĠAlexa\":34630,\"derived\":34631,\"Ġcyclist\":34632,\"ãģ®éŃĶ\":34633,\"oneliness\":34634,\"!!!!!!!!\":34635,\"Ġbuffs\":34636,\"legate\":34637,\"Ġraping\":34638,\"Ġrecommending\":34639,\"rored\":34640,\"Ġmulticultural\":34641,\"unique\":34642,\"Ġbusinessmen\":34643,\"Ġuneasy\":34644,\"ĠMAP\":34645,\"Ġdispersed\":34646,\"cipline\":34647,\"Jess\":34648,\"ĠKerala\":34649,\"å§\":34650,\"Ġabstraction\":34651,\"Surv\":34652,\"Uh\":34653,\"Ġprinters\":34654,\"ija\":34655,\"owder\":34656,\"Ġanalogous\":34657,\"ĠASP\":34658,\"afer\":34659,\"Ġunfolded\":34660,\"Ġleveling\":34661,\"Ġbreached\":34662,\"ĠHearing\":34663,\"Ġnat\":34664,\"Ġtranslating\":34665,\"critical\":34666,\"Ġantagonist\":34667,\"ĠYesterday\":34668,\"Ġfuzzy\":34669,\"wash\":34670,\"mere\":34671,\"Ġbewild\":34672,\"ĠMae\":34673,\"Virgin\":34674,\"phrase\":34675,\"Ġsignaled\":34676,\"ĠHIGH\":34677,\"Ġprotester\":34678,\"Ġgarner\":34679,\"unknown\":34680,\"Ġkay\":34681,\"Ġabducted\":34682,\"Ġstalking\":34683,\"amn\":34684,\"Ġdeserving\":34685,\"ĠRiv\":34686,\"ĠJorge\":34687,\"Ġscratching\":34688,\"ĠSaving\":34689,\"iping\":34690,\"Ġtease\":34691,\"Ġmissionary\":34692,\"ĠMorrow\":34693,\"TIME\":34694,\"Present\":34695,\"Ġchemotherapy\":34696,\"terness\":34697,\"ĠHomes\":34698,\"ĠPurdue\":34699,\"Ġstaunch\":34700,\"ĠWhitney\":34701,\"ĠTHERE\":34702,\"Î¼\":34703,\"iatus\":34704,\"ĠErnest\":34705,\"ĠDeploy\":34706,\"Ġcoveted\":34707,\"FML\":34708,\"ĠDialogue\":34709,\"Ġexited\":34710,\"fruit\":34711,\"Ġnerd\":34712,\"\\\":\\\"\\\",\\\"\":34713,\"Ġvivo\":34714,\"ruly\":34715,\"460\":34716,\"ĠAmen\":34717,\"rehensible\":34718,\"Ġâĺ\":34719,\"DIR\":34720,\"Ġadherence\":34721,\"Ġchew\":34722,\"ĠCoke\":34723,\"ĠSergei\":34724,\"digital\":34725,\"ĠNeck\":34726,\"gently\":34727,\"enthal\":34728,\"/)\":34729,\"Ġweary\":34730,\"Ġguise\":34731,\"ĠConcord\":34732,\"ĠOnion\":34733,\"atcher\":34734,\"Ġbinge\":34735,\"ĠDirective\":34736,\"Ġmanned\":34737,\"ansk\":34738,\"Ġillusions\":34739,\"Ġbillionaires\":34740,\"383\":34741,\"olyn\":34742,\"odynamic\":34743,\"ĠWheat\":34744,\"ĠAlic\":34745,\"Ġcoloured\":34746,\"ĠNAFTA\":34747,\"abo\":34748,\"Ġmacros\":34749,\"independent\":34750,\"sweet\":34751,\"Ġspac\":34752,\"ĠKabul\":34753,\"ĠÄ\":34754,\"eme\":34755,\"Ġdictated\":34756,\"Ġshouts\":34757,\"={\":34758,\"Ġripping\":34759,\"ĠShay\":34760,\"ĠCricket\":34761,\"directed\":34762,\"Ġanalysed\":34763,\"ĠWARRANT\":34764,\"agons\":34765,\"ĠBlazers\":34766,\"Ġcheered\":34767,\"Ġarithmetic\":34768,\"ĠTanz\":34769,\"373\":34770,\"ĠFlags\":34771,\"Ġ295\":34772,\"Ġwitches\":34773,\"ĠIncluded\":34774,\"ĠGained\":34775,\"ĠBlades\":34776,\"Gam\":34777,\"ĠSamantha\":34778,\"ĠAtlantis\":34779,\"ĠPratt\":34780,\"Ġspoiled\":34781,\"ĠIB\":34782,\"ĠRamirez\":34783,\"Probably\":34784,\"rero\":34785,\"ĠNg\":34786,\"ĠWarlock\":34787,\"tp\":34788,\"Ġoverhe\":34789,\"Ġadministrations\":34790,\"Ġtint\":34791,\"Ġregiment\":34792,\"Ġpistols\":34793,\"Ġblankets\":34794,\"Ġepist\":34795,\"Ġbowls\":34796,\"Ġhydraulic\":34797,\"Ġdean\":34798,\"Ġjung\":34799,\"Ġascend\":34800,\"705\":34801,\"ĠSantiago\":34802,\"Ã®\":34803,\"Ġunavoid\":34804,\"ĠShaman\":34805,\"reb\":34806,\"Ġstemming\":34807,\"998\":34808,\"ĠMG\":34809,\"sticks\":34810,\"esthesia\":34811,\"ERO\":34812,\"Ġmorbid\":34813,\"ĠGrill\":34814,\"ĠPoe\":34815,\"anyl\":34816,\"Ġdeleting\":34817,\"ĠSurveillance\":34818,\"Ġdirectives\":34819,\"Ġiterations\":34820,\"ĠRox\":34821,\"ĠMilky\":34822,\"Father\":34823,\"Ġpatented\":34824,\"447\":34825,\"Ġprecursor\":34826,\"Ġmaiden\":34827,\"ĠPhen\":34828,\"ĠVegan\":34829,\"ĠPatent\":34830,\"Kelly\":34831,\"Redditor\":34832,\"Ġnods\":34833,\"Ġventilation\":34834,\"ĠSchwarz\":34835,\"Ġwizards\":34836,\"Ġominous\":34837,\"ĠHeads\":34838,\"ĠBG\":34839,\"Ġlumber\":34840,\"ĠSpiel\":34841,\"ĠisEnabled\":34842,\"Ġancestral\":34843,\"ĠShips\":34844,\"Ġwrestler\":34845,\"phi\":34846,\"Ġyuan\":34847,\"ĠRebellion\":34848,\"Ġiceberg\":34849,\"Ġmagically\":34850,\"Ġdiversion\":34851,\"arro\":34852,\"ythm\":34853,\"ĠRiders\":34854,\"ĠRobbie\":34855,\"ĠKara\":34856,\"ĠMaintenance\":34857,\"ĠHerb\":34858,\"Ġharms\":34859,\"packed\":34860,\"ĠFeinstein\":34861,\"Ġmarrying\":34862,\"Ġblending\":34863,\"ĠRates\":34864,\"Ġ1880\":34865,\"Ġwrink\":34866,\"ĠUnch\":34867,\"ĠTorch\":34868,\"described\":34869,\"Ġhumanoid\":34870,\"ilitating\":34871,\"ĠConv\":34872,\"ĠFeld\":34873,\"IGHTS\":34874,\"Ġwhistleblower\":34875,\"ortmund\":34876,\"etsy\":34877,\"arrett\":34878,\"ĠMono\":34879,\"ĠIke\":34880,\"ĠCNBC\":34881,\"ĠWAY\":34882,\"ĠMDMA\":34883,\"ĠIndividuals\":34884,\"Ġsupplemental\":34885,\"Ġpowerhouse\":34886,\"ĠStru\":34887,\"Focus\":34888,\"aphael\":34889,\"ĠColleg\":34890,\"atti\":34891,\"ZA\":34892,\"Ġperenn\":34893,\"ĠSignature\":34894,\"ĠRodney\":34895,\"Ġcubes\":34896,\"iddled\":34897,\"ĠDante\":34898,\"ĠINV\":34899,\"ilingual\":34900,\"ĠCth\":34901,\"Ġsofa\":34902,\"Ġintimidate\":34903,\"ĠRoe\":34904,\"ĠDiplom\":34905,\"ĠCountries\":34906,\"ayson\":34907,\"Ġextradition\":34908,\"Ġdisabling\":34909,\"ĠCardiff\":34910,\"Ġmemorandum\":34911,\"ĠTrace\":34912,\"Ġ???\":34913,\"sector\":34914,\"ĠRouhani\":34915,\"ĠYates\":34916,\"ĠFreeze\":34917,\"Ġbladder\":34918,\"Motor\":34919,\"ĠPromise\":34920,\"antasy\":34921,\"Ġforeseeable\":34922,\"ĠCologne\":34923,\"container\":34924,\"ĠTrees\":34925,\"ĠGors\":34926,\"ĠSinclair\":34927,\"Ġbarring\":34928,\"keye\":34929,\"Ġslashed\":34930,\"ĠStatistical\":34931,\"éĩ\":34932,\"Ġâĸº\":34933,\"Allows\":34934,\"Ġhumility\":34935,\"Ġdrilled\":34936,\"ĠFurn\":34937,\"443\":34938,\"Ġsewage\":34939,\"Ġhomepage\":34940,\"Ġcourtyard\":34941,\"Ġvile\":34942,\"Ġsubsidiaries\":34943,\"ajo\":34944,\"directory\":34945,\"Ġammon\":34946,\"Vers\":34947,\"charges\":34948,\"Ġ}}\":34949,\"ĠChains\":34950,\"Ġ246\":34951,\"nob\":34952,\"Ġpercept\":34953,\"Ġgrit\":34954,\"Ġfishermen\":34955,\"ĠIraqis\":34956,\"ĠDISTR\":34957,\"ĠFULL\":34958,\"ĠEvaluation\":34959,\"graph\":34960,\"atial\":34961,\"Ġcooperating\":34962,\"Ġmelan\":34963,\"Ġenlightened\":34964,\"Ġali\":34965,\"tailed\":34966,\"Ġsalute\":34967,\"Ġweakest\":34968,\"ĠBulldogs\":34969,\"UA\":34970,\"ĠAlloy\":34971,\"Ġsemen\":34972,\"ocene\":34973,\"ĠWilliamson\":34974,\"spr\":34975,\",âĢĶ\":34976,\"ĠGF\":34977,\"ittens\":34978,\"Beat\":34979,\"ĠJunk\":34980,\"iphate\":34981,\"ĠFarmers\":34982,\"ĠBitcoins\":34983,\"igers\":34984,\"dh\":34985,\"ĠLoyal\":34986,\"payer\":34987,\"Ġentertained\":34988,\"Ġpenned\":34989,\"Ġcoupon\":34990,\"Queue\":34991,\"Ġweakening\":34992,\"carry\":34993,\"Ġunderestimate\":34994,\"Ġshootout\":34995,\"Ġcharismatic\":34996,\"ĠProcedure\":34997,\"Ġprudent\":34998,\"inances\":34999,\"Ġriches\":35000,\"Ġcortical\":35001,\"Ġstrides\":35002,\"Ġdrib\":35003,\"ĠOilers\":35004,\"540\":35005,\"ĠPerform\":35006,\"ĠBangkok\":35007,\"Ġeuth\":35008,\"SER\":35009,\"Ġsimplistic\":35010,\"tops\":35011,\"campaign\":35012,\"Quality\":35013,\"Ġimpoverished\":35014,\"ĠEisenhower\":35015,\"Ġaugment\":35016,\"ĠHarden\":35017,\"Ġintervened\":35018,\"Ġlistens\":35019,\"ĠKok\":35020,\"Ġsage\":35021,\"Ġrubbish\":35022,\"ĠDed\":35023,\"Ġmull\":35024,\"pelling\":35025,\"Ġvideot\":35026,\"Production\":35027,\"DJ\":35028,\"miah\":35029,\"Ġadaptations\":35030,\"Ġmedically\":35031,\"Ġboarded\":35032,\"Ġarrogance\":35033,\"Ġscrapped\":35034,\"Ġoppress\":35035,\"FORMATION\":35036,\"Ġjunction\":35037,\"415\":35038,\"EEEE\":35039,\"Skill\":35040,\"Ġsubdu\":35041,\"ĠSuggest\":35042,\"ĠPett\":35043,\"Ġlett\":35044,\"ĠManip\":35045,\"ĠCaf\":35046,\"ĠCooperation\":35047,\"Ther\":35048,\"Ġregained\":35049,\"¶æ\":35050,\"reflect\":35051,\"Ġthugs\":35052,\"ĠShelby\":35053,\"Ġdictates\":35054,\"ĠWeiner\":35055,\"ĠHale\":35056,\"Ġbattleground\":35057,\"schild\":35058,\"Ġcondol\":35059,\"hunt\":35060,\"ositories\":35061,\"Ġaccuses\":35062,\"Filename\":35063,\"Ġshri\":35064,\"Ġmotivate\":35065,\"Ġreflections\":35066,\"Null\":35067,\"ĠLobby\":35068,\"¥µ\":35069,\"ĠSATA\":35070,\"ĠBackup\":35071,\"Ñĥ\":35072,\"nin\":35073,\"ĠCorrection\":35074,\"Ġjuicy\":35075,\"utra\":35076,\"ĠPric\":35077,\"Ġrestraining\":35078,\"ĠAirbnb\":35079,\"ĠArrest\":35080,\"Ġappropriations\":35081,\"Ġslopes\":35082,\"Ġmanslaughter\":35083,\"Ġworkings\":35084,\"ĠHuss\":35085,\"ĠFrey\":35086,\"Leave\":35087,\"ĠHarmony\":35088,\"ĠFeder\":35089,\"Ġ430\":35090,\"Ġtrench\":35091,\"Ġgladly\":35092,\"Ġbullpen\":35093,\"ĠGau\":35094,\"bones\":35095,\"Ġgroove\":35096,\"Ġpretext\":35097,\"ãħĭ\":35098,\"Ġtransmitter\":35099,\"ĠComponent\":35100,\"Ġunderage\":35101,\"ĠEmpires\":35102,\"Tile\":35103,\"Ġoy\":35104,\"ĠMarvin\":35105,\"ĠCAS\":35106,\"Ġbloss\":35107,\"Ġreplicated\":35108,\"ĠMariners\":35109,\"Marcus\":35110,\"ĠBlocks\":35111,\"Ġliberated\":35112,\"Ġbutterfly\":35113,\"Feel\":35114,\"Ġfermentation\":35115,\"Ġyoutube\":35116,\"Ġoffend\":35117,\"ĠTerm\":35118,\"resist\":35119,\"Ġcessation\":35120,\"Ġinsurgency\":35121,\"Ġbir\":35122,\"ĠRaise\":35123,\"595\":35124,\"Ġhypotheses\":35125,\"502\":35126,\"Ġplaque\":35127,\"ocrat\":35128,\"Ġjackets\":35129,\"ĠHuffPost\":35130,\"among\":35131,\"Ġconfer\":35132,\"487\":35133,\"ĠLilly\":35134,\"Ġadapting\":35135,\"ĠFay\":35136,\"Ġshoved\":35137,\"vec\":35138,\"Ġrefine\":35139,\"Ġgon\":35140,\"Ġgunmen\":35141,\"zai\":35142,\"ĠShuttle\":35143,\"ĠIzan\":35144,\"Ġ1913\":35145,\"Ġplethora\":35146,\"Â·Â·\":35147,\"Ġ510\":35148,\"Ġpuberty\":35149,\"Ġ241\":35150,\"ĠWealth\":35151,\"ĠAlma\":35152,\"ĠMEM\":35153,\"ĠAdults\":35154,\"Cas\":35155,\"prison\":35156,\"Race\":35157,\"Ġwaterproof\":35158,\"Ġathleticism\":35159,\"Ġcapitalize\":35160,\"ĠJuice\":35161,\"Ġilluminated\":35162,\"ĠPascal\":35163,\"Ġirritation\":35164,\"ĠWitnesses\":35165,\"adle\":35166,\"ĠAstro\":35167,\"Ġfax\":35168,\"ĠElvis\":35169,\"Primary\":35170,\"ĠLich\":35171,\"ĠElves\":35172,\"Ġresiding\":35173,\"Ġstumble\":35174,\"319\":35175,\"ĠPKK\":35176,\"Ġadversaries\":35177,\"DOS\":35178,\"ĠRitual\":35179,\"Ġsmear\":35180,\"Ġarson\":35181,\"idental\":35182,\"Ġscant\":35183,\"Ġmonarchy\":35184,\"Ġhalftime\":35185,\"Ġresidue\":35186,\"Ġindign\":35187,\"ĠShaun\":35188,\"ĠElm\":35189,\"auri\":35190,\"Aff\":35191,\"WATCH\":35192,\"ĠLyon\":35193,\"helps\":35194,\"361\":35195,\"Ġlobbyist\":35196,\"Ġdiminishing\":35197,\"Ġoutbreaks\":35198,\"Ġgoats\":35199,\"favorite\":35200,\"ĠNah\":35201,\"sonian\":35202,\"ĠBooster\":35203,\"Ġsandbox\":35204,\"ĠFare\":35205,\"ĠMalta\":35206,\"ĠattRot\":35207,\"ĠMOR\":35208,\"lde\":35209,\"Ġnavigating\":35210,\"Touch\":35211,\"Ġuntrue\":35212,\"ĠDisaster\":35213,\"Ġludicrous\":35214,\"Password\":35215,\"ĠJFK\":35216,\"blogspot\":35217,\"416\":35218,\"ĠUNDER\":35219,\"ernal\":35220,\"Ġdelaying\":35221,\"TOP\":35222,\"Ġimplants\":35223,\"ĠAVG\":35224,\"ĠHuge\":35225,\"attr\":35226,\"Ġjournalistic\":35227,\"ĠPeyton\":35228,\"ĠIA\":35229,\"Rap\":35230,\"goal\":35231,\"ĠProgramme\":35232,\"Ġsmashing\":35233,\"wives\":35234,\"println\":35235,\"ĠPlague\":35236,\"inus\":35237,\"EEP\":35238,\"Ġcruiser\":35239,\"ĠParish\":35240,\"uminium\":35241,\"Ġoccupants\":35242,\"ĠJihad\":35243,\"mop\":35244,\"Ġpint\":35245,\"Ġhect\":35246,\"ĠMecca\":35247,\"director\":35248,\"ĠFunding\":35249,\"ĠMixed\":35250,\"Ġstag\":35251,\"Tier\":35252,\"Ġgust\":35253,\"Ġbrightly\":35254,\"orsi\":35255,\"Ġuphill\":35256,\"RD\":35257,\"Ġlesions\":35258,\"ĠBundy\":35259,\"livious\":35260,\"Ġbiologist\":35261,\"ĠFaculty\":35262,\"ĠAuthorization\":35263,\"Ġ244\":35264,\"Allow\":35265,\"ï¸\":35266,\"ĠGiul\":35267,\"Ġpertinent\":35268,\"otaur\":35269,\"esse\":35270,\"ĠRoof\":35271,\"Ġunmanned\":35272,\"351\":35273,\"ĠShak\":35274,\"ĠOrient\":35275,\"Ġendanger\":35276,\"Dir\":35277,\"Ġreplen\":35278,\"edient\":35279,\"Ġtailor\":35280,\"Ġgadgets\":35281,\"Ġaudible\":35282,\"âĺĨ\":35283,\"Nice\":35284,\"Ġbombard\":35285,\"ĠRape\":35286,\"Ġdefiance\":35287,\"ĠTWO\":35288,\"ĠFilipino\":35289,\"Ġunaffected\":35290,\"ervatives\":35291,\"Ġsoared\":35292,\"ĠBolton\":35293,\"Ġcompromising\":35294,\"ĠBrewers\":35295,\"RAL\":35296,\"ĠAHL\":35297,\"icycle\":35298,\"Ġvampires\":35299,\"Ġdipped\":35300,\"oyer\":35301,\"ĠXIII\":35302,\"Ġsideways\":35303,\"ĠWaste\":35304,\"ĠDiss\":35305,\"ĠâĶľâĶĢâĶĢ\":35306,\"$.\":35307,\"Ġhabitats\":35308,\"ĠBeef\":35309,\"truth\":35310,\"trained\":35311,\"split\":35312,\"Rus\":35313,\"Andy\":35314,\"ĠBram\":35315,\"REP\":35316,\"pid\":35317,\"è£ħ\":35318,\"ĠMutant\":35319,\"Anim\":35320,\"ĠMarina\":35321,\"Ġfutile\":35322,\"highest\":35323,\"frequency\":35324,\"Ġepilepsy\":35325,\"Ġcoping\":35326,\"Ġconcise\":35327,\"Ġtracing\":35328,\"ĠSUN\":35329,\"panel\":35330,\"ĠSophie\":35331,\"ĠCrowley\":35332,\"ĠAdolf\":35333,\"ĠShooter\":35334,\"Ġshaky\":35335,\"ĠIG\":35336,\"ĠLies\":35337,\"ĠBarber\":35338,\"pkg\":35339,\"Ġuptake\":35340,\"Ġpredatory\":35341,\"ULTS\":35342,\"/**\":35343,\"Ġintoxicated\":35344,\"ĠWestbrook\":35345,\"odder\":35346,\"hement\":35347,\"Ġbaseman\":35348,\"APD\":35349,\"storage\":35350,\"ĠFifty\":35351,\"editor\":35352,\"GEN\":35353,\"UTION\":35354,\"irting\":35355,\"Ġsewing\":35356,\"rift\":35357,\"Ġagony\":35358,\"ĠSands\":35359,\"Ġ254\":35360,\"Cash\":35361,\"Ġlodge\":35362,\"Ġpunt\":35363,\"Natural\":35364,\"ĠIdeas\":35365,\"Ġerroneous\":35366,\"ĠSensor\":35367,\"ĠHannity\":35368,\"Ġ1921\":35369,\"Ġmould\":35370,\"ĠGon\":35371,\"kaya\":35372,\"Ġanonymously\":35373,\"ĠKEY\":35374,\"Ġsimulator\":35375,\"Winter\":35376,\"Ġstreamed\":35377,\"507\":35378,\"?\\\",\":35379,\"Ġteased\":35380,\"Ġcoefficient\":35381,\"Ġwartime\":35382,\"ĠTHR\":35383,\"''.\":35384,\"ĠBanking\":35385,\"mpire\":35386,\"Ġfandom\":35387,\"Ġlia\":35388,\"Ga\":35389,\"Ġdownhill\":35390,\"Ġinterpreting\":35391,\"Individual\":35392,\"Norm\":35393,\"Ġjealousy\":35394,\"bitcoin\":35395,\"Ġpleasures\":35396,\"ĠToys\":35397,\"ĠChevrolet\":35398,\"ĠAdvisor\":35399,\"IZE\":35400,\"Ġreceptions\":35401,\"706\":35402,\"Cro\":35403,\"Ġ262\":35404,\"Ġcitrus\":35405,\"iru\":35406,\"Reviewer\":35407,\"jected\":35408,\"UES\":35409,\"anz\":35410,\"1981\":35411,\"ĠWorker\":35412,\"Ġcomplied\":35413,\"orescent\":35414,\"continental\":35415,\"Ton\":35416,\"ĠPrism\":35417,\"ĠSheep\":35418,\"Ġ288\":35419,\"nox\":35420,\"ĠVog\":35421,\"Ord\":35422,\"Ġrealms\":35423,\"tek\":35424,\"Ġirrigation\":35425,\"Ġbicycles\":35426,\"Ġelectronically\":35427,\"poly\":35428,\"tall\":35429,\"());\":35430,\"Ġaesthetics\":35431,\"ĠIntegrated\":35432,\"Explore\":35433,\"Ġdunk\":35434,\"476\":35435,\"pain\":35436,\"ĠJacques\":35437,\"ĠDmit\":35438,\"Frames\":35439,\"Ġreunited\":35440,\"Ġhumid\":35441,\"Dro\":35442,\"Political\":35443,\"Ġyouthful\":35444,\"Ġentails\":35445,\"Ġmosquito\":35446,\"363\":35447,\"species\":35448,\"Ġcoordinating\":35449,\"ĠMayhem\":35450,\"ĠMagnus\":35451,\"Mount\":35452,\"Improved\":35453,\"ĠSTATE\":35454,\"ATTLE\":35455,\"Ġflowed\":35456,\"Ġtackled\":35457,\"Ġfashioned\":35458,\"Ġreorgan\":35459,\"ivari\":35460,\"finger\":35461,\"Ġreluctantly\":35462,\"etting\":35463,\"ĠVand\":35464,\"young\":35465,\"ĠGarland\":35466,\"Ġpresumption\":35467,\"Ġamenities\":35468,\"ĠPleasant\":35469,\"onential\":35470,\"ĠOxy\":35471,\"Ġmorals\":35472,\"ĠYah\":35473,\"Ready\":35474,\"Simon\":35475,\"Enh\":35476,\"Demon\":35477,\"Ġclich\":35478,\"Monitor\":35479,\"ĠDU\":35480,\"Ġwelcomes\":35481,\"Ġstandout\":35482,\"Ġdreadful\":35483,\"Ġbananas\":35484,\"Ġballoons\":35485,\"hooting\":35486,\"basic\":35487,\"Ġsuffix\":35488,\"Ġduly\":35489,\"cano\":35490,\"Chain\":35491,\"atos\":35492,\"Ġgeopolitical\":35493,\"Ġ(&\":35494,\"ĠGemini\":35495,\"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ\":35496,\"Ġacquitted\":35497,\"Luck\":35498,\"protect\":35499,\"1024\":35500,\"Ġscarcity\":35501,\"Ġmindfulness\":35502,\"ecided\":35503,\"DN\":35504,\"prime\":35505,\"ĠPresidents\":35506,\"ĠVIDEO\":35507,\"Ġ(âĪĴ\":35508,\"addock\":35509,\"NOR\":35510,\"ĠPru\":35511,\"pun\":35512,\"ĠLOL\":35513,\"))))\":35514,\"ĠLiqu\":35515,\"ĠSAS\":35516,\"Ġstyling\":35517,\"Ġpunishments\":35518,\"Ġnumb\":35519,\"Ġascertain\":35520,\"ĠRockies\":35521,\"flu\":35522,\"Thumbnail\":35523,\"Ġperpetrated\":35524,\"ĠSemi\":35525,\"Ġdisarm\":35526,\"ĠOlder\":35527,\"ĠException\":35528,\"Ġexponentially\":35529,\"ĠCommunities\":35530,\"Ġabolish\":35531,\"ĠPartner\":35532,\"ptoms\":35533,\"Ġ777\":35534,\"ĠFoley\":35535,\"ĠCases\":35536,\"Ġgrease\":35537,\"ĠRebirth\":35538,\"Ground\":35539,\"Ġ;)\":35540,\"ĠDoctrine\":35541,\"ikini\":35542,\"Ye\":35543,\"ĠBlossom\":35544,\"Ġpersists\":35545,\"bill\":35546,\"Ġinfusion\":35547,\"Ġbuddies\":35548,\"911\":35549,\"ĠPatient\":35550,\"Ġdemos\":35551,\"Ġacquaintance\":35552,\"ĠPaw\":35553,\"atari\":35554,\"Ġxml\":35555,\"Ġfascination\":35556,\"ĠServe\":35557,\"ÏĤ\":35558,\"branded\":35559,\"Ġaz\":35560,\"Returns\":35561,\"Ġovershadow\":35562,\"Ġroam\":35563,\"Ġspeedy\":35564,\"numbered\":35565,\"helial\":35566,\"Ġdisciple\":35567,\"Ġassurances\":35568,\"given\":35569,\"pecting\":35570,\"ĠNatalie\":35571,\"çĶ°\":35572,\"Ġmosquitoes\":35573,\"rotein\":35574,\"Ġnumeric\":35575,\"Ġindependents\":35576,\"Ġtransitional\":35577,\"Ġreactionary\":35578,\"ĠMechdragon\":35579,\"doctor\":35580,\"Ġshortest\":35581,\"Ġsequential\":35582,\"ĠBac\":35583,\"ĠAccounts\":35584,\"ãģĮ\":35585,\"achy\":35586,\"ractive\":35587,\"ĠRegiment\":35588,\"Ġbreathtaking\":35589,\"fficiency\":35590,\"ĠBates\":35591,\"Ġ311\":35592,\"Ġwardrobe\":35593,\"fts\":35594,\"ĠBerk\":35595,\"Simply\":35596,\"ĠRiverside\":35597,\"ivering\":35598,\"idential\":35599,\"lucent\":35600,\"Ġenriched\":35601,\"ĠConver\":35602,\"ĠGiving\":35603,\"ãĥĻ\":35604,\"Ġlegalize\":35605,\"ĠFTC\":35606,\"Ġfreaking\":35607,\"Mix\":35608,\"Ġterrestrial\":35609,\"esian\":35610,\"cients\":35611,\"Wing\":35612,\"LOAD\":35613,\"Ġledge\":35614,\"ĠViolent\":35615,\"ĠMetall\":35616,\"Ġ308\":35617,\"Ġsoutheastern\":35618,\"hetto\":35619,\"Meat\":35620,\"Ġslowdown\":35621,\"Ġretreated\":35622,\"Jeremy\":35623,\"endas\":35624,\"*****\":35625,\"eric\":35626,\"Ġreins\":35627,\"oppable\":35628,\"ĠHumanity\":35629,\"earances\":35630,\"rigan\":35631,\"Camera\":35632,\"Ġwaivers\":35633,\"soc\":35634,\"Ġalteration\":35635,\"transform\":35636,\"ĠCemetery\":35637,\"506\":35638,\"Ġindefinite\":35639,\"Ġstimulating\":35640,\"yg\":35641,\"603\":35642,\"ĠSop\":35643,\"Ġdescriptive\":35644,\"Phase\":35645,\"ĠEdmund\":35646,\"Ġpneumonia\":35647,\"ventus\":35648,\"Amb\":35649,\"Ġlaboratories\":35650,\"ĠExclusive\":35651,\"ugar\":35652,\"Were\":35653,\"Ġmalfunction\":35654,\"Ġhomosexuals\":35655,\"Ġ-------\":35656,\"uni\":35657,\"Ġturbines\":35658,\"ĠEquity\":35659,\"Du\":35660,\"Ġminded\":35661,\"ĠRH\":35662,\"ĠBlackhawks\":35663,\"Ġfeats\":35664,\"Ġ1700\":35665,\"repl\":35666,\"362\":35667,\"laden\":35668,\"Ġindispensable\":35669,\"lyss\":35670,\"tti\":35671,\"Ġreel\":35672,\"Ġdiverted\":35673,\"Ġlikeness\":35674,\"Ġsubscriptions\":35675,\"Ġfingert\":35676,\"Ġfilthy\":35677,\"destruct\":35678,\"draft\":35679,\"ĠBernardino\":35680,\"launch\":35681,\"Ġperplex\":35682,\"ĠSUM\":35683,\"carb\":35684,\"Ġsweater\":35685,\"ĠVenture\":35686,\"ĠJag\":35687,\"ĠCeleb\":35688,\"ĠVoters\":35689,\"Ġsteadfast\":35690,\"Ġathletics\":35691,\"ĠHanson\":35692,\"ĠDrac\":35693,\"Tracker\":35694,\"Ġcommend\":35695,\"ĠPresidency\":35696,\"ĠDID\":35697,\"informed\":35698,\"Ġwebpage\":35699,\"Pretty\":35700,\"Ġforcefully\":35701,\"ãĥĥãĤ¯\":35702,\"Ġrelocation\":35703,\"Ġsatire\":35704,\"âī\":35705,\"ĠSunderland\":35706,\"æĦ\":35707,\"Voice\":35708,\"????????\":35709,\"Ġinformant\":35710,\"Ġbowel\":35711,\"ĠUniform\":35712,\"Ġ...\\\"\":35713,\"Ġpurge\":35714,\"Ġpicnic\":35715,\"ĠUmb\":35716,\"ĠUPDATE\":35717,\"ĠSapphire\":35718,\"ĠStall\":35719,\"learn\":35720,\"Ġobjectively\":35721,\"Ġobliter\":35722,\"Ġloophole\":35723,\"Ġjourneys\":35724,\"Ġomission\":35725,\"Pros\":35726,\"ĠSidney\":35727,\"ploma\":35728,\"Ġsprayed\":35729,\"Ġguru\":35730,\"Ġtraitor\":35731,\"Ġtimet\":35732,\"Ġsnapping\":35733,\"ĠSevent\":35734,\"urnal\":35735,\"ĠUkip\":35736,\"Ġbowed\":35737,\"poral\":35738,\"liberal\":35739,\"Ros\":35740,\"Questions\":35741,\"iOS\":35742,\"Ġsummarize\":35743,\"STAT\":35744,\"Ġ1850\":35745,\"apest\":35746,\"Ġlender\":35747,\"ĠVariable\":35748,\"bringing\":35749,\"ĠLORD\":35750,\",)\":35751,\"Ġcollapses\":35752,\"xiety\":35753,\"ĠNed\":35754,\"YD\":35755,\"ĠScha\":35756,\"Ġantibody\":35757,\"Ġdisband\":35758,\"yre\":35759,\"illusion\":35760,\"Ġrover\":35761,\"shed\":35762,\"ĠHirosh\":35763,\"cci\":35764,\"Ġcalam\":35765,\"ĠMorton\":35766,\"Pinterest\":35767,\"Ġ1928\":35768,\"ĠEuras\":35769,\"ordes\":35770,\"Ġfences\":35771,\"ĠInventory\":35772,\"ĠValencia\":35773,\"ĠUd\":35774,\"ĠTiff\":35775,\"Ġsque\":35776,\"Ġquotation\":35777,\"Ġtroublesome\":35778,\"erker\":35779,\"QUEST\":35780,\"ĠKingdoms\":35781,\"south\":35782,\"Ġlevy\":35783,\"Prince\":35784,\"ĠSting\":35785,\"Ġnicknamed\":35786,\"Ġappe\":35787,\"Ġphotographic\":35788,\"Ġcorpus\":35789,\"reference\":35790,\"ĠTrog\":35791,\"Unt\":35792,\")=(\":35793,\"ĠLatvia\":35794,\"Ġactivating\":35795,\"Ġlicensee\":35796,\"Ġdisparities\":35797,\"ĠNewsletter\":35798,\"ãĥĥãĥĪ\":35799,\"Ġfreeing\":35800,\"ĠJeep\":35801,\"ĠPerception\":35802,\"insk\":35803,\"Ġsilicone\":35804,\"ĠHayden\":35805,\"Lean\":35806,\"ĠSuzuki\":35807,\"ibrarian\":35808,\"668\":35809,\"Ġspor\":35810,\"Ġcorrelations\":35811,\"aghetti\":35812,\"Ġtuber\":35813,\"ĠIPCC\":35814,\"ilus\":35815,\"ĠVu\":35816,\"Ġwealthiest\":35817,\"ĠCarbuncle\":35818,\"anza\":35819,\"Ġfooled\":35820,\"ĠZur\":35821,\"Ġdaddy\":35822,\"rano\":35823,\"ilian\":35824,\"Ġknockout\":35825,\"fman\":35826,\"required\":35827,\"ĠWikileaks\":35828,\"ĠDuffy\":35829,\"ONT\":35830,\"Ġinsol\":35831,\"ĠObjects\":35832,\"Ġbou\":35833,\"ĠNordic\":35834,\"ĠInsert\":35835,\"scan\":35836,\"Ġdancers\":35837,\"Ġidiots\":35838,\"majority\":35839,\"ĠNeville\":35840,\"ĠFreeBSD\":35841,\"Ġtart\":35842,\"panic\":35843,\"690\":35844,\"Ġcocoa\":35845,\"Ġsampled\":35846,\"Ġlookup\":35847,\"Indust\":35848,\"Ġinjections\":35849,\"genre\":35850,\"Ġau\":35851,\"Ġroadway\":35852,\"Ġgenitals\":35853,\"Kind\":35854,\"ĠExaminer\":35855,\"ĠYaz\":35856,\"Fresh\":35857,\"Ġparalysis\":35858,\"ĠAluminum\":35859,\"Ġreap\":35860,\"okÃ©\":35861,\"Ġsloppy\":35862,\"ĠTunnel\":35863,\"posium\":35864,\"nery\":35865,\"enic\":35866,\"Ġherbal\":35867,\"ĠOuter\":35868,\"ĠBuilder\":35869,\"Ġincur\":35870,\"Ġideologies\":35871,\"Ġbackups\":35872,\"consuming\":35873,\"ĠDetect\":35874,\"deck\":35875,\"ĠKNOW\":35876,\"ĠGret\":35877,\"ĠMIC\":35878,\"Ġtoughness\":35879,\"ĠExhibit\":35880,\"Ġhive\":35881,\"Les\":35882,\"ĠSCHOOL\":35883,\"ĠAtari\":35884,\"alde\":35885,\"ĠNull\":35886,\"andestine\":35887,\"mouse\":35888,\"Ġbrigade\":35889,\"489\":35890,\"Ġrevol\":35891,\"ĠLawson\":35892,\"ĠWah\":35893,\"opoly\":35894,\"ebted\":35895,\"ĠSaunders\":35896,\"Ġ313\":35897,\"ĠWinc\":35898,\"Ġtaboo\":35899,\"ĠHelmet\":35900,\"Ġwedge\":35901,\"chip\":35902,\"ĠTina\":35903,\"bg\":35904,\"Ġinfuri\":35905,\"rn\":35906,\"Ġanomalies\":35907,\"ĠSync\":35908,\"ĠExam\":35909,\"ĠCommit\":35910,\"ĠDiary\":35911,\"ĠALSO\":35912,\"ĠDebor\":35913,\"omedical\":35914,\"Ġcomprehension\":35915,\"655\":35916,\"Ġempowering\":35917,\"Ġire\":35918,\"Ġjuices\":35919,\"ĠETH\":35920,\"ĠBoxing\":35921,\"=\\\"/\":35922,\"Ġfacilitated\":35923,\"poke\":35924,\"ĠParsons\":35925,\"ĠModer\":35926,\"travel\":35927,\"Ġcivilizations\":35928,\"Ġlibertarians\":35929,\"Ġrune\":35930,\"ĠClarks\":35931,\"athed\":35932,\"Ġcampaigners\":35933,\"ĠDispatch\":35934,\"ĠFahrenheit\":35935,\"ĠCapcom\":35936,\"----------\":35937,\"Ġlace\":35938,\"Ġdraining\":35939,\"Ġliner\":35940,\"ĠArtificial\":35941,\"Ã©n\":35942,\"task\":35943,\"]).\":35944,\"ĠGMO\":35945,\"ĠOperator\":35946,\"ordinary\":35947,\"ĠInfluence\":35948,\"ĠUps\":35949,\"Ġpotency\":35950,\"ussen\":35951,\"ospons\":35952,\"ĠSwim\":35953,\"ĠDeadline\":35954,\"Unity\":35955,\"Ġculinary\":35956,\"Ġenlightenment\":35957,\"Ġwearer\":35958,\"Ġmined\":35959,\"Ġply\":35960,\"Ġincest\":35961,\"ĠDVDs\":35962,\"Walk\":35963,\"BTC\":35964,\"Trade\":35965,\"Ġdeval\":35966,\"iband\":35967,\"ĠOversight\":35968,\"Palestinian\":35969,\"Ġdart\":35970,\"Ġmul\":35971,\"LR\":35972,\"Ġremovable\":35973,\"ĠRealms\":35974,\"ìĿ\":35975,\"Ġmiscar\":35976,\"ĠVulkan\":35977,\"685\":35978,\"Ã¨re\":35979,\"ĠSap\":35980,\"Ġmerging\":35981,\"ĠCarly\":35982,\"chester\":35983,\"Ġbrisk\":35984,\"Ġluxurious\":35985,\"ĠGenerator\":35986,\"Ġbitterness\":35987,\"Ġedible\":35988,\"Ġ243\":35989,\"TG\":35990,\"Ġrectangle\":35991,\"WithNo\":35992,\"below\":35993,\"Jenn\":35994,\"Ġdarkest\":35995,\"Ġhitch\":35996,\"Ġdosage\":35997,\"Ġscaven\":35998,\"ĠKeller\":35999,\"ĠIllustrated\":36000,\"Certainly\":36001,\"ĠMavericks\":36002,\"Marginal\":36003,\"Ġdiarrhea\":36004,\"Ġenormously\":36005,\"Ġ999\":36006,\"shr\":36007,\"quart\":36008,\"Ġadamant\":36009,\"ĠMew\":36010,\"Ġrenovation\":36011,\"Ġcervical\":36012,\"ĠPercentage\":36013,\"eners\":36014,\"ĠKimber\":36015,\"Ġfloats\":36016,\"Ġdex\":36017,\"ĠWitcher\":36018,\"ĠSwansea\":36019,\"dm\":36020,\"Ġsalty\":36021,\"yellow\":36022,\"Ġcape\":36023,\"ĠDrain\":36024,\"ĠPaula\":36025,\"ĠToledo\":36026,\"lesi\":36027,\"Magazine\":36028,\"ĠWick\":36029,\"ĠMn\":36030,\"ĠAck\":36031,\"ĠRiding\":36032,\"ASON\":36033,\"Ġhomophobic\":36034,\"ARP\":36035,\"Ġwandered\":36036,\"CPU\":36037,\"oodoo\":36038,\"ĠPipe\":36039,\"Ġtightening\":36040,\"ĠButt\":36041,\"318\":36042,\"Ġdeserted\":36043,\"Session\":36044,\"Ġfacilitating\":36045,\"Jump\":36046,\"Ġemergencies\":36047,\"OWER\":36048,\"Ġexhaustive\":36049,\"ĠAFTER\":36050,\"Ġheartbeat\":36051,\"ĠLabel\":36052,\"acky\":36053,\"ĠCertified\":36054,\"iltration\":36055,\"Ze\":36056,\"ĠUtt\":36057,\"Ġ1300\":36058,\"Ġpresume\":36059,\"ĠDisp\":36060,\"Ġsurged\":36061,\"Ġdolls\":36062,\"Columb\":36063,\"Ġchimpan\":36064,\"ĠRazor\":36065,\"Ġticks\":36066,\"Ġcouncillor\":36067,\"Ġpilgrimage\":36068,\"ĠRebels\":36069,\"ĠQC\":36070,\"ĠAuction\":36071,\"xia\":36072,\"ikk\":36073,\"bred\":36074,\"Ġinsertion\":36075,\"Ġcoarse\":36076,\"dB\":36077,\"SEE\":36078,\"ĠZap\":36079,\"ĠFoo\":36080,\"Ġcontempor\":36081,\"ĠQuarterly\":36082,\"otions\":36083,\"ĠAlchemist\":36084,\"ĠTrey\":36085,\"ĠDuo\":36086,\"Sweet\":36087,\"804\":36088,\"ĠGiov\":36089,\"Ġfunn\":36090,\"Nin\":36091,\"hoff\":36092,\"Ġramifications\":36093,\"Ġ1922\":36094,\"ĠExperts\":36095,\"azes\":36096,\"Ġgarments\":36097,\"arial\":36098,\"ĠNab\":36099,\"Ġ257\":36100,\"ĠVed\":36101,\"Ġhumorous\":36102,\"ĠPompe\":36103,\"Ġnylon\":36104,\"Ġlurking\":36105,\"ĠSergey\":36106,\"ĠMattis\":36107,\"Ġmisogyny\":36108,\"ĠComponents\":36109,\"ĠWatching\":36110,\"ĠFolk\":36111,\"ractical\":36112,\"Bush\":36113,\"Ġtaped\":36114,\"Ġgrouping\":36115,\"Ġbeads\":36116,\"Ġ2048\":36117,\"Ġcondu\":36118,\"querque\":36119,\"Reading\":36120,\"Ġgrievances\":36121,\"Ultra\":36122,\"Ġendpoint\":36123,\"Hig\":36124,\"ĠStatic\":36125,\"ĠScarborough\":36126,\"Lua\":36127,\"ĠMessi\":36128,\"aqu\":36129,\"ĠPsyNet\":36130,\"ĠRudd\":36131,\"Ġavenue\":36132,\"vp\":36133,\"Jer\":36134,\"Ġshady\":36135,\"ĠResist\":36136,\"ĠArtemis\":36137,\"Ġcareless\":36138,\"Ġbrokers\":36139,\"Ġtemperament\":36140,\"Ġ520\":36141,\"Tags\":36142,\"ĠTurning\":36143,\"Ġuttered\":36144,\"Ġpedd\":36145,\"Ġimprovised\":36146,\"Ġ:(\":36147,\"Ġtabl\":36148,\"Ġplains\":36149,\"1600\":36150,\"pressure\":36151,\"ĠEssence\":36152,\"margin\":36153,\"friends\":36154,\"ĠRestoration\":36155,\"Ġpollut\":36156,\"ĠPoker\":36157,\"ĠAugustine\":36158,\"ĠCIS\":36159,\"ĠSEAL\":36160,\"orama\":36161,\"Ġthwart\":36162,\"seek\":36163,\"Ġpagan\":36164,\"Âº\":36165,\"cpu\":36166,\"Ġgarn\":36167,\"Ġassortment\":36168,\"ĠILCS\":36169,\"tower\":36170,\"Recommended\":36171,\"Ġunborn\":36172,\"ĠRandomRedditor\":36173,\"ĠRandomRedditorWithNo\":36174,\"Ġparalyzed\":36175,\"Ġeruption\":36176,\"Ġintersect\":36177,\"ĠStoke\":36178,\"ĠSco\":36179,\"Bind\":36180,\"å¾\":36181,\"ĠPNG\":36182,\"ĠNegative\":36183,\"ĠNOAA\":36184,\"Leon\":36185,\"Ġalloy\":36186,\"ĠLama\":36187,\"ĠDiversity\":36188,\"575\":36189,\"Ġunderestimated\":36190,\"ĠScor\":36191,\"Ġmural\":36192,\"Ġbusted\":36193,\"soon\":36194,\"lif\":36195,\"Ġnonex\":36196,\"Ġallergy\":36197,\"ĠUnderworld\":36198,\"ĠRays\":36199,\"ĠBlasio\":36200,\"Ġhrs\":36201,\"ĠDir\":36202,\"Ġ327\":36203,\"byter\":36204,\"Ġreplacements\":36205,\"Ġactivates\":36206,\"rived\":36207,\"MH\":36208,\"Ġpans\":36209,\"ĠHI\":36210,\"Ġlongitudinal\":36211,\"Ġnuisance\":36212,\"aler\":36213,\"Ġswell\":36214,\"ĠSigned\":36215,\"sci\":36216,\"ĠIsles\":36217,\"ĠAGA\":36218,\"Ġdefiant\":36219,\"Ġsonic\":36220,\"ocon\":36221,\"KC\":36222,\"ĠAim\":36223,\"tie\":36224,\"ahah\":36225,\"ĠmL\":36226,\"DX\":36227,\"Ġbisc\":36228,\"ĠBillboard\":36229,\"ĠSYSTEM\":36230,\"NEY\":36231,\"gaard\":36232,\"Ġdistressed\":36233,\"formerly\":36234,\"Alan\":36235,\"Ġchefs\":36236,\"Ġoptics\":36237,\"ĠComet\":36238,\"ĠAMC\":36239,\"Ġredesigned\":36240,\"irmation\":36241,\"Ġsightings\":36242,\"382\":36243,\"311\":36244,\"ĠWB\":36245,\"Ġcontraction\":36246,\"ĠTOTAL\":36247,\"Dual\":36248,\"Ġstartled\":36249,\"Ġunderstandably\":36250,\"Ġsunglasses\":36251,\"ETHOD\":36252,\"Ġdocker\":36253,\"Ġsurfing\":36254,\"ĠHEL\":36255,\"ĠSlack\":36256,\"tones\":36257,\"Ġshalt\":36258,\"Visual\":36259,\"498\":36260,\"Department\":36261,\"cussion\":36262,\"Ġunrestricted\":36263,\"Ġtad\":36264,\"Ġrename\":36265,\"employed\":36266,\"Ġeducating\":36267,\"Ġgrinned\":36268,\"bedroom\":36269,\"ĠActivities\":36270,\"ĠVelvet\":36271,\"ĠSWAT\":36272,\"Ġshuffle\":36273,\"igor\":36274,\"Ġsaturation\":36275,\"Finding\":36276,\"cream\":36277,\"icter\":36278,\"Ġvodka\":36279,\"tracking\":36280,\"tec\":36281,\"Ġforeground\":36282,\"iesta\":36283,\"Ġvehement\":36284,\"ĠECB\":36285,\"ĠTie\":36286,\"Ey\":36287,\"Ġturtles\":36288,\"ĠRailroad\":36289,\"ĠKatz\":36290,\"ĠFrames\":36291,\"Ġmenace\":36292,\"ĠFellowship\":36293,\"ĠEssential\":36294,\"uggish\":36295,\"Ġdrip\":36296,\"chwitz\":36297,\"ĠKyoto\":36298,\"sb\":36299,\"ĠNina\":36300,\"Parameter\":36301,\"Ġalarms\":36302,\"ĠClaud\":36303,\"Ġpioneering\":36304,\"Ġchiefly\":36305,\"ĠScream\":36306,\"Collection\":36307,\"Ġthankfully\":36308,\"ĠRonaldo\":36309,\"åŃĲ\":36310,\"strip\":36311,\"ĠDisneyland\":36312,\"commercial\":36313,\"Seeing\":36314,\"Soul\":36315,\"Ġevacuate\":36316,\"Ġciv\":36317,\"ĠAshe\":36318,\"Ġdivides\":36319,\"ĠDagger\":36320,\"rehensive\":36321,\"Ġberries\":36322,\"ĠDF\":36323,\"Ġsushi\":36324,\"Ġplurality\":36325,\"WI\":36326,\"Ġdisadvantaged\":36327,\"Ġbattalion\":36328,\"obiles\":36329,\"451\":36330,\"Ġcling\":36331,\"Ġundeniable\":36332,\"ĠLounge\":36333,\"Ġhaunt\":36334,\"phe\":36335,\"Ġquantify\":36336,\"Ġdiffered\":36337,\"Ġ[*]\":36338,\"ĠViz\":36339,\"cum\":36340,\"slave\":36341,\"Ġvideog\":36342,\"Ġquar\":36343,\"Ġbundles\":36344,\"ĠAlonso\":36345,\"tackle\":36346,\"Ġneuronal\":36347,\"Ġlandslide\":36348,\"confirmed\":36349,\"ĠDepth\":36350,\"Ġrenewables\":36351,\"Bear\":36352,\"ĠMacedonia\":36353,\"Ġjerseys\":36354,\"Ġbunk\":36355,\"ĠSpawn\":36356,\"ĠControls\":36357,\"ĠBuchanan\":36358,\"Ġrobotics\":36359,\"Ġemphasizing\":36360,\"ĠTutorial\":36361,\"hyp\":36362,\"iston\":36363,\"Ġmonumental\":36364,\"æ°\":36365,\"ĠCarry\":36366,\"Ġtbsp\":36367,\"enance\":36368,\"Hill\":36369,\"arthed\":36370,\"Ġrotten\":36371,\"Dean\":36372,\"Ġtwisting\":36373,\"Ġgoodwill\":36374,\"Ġimmersion\":36375,\"Living\":36376,\"Ġbrushes\":36377,\"ĠCGI\":36378,\"ĠAtk\":36379,\"traditional\":36380,\"Ġphantom\":36381,\"ĠStamina\":36382,\"Ġexpansions\":36383,\"ĠMarin\":36384,\"Ġembarked\":36385,\"ĠEg\":36386,\"intestinal\":36387,\"ĠPEOPLE\":36388,\"ĠBooth\":36389,\"ĠAppalach\":36390,\"Ġrelegated\":36391,\"VT\":36392,\"MIT\":36393,\"Ġmuster\":36394,\"Ġwithdrawing\":36395,\"Ġmicroscope\":36396,\"ĠGathering\":36397,\"ĠCrescent\":36398,\"ĠArgentine\":36399,\"ĠDecre\":36400,\"ĠDominic\":36401,\"Ġbuds\":36402,\"antage\":36403,\"ĠIon\":36404,\"Ġwidened\":36405,\"ONSORED\":36406,\"ĠGloves\":36407,\"iannopoulos\":36408,\"razen\":36409,\"feel\":36410,\"Ġrepayment\":36411,\"Ġhindsight\":36412,\"ĠREALLY\":36413,\"ĠPistol\":36414,\"ĠBrah\":36415,\"Ġwatts\":36416,\"Ġsurvives\":36417,\"Ġflurry\":36418,\"issy\":36419,\"Alert\":36420,\"ĠUruguay\":36421,\"Phoenix\":36422,\"Slow\":36423,\"ĠGrave\":36424,\"ĠFir\":36425,\"Ġmanageable\":36426,\"Ġtariff\":36427,\"ĠUDP\":36428,\"ĠPistons\":36429,\"ĠNigerian\":36430,\"Ġstrikeouts\":36431,\"Ġcosmetics\":36432,\"whelming\":36433,\"fab\":36434,\"cape\":36435,\"proxy\":36436,\"Ġrethink\":36437,\"Ġovercoming\":36438,\"simple\":36439,\"Ġwoo\":36440,\"Ġdistracting\":36441,\"ĠStanton\":36442,\"ĠTulsa\":36443,\"ĠDock\":36444,\"659\":36445,\"Ġdiscord\":36446,\"ĠEmacs\":36447,\"ĠVes\":36448,\"ĠROB\":36449,\"Ġreassuring\":36450,\"Ġconsortium\":36451,\"Muslims\":36452,\"321\":36453,\"Ġprompts\":36454,\"sei\":36455,\"ĠHitch\":36456,\"imposed\":36457,\"ĠFool\":36458,\"Ġindiscrim\":36459,\"wrong\":36460,\"buquerque\":36461,\"Davis\":36462,\"!]\":36463,\"Ġtimeless\":36464,\"ĠNEED\":36465,\"Ġpesticide\":36466,\"Ġrallying\":36467,\"ĠCalder\":36468,\"Ġå¤\":36469,\"Ġxp\":36470,\"ĠUnle\":36471,\"ĠExport\":36472,\"luaj\":36473,\"Buff\":36474,\")</\":36475,\"Boot\":36476,\"ĠChrysler\":36477,\"orative\":36478,\"Mess\":36479,\"Ġnegligible\":36480,\"ertodd\":36481,\"ĠMushroom\":36482,\"ĠGale\":36483,\"gc\":36484,\"ĠCosby\":36485,\"ĠRural\":36486,\"ritical\":36487,\"Bell\":36488,\"Ġturbine\":36489,\"00200000\":36490,\"Ġlegitimately\":36491,\"ĠAnimated\":36492,\"TED\":36493,\"ĠTheodore\":36494,\"conduct\":36495,\"ĠHier\":36496,\"Ġcounterfeit\":36497,\"ĠAlgeria\":36498,\"Ġunbeat\":36499,\"controller\":36500,\"Ġunres\":36501,\"Ġscrambling\":36502,\"ĠFallon\":36503,\"Tes\":36504,\"Ġamber\":36505,\"Ġroyalties\":36506,\"ĠShelter\":36507,\"ĠLester\":36508,\"Ġclassify\":36509,\"Remote\":36510,\"Ġunheard\":36511,\"Ġcontroversies\":36512,\"Ġenrichment\":36513,\"ĠYankee\":36514,\"gamer\":36515,\"Ġplatinum\":36516,\"Ġecology\":36517,\"ĠSark\":36518,\"Ġuntouched\":36519,\"Ġsupervisors\":36520,\"Ġ\\\"%\":36521,\"Ġfooth\":36522,\"Ġcommons\":36523,\"Ġnarcotics\":36524,\"Ġindices\":36525,\"ĠPly\":36526,\"Ġadditionally\":36527,\"ĠGawker\":36528,\"ĠEQ\":36529,\"Playing\":36530,\"Ġcaveat\":36531,\"ĠAbsolute\":36532,\"ossus\":36533,\"Baby\":36534,\"Ġration\":36535,\"Ġresin\":36536,\"Ġcalibration\":36537,\"ĠNewport\":36538,\"Ġknocks\":36539,\"vt\":36540,\"Ġcompost\":36541,\"Scene\":36542,\"Ġsarcast\":36543,\"Ġkisses\":36544,\"Ġns\":36545,\"alli\":36546,\"ĠMarcel\":36547,\"ĠPiet\":36548,\"iatrics\":36549,\"Ġsurrounds\":36550,\"ĠReprodu\":36551,\"ĠPhillies\":36552,\"Ġuncertainties\":36553,\"ĠEur\":36554,\"ĠRomance\":36555,\"ĠHath\":36556,\"ĠNeeds\":36557,\"ĠCloak\":36558,\"Ġcrem\":36559,\"queue\":36560,\"Ġ355\":36561,\"Ġupfront\":36562,\"]);\":36563,\"Ġreciproc\":36564,\"Ġ1927\":36565,\"Ġ1100\":36566,\"utsu\":36567,\"Ġdepressive\":36568,\"owment\":36569,\"Fans\":36570,\"Ġmech\":36571,\"Ġannihil\":36572,\"Ġcounterterrorism\":36573,\"ĠFigures\":36574,\"bold\":36575,\"ĠMoines\":36576,\"ĠDrivers\":36577,\"Ġmanuscripts\":36578,\"ĠCrypto\":36579,\"Ġhypnot\":36580,\"reddits\":36581,\"Ġprosecutions\":36582,\"Ġdivert\":36583,\"CRIP\":36584,\"ĠBene\":36585,\"ĠReggie\":36586,\"Ġtaxing\":36587,\"ĠMorales\":36588,\"enting\":36589,\"tur\":36590,\"significant\":36591,\"ĠPROV\":36592,\"Ġstrands\":36593,\"Ġpouch\":36594,\"ĠRookie\":36595,\"»Ĵ\":36596,\"Ġnicer\":36597,\"hemy\":36598,\"hw\":36599,\"ECA\":36600,\"Ġintimidated\":36601,\"Ġstricter\":36602,\"Ġmicrobial\":36603,\"details\":36604,\"Ġvows\":36605,\"Ġquake\":36606,\"hhhh\":36607,\"Ġreinvent\":36608,\"Ub\":36609,\"Ġrelinqu\":36610,\"ĠBuffett\":36611,\"licensed\":36612,\"ittered\":36613,\"ĠPicard\":36614,\"Ġchewing\":36615,\"ucl\":36616,\"organic\":36617,\"Ġlocalized\":36618,\"ĠEconomist\":36619,\"Ġacquainted\":36620,\"Definition\":36621,\"sed\":36622,\"Critics\":36623,\"Ġcc\":36624,\"453\":36625,\"381\":36626,\"Ġfellows\":36627,\"Ġcheckpoints\":36628,\"025\":36629,\"Ġreelection\":36630,\"Ġmediated\":36631,\"ĠKDE\":36632,\"Ġhurdle\":36633,\"Ġtexting\":36634,\"Perfect\":36635,\"Ġtrustees\":36636,\"fecture\":36637,\"Ġdich\":36638,\"monary\":36639,\"Ġdistinctions\":36640,\"Ġ1400\":36641,\"Ġusher\":36642,\"Ġparasites\":36643,\"ĠSharing\":36644,\"ĠVim\":36645,\"Ġbarbecue\":36646,\"ĠMinisters\":36647,\"erella\":36648,\"Ġeb\":36649,\"Ġmc\":36650,\"ĠSomehow\":36651,\"ĠInsect\":36652,\"changes\":36653,\"broad\":36654,\"ĠByz\":36655,\"Ġgrapes\":36656,\"669\":36657,\"Ġ=================\":36658,\"Ġassimil\":36659,\"Ġhaunting\":36660,\"Ġfirepower\":36661,\"Ġdefamation\":36662,\"emphasis\":36663,\"Ġcompose\":36664,\"Ġallergies\":36665,\"Ġstrang\":36666,\"rollers\":36667,\"bang\":36668,\"Ġbrewers\":36669,\"rongh\":36670,\"riot\":36671,\"poor\":36672,\"cold\":36673,\"Sample\":36674,\"Ġbuoy\":36675,\"040\":36676,\"ĠCourtney\":36677,\"Ġ268\":36678,\"ĠWedding\":36679,\"702\":36680,\"Ġobsessive\":36681,\"Ġbraking\":36682,\"ĠLal\":36683,\"anical\":36684,\"å¦\":36685,\"aten\":36686,\"Construction\":36687,\"Ġclinically\":36688,\"iership\":36689,\"Names\":36690,\"ĠDiscuss\":36691,\"ĠRamos\":36692,\"Ġlocale\":36693,\"ĠAgricultural\":36694,\"Enable\":36695,\"Ġhorsepower\":36696,\"enture\":36697,\"Pref\":36698,\"Court\":36699,\"Ġstaffing\":36700,\"Ġfuturistic\":36701,\"drivers\":36702,\"ĠMarketplace\":36703,\"æĪ¦\":36704,\"Friends\":36705,\"Ġdamning\":36706,\"ĠCustomers\":36707,\"Ġweeds\":36708,\"ĠMai\":36709,\"Ġagile\":36710,\"ĠTatt\":36711,\"icent\":36712,\"Ranked\":36713,\"croft\":36714,\"ĠKaty\":36715,\"Extreme\":36716,\"Ġcarve\":36717,\"ĠRover\":36718,\"ĠByron\":36719,\"372\":36720,\"Ġconducts\":36721,\"ratch\":36722,\"itia\":36723,\"ĠPumpkin\":36724,\"Sadly\":36725,\"Reloaded\":36726,\"Policy\":36727,\"Ġlick\":36728,\"peak\":36729,\"isks\":36730,\"ĠCDs\":36731,\"ĠEncyclopedia\":36732,\"initial\":36733,\"Cos\":36734,\"ĠAwareness\":36735,\"ĠDram\":36736,\"$$$$\":36737,\"Ġriff\":36738,\"Ġscripture\":36739,\"runners\":36740,\"Ġboiler\":36741,\"onson\":36742,\"oin\":36743,\"Ġhamstring\":36744,\"Ġcataly\":36745,\"ĠArchbishop\":36746,\"chall\":36747,\"Ġfaux\":36748,\"okin\":36749,\"localhost\":36750,\"ĠNAME\":36751,\"adobe\":36752,\"SAN\":36753,\"amate\":36754,\"Ġscramble\":36755,\"Ġcarc\":36756,\"ĠManifest\":36757,\"ĠCedar\":36758,\"ĠSergio\":36759,\"later\":36760,\"ffer\":36761,\"Ġgrappling\":36762,\"ĠDeutsche\":36763,\"agonists\":36764,\"ĠNewsp\":36765,\"Ġpretended\":36766,\"archment\":36767,\"Ġcurated\":36768,\"Ġheadphone\":36769,\"ĠUncommon\":36770,\"ĠSIGN\":36771,\"Agent\":36772,\"Ġdeadlines\":36773,\"Ġhorizontally\":36774,\"ĠMAT\":36775,\"ĠSummers\":36776,\"Ġordained\":36777,\"ĠLastly\":36778,\"ĠKendall\":36779,\"Ġfrig\":36780,\"ĠMachina\":36781,\"ĠWaterloo\":36782,\"ĠMexicans\":36783,\"Ġprotector\":36784,\"Ġglare\":36785,\"}\\\"\":36786,\"Premium\":36787,\"Ġrift\":36788,\"ĠTelescope\":36789,\"Metal\":36790,\"Ġrecapt\":36791,\"Ġ;;\":36792,\"Ġinclination\":36793,\"Ġimposes\":36794,\"ingen\":36795,\"^{\":36796,\"Ġhaste\":36797,\"Ġdolphins\":36798,\"Ġcommuters\":36799,\"planned\":36800,\"cong\":36801,\"mx\":36802,\"ĠUpload\":36803,\"Ġextrap\":36804,\"ĠTucson\":36805,\"ĠExploration\":36806,\"efeated\":36807,\"Ġslender\":36808,\"703\":36809,\"ĠBuk\":36810,\"isel\":36811,\"Ġcompetitiveness\":36812,\"chlor\":36813,\"ĠPermanent\":36814,\"ĠEverett\":36815,\"ĠSpecialist\":36816,\"ĠSOL\":36817,\"Ġcyan\":36818,\"ĠExactly\":36819,\"UF\":36820,\"ĠLIFE\":36821,\"aryl\":36822,\"onet\":36823,\"ĠEmployee\":36824,\"awed\":36825,\"ĠRatings\":36826,\"Ġextravag\":36827,\"ulhu\":36828,\"ĠPlane\":36829,\"Ġelevate\":36830,\"ĠCoordinator\":36831,\"ĠWatkins\":36832,\"Ġexcludes\":36833,\"Ġsentient\":36834,\"Ġepoch\":36835,\"Ġalloc\":36836,\"Previously\":36837,\"ĠShy\":36838,\"ĠSlovakia\":36839,\"LOCK\":36840,\"Ġmarkedly\":36841,\"Ġknob\":36842,\"Ġadventurers\":36843,\"ĠBeen\":36844,\"ĠCosts\":36845,\"ammers\":36846,\"Ġonslaught\":36847,\"ĠSupported\":36848,\"ĠTau\":36849,\"ikarp\":36850,\"ĠSovere\":36851,\"ĠHampton\":36852,\"ãĤī\":36853,\"Prev\":36854,\"ĠWorse\":36855,\"Ġcottage\":36856,\"ĠHades\":36857,\"lez\":36858,\"bowl\":36859,\"Ġfragrance\":36860,\"ĠLok\":36861,\"EMOTE\":36862,\"ĠPetro\":36863,\"Ġ1925\":36864,\"ĠPend\":36865,\"producing\":36866,\"Ġrelocate\":36867,\"vati\":36868,\"pole\":36869,\"Ġsemin\":36870,\"ĠNUM\":36871,\"Ġrocked\":36872,\"buff\":36873,\"bly\":36874,\"Reply\":36875,\"ĠHai\":36876,\"Ġarticulated\":36877,\"ĠIslamabad\":36878,\"665\":36879,\"ĠClaims\":36880,\"Desktop\":36881,\"Ġtrustee\":36882,\"Ġscripting\":36883,\"ĠSob\":36884,\"ĠAsylum\":36885,\"STDOUT\":36886,\"ĠClown\":36887,\"ĠDortmund\":36888,\"ĠDevon\":36889,\"lite\":36890,\"ĠMarble\":36891,\"Ġbunker\":36892,\"Ġcrest\":36893,\"Ġarousal\":36894,\"ĠSears\":36895,\"ĠBuddy\":36896,\"eredith\":36897,\"ĠPolly\":36898,\"Ġdecode\":36899,\"ĠVish\":36900,\"ĠReflect\":36901,\"anon\":36902,\"Ġrefunds\":36903,\"immers\":36904,\"HM\":36905,\"Ġwiping\":36906,\"Ġpuzzled\":36907,\"Ġmatte\":36908,\"uno\":36909,\"Pierre\":36910,\")),\":36911,\"Ġtainted\":36912,\"Ġsymbolism\":36913,\"ĠFraz\":36914,\"Ġprotestors\":36915,\"etheus\":36916,\"%%%%\":36917,\"Wra\":36918,\"Ġlax\":36919,\"adem\":36920,\"aturation\":36921,\"ãĥĵ\":36922,\"ĠTrailer\":36923,\"ĠENG\":36924,\"ĠBowser\":36925,\"Ġattm\":36926,\"Dur\":36927,\"807\":36928,\"Ġsidx\":36929,\"Ġcider\":36930,\"ĠAffect\":36931,\"Ġwoven\":36932,\"ĠBarker\":36933,\"benef\":36934,\"Ġdstg\":36935,\"ĠRyu\":36936,\">[\":36937,\"Ġsqor\":36938,\"Saudi\":36939,\"Ġistg\":36940,\"Ġindulge\":36941,\"proc\":36942,\"Ġdisgusted\":36943,\"Ġcompounded\":36944,\"Ġnem\":36945,\"Ġschooling\":36946,\"ĠCure\":36947,\"processing\":36948,\"Sol\":36949,\"Ġproverb\":36950,\"itized\":36951,\"ĠAlvarez\":36952,\"Ġscarf\":36953,\"Ġrectangular\":36954,\"reve\":36955,\"Ġhormonal\":36956,\"ĠStress\":36957,\"itizen\":36958,\"Ġ425\":36959,\"girls\":36960,\"ĠNoir\":36961,\"ĠRapp\":36962,\"Ġmarches\":36963,\"church\":36964,\"ĠUses\":36965,\"Ġ405\":36966,\"ĠBerm\":36967,\"Ġordinances\":36968,\"ĠJudgment\":36969,\"Charges\":36970,\"ĠZin\":36971,\"Ġdusty\":36972,\"Ġstrawberries\":36973,\"Ġperce\":36974,\"ĠThur\":36975,\"ĠDeborah\":36976,\"netflix\":36977,\"ĠLambert\":36978,\"Ġamused\":36979,\"ĠGuang\":36980,\"YOU\":36981,\"RGB\":36982,\"ĠCCTV\":36983,\"Ġfiat\":36984,\"rang\":36985,\"Ġfederation\":36986,\"ĠMant\":36987,\"ĠBust\":36988,\"ĠMare\":36989,\"respective\":36990,\"ĠMigration\":36991,\"ĠBIT\":36992,\"590\":36993,\"Ġpatriotism\":36994,\"Ġoutlining\":36995,\"region\":36996,\"ĠJosÃ©\":36997,\"Ġblasting\":36998,\"ĠEzra\":36999,\"Bs\":37000,\"Ġundermines\":37001,\"ĠSmooth\":37002,\"Ġclashed\":37003,\"radio\":37004,\"Ġtransitioning\":37005,\"ĠBuccaneers\":37006,\"ĠOwl\":37007,\"Ġplugs\":37008,\"Ġhiatus\":37009,\"ĠPinball\":37010,\"Ġmig\":37011,\"ĠNutr\":37012,\"ĠWolfe\":37013,\"Ġintegers\":37014,\"Ġorbits\":37015,\"ĠEdwin\":37016,\"ĠDirectX\":37017,\"bite\":37018,\"Ġblazing\":37019,\"vr\":37020,\"Edge\":37021,\"ĠPID\":37022,\"exit\":37023,\"ĠComed\":37024,\"ĠPathfinder\":37025,\"ĠGuid\":37026,\"ĠSigns\":37027,\"ĠZer\":37028,\"ĠAgenda\":37029,\"Ġreimbursement\":37030,\"Mesh\":37031,\"iPhone\":37032,\"ĠMarcos\":37033,\"ĠSites\":37034,\"hate\":37035,\"enburg\":37036,\"Ġsockets\":37037,\"pend\":37038,\"Batman\":37039,\"vir\":37040,\"ĠSHOW\":37041,\"Ġprovisional\":37042,\"conn\":37043,\"ĠDeaths\":37044,\"ATIVE\":37045,\"Profile\":37046,\"sym\":37047,\"JA\":37048,\"Ġninja\":37049,\"installed\":37050,\"idates\":37051,\"ebra\":37052,\"ĠOmaha\":37053,\"Ġseizing\":37054,\"ĠBeasts\":37055,\"Ġsalts\":37056,\"Mission\":37057,\"Generally\":37058,\"ĠTrilogy\":37059,\"heon\":37060,\"legates\":37061,\"Ġdime\":37062,\"Ġfaire\":37063,\"parable\":37064,\"Graph\":37065,\"Ġtotaling\":37066,\"Ġdiagrams\":37067,\"ĠYanuk\":37068,\"plet\":37069,\"ĠMeh\":37070,\"Ġmythical\":37071,\"ĠStephens\":37072,\"autical\":37073,\"ochemistry\":37074,\"Ġkilograms\":37075,\"Ġelbows\":37076,\"ancock\":37077,\"ĠBCE\":37078,\"ĠPrague\":37079,\"Ġimprov\":37080,\"ĠDevin\":37081,\"Ġ\\\"\\\\\":37082,\"paralle\":37083,\"Ġsupremacists\":37084,\"ĠBillion\":37085,\"Ġregimen\":37086,\"innacle\":37087,\"Ġrequisite\":37088,\"angan\":37089,\"ĠBurlington\":37090,\"ainment\":37091,\"ĠObjective\":37092,\"omsky\":37093,\"GV\":37094,\"Ġunilateral\":37095,\"Ġtc\":37096,\"Ġhires\":37097,\"mental\":37098,\"Ġinvoluntary\":37099,\"Ġtranspl\":37100,\"ĠASCII\":37101,\"Â¨\":37102,\"Events\":37103,\"Ġdoubted\":37104,\"ĠKaplan\":37105,\"ĠCourage\":37106,\"igon\":37107,\"ĠManaging\":37108,\"ĠTart\":37109,\"Ġfalsehood\":37110,\"ĠViolet\":37111,\"Ġairs\":37112,\"Ġfertilizer\":37113,\"Britain\":37114,\"Ġaquatic\":37115,\"ouf\":37116,\"Words\":37117,\"ĠHartford\":37118,\"Ġevenings\":37119,\"ĠVengeance\":37120,\"quite\":37121,\"Gall\":37122,\"ĠPret\":37123,\"Ġpdf\":37124,\"ĠLM\":37125,\"ĠSochi\":37126,\"ĠIntercept\":37127,\"920\":37128,\"Ġprofitability\":37129,\"ĠIdle\":37130,\"ĠMacDonald\":37131,\"ĠEstablishment\":37132,\"umsy\":37133,\"Ġgatherings\":37134,\"ĠNaj\":37135,\"Charlie\":37136,\"Ġascent\":37137,\"ĠProtector\":37138,\"Ġalgebra\":37139,\"Ġbios\":37140,\"forums\":37141,\"ELS\":37142,\"Introduced\":37143,\"Ġ335\":37144,\"Ġastronomy\":37145,\"Contribut\":37146,\"ĠPolic\":37147,\"Platform\":37148,\"Ġcontainment\":37149,\"wrap\":37150,\"Ġcoronary\":37151,\"ĠJelly\":37152,\"manager\":37153,\"Ġheartbreaking\":37154,\"cair\":37155,\"ĠChero\":37156,\"cgi\":37157,\"Medical\":37158,\"ĠAccountability\":37159,\"!!\\\"\":37160,\"ophile\":37161,\"Ġpsychotic\":37162,\"ĠRestrict\":37163,\"Ġequitable\":37164,\"issues\":37165,\"Ġ1905\":37166,\"ĠNek\":37167,\"cised\":37168,\"ĠTracking\":37169,\"Ġozone\":37170,\"Ġcooker\":37171,\"rosis\":37172,\"Ġreopen\":37173,\"Ġinfinity\":37174,\"ĠPharmaceutical\":37175,\"ensional\":37176,\"Attempt\":37177,\"ĠRory\":37178,\"Marco\":37179,\"Ġawaits\":37180,\"HOW\":37181,\"treated\":37182,\"Ġbolst\":37183,\"Ġrevered\":37184,\"Ġpods\":37185,\"oppers\":37186,\"0010\":37187,\"Ġamplitude\":37188,\"rican\":37189,\"SPONSORED\":37190,\"Ġtrousers\":37191,\"Ġhalves\":37192,\"ĠKaine\":37193,\"ĠCutler\":37194,\"ĠAUTH\":37195,\"Ġsplendid\":37196,\"Ġpreventive\":37197,\"ĠDudley\":37198,\"ifacts\":37199,\"uminati\":37200,\"ĠYin\":37201,\"Ġadmon\":37202,\"ĠVag\":37203,\"Ġinverted\":37204,\"Ġhastily\":37205,\"ĠHague\":37206,\"Lyn\":37207,\"Ġledger\":37208,\"Ġastronomical\":37209,\"getting\":37210,\"Ġcirca\":37211,\"ĠCic\":37212,\"ĠTennis\":37213,\"Limited\":37214,\"Ġdru\":37215,\"ĠBYU\":37216,\"Ġtravellers\":37217,\"Ġpane\":37218,\"ĠIntro\":37219,\"Ġpatiently\":37220,\"Ġaiding\":37221,\"Ġloos\":37222,\"ĠTough\":37223,\"Ġ293\":37224,\"Ġconsumes\":37225,\"SourceFile\":37226,\"Ġ\\\"\\\"\\\"\":37227,\"Ġbonding\":37228,\"Ġtilted\":37229,\"Ġmenstrual\":37230,\"ĠCelestial\":37231,\"ULAR\":37232,\"Plugin\":37233,\"Ġrisking\":37234,\"Naz\":37235,\"ĠRiyadh\":37236,\"Ġaccredited\":37237,\"Ġskirm\":37238,\"éĽ\":37239,\"Ġexaminer\":37240,\"Ġmessing\":37241,\"Ġnearing\":37242,\"ĠChern\":37243,\"ĠBeckham\":37244,\"Ġswapped\":37245,\"Ġgoose\":37246,\"Kay\":37247,\"Ġlofty\":37248,\"ĠWallet\":37249,\"Ġ['\":37250,\"Ġapocalypse\":37251,\"Ġbamboo\":37252,\"ĠSPACE\":37253,\"ĠElena\":37254,\"Ġ306\":37255,\"acons\":37256,\"Ġtightened\":37257,\"Ġadolescence\":37258,\"Ġrainy\":37259,\"Ġvandalism\":37260,\"ĠNewtown\":37261,\"Ġconject\":37262,\"cakes\":37263,\"Ġcheated\":37264,\"Ġmoderators\":37265,\"params\":37266,\"EFF\":37267,\"Ġdeceit\":37268,\"ĠSTL\":37269,\"ĠTanzania\":37270,\"ĠRI\":37271,\"Ġ1923\":37272,\"ĠExile\":37273,\"thel\":37274,\"Ġtheolog\":37275,\"Ġquirky\":37276,\"ĠIrvine\":37277,\"Ġneedy\":37278,\"oris\":37279,\"Um\":37280,\"Ka\":37281,\"Ġmailbox\":37282,\"322\":37283,\"Ġbos\":37284,\"ĠPetra\":37285,\"KING\":37286,\"Ġenlarged\":37287,\"Often\":37288,\"Ġbadass\":37289,\"Ġ343\":37290,\"ĠPlaces\":37291,\"ĠCAD\":37292,\"Ġpristine\":37293,\"Ġintervening\":37294,\"direction\":37295,\"Ġlaz\":37296,\"ĠDSM\":37297,\"Ġprojecting\":37298,\"ĠFunk\":37299,\"agog\":37300,\"payment\":37301,\"nov\":37302,\"Ġchatter\":37303,\"ARB\":37304,\"Ġexaminations\":37305,\"ĠHousehold\":37306,\"ĠGus\":37307,\"Ford\":37308,\"414\":37309,\"Boss\":37310,\"Ġmystic\":37311,\"Ġleaps\":37312,\"ĠBav\":37313,\"ulz\":37314,\"budget\":37315,\"Football\":37316,\"Ġsubsidized\":37317,\"Ġfirsthand\":37318,\"Ġcoincide\":37319,\"ocular\":37320,\"Conn\":37321,\"ĠCollabor\":37322,\"Ġfools\":37323,\"amura\":37324,\"ahar\":37325,\"rists\":37326,\"Ġswollen\":37327,\"Ġexpended\":37328,\"ĠPau\":37329,\"sup\":37330,\"Ġspar\":37331,\"Ġkeynote\":37332,\"suff\":37333,\"Ġunequal\":37334,\"Ġprogressing\":37335,\"strings\":37336,\"ĠGamergate\":37337,\"Disney\":37338,\"ĠEleven\":37339,\"omnia\":37340,\"Ġscripted\":37341,\"Ġearners\":37342,\"brother\":37343,\"ĠEnabled\":37344,\"æ³\":37345,\"Ġlarvae\":37346,\"ĠLOC\":37347,\"mess\":37348,\"Wilson\":37349,\"ĠTemplate\":37350,\"successfully\":37351,\"Ġparamount\":37352,\"Ġcamouflage\":37353,\"Ġbinds\":37354,\"ĠQuiet\":37355,\"ĠShutterstock\":37356,\"rush\":37357,\"Ġmascot\":37358,\"fortune\":37359,\"ĠColt\":37360,\"ĠBeyon\":37361,\"habi\":37362,\"Ġhairc\":37363,\"Ġ267\":37364,\"ĠDeus\":37365,\"Ġtwitch\":37366,\"Ġconcentrating\":37367,\"Ġnipples\":37368,\"cible\":37369,\"Ġgir\":37370,\"NZ\":37371,\"Math\":37372,\"nih\":37373,\"Required\":37374,\"Ġponder\":37375,\"ĠSAN\":37376,\"Ġweddings\":37377,\"Ġloneliness\":37378,\"NES\":37379,\"ĠMahjong\":37380,\"695\":37381,\"addle\":37382,\"ĠGarner\":37383,\"ĠCOUR\":37384,\"Bridge\":37385,\"Ġspree\":37386,\"ĠCaldwell\":37387,\"Ġbribery\":37388,\"Ġï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½\":37389,\"plugins\":37390,\"Ġracket\":37391,\"Ġchampagne\":37392,\"versible\":37393,\"Vote\":37394,\"Ġmodifiers\":37395,\"Mayor\":37396,\"680\":37397,\"Ġassemblies\":37398,\"ĠSultan\":37399,\"ĠNing\":37400,\"ĠLadies\":37401,\"Ġsulfur\":37402,\"Ġorbs\":37403,\"Ġ-----\":37404,\"_______\":37405,\"ĠJournalism\":37406,\"Ġesports\":37407,\"Ġlush\":37408,\"Ġhue\":37409,\"Ġspectral\":37410,\"Honest\":37411,\"ãĥı\":37412,\"Ġbushes\":37413,\"Ġreinforcement\":37414,\"Ġreopened\":37415,\"ĠWheels\":37416,\"ĠMorg\":37417,\"rieving\":37418,\"Ġauxiliary\":37419,\"ĠjQuery\":37420,\"ĠBAT\":37421,\"tesque\":37422,\"Ġvertex\":37423,\"pure\":37424,\"frey\":37425,\"ãĤº\":37426,\"dos\":37427,\"Ġtyph\":37428,\"Ġcull\":37429,\"Ġeq\":37430,\"Ġdecon\":37431,\"Ġtossing\":37432,\"Ġdisparate\":37433,\"ĠBrigham\":37434,\"printf\":37435,\"ledged\":37436,\"Ġsund\":37437,\"Ġcozy\":37438,\"Ġhepatitis\":37439,\"performing\":37440,\"Ġaval\":37441,\"ĠGG\":37442,\"future\":37443,\"Ġpetertodd\":37444,\"ĠKosovo\":37445,\"Ġmagnets\":37446,\"Already\":37447,\"ĠEdison\":37448,\"ĠCeres\":37449,\"ĠRAID\":37450,\"Ġbrilliance\":37451,\"576\":37452,\"Ġderives\":37453,\"Ġhypertension\":37454,\"ĠÎĶ\":37455,\"Ġlambda\":37456,\"Ġflair\":37457,\"Ġmissionaries\":37458,\"Ġrapes\":37459,\"ĠStarter\":37460,\"ĠMonths\":37461,\"Ġdefy\":37462,\"Ġseismic\":37463,\"ĠRaphael\":37464,\"Ġeurozone\":37465,\"656\":37466,\"zsche\":37467,\"Ġscratched\":37468,\"Ġbows\":37469,\"ĠLennon\":37470,\"ĠGaia\":37471,\"Ġdripping\":37472,\"facts\":37473,\"Ale\":37474,\"Ġfrogs\":37475,\"ĠBreast\":37476,\"ogeneity\":37477,\"ĠProsecutor\":37478,\"Ġamplified\":37479,\"ĠHodg\":37480,\"ĠFn\":37481,\"Thousands\":37482,\"ĠNIH\":37483,\"ĠMonitoring\":37484,\"FTWARE\":37485,\"ĠPriebus\":37486,\"ĠGrowing\":37487,\"hunter\":37488,\"Ġdiagnose\":37489,\"ĠMald\":37490,\"ĠLR\":37491,\"Ġcrowned\":37492,\"Ġbursting\":37493,\"Ġdissolution\":37494,\"javascript\":37495,\"Ġusefulness\":37496,\"ĠExecution\":37497,\":(\":37498,\"ĠIvory\":37499,\"aah\":37500,\"Ġpersecuted\":37501,\"violence\":37502,\"istas\":37503,\"ĠCrate\":37504,\"Ġimpulses\":37505,\"ĠSpani\":37506,\"edes\":37507,\"Handle\":37508,\"ĠZerg\":37509,\"thinkable\":37510,\"Lastly\":37511,\"Ġspontaneously\":37512,\"Ġinconvenient\":37513,\"Ġdismissing\":37514,\"Ġplotted\":37515,\"Ġeighty\":37516,\"Ġ737\":37517,\"rish\":37518,\"ĠThornton\":37519,\"atham\":37520,\"Ġsitcom\":37521,\"Ven\":37522,\"Recipe\":37523,\"tel\":37524,\"lund\":37525,\"Ġclears\":37526,\"ĠSasuke\":37527,\"Ġ258\":37528,\"Ġopting\":37529,\"Ġenraged\":37530,\"esthetic\":37531,\"ĠAe\":37532,\"uchs\":37533,\"Prep\":37534,\"Flow\":37535,\"Ġrunoff\":37536,\"ĠEating\":37537,\"ĠGiles\":37538,\"ĠActing\":37539,\"resources\":37540,\"ibaba\":37541,\"Ġrpm\":37542,\"Ġskewed\":37543,\"ĠBlanc\":37544,\"ĠSakuya\":37545,\"Ġhotter\":37546,\"Ġ1924\":37547,\"opian\":37548,\"cko\":37549,\"Ġcrumbling\":37550,\"Ġcaptains\":37551,\"ĠAppropriations\":37552,\"leaders\":37553,\"dropping\":37554,\"anuts\":37555,\"Ġreversing\":37556,\"ĠPose\":37557,\"ĠSek\":37558,\"Scot\":37559,\"ĠIdea\":37560,\"cise\":37561,\"ĠSlovenia\":37562,\"Ġ317\":37563,\"Doctor\":37564,\"Ġcrocod\":37565,\"aldi\":37566,\"Sea\":37567,\"ĠFarrell\":37568,\"Ġmercenaries\":37569,\"ĠRNC\":37570,\"ĠGuess\":37571,\"Ġpacing\":37572,\"Machine\":37573,\"StreamerBot\":37574,\"ĠCharity\":37575,\"Ġ298\":37576,\"Ġcannons\":37577,\"ĠToby\":37578,\"TPPStreamerBot\":37579,\"ĠPassion\":37580,\"cfg\":37581,\"Thom\":37582,\"Ġbadges\":37583,\"ĠBernstein\":37584,\".âĢĵ\":37585,\"ĠPOP\":37586,\"ĠConj\":37587,\"Ġinitialization\":37588,\"Ġbiodiversity\":37589,\"Dub\":37590,\"Ġfeudal\":37591,\"Ġdisclaimer\":37592,\"Ġcrow\":37593,\"Ġignition\":37594,\"arf\":37595,\"SHA\":37596,\"ĠkHz\":37597,\"hazard\":37598,\"ĠArtists\":37599,\"oeuv\":37600,\"679\":37601,\"ĠRudy\":37602,\"Nine\":37603,\"ĠRamadan\":37604,\"å½\":37605,\"itto\":37606,\"Ġadrenaline\":37607,\"Cert\":37608,\"Ġsmelled\":37609,\"Ġimpunity\":37610,\"Ġagendas\":37611,\"ĠReborn\":37612,\"ĠConcent\":37613,\"ĠSeems\":37614,\"Ġomega\":37615,\"ĠDustin\":37616,\"Ġbacker\":37617,\"ĠSauce\":37618,\"ĠBoyle\":37619,\"WIN\":37620,\"Ġspins\":37621,\"Ġpauses\":37622,\"upt\":37623,\"Ġshredded\":37624,\"Ġstrapped\":37625,\"ĠCorruption\":37626,\"Ġscratches\":37627,\"Ġni\":37628,\"Ġattire\":37629,\"ĠSAF\":37630,\"FactoryReloaded\":37631,\"ĠIPS\":37632,\"Ġ(%\":37633,\"Ġseminar\":37634,\"focus\":37635,\"civil\":37636,\"Ġ1860\":37637,\"intosh\":37638,\"Ġcontinual\":37639,\"Ġabbrevi\":37640,\"ĠSok\":37641,\"ocobo\":37642,\"XM\":37643,\"Ġfrantic\":37644,\"Ġunavoidable\":37645,\"Ġartery\":37646,\"Ġannotations\":37647,\"bath\":37648,\"Climate\":37649,\"Ġdors\":37650,\"ĠSlide\":37651,\"coord\":37652,\"ĠReload\":37653,\"ĠLDL\":37654,\"ĠLovecraft\":37655,\"Ġunimagin\":37656,\"Ġresembled\":37657,\"Ġbarracks\":37658,\"np\":37659,\"Ġsurrogate\":37660,\"Ġcategorized\":37661,\"ãĤ©\":37662,\"Ġvaccinated\":37663,\"Ġdrainage\":37664,\"Ġindist\":37665,\"ĠWhatsApp\":37666,\"Ġ1870\":37667,\"olerance\":37668,\"invoke\":37669,\"amorph\":37670,\"Ġreconnect\":37671,\"Ġemanc\":37672,\"Ġblindness\":37673,\"Ġ1280\":37674,\"internet\":37675,\"collar\":37676,\"Ġaltru\":37677,\"Ġabyss\":37678,\"ĠTRI\":37679,\"657\":37680,\"Ġinfused\":37681,\"HEAD\":37682,\"Ġforestry\":37683,\"ĠWoody\":37684,\"ĠCi\":37685,\"wi\":37686,\"sam\":37687,\"784\":37688,\"holiday\":37689,\"Ġmogul\":37690,\"ĠFees\":37691,\"ĠDEN\":37692,\"Internal\":37693,\"urbed\":37694,\"fusc\":37695,\"atom\":37696,\"ĠIllusion\":37697,\"Ġpolled\":37698,\"Ġflap\":37699,\"Ġcoax\":37700,\"LGBT\":37701,\"Analy\":37702,\"ĠSections\":37703,\"ĠCaliforn\":37704,\"emn\":37705,\"Ġhither\":37706,\"ĠNIGHT\":37707,\"Ġnailed\":37708,\"ĠPipeline\":37709,\"391\":37710,\"oof\":37711,\"ĠPrimal\":37712,\"verend\":37713,\"Ġslashing\":37714,\"Ġretri\":37715,\"aviour\":37716,\"Ġdeparting\":37717,\"gil\":37718,\"ISC\":37719,\"Ġmidway\":37720,\"Ġultrasound\":37721,\"Ġbehaving\":37722,\"ĠTara\":37723,\"classes\":37724,\"Virtual\":37725,\"ĠColonial\":37726,\"Ġstripping\":37727,\"Ġorchestrated\":37728,\"ĠGraves\":37729,\"452\":37730,\"ĠIronically\":37731,\"ĠWriters\":37732,\"Ġlends\":37733,\"ĠManz\":37734,\"Ġraven\":37735,\"Ġoxidative\":37736,\"Ġ266\":37737,\"ELF\":37738,\"actually\":37739,\"ascar\":37740,\"Draft\":37741,\"Ġfavourable\":37742,\"Ġhumiliating\":37743,\"Ġfidelity\":37744,\"ĠHof\":37745,\"ĠXuan\":37746,\"496\":37747,\"Ġlayered\":37748,\"atis\":37749,\"790\":37750,\"Ġpaycheck\":37751,\"iton\":37752,\"Kar\":37753,\"ĠVMware\":37754,\"ĠFarmer\":37755,\"Ġservic\":37756,\"glomer\":37757,\"Ġslump\":37758,\"ĠFabric\":37759,\"ĠDOC\":37760,\"esting\":37761,\"Ġreassure\":37762,\"Ġphyl\":37763,\"volt\":37764,\"itory\":37765,\"Rules\":37766,\"Ġoxidation\":37767,\"Ġprized\":37768,\"Ġmistress\":37769,\"ĠDjango\":37770,\"WARN\":37771,\"åĳ\":37772,\"Ġencode\":37773,\"ĠFeedback\":37774,\"Ġstupidity\":37775,\"Ian\":37776,\"ĠYugoslavia\":37777,\"×¨\":37778,\"acl\":37779,\"UTE\":37780,\"1977\":37781,\"Ġqualifies\":37782,\"Ġpulses\":37783,\"pretty\":37784,\"Ġfroze\":37785,\"Ġss\":37786,\"Iterator\":37787,\"Ġurgently\":37788,\"Ġmailed\":37789,\"ĠCham\":37790,\"Ġsustaining\":37791,\"Ġbasil\":37792,\"Ġpuppies\":37793,\"ilant\":37794,\"ĠPLEASE\":37795,\"lap\":37796,\"aceous\":37797,\"Fear\":37798,\"ĠMastery\":37799,\"automatic\":37800,\"ĠTAG\":37801,\"Ġantim\":37802,\"agles\":37803,\"473\":37804,\"frames\":37805,\"Ġwhispers\":37806,\"ĠWhoever\":37807,\"Ġbravery\":37808,\"ĠUKIP\":37809,\"ractions\":37810,\"\\\"\\\"\\\"\":37811,\"Ġtame\":37812,\"Ġparted\":37813,\"everything\":37814,\"CONT\":37815,\"Ġindebted\":37816,\"Ġaddr\":37817,\"rek\":37818,\"IRED\":37819,\"Ġeminent\":37820,\"clinton\":37821,\"Ġousted\":37822,\"Ġreviewer\":37823,\"Ġmeltdown\":37824,\"Ġrearr\":37825,\"ĠYao\":37826,\"thereal\":37827,\"abyte\":37828,\"Ġstumbling\":37829,\"Ġbatches\":37830,\"Ġ259\":37831,\"Ġcontraceptive\":37832,\"Ġprostitute\":37833,\"ensis\":37834,\"Decl\":37835,\"ĠStrikes\":37836,\"Military\":37837,\"ĠOath\":37838,\"vacc\":37839,\"ppings\":37840,\"052\":37841,\"ĠpartName\":37842,\"amping\":37843,\"Reports\":37844,\"KI\":37845,\"CHR\":37846,\"Ġsubtly\":37847,\"swers\":37848,\"Blake\":37849,\"usual\":37850,\"Ġcontestants\":37851,\"Ġcartridges\":37852,\"ĠGREAT\":37853,\"Ġblush\":37854,\"ĠâĢº\":37855,\"472\":37856,\"Ġreasoned\":37857,\"ãĥ¤\":37858,\"paralleled\":37859,\"Ġdyn\":37860,\"agate\":37861,\"Ġnightly\":37862,\"åĨ\":37863,\"556\":37864,\"Ġsemantic\":37865,\"ĠAdvoc\":37866,\"Ġ!!\":37867,\"Ġdisagrees\":37868,\"ĠBW\":37869,\"Veh\":37870,\"Ġharming\":37871,\"Ġembraces\":37872,\"Ġstrives\":37873,\"Ġinland\":37874,\"ĠKard\":37875,\"Ġheats\":37876,\"ĠGinny\":37877,\"utan\":37878,\"ernaut\":37879,\"ylene\":37880,\"ĠElev\":37881,\"JD\":37882,\"Ġhars\":37883,\"ĠStarr\":37884,\"Ġskysc\":37885,\"Ġcollaborators\":37886,\"Usually\":37887,\"Ġrevolutions\":37888,\"ĠSTATS\":37889,\"Ġdismantle\":37890,\"Ġconfidently\":37891,\"Ġkinetic\":37892,\"Ali\":37893,\"Ġpercentile\":37894,\"Ġextracting\":37895,\"illian\":37896,\"estead\":37897,\"Ġphysicists\":37898,\"ĠMarshal\":37899,\"Ġfellowship\":37900,\"Ġdashed\":37901,\"ĠUR\":37902,\"ĠSioux\":37903,\"ĠCompact\":37904,\"amide\":37905,\"Python\":37906,\"ĠLeigh\":37907,\"ĠPharmac\":37908,\"istrates\":37909,\"herical\":37910,\"Ġfue\":37911,\"ĠEmin\":37912,\"Ġ({\":37913,\"ĠNeighborhood\":37914,\"Ġdisrupting\":37915,\"ĠDup\":37916,\"Ġgland\":37917,\"ĠSev\":37918,\"ĠMarian\":37919,\"argon\":37920,\"ĠDund\":37921,\"Ġ<!--\":37922,\"Ġstrand\":37923,\"Ġstadiums\":37924,\"zos\":37925,\"Ġpsychosis\":37926,\"ĠRack\":37927,\"Ġbrilliantly\":37928,\"ï¸ı\":37929,\"Ġsubmerged\":37930,\"ĠInstit\":37931,\"ĠChow\":37932,\"Ġcages\":37933,\"ĠHats\":37934,\"ĠUrs\":37935,\"Ġdiluted\":37936,\"usat\":37937,\"ienne\":37938,\"ĠMembership\":37939,\"ĠBurk\":37940,\"Ġie\":37941,\"Ġarchetype\":37942,\"Drug\":37943,\"ulton\":37944,\"ĠSpock\":37945,\"ĠMcKay\":37946,\"ĠDepend\":37947,\"Featured\":37948,\"Soc\":37949,\"1978\":37950,\"ĠBere\":37951,\"Ġrelentlessly\":37952,\"Ġcrippling\":37953,\"Ġarthritis\":37954,\"çĶŁ\":37955,\"ĠTropical\":37956,\"ĠBulg\":37957,\"ĠCheryl\":37958,\"Ġadmirable\":37959,\"Ġsubtitle\":37960,\"Override\":37961,\"Ġoriginating\":37962,\"ĠCCP\":37963,\"Ġswore\":37964,\"ĠSole\":37965,\"ĠDisorders\":37966,\"329\":37967,\"Ġprocession\":37968,\"Ġrefurb\":37969,\"Ġimmersed\":37970,\"requently\":37971,\"Ġskeptics\":37972,\"Ġceramic\":37973,\"mitter\":37974,\"enstein\":37975,\"belt\":37976,\"ĠTIT\":37977,\"bidden\":37978,\"Ġfir\":37979,\"mist\":37980,\">]\":37981,\"Ġweave\":37982,\"ĠParadox\":37983,\"Ġentrusted\":37984,\"ĠBarclays\":37985,\"Ġnovelist\":37986,\"ogie\":37987,\"806\":37988,\"Ġninety\":37989,\"Ġdisagreements\":37990,\"@@@@@@@@\":37991,\"ĠAuschwitz\":37992,\"cars\":37993,\"ĠLET\":37994,\"tub\":37995,\"arantine\":37996,\"POS\":37997,\"Ġbackstory\":37998,\"Ġcheerful\":37999,\"ĠRag\":38000,\"eka\":38001,\"biased\":38002,\"Ġinexperienced\":38003,\"akra\":38004,\"ĠWitt\":38005,\"tan\":38006,\"Ġrapist\":38007,\"Ġplateau\":38008,\"chal\":38009,\"ĠInquis\":38010,\"expression\":38011,\"Ġcipher\":38012,\"Ġshaving\":38013,\"adden\":38014,\"rely\":38015,\"(\\\\\":38016,\"isma\":38017,\"ĠRegulatory\":38018,\"CHAR\":38019,\"ilyn\":38020,\"NVIDIA\":38021,\"GU\":38022,\"Ġmurm\":38023,\"laus\":38024,\"Christopher\":38025,\"Ġcontractual\":38026,\"ĠProxy\":38027,\"ĠJaime\":38028,\"ĠMethodist\":38029,\"Ġstewards\":38030,\"sta\":38031,\"peria\":38032,\"Ġphysiology\":38033,\"Ġbumped\":38034,\"Ġfructose\":38035,\"Australian\":38036,\"ĠMetallic\":38037,\"ĠMasquerade\":38038,\"arb\":38039,\"Ġpromul\":38040,\"Ġdownfall\":38041,\"Ġbutcher\":38042,\"Ġbour\":38043,\"ĠINFORMATION\":38044,\"ĠBis\":38045,\"pects\":38046,\"adena\":38047,\"Ġcontemplating\":38048,\"aroo\":38049,\"centered\":38050,\"ĠPeaks\":38051,\"Used\":38052,\"Ġmodem\":38053,\"Ġgenders\":38054,\"Ġ8000\":38055,\"371\":38056,\"Ġmaternity\":38057,\"ĠRaz\":38058,\"Ġrocking\":38059,\"Ġhandguns\":38060,\"ĠDACA\":38061,\"Autom\":38062,\"ĠNile\":38063,\"Ġtumult\":38064,\"ĠBenefit\":38065,\"ĠApproach\":38066,\"workshop\":38067,\"ĠLeaving\":38068,\"Ger\":38069,\"instead\":38070,\"Ġvibrations\":38071,\"Ġrepositories\":38072,\"497\":38073,\"ĠAunt\":38074,\"ĠJub\":38075,\"ĠExpedition\":38076,\"Alpha\":38077,\"Ġsans\":38078,\"Ġoverdue\":38079,\"Ġovercrowd\":38080,\"Ġlegislatures\":38081,\"Ġpaternal\":38082,\"ĠLeonardo\":38083,\"Ġexpressive\":38084,\"Ġdistractions\":38085,\"Ġsilenced\":38086,\"trust\":38087,\"Ġbiking\":38088,\"Ġ560\":38089,\"Ġpropriet\":38090,\"Ġimposition\":38091,\"Ġconglomer\":38092,\"Ġ=================================================================\":38093,\"ĠTeaching\":38094,\"ĠYose\":38095,\"intensive\":38096,\"Town\":38097,\"Ġtrolling\":38098,\"ĠGrac\":38099,\"ĠASUS\":38100,\"Yo\":38101,\"Ġspecials\":38102,\"ĠNeph\":38103,\"ĠGodzilla\":38104,\"Database\":38105,\"ĠHegel\":38106,\"Ġ272\":38107,\"1976\":38108,\"ĠGloria\":38109,\"Ġdisemb\":38110,\"ĠInvestigations\":38111,\"ĠBane\":38112,\"agements\":38113,\"Strange\":38114,\"Ġtreasury\":38115,\"ĠPlays\":38116,\"Ġundesirable\":38117,\"Ġwidening\":38118,\"Ġverbally\":38119,\"Ġinfancy\":38120,\"Ġcutter\":38121,\"fml\":38122,\"Ġ2100\":38123,\"prototype\":38124,\"fine\":38125,\"Ġdecriminal\":38126,\"Ġdysfunctional\":38127,\"Ġbesie\":38128,\"ĠErnst\":38129,\"zeb\":38130,\"Ġnortheastern\":38131,\"Ġaust\":38132,\"porate\":38133,\"ĠMarlins\":38134,\"Ġsegregated\":38135,\"eworld\":38136,\"ĠMaher\":38137,\"Ġtraverse\":38138,\"Ġmonastery\":38139,\"urgy\":38140,\"Gear\":38141,\"sand\":38142,\"Compl\":38143,\"ĠEMP\":38144,\"Ġplent\":38145,\"ĠMercer\":38146,\"Ġ276\":38147,\"TABLE\":38148,\"Configuration\":38149,\"Hundreds\":38150,\"Ġpric\":38151,\"Ġcollaborating\":38152,\"ĠParamount\":38153,\"ĠCummings\":38154,\"Ġ(<\":38155,\"Ġrecorder\":38156,\"Ġflats\":38157,\"Ġ416\":38158,\"whose\":38159,\"FontSize\":38160,\"ĠOrbit\":38161,\"YR\":38162,\"Ġwrists\":38163,\"Ġbakery\":38164,\")}\":38165,\"ĠBounty\":38166,\"ĠLancaster\":38167,\"Ġendings\":38168,\"according\":38169,\"ĠSalam\":38170,\"easy\":38171,\"755\":38172,\"ĠBurr\":38173,\"ĠBarnett\":38174,\"onomous\":38175,\"Union\":38176,\"Ġprecedence\":38177,\"ĠScholarship\":38178,\"ĠUX\":38179,\"Ġrollout\":38180,\"Ġboon\":38181,\"alm\":38182,\"ĠCanter\":38183,\"æµ\":38184,\"Ġrounding\":38185,\"Ġclad\":38186,\"Ġvap\":38187,\"ĠFeatured\":38188,\"isations\":38189,\"Ġ540\":38190,\"police\":38191,\"Ġunsettling\":38192,\"Ġdrifting\":38193,\"ĠLumia\":38194,\"ĠObamaCare\":38195,\"ĠFavor\":38196,\"Hyper\":38197,\"ĠRothschild\":38198,\"ĠMiliband\":38199,\"analy\":38200,\"ĠJuliet\":38201,\"Hu\":38202,\"Ġrecalling\":38203,\"ahead\":38204,\"696\":38205,\"Ġunfavorable\":38206,\"Ġdances\":38207,\"Ox\":38208,\"Ġlegality\":38209,\"Ġ403\":38210,\"romancer\":38211,\"Ġinquire\":38212,\"ĠMoves\":38213,\"\\\\\\\">\":38214,\"ĠVariant\":38215,\"ĠMessiah\":38216,\"ĠLCS\":38217,\"ĠBahÃ¡\":38218,\"756\":38219,\"Ġeyebrow\":38220,\"ĠÂ¥\":38221,\"ĠMcF\":38222,\"ĠForty\":38223,\"Mas\":38224,\"Ġpanicked\":38225,\"Ġtransformations\":38226,\"qq\":38227,\"Ġrevolves\":38228,\"ringe\":38229,\"ĠAi\":38230,\"axe\":38231,\"Ġonward\":38232,\"ĠCFR\":38233,\"ĠBare\":38234,\"login\":38235,\"Ġliquids\":38236,\"Ġdecomp\":38237,\"secondary\":38238,\"ilan\":38239,\"ĠConvert\":38240,\"amiya\":38241,\"Ġprosecuting\":38242,\"Ġâī¡\":38243,\"ĠYorkers\":38244,\"ĠByrne\":38245,\"slow\":38246,\"awei\":38247,\"Jean\":38248,\"Ġ269\":38249,\"ĠSkydragon\":38250,\"ĠÃ©\":38251,\"ĠNicaragua\":38252,\"ĠHuckabee\":38253,\"ĠHighly\":38254,\"Ġamphib\":38255,\"ĠPastor\":38256,\"ĠLets\":38257,\"Ġblurred\":38258,\"Ġvisceral\":38259,\"ĠCBO\":38260,\"Ġcollaborated\":38261,\"zig\":38262,\"Legal\":38263,\"Ġapartheid\":38264,\"Ġbrid\":38265,\"Ġpreset\":38266,\"ĠDET\":38267,\"ĠAMA\":38268,\"×Ķ\":38269,\"arching\":38270,\"aucuses\":38271,\"builder\":38272,\"Ġpoetic\":38273,\"Ġemulator\":38274,\"ĠMolecular\":38275,\"Ġhonoring\":38276,\"iseum\":38277,\"Ġtractor\":38278,\"ĠCluster\":38279,\"ĠCalm\":38280,\"aredevil\":38281,\"Ġsidewalks\":38282,\"Ġviolin\":38283,\"Ġgeneralized\":38284,\"ĠAlec\":38285,\"Ġembargo\":38286,\"Ġfastball\":38287,\"ĠHTTPS\":38288,\"ĠLack\":38289,\"ĠChill\":38290,\"river\":38291,\"Chel\":38292,\"ĠSwarm\":38293,\"ĠLevine\":38294,\"roying\":38295,\"Launch\":38296,\"Ġkicker\":38297,\"Ġadditive\":38298,\"ĠDeals\":38299,\"Widget\":38300,\"containing\":38301,\"Ġescalate\":38302,\"ĠOPEN\":38303,\"Ġtweaked\":38304,\"Ġstash\":38305,\"Ġsparks\":38306,\"ĠEssex\":38307,\"ĠEcc\":38308,\"Ġconvict\":38309,\"Ġblogging\":38310,\"IER\":38311,\"ĠHL\":38312,\"Ġmurderers\":38313,\"759\":38314,\"ĠHib\":38315,\"Ġdepl\":38316,\"ĠJord\":38317,\"Sac\":38318,\"Ġdissect\":38319,\"ĠHowe\":38320,\"osher\":38321,\"Ġcustomizable\":38322,\"ĠFranz\":38323,\"Ġatro\":38324,\"Äĩ\":38325,\"Ġ0004\":38326,\"Ġoutpost\":38327,\"Ross\":38328,\"Ġglyphosate\":38329,\"ĠHastings\":38330,\"ĠBEFORE\":38331,\"Ġshove\":38332,\"opped\":38333,\"ĠScala\":38334,\"Ġamulet\":38335,\"anian\":38336,\"Ġexacerbated\":38337,\"Ġeater\":38338,\"471\":38339,\"UME\":38340,\"Ġpulp\":38341,\"izontal\":38342,\"ĠZam\":38343,\"ĠATI\":38344,\"immune\":38345,\"abytes\":38346,\"Ġunnecessarily\":38347,\"ĠCAT\":38348,\"ĠAxis\":38349,\"Ġvisualize\":38350,\"Ãī\":38351,\"ĠRadical\":38352,\"fm\":38353,\"Documents\":38354,\"ĠForrest\":38355,\"Ġcontextual\":38356,\"ĠSymbol\":38357,\"Ġtentative\":38358,\"ĠDOES\":38359,\"ĠGoods\":38360,\"Ġintermittent\":38361,\"}:\":38362,\"mediated\":38363,\"Ġridicule\":38364,\"Ġatheism\":38365,\"Ġpathogens\":38366,\"ĠMum\":38367,\"Ġreintrodu\":38368,\"Ġ307\":38369,\"iHUD\":38370,\"Ġflashlight\":38371,\"Ġswearing\":38372,\"Ġpengu\":38373,\"Bu\":38374,\"Ġrotated\":38375,\"ĠCrane\":38376,\"Ġ());\":38377,\"Ġfashionable\":38378,\"Ġendorsing\":38379,\"463\":38380,\")[\":38381,\"Ġingestion\":38382,\"Ġcooks\":38383,\"Ġ950\":38384,\"otomy\":38385,\"ĠImam\":38386,\"Ġka\":38387,\"Ġteaser\":38388,\"ĠGhosts\":38389,\"ĠãĤµ\":38390,\"1969\":38391,\"Ïĥ\":38392,\"ubby\":38393,\"Ġconverter\":38394,\"zanne\":38395,\"ende\":38396,\"ĠPrepar\":38397,\"ĠNickel\":38398,\"ĠChimera\":38399,\"him\":38400,\"ĠTyrann\":38401,\"ĠSabbath\":38402,\"ĠNichols\":38403,\"Ġrapt\":38404,\"ihar\":38405,\"Ġshelling\":38406,\"Ġilluminate\":38407,\"Ġdentist\":38408,\"utor\":38409,\"ĠIntegration\":38410,\"Ġwhims\":38411,\"ĠLiterary\":38412,\"Beaut\":38413,\"Ġparchment\":38414,\"agara\":38415,\"Brand\":38416,\"Ġderog\":38417,\"âĢ¦)\":38418,\"ĠNorse\":38419,\"Ġunwitting\":38420,\"Ġcuc\":38421,\"Ġborderline\":38422,\"Ġupsetting\":38423,\"Ġrecourse\":38424,\"Ġdraped\":38425,\"ĠRadar\":38426,\"Ġcolder\":38427,\"ĠPepsi\":38428,\"iminary\":38429,\"],[\":38430,\"658\":38431,\"Vi\":38432,\"ĠFrem\":38433,\"ĠPes\":38434,\"Ġveterinary\":38435,\"ĠTED\":38436,\"ĠEpidem\":38437,\"nova\":38438,\"kid\":38439,\"Ġdevout\":38440,\"oct\":38441,\"jad\":38442,\"Moh\":38443,\"ĠPAY\":38444,\"Ġgeometric\":38445,\"Ġ323\":38446,\"Ġcircumference\":38447,\"ichick\":38448,\"1975\":38449,\"ĠYuri\":38450,\"ĠShall\":38451,\"ĠHover\":38452,\"unin\":38453,\"Spr\":38454,\"Ġgraft\":38455,\"ĠHappiness\":38456,\"Ġdisadvantages\":38457,\"attacks\":38458,\"Ġhubs\":38459,\"ĠStarCraft\":38460,\"éĸ\":38461,\"Ġgalleries\":38462,\"ĠKorra\":38463,\"Ġgroceries\":38464,\"ĠGorsuch\":38465,\"Ġrapists\":38466,\"Ġfungi\":38467,\"ĠTyphoon\":38468,\"Vector\":38469,\"ĠEmpress\":38470,\"battle\":38471,\"468\":38472,\"Ġparasite\":38473,\"ĠBomber\":38474,\"SG\":38475,\"exist\":38476,\"ĠPf\":38477,\"Ġunse\":38478,\"Ġsurgeons\":38479,\"Birth\":38480,\"ĠUnsure\":38481,\"ĠPrinted\":38482,\"ĠBehavioral\":38483,\"ĠAster\":38484,\"Pakistan\":38485,\"Ġunethical\":38486,\"Ġsv\":38487,\"ĠIoT\":38488,\"Ġlayouts\":38489,\"Pain\":38490,\"Ġconstants\":38491,\"ĠLW\":38492,\"ĠBake\":38493,\"Ġtowels\":38494,\"Ġdeterioration\":38495,\"ĠBolivia\":38496,\"Ġblinded\":38497,\"ĠWarden\":38498,\"ĠMistress\":38499,\"Ġonstage\":38500,\"Ġclans\":38501,\"ĠBEST\":38502,\"1960\":38503,\"Ġantique\":38504,\"Ġrhetorical\":38505,\"ĠPercy\":38506,\"ĠRwanda\":38507,\",.\":38508,\"Bruce\":38509,\"Ġtraumat\":38510,\"ĠParliamentary\":38511,\"Ġfootnote\":38512,\"idia\":38513,\"ĠLearned\":38514,\"seeking\":38515,\"genic\":38516,\"Ġdimensional\":38517,\"Hide\":38518,\"èĢħ\":38519,\"Ġintrigue\":38520,\"inse\":38521,\"Ġleases\":38522,\"Ġapprentices\":38523,\"washing\":38524,\"Ġ1926\":38525,\"VILLE\":38526,\"Ġswoop\":38527,\"scl\":38528,\"Ġbedrooms\":38529,\"onics\":38530,\"ĠCrunch\":38531,\"compatible\":38532,\"Ġincapac\":38533,\"ĠYemeni\":38534,\"ashtra\":38535,\"zhou\":38536,\"danger\":38537,\"Ġmanifestations\":38538,\"ĠDemons\":38539,\"AAF\":38540,\"Secretary\":38541,\"ACTED\":38542,\"LOD\":38543,\"Ġamy\":38544,\"raper\":38545,\"ethnic\":38546,\"417\":38547,\"Ġpositives\":38548,\"Ġ273\":38549,\"ĠRefugees\":38550,\"Ġusb\":38551,\"ĠVald\":38552,\"oddy\":38553,\"ĠMahmoud\":38554,\"Asia\":38555,\"Ġskulls\":38556,\"ĠExodus\":38557,\"ĠCompet\":38558,\"ĠLIC\":38559,\"ĠMansion\":38560,\"ĠAme\":38561,\"Ġconsolidate\":38562,\"storms\":38563,\"ontent\":38564,\"996\":38565,\"Ġclen\":38566,\"Ġmummy\":38567,\"flat\":38568,\"758\":38569,\"ĠVOL\":38570,\"oteric\":38571,\"nen\":38572,\"ĠMinute\":38573,\"Sov\":38574,\"Ġfiner\":38575,\"Rh\":38576,\"lycer\":38577,\"Ġreinforcements\":38578,\"ĠJohannes\":38579,\"ĠGallagher\":38580,\"Ġgymn\":38581,\"Suddenly\":38582,\"Ġextortion\":38583,\"kr\":38584,\"iator\":38585,\"Ta\":38586,\"Ġhippocampus\":38587,\"NPR\":38588,\"ĠComputing\":38589,\"Ġsquarely\":38590,\"Ġmodelling\":38591,\"ĠForums\":38592,\"ĠLisp\":38593,\"ĠKrishna\":38594,\"Ġ324\":38595,\"Ġrushes\":38596,\"Ġensued\":38597,\"Ġcreeping\":38598,\"onte\":38599,\"nai\":38600,\"ilater\":38601,\"ĠHornets\":38602,\"Ġoblivious\":38603,\"INST\":38604,\"559\":38605,\"Ġjeopardy\":38606,\"Ġdistinguishing\":38607,\"jured\":38608,\"Ġbegs\":38609,\"similar\":38610,\"phot\":38611,\"530\":38612,\"ĠParkway\":38613,\"Ġsinks\":38614,\"ĠHearthstone\":38615,\"ibur\":38616,\"ĠBaton\":38617,\"Avoid\":38618,\"Ġdancer\":38619,\"Ġmagistrate\":38620,\"aryn\":38621,\"Ġdisturbances\":38622,\"ĠRomero\":38623,\"Ġparaph\":38624,\"Ġmischief\":38625,\"âĸĵ\":38626,\"ĠSharia\":38627,\"Ġurinary\":38628,\"route\":38629,\"ivas\":38630,\"fitted\":38631,\"Ġejected\":38632,\"ĠAlbuquerque\":38633,\"Ġ470\":38634,\"Ġirritated\":38635,\"ĠZip\":38636,\"ĠBiol\":38637,\"Ãį\":38638,\"Ġdenounce\":38639,\"Ġbinaries\":38640,\"ĠVerse\":38641,\"Ġoppos\":38642,\"ĠKendrick\":38643,\"ĠGPL\":38644,\"Ġspew\":38645,\"ĠElijah\":38646,\"ĠEas\":38647,\"Ġdrifted\":38648,\"sofar\":38649,\"Ġannoyance\":38650,\"ĠBET\":38651,\"474\":38652,\"ĠStrongh\":38653,\"itates\":38654,\"ĠCognitive\":38655,\"ophone\":38656,\"ĠIdentification\":38657,\"ocrine\":38658,\"connection\":38659,\"Ġboxer\":38660,\"ĠASD\":38661,\"ĠAreas\":38662,\"Yang\":38663,\"tch\":38664,\"ullah\":38665,\"Ġdeceive\":38666,\"Combat\":38667,\"episode\":38668,\"crete\":38669,\"Witness\":38670,\"Ġcondolences\":38671,\"htar\":38672,\"Ġheals\":38673,\"Ġbuckets\":38674,\"ĠLAW\":38675,\"Blu\":38676,\"Ġslab\":38677,\"ĠORDER\":38678,\"ocl\":38679,\"atton\":38680,\"ĠStevenson\":38681,\"ĠGinger\":38682,\"ĠFriendly\":38683,\"ĠVanderbilt\":38684,\"spirit\":38685,\"igl\":38686,\"ĠRegarding\":38687,\"ĠPROG\":38688,\"Ġsealing\":38689,\"starting\":38690,\"Ġcardinal\":38691,\"ĠVec\":38692,\"ĠBeir\":38693,\"Ġmilliseconds\":38694,\"weak\":38695,\"perse\":38696,\"Ġsterile\":38697,\"ĠContemporary\":38698,\"ĠPhant\":38699,\"ĠClo\":38700,\"Ġoutp\":38701,\"Ġexiled\":38702,\"Ġ277\":38703,\"Ġselfie\":38704,\"Ġmanic\":38705,\"Ġnano\":38706,\"terms\":38707,\"Alexander\":38708,\"Ġresolves\":38709,\"Ġmillennia\":38710,\"Ġexplodes\":38711,\"Ġconstellation\":38712,\"Ġadultery\":38713,\"motion\":38714,\"DOC\":38715,\"Ġbroadcasters\":38716,\"Ġkindergarten\":38717,\"ĠMayweather\":38718,\"ĠEco\":38719,\"icho\":38720,\"Ġ287\":38721,\"laun\":38722,\"Ġmute\":38723,\"Ġdiscreet\":38724,\"Ġpreschool\":38725,\"Ġpreempt\":38726,\"Delete\":38727,\"ĠFreed\":38728,\"Pi\":38729,\"HK\":38730,\"Ġblocker\":38731,\"ĠCumber\":38732,\"Ġwrought\":38733,\"dating\":38734,\"Ġinsurer\":38735,\"Ġquotas\":38736,\"Ġpreached\":38737,\"Ġeviction\":38738,\"ĠRegina\":38739,\"ĠPens\":38740,\"Ġseventeen\":38741,\"ĠNass\":38742,\"Dick\":38743,\"Ġfolds\":38744,\"Ġdotted\":38745,\"ĠAad\":38746,\"Universal\":38747,\"Ġpizz\":38748,\"ĠGuru\":38749,\"Ġsoils\":38750,\"Ġnovice\":38751,\"ĠNeander\":38752,\"Ġstool\":38753,\"Ġdetonated\":38754,\"ĠPikachu\":38755,\"ĠMassive\":38756,\"IVER\":38757,\"ĠAbdel\":38758,\"Ġsubdued\":38759,\"Ġtallest\":38760,\"Ġprecarious\":38761,\"Ġay\":38762,\"rification\":38763,\"ĠObj\":38764,\"cale\":38765,\"Ġunquestion\":38766,\"culosis\":38767,\"adas\":38768,\"igrated\":38769,\"Days\":38770,\"Ġqueens\":38771,\"ĠGazette\":38772,\"ĠColour\":38773,\"ĠBowman\":38774,\"ĠJJ\":38775,\"Ã¯ve\":38776,\"Ġdominates\":38777,\"Student\":38778,\"Ġmu\":38779,\"Ġbacklog\":38780,\"ĠElectro\":38781,\"Truth\":38782,\"483\":38783,\"Ġcondensed\":38784,\"rules\":38785,\"ĠConspiracy\":38786,\"Ġacronym\":38787,\"handled\":38788,\"ĠMatte\":38789,\"jri\":38790,\"ĠImpossible\":38791,\"lude\":38792,\"creation\":38793,\"Ġwarmed\":38794,\"ĠSlave\":38795,\"Ġmisled\":38796,\"Ġferment\":38797,\"ĠKah\":38798,\"inki\":38799,\"keleton\":38800,\"cyl\":38801,\"ĠKarin\":38802,\"Hunter\":38803,\"Register\":38804,\"ĠSurrey\":38805,\"Ġstares\":38806,\"ĠWidth\":38807,\"ĠNay\":38808,\"ĠSki\":38809,\"Ġblacklist\":38810,\"ucket\":38811,\"Ġexpulsion\":38812,\"imet\":38813,\"Ġretweet\":38814,\"vantage\":38815,\"Feature\":38816,\"Ġtroopers\":38817,\"Ġhomers\":38818,\"969\":38819,\"Ġcontingency\":38820,\"ĠWTC\":38821,\"ĠBrewer\":38822,\"foreign\":38823,\"Ware\":38824,\"Solar\":38825,\"Ġundue\":38826,\"REC\":38827,\"ulnerable\":38828,\"pathic\":38829,\"ĠBoise\":38830,\"Ġ322\":38831,\"Ġaroused\":38832,\"ĠYing\":38833,\"ä¸į\":38834,\"ueless\":38835,\"Ġpas\":38836,\"Ġmorp\":38837,\"Ġfloral\":38838,\"Express\":38839,\"udging\":38840,\"kB\":38841,\"ĠGranted\":38842,\"Ø¯\":38843,\"ĠMicha\":38844,\"ĠGothic\":38845,\"ĠSPECIAL\":38846,\"ĠRicardo\":38847,\"Fran\":38848,\"Ġadministering\":38849,\"620\":38850,\"pora\":38851,\"ĠÂ®\":38852,\"Ġcompromises\":38853,\"Ġbitten\":38854,\"Accept\":38855,\"Thirty\":38856,\"Ð²\":38857,\"Ġmaterially\":38858,\"ĠTerr\":38859,\"igmatic\":38860,\"chains\":38861,\"Ġdove\":38862,\"stadt\":38863,\"Marvel\":38864,\"FAULT\":38865,\"Ġwindshield\":38866,\"Ġ336\":38867,\"adier\":38868,\"Ġswapping\":38869,\"Ġflawless\":38870,\"ĠPredator\":38871,\"ĠMichele\":38872,\"Ġpropulsion\":38873,\"ĠPsychic\":38874,\"Ġassigning\":38875,\"Ġfabrication\":38876,\"Ġbarley\":38877,\"lust\":38878,\"Ġtowering\":38879,\"Ġaltercation\":38880,\"ĠBentley\":38881,\"Sphere\":38882,\"Ġtuna\":38883,\"ĠClasses\":38884,\"Freedom\":38885,\"uner\":38886,\"Lady\":38887,\"voice\":38888,\"Ġcoolest\":38889,\"orr\":38890,\"Ġpalp\":38891,\"${\":38892,\"Ġhysteria\":38893,\"ĠMetatron\":38894,\"pants\":38895,\"Ġspawning\":38896,\"Experts\":38897,\"ĠInvestors\":38898,\"ĠAnarchy\":38899,\"Ġshrunk\":38900,\"ĠVictim\":38901,\"Ġ289\":38902,\"Ġecstasy\":38903,\"ĠBinding\":38904,\"585\":38905,\"ĠMelody\":38906,\"578\":38907,\"otally\":38908,\"ĠEtsy\":38909,\"liga\":38910,\"Ġapplauded\":38911,\"Ġsweating\":38912,\"Ġredistributed\":38913,\"Ġpopcorn\":38914,\"Ġseminal\":38915,\"fur\":38916,\"ĠNeuroscience\":38917,\"Rand\":38918,\"ĠOst\":38919,\"ĠMadden\":38920,\"ĠIncreasing\":38921,\"ĠDawkins\":38922,\"ĠSubway\":38923,\"Ġarsen\":38924,\"conserv\":38925,\"BUR\":38926,\"Ġspiked\":38927,\"ĠLyft\":38928,\"ĠImperium\":38929,\"ĠDropbox\":38930,\"Ġfavoured\":38931,\"Ġencompasses\":38932,\"ghost\":38933,\"Ġinspires\":38934,\"Ġburgeoning\":38935,\"ĠYoshi\":38936,\"ĠVertical\":38937,\"ĠAuditor\":38938,\"Ġintending\":38939,\"Ġfilibuster\":38940,\"Bloom\":38941,\"fac\":38942,\"ĠCavs\":38943,\"igning\":38944,\"Ġcoworkers\":38945,\"ĠBarbarian\":38946,\"remember\":38947,\"FLAG\":38948,\"Ġauditory\":38949,\"asonry\":38950,\"College\":38951,\"Ġmuted\":38952,\"gemony\":38953,\"obin\":38954,\"ĠPsycho\":38955,\"968\":38956,\"Ġlavish\":38957,\"Ġhierarchical\":38958,\"ĠDrone\":38959,\"ouk\":38960,\"Ġcrippled\":38961,\"ĠMaxim\":38962,\"Slot\":38963,\"Ġquiz\":38964,\"ĠVid\":38965,\"ifling\":38966,\"Ġarchaeologists\":38967,\"Ġabandonment\":38968,\"dial\":38969,\"leon\":38970,\"ĠFas\":38971,\"Ted\":38972,\"Ġraspberry\":38973,\"Ġmaneuvers\":38974,\"Ġbehaviours\":38975,\"Ġinsure\":38976,\"Ġremod\":38977,\"Switch\":38978,\"hoe\":38979,\"Ġspaced\":38980,\"Ġaffordability\":38981,\"ĠFern\":38982,\"notation\":38983,\"ĠBalanced\":38984,\"Ġoccupies\":38985,\"environment\":38986,\"Ġnecklace\":38987,\"Ġsedan\":38988,\"FU\":38989,\"ĠBravo\":38990,\"Ġabusers\":38991,\"ĠAnita\":38992,\"metadata\":38993,\"ĠGithub\":38994,\"aito\":38995,\"ĠFaster\":38996,\"ĠWasserman\":38997,\"ĠFlesh\":38998,\"Ġthorn\":38999,\"rarily\":39000,\"ĠMerry\":39001,\"wine\":39002,\"Ġpopulace\":39003,\"ĠLann\":39004,\"Ġrepairing\":39005,\"Ġpsyche\":39006,\"Ġmodulation\":39007,\"awaru\":39008,\"âĢĭâĢĭ\":39009,\"arij\":39010,\"Ġdecorations\":39011,\"Ġapologise\":39012,\"ĠGarg\":39013,\"apply\":39014,\"Ġgiveaway\":39015,\"ĠFlan\":39016,\"ĠWyatt\":39017,\"Uber\":39018,\"Ġauthorised\":39019,\"ĠMoral\":39020,\"HAHAHAHA\":39021,\"activate\":39022,\"Ġtorpedo\":39023,\"ĠFAR\":39024,\"Ġamassed\":39025,\"ĠAram\":39026,\"arkin\":39027,\"ĠVictims\":39028,\"stab\":39029,\"Ġom\":39030,\"ĠECO\":39031,\"Ġopioids\":39032,\"Ġpurposely\":39033,\"ĠVest\":39034,\"Ġerg\":39035,\"atan\":39036,\"ĠSurgery\":39037,\"Ġcorrecting\":39038,\"ĠOrtiz\":39039,\"ĠBeet\":39040,\"Ġrevoke\":39041,\"Ġfreeway\":39042,\"ĠHiggins\":39043,\"Fail\":39044,\"ĠFarms\":39045,\"ĠATP\":39046,\"hound\":39047,\"Ġpoking\":39048,\"ĠCommunists\":39049,\"monster\":39050,\"imentary\":39051,\"Ġunlocking\":39052,\"Ġunfit\":39053,\"weed\":39054,\"enario\":39055,\"atical\":39056,\"ĠEnlightenment\":39057,\"ĠNG\":39058,\"ĠCompensation\":39059,\"deen\":39060,\"ĠWidow\":39061,\"ĠCindy\":39062,\"ĠAfterwards\":39063,\"Ġ6000\":39064,\"ikhail\":39065,\"agically\":39066,\"Ġratified\":39067,\"Ġcasualty\":39068,\"HOME\":39069,\"psey\":39070,\"fee\":39071,\"Ġsparkling\":39072,\"ĠdÃ©\":39073,\"Ġconcerted\":39074,\"Catal\":39075,\"Ġcomplying\":39076,\"ĠAres\":39077,\"ĠDent\":39078,\"Shut\":39079,\"Ġskim\":39080,\"administ\":39081,\"Ġhostilities\":39082,\"ĠGins\":39083,\"Ġ608\":39084,\"Ġmuddy\":39085,\"ĠMcInt\":39086,\"ĠDecay\":39087,\"525\":39088,\"Ġconspicuous\":39089,\"ĠExposure\":39090,\"Ġrescind\":39091,\"Ġwearable\":39092,\"Ġ328\":39093,\"ourmet\":39094,\"ahs\":39095,\"ĠRobots\":39096,\"Ġeclips\":39097,\"instance\":39098,\"ĠREPORT\":39099,\"ĠAppl\":39100,\"030\":39101,\"ĠSkies\":39102,\"0100\":39103,\"Ġfallacy\":39104,\"Socket\":39105,\"ĠReceiver\":39106,\"Ġsolves\":39107,\"ĠButterfly\":39108,\"ĠShopping\":39109,\"ĠFIRE\":39110,\"654\":39111,\"Medic\":39112,\"Ġsingers\":39113,\"ĠNeedless\":39114,\"''''\":39115,\"ishers\":39116,\"ĠDive\":39117,\"588\":39118,\"Ġselectively\":39119,\"Ġclumsy\":39120,\"889\":39121,\"Ġpurchaser\":39122,\"earned\":39123,\"ardy\":39124,\"Ġbenefiting\":39125,\"english\":39126,\"Ġyielding\":39127,\"ĠPour\":39128,\"Ġspinach\":39129,\"Ġdelve\":39130,\"ĠCrom\":39131,\"610\":39132,\"Ġexporting\":39133,\"ĠMAKE\":39134,\"Ġ263\":39135,\"Ġgrop\":39136,\"Ġenvoy\":39137,\"ĠInquiry\":39138,\"ĠLuigi\":39139,\"dry\":39140,\"ĠTuring\":39141,\"ThumbnailImage\":39142,\"ĠVariety\":39143,\"Ġfacet\":39144,\"Ġfluffy\":39145,\"Ġexcerpts\":39146,\"Ġshorth\":39147,\"ĠOlsen\":39148,\"CLUD\":39149,\"Ġreliant\":39150,\"ĠUNC\":39151,\"Tour\":39152,\"Ġbathing\":39153,\"Company\":39154,\"Ġglobalization\":39155,\"Pred\":39156,\"ĠMalfoy\":39157,\"Ġhoc\":39158,\"jam\":39159,\"crafted\":39160,\"ĠBonds\":39161,\"ĠKissinger\":39162,\"England\":39163,\"Ġorderly\":39164,\"catentry\":39165,\"Ġ261\":39166,\"Ġexchanging\":39167,\"ĠIntent\":39168,\"ĠAmendments\":39169,\"DOM\":39170,\"Ġstout\":39171,\"ÂłÂłÂłÂłÂłÂłÂłÂłÂłÂłÂłÂłÂłÂłÂłÂł\":39172,\"ĠAirbus\":39173,\"Ġ278\":39174,\"hyde\":39175,\"Poll\":39176,\"ItemThumbnailImage\":39177,\"Ġloopholes\":39178,\"ĠPillar\":39179,\"Ġexplor\":39180,\"Stretch\":39181,\"Apart\":39182,\"Ġunmarried\":39183,\"Limit\":39184,\"ĠTransformers\":39185,\"Ġintellectually\":39186,\"uncture\":39187,\"1800\":39188,\"Ġdarn\":39189,\"Brazil\":39190,\"Ġleftover\":39191,\"berus\":39192,\"fred\":39193,\"Minecraft\":39194,\"326\":39195,\"ĠForms\":39196,\"Ġproofs\":39197,\"ĠDesigned\":39198,\"Ġindexes\":39199,\"ĠSuppose\":39200,\"EMS\":39201,\"ĠLoving\":39202,\"ĠBonnie\":39203,\"imating\":39204,\"OTUS\":39205,\"Ġconductor\":39206,\"Ġbehaved\":39207,\"ĠFren\":39208,\"Ġsynerg\":39209,\"Ġmillennium\":39210,\"Ġcatering\":39211,\"ĠLauder\":39212,\"Wr\":39213,\"ĠYiannopoulos\":39214,\"ĠATF\":39215,\"Ġenslaved\":39216,\"Ġawakened\":39217,\"DVD\":39218,\"ĠEDITION\":39219,\"ĠConcert\":39220,\"ĠChallenger\":39221,\"ĠHaku\":39222,\"umeric\":39223,\"Ġdeprecated\":39224,\"ĠSHAR\":39225,\"412\":39226,\"Ġdystop\":39227,\"Ġtrembling\":39228,\"Ġdreaded\":39229,\"ĠSpac\":39230,\"padding\":39231,\"Repl\":39232,\"ĠGarrison\":39233,\"Mini\":39234,\"Ġunparalleled\":39235,\"amar\":39236,\"URRENT\":39237,\"wreck\":39238,\"certain\":39239,\"tal\":39240,\"ĠCLS\":39241,\"appings\":39242,\"Ġsensed\":39243,\"Ġfencing\":39244,\"ĠPaso\":39245,\"ĠDesk\":39246,\"Ġscoff\":39247,\"Ġcontemplate\":39248,\"ĠLiga\":39249,\"liquid\":39250,\"757\":39251,\"Ġapprentice\":39252,\"ĠUCHIJ\":39253,\"570\":39254,\"ĠThousand\":39255,\"ĠIllum\":39256,\"Ġchampioned\":39257,\"ãĤĮ\":39258,\"Ġelectors\":39259,\"Ġ398\":39260,\"ĠHancock\":39261,\"rounded\":39262,\"ĠJOHN\":39263,\"Ġunsatisf\":39264,\"Ġqualifier\":39265,\"ĠGadget\":39266,\"ENE\":39267,\"Ġdeadliest\":39268,\"ĠPlants\":39269,\"Ġions\":39270,\"Ġaccents\":39271,\"Ġtweaking\":39272,\"Ġshaved\":39273,\"FREE\":39274,\"ĠChaser\":39275,\"Against\":39276,\"960\":39277,\"Ġmethamphetamine\":39278,\"Ġnormalized\":39279,\"Ġ$\\\\\":39280,\"ĠPrecision\":39281,\"ĠGuam\":39282,\"Ġchoked\":39283,\"ĠXII\":39284,\"ĠCasting\":39285,\"Torrent\":39286,\"Ġscalp\":39287,\"ĠJaguar\":39288,\"wit\":39289,\"Ġsemic\":39290,\"ixie\":39291,\"ĠGould\":39292,\"Ġconfines\":39293,\"Nusra\":39294,\"ĠLon\":39295,\"ĠJugg\":39296,\"ycle\":39297,\"ĠCodec\":39298,\"Egypt\":39299,\"Ġrestrain\":39300,\"ĠAliens\":39301,\"Ġchoking\":39302,\"ĠDunk\":39303,\"ĠBella\":39304,\"abc\":39305,\"Ġslang\":39306,\"Ġneurotrans\":39307,\"sav\":39308,\"Ġempowerment\":39309,\"âĨĴ\":39310,\"Ġclimbers\":39311,\"ĠMim\":39312,\"ĠFra\":39313,\"rosse\":39314,\"Capital\":39315,\"ĠCthulhu\":39316,\"Interface\":39317,\"Ġproficient\":39318,\"ĠINTO\":39319,\"Ġ318\":39320,\"rontal\":39321,\"580\":39322,\"ĠDespair\":39323,\"Kenn\":39324,\"Ġscrimmage\":39325,\"ĠCoat\":39326,\"asions\":39327,\"Ġwallpaper\":39328,\"ĠJol\":39329,\"Ġresurgence\":39330,\"Ġantiv\":39331,\"ĠBalls\":39332,\"²¾\":39333,\"Ġbuffers\":39334,\"Ġsubsystem\":39335,\"ĠStellar\":39336,\"ĠLung\":39337,\"AIDS\":39338,\"Ġeradicate\":39339,\"Ġblatantly\":39340,\"Ġbehaves\":39341,\"ĠNun\":39342,\"Ġantics\":39343,\"export\":39344,\"DEV\":39345,\"wb\":39346,\"Ġphp\":39347,\"ĠIntegrity\":39348,\"Ġexplorer\":39349,\"Ġrevolving\":39350,\"authored\":39351,\"gans\":39352,\"Ġbask\":39353,\"Ġasynchronous\":39354,\"åį\":39355,\"THING\":39356,\"698\":39357,\"Gene\":39358,\"ĠRacer\":39359,\"ĠNico\":39360,\"issued\":39361,\"Ġsermon\":39362,\"possibly\":39363,\"Ġsizeof\":39364,\"Ġentrepreneurial\":39365,\"oxin\":39366,\"ĠMinerva\":39367,\"Ġplatoon\":39368,\"nos\":39369,\"riks\":39370,\"AUT\":39371,\"ĠAvalanche\":39372,\"ĠDesc\":39373,\"ĳå£«\":39374,\"ĠPoc\":39375,\"Ġconferred\":39376,\"Î»\":39377,\"Ġpatched\":39378,\"FBI\":39379,\"662\":39380,\"Ġfractures\":39381,\"Ġdetects\":39382,\"Ġdedicate\":39383,\"Ġconstituent\":39384,\"Ġcosmos\":39385,\"WT\":39386,\"Ġsweats\":39387,\"Ġsprung\":39388,\"bara\":39389,\"solid\":39390,\"Ġunsus\":39391,\"Ġbulky\":39392,\"ĠPhilippe\":39393,\"ĠFenrir\":39394,\"Ġtherapists\":39395,\"oreal\":39396,\"^^^^\":39397,\"Ġtotaled\":39398,\"Ġbooze\":39399,\"ĠRPC\":39400,\"Prosecutors\":39401,\"Ġdiseng\":39402,\"ĠShared\":39403,\"Ġmotorcycles\":39404,\"Ġinventions\":39405,\"Ġlettuce\":39406,\"ĠMerge\":39407,\"ĠJC\":39408,\"Ġspirituality\":39409,\"ĠWARNING\":39410,\"Ġunlucky\":39411,\"ĠTess\":39412,\"Ġtongues\":39413,\"ĠDUI\":39414,\"Tumblr\":39415,\"Ġleans\":39416,\"Ġinvaders\":39417,\"Ġcanopy\":39418,\"ĠHurricanes\":39419,\"ĠBret\":39420,\"ĠAPPLIC\":39421,\"idine\":39422,\"ickle\":39423,\"Regarding\":39424,\"Ġveggies\":39425,\"Ġejac\":39426,\"juven\":39427,\"Fish\":39428,\"DEM\":39429,\"ĠDino\":39430,\"Throw\":39431,\"ĠChecking\":39432,\"beard\":39433,\"(&\":39434,\"Ġjails\":39435,\"Ġhr\":39436,\"transfer\":39437,\"ivating\":39438,\"Ġfleets\":39439,\"ĠImag\":39440,\"ĠMcDonnell\":39441,\"Ġsnippet\":39442,\"Isa\":39443,\"ĠChatt\":39444,\"ĠStain\":39445,\"ĠSetFontSize\":39446,\"ĠOy\":39447,\"ĠMathematics\":39448,\"494\":39449,\"Ġelectroly\":39450,\"ĠGott\":39451,\"ĠBras\":39452,\"BOOK\":39453,\"ĠFinger\":39454,\"dump\":39455,\"Ġmutants\":39456,\"Ġrentals\":39457,\"Ġintertw\":39458,\"Ġcreek\":39459,\"aila\":39460,\"Brother\":39461,\"ĠDiscord\":39462,\"pee\":39463,\"rawler\":39464,\"Ġcarp\":39465,\"Ġ279\":39466,\"ãĤ·ãĥ£\":39467,\"relations\":39468,\"Ġcontrasts\":39469,\"Column\":39470,\"Ġreconnaissance\":39471,\"Ġunknow\":39472,\"Ġlooting\":39473,\"Ġregulates\":39474,\"Ġoptimum\":39475,\"ĠCherokee\":39476,\"ĠAry\":39477,\"Latest\":39478,\"Ġroadside\":39479,\"Ġdanced\":39480,\"ĠUnicorn\":39481,\"Acknowled\":39482,\"Ġuncontroll\":39483,\"ĠMUS\":39484,\"atio\":39485,\"chance\":39486,\"haven\":39487,\"VALUE\":39488,\"Ġfavourites\":39489,\"Ġceremonial\":39490,\"binary\":39491,\"peed\":39492,\"woods\":39493,\"EMP\":39494,\"Ġvascular\":39495,\"Ġcontemplated\":39496,\"Ġbarren\":39497,\"ĠLIST\":39498,\"Yellow\":39499,\"osponsors\":39500,\"Ġwhisky\":39501,\"ĠMamm\":39502,\"ĠDeVos\":39503,\"minimum\":39504,\"Hung\":39505,\"442\":39506,\"Pic\":39507,\"ĠSnapdragon\":39508,\"776\":39509,\"Ġcarving\":39510,\"Ġundecided\":39511,\"Ġadvantageous\":39512,\"Ġpalms\":39513,\"ĠAQ\":39514,\"Ġstarch\":39515,\"Loop\":39516,\"Ġpaddle\":39517,\"Ġflaming\":39518,\"ĠHorizons\":39519,\"Animation\":39520,\"boost\":39521,\"Ġprobabilities\":39522,\"ĠMish\":39523,\"Ġexodus\":39524,\"ĠEditorial\":39525,\"Ġfungus\":39526,\"Ġdissenting\":39527,\"ĠDelicious\":39528,\"rogram\":39529,\"ĠDyn\":39530,\"disk\":39531,\"tom\":39532,\"Ġfabrics\":39533,\"ĠCove\":39534,\"ĠBans\":39535,\"Ġsoften\":39536,\"ĠCONS\":39537,\"Ġineligible\":39538,\"Ġestimating\":39539,\"ĠLexington\":39540,\"practice\":39541,\"ofi\":39542,\"Ġshedding\":39543,\"ĠNope\":39544,\"Ġbreathed\":39545,\"ĠCorinthians\":39546,\"yne\":39547,\"eki\":39548,\"Bull\":39549,\"Ġattaching\":39550,\"reenshots\":39551,\"Ġanalyse\":39552,\"ĠKappa\":39553,\"Ġunsustainable\":39554,\"Ġinterpol\":39555,\"anky\":39556,\"hemer\":39557,\"Ġprotagonists\":39558,\"Ġformatted\":39559,\"ĠBryce\":39560,\"ĠAchilles\":39561,\"ĠAbedin\":39562,\"shock\":39563,\"Ġbum\":39564,\"bos\":39565,\"qua\":39566,\"ĠWarn\":39567,\"qt\":39568,\"ĠDiabetes\":39569,\"864\":39570,\"ĠInvisible\":39571,\"Ġvanish\":39572,\"Ġtransmitting\":39573,\"Ġmurky\":39574,\"ĠFei\":39575,\"Ġawaited\":39576,\"ĠJurassic\":39577,\"ummies\":39578,\"Ġmenacing\":39579,\"gall\":39580,\"Cath\":39581,\"Built\":39582,\"ildo\":39583,\"ĠVotes\":39584,\"Ġont\":39585,\"Ġmunitions\":39586,\"ĠFreem\":39587,\"ÃŃn\":39588,\"Ġdecency\":39589,\"lopp\":39590,\"ieved\":39591,\"ĠGord\":39592,\"Ġunthinkable\":39593,\"ĠNewsweek\":39594,\"Ġ321\":39595,\"Heat\":39596,\"Ġpresenter\":39597,\"jiang\":39598,\"Ġplank\":39599,\"ĠAvalon\":39600,\"Ġbenz\":39601,\"ĠRout\":39602,\"Ġslamming\":39603,\"ĠDai\":39604,\"outer\":39605,\"ĠCookie\":39606,\"ĠAlicia\":39607,\"gey\":39608,\"Ġvanity\":39609,\"Ġowl\":39610,\"áµ\":39611,\"tested\":39612,\"ĠAwakens\":39613,\"Ġcanv\":39614,\"Ġblindly\":39615,\"ĠRidley\":39616,\"ĠEmails\":39617,\"Requires\":39618,\"ĠSerbian\":39619,\"ographed\":39620,\"iframe\":39621,\"eteria\":39622,\"Ġalternating\":39623,\"quiet\":39624,\"Ġsociology\":39625,\"ĠUnlock\":39626,\"ĠCommunism\":39627,\"Ġops\":39628,\"Ġattribution\":39629,\"Ġabduction\":39630,\"ĠAbram\":39631,\"Ġsidelined\":39632,\"ĠBOOK\":39633,\"Ġrefining\":39634,\"ĠFeeling\":39635,\"ĠOslo\":39636,\"ĠPruitt\":39637,\"rack\":39638,\"angible\":39639,\"Ġcautiously\":39640,\"ĠMARK\":39641,\"eeds\":39642,\"Mouse\":39643,\"ĠSteph\":39644,\"ĠPair\":39645,\"Sab\":39646,\"997\":39647,\"ĠBaal\":39648,\"Bec\":39649,\"Ġcomma\":39650,\"ĠPall\":39651,\"ĠGael\":39652,\"Ġmisunderstand\":39653,\"ĠPesh\":39654,\"Orderable\":39655,\"Ġdismal\":39656,\"ĠShiny\":39657,\"%\\\"\":39658,\"Ġrealistically\":39659,\"Ġpatio\":39660,\"ĠGw\":39661,\"ĠVirtue\":39662,\"Ġexhausting\":39663,\"whatever\":39664,\"ophys\":39665,\"yip\":39666,\"418\":39667,\"Adjust\":39668,\"ĠWaiting\":39669,\"esson\":39670,\"ĠMazda\":39671,\"ĠDozens\":39672,\"Ġstreamlined\":39673,\"Ġincompetence\":39674,\"ĠMeth\":39675,\"Ġethos\":39676,\"ONES\":39677,\"Ġincentiv\":39678,\"Ġgritty\":39679,\"ĠButcher\":39680,\"Header\":39681,\"Ġexponential\":39682,\"ÃŁ\":39683,\"Ġcorrelate\":39684,\"Ġconsensual\":39685,\"sounding\":39686,\"Ring\":39687,\"Origin\":39688,\"Ġconclusive\":39689,\"feet\":39690,\"acly\":39691,\"ĠFernandez\":39692,\"Buyable\":39693,\"Ġducks\":39694,\"auntlets\":39695,\"Ġelong\":39696,\"Ġ286\":39697,\"Ġsimul\":39698,\"Gas\":39699,\"ĠKirst\":39700,\"Ġprotr\":39701,\"ĠRobo\":39702,\"ĠAoE\":39703,\"opol\":39704,\"Ġpsychologically\":39705,\"spin\":39706,\"ilaterally\":39707,\"ĠConrad\":39708,\"Wave\":39709,\"441\":39710,\"ĠAdvertisement\":39711,\"ĠHarmon\":39712,\"ĠOriental\":39713,\"isSpecial\":39714,\"Ġpresumptive\":39715,\"Ġwil\":39716,\"ĠKier\":39717,\"nea\":39718,\"Ġppm\":39719,\"Ġharbour\":39720,\"ĠWired\":39721,\"company\":39722,\"Ġcoroner\":39723,\"aturdays\":39724,\"ĠProud\":39725,\"ĠNEXT\":39726,\"ĠFlake\":39727,\"valued\":39728,\"ceiver\":39729,\"Ġfraught\":39730,\"Ġcasing\":39731,\"Ġrunaway\":39732,\"Ġgin\":39733,\"ĠLaurent\":39734,\"ĠHarlem\":39735,\"ĠCuriosity\":39736,\"quished\":39737,\"Ġneuroscience\":39738,\"ĠHulu\":39739,\"Ġborrower\":39740,\"Ġpetitioner\":39741,\"ĠCooldown\":39742,\"WARD\":39743,\"Ġinvoking\":39744,\"confidence\":39745,\"Forward\":39746,\"Ġsts\":39747,\"population\":39748,\"DeliveryDate\":39749,\"Film\":39750,\"ĠCov\":39751,\"quickShip\":39752,\"quickShipAvailable\":39753,\"primary\":39754,\"isSpecialOrderable\":39755,\"inventoryQuantity\":39756,\"channelAvailability\":39757,\"BOX\":39758,\"ĠMultiplayer\":39759,\"ĠJenner\":39760,\"778\":39761,\"ĠMd\":39762,\"Ġ~/.\":39763,\"MN\":39764,\"Ġchildish\":39765,\"Ġantioxidant\":39766,\"ĠChromebook\":39767,\"Ġ274\":39768,\"Ġscreenplay\":39769,\"Ġadventurous\":39770,\"ĠRelationship\":39771,\"responsive\":39772,\"mington\":39773,\"Ġcornerstone\":39774,\"ĠFey\":39775,\"FIR\":39776,\"Ġrookies\":39777,\"ĠFeaturing\":39778,\"Ġoriginate\":39779,\"Ġelectrodes\":39780,\"antes\":39781,\"Ġscriptures\":39782,\"Ġglued\":39783,\"Ġdiscontent\":39784,\"Ġafflicted\":39785,\"layout\":39786,\"Brave\":39787,\"Ġmosa\":39788,\"ĠQuantity\":39789,\"ĠHik\":39790,\"winner\":39791,\"Hours\":39792,\"Ġentail\":39793,\"ĠCells\":39794,\"ologue\":39795,\"Ġvil\":39796,\"Ġpreacher\":39797,\"Ġdecorative\":39798,\"different\":39799,\"Ġprejudices\":39800,\"ĠSmoking\":39801,\"ĠNottingham\":39802,\"soType\":39803,\"Ġrhythms\":39804,\"ĠAlph\":39805,\"blast\":39806,\"Steel\":39807,\"ĠDanielle\":39808,\"Ġstrife\":39809,\"Ġrematch\":39810,\"soDeliveryDate\":39811,\"ĠFork\":39812,\"trip\":39813,\"olulu\":39814,\"heses\":39815,\"CG\":39816,\"ĠPOLITICO\":39817,\"osta\":39818,\"ĠDrift\":39819,\"é¾įå¥\":39820,\"é¾įå¥ĳå£«\":39821,\"Ġvetting\":39822,\"ĠJinping\":39823,\"ĠRecession\":39824,\"Minor\":39825,\"ĠFraud\":39826,\"enfranch\":39827,\"Ġconvened\":39828,\"ĠNAACP\":39829,\"ĠMillions\":39830,\"ĠFarming\":39831,\"ĠWoo\":39832,\"ĠFlare\":39833,\"rito\":39834,\"immigrant\":39835,\"Ġvacancy\":39836,\"ĠHEAD\":39837,\"ĠVaj\":39838,\"egal\":39839,\"ĠVigil\":39840,\"Study\":39841,\"Ġruining\":39842,\"Ġracks\":39843,\"Ġheater\":39844,\"ĠRandolph\":39845,\"ĠBrush\":39846,\"ĠTir\":39847,\"Ø¨\":39848,\"Ġcov\":39849,\"%]\":39850,\"Ġrecounts\":39851,\"ĠOPT\":39852,\"ĠMelt\":39853,\"Ġtruce\":39854,\"Ġcasinos\":39855,\"Ġcrusade\":39856,\"Ġcarnage\":39857,\"Ġstripe\":39858,\"ĠKyl\":39859,\"Textures\":39860,\"Ġ698\":39861,\"Ġproclamation\":39862,\"Ġgoodies\":39863,\"Ġ..........\":39864,\"proclaimed\":39865,\"Polit\":39866,\"Ġtopical\":39867,\"Ġspecialize\":39868,\"ĠAmin\":39869,\"gm\":39870,\"Ġanchored\":39871,\"Ġbearings\":39872,\"sample\":39873,\"ĠHighland\":39874,\"ĠAutism\":39875,\"Ġmercenary\":39876,\"Ġinterviewer\":39877,\"LER\":39878,\"ĠSomers\":39879,\"Ġembryo\":39880,\"ĠAssy\":39881,\"Ġ281\":39882,\"ĠEditing\":39883,\"ĠChosen\":39884,\"660\":39885,\"Ġpci\":39886,\"ĠThunderbolt\":39887,\"BILL\":39888,\"Ġchuckled\":39889,\"jriwal\":39890,\"hof\":39891,\"Ġearthly\":39892,\"(){\":39893,\"independence\":39894,\"Ġdispers\":39895,\"ĠVendor\":39896,\"ĠGareth\":39897,\"Ġpals\":39898,\"Penn\":39899,\"ĠSubmit\":39900,\"icum\":39901,\"Thu\":39902,\"Ġclandestine\":39903,\"Ġcannibal\":39904,\"ĠClerk\":39905,\"EStream\":39906,\"galitarian\":39907,\"âĻ¥\":39908,\"gew\":39909,\"Ġhorrend\":39910,\"ĠLov\":39911,\"ĠReaction\":39912,\"ocrin\":39913,\"Classic\":39914,\"Ġechoing\":39915,\"Ġdisclosing\":39916,\"ĠInsight\":39917,\"ogun\":39918,\"ĠIncarn\":39919,\"uploads\":39920,\"pperc\":39921,\"guyen\":39922,\"Ġ1901\":39923,\"ĠBars\":39924,\"687\":39925,\"Ġbribes\":39926,\"ĠFresno\":39927,\"urat\":39928,\"ĠReese\":39929,\"Ġintrusive\":39930,\"Ġgripping\":39931,\"ĠBlueprint\":39932,\"ĠRasm\":39933,\"unia\":39934,\"managed\":39935,\"ĠHebdo\":39936,\"Ġ345\":39937,\"Ġdecoding\":39938,\"Ġpoets\":39939,\"Ġjaws\":39940,\"ĠFIGHT\":39941,\"ameless\":39942,\"ĠMeadows\":39943,\"ĠHarbaugh\":39944,\"Interview\":39945,\"ĠHosp\":39946,\"ĠBRA\":39947,\"Ġdeletion\":39948,\"mob\":39949,\"Walker\":39950,\"ĠMoonlight\":39951,\"ĠJed\":39952,\"ĠSophia\":39953,\"Ġusur\":39954,\"Ġfortunately\":39955,\"ĠPutting\":39956,\"ĠFold\":39957,\"Ġsanitation\":39958,\"Ġpartisans\":39959,\"ISON\":39960,\"Bow\":39961,\"ĠCONC\":39962,\"ĠReduced\":39963,\"ĠSutton\":39964,\"Ġtouchscreen\":39965,\"Ġembryos\":39966,\"âĢ¢âĢ¢âĢ¢âĢ¢\":39967,\"ĠKrug\":39968,\"combat\":39969,\"ĠPetroleum\":39970,\"Ġamd\":39971,\"ĠCosmos\":39972,\"Ġprescribing\":39973,\"Ġconformity\":39974,\"ourses\":39975,\"Ġplentiful\":39976,\"Ġdisillusion\":39977,\"ĠEcology\":39978,\"ittal\":39979,\"Ġfanc\":39980,\"Ġassassinated\":39981,\"regnancy\":39982,\"Ġperennial\":39983,\"ĠBullets\":39984,\"Ġstale\":39985,\"Ġcached\":39986,\"ĠJudith\":39987,\"ĠDiseases\":39988,\"Allen\":39989,\"Ġlas\":39990,\"Ġshards\":39991,\"ĠSuarez\":39992,\"ĠFriendship\":39993,\"interface\":39994,\"ĠSupporters\":39995,\"addons\":39996,\"462\":39997,\"ĠImran\":39998,\"ĠWim\":39999,\"Ġnewfound\":40000,\"ĠMb\":40001,\"Animal\":40002,\"Ġdarling\":40003,\"ande\":40004,\"Ġrhy\":40005,\"ĠTwisted\":40006,\"posal\":40007,\"ynski\":40008,\"Various\":40009,\"×ľ\":40010,\"ĠKiw\":40011,\"uyomi\":40012,\"Ġwellbeing\":40013,\"ĠLau\":40014,\"anos\":40015,\"Ġunmist\":40016,\"ĠmacOS\":40017,\"Ġrestroom\":40018,\"ĠOliv\":40019,\"ĠAirways\":40020,\"Ġtimetable\":40021,\"980\":40022,\"Ġradios\":40023,\"voy\":40024,\"iasco\":40025,\"Ġcloudy\":40026,\"ĠDrawing\":40027,\"Anything\":40028,\"Syria\":40029,\"ĠHert\":40030,\"staking\":40031,\"Ġunchecked\":40032,\"Ġbrazen\":40033,\"ĠNRS\":40034,\"697\":40035,\"onomic\":40036,\"establish\":40037,\"Ġleng\":40038,\"Ġdiagonal\":40039,\"ĠFior\":40040,\"Lair\":40041,\"ĠStard\":40042,\"Ġdeficient\":40043,\"joining\":40044,\"beam\":40045,\"Ġomnip\":40046,\"Ġblender\":40047,\"Ġsunrise\":40048,\"Moore\":40049,\"ĠFault\":40050,\"ĠCostume\":40051,\"ĠMub\":40052,\"Flags\":40053,\"anse\":40054,\"Ġpayout\":40055,\"ĠGovernors\":40056,\"ĠDillon\":40057,\"ĠBanana\":40058,\"Nar\":40059,\"Ġtrailed\":40060,\"Ġimperialist\":40061,\"umann\":40062,\"atsuki\":40063,\"435\":40064,\"ĠRoads\":40065,\"Ġslur\":40066,\"ĠIdeally\":40067,\"Ġtrenches\":40068,\"Ctrl\":40069,\"Ġmirrored\":40070,\"ĠZel\":40071,\"ĠCrest\":40072,\"Compat\":40073,\"ĠRolls\":40074,\"scrib\":40075,\"ĠTrails\":40076,\"ometers\":40077,\"winter\":40078,\"Ġimmortality\":40079,\"ilated\":40080,\"Ġcontradicts\":40081,\"universal\":40082,\"illions\":40083,\"ĠMama\":40084,\"optim\":40085,\"ATURE\":40086,\"Ġgeo\":40087,\"etter\":40088,\"ĠCarlo\":40089,\"424\":40090,\"Ġcanonical\":40091,\"ĠStronghold\":40092,\"near\":40093,\"Ġperfume\":40094,\"Ġorchestra\":40095,\"odiac\":40096,\"Ġuphe\":40097,\"Ġreigning\":40098,\"versive\":40099,\"Ġcaucuses\":40100,\"ĠDEM\":40101,\"Ġinsulted\":40102,\"Ġ------\":40103,\"ĠCrush\":40104,\"Ġrooting\":40105,\"ĠWraith\":40106,\"Ġwhore\":40107,\"Ġtofu\":40108,\"Cmd\":40109,\"ĠBree\":40110,\"Ġ$_\":40111,\"Ġrive\":40112,\"ĠAdvertising\":40113,\"Ġwatt\":40114,\"ĠHO\":40115,\"Ġpersuasive\":40116,\"ĠParameters\":40117,\"Ġobservational\":40118,\"ĠNCT\":40119,\"ĠMoj\":40120,\"ĠSalon\":40121,\"Ġtrunc\":40122,\"Ġexquisite\":40123,\"ĠMara\":40124,\"Ġpoop\":40125,\"ĠANN\":40126,\"Exc\":40127,\"ĠWonderful\":40128,\"ĠTaco\":40129,\"Ġhomeowner\":40130,\"ĠSmithsonian\":40131,\"orporated\":40132,\"mmmm\":40133,\"Ġloaf\":40134,\"ĠYamato\":40135,\"ĠIndo\":40136,\"Ġclinging\":40137,\"Ã¡s\":40138,\"Ġimmutable\":40139,\"hub\":40140,\"Orange\":40141,\"Ġfingertips\":40142,\"ĠWooden\":40143,\"ĠKidd\":40144,\"ĠJPM\":40145,\"ĠDamn\":40146,\"Cow\":40147,\"codes\":40148,\"482\":40149,\"Ġinitiating\":40150,\"ĠElk\":40151,\"ĠCutting\":40152,\"Ġabsentee\":40153,\"ĠVance\":40154,\"ĠLilith\":40155,\"GUI\":40156,\"Ġobscured\":40157,\"Ġdwarves\":40158,\"ĠChop\":40159,\"ĠBoko\":40160,\"Values\":40161,\"Ġmultimedia\":40162,\"Ġbrewed\":40163,\"Regular\":40164,\"CRIPTION\":40165,\"ĠMortal\":40166,\"Ġapex\":40167,\"Ġtraveler\":40168,\"Ġboils\":40169,\"Ġspraying\":40170,\"Represent\":40171,\"ĠStarship\":40172,\"428\":40173,\"Ġdisapproval\":40174,\"Ġshadowy\":40175,\"Ġlamented\":40176,\"ĠReplace\":40177,\"ĠFranÃ§\":40178,\"677\":40179,\"dor\":40180,\"Ġunstoppable\":40181,\"Ġcohorts\":40182,\"gyn\":40183,\"ĠClassics\":40184,\"ĠAmph\":40185,\"Ġsluggish\":40186,\"ĠAddiction\":40187,\"ĠPadres\":40188,\"Ġinscription\":40189,\"Ġinhuman\":40190,\"minus\":40191,\"ĠJeremiah\":40192,\"atars\":40193,\"Terror\":40194,\"ĠTos\":40195,\"ĠSharma\":40196,\"asta\":40197,\"catch\":40198,\"Ġplumbing\":40199,\"ĠTimbers\":40200,\"Shar\":40201,\"Hal\":40202,\"ĠOsc\":40203,\"Ġcoupling\":40204,\"humans\":40205,\"Ġsponge\":40206,\"Ġidols\":40207,\"ĠSpa\":40208,\"ĠAdvocate\":40209,\"ĠBeats\":40210,\"lua\":40211,\"Ġticking\":40212,\"Ġloader\":40213,\"ĠGron\":40214,\"810\":40215,\"Ġstimulated\":40216,\"Ġsidebar\":40217,\"ĠManufacturer\":40218,\"oreAnd\":40219,\"1973\":40220,\"Ġpraises\":40221,\"ĠFlores\":40222,\"disable\":40223,\"ĠElectrical\":40224,\"raise\":40225,\"Eth\":40226,\"Ġmigrated\":40227,\"Ġlecturer\":40228,\"Kids\":40229,\"ĠCavern\":40230,\"Ġkettle\":40231,\"Ġglyc\":40232,\"ĠMandela\":40233,\"ĠFully\":40234,\"å§«\":40235,\"FINEST\":40236,\"Ġsqueezing\":40237,\"ĠRyder\":40238,\"ampoo\":40239,\"oreAndOnline\":40240,\"InstoreAndOnline\":40241,\"BuyableInstoreAndOnline\":40242,\"Ġcommemorate\":40243,\"ĠRampage\":40244,\"Austin\":40245,\"ĠShroud\":40246,\"ĠRuins\":40247,\"915\":40248,\"ĠKH\":40249,\"Ġwaterfront\":40250,\"ĠESC\":40251,\"baby\":40252,\"ĠCout\":40253,\"ĠEmblem\":40254,\"Ġequivalents\":40255,\"492\":40256,\"Unique\":40257,\"ĠNietzsche\":40258,\"browser\":40259,\"Ġimitation\":40260,\"ĠWerewolf\":40261,\"ĠKirin\":40262,\"acas\":40263,\"',\\\"\":40264,\"ĠÃ¾\":40265,\"Reviewed\":40266,\"Ġcunt\":40267,\"Ġvoic\":40268,\"ĠLenovo\":40269,\"Ġbonded\":40270,\"481\":40271,\"Ġinhibitors\":40272,\"Ġendeavors\":40273,\"ĠHavana\":40274,\"ĠStout\":40275,\"ĠJolly\":40276,\"Actor\":40277,\"*/(\":40278,\"Ġoccurrences\":40279,\"ĠTens\":40280,\"Increased\":40281,\"ĠACTION\":40282,\"ĠãĢĮ\":40283,\"ĠRankings\":40284,\"ĠBreat\":40285,\"Ġ309\":40286,\"Dou\":40287,\"Ġimpacting\":40288,\"ĠDuchess\":40289,\"prefix\":40290,\"QB\":40291,\"Ġsummoning\":40292,\"Ġbestowed\":40293,\"ĠKepler\":40294,\"ĠPOWER\":40295,\"cube\":40296,\"ĠKits\":40297,\"ĠGrip\":40298,\"Ġopium\":40299,\"Ġreputable\":40300,\"toc\":40301,\"ichael\":40302,\"ĠRipple\":40303,\"ĠcafÃ©\":40304,\"ĠZoom\":40305,\"ĠBurma\":40306,\"Ġwaive\":40307,\"Ġstalls\":40308,\"Ġdemeanor\":40309,\"incerity\":40310,\"Ġfluoride\":40311,\"ĠSHOULD\":40312,\"Paris\":40313,\"Ġlonging\":40314,\"Ġplat\":40315,\"Ġgrossly\":40316,\"Ġbulls\":40317,\"Ġshowcasing\":40318,\"expected\":40319,\"ĠGaddafi\":40320,\"engineering\":40321,\"Repeat\":40322,\"ĠKut\":40323,\"Ġconceivable\":40324,\"Ġtrimmed\":40325,\"oscope\":40326,\"ĠCandidate\":40327,\"ĠTears\":40328,\"rolog\":40329,\"Lewis\":40330,\"SUP\":40331,\"Ġroadmap\":40332,\"Ġsaliva\":40333,\"Ġtrumpet\":40334,\"Jimmy\":40335,\"Ġmiraculous\":40336,\"Ġcolonization\":40337,\"Ġamput\":40338,\"ĠGNOME\":40339,\"atech\":40340,\"Different\":40341,\"ĠELE\":40342,\"ĠGovernments\":40343,\"ĠAhead\":40344,\"ãħĭãħĭ\":40345,\"wordpress\":40346,\"LIB\":40347,\"ĠInclude\":40348,\"ĠDorothy\":40349,\"045\":40350,\"ĠColombian\":40351,\"Ġleased\":40352,\"884\":40353,\"Ġdegrading\":40354,\"ĠDaisy\":40355,\"iations\":40356,\"Ġbaptized\":40357,\"Ġsurname\":40358,\"cox\":40359,\"Ġblinked\":40360,\"ãĥ¢\":40361,\"Ġpollen\":40362,\"Ġdermat\":40363,\"Ġregex\":40364,\"ĠNicholson\":40365,\"ĠEater\":40366,\"çľ\":40367,\"rador\":40368,\"Ġnarrower\":40369,\"Ġhurricanes\":40370,\"Ġhallucinations\":40371,\"ridden\":40372,\"ISSION\":40373,\"ĠFirefly\":40374,\"Ġattainment\":40375,\"Ġnominate\":40376,\"Ġavocado\":40377,\"ĠMeredith\":40378,\"Ġts\":40379,\"Ġreverence\":40380,\"Ġeuph\":40381,\"Ġcrates\":40382,\"ĠTEXT\":40383,\"Ġ443\":40384,\"Ġ319\":40385,\"JSON\":40386,\"iquette\":40387,\"Ġshortstop\":40388,\"ickey\":40389,\"Ġpropelled\":40390,\"Ġapi\":40391,\"ĠThieves\":40392,\"779\":40393,\"Ġoversaw\":40394,\"Ġcoli\":40395,\"ĠNicola\":40396,\"Ġovercl\":40397,\"ikawa\":40398,\"ĠCyr\":40399,\"Ġ384\":40400,\"789\":40401,\"ĠAllows\":40402,\"1027\":40403,\"Detroit\":40404,\"TRY\":40405,\"setup\":40406,\"ĠSocialism\":40407,\"Soviet\":40408,\"susp\":40409,\"ĠAPR\":40410,\"ĠShutdown\":40411,\"Ġaluminium\":40412,\"zbek\":40413,\"ĠLover\":40414,\"GGGGGGGG\":40415,\"Ġdemocracies\":40416,\"Ġ1908\":40417,\"ĠMerrill\":40418,\"ĠFrancois\":40419,\"gdala\":40420,\"Ġtraffickers\":40421,\"ĠTil\":40422,\"ĠGoat\":40423,\"Ġsped\":40424,\"ĠReserv\":40425,\"Ġprod\":40426,\"552\":40427,\"Ġcac\":40428,\"ĠUniv\":40429,\"ĠSchwe\":40430,\"Ġswirling\":40431,\"ĠWilderness\":40432,\"ĠEggs\":40433,\"Ġsaddened\":40434,\"Ġarchaic\":40435,\"Hyd\":40436,\"Ġexcessively\":40437,\"BRE\":40438,\"Ġaerospace\":40439,\"ĠVoices\":40440,\"Craig\":40441,\"Ġignited\":40442,\"Initially\":40443,\"ĠMcA\":40444,\"Ġhandset\":40445,\"Ġreforming\":40446,\"Ġfrustrations\":40447,\"ĠDeadpool\":40448,\"ĠBelichick\":40449,\"ractor\":40450,\"ĠRagnarok\":40451,\"ĠDrupal\":40452,\"ĠApproximately\":40453,\"1920\":40454,\"ĠHubble\":40455,\"armor\":40456,\"ĠSaras\":40457,\"ĠJonas\":40458,\"Ġnostalgic\":40459,\"Ġfeasibility\":40460,\"Saharan\":40461,\"Ġorbiting\":40462,\"Ġ970\":40463,\"Ru\":40464,\"Ġshin\":40465,\"ĠInvestigators\":40466,\"Ġinconsistencies\":40467,\"ĠPAN\":40468,\"BG\":40469,\"Ġgrazing\":40470,\"Ġdetectors\":40471,\"ĠStartup\":40472,\"ĠFunny\":40473,\"ĠNaomi\":40474,\"Considering\":40475,\"Ġhog\":40476,\"utf\":40477,\"cemic\":40478,\"Ġfortified\":40479,\"ĠFunctions\":40480,\"Ġcodec\":40481,\"nutrition\":40482,\"Hat\":40483,\"\\\"!\":40484,\"microsoft\":40485,\"558\":40486,\"ĠThin\":40487,\"ĠACE\":40488,\"Alias\":40489,\"ĠOPS\":40490,\"papers\":40491,\"PK\":40492,\"ãĢİ\":40493,\"Ġimprobable\":40494,\"Northern\":40495,\"equal\":40496,\"Ġlookout\":40497,\"Ġtyres\":40498,\"ĠModified\":40499,\"ĠKop\":40500,\"Absolutely\":40501,\"Ġbuildup\":40502,\"silver\":40503,\"Ġaudi\":40504,\"Ġgrotesque\":40505,\"ĠSaber\":40506,\"ĠPresbyter\":40507,\"ONY\":40508,\"Ġglaciers\":40509,\"ĠShoals\":40510,\"ĠKass\":40511,\"ĠHRC\":40512,\"ĠNicol\":40513,\"ĠLunch\":40514,\"ĠFoss\":40515,\"âĸĴ\":40516,\"ADRA\":40517,\"ĠOnePlus\":40518,\"oing\":40519,\"grounds\":40520,\"Ġincidental\":40521,\"Ġdatasets\":40522,\"689\":40523,\"ĠClarkson\":40524,\"Ġassembling\":40525,\"ĠCorrections\":40526,\"Ġdrinkers\":40527,\"Ġqualifiers\":40528,\"Ġleash\":40529,\"Ġunfounded\":40530,\"ĠHundred\":40531,\"Ġkickoff\":40532,\"Ti\":40533,\"Ġreconcil\":40534,\"ĠGrants\":40535,\"ĠCompliance\":40536,\"ĠDexterity\":40537,\"Ġ1906\":40538,\"warn\":40539,\"Dallas\":40540,\"Maximum\":40541,\"nard\":40542,\"avia\":40543,\"beaut\":40544,\"ensitivity\":40545,\"trace\":40546,\"Ġpioneers\":40547,\"ĠFract\":40548,\"ãĢı\":40549,\"Ġprecept\":40550,\"Ġglossy\":40551,\"ĠIEEE\":40552,\"Across\":40553,\"Ġ680\":40554,\"Sleep\":40555,\"cheon\":40556,\"Ġsatirical\":40557,\"ĠMinotaur\":40558,\"ĠClaude\":40559,\"ĠrÃ©\":40560,\"apego\":40561,\"Ġcarrot\":40562,\"ĠSemin\":40563,\"inoa\":40564,\"Ġzo\":40565,\"Independent\":40566,\"Ġdiagnoses\":40567,\"ĠCue\":40568,\"MAR\":40569,\"Ġrendition\":40570,\"ĠKik\":40571,\"Ġpathology\":40572,\"Ġselects\":40573,\"LinkedIn\":40574,\"Ġassay\":40575,\"ĠDres\":40576,\"Ġtextual\":40577,\"posted\":40578,\"ITAL\":40579,\"ĠMaul\":40580,\"Neal\":40581,\"Ġinterconnected\":40582,\"Ġerratic\":40583,\"ĠVirus\":40584,\"Ġ530\":40585,\"Ġenvironmentalists\":40586,\"ĠPhelps\":40587,\"Ġengagements\":40588,\"ĠINST\":40589,\"Ġeconomical\":40590,\"noxious\":40591,\"Ġgearing\":40592,\"izzy\":40593,\"Ġfavorably\":40594,\"ĠMcGill\":40595,\"Term\":40596,\"Ġhanged\":40597,\"Ġballpark\":40598,\"ĠReyes\":40599,\"Ġbeware\":40600,\"ĠPsal\":40601,\"ĠMassacre\":40602,\"qi\":40603,\"Ġinaccessible\":40604,\"aclysm\":40605,\"Ġfray\":40606,\"illac\":40607,\"Ġbitterly\":40608,\"ĠCertification\":40609,\"Michigan\":40610,\"Ġirrespective\":40611,\"alore\":40612,\"Empty\":40613,\"Ġendorsements\":40614,\"Ġundet\":40615,\"fg\":40616,\"equipped\":40617,\"Ġmerciless\":40618,\"ĠCust\":40619,\"Ġimmature\":40620,\"Ġvoucher\":40621,\"ĠBlackwell\":40622,\"Ñı\":40623,\"hawk\":40624,\"disciplinary\":40625,\"ilee\":40626,\"ĠMakoto\":40627,\"ĠDude\":40628,\"ãĥĩãĤ£\":40629,\"Years\":40630,\"Ġinver\":40631,\"Ġshaman\":40632,\"ĠYong\":40633,\"ipel\":40634,\"ellen\":40635,\"ĠCathy\":40636,\"brids\":40637,\"Ġsarc\":40638,\"651\":40639,\"Near\":40640,\"Ġgroundwork\":40641,\"Ġamaz\":40642,\"Ġ415\":40643,\"ĠHuntington\":40644,\"hews\":40645,\"ĠBung\":40646,\"Ġarbitrarily\":40647,\"ĠWit\":40648,\"ĠAlberto\":40649,\"Ġdisqualified\":40650,\"bestos\":40651,\"461\":40652,\"Ġpc\":40653,\"Ġ284\":40654,\"robat\":40655,\"Robin\":40656,\"Ġhugs\":40657,\"ĠTransition\":40658,\"ĠOccasionally\":40659,\"Ġ326\":40660,\"ĠWhilst\":40661,\"ĠLey\":40662,\"Ġspaceship\":40663,\"csv\":40664,\"Ġunsuccessfully\":40665,\"ĠAu\":40666,\"leck\":40667,\"ĠWinged\":40668,\"ĠGrizzlies\":40669,\".ï¿½\":40670,\"Ġnearer\":40671,\"ĠSorceress\":40672,\"ĠIndigo\":40673,\"Else\":40674,\"840\":40675,\"letes\":40676,\"Coach\":40677,\"Ġupbringing\":40678,\"ĠKes\":40679,\"Ġseparatist\":40680,\"Ġracists\":40681,\"Ġchained\":40682,\"Ġabstinence\":40683,\"learning\":40684,\"Ġreinstated\":40685,\"Ġsymmetry\":40686,\"Ġreminders\":40687,\"ĠChevy\":40688,\"Ġmont\":40689,\"Ġexemplary\":40690,\"ĠTOR\":40691,\"ZX\":40692,\"Ġqualitative\":40693,\"ĠStamp\":40694,\"ĠSavannah\":40695,\"ĠRossi\":40696,\"Ġpaed\":40697,\"Ġdispensaries\":40698,\"ĠWalls\":40699,\"ĠChronic\":40700,\"Ġcomplimentary\":40701,\"ĠBeirut\":40702,\"Ġ+---\":40703,\"igslist\":40704,\"Ġcryptographic\":40705,\"masters\":40706,\"ĠCapitals\":40707,\"Ġmaximal\":40708,\"Ġentropy\":40709,\"Points\":40710,\"Ġcombatants\":40711,\"lip\":40712,\"ĠGlob\":40713,\"ĠBMC\":40714,\"phase\":40715,\"thank\":40716,\"HTTP\":40717,\"Ġcommuter\":40718,\"Ġ\\\\(\\\\\":40719,\"../\":40720,\"ĠRegener\":40721,\"ĠDOI\":40722,\"ĠActivision\":40723,\"Ġslit\":40724,\"osal\":40725,\"REM\":40726,\"Ġchants\":40727,\"Yu\":40728,\"Keys\":40729,\"Brexit\":40730,\"ĠForced\":40731,\"Arizona\":40732,\"Ġsquadron\":40733,\"ISO\":40734,\"ĠMalone\":40735,\"Ġ338\":40736,\"Ġcontrasting\":40737,\"Ġtidal\":40738,\"Ġlibel\":40739,\"Ġimplanted\":40740,\"Ġuproar\":40741,\"ĠCater\":40742,\"Ġpropositions\":40743,\"Manchester\":40744,\"ĠEuros\":40745,\"itamin\":40746,\"Gil\":40747,\"ĠElven\":40748,\"ĠSeek\":40749,\"ĠBai\":40750,\"Ġredevelopment\":40751,\"ĠTowns\":40752,\"ĠLub\":40753,\"!\\\",\":40754,\"alon\":40755,\"Krist\":40756,\"Ġmeasurable\":40757,\"Ġimaginable\":40758,\"Ġapostles\":40759,\"YN\":40760,\"760\":40761,\"Ġsteroid\":40762,\"Ġspecificity\":40763,\"ĠLocated\":40764,\"ĠBecker\":40765,\"ĠEdu\":40766,\"ĠDietary\":40767,\"utsch\":40768,\"ĠMarilyn\":40769,\"Ġblister\":40770,\"ĠMEP\":40771,\"ĠKoz\":40772,\"ĠCMS\":40773,\"yahoo\":40774,\"ĠCarney\":40775,\"Ġboasting\":40776,\"ĠCaleb\":40777,\"Byte\":40778,\"reads\":40779,\"aden\":40780,\"Problem\":40781,\"ĠWoodward\":40782,\"Swe\":40783,\"Sup\":40784,\"ĠKGB\":40785,\"Setup\":40786,\"Ġtacit\":40787,\"Ġretribution\":40788,\"Ġdues\":40789,\"ĠMÃ¼\":40790,\".?\":40791,\"ä¸Ń\":40792,\"pots\":40793,\"Ġcameo\":40794,\"ĠPAL\":40795,\"education\":40796,\"Amy\":40797,\"likely\":40798,\"gling\":40799,\"Ġconstitutionally\":40800,\"ĠHamm\":40801,\"ĠSpeak\":40802,\"Ġwidgets\":40803,\"brate\":40804,\"Ġcrappy\":40805,\"ĠIter\":40806,\"Ġanticipating\":40807,\"ĠBout\":40808,\"Pixel\":40809,\"ĠYep\":40810,\"ĠLaurie\":40811,\"Ġhut\":40812,\"Ġbulletin\":40813,\"ĠSalvation\":40814,\"Ġchats\":40815,\"earable\":40816,\"Honestly\":40817,\"ALTH\":40818,\"onsequ\":40819,\"cult\":40820,\"iscovery\":40821,\"ovych\":40822,\"Ġselves\":40823,\"ĠSatoshi\":40824,\"Sounds\":40825,\"Ġconvergence\":40826,\"ĠRosenberg\":40827,\"1974\":40828,\"Ġnasal\":40829,\"Ġfullest\":40830,\"Ġferocious\":40831,\"xus\":40832,\"iste\":40833,\"AMS\":40834,\"Ġlobbied\":40835,\"Ġsoothing\":40836,\"ĠGunn\":40837,\"today\":40838,\"024\":40839,\"Ġinspirational\":40840,\"ĠNBN\":40841,\"pb\":40842,\"gewater\":40843,\"orah\":40844,\"allowed\":40845,\"ĠColiseum\":40846,\"Ġspecializing\":40847,\"Ġinsanely\":40848,\"ĠTape\":40849,\"delay\":40850,\"Ġtarn\":40851,\"ĠPound\":40852,\"Ġmelanch\":40853,\"Ġdeployments\":40854,\"iland\":40855,\"Ġlessen\":40856,\"Ġfurry\":40857,\"ĠUEFA\":40858,\"Ġbloodshed\":40859,\"ĠMeier\":40860,\"ithering\":40861,\"Ġheirs\":40862,\"ĠJaw\":40863,\"axter\":40864,\"ĠPublications\":40865,\"Ġalters\":40866,\"intention\":40867,\"ĠWinchester\":40868,\"determination\":40869,\"ĠLifetime\":40870,\"thin\":40871,\"Monster\":40872,\"780\":40873,\"Ġapproximation\":40874,\"Ġsupermarkets\":40875,\"ĠSeconds\":40876,\"oros\":40877,\"huge\":40878,\"Ġbribe\":40879,\"ĠLIMITED\":40880,\"uned\":40881,\"Ġmisinterpret\":40882,\"ĠInjury\":40883,\"Ġ367\":40884,\"Ġthresholds\":40885,\"ĠCarnival\":40886,\"Ġgastrointestinal\":40887,\"Ġguideline\":40888,\"Ġdeceived\":40889,\"features\":40890,\"Ġpurportedly\":40891,\"ĠRonnie\":40892,\"ĠNewt\":40893,\"Ġspacious\":40894,\"asus\":40895,\"Ġsuperheroes\":40896,\"ĠCynthia\":40897,\"legged\":40898,\"kamp\":40899,\"chio\":40900,\"Ġthumbnail\":40901,\"ĠShirley\":40902,\"illation\":40903,\"Ġsheds\":40904,\"ĠZy\":40905,\"EPA\":40906,\"Ġdams\":40907,\"Ġyawn\":40908,\"nah\":40909,\"ĠPeggy\":40910,\"ĠErie\":40911,\"ĠJuventus\":40912,\"ĠFountain\":40913,\"rx\":40914,\"donald\":40915,\"album\":40916,\"ĠComprehensive\":40917,\"Ġcaching\":40918,\"ĠUz\":40919,\"ulnerability\":40920,\"ĠPrinciple\":40921,\"ĠJian\":40922,\"ingers\":40923,\"casts\":40924,\"ĠOsiris\":40925,\"chart\":40926,\"tile\":40927,\"ĠTiffany\":40928,\"ĠPatton\":40929,\"ĠWhip\":40930,\"Ġoversized\":40931,\"Je\":40932,\"ĠCinderella\":40933,\"ĠBorders\":40934,\"ĠDaesh\":40935,\"Mah\":40936,\"Ġdogma\":40937,\"Ġcommunists\":40938,\"vu\":40939,\"Council\":40940,\"Ġfreshwater\":40941,\"Ġwounding\":40942,\"Ġdebacle\":40943,\"Ġyoungster\":40944,\"Ġthreaded\":40945,\"ĠBots\":40946,\"ĠSavings\":40947,\"ãģĤ\":40948,\"oling\":40949,\"oho\":40950,\"Ġillumination\":40951,\"MRI\":40952,\"Ġloosen\":40953,\"trump\":40954,\"agency\":40955,\"urion\":40956,\"Ġmomentarily\":40957,\"ĠChun\":40958,\"ĠBudapest\":40959,\"ĠAlley\":40960,\"Disk\":40961,\"Ġastonished\":40962,\"ĠConquer\":40963,\"ĠAccounting\":40964,\"having\":40965,\"ĠWein\":40966,\"ĠAlright\":40967,\"Ġrevolver\":40968,\"Ġdelusion\":40969,\"Ġrelics\":40970,\"Ġadherent\":40971,\"quant\":40972,\"Ġhandmade\":40973,\"orio\":40974,\"Ġcombating\":40975,\"coded\":40976,\"Ġquadru\":40977,\"reth\":40978,\"Nik\":40979,\"ĠTribal\":40980,\"ĠMysterious\":40981,\"Ġinhal\":40982,\"ĠWinning\":40983,\"ĠClassification\":40984,\"changed\":40985,\"Ġunab\":40986,\"Ġscorn\":40987,\"icipated\":40988,\"wl\":40989,\"onductor\":40990,\"Ġreinforcing\":40991,\"ĠChildhood\":40992,\"anova\":40993,\"Ġadventurer\":40994,\"Ġdoctoral\":40995,\"ĠStrategies\":40996,\"Ġengulfed\":40997,\"ĠEncounter\":40998,\"Ġlashes\":40999,\"Critical\":41000,\"ricular\":41001,\"ĠUTF\":41002,\"ociation\":41003,\"checking\":41004,\"ĠConsulting\":41005,\"Runtime\":41006,\"period\":41007,\"ĠAsgard\":41008,\"Ġdistilled\":41009,\"ĠPasadena\":41010,\"ĠDying\":41011,\"ĠCOUNTY\":41012,\"Ġgranite\":41013,\"Ġsmack\":41014,\"Ġparachute\":41015,\"ĠSUR\":41016,\"Virginia\":41017,\"ĠFurious\":41018,\"787\":41019,\"ĠOkin\":41020,\"Ġcamel\":41021,\"ĠMbps\":41022,\"1972\":41023,\"ĠChao\":41024,\"ĠCyan\":41025,\"joice\":41026,\"efer\":41027,\"ĠWrap\":41028,\"ĠDebate\":41029,\"Seg\":41030,\"Ġforearm\":41031,\"ĠIgnore\":41032,\"Ġtimestamp\":41033,\"Ġprobing\":41034,\"ĠNoon\":41035,\"ĠGrail\":41036,\"fen\":41037,\"Ġdormant\":41038,\"ĠFirstly\":41039,\"ĠEighth\":41040,\"ĠHUN\":41041,\"ĠDesire\":41042,\"oras\":41043,\"Girls\":41044,\"ĠDesmond\":41045,\"zar\":41046,\"amines\":41047,\"OAD\":41048,\"execute\":41049,\"Ġboobs\":41050,\"ĠATL\":41051,\"_(\":41052,\"Chelsea\":41053,\"Ġmasturbation\":41054,\"ĠCoC\":41055,\"Ġdestroyer\":41056,\"ĠChomsky\":41057,\"Ġscatter\":41058,\"ĠAssets\":41059,\"796\":41060,\"ĠCargo\":41061,\"Ġreceptive\":41062,\"ĠScope\":41063,\"Ġmarketers\":41064,\"Ġlaunchers\":41065,\"Ġaxle\":41066,\"ĠSEA\":41067,\"seq\":41068,\"ĠMoff\":41069,\"finding\":41070,\"ĠGibbs\":41071,\"Georgia\":41072,\"extremely\":41073,\"NJ\":41074,\"Ġlaborers\":41075,\"stals\":41076,\"Ġmediation\":41077,\"ĠHedge\":41078,\"atown\":41079,\"Ġiod\":41080,\"despite\":41081,\"vill\":41082,\"Jane\":41083,\"existence\":41084,\"Ġcoincided\":41085,\"ĠUtilities\":41086,\"ĠCheap\":41087,\"Ġlogistical\":41088,\"Ġculmination\":41089,\"ĠNicotine\":41090,\"pak\":41091,\"Folder\":41092,\"Ġrodents\":41093,\"stuff\":41094,\"Ġlawfully\":41095,\"Ġreperto\":41096,\"ioch\":41097,\"jj\":41098,\"Dialogue\":41099,\"HHHH\":41100,\"liction\":41101,\"Looks\":41102,\"Ġ297\":41103,\"Ġturrets\":41104,\"ĠAbandon\":41105,\"Ġincess\":41106,\"ĠTrafford\":41107,\"Ġcurled\":41108,\"Ġpreferring\":41109,\"Ġprivatization\":41110,\"Ġirresist\":41111,\"ĠPanda\":41112,\"ĠShake\":41113,\"ĠMcGr\":41114,\"ãĥĦ\":41115,\"unders\":41116,\"Ġdiscriminated\":41117,\"Ġbartender\":41118,\"ILE\":41119,\"Atlantic\":41120,\"Ġpropensity\":41121,\"ĠWiz\":41122,\"ĠGim\":41123,\"conference\":41124,\"Ġreinforces\":41125,\"Gh\":41126,\"wagon\":41127,\"Ġeerie\":41128,\"Fal\":41129,\"Ġhugged\":41130,\"racist\":41131,\"RIC\":41132,\"Fu\":41133,\"Ġfiller\":41134,\"ĠStub\":41135,\"Ġengraved\":41136,\"ĠWrestle\":41137,\"Ġimaginative\":41138,\"ĠPeer\":41139,\"ĠFactors\":41140,\"anus\":41141,\"ĠDracula\":41142,\"monitor\":41143,\"Ġrouters\":41144,\"ibia\":41145,\"ĠBoolean\":41146,\"endale\":41147,\"ĠSlaughter\":41148,\"ĠShack\":41149,\"RFC\":41150,\"ĠSpielberg\":41151,\"Sax\":41152,\"ĠPHOTO\":41153,\"ĠClover\":41154,\"ĠRae\":41155,\"Depending\":41156,\"ĠMemor\":41157,\"aram\":41158,\"Ġpierced\":41159,\"Ġcurtains\":41160,\"vale\":41161,\"ĠInquisition\":41162,\"ĠPoke\":41163,\"Ġforecasting\":41164,\"Ġcomplains\":41165,\"Sense\":41166,\"ĠHermes\":41167,\"iscovered\":41168,\"Ġbible\":41169,\"ĠMorph\":41170,\"Ġgerm\":41171,\"785\":41172,\"DON\":41173,\"Ġcongen\":41174,\"Ġcrane\":41175,\"ĠDPR\":41176,\"Ġrespectfully\":41177,\"Room\":41178,\"ĠNaw\":41179,\"ĠDalai\":41180,\"reason\":41181,\"ĠAngus\":41182,\"Education\":41183,\"ĠTitanic\":41184,\"Ëľ\":41185,\"Ġoval\":41186,\"united\":41187,\"Ġthirds\":41188,\"Ġmoistur\":41189,\"ĠCPC\":41190,\"Miami\":41191,\"Ġtentacles\":41192,\"ĠPolaris\":41193,\"exc\":41194,\"exclusive\":41195,\"ĠPrairie\":41196,\"Ġcolossal\":41197,\"ĠBlend\":41198,\"surprisingly\":41199,\"ÃŃs\":41200,\"Ġindoctr\":41201,\"Ġbasal\":41202,\"ĠMPEG\":41203,\"undo\":41204,\"Split\":41205,\"Development\":41206,\"Ġlantern\":41207,\"1971\":41208,\"Ġprovocation\":41209,\"Ġanguish\":41210,\"ĠBind\":41211,\"ĠLeia\":41212,\"ducers\":41213,\"ippy\":41214,\"conservancy\":41215,\"Ġinitialize\":41216,\"ĠTwice\":41217,\"ĠSuk\":41218,\"Ġpredic\":41219,\"Ġdiploma\":41220,\"Ġsociop\":41221,\"Ingredients\":41222,\"Ġhammered\":41223,\"ĠIrma\":41224,\"Qaida\":41225,\"Ġglimps\":41226,\"ĠBian\":41227,\"Ġstacking\":41228,\"Ġfend\":41229,\"govtrack\":41230,\"Ġunn\":41231,\"democratic\":41232,\"igree\":41233,\"Ġ580\":41234,\"Ġ294\":41235,\"Ġstrawberry\":41236,\"IDER\":41237,\"Ġcherished\":41238,\"ĠHots\":41239,\"Ġinferred\":41240,\"Ġ808\":41241,\"ĠSocrates\":41242,\"Oregon\":41243,\"ĠRoses\":41244,\"ĠFOIA\":41245,\"Ġinsensitive\":41246,\"Ġ408\":41247,\"Recommend\":41248,\"ĠShine\":41249,\"Ġpainstaking\":41250,\"UGE\":41251,\"ĠHeller\":41252,\"ĠEnterprises\":41253,\"IOR\":41254,\"adj\":41255,\"NRS\":41256,\"LG\":41257,\"Ġalienated\":41258,\"Ġacknowledgement\":41259,\"ĠAUD\":41260,\"ĠReneg\":41261,\"Ġvouchers\":41262,\"Ġ960\":41263,\"Ġmoot\":41264,\"ĠDimensions\":41265,\"Ġcabbage\":41266,\"Bright\":41267,\"gat\":41268,\"ĠKlu\":41269,\"Ġlatent\":41270,\"Ġze\":41271,\"ĠMeng\":41272,\"Ġdisperse\":41273,\"Ġpandemonium\":41274,\"HQ\":41275,\"Ġvirtuous\":41276,\"ĠLocations\":41277,\"eeper\":41278,\"provided\":41279,\"Ġseams\":41280,\"ĠWT\":41281,\"izo\":41282,\"PROV\":41283,\"Ġtitanium\":41284,\"Ġrecollection\":41285,\"Ġcran\":41286,\"Ġ780\":41287,\"ĠNF\":41288,\"491\":41289,\"642\":41290,\"packing\":41291,\"598\":41292,\"texture\":41293,\"Spider\":41294,\"freedom\":41295,\"cipled\":41296,\"ĠTAMADRA\":41297,\"âĻ¦\":41298,\"authent\":41299,\"ĠWANT\":41300,\"rified\":41301,\"Ġrites\":41302,\"Ġuterus\":41303,\"kiss\":41304,\"Ġâī¤\":41305,\"Ġskillet\":41306,\"Ġdisenfranch\":41307,\"ĠGaal\":41308,\"Compan\":41309,\"Ġageing\":41310,\"guide\":41311,\"Balt\":41312,\"Ġiterator\":41313,\"Ġdiscretionary\":41314,\"tips\":41315,\"Ġprimates\":41316,\"ĠTechnique\":41317,\"ĠPayments\":41318,\"azel\":41319,\"ĠROCK\":41320,\"stantial\":41321,\"060\":41322,\"Ġdmg\":41323,\"ĠJackets\":41324,\"ĠPlayoff\":41325,\"Ġnursery\":41326,\"ĠSymb\":41327,\"arton\":41328,\"Ġannexation\":41329,\"Colorado\":41330,\"Ġcoils\":41331,\"ĠShoes\":41332,\"âĦ¢:\":41333,\"ĠRoz\":41334,\"COMPLE\":41335,\"ĠEverest\":41336,\"ĠTriumph\":41337,\"Joy\":41338,\"Grid\":41339,\"à¼\":41340,\"processor\":41341,\"ĠProsper\":41342,\"ĠSeverus\":41343,\"ĠSelected\":41344,\"rg\":41345,\"ĠTayyip\":41346,\"Stra\":41347,\"Ġskiing\":41348,\"Ġ?)\":41349,\"Ġpeg\":41350,\"Tesla\":41351,\"Ġtimeframe\":41352,\"Ġmastermind\":41353,\"ĠNB\":41354,\"scientific\":41355,\"ĠShit\":41356,\"generic\":41357,\"INTER\":41358,\"NUM\":41359,\"Ġstroll\":41360,\"ĠEnix\":41361,\"ĠMMR\":41362,\"ĠEMS\":41363,\"movie\":41364,\"Ĥª\":41365,\"Ġminimizing\":41366,\"iddling\":41367,\"Ġillegitimate\":41368,\"Ġprototyp\":41369,\"Ġprematurely\":41370,\"Ġmanuals\":41371,\"obbies\":41372,\"ĠCassidy\":41373,\"DEC\":41374,\"desktop\":41375,\"Ġaeros\":41376,\"Ġscreenings\":41377,\"Ġdebilitating\":41378,\"ĠGrind\":41379,\"natureconservancy\":41380,\"Ġfades\":41381,\"termination\":41382,\"assetsadobe\":41383,\"Factor\":41384,\"Ġdefinitively\":41385,\"PokÃ©\":41386,\"apult\":41387,\"ĠLafayette\":41388,\"Corn\":41389,\"ĠCoral\":41390,\"Ġstagnant\":41391,\"Tue\":41392,\"Ġdissatisfaction\":41393,\"Gender\":41394,\"Ġkidneys\":41395,\"ĠGow\":41396,\"ĠDefeat\":41397,\"ĠAshton\":41398,\"Ġcartels\":41399,\"Ġforeclosure\":41400,\"ĠExplore\":41401,\"strength\":41402,\"otin\":41403,\"Ġveterinarian\":41404,\"Ġfumble\":41405,\"Ġparap\":41406,\"ĠStrait\":41407,\"rils\":41408,\"Ġprick\":41409,\"ĠBermuda\":41410,\"ĠAmmunition\":41411,\"skinned\":41412,\"Ġabound\":41413,\"ĠBraz\":41414,\"Ġsharper\":41415,\"ĠAscension\":41416,\"Ġ978\":41417,\"Ġpreviews\":41418,\"Ġcommunion\":41419,\"ĠXY\":41420,\"Ġphony\":41421,\"Ġnewcomer\":41422,\"Ġ332\":41423,\".\\\",\\\"\":41424,\"Ġredistribution\":41425,\"Protect\":41426,\"ĠSof\":41427,\"Kal\":41428,\"Ġlipstick\":41429,\"worst\":41430,\"Ġtangled\":41431,\"Ġretrospective\":41432,\"integer\":41433,\"Ġvolunteering\":41434,\"Ġ1907\":41435,\"Ġ--------------------\":41436,\"ichen\":41437,\"Ġunveiling\":41438,\"Ġsenseless\":41439,\"Ġfisheries\":41440,\"\\\\-\":41441,\"Ġhinges\":41442,\"Ġcalculus\":41443,\"Myth\":41444,\"Ġundefeated\":41445,\"Ġoptimizations\":41446,\"Ġdepress\":41447,\"Ġbillboard\":41448,\"ĠYad\":41449,\"ĠPyramid\":41450,\"Isn\":41451,\"Ide\":41452,\"Ġlegion\":41453,\"ĠKramer\":41454,\"entanyl\":41455,\"Ġpenetrating\":41456,\"ĠHawth\":41457,\"ĠPRODUCT\":41458,\"ĠGerard\":41459,\"ĠPact\":41460,\"ĠIncluding\":41461,\"ĠElias\":41462,\"ĠElaine\":41463,\"visual\":41464,\"Ġhumming\":41465,\"Ġcondesc\":41466,\"ĠFasc\":41467,\"ä¸Ĭ\":41468,\"Ġegalitarian\":41469,\"Ġdevs\":41470,\"ĠDahl\":41471,\"Ops\":41472,\"DH\":41473,\"ĠBounce\":41474,\"idated\":41475,\"aldo\":41476,\"Ġrepublican\":41477,\"Ġhamb\":41478,\"ĠSett\":41479,\"ographies\":41480,\"CHAPTER\":41481,\"Ġtranssexual\":41482,\"Ġskyrocket\":41483,\"answer\":41484,\"Ġmarkup\":41485,\"Øª\":41486,\"Ġheroine\":41487,\"Compare\":41488,\"ĠTav\":41489,\"Beast\":41490,\"Ġsuccessors\":41491,\"ĠnaÃ¯ve\":41492,\"ĠBuckley\":41493,\"stress\":41494,\"meat\":41495,\"Ġdownloadable\":41496,\"Ġindexed\":41497,\"Ġscaff\":41498,\"ĠLump\":41499,\"ĠHomo\":41500,\"Studio\":41501,\"Insp\":41502,\"Ġracked\":41503,\"farious\":41504,\"ĠPetty\":41505,\"External\":41506,\"Ġ1909\":41507,\"Wars\":41508,\"commit\":41509,\"puters\":41510,\"Ġunob\":41511,\"ĠErr\":41512,\"ĠEG\":41513,\"ĠAlam\":41514,\"ĠSiberia\":41515,\"ĠAtmospheric\":41516,\"ISTER\":41517,\"ĠSatanic\":41518,\"translation\":41519,\"ĠLoud\":41520,\"traumatic\":41521,\"lique\":41522,\"Ġresonate\":41523,\"ĠWelch\":41524,\"Ġsparking\":41525,\"ĠTOM\":41526,\"tone\":41527,\"Ġoutl\":41528,\"Ġhandcuffed\":41529,\"ĠSerie\":41530,\"801\":41531,\"Ġlandmarks\":41532,\"ĠReeves\":41533,\"Ġsoftened\":41534,\"Ġdazzling\":41535,\"ĠWanted\":41536,\"months\":41537,\"Magikarp\":41538,\"Ġuntreated\":41539,\"ĠBedford\":41540,\"Mi\":41541,\"ĠDynamo\":41542,\"Ore\":41543,\"795\":41544,\"Ġwrongful\":41545,\"Ġlured\":41546,\"Ġcortisol\":41547,\"Ġvex\":41548,\"drawn\":41549,\"ilet\":41550,\"Downloadha\":41551,\"ĠFaction\":41552,\"Ġlabyrinth\":41553,\"Ġhijacked\":41554,\"waters\":41555,\"erick\":41556,\"Ġsuperiors\":41557,\"ĠRowling\":41558,\"ĠGuinness\":41559,\"Ġtd\":41560,\"992\":41561,\"Ġunearthed\":41562,\"Ġcentrif\":41563,\"Ġshameless\":41564,\"Pod\":41565,\"ĠFib\":41566,\"Ġicing\":41567,\"Ġpredictor\":41568,\"Ġ292\":41569,\"forestation\":41570,\"construct\":41571,\"Cand\":41572,\"@#\":41573,\"Ġagitated\":41574,\"Ġrepr\":41575,\"OVA\":41576,\"Ġknitting\":41577,\"ĠLima\":41578,\"Ġfodder\":41579,\"684\":41580,\"ĠPersona\":41581,\"kl\":41582,\"701\":41583,\"Ġbreakup\":41584,\"á¸\":41585,\"Ġappalled\":41586,\"Ġantidepressants\":41587,\"ĠSussex\":41588,\"Harris\":41589,\"ĠThermal\":41590,\"eeee\":41591,\"Upload\":41592,\"Ġgulf\":41593,\"Ġdoorstep\":41594,\"ĠShank\":41595,\"LU\":41596,\"ĠMEN\":41597,\"ĠPond\":41598,\"sorry\":41599,\"Ġmisfortune\":41600,\"nance\":41601,\"Ġbona\":41602,\"Mut\":41603,\"Ġdegraded\":41604,\"ĠLOG\":41605,\"ĠNess\":41606,\"animal\":41607,\"Ġaversion\":41608,\"undown\":41609,\"Ġsupplemented\":41610,\"ĠCups\":41611,\"Ġ504\":41612,\"Ġdeprive\":41613,\"ĠSparkle\":41614,\"ÅĤ\":41615,\"ĠMeditation\":41616,\"authors\":41617,\"ĠSaban\":41618,\"ĠNaked\":41619,\"aird\":41620,\"ĠMandarin\":41621,\"ĠScriptures\":41622,\"ĠPersonnel\":41623,\"ĠMaharashtra\":41624,\"Ġ1903\":41625,\"ĠPai\":41626,\"ĠMirage\":41627,\"ombat\":41628,\"Accessory\":41629,\"Ġfragmented\":41630,\"Together\":41631,\"Ġbelievable\":41632,\"ĠGladiator\":41633,\"aligned\":41634,\"ĠSlug\":41635,\"MAT\":41636,\"Ġconvertible\":41637,\"ĠBourbon\":41638,\"ameron\":41639,\"ĠRehab\":41640,\"ntax\":41641,\"Ġpowdered\":41642,\"pillar\":41643,\"Ġsmoker\":41644,\"ĠManson\":41645,\"ĠBF\":41646,\"511\":41647,\"ĠGoodell\":41648,\"ĠDAR\":41649,\"mud\":41650,\"gart\":41651,\"Ġobedient\":41652,\"ĠTransmission\":41653,\"ĠDonation\":41654,\"880\":41655,\"Ġbothering\":41656,\"Materials\":41657,\"ãĤ±\":41658,\"destroy\":41659,\"Ġforegoing\":41660,\"Ġanarchism\":41661,\"ĠKry\":41662,\"iceps\":41663,\"Ġlittered\":41664,\"ĠSchiff\":41665,\"Ġanecdotal\":41666,\"units\":41667,\"Ġfian\":41668,\"ĠStim\":41669,\"ĠSOME\":41670,\"ĠInvaders\":41671,\"Ġbehavioural\":41672,\"ĠVentures\":41673,\"Ġsublime\":41674,\"Ġfruition\":41675,\"ĠPenalty\":41676,\"Ġcorrosion\":41677,\"¶ħ\":41678,\"Ġlikened\":41679,\"Ġbesieged\":41680,\"weeney\":41681,\"ĠCreep\":41682,\"Ġlinemen\":41683,\"multi\":41684,\"icably\":41685,\"udder\":41686,\"Ġvitality\":41687,\"Ġshortfall\":41688,\"ĠPants\":41689,\"apist\":41690,\"Hidden\":41691,\"ĠDrops\":41692,\"medical\":41693,\"Ġpronunciation\":41694,\"ĠNRL\":41695,\"Ġinsightful\":41696,\"JV\":41697,\"ĠBeard\":41698,\"ĠChou\":41699,\"Ġcharms\":41700,\"Ġbins\":41701,\"Ġambassadors\":41702,\"ĠSaturdays\":41703,\"Ġinhibitor\":41704,\"ĠFranch\":41705,\"601\":41706,\"','\":41707,\"ĠConor\":41708,\"artney\":41709,\"ĠXperia\":41710,\"grave\":41711,\"bees\":41712,\"ĠProtestants\":41713,\"Ġsoaking\":41714,\"ĠMandal\":41715,\"Ġphased\":41716,\"Ġ660\":41717,\"Ġscams\":41718,\"Ġbuzzing\":41719,\"ĠItalians\":41720,\"ĠLorenzo\":41721,\"ĠJA\":41722,\"Ġhesitated\":41723,\"Ġcliffs\":41724,\"ĠGOT\":41725,\"inguishable\":41726,\"Ġko\":41727,\"Ġinterruption\":41728,\"Zip\":41729,\"Learning\":41730,\"Ġunderscores\":41731,\"ĠBlink\":41732,\"Ku\":41733,\"579\":41734,\"ĠAutob\":41735,\"IRE\":41736,\"Ġwatering\":41737,\"Ġpastry\":41738,\"820\":41739,\"Ġvisionary\":41740,\"ĠTemplar\":41741,\"awaited\":41742,\"Ġpiston\":41743,\"Ġantid\":41744,\"currently\":41745,\"Ġpard\":41746,\"Ġwaging\":41747,\"Ġnobility\":41748,\"ĠYus\":41749,\"Ġinjecting\":41750,\"faith\":41751,\"ĠPASS\":41752,\"åº\":41753,\"Ġretake\":41754,\"ĠPROC\":41755,\"Ġcathedral\":41756,\"bash\":41757,\"Ġwrestlers\":41758,\"Ġpartnering\":41759,\"Ġnoses\":41760,\"Ġ358\":41761,\"Transform\":41762,\"amen\":41763,\"Ġbouts\":41764,\"ĠIdeal\":41765,\"ĠConstantin\":41766,\"Ġsep\":41767,\"ĠMonarch\":41768,\"atten\":41769,\"ĠPeoples\":41770,\"modified\":41771,\"Ġmoratorium\":41772,\"Ġpenchant\":41773,\"Ġoffensively\":41774,\"Ġproxies\":41775,\"okane\":41776,\"ĠTaiwanese\":41777,\"ĠPoo\":41778,\"ĠHOME\":41779,\"usional\":41780,\"Ġverbs\":41781,\"ĠOman\":41782,\"visory\":41783,\"Ġpersuasion\":41784,\"Ġmultit\":41785,\"Ġscissors\":41786,\"Gay\":41787,\"oway\":41788,\"ophysical\":41789,\"lus\":41790,\"gnu\":41791,\"Ġapocalyptic\":41792,\"Ġabsurdity\":41793,\"Ġplaybook\":41794,\"Ġautobiography\":41795,\"IUM\":41796,\"Ġsneaking\":41797,\"ĠSimulation\":41798,\"pps\":41799,\"ellery\":41800,\"Planet\":41801,\"Ġrightfully\":41802,\"Ġniece\":41803,\"ĠNEC\":41804,\"ĠIPO\":41805,\"ĠDisclosure\":41806,\"leanor\":41807,\"ousy\":41808,\"STER\":41809,\"Ġ282\":41810,\"Cruz\":41811,\"Chall\":41812,\"643\":41813,\"ĠSurvive\":41814,\"ĠFatal\":41815,\"ĠAmid\":41816,\"apo\":41817,\"Weapons\":41818,\"DEN\":41819,\"770\":41820,\"ĠGreenwald\":41821,\"Ġlinen\":41822,\"alos\":41823,\"Ġpollutants\":41824,\"ĠPCIe\":41825,\"kat\":41826,\"Ġpaw\":41827,\"ĠKraft\":41828,\"Chem\":41829,\"ĠTerminator\":41830,\"Ġreincarn\":41831,\"Ġ][\":41832,\"ĠSeeds\":41833,\"Ġsilhouette\":41834,\"ĠStores\":41835,\"Ġgrooming\":41836,\"ĠDirection\":41837,\"ĠIsabel\":41838,\"ĠBridges\":41839,\"ðŁĳ\":41840,\"EED\":41841,\"ĠMorsi\":41842,\"Ġvalves\":41843,\"ĠRanked\":41844,\"ĠPharma\":41845,\"ĠOrganizations\":41846,\"Ġpenetrated\":41847,\"ĠRodham\":41848,\"ĠProtoss\":41849,\"Ġoverest\":41850,\"Ġexasper\":41851,\"ĠTJ\":41852,\"Ġ000000\":41853,\"Ġtrickle\":41854,\"Ġbourbon\":41855,\"WHO\":41856,\"Ġwretched\":41857,\"Ġmicroscopic\":41858,\"Ġchecklist\":41859,\"Ġadorned\":41860,\"Royal\":41861,\"Administ\":41862,\"ĠRetirement\":41863,\"ĠHighest\":41864,\"Weather\":41865,\"ilege\":41866,\"Ġincrements\":41867,\"ĠCosponsors\":41868,\"Ġmasse\":41869,\"ĠSinn\":41870,\"rf\":41871,\"Ġhordes\":41872,\"assembly\":41873,\"754\":41874,\"ĠNatasha\":41875,\"ĠTYPE\":41876,\"ĠGENERAL\":41877,\"Ġarranging\":41878,\"Ġ407\":41879,\"lator\":41880,\"Ġglean\":41881,\"Ġdiscredited\":41882,\"Ġclinicians\":41883,\"UNE\":41884,\"Ġachieves\":41885,\"ĠEmerson\":41886,\"complex\":41887,\"=[\":41888,\"Ġprincipally\":41889,\"Ġfrail\":41890,\"picked\":41891,\"Ġthanking\":41892,\"Ġrecl\":41893,\"ĠLAST\":41894,\"Ġsuppressing\":41895,\"ilic\":41896,\"Ġantidepressant\":41897,\"ĠLisbon\":41898,\"Ġthor\":41899,\"Ġspa\":41900,\"Ġkingdoms\":41901,\"ĠPearce\":41902,\"emo\":41903,\"Ġplung\":41904,\"Ġdivest\":41905,\"Ġ********************************\":41906,\"bis\":41907,\"ospels\":41908,\"adr\":41909,\"Spirit\":41910,\"halla\":41911,\"Pink\":41912,\"endez\":41913,\"Ġresurrected\":41914,\"escape\":41915,\"ĠRosenstein\":41916,\"Ġgeological\":41917,\"Ġnecessities\":41918,\"Ġcarniv\":41919,\"ĠElys\":41920,\"ĠBarney\":41921,\"Ġ296\":41922,\"digy\":41923,\"STON\":41924,\"DOWN\":41925,\"Ġmilestones\":41926,\"Ġker\":41927,\"Ġdismantling\":41928,\"Ġreprim\":41929,\"Ġcrossings\":41930,\"1945\":41931,\"Ġpatriarchy\":41932,\"Ġblasphemy\":41933,\"Ġ359\":41934,\"metry\":41935,\"ĠObesity\":41936,\"ĠDifferences\":41937,\"blocking\":41938,\"ãĥķãĤ¡\":41939,\"ichita\":41940,\"ĠSabha\":41941,\"phalt\":41942,\"ĠColo\":41943,\"uala\":41944,\"efficients\":41945,\"ĠMedina\":41946,\"console\":41947,\"557\":41948,\"ĠHannibal\":41949,\"ĠHabit\":41950,\"ĠFever\":41951,\"Ġthence\":41952,\"Ġsynagogue\":41953,\"Ġessentials\":41954,\"Ġwink\":41955,\"ĠTrader\":41956,\"IDA\":41957,\"ĠSpoiler\":41958,\"ĠIcelandic\":41959,\"ĠHayward\":41960,\"Ġpeac\":41961,\"Ġmalice\":41962,\"Ġflashback\":41963,\"Ġthw\":41964,\"Ġlayoffs\":41965,\"Liquid\":41966,\"Ġtrooper\":41967,\"Ġhinge\":41968,\"ĠReaders\":41969,\"Phill\":41970,\"ĠBauer\":41971,\"Created\":41972,\"Ġaudits\":41973,\"accompan\":41974,\"Ġunsuspecting\":41975,\"iera\":41976,\"66666666\":41977,\"Ġbroch\":41978,\"Ġapprehended\":41979,\"ĠMalk\":41980,\"cerning\":41981,\"ĠCodex\":41982,\"OVER\":41983,\"Marsh\":41984,\"ĠDeng\":41985,\"ĠExpression\":41986,\"Ġdisrespectful\":41987,\"Ġascending\":41988,\"tests\":41989,\"ĠPlaintiff\":41990,\"stery\":41991,\"ĠAlibaba\":41992,\"dinand\":41993,\"ĠDempsey\":41994,\"Applications\":41995,\"moral\":41996,\"Ġthroughput\":41997,\"Ġquarrel\":41998,\"Ġmills\":41999,\"Ġhemor\":42000,\"ĠCASE\":42001,\"terrorist\":42002,\"stim\":42003,\"ifestyle\":42004,\"rozen\":42005,\"CEPT\":42006,\"Ark\":42007,\"uci\":42008,\"lectic\":42009,\"Ġirritating\":42010,\"sheets\":42011,\"Ay\":42012,\"Ġredeemed\":42013,\"Ġhorny\":42014,\"ĠTeach\":42015,\"ĠSear\":42016,\"democracy\":42017,\"465\":42018,\"ĠRestore\":42019,\"Ġstandby\":42020,\"ĠPis\":42021,\"iffin\":42022,\"Ġsleepy\":42023,\"Ġextrater\":42024,\"Ġcompliments\":42025,\"Frameworks\":42026,\"Ġinstalls\":42027,\"Ġbanging\":42028,\"surface\":42029,\"foundland\":42030,\"Ġmetaphysical\":42031,\"Ġ283\":42032,\"ouls\":42033,\"devices\":42034,\"Args\":42035,\"ĠSacrifice\":42036,\"ĠMcCorm\":42037,\"eson\":42038,\"Conservative\":42039,\"ĠMikhail\":42040,\"seeing\":42041,\"isively\":42042,\"ĠRooms\":42043,\"ĠGeneric\":42044,\"Ġenthusiastically\":42045,\"Ġgripped\":42046,\"Ġcomedic\":42047,\"ĠElectricity\":42048,\"Ġguerrilla\":42049,\"Ġdecoration\":42050,\"ĠPerspective\":42051,\"Ġconsultations\":42052,\"Ġunamb\":42053,\"Ġplagiar\":42054,\"Ġmagician\":42055,\"Ġerection\":42056,\"ĠTourism\":42057,\"oried\":42058,\"roxy\":42059,\"1100\":42060,\"Tam\":42061,\"Īè\":42062,\"Î³\":42063,\"×ª\":42064,\"ĠPredators\":42065,\"Nitrome\":42066,\"Ġtelescopes\":42067,\"projects\":42068,\"Ġunprotected\":42069,\"Ġstocked\":42070,\"ĠEntreprene\":42071,\"nexpected\":42072,\"Ġwastewater\":42073,\"Vill\":42074,\"Ġintimately\":42075,\"ĠiCloud\":42076,\"ĠConstable\":42077,\"Ġspoof\":42078,\"Ġnefarious\":42079,\"Ġfins\":42080,\"Ġcensor\":42081,\"ĠModes\":42082,\"ĠEsper\":42083,\"arbon\":42084,\"Ġintersections\":42085,\"Ġlauded\":42086,\"Ġphysi\":42087,\"Ġgenerously\":42088,\"ĠTheNitrome\":42089,\"ĠTheNitromeFan\":42090,\"Ġarisen\":42091,\"ĠÙĪ\":42092,\"Ġglands\":42093,\"ĠPavilion\":42094,\"ĠGupta\":42095,\"Ġuniformly\":42096,\"Ġramps\":42097,\"riet\":42098,\"ĠWHEN\":42099,\"ĠVanessa\":42100,\"Ġrouted\":42101,\"Ġlimp\":42102,\"ĠCPI\":42103,\"pter\":42104,\"intuitive\":42105,\"Ġvaping\":42106,\"Ġexperimented\":42107,\"ĠOlympus\":42108,\"ĠAmon\":42109,\"Ġsighting\":42110,\"Ġinfiltrate\":42111,\"ĠGentleman\":42112,\"Ġsignings\":42113,\"ĠMeow\":42114,\"ĠNavigation\":42115,\"checks\":42116,\"433\":42117,\"Ġelapsed\":42118,\"ĠBulgarian\":42119,\"espie\":42120,\"ĠSOM\":42121,\"during\":42122,\"Ġspills\":42123,\"anca\":42124,\"ĠPlymouth\":42125,\"MAL\":42126,\"Ġdomestically\":42127,\"ĠWatergate\":42128,\"ĠFAM\":42129,\"killed\":42130,\"edited\":42131,\"ĠYourself\":42132,\"Ġsynchronization\":42133,\"ĠPractices\":42134,\"STEP\":42135,\"Ġgenomes\":42136,\"ĠQR\":42137,\"notice\":42138,\"Ġlocating\":42139,\"zin\":42140,\"Ġ329\":42141,\"alcohol\":42142,\"Ġkitten\":42143,\"Vo\":42144,\"Ġrinse\":42145,\"Ġgrapple\":42146,\"ĠScrew\":42147,\"ĠDul\":42148,\"AIR\":42149,\"Ġleasing\":42150,\"ĠCafÃ©\":42151,\"Ġroses\":42152,\"ĠRespect\":42153,\"Ġmislead\":42154,\"Ġperfected\":42155,\"Ġnudity\":42156,\"Ġnonpartisan\":42157,\"ĠConsumption\":42158,\"Reporting\":42159,\"Ġnuances\":42160,\"Ġdeductible\":42161,\"ĠShots\":42162,\"Ġ377\":42163,\"Ġæľ\":42164,\"anooga\":42165,\"Benef\":42166,\"ĠBam\":42167,\"ĠSamp\":42168,\"ifix\":42169,\"Ġgalvan\":42170,\"ĠMedals\":42171,\"radius\":42172,\"Ġnobles\":42173,\"Ġeaves\":42174,\"igrate\":42175,\"KT\":42176,\"ĠHarbour\":42177,\"uers\":42178,\"Ġrisked\":42179,\"req\":42180,\"Ġneurot\":42181,\"gettable\":42182,\"aina\":42183,\"Romney\":42184,\"Ġunderpin\":42185,\"Ġloft\":42186,\"ĠSubcommittee\":42187,\"ĠMongol\":42188,\"biz\":42189,\"Ġmanifests\":42190,\"assisted\":42191,\"ĠGaga\":42192,\"Ġsynergy\":42193,\"Ġreligiously\":42194,\"ĠPref\":42195,\"ĠGerry\":42196,\"TAG\":42197,\"ĠChoi\":42198,\"466\":42199,\"behind\":42200,\"ĠOu\":42201,\"GoldMagikarp\":42202,\"Ġhemorrh\":42203,\"River\":42204,\"Ġtendon\":42205,\"Ġinjure\":42206,\"ĠFiona\":42207,\"Ġpag\":42208,\"Ġagitation\":42209,\"||||\":42210,\"uran\":42211,\"ĠESA\":42212,\"Ġesteem\":42213,\"Ġdodging\":42214,\"Ġ412\":42215,\"rss\":42216,\"Ġceases\":42217,\"excluding\":42218,\"Ġintakes\":42219,\"Ġinserts\":42220,\"Ġembold\":42221,\"ĠOral\":42222,\"upuncture\":42223,\"411\":42224,\"ĠUnified\":42225,\"ĠDele\":42226,\"Ġfurnace\":42227,\"ĠCoyotes\":42228,\"ĠBrach\":42229,\"Labor\":42230,\"Ġhandshake\":42231,\"Ġbruises\":42232,\"Grade\":42233,\"éĹĺ\":42234,\"ĠGrammy\":42235,\"ileen\":42236,\"States\":42237,\"ĠScandinavian\":42238,\"ĠKardash\":42239,\"866\":42240,\"Ġeffortlessly\":42241,\"ĠDIRECT\":42242,\"ĠTHEN\":42243,\"ĠMei\":42244,\"ertation\":42245,\"1968\":42246,\"Ġgroin\":42247,\"witch\":42248,\"Requirements\":42249,\"985\":42250,\"Ġroofs\":42251,\"Ġestates\":42252,\"ĠHF\":42253,\"Ġhaha\":42254,\"Ġdensely\":42255,\"ĠOCT\":42256,\"Ġplastics\":42257,\"Ġincidentally\":42258,\"ĠTracks\":42259,\"ĠTaxes\":42260,\"Ġchanted\":42261,\"Ġforceful\":42262,\"ĠBieber\":42263,\"ĠKahn\":42264,\"Kent\":42265,\"ĠCot\":42266,\"licts\":42267,\"Fed\":42268,\"Ġhideous\":42269,\"ĠVerd\":42270,\"ĠSyndicate\":42271,\"ĠIllegal\":42272,\"Jet\":42273,\"ĠDAV\":42274,\"reasonable\":42275,\"crew\":42276,\"Ġfundamentalist\":42277,\"Ġtruthful\":42278,\"ĠJing\":42279,\"Ġlil\":42280,\"Ġdowned\":42281,\"Ġenchanted\":42282,\"ĠPolicies\":42283,\"ĠMcMaster\":42284,\"ĠHare\":42285,\"ideshow\":42286,\"Ġparams\":42287,\"encers\":42288,\"gorithm\":42289,\"Ġallowances\":42290,\"Ġturbulent\":42291,\"Ġcomplexities\":42292,\"ĠKT\":42293,\"Ġ337\":42294,\"ĠGenetic\":42295,\"FUN\":42296,\"Doug\":42297,\"tick\":42298,\"Ġgigs\":42299,\"umenthal\":42300,\"Ġpatriarchal\":42301,\"Ġcalc\":42302,\",...\":42303,\"Ġcout\":42304,\"ĠGuan\":42305,\"Ġpathological\":42306,\"ĠRivals\":42307,\"Ġunderrated\":42308,\"Ġfluorescent\":42309,\"ĠJiu\":42310,\"arnaev\":42311,\"ĠQuan\":42312,\"Ġ429\":42313,\"Ġà¨\":42314,\"Mario\":42315,\"Construct\":42316,\"ĠCitation\":42317,\"ĠRacial\":42318,\"ĠRSA\":42319,\"ĠFidel\":42320,\"Ġ395\":42321,\"Personally\":42322,\"Cause\":42323,\"Ã»\":42324,\"radical\":42325,\"inen\":42326,\"Ġvehemently\":42327,\"ĠPapa\":42328,\"Ġinternship\":42329,\"Ġflakes\":42330,\"ĠReck\":42331,\"Luckily\":42332,\"Bra\":42333,\"2020\":42334,\"ravings\":42335,\"RN\":42336,\"Wonder\":42337,\"Seriously\":42338,\"Ġreusable\":42339,\"Ġpolluted\":42340,\"ĠPeng\":42341,\"leigh\":42342,\"indle\":42343,\"Ġcircuitry\":42344,\"ĠMadonna\":42345,\"ĠBART\":42346,\"Residents\":42347,\"attribute\":42348,\"Philadelphia\":42349,\"Club\":42350,\"Ġplanner\":42351,\"Ġfrantically\":42352,\"Ġfaithfully\":42353,\"ĠTerritories\":42354,\"ĠLAT\":42355,\"ĠAndersen\":42356,\"anu\":42357,\"ĠPARK\":42358,\"ĠSora\":42359,\"iage\":42360,\"ĠPlayoffs\":42361,\"ĠGCC\":42362,\"427\":42363,\"Ġabnorm\":42364,\"ĠLever\":42365,\"Ġdisobedience\":42366,\"Async\":42367,\"ĠShea\":42368,\"Vert\":42369,\"Ġskirts\":42370,\"ĠSawyer\":42371,\"xp\":42372,\"Ġworsening\":42373,\"Ġscapego\":42374,\"ĠAngle\":42375,\"othal\":42376,\"Ġtrove\":42377,\"ĠSty\":42378,\"ĠNguyen\":42379,\"marine\":42380,\"ideon\":42381,\"Depths\":42382,\"Blog\":42383,\"ĠIlluminati\":42384,\"Ġtracts\":42385,\"Ġorganise\":42386,\"Ġostr\":42387,\"Fs\":42388,\"Ġleveraging\":42389,\"ĠDaredevil\":42390,\"asar\":42391,\"Ġlang\":42392,\"Ġextermin\":42393,\"ursions\":42394,\"ĠRomo\":42395,\"ãĤ¤ãĥĪ\":42396,\"Ġcontended\":42397,\"Ġencountering\":42398,\"ĠTablet\":42399,\"ĠAlternate\":42400,\"skill\":42401,\"Ġsweets\":42402,\"Ġcohesive\":42403,\"capacity\":42404,\"Ġrepud\":42405,\"Ġlizard\":42406,\"roo\":42407,\"Ġpilgrims\":42408,\"ĠRuff\":42409,\"ĠInstrument\":42410,\"ĠLogo\":42411,\"uitous\":42412,\"EH\":42413,\"Ġsalesman\":42414,\"Ġankles\":42415,\"Led\":42416,\"ĠPatty\":42417,\"udos\":42418,\"Owner\":42419,\"Ġdiscrepancies\":42420,\"kj\":42421,\"MU\":42422,\"Ġunconditional\":42423,\"DragonMagazine\":42424,\"iard\":42425,\"Oak\":42426,\"ĠConversation\":42427,\"beer\":42428,\"ĠOsaka\":42429,\"Delta\":42430,\"usky\":42431,\"Ġsecretion\":42432,\"Ġplaza\":42433,\"Ġming\":42434,\"Ġdepletion\":42435,\"ĠMous\":42436,\"ĠITS\":42437,\"ĠHimal\":42438,\"ĠFleming\":42439,\"Ġcytok\":42440,\"ĠHick\":42441,\"Ġbatters\":42442,\"ĠIntellectual\":42443,\"675\":42444,\"Ã©r\":42445,\"ISION\":42446,\"ĠQuentin\":42447,\"ĠChapters\":42448,\"ihadi\":42449,\"Ġcoaster\":42450,\"WAYS\":42451,\"ĠLizard\":42452,\"ĠYor\":42453,\"andering\":42454,\"Skin\":42455,\"haust\":42456,\"abby\":42457,\"Ġportraying\":42458,\"Ġwielded\":42459,\"dash\":42460,\"Ġproponent\":42461,\"Ġripple\":42462,\"Ġgraphene\":42463,\"Ġflyer\":42464,\"Ġrecurrent\":42465,\"Ġdevils\":42466,\"Ġwaterfall\":42467,\"æĺ¯\":42468,\"goo\":42469,\"TextColor\":42470,\"Ġtampering\":42471,\"IVES\":42472,\"TRUMP\":42473,\"ĠAbel\":42474,\"ĠSAL\":42475,\"ĠHendricks\":42476,\"ĠLucius\":42477,\"bots\":42478,\"Ġ4096\":42479,\"ISTORY\":42480,\"Guest\":42481,\"ĠNX\":42482,\"inant\":42483,\"Benz\":42484,\"ĠLoaded\":42485,\"ĠClever\":42486,\"treatment\":42487,\"Ġtavern\":42488,\"Ġ339\":42489,\"ĠTNT\":42490,\"ificantly\":42491,\"Temperature\":42492,\"Fel\":42493,\"Ġunderworld\":42494,\"ĠJudges\":42495,\"Ġ<+\":42496,\"Ġstump\":42497,\"Ġoccupancy\":42498,\"Ġaber\":42499,\"ĠFinder\":42500,\")\\\",\":42501,\"ĠNunes\":42502,\"reset\":42503,\"inet\":42504,\"ectomy\":42505,\"Ġwellness\":42506,\"ĠPeb\":42507,\"quartered\":42508,\"andan\":42509,\"Ġnegatives\":42510,\"ĠThiel\":42511,\"ĠClip\":42512,\"ĠLTD\":42513,\"Ġblight\":42514,\"Ġrepertoire\":42515,\"Kyle\":42516,\"Ġquer\":42517,\"ĠCes\":42518,\"Ġhapl\":42519,\"989\":42520,\"ĠThames\":42521,\"iscopal\":42522,\"Desk\":42523,\"ivariate\":42524,\"ĠExcellence\":42525,\"foundation\":42526,\"Ġâĩ\":42527,\"Xi\":42528,\"Ġmysteriously\":42529,\"estyles\":42530,\"Ġperish\":42531,\"ĠEngels\":42532,\"ĠDEAD\":42533,\"090\":42534,\"}}}\":42535,\"ĠUnreal\":42536,\"Ġrestless\":42537,\"IDES\":42538,\"orthodox\":42539,\"ĠIntermediate\":42540,\"Ġdinners\":42541,\"ĠTrout\":42542,\"ĠSeym\":42543,\"ĠHalls\":42544,\"ogged\":42545,\"Ġtragedies\":42546,\"Ġdidnt\":42547,\"676\":42548,\"Ġailments\":42549,\"Ġobservable\":42550,\"ĠVide\":42551,\"adapt\":42552,\"ĠDusk\":42553,\"Ġprofessionalism\":42554,\"ĠPrescott\":42555,\"ĠIndies\":42556,\"pox\":42557,\"ĠMehran\":42558,\"Wide\":42559,\"Ġendemic\":42560,\"ĠParan\":42561,\"Bird\":42562,\"Ġpedals\":42563,\"ĠIU\":42564,\"ĠAdamant\":42565,\"ĠHurt\":42566,\"Ġcorrelates\":42567,\"urden\":42568,\"Ġsponsoring\":42569,\"climate\":42570,\"ĠUniversities\":42571,\"ĠKnot\":42572,\"ennes\":42573,\"ĠDamian\":42574,\"ĠAxel\":42575,\"Sport\":42576,\"Ġbarb\":42577,\"ĠSno\":42578,\"shown\":42579,\"steen\":42580,\"udence\":42581,\"Ġnonviolent\":42582,\"Ġhomophobia\":42583,\"Ġbiomass\":42584,\"ĠDetail\":42585,\"ĠsrfN\":42586,\"ĠTune\":42587,\"accompanied\":42588,\"IENCE\":42589,\"Albert\":42590,\"ĠMongo\":42591,\"zx\":42592,\"ĠCerberus\":42593,\"orbit\":42594,\"cens\":42595,\"Ġslay\":42596,\"SHARE\":42597,\"HY\":42598,\"Ġbrawl\":42599,\"ĠProbe\":42600,\"Ġnonexistent\":42601,\"ĠClarence\":42602,\"ĠBlackburn\":42603,\"Ġportals\":42604,\"ĠRita\":42605,\"ĠRemain\":42606,\"ĠLevant\":42607,\"Ġtricked\":42608,\"ĠFerry\":42609,\"avering\":42610,\"ĠStrawberry\":42611,\"ĠAnswers\":42612,\"Ġhorrendous\":42613,\"ĠAman\":42614,\"Supplement\":42615,\"ĠToad\":42616,\"Ġpeeled\":42617,\"Ġmanoeuv\":42618,\"ĠUzbek\":42619,\"monds\":42620,\"ĠHector\":42621,\"Ġ402\":42622,\"pees\":42623,\"fixes\":42624,\"Ġdj\":42625,\"Ġresumes\":42626,\"Ġaccountant\":42627,\"Ġadversity\":42628,\"Ġhampered\":42629,\"ĠLarson\":42630,\"Ġdoping\":42631,\"parts\":42632,\"Hur\":42633,\"Ġbearded\":42634,\"Ġyr\":42635,\"ĠPlugin\":42636,\"å¥³\":42637,\"Ġ/**\":42638,\"rolley\":42639,\"Ġwatershed\":42640,\"ĠSubmission\":42641,\"iflower\":42642,\"ASC\":42643,\"Ġchoir\":42644,\"Ġsculptures\":42645,\"mA\":42646,\"increasing\":42647,\"aii\":42648,\"Ġsneakers\":42649,\"Ġconfronts\":42650,\"ĠElephant\":42651,\"ĠElixir\":42652,\"Ġrecal\":42653,\"ĠTTL\":42654,\"widget\":42655,\"ĠWax\":42656,\"ĠGrayson\":42657,\"Ġhairst\":42658,\"Ġhumiliated\":42659,\"ĠWARN\":42660,\"appiness\":42661,\"ĠTTC\":42662,\"Fuel\":42663,\"Ġpolio\":42664,\"Ġcomplexes\":42665,\"Ġbabe\":42666,\"ĠXIV\":42667,\"PF\":42668,\").[\":42669,\"Parts\":42670,\"Ġ435\":42671,\"Meg\":42672,\"ĠYards\":42673,\"ĠALP\":42674,\"Ġyells\":42675,\"Ġprinces\":42676,\"Ġbullies\":42677,\"ĠCapitalism\":42678,\"exempt\":42679,\"FAQ\":42680,\"ĠSponge\":42681,\"ĠAla\":42682,\"Ġpleasantly\":42683,\"Ġbuf\":42684,\"Ġdenote\":42685,\"Ġunpublished\":42686,\"Ġkneeling\":42687,\"asca\":42688,\"Ġlapse\":42689,\"alien\":42690,\"994\":42691,\"Ġreferees\":42692,\"ĠLawyers\":42693,\"Santa\":42694,\"Ġpuzzling\":42695,\"ĠPrometheus\":42696,\"ĠPharaoh\":42697,\"ĠDelay\":42698,\"Ġfacilitates\":42699,\"ĠCES\":42700,\"Ġjewels\":42701,\"Ġbooklet\":42702,\"onding\":42703,\"Ġpolarization\":42704,\"ĠMoran\":42705,\"ĠSalad\":42706,\"ĠSOS\":42707,\"ĠAdvice\":42708,\"PHOTOS\":42709,\"ICAN\":42710,\"iatures\":42711,\"express\":42712,\"ĠWonderland\":42713,\"ĠCODE\":42714,\"ĠCLASS\":42715,\"975\":42716,\"Ġgrep\":42717,\"ĠDiesel\":42718,\"ĠGlac\":42719,\"!?\\\"\":42720,\"Ġrm\":42721,\"oine\":42722,\"discrimination\":42723,\"ĠNurse\":42724,\"mallow\":42725,\"Ġvortex\":42726,\"ĠConsortium\":42727,\"ĠlargeDownload\":42728,\"straight\":42729,\"aughlin\":42730,\"Grad\":42731,\"Ġpublicized\":42732,\"ĠWaves\":42733,\"ĠRedd\":42734,\"Ġfestivities\":42735,\"ĠMane\":42736,\"arov\":42737,\"Ġfleeting\":42738,\"ĠDrunk\":42739,\"ugen\":42740,\"Cele\":42741,\"Ġchromosomes\":42742,\"ĠDOT\":42743,\"-+-+-+-+\":42744,\"Ġbusiest\":42745,\"ĠBeaver\":42746,\"Syrian\":42747,\"ĠKyr\":42748,\"kas\":42749,\"ĠCrossRef\":42750,\"1950\":42751,\"7601\":42752,\"Ġrepealing\":42753,\"ĠWinners\":42754,\"ĠMacro\":42755,\"ĠDOD\":42756,\"blance\":42757,\"Sort\":42758,\"641\":42759,\"Ġmetre\":42760,\"ĠDirk\":42761,\"Ġgoggles\":42762,\"Ġdrawbacks\":42763,\"Ġcomplainant\":42764,\"Ġauthorizing\":42765,\"Ġantitrust\":42766,\"operated\":42767,\"Ġmah\":42768,\"Ġexaggeration\":42769,\"Amazing\":42770,\"ĠSeraph\":42771,\"Ġhaze\":42772,\"wow\":42773,\"Ġextinguished\":42774,\"Ġcanyon\":42775,\"ĠBosh\":42776,\"Ġvents\":42777,\"Ġscrape\":42778,\"Correct\":42779,\"426\":42780,\"Ġavg\":42781,\"Demand\":42782,\"ĠâĪ¼\":42783,\"Ġmicrobiota\":42784,\"\\\"}],\\\"\":42785,\"ĠStev\":42786,\"Bio\":42787,\"ĠPlanes\":42788,\"Ġsuggestive\":42789,\"Ġdecipher\":42790,\"ĠRefugee\":42791,\"ĠKejriwal\":42792,\"ĠGreenpeace\":42793,\"Ġdeclass\":42794,\"ĠSounders\":42795,\"Ġtho\":42796,\"Ġdecrypt\":42797,\"Ġbrushing\":42798,\"ĠJaneiro\":42799,\"ipop\":42800,\"Si\":42801,\"877\":42802,\"ĠGeoffrey\":42803,\"Ġcpu\":42804,\"ĠHazel\":42805,\"Ġviewpoints\":42806,\"Ġcrispy\":42807,\"ĠNotification\":42808,\"Ġsolder\":42809,\"ĠModest\":42810,\"ĠHemisphere\":42811,\"Ġcassette\":42812,\"includes\":42813,\"Ġidentifiers\":42814,\"ĠCALL\":42815,\"incent\":42816,\"Todd\":42817,\"ĠSweep\":42818,\"Ġ334\":42819,\"boss\":42820,\"Ġsmir\":42821,\"ginx\":42822,\"Ġtownship\":42823,\"Ġgrieving\":42824,\"ĠMosque\":42825,\"Netflix\":42826,\"ASED\":42827,\"ĠMillennials\":42828,\"ocom\":42829,\"1967\":42830,\"Ġboldly\":42831,\"sleep\":42832,\"Ġesche\":42833,\"arijuana\":42834,\"Ġswirl\":42835,\"ĠPenal\":42836,\"Ġnegligent\":42837,\"ĠStephenson\":42838,\"KER\":42839,\"ĠZoro\":42840,\"risis\":42841,\"Ġlocalization\":42842,\"ĠSeymour\":42843,\"ĠAnglic\":42844,\"reditation\":42845,\"protection\":42846,\"ĠPaige\":42847,\"Ġomit\":42848,\"ĠRousse\":42849,\"ĠTub\":42850,\"Ġinvitations\":42851,\"tty\":42852,\"Ġmoss\":42853,\"physical\":42854,\"Credits\":42855,\"Ġanarchy\":42856,\"Ġchildcare\":42857,\"Ġlull\":42858,\"ĠMek\":42859,\"ĠLanguages\":42860,\"latest\":42861,\"ĠSanford\":42862,\"Ġusability\":42863,\"Ġdiffuse\":42864,\"ĠDATA\":42865,\"Ġsprites\":42866,\"ĠVegeta\":42867,\"ĠPromotion\":42868,\"ãĥ¼ãĤ¯\":42869,\"ricting\":42870,\"zee\":42871,\"Turkish\":42872,\"ĠTDs\":42873,\"proven\":42874,\"571\":42875,\"Ġsmugglers\":42876,\"70710\":42877,\"Ġreformed\":42878,\"ĠLois\":42879,\"Ġunfl\":42880,\"ĠWITHOUT\":42881,\"ĠReturning\":42882,\"annie\":42883,\"ĠTomas\":42884,\"Franc\":42885,\"ĠProfit\":42886,\"ĠSERV\":42887,\"ĠRumble\":42888,\"ikuman\":42889,\"esan\":42890,\"Ġtesters\":42891,\"Ġgadget\":42892,\"Ġbracelet\":42893,\"ĠFSA\":42894,\"component\":42895,\"Ġparamedics\":42896,\"Ġjan\":42897,\"ĠRemem\":42898,\"ĠSkinner\":42899,\"Ġlov\":42900,\"ĠQuake\":42901,\"roma\":42902,\"Ġflask\":42903,\"Princ\":42904,\"Ġoverpower\":42905,\"Ġlodging\":42906,\"ĠKKK\":42907,\"rette\":42908,\"Ġabsorbs\":42909,\"wrote\":42910,\"Ġ,\\\"\":42911,\"Kings\":42912,\"ĠHail\":42913,\"ĠFalling\":42914,\"xtap\":42915,\"ĠHelena\":42916,\"irens\":42917,\"Larry\":42918,\"Ġpamphlet\":42919,\"ĠCPR\":42920,\"Gro\":42921,\"ĠHiroshima\":42922,\"Ġholistic\":42923,\"\\\".[\":42924,\"Ġdetachment\":42925,\"Ġaspire\":42926,\"Ġcomplicit\":42927,\"ĠGreenwood\":42928,\"Ġrespawn\":42929,\"ĠStupid\":42930,\"ĠFinished\":42931,\"fal\":42932,\"bass\":42933,\"Ġabhor\":42934,\"Ġmockery\":42935,\"ĠFeast\":42936,\"VIDEO\":42937,\"Ġconsec\":42938,\"ĠHungry\":42939,\"Pull\":42940,\"ĠHust\":42941,\"itance\":42942,\"?ãĢį\":42943,\")--\":42944,\"ĠParallel\":42945,\"conv\":42946,\"469\":42947,\"haar\":42948,\"want\":42949,\"Paper\":42950,\"mins\":42951,\"ĠToro\":42952,\"ĠTRUMP\":42953,\"ĠRai\":42954,\"DW\":42955,\"ĠWicked\":42956,\"ĠLep\":42957,\"Ġfunky\":42958,\"Ġdetriment\":42959,\"iosis\":42960,\"achev\":42961,\"Ġdegrade\":42962,\"imilation\":42963,\"Ġretard\":42964,\"Ġfragmentation\":42965,\"Ġcowboy\":42966,\"ĠYPG\":42967,\"ĠHAL\":42968,\"Parents\":42969,\"ĠSieg\":42970,\"ĠStrauss\":42971,\"ĠRubber\":42972,\"×Ĳ\":42973,\"Frag\":42974,\"Ġpt\":42975,\"Ġoptionally\":42976,\"ĠZIP\":42977,\"ĠTranscript\":42978,\"ĠDwell\":42979,\"882\":42980,\"Merc\":42981,\"ĠMOT\":42982,\"ãĥ¯ãĥ³\":42983,\"Ġhunts\":42984,\"Ġexecutes\":42985,\"Includes\":42986,\"Ġacidic\":42987,\"ĠResponsibility\":42988,\"ĠDumb\":42989,\"wei\":42990,\"Anderson\":42991,\"ĠJasper\":42992,\"ighton\":42993,\"absolutely\":42994,\"Adult\":42995,\"Ġplunder\":42996,\"Morning\":42997,\"ĠTours\":42998,\"ĠDane\":42999,\"Îº\":43000,\"ĠTEST\":43001,\"ĠGina\":43002,\"Ġcanine\":43003,\"awan\":43004,\"Ġsocialists\":43005,\"ĠSoda\":43006,\"Ġimpetus\":43007,\"ĠSupplementary\":43008,\"oliath\":43009,\"ĠKinnikuman\":43010,\"mittedly\":43011,\"seconds\":43012,\"Ġorganisers\":43013,\"Ġdocumentaries\":43014,\"Variable\":43015,\"GREEN\":43016,\"Ġresorts\":43017,\"Ġbragging\":43018,\"Ġ368\":43019,\"Artist\":43020,\"wk\":43021,\"blers\":43022,\"Uncommon\":43023,\"ĠRetrieved\":43024,\"Ġhectares\":43025,\"Ġtoxin\":43026,\"rank\":43027,\"Ġfaiths\":43028,\"ĠGraphic\":43029,\"Ġvec\":43030,\"ĠLIA\":43031,\"African\":43032,\"Ġardent\":43033,\"endiary\":43034,\"Lake\":43035,\"ĠDOS\":43036,\"cientious\":43037,\"ĠOkawaru\":43038,\"ĠAlly\":43039,\"ĠTimeline\":43040,\"Dash\":43041,\"ĠIc\":43042,\"continue\":43043,\"Ġtidy\":43044,\"Ġinstinctively\":43045,\"ĠPossibly\":43046,\"ĠOutdoor\":43047,\"ĠWouldn\":43048,\"Ġlich\":43049,\"ĠBray\":43050,\"ĠAX\":43051,\"ĠÃī\":43052,\"Ġ+#\":43053,\"\\\\'\":43054,\"Directory\":43055,\"abiding\":43056,\"Ġferal\":43057,\"icative\":43058,\"butt\":43059,\"Ġperverse\":43060,\"Salt\":43061,\"Ġwarped\":43062,\"Ġnineteen\":43063,\"Ġcabinets\":43064,\"ĠsrfAttach\":43065,\"ĠSloan\":43066,\"Ġpowering\":43067,\"regation\":43068,\"Flight\":43069,\"severe\":43070,\"Ġstren\":43071,\"Ġcog\":43072,\"apache\":43073,\"ĠâĿ\":43074,\"Ġcafeteria\":43075,\"paces\":43076,\"ĠGrimoire\":43077,\"utonium\":43078,\"Ġraining\":43079,\"Ġcircling\":43080,\"Ġlinebackers\":43081,\"credit\":43082,\"Ġrepatri\":43083,\"ĠCamden\":43084,\"license\":43085,\"Ġlyric\":43086,\"Ġdescriptor\":43087,\"Ġvalleys\":43088,\"Ġreq\":43089,\"Ġbackstage\":43090,\"ĠProhibition\":43091,\"ĠKet\":43092,\"Opening\":43093,\"Sym\":43094,\"æĸ¹\":43095,\"Ġservings\":43096,\"Ġoverseen\":43097,\"Ġasteroids\":43098,\"ĠMods\":43099,\"ĠSpringer\":43100,\"ĠContainer\":43101,\"è»\":43102,\"ĠMens\":43103,\"Ġmultim\":43104,\"Ġfirefighter\":43105,\"pec\":43106,\"Ġchlorine\":43107,\"Ð¼\":43108,\"endi\":43109,\"Ġsparing\":43110,\"Ġpolygamy\":43111,\"ĠRN\":43112,\"ĠPell\":43113,\"Ġtigers\":43114,\"Ġflashy\":43115,\"ĠMadame\":43116,\"Sword\":43117,\"Ġprefrontal\":43118,\"Ġprerequisite\":43119,\"uca\":43120,\"Ġwifi\":43121,\"Ġmisconception\":43122,\"Ġharshly\":43123,\"ĠStreaming\":43124,\"otom\":43125,\"ĠGiuliani\":43126,\"footed\":43127,\"Ġtubing\":43128,\"individual\":43129,\"zek\":43130,\"nuclear\":43131,\"mol\":43132,\"Ġrightful\":43133,\"493\":43134,\"Ġspecialization\":43135,\"Ġpassionately\":43136,\"ĠVelocity\":43137,\"ĠAvailability\":43138,\"Tenn\":43139,\"Ġlatch\":43140,\"ĠSomebody\":43141,\"Ġhelium\":43142,\"claw\":43143,\"Ġdipping\":43144,\"XXX\":43145,\"Ġinterpersonal\":43146,\"710\":43147,\"Ġsubter\":43148,\"Ġbiologists\":43149,\"ĠLighting\":43150,\"Ġoptic\":43151,\"Ġdenim\":43152,\"endon\":43153,\"ĠCorm\":43154,\"Ġ341\":43155,\"ĠCoup\":43156,\"Ġfearless\":43157,\"Ġalot\":43158,\"ĠClifford\":43159,\"ĠRuntime\":43160,\"ĠProvision\":43161,\"updated\":43162,\"leneck\":43163,\"Ġneuron\":43164,\"Ġgrading\":43165,\"ĠCt\":43166,\"sequence\":43167,\"inia\":43168,\"concept\":43169,\"Ġroaring\":43170,\"rival\":43171,\"ĠCaucasian\":43172,\"Ġmonog\":43173,\"keyes\":43174,\"Ġappellate\":43175,\"Ġliaison\":43176,\"EStreamFrame\":43177,\"ĠPlum\":43178,\"!.\":43179,\"Ġspherical\":43180,\"Ġperished\":43181,\"Ġblot\":43182,\"Ġbenches\":43183,\"Ġ411\":43184,\"Ġpioneered\":43185,\"Ġhurled\":43186,\"Jennifer\":43187,\"ĠYosemite\":43188,\"Chair\":43189,\"Ġreefs\":43190,\"Ġelector\":43191,\"ĠAnthem\":43192,\"652\":43193,\"Ġuninstall\":43194,\"Ġimpede\":43195,\"Ġblinking\":43196,\"Ġgoto\":43197,\"Decre\":43198,\"Aren\":43199,\"Ġstabilization\":43200,\"ĠDisabled\":43201,\"ĠYanukovych\":43202,\"Ġoutlawed\":43203,\"ĠVentura\":43204,\"teness\":43205,\"Ġplantation\":43206,\"Ġyacht\":43207,\"ĠHuawei\":43208,\"Ġsolvent\":43209,\"Ġgracious\":43210,\"Ġcuriously\":43211,\"Ġcapacitor\":43212,\"Ġcx\":43213,\"ĠReflex\":43214,\"Phys\":43215,\"ĠCf\":43216,\"ptin\":43217,\"conservative\":43218,\"Ġinvocation\":43219,\"cour\":43220,\"FN\":43221,\"ĠNewly\":43222,\"Hour\":43223,\"Asian\":43224,\"ĠLeading\":43225,\"ĠAerospace\":43226,\"Anne\":43227,\"Ġprenatal\":43228,\"Ġdeteriorating\":43229,\"HCR\":43230,\"ĠNormandy\":43231,\"olini\":43232,\"ĠAmbro\":43233,\"910\":43234,\"Ġsetbacks\":43235,\"ĠTRE\":43236,\"Ġsig\":43237,\"ĠScourge\":43238,\"597\":43239,\"798\":43240,\"Gameplay\":43241,\"Ġmsec\":43242,\"MX\":43243,\"Ġpricey\":43244,\"ĠLLP\":43245,\"akeru\":43246,\"Ġoverarching\":43247,\"ĠBale\":43248,\"Ġworldly\":43249,\"Clark\":43250,\"Ġscenic\":43251,\"Ġdisliked\":43252,\"ĠControlled\":43253,\"Tickets\":43254,\"ĠEW\":43255,\"abies\":43256,\"ĠPlenty\":43257,\"Nonetheless\":43258,\"Ġartisan\":43259,\"Transfer\":43260,\"ĠFamous\":43261,\"Ġinfield\":43262,\"bley\":43263,\"Ġunresolved\":43264,\"ĠMLA\":43265,\"ãĤĤ\":43266,\"Correction\":43267,\"Ġdemocrat\":43268,\"ĠMoreno\":43269,\"rocal\":43270,\"ilings\":43271,\"Ġsailor\":43272,\"Ġrife\":43273,\"hung\":43274,\"Ġtropes\":43275,\"Ġsnatched\":43276,\"ĠLIN\":43277,\"ĠBib\":43278,\"ESA\":43279,\"ĠPrev\":43280,\"ĠCamel\":43281,\"runtime\":43282,\"Ġobnoxious\":43283,\"437\":43284,\"Ġsummers\":43285,\"Ġunexplained\":43286,\"ĠWalters\":43287,\"caliber\":43288,\"Ġgull\":43289,\"ĠEndurance\":43290,\"ä½ľ\":43291,\"Ġ347\":43292,\"Irish\":43293,\"Ġaerobic\":43294,\"Ġcramped\":43295,\"ĠHonolulu\":43296,\"à©\":43297,\"userc\":43298,\"ecast\":43299,\"ACY\":43300,\"ĠQuery\":43301,\"ãĤ¹ãĥĪ\":43302,\"Beta\":43303,\"Ġsusceptibility\":43304,\"ĠShiv\":43305,\"ĠLimbaugh\":43306,\"ĠÃĸ\":43307,\"ĠNXT\":43308,\"ĠMuss\":43309,\"ĠBritons\":43310,\"ESCO\":43311,\"EGIN\":43312,\"Ġ%%\":43313,\"Ġsecession\":43314,\"ĠPatron\":43315,\"ĠLua\":43316,\"naires\":43317,\"ĠJPMorgan\":43318,\"usb\":43319,\"ocyte\":43320,\"Ġcouncillors\":43321,\"ĠLiang\":43322,\"farm\":43323,\"Ġnervously\":43324,\"Ġattractiveness\":43325,\"ĠKov\":43326,\"jump\":43327,\"Plot\":43328,\"Ġstains\":43329,\"ĠStatue\":43330,\"ĠApostles\":43331,\"heter\":43332,\"ĠSUPPORT\":43333,\"Ġoverwhelm\":43334,\"YES\":43335,\"Ġ291\":43336,\"density\":43337,\"Ġtrapping\":43338,\"Mit\":43339,\"Ġfide\":43340,\"ĠPamela\":43341,\"atlantic\":43342,\"Damn\":43343,\"Ġpts\":43344,\"OPA\":43345,\"Ġservicing\":43346,\"Ġoverflowing\":43347,\"ulo\":43348,\"ĠErit\":43349,\"ticket\":43350,\"lighting\":43351,\"ĠHmm\":43352,\"ãĥ¼ãĥ«\":43353,\"imoto\":43354,\"Ġchuckle\":43355,\"423\":43356,\"ãģķ\":43357,\"shape\":43358,\"Ġqueues\":43359,\"Ġanchors\":43360,\"ãĤ¼ãĤ¦ãĤ¹\":43361,\"Fer\":43362,\"Ġawoke\":43363,\"Ġ666\":43364,\"hands\":43365,\"Ġdivergence\":43366,\"Ġ505\":43367,\"Tips\":43368,\"Ġdepot\":43369,\"Ġskew\":43370,\"ĠDeliver\":43371,\"opot\":43372,\"Ġdivul\":43373,\"ĠEB\":43374,\"unsigned\":43375,\"ĠUni\":43376,\"Xbox\":43377,\"Ġforks\":43378,\"Ġ702\":43379,\"å¯\":43380,\"Ġpromoters\":43381,\"ĠVapor\":43382,\"Ġlevied\":43383,\"slot\":43384,\"Ġpigment\":43385,\"Ġcylinders\":43386,\"CRE\":43387,\"Ġsnatch\":43388,\"Ġperpetually\":43389,\"Ġlicking\":43390,\"ĠFeet\":43391,\"ĠKraken\":43392,\"ĠHolden\":43393,\"ĠCLSID\":43394,\"mr\":43395,\"Ġprojector\":43396,\"Ġdenotes\":43397,\"Ġchapel\":43398,\"ĠTorrent\":43399,\"bler\":43400,\"Route\":43401,\"ĠDefendant\":43402,\"ĠPublishers\":43403,\"ĠMales\":43404,\"ĠInnov\":43405,\"ĠAgility\":43406,\"riter\":43407,\"tymology\":43408,\"stores\":43409,\"Lind\":43410,\"Ġfolly\":43411,\"ĠZurich\":43412,\"Ble\":43413,\"Ġnurture\":43414,\"Ġcoastline\":43415,\"uchin\":43416,\"Domin\":43417,\"Ġfrivol\":43418,\"ĠConsolid\":43419,\"results\":43420,\"MJ\":43421,\"Ġphylogen\":43422,\"Ġhauled\":43423,\"ĠWiley\":43424,\"ĠJessie\":43425,\"ĠPrepare\":43426,\"ĠEps\":43427,\"Ġtreasurer\":43428,\"IAS\":43429,\"Ġcolonists\":43430,\"Ġinund\":43431,\"ĠWWF\":43432,\"ĠConverted\":43433,\"6000\":43434,\"outside\":43435,\"ĠAppearance\":43436,\"ĠRelic\":43437,\"ĠMister\":43438,\"saw\":43439,\"Ġresultant\":43440,\"Ġadjective\":43441,\"ĠLaurel\":43442,\"ĠHindi\":43443,\"bda\":43444,\"Peace\":43445,\"Ġrebirth\":43446,\"Ġmembranes\":43447,\"Ġforwarding\":43448,\"Ġcollided\":43449,\"ĠCarolyn\":43450,\"Kansas\":43451,\"599\":43452,\"ĠSolidGoldMagikarp\":43453,\"Beck\":43454,\"Ġstressing\":43455,\"ĠGoo\":43456,\"ĠCooperative\":43457,\"Ġfs\":43458,\"ĠArchie\":43459,\"Liter\":43460,\"ĠKlopp\":43461,\"Jerry\":43462,\"Ġfootwear\":43463,\"Warren\":43464,\"Ġscree\":43465,\"hare\":43466,\"Understanding\":43467,\"Ped\":43468,\"Ġanthology\":43469,\"ĠAnnounce\":43470,\"Mega\":43471,\"Ġfluent\":43472,\"Ġbondage\":43473,\"ĠDiscount\":43474,\"ilial\":43475,\"Cart\":43476,\"ĠNightmares\":43477,\"Sham\":43478,\"ĠBoll\":43479,\"ussie\":43480,\"Http\":43481,\"Atlanta\":43482,\"Ġunrecogn\":43483,\"ĠBid\":43484,\"Ġundergrad\":43485,\"Ġforgiving\":43486,\"ĠGlover\":43487,\"AAAAAAAA\":43488,\"445\":43489,\"VG\":43490,\"paio\":43491,\"killers\":43492,\"Ġresponsibly\":43493,\"Ġmobilize\":43494,\"Ġeffected\":43495,\"ĠLumin\":43496,\"Ġkale\":43497,\"Ġinfringing\":43498,\"announced\":43499,\"Ġfitt\":43500,\"batch\":43501,\"ĠTackle\":43502,\"ĠLime\":43503,\"ĠAPP\":43504,\"ukemia\":43505,\"Ġruby\":43506,\"Ġexoner\":43507,\"ĠCasual\":43508,\"070\":43509,\"Ġpelvic\":43510,\"Ġautomate\":43511,\"ĠKear\":43512,\"ĠCoastal\":43513,\"Ġcreed\":43514,\"Ġboredom\":43515,\"ĠStun\":43516,\"riott\":43517,\"Ĥİ\":43518,\"Ġregenerate\":43519,\"Ġcomedians\":43520,\"ĠOPER\":43521,\"Spons\":43522,\"idium\":43523,\"onis\":43524,\"Located\":43525,\"057\":43526,\"Ġsuspense\":43527,\"ĠDating\":43528,\"Cass\":43529,\"Ġneocons\":43530,\"ĠShinzo\":43531,\"Ġawoken\":43532,\"christ\":43533,\"ĠMessages\":43534,\"attled\":43535,\"ĠSpray\":43536,\"ĠSpice\":43537,\"CW\":43538,\"Ġshielding\":43539,\"ĠGaul\":43540,\"Amid\":43541,\"Ġparamilitary\":43542,\"Ġmultif\":43543,\"ĠTanner\":43544,\"ilk\":43545,\"Ġgoddamn\":43546,\"gements\":43547,\"Ġbefriend\":43548,\"mobi\":43549,\"Ġ388\":43550,\"folder\":43551,\"acca\":43552,\"Ġinsin\":43553,\"gap\":43554,\"Nev\":43555,\"fifth\":43556,\"Ġpsychiatry\":43557,\"banks\":43558,\"THIS\":43559,\"Ġharb\":43560,\"acqu\":43561,\"Ġfacade\":43562,\"ĠPowerPoint\":43563,\"803\":43564,\"Ġbluff\":43565,\"Shares\":43566,\"Ġfavoring\":43567,\"Elizabeth\":43568,\"ÃįÃį\":43569,\"Ġranger\":43570,\"772\":43571,\"ĠArche\":43572,\"hak\":43573,\"ĠGenetics\":43574,\"ĠFEMA\":43575,\"Ġevolves\":43576,\"Ġeste\":43577,\"ĠPets\":43578,\"ĠMÃ©\":43579,\"ĠInteresting\":43580,\"ĠCanterbury\":43581,\"chapter\":43582,\"ĠStarfleet\":43583,\"Spanish\":43584,\"Ġdrawback\":43585,\"ĠNorwich\":43586,\"970\":43587,\"north\":43588,\"aganda\":43589,\"Ġtransformative\":43590,\"ramids\":43591,\"biology\":43592,\"aday\":43593,\"Ġpropagation\":43594,\"ĠGamma\":43595,\"ĠDenise\":43596,\"ĠCalculator\":43597,\"entimes\":43598,\"ĠBett\":43599,\"Ġappendix\":43600,\"ĠHDD\":43601,\"AKING\":43602,\"Ġstigmat\":43603,\"Ġholster\":43604,\"Ġordinarily\":43605,\"Chance\":43606,\"ĠContrary\":43607,\"Ġadhesive\":43608,\"Ġgathers\":43609,\"612\":43610,\"reau\":43611,\"onyms\":43612,\"eways\":43613,\"Ġinduces\":43614,\"Ġinterchangeable\":43615,\"sem\":43616,\"Whit\":43617,\"Ġtrance\":43618,\"Ġincorporation\":43619,\"ĠExtras\":43620,\"Financial\":43621,\"Ġawkwardly\":43622,\"ĠSturgeon\":43623,\"ĠHY\":43624,\"Normally\":43625,\"ĠEnding\":43626,\"ĠAssist\":43627,\"encrypted\":43628,\"Ġsubjug\":43629,\"Ġnos\":43630,\"Ġfanatic\":43631,\"Cub\":43632,\"CU\":43633,\"?\\\".\":43634,\"Ġirreversible\":43635,\"åĤ\":43636,\"031\":43637,\"ĠHAR\":43638,\"spread\":43639,\"ulia\":43640,\"=$\":43641,\"Scope\":43642,\"Lots\":43643,\"Ġlifestyles\":43644,\"olon\":43645,\"Ġfeds\":43646,\"Ġcongratulate\":43647,\"webkit\":43648,\"Ġindistinguishable\":43649,\"ĠSwing\":43650,\"Ġcommandments\":43651,\"quila\":43652,\"abella\":43653,\"methyl\":43654,\"annabin\":43655,\"Ġovere\":43656,\"Ġlobster\":43657,\"ĠQUEST\":43658,\"ĠCONTIN\":43659,\"bernatorial\":43660,\"::::::::\":43661,\"ĠTrave\":43662,\"ĠSamoa\":43663,\"ANI\":43664,\"752\":43665,\"Ð´\":43666,\"usercontent\":43667,\"ĠModerate\":43668,\"yeah\":43669,\"ĠKitt\":43670,\"Ġwee\":43671,\"Ġstuffing\":43672,\"ĠIntervention\":43673,\"ĠDign\":43674,\"Ġwarehouses\":43675,\"ĠFiji\":43676,\"Ġpellets\":43677,\"Ġtakeaway\":43678,\"ĠTABLE\":43679,\"ĠClassical\":43680,\"collection\":43681,\"Ġlandfall\":43682,\"ĠMuscle\":43683,\"Ġsettles\":43684,\"ĠADV\":43685,\"Ġ344\":43686,\"Laura\":43687,\"Ġfared\":43688,\"ĠPartial\":43689,\"436\":43690,\"ossibility\":43691,\"ĠDaly\":43692,\"ĠTarant\":43693,\"ĠFuji\":43694,\"aml\":43695,\"cence\":43696,\"551\":43697,\"ĠProcedures\":43698,\"ĠOCD\":43699,\"ĠUD\":43700,\"tin\":43701,\"QUI\":43702,\"acho\":43703,\"438\":43704,\"Ġglitches\":43705,\"Ġenchantment\":43706,\"Ġcalculates\":43707,\"IRO\":43708,\"ĠHua\":43709,\"alyses\":43710,\"ĠLift\":43711,\"umo\":43712,\"Ġleapt\":43713,\"Ġhypothesized\":43714,\"ĠGustav\":43715,\"itans\":43716,\"VERSION\":43717,\"æł\":43718,\"Roger\":43719,\"Ġrand\":43720,\"ĠAdapter\":43721,\"Ġ331\":43722,\"ĠPetition\":43723,\"kies\":43724,\"Mars\":43725,\"Ġundercut\":43726,\"zees\":43727,\"ĠLyons\":43728,\"ĠDHCP\":43729,\"Missing\":43730,\"Ġretirees\":43731,\"Ġinsidious\":43732,\"eli\":43733,\">)\":43734,\".ãĢį\":43735,\"Ġfinalists\":43736,\"ĠAure\":43737,\"Ġaccuser\":43738,\"Ġwastes\":43739,\"ĠYs\":43740,\"ĠLori\":43741,\"Ġconstituencies\":43742,\"Ġsupper\":43743,\"Ġmayhem\":43744,\"orange\":43745,\"Ġmisplaced\":43746,\"Ġmanagerial\":43747,\"Ġexce\":43748,\"ĠCLI\":43749,\"Ġprimal\":43750,\"ĠLent\":43751,\"Crystal\":43752,\"hover\":43753,\"ĠNTS\":43754,\"endum\":43755,\"Ġdw\":43756,\"ĠAlc\":43757,\"nostic\":43758,\"Ġpreserves\":43759,\"ĠTsarnaev\":43760,\"Ġtripled\":43761,\"relative\":43762,\"Arcade\":43763,\"killing\":43764,\"ĠWEEK\":43765,\"ĠHanna\":43766,\"Dust\":43767,\"Completed\":43768,\"ģ«\":43769,\"Ġapproves\":43770,\"ĠSurf\":43771,\"ĠLutheran\":43772,\"venants\":43773,\"Ġrobberies\":43774,\"weights\":43775,\"software\":43776,\"atana\":43777,\"ugal\":43778,\"Ġgravy\":43779,\"ĠCance\":43780,\"OLOGY\":43781,\"lyak\":43782,\"Tonight\":43783,\"Ġunveil\":43784,\"Ġ1904\":43785,\"ĠMinion\":43786,\"entious\":43787,\"stice\":43788,\"packages\":43789,\"ĠGEAR\":43790,\"Ġgol\":43791,\"ĠHutchinson\":43792,\"ĠProfession\":43793,\"ĠGUN\":43794,\"ĠDifference\":43795,\"ĠTsukuyomi\":43796,\"ĠLesbian\":43797,\"670\":43798,\"Ġfugitive\":43799,\"ĠPlanetary\":43800,\"--------------------------------------------------------\":43801,\"Ġaccrued\":43802,\"Ġchicks\":43803,\"Ġstopp\":43804,\"Ġblockers\":43805,\"Cod\":43806,\"Ġcommenters\":43807,\"ĠSomewhere\":43808,\"ĠPhotographer\":43809,\"theme\":43810,\"Ġmayoral\":43811,\"wu\":43812,\"Ġantennas\":43813,\"Ġrevamped\":43814,\"ĠSubjects\":43815,\"itÃ©\":43816,\"imura\":43817,\"Ġentrances\":43818,\"literally\":43819,\"Ġtenets\":43820,\"ĠOMG\":43821,\"ĠMPH\":43822,\"ĠDonkey\":43823,\"ĠOffense\":43824,\"Ġ\\\"+\":43825,\"Snap\":43826,\"ĠAFB\":43827,\"Ġanimate\":43828,\"ĠSod\":43829,\"Hispanic\":43830,\"Ġinconsistency\":43831,\"Db\":43832,\"FY\":43833,\"Export\":43834,\"Ġape\":43835,\"Ġpearl\":43836,\"ibel\":43837,\"ĠPACs\":43838,\"Ġ{\\\\\":43839,\"Ġactu\":43840,\"ĠHSBC\":43841,\"campus\":43842,\"Ġpayoff\":43843,\"Ġdeities\":43844,\"ĠNato\":43845,\"ouple\":43846,\"Ġcensored\":43847,\"ĠClojure\":43848,\"Ġconfounding\":43849,\"eni\":43850,\"Ġreckon\":43851,\"ophe\":43852,\"Ġspotting\":43853,\"Ġsignifies\":43854,\"Ġpropel\":43855,\"Ġfestive\":43856,\"Suggest\":43857,\"Ġpledging\":43858,\"ĠBerman\":43859,\"Ġrebellious\":43860,\"Ġovershadowed\":43861,\"Ġinfiltrated\":43862,\"jobs\":43863,\"672\":43864,\"Ġscalable\":43865,\"Ġdominion\":43866,\"ĠNewfoundland\":43867,\"ĠMeadow\":43868,\"Ġpartitions\":43869,\"AMI\":43870,\"Ġsupplementary\":43871,\"strument\":43872,\"Ġhairy\":43873,\"Ġperpetuate\":43874,\"Ġnutshell\":43875,\"ĠPotato\":43876,\"ĠHobbit\":43877,\"Ġcurses\":43878,\"Float\":43879,\"Ġquieter\":43880,\"Ġfueling\":43881,\"Ġcapsules\":43882,\"ĠLust\":43883,\"ĠHaunted\":43884,\"Executive\":43885,\"Ġchildbirth\":43886,\"Gre\":43887,\"Ġradiant\":43888,\"åİ\":43889,\"Ġmalls\":43890,\"Ġinept\":43891,\"ĠWarranty\":43892,\"Ġspectator\":43893,\"Eh\":43894,\"thens\":43895,\"Ġculminating\":43896,\"æ©\":43897,\"arya\":43898,\"ãĤ®\":43899,\"ilitarian\":43900,\"ĠORIG\":43901,\"ĠSpending\":43902,\"ptives\":43903,\"ĠSiren\":43904,\"ĠRecording\":43905,\"ayne\":43906,\"Ġvim\":43907,\"Ġsprang\":43908,\"Tang\":43909,\"ĠMFT\":43910,\"morning\":43911,\"ĠWeed\":43912,\"mpeg\":43913,\"cession\":43914,\"ĠChung\":43915,\"730\":43916,\"warning\":43917,\"562\":43918,\"handedly\":43919,\"Poor\":43920,\"Politics\":43921,\":#\":43922,\"Ġpian\":43923,\"Ġfeces\":43924,\"ĠDocumentation\":43925,\"Ġbanished\":43926,\"Ġ399\":43927,\"ĠARC\":43928,\"Ġheinous\":43929,\"Jake\":43930,\"ĠAmir\":43931,\"wayne\":43932,\"vre\":43933,\"oshenko\":43934,\"Ġnotebooks\":43935,\"Ġfoundational\":43936,\"Ġmarvelous\":43937,\"ixtape\":43938,\"Ġwithdrawals\":43939,\"Ġhorde\":43940,\"ĠDhabi\":43941,\"isable\":43942,\"ĠKD\":43943,\"Ġcontagious\":43944,\"ĠDip\":43945,\"ĠArrows\":43946,\"Ġpronouns\":43947,\"Ġmorphine\":43948,\"ĠBUS\":43949,\"682\":43950,\"Ġkosher\":43951,\"finished\":43952,\"ĠInstruments\":43953,\"Ġfused\":43954,\"yden\":43955,\"ĠSalmon\":43956,\"Fab\":43957,\"affected\":43958,\"KEN\":43959,\"CENT\":43960,\"Domain\":43961,\"Ġpokemon\":43962,\"ĠDrinking\":43963,\"Growing\":43964,\"ĠInvestigative\":43965,\"ĠAether\":43966,\"emi\":43967,\"Ġtabloid\":43968,\"Ġrepro\":43969,\"ĠNotwithstanding\":43970,\"ĠBerserker\":43971,\"Ġdramas\":43972,\"ĠclichÃ©\":43973,\"Ġbung\":43974,\"ĠURI\":43975,\"ĠDos\":43976,\"044\":43977,\"Ġpastors\":43978,\"Ġls\":43979,\"Ġacrylic\":43980,\"aunts\":43981,\"Edward\":43982,\"Ġmajorities\":43983,\"Bang\":43984,\"Ġfielding\":43985,\"ĠReplacement\":43986,\"ĠAlchemy\":43987,\"ppard\":43988,\"ĠRomeo\":43989,\"ĠSanct\":43990,\"ĠLavrov\":43991,\"ibble\":43992,\"Instruct\":43993,\"Ġimpractical\":43994,\"ĠPlayboy\":43995,\"cephal\":43996,\"Ġswaps\":43997,\"Ġkan\":43998,\"ĠTheo\":43999,\"Ġillustrating\":44000,\"Ġdismantled\":44001,\"ĠTransgender\":44002,\"ĠGuth\":44003,\"UGH\":44004,\"Ġtriumphant\":44005,\"Ġencompass\":44006,\"Ġbookmark\":44007,\"uddin\":44008,\"jer\":44009,\"Ġpredicate\":44010,\"ESH\":44011,\"Ġwhence\":44012,\"ĠABE\":44013,\"Ġnonprofits\":44014,\"Sequ\":44015,\"Ġdiabetic\":44016,\"Ġpend\":44017,\"Ġheartfelt\":44018,\"shi\":44019,\"Ġinteracts\":44020,\"ĠTelecom\":44021,\"Ġbombardment\":44022,\"depending\":44023,\"ĠLowry\":44024,\"ĠAdmission\":44025,\"ĠBlooming\":44026,\"ustration\":44027,\"enegger\":44028,\"Brew\":44029,\"Ġmolten\":44030,\"ĠNerd\":44031,\"PIN\":44032,\"âĸĢ\":44033,\"avement\":44034,\"Ġtoured\":44035,\"Ġcoefficients\":44036,\"ĠTrayvon\":44037,\"ansson\":44038,\"Ġsandy\":44039,\"told\":44040,\"flows\":44041,\"Ġpopulous\":44042,\"ĠTinder\":44043,\"ĠBliss\":44044,\"Rachel\":44045,\"Minimum\":44046,\"Ġcontestant\":44047,\"ĠReduce\":44048,\"ĠMorse\":44049,\"ĠGrassley\":44050,\"ĠClicker\":44051,\"Ġexpr\":44052,\"Ġsincerity\":44053,\"Ġmarqu\":44054,\"Ġelicit\":44055,\"ĠProposition\":44056,\"ĠDemonic\":44057,\"Ġtacos\":44058,\"Greek\":44059,\"Ġpostwar\":44060,\"Ġinsofar\":44061,\"ĠPork\":44062,\"Ġ352\":44063,\"doctoral\":44064,\"walking\":44065,\"Ġmidterm\":44066,\"ĠSammy\":44067,\"sighted\":44068,\"ĠTRANS\":44069,\"ici\":44070,\"ALD\":44071,\"ĠUSL\":44072,\"ĠFISA\":44073,\"ĠAmpl\":44074,\"ĠAlexandra\":44075,\"inelli\":44076,\"Train\":44077,\"Ġsignify\":44078,\"ĠVersus\":44079,\"Ġobfusc\":44080,\"Ġkh\":44081,\"Ġaggro\":44082,\"ĠRenault\":44083,\"Ġ348\":44084,\"518\":44085,\"oxicity\":44086,\"022\":44087,\"ĠTwist\":44088,\"Ġgoofy\":44089,\"Dynamic\":44090,\"Ġbriefings\":44091,\"might\":44092,\"899\":44093,\"Ġderogatory\":44094,\"Tro\":44095,\"Ġforging\":44096,\"ĠKoran\":44097,\"ĠMarried\":44098,\"ĠBucs\":44099,\"Ġpalate\":44100,\"ĠConversion\":44101,\"mable\":44102,\"413\":44103,\"Ġ(_\":44104,\"Ġsiph\":44105,\"ĠNEO\":44106,\"college\":44107,\"Ġmarginally\":44108,\"Ġflirt\":44109,\"ĠTraps\":44110,\"ĠPace\":44111,\"é»Ĵ\":44112,\"Ġgoaltender\":44113,\"Ġforbids\":44114,\"Ġclerks\":44115,\"ĠTant\":44116,\"ĠRobbins\":44117,\"ĠPrinting\":44118,\"Ġpremiered\":44119,\"Ġmagnification\":44120,\"ĠTG\":44121,\"ĠRouse\":44122,\"ĠMock\":44123,\"odynamics\":44124,\"Ġpreclude\":44125,\"ismo\":44126,\"ĠPulitzer\":44127,\"Ġavalanche\":44128,\"ĠKodi\":44129,\"ribune\":44130,\"ĠLena\":44131,\"Electric\":44132,\"Ġrefinery\":44133,\"Ġendowed\":44134,\"Ġcounselors\":44135,\"Ġdolphin\":44136,\"ĠMith\":44137,\"Ġarmoured\":44138,\"hibited\":44139,\"Begin\":44140,\"ĠPW\":44141,\"Oil\":44142,\"ĠVor\":44143,\"ĠSharif\":44144,\"ĠFrazier\":44145,\"estate\":44146,\"Ġjams\":44147,\"Proxy\":44148,\"Ġbandits\":44149,\"ĠPresbyterian\":44150,\"ĠPremiere\":44151,\"tiny\":44152,\"ĠCruel\":44153,\"Testing\":44154,\"Ġhomer\":44155,\"ĠVERS\":44156,\"ĠProl\":44157,\"ĠDeposit\":44158,\"ĠCoffin\":44159,\"Ġseminars\":44160,\"Ġsql\":44161,\"ĠDefendants\":44162,\"Alternatively\":44163,\"ĠRats\":44164,\"ç«\":44165,\"ethyst\":44166,\"'>\":44167,\"Ġissuer\":44168,\"589\":44169,\"Ġchaired\":44170,\"ĠAccessories\":44171,\"manent\":44172,\"Ġmarrow\":44173,\"ĠPrimordial\":44174,\"CN\":44175,\"Ġlimitless\":44176,\"ĠCarnage\":44177,\"Ġundrafted\":44178,\"qv\":44179,\"INESS\":44180,\"onew\":44181,\"Ġcohesion\":44182,\"987\":44183,\"Ġnecks\":44184,\"Ġfootballer\":44185,\"ĠGER\":44186,\"Ġdetectable\":44187,\"ĠSupporting\":44188,\"ĠCSV\":44189,\"ocally\":44190,\"kHz\":44191,\"Ġunde\":44192,\"Ġshone\":44193,\"Ġbudding\":44194,\"trak\":44195,\"Standing\":44196,\"ĠStarcraft\":44197,\"ĠKemp\":44198,\"Bench\":44199,\"Ġthwarted\":44200,\"ĠGrounds\":44201,\"athi\":44202,\"Lisa\":44203,\"Dialog\":44204,\"ĠSX\":44205,\"Vision\":44206,\"Ġingenious\":44207,\"ÙĲ\":44208,\"Ġfostering\":44209,\"ĠZa\":44210,\"ĠIngram\":44211,\"Ġ\\\"@\":44212,\"Naturally\":44213,\"616\":44214,\"035\":44215,\"ĠFAC\":44216,\"Hmm\":44217,\"554\":44218,\"Ġaccelerator\":44219,\"ĠVend\":44220,\"Ġsunscreen\":44221,\"Ġtuberculosis\":44222,\"raviolet\":44223,\"ĠFunctional\":44224,\"ĠErrors\":44225,\"edar\":44226,\"1966\":44227,\"ĠSpectre\":44228,\"ĠRecipes\":44229,\"885\":44230,\"ĠMankind\":44231,\"Liverpool\":44232,\"Ġ|--\":44233,\"Ġsubstitutes\":44234,\"ĠXT\":44235,\"wired\":44236,\"Ġinco\":44237,\"ĠAfgh\":44238,\"Eva\":44239,\"icc\":44240,\"Song\":44241,\"Knight\":44242,\"Ġdiligently\":44243,\"ĠBroadcast\":44244,\"Aid\":44245,\"Ġafar\":44246,\"ĠHMS\":44247,\"atonin\":44248,\"ĠGrateful\":44249,\"Ġfireplace\":44250,\"ĠOmni\":44251,\"euro\":44252,\"ĠFRE\":44253,\"ĠShib\":44254,\"ĠDigest\":44255,\"toggle\":44256,\"Ġheadsets\":44257,\"Ġdiffusion\":44258,\"ĠSquirrel\":44259,\"ĠFN\":44260,\"Ġdarkened\":44261,\"outher\":44262,\"Ġsleeps\":44263,\"ĠXer\":44264,\"guns\":44265,\"Ġsetups\":44266,\"Ġparsed\":44267,\"Ġmammoth\":44268,\"ĠCurious\":44269,\"gob\":44270,\"ĠFitzpatrick\":44271,\"ĠEmil\":44272,\"imov\":44273,\".............\":44274,\"ĠBenny\":44275,\"Secondly\":44276,\"Ġhearty\":44277,\"Ġconson\":44278,\"stained\":44279,\"Ġgalactic\":44280,\"clave\":44281,\"Ġplummeted\":44282,\"Ġpests\":44283,\"Ġswat\":44284,\"Ġreferrals\":44285,\"ĠLionel\":44286,\"holy\":44287,\"Ġunderdog\":44288,\"ĠSlater\":44289,\"ĠProvide\":44290,\"ĠAmar\":44291,\"ressor\":44292,\"åĮ\":44293,\"onga\":44294,\"Ġtimid\":44295,\"Ġpiety\":44296,\"ĠDek\":44297,\"Ġsurging\":44298,\"azo\":44299,\"Ġ610\":44300,\"Ġdesks\":44301,\"ĠSpokane\":44302,\"ĠAnfield\":44303,\"Ġwarships\":44304,\"ĠCobra\":44305,\"Ġarming\":44306,\"clusively\":44307,\"ĠBadge\":44308,\"agascar\":44309,\"ĠPRESS\":44310,\"ĠMcKenzie\":44311,\"ĠFerdinand\":44312,\"burning\":44313,\"Afee\":44314,\"Ġtyrann\":44315,\"ĠIw\":44316,\"ĠBoone\":44317,\"1007\":44318,\"ĠRept\":44319,\"ĊÂł\":44320,\"Ġcaravan\":44321,\"ĠDill\":44322,\"ĠBundesliga\":44323,\"Chuck\":44324,\"Ġhealer\":44325,\"ãĥ¼ãĥĨ\":44326,\"ĠHobby\":44327,\"Ġnegate\":44328,\"Ġcritiques\":44329,\"sectional\":44330,\"mopolitan\":44331,\"Ġdx\":44332,\"Ġoutsourcing\":44333,\"ĠCipher\":44334,\"tap\":44335,\"Sharp\":44336,\"Ġupbeat\":44337,\"Ġhangar\":44338,\"Ġcruising\":44339,\"ĠNiagara\":44340,\"Ġ342\":44341,\"illus\":44342,\"ĠSv\":44343,\"Ġsubtitles\":44344,\"Ġsquared\":44345,\"Ġbookstore\":44346,\"Ġrevolutionaries\":44347,\"ĠCarlton\":44348,\"abal\":44349,\"Utah\":44350,\"Ġdespise\":44351,\"ĠUM\":44352,\"consider\":44353,\"aido\":44354,\"Ġcarts\":44355,\"ĠTurtles\":44356,\"Training\":44357,\"Ġhonorary\":44358,\"Â¢\":44359,\"Ġtriangles\":44360,\"422\":44361,\"Ġreprinted\":44362,\"Ġgraceful\":44363,\"ĠMongolia\":44364,\"Ġdisruptions\":44365,\"ĠBoh\":44366,\"Ġ349\":44367,\"Ġdrains\":44368,\"Ġconsulate\":44369,\"Ġbends\":44370,\"Ġmafia\":44371,\"uron\":44372,\"ĠFulton\":44373,\"misc\":44374,\"Ġrenal\":44375,\"Ġinaction\":44376,\"cking\":44377,\"Ġphotons\":44378,\"Ġbruised\":44379,\"ĠCodes\":44380,\"ogi\":44381,\"Ġnests\":44382,\"ĠLovely\":44383,\"ĠLibre\":44384,\"ĠDaryl\":44385,\"Ġ###\":44386,\"Sys\":44387,\".,\\\"\":44388,\"Ġfreezes\":44389,\"establishment\":44390,\"andowski\":44391,\"Ġcumbers\":44392,\"ĠStarg\":44393,\"ĠBombs\":44394,\"Ġlegions\":44395,\"Ġhandwriting\":44396,\"Ġgrun\":44397,\"ĠCah\":44398,\"sequent\":44399,\"Ġmoth\":44400,\"ĠMSM\":44401,\"Insert\":44402,\"Fif\":44403,\"Ġmotel\":44404,\"Ġdexter\":44405,\"ĠBild\":44406,\"heartedly\":44407,\"Ġprope\":44408,\"ĠTexture\":44409,\"ĠJunction\":44410,\"ynthesis\":44411,\"ocard\":44412,\"ĠVera\":44413,\"ĠBarth\":44414,\"ĠÎ¼g\":44415,\"Ġlashed\":44416,\"Ġ351\":44417,\"ĠZamb\":44418,\"ĠStaples\":44419,\"ĠCortex\":44420,\"ĠCorker\":44421,\"Ġcontinuum\":44422,\"ĠWRITE\":44423,\"unta\":44424,\"ridor\":44425,\"Ġdeems\":44426,\"033\":44427,\"ĠGOLD\":44428,\"pas\":44429,\"Ġrepressive\":44430,\"ãĥĨãĤ£\":44431,\"Ġbaffled\":44432,\"Scar\":44433,\"Ġcrave\":44434,\"Ġ______\":44435,\"Ġentrepreneurship\":44436,\"ĠDirectorate\":44437,\"Ġ'[\":44438,\"Ġvines\":44439,\"Ġascended\":44440,\"ĠGROUP\":44441,\"ĠGoodbye\":44442,\"Ġdogged\":44443,\"ãĥ´ãĤ¡\":44444,\"Manufact\":44445,\"Ġunimaginable\":44446,\"riots\":44447,\"ierrez\":44448,\"Ġrelativity\":44449,\"ĠCrafting\":44450,\"raught\":44451,\"uden\":44452,\"cookie\":44453,\"Ġassassins\":44454,\"Ġdissatisfied\":44455,\"acci\":44456,\"Ġconduit\":44457,\"Spread\":44458,\"ĠRican\":44459,\"nice\":44460,\"izzle\":44461,\"Ġscares\":44462,\"ĠWHY\":44463,\"phans\":44464,\"535\":44465,\"Ġprotracted\":44466,\"ĠKristen\":44467,\"536\":44468,\"ĠScrib\":44469,\"ĠNeh\":44470,\"Ġtwenties\":44471,\"Ġpredicament\":44472,\"Ġhandcuffs\":44473,\"Ġfruitful\":44474,\"ĠUL\":44475,\"ĠLudwig\":44476,\"Ġattest\":44477,\"ĠBreaker\":44478,\"Ġbiologically\":44479,\"ĠDealer\":44480,\"Ġrenovations\":44481,\"fw\":44482,\"essen\":44483,\"Alice\":44484,\"ĠHenri\":44485,\"Ġunilaterally\":44486,\"ĠSidd\":44487,\"hai\":44488,\"ĠStretch\":44489,\"Sales\":44490,\"Ġcumbersome\":44491,\"ĠJavier\":44492,\"Ġtrendy\":44493,\"Ġrotting\":44494,\"ĠChallenges\":44495,\"Ġscraps\":44496,\"Ġfacets\":44497,\"ĠVeronica\":44498,\"ĠVerge\":44499,\"ĠSana\":44500,\"Alien\":44501,\"ĠRih\":44502,\"Ġradial\":44503,\"ectar\":44504,\"Ġ630\":44505,\"cli\":44506,\"Marie\":44507,\"Ġwildfire\":44508,\"ĠCato\":44509,\"hander\":44510,\"Ġwaitress\":44511,\"Ġchops\":44512,\"ĠSECTION\":44513,\"Ġbluntly\":44514,\"ĠCatalog\":44515,\"nian\":44516,\"study\":44517,\"Ġpatrolling\":44518,\"ĠTenth\":44519,\"nexus\":44520,\"ĠNON\":44521,\"opsy\":44522,\"Ġscathing\":44523,\"sie\":44524,\"Ġdeteriorated\":44525,\"VB\":44526,\"Nazis\":44527,\"Ġdepictions\":44528,\"Ġauthenticated\":44529,\"ĠConce\":44530,\"krit\":44531,\"Ġpromulg\":44532,\"ĠLONG\":44533,\"UFC\":44534,\"ĠVisitors\":44535,\"ĠRecall\":44536,\"Ġrehabilit\":44537,\"ĠSLI\":44538,\"Ġglacier\":44539,\"ĠBite\":44540,\"Ġ503\":44541,\"Ġvomit\":44542,\"Ġfermented\":44543,\"ĠKhalid\":44544,\"Ġgraded\":44545,\"ĠMagicka\":44546,\"ĠIchigo\":44547,\"powerful\":44548,\"icators\":44549,\"753\":44550,\"Ġshrew\":44551,\"Ġ356\":44552,\"Ġlegalizing\":44553,\"Ġallotted\":44554,\"ĠArchdemon\":44555,\"ithing\":44556,\"iggurat\":44557,\"VOL\":44558,\"Leod\":44559,\"Ġoily\":44560,\"Ġinducing\":44561,\"Ġamygdala\":44562,\"Ġadmins\":44563,\"ĠAcquisition\":44564,\"CAN\":44565,\"Ġschematic\":44566,\"Ġmoan\":44567,\"ĠCameroon\":44568,\"Ġtink\":44569,\"Ġmerry\":44570,\"Ġbutterflies\":44571,\"ĠGoff\":44572,\"Ġworkspace\":44573,\"ĠCorona\":44574,\"Ġjavascript\":44575,\"ĠDolphin\":44576,\"ĠCantor\":44577,\"464\":44578,\"toe\":44579,\"APS\":44580,\"ĠAging\":44581,\"Ġpadded\":44582,\"ĠZheng\":44583,\"ĠHeld\":44584,\"Ġestranged\":44585,\"Ġ770\":44586,\".}\":44587,\"ĠDunham\":44588,\"Ġsmokes\":44589,\"Ġcapitals\":44590,\"undai\":44591,\"Shin\":44592,\"ĠFounding\":44593,\"Ġentitle\":44594,\"Ġcenterpiece\":44595,\"Discover\":44596,\"Ġthereto\":44597,\"alert\":44598,\"ĠNou\":44599,\"ĠAnalyst\":44600,\"lc\":44601,\"FH\":44602,\"FIELD\":44603,\"ĠPOV\":44604,\"gray\":44605,\"Ġarcs\":44606,\"ĠHOT\":44607,\"Ġrs\":44608,\"Ġobligatory\":44609,\"ĠArchitects\":44610,\"ĠSven\":44611,\"ĠFEC\":44612,\"0200\":44613,\"Christmas\":44614,\"ĠAlbania\":44615,\"ratom\":44616,\"587\":44617,\"Ġhardships\":44618,\"Ġautos\":44619,\"ĠCharges\":44620,\"Ġapes\":44621,\"Ġ376\":44622,\"wallet\":44623,\"Ġintoxication\":44624,\"Ġgoblin\":44625,\"Ġ570\":44626,\"++++++++++++++++\":44627,\"ĠYelp\":44628,\"ĠMagnetic\":44629,\"ĠBriggs\":44630,\"Rail\":44631,\"Ġspawns\":44632,\"ĠWiggins\":44633,\"Ġshowcased\":44634,\"Ġresorted\":44635,\"uben\":44636,\"Ġwhipping\":44637,\"Ġimitate\":44638,\"Ġdigestion\":44639,\"ĠUSPS\":44640,\"ĠGest\":44641,\"Ġyea\":44642,\"ĠTight\":44643,\"indal\":44644,\"icas\":44645,\"`.\":44646,\"CAST\":44647,\"'';\":44648,\"ĠFet\":44649,\"opathic\":44650,\"Invalid\":44651,\"Ġregretted\":44652,\"Ġbroccoli\":44653,\"ĠScores\":44654,\"eve\":44655,\"Ġpostings\":44656,\"Ġaccumulating\":44657,\"Ġneedless\":44658,\"elfth\":44659,\"Ġmayors\":44660,\"Ġscrib\":44661,\"Ġanecdotes\":44662,\"Ġbotched\":44663,\"ĠRibbon\":44664,\"ĠConstantine\":44665,\"iuses\":44666,\"esses\":44667,\"Ġdevise\":44668,\"Compared\":44669,\"Ġpudding\":44670,\"Ġgarg\":44671,\"Ġevoke\":44672,\"797\":44673,\"Ġdetox\":44674,\"909\":44675,\"ĠPieces\":44676,\"ĠMcCartney\":44677,\"Ġmetast\":44678,\"ĠKrypt\":44679,\"POR\":44680,\"Ġtending\":44681,\"ĠMerchants\":44682,\"Proof\":44683,\"ĠVarg\":44684,\"ĠPortable\":44685,\"ãĥ¼ãĥĨãĤ£\":44686,\"Brain\":44687,\"2500\":44688,\"Ġfoliage\":44689,\"Ø¹\":44690,\"Ġmentors\":44691,\"ĠAires\":44692,\"Ġminimalist\":44693,\"Ġingested\":44694,\"ĠTrojan\":44695,\"ĠQian\":44696,\"involved\":44697,\"027\":44698,\"Ġeroded\":44699,\"RAFT\":44700,\"Ġblurry\":44701,\"Mob\":44702,\"Ġbuffet\":44703,\"ĠFnatic\":44704,\"aea\":44705,\"KNOWN\":44706,\"ĠInit\":44707,\"safety\":44708,\"enum\":44709,\"ACTION\":44710,\"ĠCrusher\":44711,\"ĠDates\":44712,\"Ġ................\":44713,\"calling\":44714,\"akov\":44715,\"Ġventured\":44716,\"Ġ555\":44717,\"auga\":44718,\"Hart\":44719,\"ĠAero\":44720,\"MAC\":44721,\"Ġthinly\":44722,\"Ġarra\":44723,\"STATE\":44724,\"ilde\":44725,\"ĠJacqu\":44726,\"ĠFemales\":44727,\"Ġtheorem\":44728,\"Ġ346\":44729,\"Ġsmartest\":44730,\"ĠPUBLIC\":44731,\"ĠKron\":44732,\"ĠBits\":44733,\"ĠVessel\":44734,\"ĠTelephone\":44735,\"Ġdecap\":44736,\"Ġadjunct\":44737,\"ĠSEN\":44738,\"merga\":44739,\"Ġredacted\":44740,\"Ġprehistoric\":44741,\"Ġexplanatory\":44742,\"ĠRuns\":44743,\"ĠUttar\":44744,\"ĠManny\":44745,\"ĠAUTHOR\":44746,\"ĠUnleashed\":44747,\"ĠBowling\":44748,\"beans\":44749,\"793\":44750,\"Ġuniverses\":44751,\"Ġsensit\":44752,\"ĠKung\":44753,\"repeat\":44754,\"ctrl\":44755,\"Ġpaced\":44756,\"Ġfuller\":44757,\"Clock\":44758,\"Ġrecomb\":44759,\"ĠFaul\":44760,\"ĠBunker\":44761,\"Ġpooled\":44762,\"Ġana\":44763,\"ĠMouth\":44764,\"LLOW\":44765,\"humane\":44766,\"Ġbulldo\":44767,\"ĠMichaels\":44768,\"fam\":44769,\"Ġwrecked\":44770,\"Ġportrays\":44771,\"ĠWhale\":44772,\"ĠHes\":44773,\"Ġguesses\":44774,\"ĠBrowse\":44775,\"ĠLAPD\":44776,\"Ġconsequential\":44777,\"ĠInnocent\":44778,\"ĠDRAG\":44779,\"Ġtransgress\":44780,\"ĠOaks\":44781,\"Ġtrivia\":44782,\"ĠReson\":44783,\"ĠADS\":44784,\"--+\":44785,\"ĠToll\":44786,\"Ġgrasping\":44787,\"ĠTHEM\":44788,\"ĠTags\":44789,\"ĠConclusion\":44790,\"Ġpracticable\":44791,\"Ġhoop\":44792,\"Ġunintentionally\":44793,\"Ġignite\":44794,\"ĠMov\":44795,\"urized\":44796,\"lehem\":44797,\"Termin\":44798,\"Ġcolourful\":44799,\"ĠLinear\":44800,\"ĠEllie\":44801,\"Gy\":44802,\"Ġmanpower\":44803,\"Ġjs\":44804,\"Ġemoji\":44805,\"ĠSHARES\":44806,\"_.\":44807,\"00007\":44808,\"Ġsophistication\":44809,\"Ġunderscore\":44810,\"Ġpractise\":44811,\"Ġblob\":44812,\"opens\":44813,\"Ukraine\":44814,\"Keeping\":44815,\"YC\":44816,\"JR\":44817,\"ultimate\":44818,\"Claim\":44819,\"Ġautomobiles\":44820,\"993\":44821,\"steel\":44822,\"Ġparting\":44823,\"ĠLank\":44824,\"...?\":44825,\"Ġ385\":44826,\"Ġremembrance\":44827,\"Ġeased\":44828,\"Ġcovari\":44829,\"ĠSind\":44830,\"Effective\":44831,\"Ġdissemination\":44832,\"ĠMoose\":44833,\"ĠClapper\":44834,\"brates\":44835,\"Apply\":44836,\"Ġinvis\":44837,\"Ġworsened\":44838,\"âĢĶ-\":44839,\"Ġlegislator\":44840,\"ĠLol\":44841,\"ĠRowe\":44842,\"Ġdealership\":44843,\"umar\":44844,\"idences\":44845,\"Ġinvestigates\":44846,\"Ġcascade\":44847,\"Ġbidder\":44848,\"ĠBEN\":44849,\"Ironically\":44850,\"Ġpresiding\":44851,\"Ġding\":44852,\"Ġcontradicted\":44853,\"Ġshuts\":44854,\"ĠFIX\":44855,\"Ġ366\":44856,\"District\":44857,\"Ġsinful\":44858,\"ĠCharisma\":44859,\"oops\":44860,\"Ġtotality\":44861,\"Ġrestitution\":44862,\"ĠOptimus\":44863,\"ĠDah\":44864,\"Ġclueless\":44865,\"urned\":44866,\"Ġnutrit\":44867,\"Ġlandowners\":44868,\"Ġflushed\":44869,\"Ġbroaden\":44870,\"mie\":44871,\"Ġprintln\":44872,\"Ġnig\":44873,\"ĠCorpus\":44874,\"Jen\":44875,\"Ġproto\":44876,\"ĠWikimedia\":44877,\"ĠPalo\":44878,\"COR\":44879,\"Ġstorylines\":44880,\"Ġevangelicals\":44881,\"ĠDarrell\":44882,\"Ġrotor\":44883,\"ĠHW\":44884,\"skilled\":44885,\"eryl\":44886,\"Ġbegg\":44887,\"ĠBlumenthal\":44888,\"Ġweaving\":44889,\"Ġdownwards\":44890,\"ĠJacket\":44891,\"ĠANGEL\":44892,\"Technology\":44893,\"Ġesoteric\":44894,\"aldehyde\":44895,\"Ġfuriously\":44896,\"Ġforeigner\":44897,\"Weak\":44898,\"CHO\":44899,\"ĠHound\":44900,\"Experience\":44901,\"ĠPlaystation\":44902,\"ĠMIA\":44903,\"ĠUng\":44904,\"cloth\":44905,\"agall\":44906,\"Ġcalming\":44907,\"izens\":44908,\"Struct\":44909,\"ĠWitches\":44910,\"ĠCelebration\":44911,\"Ġ..............\":44912,\"ptroller\":44913,\"ĠTCU\":44914,\"Ġbunny\":44915,\"ãĥį\":44916,\"utorial\":44917,\"Ġupscale\":44918,\"ĠSta\":44919,\"ĠColossus\":44920,\"Ġchloride\":44921,\"ĠZac\":44922,\"ĠReasons\":44923,\"ĠBrookings\":44924,\"ĠWHITE\":44925,\"][/\":44926,\"ĠLose\":44927,\"905\":44928,\"Ġunderside\":44929,\"ernels\":44930,\"Ġvape\":44931,\"dozen\":44932,\"uppet\":44933,\"ĠSTOP\":44934,\"matical\":44935,\"ĠStatements\":44936,\"heddar\":44937,\"PAC\":44938,\"Customer\":44939,\"Ġmemos\":44940,\"ĠPJ\":44941,\"endars\":44942,\"ĠLimits\":44943,\"laugh\":44944,\"Ġstabilized\":44945,\"ĠALEC\":44946,\"YA\":44947,\"Upgrade\":44948,\"alam\":44949,\"Ġtechno\":44950,\"Ġanew\":44951,\"foreseen\":44952,\"Ġcollegiate\":44953,\"ĠPyro\":44954,\"ĠDism\":44955,\"Ġfrontline\":44956,\"Ġammonia\":44957,\"IU\":44958,\"Quite\":44959,\"Johnny\":44960,\"assin\":44961,\"GOP\":44962,\"ĠStyles\":44963,\"ĠSovereign\":44964,\"acterial\":44965,\"549\":44966,\"ĠRIP\":44967,\"ĠLists\":44968,\"Ġ364\":44969,\"ĠRecep\":44970,\"socket\":44971,\"ĠByrd\":44972,\"ĠCandle\":44973,\"Ancient\":44974,\"Ġappellant\":44975,\"enforcement\":44976,\"acea\":44977,\"anski\":44978,\"Ġolds\":44979,\"886\":44980,\"Ġslurs\":44981,\"Ġempires\":44982,\"Ġbuckle\":44983,\"Ġalienation\":44984,\"ĠAberdeen\":44985,\"Ġunicorn\":44986,\"Ġoverriding\":44987,\"ĠLX\":44988,\"ppa\":44989,\"Ġdespised\":44990,\"ĠBugs\":44991,\"ĠBST\":44992,\"Southern\":44993,\"533\":44994,\"Ġhallmark\":44995,\"ĠPoster\":44996,\"Ġstemmed\":44997,\"Ġprincipals\":44998,\"ĠTECH\":44999,\"ĠSandwich\":45000,\"Italy\":45001,\"Ġcheesy\":45002,\"ĠSetTextColor\":45003,\"ĠProtective\":45004,\"ĠCohn\":45005,\"JO\":45006,\"aptop\":45007,\"Reason\":45008,\"Leader\":45009,\"ĠUnderstand\":45010,\"ĠFridays\":45011,\"ĠContinuous\":45012,\"Ġclipping\":45013,\"ĠRye\":45014,\"Ġberth\":45015,\"timer\":45016,\"annis\":45017,\"react\":45018,\"Ġbuffalo\":45019,\"ĠParas\":45020,\"Ġ655\":45021,\"Ġpresided\":45022,\"ĠSunrise\":45023,\"Ġvets\":45024,\"Ġcloves\":45025,\"ĠMcCull\":45026,\"Strength\":45027,\"GAN\":45028,\"Ġilliter\":45029,\"ĠPricing\":45030,\"lÃ©\":45031,\"Ġresistor\":45032,\"Ġbrun\":45033,\"ĠSuffolk\":45034,\"Ñĭ\":45035,\"ĠLiver\":45036,\"Released\":45037,\"Ġwhats\":45038,\"860\":45039,\"ĠMeasures\":45040,\"Ġdenouncing\":45041,\"ĠRyzen\":45042,\"Ġsouven\":45043,\"Ġcaregivers\":45044,\"chini\":45045,\"ĠScarlett\":45046,\"Ġtrough\":45047,\"Congratulations\":45048,\"Ġtaxis\":45049,\"ĠTradition\":45050,\"jit\":45051,\"Ġtabletop\":45052,\"Ġhitherto\":45053,\"Ġdisinformation\":45054,\"offensive\":45055,\"hra\":45056,\"ĠDISTRICT\":45057,\"Ġcomplicate\":45058,\"chenko\":45059,\"ĠReconstruction\":45060,\"Ġpalpable\":45061,\"Ġausp\":45062,\"Ġ428\":45063,\"Ġshowcases\":45064,\"ĠPublication\":45065,\"knowledge\":45066,\"innon\":45067,\"419\":45068,\"Ġretrieval\":45069,\"anders\":45070,\"Ġrefute\":45071,\"Ġinquired\":45072,\"gur\":45073,\"Ġnegativity\":45074,\"Ġconserve\":45075,\"Ġafterlife\":45076,\"Ġpresupp\":45077,\"ĠGillespie\":45078,\"Ġmt\":45079,\"ĠDN\":45080,\"Tap\":45081,\"Ġperpend\":45082,\"ĠSmy\":45083,\"doesn\":45084,\"Ġspilling\":45085,\"Ġhypers\":45086,\"Kate\":45087,\"Â®,\":45088,\"kept\":45089,\"ĠPowered\":45090,\"Ġja\":45091,\"ĠKlux\":45092,\"arde\":45093,\"aban\":45094,\"Ġ444\":45095,\"Ġflattened\":45096,\"ĠImprovements\":45097,\"urga\":45098,\"ĠKund\":45099,\"Ġinscribed\":45100,\"Ġfacult\":45101,\"Ġunprepared\":45102,\"ĠConsumers\":45103,\"Ġsatisfies\":45104,\"Ġpulmonary\":45105,\"Ġinfiltration\":45106,\"Ġexternally\":45107,\"Ġcongratulations\":45108,\"aghan\":45109,\"Ġairliner\":45110,\"Ġflung\":45111,\"Ġflyers\":45112,\"GD\":45113,\"Ġsnippets\":45114,\"Ġrecursive\":45115,\"Ġmastering\":45116,\"Lex\":45117,\"Ġovertly\":45118,\"vg\":45119,\"Ġluckily\":45120,\"Ġencro\":45121,\"ĠLancet\":45122,\"ĠAbyssal\":45123,\"functional\":45124,\"Ġsow\":45125,\"Ġsquid\":45126,\"Ġnarration\":45127,\"Ġnaughty\":45128,\"ĠHonour\":45129,\"ĠSpartans\":45130,\"Ġshatter\":45131,\"ĠTacoma\":45132,\"ĠCalories\":45133,\"ĠRaces\":45134,\"Submit\":45135,\"Ġpurposefully\":45136,\"wav\":45137,\"ĠYok\":45138,\"Fest\":45139,\"ĠGerr\":45140,\"Metro\":45141,\"Ġitiner\":45142,\"famous\":45143,\"Ġ\\\"{\":45144,\"inline\":45145,\"washer\":45146,\"Issue\":45147,\"ĠCLIENT\":45148,\"ozo\":45149,\"Versions\":45150,\"725\":45151,\"ĠGlock\":45152,\"Ġshielded\":45153,\"ĠPCR\":45154,\"ENCY\":45155,\"ĠWeld\":45156,\"ĠSimpl\":45157,\"Ġredirected\":45158,\"ĠKham\":45159,\"Ġ(>\":45160,\"Ġlabou\":45161,\"Ġdiapers\":45162,\"ssl\":45163,\"Ġcellar\":45164,\"organisms\":45165,\"oresc\":45166,\"ĠBerks\":45167,\"didn\":45168,\"Shipping\":45169,\"Chest\":45170,\"Ġundone\":45171,\"Ġmillionaire\":45172,\"Ġcords\":45173,\"ĠYounger\":45174,\"appropriately\":45175,\"Ġsequels\":45176,\"uve\":45177,\"anticipated\":45178,\"Ġlewd\":45179,\"ĠShirt\":45180,\"ĠDmitry\":45181,\"Veter\":45182,\"Ġslaying\":45183,\"ĠYar\":45184,\"Ġcomplication\":45185,\"Iowa\":45186,\"ĠErica\":45187,\"ĠBLM\":45188,\"girlfriend\":45189,\"bodied\":45190,\"626\":45191,\"1963\":45192,\"Ġintermediary\":45193,\"Ġconsolation\":45194,\"Mask\":45195,\"ĠSiem\":45196,\"owan\":45197,\"Beginning\":45198,\"Ġfixme\":45199,\"Ġculminated\":45200,\"Ġconduc\":45201,\"ĠVolunteer\":45202,\"Ġpositional\":45203,\"Ġgreets\":45204,\"ĠDefinitions\":45205,\"Ġthinker\":45206,\"Ġingenuity\":45207,\"Ġfreshmen\":45208,\"ĠMoments\":45209,\"Ġ357\":45210,\"ateurs\":45211,\"ĠFedEx\":45212,\"sg\":45213,\"694\":45214,\"Ġdwindling\":45215,\"ĠBOX\":45216,\"selage\":45217,\"Ġtmp\":45218,\"Ġsten\":45219,\"ĠSut\":45220,\"Ġneighbourhoods\":45221,\"Ġclassmate\":45222,\"fledged\":45223,\"Ġleftists\":45224,\"Ġclimates\":45225,\"ATHER\":45226,\"ĠScythe\":45227,\"uliffe\":45228,\"Ġsag\":45229,\"Ġhopped\":45230,\"ĠFt\":45231,\"ĠEck\":45232,\"ĠCK\":45233,\"ĠDoomsday\":45234,\"kids\":45235,\"Ġgasped\":45236,\"Ġmoniker\":45237,\"ĠLod\":45238,\"ĠCFL\":45239,\"tions\":45240,\"rums\":45241,\"folios\":45242,\"Ġmd\":45243,\"Ġuncanny\":45244,\"Ġtransports\":45245,\"ĠLabrador\":45246,\"Ġrailways\":45247,\"Ġappliance\":45248,\"ĠCTRL\":45249,\"æĢ\":45250,\"Population\":45251,\"ĠConfederacy\":45252,\"Ġunbearable\":45253,\"Ġdorsal\":45254,\"ĠInform\":45255,\"opted\":45256,\"ĠKILL\":45257,\"Marx\":45258,\"Ġhypocritical\":45259,\"qus\":45260,\"ĠNumerous\":45261,\"ĠGeorgian\":45262,\"ĠAmbrose\":45263,\"ĠLoch\":45264,\"Ġgubernatorial\":45265,\"ĠXeon\":45266,\"ĠSupports\":45267,\"enser\":45268,\"eely\":45269,\"ĠAvenger\":45270,\"1965\":45271,\"Army\":45272,\"Ġjuxtap\":45273,\"Ġchopping\":45274,\"ĠSplash\":45275,\"ĠSustainable\":45276,\"ĠFinch\":45277,\"Ġ1861\":45278,\"ictive\":45279,\"atmeal\":45280,\"ĠGohan\":45281,\"Ġlightsaber\":45282,\"ĠGPA\":45283,\"ugu\":45284,\"ĠREPL\":45285,\"variable\":45286,\"Ġherpes\":45287,\"Ġdeserts\":45288,\"aciously\":45289,\"Ġsituational\":45290,\"weekly\":45291,\"obl\":45292,\"Ġtextile\":45293,\"ĠCornwall\":45294,\"Ġcontraceptives\":45295,\"ĠAke\":45296,\"]-\":45297,\"ä¹ĭ\":45298,\":,\":45299,\"ĠWem\":45300,\"ĠBihar\":45301,\"Ġ'.\":45302,\"Ġbere\":45303,\"Ġanalogue\":45304,\"ĠCookies\":45305,\"Ġtakeoff\":45306,\"Wheel\":45307,\"Ġmajestic\":45308,\"Ġcommuting\":45309,\"023\":45310,\"ĠCorpse\":45311,\"assment\":45312,\"mini\":45313,\"Ġgorilla\":45314,\"ĠAlas\":45315,\"eree\":45316,\"Ġacquaintances\":45317,\"ĠAdvantage\":45318,\"Ġspiritually\":45319,\"Ġeyed\":45320,\"pmwiki\":45321,\"ĠEnder\":45322,\"Ġtranslucent\":45323,\"Ġnighttime\":45324,\"ĠIMAGES\":45325,\"545\":45326,\"ĠKamp\":45327,\"ĠFreak\":45328,\"Ġig\":45329,\"Portland\":45330,\"432\":45331,\"ĠMata\":45332,\"Ġmarines\":45333,\"Ġhors\":45334,\"aterasu\":45335,\"ĠAttribution\":45336,\"Ġ---------\":45337,\"Ġkins\":45338,\"ĠBELOW\":45339,\"+++\":45340,\"Ġreeling\":45341,\"oled\":45342,\"Ġclutter\":45343,\"ĠRelative\":45344,\"Ġ427\":45345,\"BUS\":45346,\"Ġavert\":45347,\"ĠCheong\":45348,\"ĠAble\":45349,\"ĠPryor\":45350,\"Developer\":45351,\"Ġencyclopedia\":45352,\"ĠUSAF\":45353,\"ĠGarry\":45354,\"Spain\":45355,\"Blocks\":45356,\"Ġexposition\":45357,\"ĠGamerGate\":45358,\"WOR\":45359,\"Ġstockpile\":45360,\"Ġclothed\":45361,\"ĠTone\":45362,\"ĠRue\":45363,\"tumblr\":45364,\"Ġtreacherous\":45365,\"Ġfrying\":45366,\"ÑĮ\":45367,\"ĠSph\":45368,\"Ġrestraints\":45369,\"Ġembodies\":45370,\"ĠGes\":45371,\"Safety\":45372,\"Ġnegotiators\":45373,\"mining\":45374,\"ĠAppalachian\":45375,\"LOS\":45376,\"ĠJenna\":45377,\"Ġpassers\":45378,\"çĭ\":45379,\"snap\":45380,\"Ġshorten\":45381,\"creator\":45382,\"Ġinnumerable\":45383,\"utherland\":45384,\"674\":45385,\"ĠWOM\":45386,\"ĠAscend\":45387,\"ĠArmory\":45388,\"ĠTransaction\":45389,\"Kick\":45390,\"Ġsuitcase\":45391,\"dayName\":45392,\"Ġwasteful\":45393,\"marriage\":45394,\"ĠMcCabe\":45395,\"itech\":45396,\"ĠOss\":45397,\"Closure\":45398,\"ĠTreasurer\":45399,\"Ġindecent\":45400,\"ĠDull\":45401,\"Ġresidences\":45402,\"1959\":45403,\"ĠSettlement\":45404,\"Hamilton\":45405,\"Ġselfies\":45406,\"ĠRanking\":45407,\"ĠBarkley\":45408,\"ĠBore\":45409,\"ĠWCS\":45410,\"ĠMaritime\":45411,\"ĠHuh\":45412,\"ĠForestry\":45413,\"Ġcultivating\":45414,\"ĠBallard\":45415,\"Ġgarrison\":45416,\"ĠSDL\":45417,\"930\":45418,\"Ġnascent\":45419,\"Ġirresistible\":45420,\"Ġawfully\":45421,\"\\\\/\\\\/\":45422,\"Ġequate\":45423,\"Ġanthropology\":45424,\"ĠSylvia\":45425,\"Ġintestine\":45426,\"Ġinnocuous\":45427,\"cessive\":45428,\"agra\":45429,\"ĠMetroid\":45430,\"Grant\":45431,\"855\":45432,\"ģĸ\":45433,\"Ġ\\\"_\":45434,\"ãĥĥãĥī\":45435,\"Ġappraisal\":45436,\"ĠFreddy\":45437,\"046\":45438,\"Ġ406\":45439,\"Ġ1830\":45440,\"Ġdocking\":45441,\"Static\":45442,\"Ġpont\":45443,\"ĠVoltage\":45444,\"ĠStead\":45445,\"ĠMortgage\":45446,\"ĠJonah\":45447,\"YL\":45448,\"CLASSIFIED\":45449,\"Ġasbestos\":45450,\"nikov\":45451,\"Ġcollagen\":45452,\"ĠOrbital\":45453,\"Pocket\":45454,\"799\":45455,\"Ġhybrids\":45456,\"inches\":45457,\"Ġinvoice\":45458,\"undy\":45459,\"Ġinequalities\":45460,\"Trend\":45461,\"washed\":45462,\"BALL\":45463,\"Ġlucid\":45464,\"ĠCommentary\":45465,\"Ġwitty\":45466,\"Brandon\":45467,\"Ġbruising\":45468,\"Ġ620\":45469,\"escent\":45470,\"boxing\":45471,\"POL\":45472,\"Ġ378\":45473,\"Rect\":45474,\"Ġlicences\":45475,\"ĠMcGee\":45476,\"pressed\":45477,\"Danny\":45478,\"Ġjammed\":45479,\"ordinate\":45480,\"Ġleth\":45481,\"Ġdistinguishes\":45482,\"ĠYamaha\":45483,\"ILS\":45484,\"ĠHume\":45485,\"ĠCategories\":45486,\"Roberts\":45487,\"Chart\":45488,\"Ġbeetle\":45489,\"ĠGraveyard\":45490,\"Ġ($)\":45491,\"oÄŁ\":45492,\"Ġtwilight\":45493,\"arella\":45494,\"á½\":45495,\"Ġbooths\":45496,\"ĠHHS\":45497,\"ĠFeldman\":45498,\"Ġexcavation\":45499,\"Ġphilosophies\":45500,\"atography\":45501,\"ĠGarage\":45502,\"technology\":45503,\"Ġunforgettable\":45504,\"Ġverifying\":45505,\"Ġsubordinates\":45506,\"Els\":45507,\"Ġneb\":45508,\"Gaming\":45509,\"ENA\":45510,\"ĠAchievement\":45511,\"itters\":45512,\"ĠGabe\":45513,\"Ġdumps\":45514,\"forcer\":45515,\"Ġpoignant\":45516,\"ĠMBA\":45517,\"ĠHeidi\":45518,\"imei\":45519,\"Ġmages\":45520,\"Ġliberate\":45521,\"Ġcircumcised\":45522,\"ĠMermaid\":45523,\"ĠMatth\":45524,\"together\":45525,\"ĠWichita\":45526,\"Ġstorefront\":45527,\"ĠAdin\":45528,\"VII\":45529,\"Fourth\":45530,\"Ġexplorers\":45531,\"WER\":45532,\"Notable\":45533,\"Brook\":45534,\"mens\":45535,\"Faith\":45536,\"---------\":45537,\"ĠJou\":45538,\"¬¼\":45539,\"Ġpineapple\":45540,\"Ġamalg\":45541,\"eln\":45542,\"arkable\":45543,\"ĠãĤµãĥ¼ãĥĨãĤ£\":45544,\"ĠãĤµãĥ¼ãĥĨãĤ£ãĥ¯ãĥ³\":45545,\"Ġovarian\":45546,\"ĠEchoes\":45547,\"Ġhaircut\":45548,\"Ġpav\":45549,\"Ġchilled\":45550,\"anasia\":45551,\"Ġstyled\":45552,\"Ġdab\":45553,\"niper\":45554,\"Ġministerial\":45555,\"ĠDUP\":45556,\"Tan\":45557,\"Ġsulph\":45558,\"ĠDeter\":45559,\"ĠBohem\":45560,\"odan\":45561,\"Ġeducator\":45562,\"âĵĺ\":45563,\"spir\":45564,\"Chicken\":45565,\"ĠEleanor\":45566,\"Ġqui\":45567,\"Ġheaviest\":45568,\"Ġgrasped\":45569,\"URA\":45570,\"Ġcrooked\":45571,\"Jessica\":45572,\"problem\":45573,\"Ġpredetermined\":45574,\"Ġmaniac\":45575,\"Ġbreaths\":45576,\"ĠLauderdale\":45577,\"Ġhobbies\":45578,\"yz\":45579,\"Crime\":45580,\"Ġcharisma\":45581,\"dL\":45582,\"Ġleaping\":45583,\"Ġkittens\":45584,\"Angelo\":45585,\"ĠJACK\":45586,\"ĠSuzanne\":45587,\"Ġhalting\":45588,\"ENTION\":45589,\"Ġswallowing\":45590,\"ĠEarthquake\":45591,\"Ġeighteenth\":45592,\"ĠNIC\":45593,\"ĠINF\":45594,\"ĠConscious\":45595,\"Ġparticulars\":45596,\"circle\":45597,\"740\":45598,\"Ġbenevolent\":45599,\"Ġ747\":45600,\"Ġ490\":45601,\"Ġrundown\":45602,\"ĠValerie\":45603,\"ĠBUR\":45604,\"Ġcivilisation\":45605,\"ĠSchn\":45606,\"WB\":45607,\"otide\":45608,\"international\":45609,\"Ġjohn\":45610,\"Ġ1902\":45611,\"Ġpeanuts\":45612,\"Ġflavored\":45613,\"kus\":45614,\"Ġroared\":45615,\"Ġcutoff\":45616,\"é£\":45617,\"Ġornament\":45618,\"Ġarchitectures\":45619,\"Ġ369\":45620,\"olor\":45621,\"ĠWilde\":45622,\"ĠCRC\":45623,\"ĠAdjusted\":45624,\"Ġprovoking\":45625,\"landish\":45626,\"Ġrationality\":45627,\"Ġjustifies\":45628,\"Ġdispel\":45629,\"Ġameric\":45630,\"ĠPoles\":45631,\"Ø©\":45632,\"Ġenvis\":45633,\"ĠDoodle\":45634,\"ä½¿\":45635,\"igsaw\":45636,\"auldron\":45637,\"Technical\":45638,\"Teen\":45639,\"uphem\":45640,\"ĠXiang\":45641,\"Ġdetractors\":45642,\"ĠZi\":45643,\"ĠJournalists\":45644,\"Ġconducive\":45645,\"ĠVolunteers\":45646,\"Ġsd\":45647,\"Knowing\":45648,\"Ġtransmissions\":45649,\"ĠPLAN\":45650,\"ĠLIB\":45651,\"Ġalluded\":45652,\"Ġobe\":45653,\"Ġdope\":45654,\"ĠGoldstein\":45655,\"Ġwavelengths\":45656,\"ĠDestination\":45657,\"nda\":45658,\"ugi\":45659,\"Ġattentive\":45660,\"ĠLean\":45661,\"raltar\":45662,\"Ġmang\":45663,\"mbuds\":45664,\"akings\":45665,\"bender\":45666,\"Ġaccol\":45667,\"Ġcrawled\":45668,\"NOW\":45669,\"Minnesota\":45670,\"Ġflourished\":45671,\"ĠZup\":45672,\"ĠSupervisor\":45673,\"ĠOlivier\":45674,\"Excellent\":45675,\"Ġwiden\":45676,\"Done\":45677,\"Ġwig\":45678,\"Ġmisconceptions\":45679,\"Corp\":45680,\"Wan\":45681,\"Ġvenerable\":45682,\"ĠNotably\":45683,\"ĠKlingon\":45684,\"animate\":45685,\"Boost\":45686,\"ĠSAY\":45687,\"missing\":45688,\"ibliography\":45689,\"melon\":45690,\"Ġpayday\":45691,\"Ø³\":45692,\"bole\":45693,\"Ġveiled\":45694,\"ĠAlphabet\":45695,\"Italian\":45696,\"Ġeverlasting\":45697,\"ĠRIS\":45698,\"ĠCree\":45699,\"rompt\":45700,\"Ġhating\":45701,\"Ġgrinning\":45702,\"Ġgeographically\":45703,\"OSH\":45704,\"Ġweeping\":45705,\"ĠÂłĠÂłĠÂłĠÂłĠÂłĠÂłĠÂłĠÂł\":45706,\"Ġimpecc\":45707,\"Letter\":45708,\"Ġbloated\":45709,\"PLA\":45710,\"ĠFein\":45711,\"Ġpersever\":45712,\"Thunder\":45713,\"Ġaur\":45714,\"ĠRL\":45715,\"Ġpitfalls\":45716,\"âĸº\":45717,\"Ġpredominant\":45718,\"Ġ525\":45719,\"718\":45720,\"APE\":45721,\"714\":45722,\"Ġfarmland\":45723,\"ĠQiao\":45724,\"Ġviolet\":45725,\"ĠBahamas\":45726,\"Ġinflicting\":45727,\"ĠEfficiency\":45728,\"Ġhomebrew\":45729,\"Ġundertook\":45730,\"Ġcurly\":45731,\"ĠHarding\":45732,\"mania\":45733,\"596\":45734,\"Ġtempered\":45735,\"Ġharrowing\":45736,\"ĠPledge\":45737,\"ĠFrankenstein\":45738,\"èª\":45739,\"Motion\":45740,\"Ġpredictably\":45741,\"ĠExplosion\":45742,\"ocusing\":45743,\"erd\":45744,\"colo\":45745,\"FFER\":45746,\"Ġbackfield\":45747,\"ĠVIDE\":45748,\"uebl\":45749,\"Narr\":45750,\"ĠArgument\":45751,\"Ġgenomic\":45752,\"Ġboutique\":45753,\"Ġbatted\":45754,\"ĠBinary\":45755,\"Ġgamb\":45756,\"ĠRhythm\":45757,\"673\":45758,\"Ġafloat\":45759,\"ĠOlympia\":45760,\"YING\":45761,\"Ġendif\":45762,\"isin\":45763,\"Ġwinters\":45764,\"Ġscattering\":45765,\"Iv\":45766,\"Distance\":45767,\"Ġtru\":45768,\"ĠComfort\":45769,\"Ġnexus\":45770,\"Ġairflow\":45771,\"ĠByzantine\":45772,\"payers\":45773,\"coni\":45774,\"ĠBetsy\":45775,\"Deal\":45776,\"ĠNug\":45777,\"ĠContinent\":45778,\"redibly\":45779,\"Ġoptimizing\":45780,\"albeit\":45781,\"Ġecstatic\":45782,\"ĠProto\":45783,\"ç·\":45784,\"ivot\":45785,\"âĸĦ\":45786,\"emp\":45787,\"rounder\":45788,\"Ġclout\":45789,\"ĠIST\":45790,\"663\":45791,\"ĠDollars\":45792,\"ĠDAC\":45793,\"Ġsubscribed\":45794,\"Ġrehearsal\":45795,\"Ġamps\":45796,\"ĠShang\":45797,\"esm\":45798,\"Ġsprinkle\":45799,\"Ġassailant\":45800,\"ĠOo\":45801,\"ĠCoinbase\":45802,\"Tact\":45803,\"Ġretina\":45804,\"Ġnuns\":45805,\"RON\":45806,\"atto\":45807,\"Ġjug\":45808,\"ĠSVG\":45809,\"Ġbikini\":45810,\"ĠFILE\":45811,\"ĠFounders\":45812,\"eport\":45813,\"ĠKP\":45814,\"Ġrestores\":45815,\"ĠThick\":45816,\"Ġashore\":45817,\"Ġapprovals\":45818,\"Render\":45819,\"MAG\":45820,\"Graham\":45821,\"ĠCortana\":45822,\"ãĥ³ãĤ¸\":45823,\"ssh\":45824,\"orians\":45825,\"arsity\":45826,\"ĠInspired\":45827,\"upper\":45828,\"Ġsignalling\":45829,\"Ġrebuke\":45830,\"Ġflares\":45831,\"Ġdowntime\":45832,\"Studies\":45833,\"Ġstagnation\":45834,\"ĠSequence\":45835,\"Ġgrunt\":45836,\"Ġassures\":45837,\"ĠPLA\":45838,\"592\":45839,\"Ġintraven\":45840,\"depend\":45841,\"Susan\":45842,\"ĠManziel\":45843,\"Mania\":45844,\"Contract\":45845,\"Ġslams\":45846,\"Ġcultured\":45847,\"Ġcreditor\":45848,\"LIST\":45849,\"ĠHUM\":45850,\"ĠChattanooga\":45851,\"served\":45852,\"Ġcloaked\":45853,\"ĠFTP\":45854,\"powder\":45855,\"ĠStella\":45856,\"uctive\":45857,\"Ġcheaply\":45858,\"ĠMUCH\":45859,\"ĠGalileo\":45860,\"Ġsuites\":45861,\"speech\":45862,\"Ġdeliberations\":45863,\"ĠChips\":45864,\"«ĺ\":45865,\"Balance\":45866,\"ĠWynne\":45867,\"ĠAkron\":45868,\"Asset\":45869,\"Ġhonoured\":45870,\"Ġedged\":45871,\"Likewise\":45872,\"animous\":45873,\"ĠWage\":45874,\"ĠEzek\":45875,\"advertisement\":45876,\"ĠRTX\":45877,\"ĠMAD\":45878,\"Ġmigrating\":45879,\"ĠSQU\":45880,\"Ġ475\":45881,\"Edited\":45882,\"Ġshorthand\":45883,\"ĠBasics\":45884,\"Ġcrotch\":45885,\"ĠEVEN\":45886,\"Ġvm\":45887,\"efficiency\":45888,\"Ġcalves\":45889,\"ĠFrie\":45890,\"ĠBrilliant\":45891,\"Ġstrikers\":45892,\"Ġrepentance\":45893,\"Ġarteries\":45894,\"rl\":45895,\"Bed\":45896,\"hap\":45897,\"Ġcryptography\":45898,\"ĠSabres\":45899,\"Ġ414\":45900,\"viks\":45901,\"ihara\":45902,\"apses\":45903,\"Talking\":45904,\"Ġintertwined\":45905,\"Ġdocks\":45906,\"Ġallele\":45907,\"ĠArtifact\":45908,\"ĠHIM\":45909,\"torn\":45910,\"çķ\":45911,\"Ġopacity\":45912,\"ĠEly\":45913,\"osuke\":45914,\"Ġnipple\":45915,\"Ġhandwritten\":45916,\"ĠVK\":45917,\"ĠChamberlain\":45918,\"ĠLaos\":45919,\"igraph\":45920,\"grow\":45921,\"Ġtrillions\":45922,\"Ġdescendant\":45923,\"ĠSailor\":45924,\"asuring\":45925,\"Ġceilings\":45926,\"ĠWarehouse\":45927,\"flying\":45928,\"ĠGlow\":45929,\"Ġnont\":45930,\"Ġmiscarriage\":45931,\"Ġrigs\":45932,\"Ġministries\":45933,\"Ġelaborated\":45934,\"Ġdelusional\":45935,\"ĠHumane\":45936,\"Ġ379\":45937,\"nets\":45938,\"Ġblackout\":45939,\"adders\":45940,\"Ġnp\":45941,\"ĠTire\":45942,\"rosc\":45943,\"Ġsubdiv\":45944,\"Ġlinkage\":45945,\"Ġchronological\":45946,\"ĠHERO\":45947,\"Ġresettlement\":45948,\"ĠVinyl\":45949,\"Ġpastoral\":45950,\"ĠMobil\":45951,\"ĠBarbar\":45952,\"Cooldown\":45953,\"ĠFritz\":45954,\"criminal\":45955,\"repe\":45956,\"Ġbellig\":45957,\"ĠBreed\":45958,\"Ġ418\":45959,\"Ġsemblance\":45960,\"ijk\":45961,\"Ġcurtail\":45962,\"Ġclinch\":45963,\"contained\":45964,\"ĠPrompt\":45965,\"aston\":45966,\"Ġwi\":45967,\"Ġpursuits\":45968,\"515\":45969,\"ĠGloss\":45970,\"Ġflips\":45971,\"Ġcoupons\":45972,\"Ġcloning\":45973,\"ĠLikely\":45974,\"Removed\":45975,\"ĠQuartz\":45976,\"rices\":45977,\"ĠSpears\":45978,\"Ġpious\":45979,\"Ġdepreciation\":45980,\"ĠDare\":45981,\"ounces\":45982,\"amaz\":45983,\"Ont\":45984,\"Ġpinnacle\":45985,\"docker\":45986,\"026\":45987,\"ĠWyr\":45988,\"ĠProper\":45989,\"ËĪ\":45990,\"nil\":45991,\"Bytes\":45992,\"Ġseeker\":45993,\"trial\":45994,\"Ġunfolds\":45995,\"ĠMarse\":45996,\"Ġextravagant\":45997,\"ĠSurvivors\":45998,\"REDACTED\":45999,\"ĠSpeedway\":46000,\"ĠCraigslist\":46001,\"submit\":46002,\"ĠGenerations\":46003,\"Ġupholding\":46004,\"Ġbloodstream\":46005,\"ĠMissions\":46006,\"ĠLawn\":46007,\"Ġlimbo\":46008,\"enei\":46009,\"Huh\":46010,\"ĠWildcats\":46011,\"prep\":46012,\"ĠMarkus\":46013,\"ĠForbidden\":46014,\"ritic\":46015,\"INO\":46016,\"Ġexhibiting\":46017,\"requent\":46018,\"chuk\":46019,\"Ġhabitual\":46020,\"ĠCompatibility\":46021,\"Drag\":46022,\"RIPT\":46023,\"ujah\":46024,\"GROUND\":46025,\"Ġdelinquent\":46026,\"Ġburner\":46027,\"Ġcontemporaries\":46028,\"Ġgimmick\":46029,\"loads\":46030,\"Ġnozzle\":46031,\"podcast\":46032,\"ĠWak\":46033,\"ĠStaten\":46034,\"ĠKuh\":46035,\"ãģĵ\":46036,\"interrupted\":46037,\"Ġinvincible\":46038,\"ĠBurnett\":46039,\"cigarette\":46040,\"ĠPebble\":46041,\"ĠTemporary\":46042,\"ĠMarino\":46043,\"582\":46044,\"Ġwasteland\":46045,\"idently\":46046,\"Tx\":46047,\"Ġrite\":46048,\"ĠPanasonic\":46049,\"ĠMiddles\":46050,\"ĠHorton\":46051,\"aeus\":46052,\"Ġcuring\":46053,\"Ġmats\":46054,\"Ġadjourn\":46055,\"Ġfearsome\":46056,\"pez\":46057,\"boats\":46058,\"Ġpropell\":46059,\"Ġconflicted\":46060,\"ĠAnger\":46061,\"Ġinsurgent\":46062,\"Karl\":46063,\"Ġcoales\":46064,\"Ġsouthwestern\":46065,\"Ġdissu\":46066,\"ĠOvert\":46067,\"************\":46068,\"Ġboxed\":46069,\"ĠBrune\":46070,\"aaa\":46071,\"Ġgardening\":46072,\"ĠEngel\":46073,\"tracks\":46074,\"Ġpurified\":46075,\"Ġplaceholder\":46076,\"ĠLikes\":46077,\"Ġdan\":46078,\"Gab\":46079,\"Ġect\":46080,\"ĠFaw\":46081,\"ĠEliot\":46082,\"Ġ',\":46083,\"otropic\":46084,\"ĠRuin\":46085,\"hedon\":46086,\"Ġcaul\":46087,\"Ġaft\":46088,\"ĠCadillac\":46089,\"gha\":46090,\"assian\":46091,\"udeb\":46092,\"ĠTick\":46093,\"Ġadjusts\":46094,\"ARGET\":46095,\"537\":46096,\"ische\":46097,\"anty\":46098,\"ĠFriedrich\":46099,\"ĠBlizz\":46100,\"ĠAOL\":46101,\"Campaign\":46102,\"Ġmammal\":46103,\"ĠVeil\":46104,\"ĠKev\":46105,\"ĠMaurit\":46106,\"ĠDamien\":46107,\"Nation\":46108,\"Eastern\":46109,\"Ġ{:\":46110,\"Ġ=================================\":46111,\"Ġstereotypical\":46112,\"Ġattic\":46113,\"ĠCyborg\":46114,\"require\":46115,\"Ġawarding\":46116,\"ĠPapua\":46117,\"btn\":46118,\"bent\":46119,\"Boo\":46120,\"Ġ(=\":46121,\"ĠXander\":46122,\"ĠSomerset\":46123,\"Ġcatchy\":46124,\"Ġcertify\":46125,\"STRUCT\":46126,\"Ġital\":46127,\"Ġtides\":46128,\"ĠBrands\":46129,\"Gray\":46130,\"competitive\":46131,\"Ġcurator\":46132,\"ĠDG\":46133,\"ominium\":46134,\"ĠGMOs\":46135,\"ciating\":46136,\"ĠCarmen\":46137,\"oward\":46138,\"Baltimore\":46139,\"Ġrgb\":46140,\"Cu\":46141,\"Ġwipes\":46142,\"spell\":46143,\"ITNESS\":46144,\"Ġsummarizes\":46145,\"ĠRevis\":46146,\"Ġwhistleblowers\":46147,\"ĠBreach\":46148,\"Ġcrochet\":46149,\"kos\":46150,\"ewski\":46151,\"Ġrepet\":46152,\"Ġcrimson\":46153,\"ĠKarachi\":46154,\"readable\":46155,\"dimension\":46156,\"ĠIgor\":46157,\"ilded\":46158,\"ĠZed\":46159,\"ĠKeane\":46160,\"ĠCosmetic\":46161,\"DEP\":46162,\"Ġretreating\":46163,\"ĠUA\":46164,\"ensical\":46165,\"Ġdusk\":46166,\"ĠDickens\":46167,\"Ġarenas\":46168,\"ĠPassage\":46169,\"levels\":46170,\"Ġcurv\":46171,\"Pope\":46172,\"Ġchores\":46173,\"ĠElise\":46174,\"ĠCompass\":46175,\"bub\":46176,\"Ġmammalian\":46177,\"ĠSanskrit\":46178,\"ĠANC\":46179,\"ĠCrack\":46180,\"Qual\":46181,\"Laun\":46182,\"ampunk\":46183,\"Ġlearners\":46184,\"Ġglamorous\":46185,\"Ġfurthe\":46186,\"ermott\":46187,\"cand\":46188,\"Generic\":46189,\"Ġnarrated\":46190,\"Ġdisorderly\":46191,\"ĠTransactions\":46192,\"ĠDetention\":46193,\"ĠRoku\":46194,\"Äį\":46195,\"Ġunderstatement\":46196,\"ĠSaur\":46197,\"ĠRodrigo\":46198,\"ĠASAP\":46199,\"Sin\":46200,\"Ġrejoice\":46201,\"Methods\":46202,\"Ġelectrode\":46203,\"Ġworshipped\":46204,\"Ġidi\":46205,\"ĠPhysicians\":46206,\"Ġpopup\":46207,\"Ġdeft\":46208,\"ĠRemoval\":46209,\"ĠBuenos\":46210,\"verbs\":46211,\"Ġfunk\":46212,\"usha\":46213,\"riction\":46214,\"orea\":46215,\"ĠBangalore\":46216,\"ĠKenobi\":46217,\"zzi\":46218,\"Ġnormative\":46219,\"Ġgoblins\":46220,\"Ġcafes\":46221,\"ĠUNCLASSIFIED\":46222,\"ĠFired\":46223,\"SIGN\":46224,\"Ġsclerosis\":46225,\"ĠVoter\":46226,\"ĠSonny\":46227,\"ĠExtend\":46228,\"ĠEVs\":46229,\"Arsenal\":46230,\"Ġpsi\":46231,\"Ġwidest\":46232,\"ĠTus\":46233,\"Ġlooms\":46234,\"Ġjustifying\":46235,\"ĠGranger\":46236,\"è¯\":46237,\"Refer\":46238,\"583\":46239,\"Ġflourishing\":46240,\"abre\":46241,\"Ġrave\":46242,\"ĠContra\":46243,\"Ġ1898\":46244,\"Adds\":46245,\"Ġful\":46246,\"ĠCooke\":46247,\"someone\":46248,\"=#\":46249,\"671\":46250,\"Ġyak\":46251,\"Ġarte\":46252,\"ĠMiscellaneous\":46253,\"ĠDetection\":46254,\"ĠClancy\":46255,\"âģ\":46256,\"assies\":46257,\"Ġvaliant\":46258,\"ĠFeminist\":46259,\"corruption\":46260,\"Vel\":46261,\"Pear\":46262,\"Ġsuccinct\":46263,\"Ġquickest\":46264,\"kw\":46265,\"Ġspitting\":46266,\"ĠLibraries\":46267,\"åħī\":46268,\"antz\":46269,\"Dad\":46270,\"ĠSpecifications\":46271,\"rupulous\":46272,\"andr\":46273,\"RESULTS\":46274,\"Ġsnowball\":46275,\"Ġpredis\":46276,\"ĠBaxter\":46277,\"ĠNursing\":46278,\"ĠChaff\":46279,\"swe\":46280,\"Ġoutage\":46281,\"Ġnesting\":46282,\"Ġnotoriety\":46283,\"trigger\":46284,\"onite\":46285,\"jon\":46286,\"Ġfou\":46287,\"ooked\":46288,\"ĠCelebrity\":46289,\"reality\":46290,\"Ġfatig\":46291,\"Ġhugging\":46292,\"Ġbothers\":46293,\"ĠPanzer\":46294,\"ĠChandra\":46295,\"figured\":46296,\"Ġvolts\":46297,\"ĠClouds\":46298,\"Ġfeeble\":46299,\"ĠCurve\":46300,\"ĠAsus\":46301,\"786\":46302,\"absor\":46303,\"ĠVICE\":46304,\"ĠHess\":46305,\"Ġmanufactures\":46306,\"Ġgrizz\":46307,\"ĠPowerful\":46308,\"acid\":46309,\"Ġsubsections\":46310,\"ĠKrugman\":46311,\"ĠAlps\":46312,\"isu\":46313,\"Ġsequest\":46314,\"ĠUltron\":46315,\"ĠTinker\":46316,\"ĠGoose\":46317,\"Ġmismatch\":46318,\"Attorney\":46319,\"Ġmorphology\":46320,\"ĠSixers\":46321,\"uttered\":46322,\"ĠELECT\":46323,\"gran\":46324,\"Russell\":46325,\"ĠGSL\":46326,\"Ġfortnight\":46327,\"Ġ.)\":46328,\"Ġapostle\":46329,\"prone\":46330,\"elist\":46331,\"Untitled\":46332,\"ĠImplementation\":46333,\"istors\":46334,\"Ġtanker\":46335,\"Ġplush\":46336,\"Ġattendants\":46337,\"ĠTik\":46338,\"ĠGreenwich\":46339,\"ĠYon\":46340,\"ĠSPL\":46341,\"cells\":46342,\"untled\":46343,\"Solution\":46344,\"ĠQuÃ©\":46345,\"Ġvacated\":46346,\"Ġuptick\":46347,\"ĠMeridian\":46348,\"æĥ\":46349,\"ĠDrill\":46350,\"925\":46351,\"584\":46352,\"Ġrenovated\":46353,\"ĠKubrick\":46354,\"zyk\":46355,\"Ġlousy\":46356,\"ppel\":46357,\"ohydrate\":46358,\"ĠIzzy\":46359,\"lesiastical\":46360,\"CCC\":46361,\"ĠAjax\":46362,\"Ġadapters\":46363,\"ĠPetraeus\":46364,\"Ġaffirmation\":46365,\"ĠSTOR\":46366,\"lems\":46367,\"adoes\":46368,\"ĠConstantinople\":46369,\"Ġponies\":46370,\"Ġlighthouse\":46371,\"Ġadherents\":46372,\"ĠBrees\":46373,\"omorphic\":46374,\"Fighting\":46375,\"Ġplaster\":46376,\"ĠPVC\":46377,\"ĠObst\":46378,\"Ġdearly\":46379,\"ĠTooth\":46380,\"ickson\":46381,\"Ġshaming\":46382,\"Plex\":46383,\"Agg\":46384,\"ĠâĢ¦\\\"\":46385,\"Ġsubreddits\":46386,\"Ġpigeon\":46387,\"ĠResidential\":46388,\"ĠPassing\":46389,\"Ġlum\":46390,\"ĠPension\":46391,\"Ġpessimistic\":46392,\"Ġ432\":46393,\"zinski\":46394,\"cade\":46395,\"075\":46396,\"Ġapologised\":46397,\"iyah\":46398,\"Putting\":46399,\"Ġgloomy\":46400,\"ĠLyme\":46401,\"=-=-=-=-=-=-=-=-\":46402,\"ĠTome\":46403,\"ĠPsychiatric\":46404,\"ĠHIT\":46405,\"cms\":46406,\"apolog\":46407,\"Ġbreaker\":46408,\"Ġdeepen\":46409,\"Ġtheorist\":46410,\"ĠHighlands\":46411,\"Ġbaker\":46412,\"Ġstaples\":46413,\"Ġinterfered\":46414,\"ĠAbortion\":46415,\"joined\":46416,\"chu\":46417,\"Ġformulate\":46418,\"Ġvaccinations\":46419,\"Ġbanter\":46420,\"pheus\":46421,\"Ġoutfielder\":46422,\"ĠMeter\":46423,\"Ġ#####\":46424,\"Ġ1895\":46425,\"Ġnarrowing\":46426,\"ĠSTORY\":46427,\"fp\":46428,\"ĠCST\":46429,\"ignore\":46430,\"Ġproclaiming\":46431,\"ĠRU\":46432,\"ĠBALL\":46433,\"yna\":46434,\"653\":46435,\"Ġposit\":46436,\"PRE\":46437,\"594\":46438,\"ĠRegistrar\":46439,\"ĠPilgrim\":46440,\"icio\":46441,\"Ġprett\":46442,\"Ġlifeless\":46443,\"Ġ___\":46444,\"Neigh\":46445,\"ĠChurches\":46446,\"orno\":46447,\"Ġorcs\":46448,\"Ġkindred\":46449,\"ĠAudit\":46450,\"Ġmillennial\":46451,\"ĠPersia\":46452,\"gravity\":46453,\"ĠDisability\":46454,\"ĠDARK\":46455,\"Ws\":46456,\"odon\":46457,\"Ġgranddaughter\":46458,\"ĠBrooke\":46459,\"ĠADA\":46460,\"ERA\":46461,\"Ġpickups\":46462,\"ĠWilkinson\":46463,\"ĠShards\":46464,\"ĠNK\":46465,\"Ġexpel\":46466,\"ĠKislyak\":46467,\"Ġjargon\":46468,\"Ġpolarized\":46469,\"iane\":46470,\"Publisher\":46471,\"Ġrebutt\":46472,\"Ġapprehension\":46473,\"ĠKessler\":46474,\"Ġprism\":46475,\"FUL\":46476,\"1964\":46477,\"ĠLoll\":46478,\"ä¿\":46479,\"lethal\":46480,\"ÅŁ\":46481,\"Ġghetto\":46482,\"Ġboulder\":46483,\"ĠSlowly\":46484,\"ĠOscars\":46485,\"ĠInstruction\":46486,\"ĠUltr\":46487,\"ĠMoe\":46488,\"Nich\":46489,\"ĠPATH\":46490,\"(*\":46491,\"ĠRELEASE\":46492,\"uning\":46493,\"rouse\":46494,\"eneg\":46495,\"Ġreimb\":46496,\"ĠDetected\":46497,\"DoS\":46498,\"Ġsterling\":46499,\"Ġaggregation\":46500,\"ĠLonely\":46501,\"ĠAttend\":46502,\"higher\":46503,\"Ġairstrike\":46504,\"kson\":46505,\"SELECT\":46506,\"Ġdeflation\":46507,\"ĠHerrera\":46508,\"Cole\":46509,\"ritch\":46510,\"Ġadvisable\":46511,\"Fax\":46512,\"Ġworkaround\":46513,\"Ġpid\":46514,\"mortem\":46515,\"ersen\":46516,\"Ġtypo\":46517,\"Ġalum\":46518,\"782\":46519,\"ĠJamal\":46520,\"scripts\":46521,\"Ġcaptives\":46522,\"ĠPresence\":46523,\"ĠLieberman\":46524,\"angelo\":46525,\"Ġalcoholism\":46526,\"assi\":46527,\"Ġrecite\":46528,\"Ġgaping\":46529,\"Ġbaskets\":46530,\"ĠGou\":46531,\"Browser\":46532,\"neau\":46533,\"Ġcorrective\":46534,\"unda\":46535,\"scoring\":46536,\"ĠXD\":46537,\"Ġfilament\":46538,\"Ġdeepening\":46539,\"ĠStainless\":46540,\"Integer\":46541,\"Ġbuggy\":46542,\"Ġtenancy\":46543,\"ĠMubarak\":46544,\"Ġtuple\":46545,\"ĠDroid\":46546,\"ĠSitting\":46547,\"Ġforfeit\":46548,\"ĠRasmussen\":46549,\"ixties\":46550,\"esi\":46551,\"ĠKimmel\":46552,\"Ġmeticulously\":46553,\"Ġapopt\":46554,\"ĠSeller\":46555,\"088\":46556,\"ecake\":46557,\"hematically\":46558,\"TN\":46559,\"Ġmindless\":46560,\"Ġdigs\":46561,\"ĠAccord\":46562,\"onsense\":46563,\"eming\":46564,\"brace\":46565,\"ĠeBook\":46566,\"ĠDistribut\":46567,\"ĠInvestments\":46568,\"wt\":46569,\"]),\":46570,\"behavior\":46571,\"563\":46572,\"Ġblinding\":46573,\"ĠProtesters\":46574,\"topia\":46575,\"Ġreborn\":46576,\"ĠKelvin\":46577,\"ĠDover\":46578,\"ĠDairy\":46579,\"ĠOuts\":46580,\"Ġ[/\":46581,\"ÏĢ\":46582,\"bp\":46583,\"ĠVanity\":46584,\"ĠRecap\":46585,\"ĠHOUSE\":46586,\"ĠFACE\":46587,\"Ġ422\":46588,\"692\":46589,\"ĠAntioch\":46590,\"cooked\":46591,\"Ġcollide\":46592,\"Ġapr\":46593,\"Ġsleeper\":46594,\"ĠJarvis\":46595,\"Ġalternatively\":46596,\"ĠLeaves\":46597,\"ĠMaw\":46598,\"Ġantiquity\":46599,\"ĠAdinida\":46600,\"Ġabuser\":46601,\"PokÃ©mon\":46602,\"Ġassorted\":46603,\"ĠRevision\":46604,\"ĠPiano\":46605,\"ĠGideon\":46606,\"Ocean\":46607,\"Ġsalon\":46608,\"Ġbustling\":46609,\"ognitive\":46610,\"ĠRahman\":46611,\"Ġwaiter\":46612,\"Ġpresets\":46613,\"ĠOsh\":46614,\"ĠGHC\":46615,\"operator\":46616,\"Ġreptiles\":46617,\"Ġ413\":46618,\"ĠGarr\":46619,\"ĠChak\":46620,\"Ġhashes\":46621,\"Ġfailings\":46622,\"Ġfolklore\":46623,\"Ġabl\":46624,\"ĠCena\":46625,\"ĠMacArthur\":46626,\"ĠCOURT\":46627,\"Ġperiphery\":46628,\"appers\":46629,\"Ġreckoned\":46630,\"ĠInflu\":46631,\"ĠCET\":46632,\"Ġ372\":46633,\"ĠDefinitive\":46634,\"assault\":46635,\"421\":46636,\"Ġreservoirs\":46637,\"Ġdives\":46638,\"ĠCoil\":46639,\"DAQ\":46640,\"Ġvividly\":46641,\"ĠRJ\":46642,\"ĠBellev\":46643,\"Ġeclectic\":46644,\"ĠShowdown\":46645,\"ĠKM\":46646,\"iped\":46647,\"reetings\":46648,\"ĠAsuka\":46649,\"Liberal\":46650,\"ĠÏĦ\":46651,\"Ġbystanders\":46652,\"ĠGoodwin\":46653,\"ukong\":46654,\"Sit\":46655,\"ĠTrem\":46656,\"Ġcriminally\":46657,\"ĠCircus\":46658,\"chrome\":46659,\"887\":46660,\"Ġnanop\":46661,\"ĠObi\":46662,\"ĠLOW\":46663,\"ogh\":46664,\"ĠAuthors\":46665,\"obyl\":46666,\"Urban\":46667,\"Ġti\":46668,\"ĠWeir\":46669,\"trap\":46670,\"agy\":46671,\"Ġparentheses\":46672,\"Ġoutnumbered\":46673,\"Ġcounterproductive\":46674,\"ĠTobias\":46675,\"ubis\":46676,\"Parser\":46677,\"STAR\":46678,\"Ġsynaptic\":46679,\"ĠGears\":46680,\"Ġhiber\":46681,\"Ġdebunked\":46682,\"Ġexalted\":46683,\"awatts\":46684,\"HOU\":46685,\"Church\":46686,\"ĠPixie\":46687,\"ĠUri\":46688,\"ĠFormation\":46689,\"ĠPrediction\":46690,\"CEO\":46691,\"Ġthrott\":46692,\"ĠBritann\":46693,\"ĠMadagascar\":46694,\"ëĭ\":46695,\"Ġbillboards\":46696,\"ĠRPGs\":46697,\"ĠBees\":46698,\"completely\":46699,\"FIL\":46700,\"Ġdoesnt\":46701,\"ĠGreenberg\":46702,\"reys\":46703,\"Ġsling\":46704,\"Ġemptied\":46705,\"ĠPixar\":46706,\"ĠDharma\":46707,\"luck\":46708,\"inguished\":46709,\"Ġendot\":46710,\"Ġbabys\":46711,\"059\":46712,\"chest\":46713,\"rats\":46714,\"Ġridden\":46715,\"Ġbeetles\":46716,\"Ġilluminating\":46717,\"Ġfictitious\":46718,\"ĠProvincial\":46719,\"Ġ768\":46720,\"Ġshepherd\":46721,\"ĠRender\":46722,\"Ġ1896\":46723,\"Crew\":46724,\"Ġmolded\":46725,\"ĠXiaomi\":46726,\"ĠSpiral\":46727,\"Ġdelim\":46728,\"Ġorganising\":46729,\"Ġhoops\":46730,\"ĠBei\":46731,\"zhen\":46732,\"Ġfuckin\":46733,\"Ġdecad\":46734,\"Ġunbiased\":46735,\"ammy\":46736,\"swing\":46737,\"Ġsmuggled\":46738,\"Ġkios\":46739,\"ĠPERSON\":46740,\"ĠInquisitor\":46741,\"Ġsnowy\":46742,\"Ġscraping\":46743,\"ĠBurgess\":46744,\"Ptr\":46745,\"agame\":46746,\"RW\":46747,\"Ġdroid\":46748,\"ĠLys\":46749,\"ĠCassandra\":46750,\"Jacob\":46751,\"Ġ354\":46752,\"Ġpasture\":46753,\"Ġfranc\":46754,\"ĠScotch\":46755,\"ĠEnds\":46756,\"ĠIGF\":46757,\"definition\":46758,\"Ġhysterical\":46759,\"ĠBrowne\":46760,\"771\":46761,\"Ġmobilization\":46762,\"æķ\":46763,\"iqueness\":46764,\"Thor\":46765,\"Ġspearheaded\":46766,\"Ġembroiled\":46767,\"Ġconjecture\":46768,\"judicial\":46769,\"Choice\":46770,\"Ġpaperback\":46771,\"Pir\":46772,\"Ġrecovers\":46773,\"ĠSurge\":46774,\"ĠShogun\":46775,\"ĠPediatrics\":46776,\"ãģł\":46777,\"Ġsweeps\":46778,\"ĠLaboratories\":46779,\"ĠPacks\":46780,\"alus\":46781,\"addin\":46782,\"Ġheadlights\":46783,\"gra\":46784,\"Evidence\":46785,\"COLOR\":46786,\"Admin\":46787,\"Ĭ±\":46788,\"Ġconcoct\":46789,\"sufficient\":46790,\"Ġunmarked\":46791,\"Ġrichness\":46792,\"Ġdissertation\":46793,\"Ġseasoning\":46794,\"Ġgib\":46795,\"ĠMages\":46796,\"unctions\":46797,\"ĠNid\":46798,\"cheat\":46799,\"ĠTMZ\":46800,\"citizens\":46801,\"ĠCatholicism\":46802,\"nb\":46803,\"Ġdisembark\":46804,\"ĠPROGRAM\":46805,\"aques\":46806,\"Tyler\":46807,\"Org\":46808,\"ĠSlay\":46809,\"ĠNero\":46810,\"ĠTownsend\":46811,\"INTON\":46812,\"tele\":46813,\"Ġmesmer\":46814,\"901\":46815,\"Ġfireball\":46816,\"evidence\":46817,\"affiliated\":46818,\"ĠFrenchman\":46819,\"ĠAugusta\":46820,\"021\":46821,\"Ġsled\":46822,\"Ġreused\":46823,\"ĠImmunity\":46824,\"Ġwrestle\":46825,\"assembled\":46826,\"Maria\":46827,\"Ġgunshots\":46828,\"ĠBarbie\":46829,\"Ġcannabinoids\":46830,\"ĠToast\":46831,\"ĠKinder\":46832,\"IRD\":46833,\"Ġrejuven\":46834,\"Ġgore\":46835,\"Ġrupture\":46836,\"Ġbreaching\":46837,\"ĠCartoon\":46838,\"Ġ455\":46839,\"ĠPaleo\":46840,\"614\":46841,\"Ġspears\":46842,\"ĠAmes\":46843,\"abus\":46844,\"Madison\":46845,\"GROUP\":46846,\"Ġaborted\":46847,\"yah\":46848,\"Ġfelon\":46849,\"Ġcausation\":46850,\"Ġprepaid\":46851,\"Ġpitted\":46852,\"oplan\":46853,\"ĠShelley\":46854,\"ĠRusso\":46855,\"ĠPagan\":46856,\"Ġwillfully\":46857,\"ĠCanaver\":46858,\"undrum\":46859,\"ĠSalary\":46860,\"ĠArpaio\":46861,\"reader\":46862,\"ĠRational\":46863,\"ĠOverse\":46864,\"ĠCauses\":46865,\"Ġ*.\":46866,\"Ġwob\":46867,\"Keith\":46868,\"ĠConsent\":46869,\"manac\":46870,\"773\":46871,\"623\":46872,\"Ġfateful\":46873,\"etimes\":46874,\"Ġspirited\":46875,\"ĠDys\":46876,\"Ġhegemony\":46877,\"Ġboycot\":46878,\"ĠEnrique\":46879,\"emouth\":46880,\"Ġtimelines\":46881,\"ĠSahara\":46882,\"ĠRelax\":46883,\"ĠQuincy\":46884,\"ĠLessons\":46885,\"ĠEQU\":46886,\"SEA\":46887,\"NK\":46888,\"ĠCostco\":46889,\"Increase\":46890,\"Ġmotivating\":46891,\"ĠChong\":46892,\"amaru\":46893,\"ĠDivide\":46894,\"Ġpedigree\":46895,\"ĠTasmania\":46896,\"ĠPrelude\":46897,\"Las\":46898,\"940\":46899,\"574\":46900,\"Ġchau\":46901,\"ĠSpiegel\":46902,\"unic\":46903,\"-->\":46904,\"ĠPhilips\":46905,\"ĠKafka\":46906,\"Ġupheaval\":46907,\"Ġsentimental\":46908,\"Ġsax\":46909,\"ĠAkira\":46910,\"serial\":46911,\"Matrix\":46912,\"Ġelecting\":46913,\"Ġcommenter\":46914,\"ĠNebula\":46915,\"plets\":46916,\"ĠNadu\":46917,\"ĠAdren\":46918,\"Ġenshr\":46919,\"ĠRAND\":46920,\"financial\":46921,\"ĠClyde\":46922,\"utherford\":46923,\"Ġsignage\":46924,\"Ġdeline\":46925,\"Ġphosphate\":46926,\"roversial\":46927,\"fascist\":46928,\"ĠVall\":46929,\"ĠBethlehem\":46930,\"Ġfors\":46931,\"Ġenglish\":46932,\"Solid\":46933,\"Nature\":46934,\"Ġva\":46935,\"ĠGuests\":46936,\"Ġtantal\":46937,\"Ġautoimmune\":46938,\";;;;;;;;;;;;\":46939,\"ĠTotally\":46940,\"ĠOv\":46941,\"Ġdefences\":46942,\"ĠCoconut\":46943,\"Ġtranquil\":46944,\"Ġploy\":46945,\"Ġflavours\":46946,\"ĠFlask\":46947,\"ãĤ¨ãĥ«\":46948,\"ĠWeston\":46949,\"ĠVolvo\":46950,\"870\":46951,\"Ġmicrophones\":46952,\"verbal\":46953,\"RPG\":46954,\"Ġiii\":46955,\";}\":46956,\"028\":46957,\"Ġheadlined\":46958,\"Ġprimed\":46959,\"Ġhoard\":46960,\"ĠShad\":46961,\"ĠENTER\":46962,\"Ġtriangular\":46963,\"Ġcapit\":46964,\"lik\":46965,\"ĠAncients\":46966,\"Ġlash\":46967,\"Ġconvol\":46968,\"Ġcolonel\":46969,\"enemy\":46970,\"Gra\":46971,\"Ġpubs\":46972,\"utters\":46973,\"Ġassigns\":46974,\"ĠPenet\":46975,\"ĠMonstrous\":46976,\"ĠBowen\":46977,\"ilver\":46978,\"Haunted\":46979,\"ĠDing\":46980,\"started\":46981,\"plin\":46982,\"Ġcontaminants\":46983,\"ĠDOE\":46984,\"ffen\":46985,\"ĠTechnician\":46986,\"Ry\":46987,\"Ġrobbers\":46988,\"Ġhotline\":46989,\"ĠGuardiola\":46990,\"ĠKaufman\":46991,\"rower\":46992,\"ĠDresden\":46993,\"ĠAlpine\":46994,\"Elf\":46995,\"Ġfmt\":46996,\"ĠSard\":46997,\"urses\":46998,\"gpu\":46999,\"Unix\":47000,\"Ġunequivocally\":47001,\"ĠCitizenship\":47002,\"quad\":47003,\"mire\":47004,\"ĠSweeney\":47005,\"Battery\":47006,\"615\":47007,\"Ġpancakes\":47008,\"Ġoats\":47009,\"Maps\":47010,\"ĠContrast\":47011,\"mbudsman\":47012,\"ĠEPS\":47013,\"Ġsubcommittee\":47014,\"Ġsourcing\":47015,\"Ġsizing\":47016,\"ĠBuffer\":47017,\"ĠMandatory\":47018,\"Ġmoderates\":47019,\"ĠPatterns\":47020,\"ĠChocobo\":47021,\"ĠZan\":47022,\"ĠSTATES\":47023,\"ĠJudging\":47024,\"ĠInher\":47025,\"*:\":47026,\"Ġbil\":47027,\"ĠYen\":47028,\"Ġexhilar\":47029,\"ollower\":47030,\"zers\":47031,\"Ġsnug\":47032,\"maximum\":47033,\"Ġdespicable\":47034,\"ĠPACK\":47035,\"ĠAnnex\":47036,\"Ġsarcastic\":47037,\"Ġlatex\":47038,\"Ġtamp\":47039,\"ĠSao\":47040,\"bah\":47041,\"ĠReverend\":47042,\"ĠChinatown\":47043,\"ĠAUT\":47044,\"documented\":47045,\"ĠGABA\":47046,\"ĠCanaan\":47047,\"ĠÙħ\":47048,\"Ġgoverns\":47049,\"prev\":47050,\"Esc\":47051,\"ĠEstimates\":47052,\"OSP\":47053,\"Ġendeavour\":47054,\"ĠClosing\":47055,\"ometime\":47056,\"everyone\":47057,\"Ġworsen\":47058,\"Ġscanners\":47059,\"Ġdeviations\":47060,\"ĠRobotics\":47061,\"ĠCompton\":47062,\"Ġsorcerer\":47063,\"Ġendogenous\":47064,\"Ġemulation\":47065,\"ĠPiercing\":47066,\"ĠAph\":47067,\"ĠSocket\":47068,\"Ġbould\":47069,\"ĠOU\":47070,\"ĠBorderlands\":47071,\"Ġ1863\":47072,\"Gordon\":47073,\"ĠWTO\":47074,\"Ġrestricts\":47075,\"Ġmosaic\":47076,\"Ġmelodies\":47077,\"çĦ\":47078,\"Tar\":47079,\"Ġdisson\":47080,\"ĠProvides\":47081,\"Ġ......\":47082,\"bek\":47083,\"FIX\":47084,\"Ġbroom\":47085,\"anship\":47086,\"Doctors\":47087,\"Ġnerds\":47088,\"ĠRegions\":47089,\"naissance\":47090,\"Ġmete\":47091,\"Ġcrept\":47092,\"plings\":47093,\"Ġgirlfriends\":47094,\"knit\":47095,\"igent\":47096,\"owe\":47097,\"Ġushered\":47098,\"ĠBaz\":47099,\"Mobil\":47100,\"434\":47101,\"ĠPresents\":47102,\"origin\":47103,\"Ġinsomnia\":47104,\"ĠAux\":47105,\"439\":47106,\"ĠChili\":47107,\"irsch\":47108,\"GAME\":47109,\"Ġgestation\":47110,\"algia\":47111,\"romising\":47112,\"$,\":47113,\"crow\":47114,\"ĠInspection\":47115,\"atomic\":47116,\"Relations\":47117,\"JOHN\":47118,\"roman\":47119,\"ĠClockwork\":47120,\"ĠBakr\":47121,\"mone\":47122,\"MET\":47123,\"Ġthirsty\":47124,\"Ġbc\":47125,\"Ġfaculties\":47126,\"Rum\":47127,\"Ġnuance\":47128,\"ĠDarius\":47129,\"pleting\":47130,\"fters\":47131,\"etchup\":47132,\"Registration\":47133,\"ĠKE\":47134,\"Rah\":47135,\"Ġpreferential\":47136,\"ĠLash\":47137,\"ĠHH\":47138,\"Valid\":47139,\"ĠNAV\":47140,\"Ġstarve\":47141,\"ĠGong\":47142,\"zynski\":47143,\"ĠActress\":47144,\"Ġwik\":47145,\"Ġunaccompanied\":47146,\"lvl\":47147,\"Bride\":47148,\"ADS\":47149,\"ĠCommando\":47150,\"ĠVaughn\":47151,\"Wallet\":47152,\"Ġhopping\":47153,\"ĠVie\":47154,\"Ġcaveats\":47155,\"Ġalas\":47156,\"ifled\":47157,\"abuse\":47158,\"661\":47159,\"Ġibn\":47160,\"Ġgul\":47161,\"Ġrobbing\":47162,\"til\":47163,\"ILA\":47164,\"Ġmitigating\":47165,\"Ġaptly\":47166,\"Ġtyrant\":47167,\"Ġmidday\":47168,\"ĠGilmore\":47169,\"ĠDecker\":47170,\"ĠÂ§Â§\":47171,\"partial\":47172,\"Exactly\":47173,\"Ġphenotype\":47174,\"Ġ[+]\":47175,\"ĠPlex\":47176,\"ĠIps\":47177,\"versions\":47178,\"Ġebook\":47179,\"Ġchic\":47180,\"gross\":47181,\"\\\":\\\"\\\"},{\\\"\":47182,\"ĠSurprisingly\":47183,\"Morgan\":47184,\"Ġresidues\":47185,\"ĠConfederation\":47186,\"infeld\":47187,\"Ġlyr\":47188,\"moderate\":47189,\"Ġperpendicular\":47190,\"VK\":47191,\"Ġsynchronized\":47192,\"Ġrefreshed\":47193,\"Ġadore\":47194,\"ĠTorment\":47195,\"olina\":47196,\"Ġ2600\":47197,\"ItemTracker\":47198,\"Ġpies\":47199,\"ĠFAT\":47200,\"ĠRHP\":47201,\"048\":47202,\"ĠRESP\":47203,\"ĠBJ\":47204,\"allows\":47205,\"Pand\":47206,\"Ġunwelcome\":47207,\"ĠVoc\":47208,\"ĠBastard\":47209,\"ĠOW\":47210,\"ĠLAR\":47211,\"ĠHealer\":47212,\"Environmental\":47213,\"ĠKenyan\":47214,\"ĠTrance\":47215,\"ĠPats\":47216,\"Ġaliases\":47217,\"ĠGarfield\":47218,\"Ġcampaigner\":47219,\"Ġadvancements\":47220,\"ĠOkinawa\":47221,\"ĠCoh\":47222,\"owsky\":47223,\"Ġstarved\":47224,\"Ġsizeable\":47225,\"Ġ:-)\":47226,\"ĠmRNA\":47227,\"Ġsuspensions\":47228,\"istar\":47229,\"Scotland\":47230,\"Prin\":47231,\"------------------------------------------------\":47232,\"Ġ502\":47233,\"Ġteaspoons\":47234,\"Ġ1050\":47235,\"Ġcoercive\":47236,\"ĠMasonic\":47237,\"edded\":47238,\"ĠPassenger\":47239,\"Ġlatt\":47240,\"Ġbraces\":47241,\"ĠSteal\":47242,\"ĠNYT\":47243,\"ĠKats\":47244,\"ĠCelest\":47245,\"aez\":47246,\"Tu\":47247,\"ĠCoulter\":47248,\"ðŁĺ\":47249,\"Flickr\":47250,\"ĠWilmington\":47251,\"iths\":47252,\"++;\":47253,\"Ġvending\":47254,\"Ġnegro\":47255,\"ĠPhi\":47256,\"ĠYellowstone\":47257,\"Callback\":47258,\"Ġshampoo\":47259,\"ĠShades\":47260,\"wat\":47261,\"Ġsuperhuman\":47262,\"Ġridiculed\":47263,\"Ġholiest\":47264,\"ombo\":47265,\"Ġinterns\":47266,\"Ġhone\":47267,\"ĠParagu\":47268,\"URI\":47269,\"Ġdangling\":47270,\"ãĤ»\":47271,\"sov\":47272,\"ictional\":47273,\"availability\":47274,\"Ġrevocation\":47275,\"Ġdow\":47276,\"inic\":47277,\"ĠTHEIR\":47278,\"Ġiso\":47279,\"Ġoutings\":47280,\"ĠLethal\":47281,\"Ġ)))\":47282,\"Ġinaccur\":47283,\"Ġoutlandish\":47284,\"Ġanus\":47285,\"letico\":47286,\"idon\":47287,\"lol\":47288,\"Ġunregulated\":47289,\"Ġsuccumbed\":47290,\"Ġcuff\":47291,\"ĠWasteland\":47292,\"letal\":47293,\"Ġsubstr\":47294,\"Ġcoffers\":47295,\"Ġautomakers\":47296,\"ovi\":47297,\"ĠXue\":47298,\"ĠDaytona\":47299,\"Ġjarring\":47300,\"Ġfumes\":47301,\"Ġdisbanded\":47302,\"zik\":47303,\"itton\":47304,\"Ġstrikingly\":47305,\"Ġspores\":47306,\"Adapter\":47307,\".):\":47308,\"ĠLyndon\":47309,\"ivalry\":47310,\"Ġorally\":47311,\"Ġtumultuous\":47312,\"Ġdispleasure\":47313,\"Ġcones\":47314,\"orrect\":47315,\"Ġappease\":47316,\"Ġderby\":47317,\"ĠTripoli\":47318,\"ĠAless\":47319,\"Ġpoked\":47320,\"ĠGuilty\":47321,\"vP\":47322,\"Enough\":47323,\"Ġoriginals\":47324,\"699\":47325,\"Ġrabbi\":47326,\"Ġproverbial\":47327,\"Ġpostpone\":47328,\"elope\":47329,\"ĠMisty\":47330,\"Ġstaffed\":47331,\"ĠUnemployment\":47332,\"reditary\":47333,\"Ġdiligent\":47334,\"recomm\":47335,\"measures\":47336,\"asin\":47337,\"825\":47338,\"Ġponds\":47339,\"Ġmmol\":47340,\"ĠSAR\":47341,\"ĠCARE\":47342,\"Ġ371\":47343,\"Ġclenched\":47344,\"ĠCorsair\":47345,\"Ġcaricature\":47346,\"zn\":47347,\"attach\":47348,\"ĠSchro\":47349,\"speak\":47350,\"painted\":47351,\"ĠSuc\":47352,\"ĠENT\":47353,\"Ġcellul\":47354,\"ĠPaid\":47355,\"diagn\":47356,\"WHERE\":47357,\"Ġtexted\":47358,\"Barn\":47359,\"Ġretracted\":47360,\"ĠReferred\":47361,\"Sav\":47362,\"Ġupkeep\":47363,\"Ġworkplaces\":47364,\"ĠTokens\":47365,\"Ġamplify\":47366,\"clinical\":47367,\"Ġmultic\":47368,\"mberg\":47369,\"Ġconvoluted\":47370,\"Region\":47371,\"565\":47372,\"ĠTopic\":47373,\"Ġsnail\":47374,\"Ġsaline\":47375,\"Ġinsurrection\":47376,\"ĠPetr\":47377,\"forts\":47378,\"BAT\":47379,\"ĠNavajo\":47380,\"Ġrudimentary\":47381,\"ĠLaksh\":47382,\"ONDON\":47383,\"Measure\":47384,\"Ġtransformer\":47385,\"ĠGoddard\":47386,\"Ġcoincides\":47387,\"irin\":47388,\"Rex\":47389,\"ĠBok\":47390,\"quit\":47391,\"Ġshotguns\":47392,\"Ġproletarian\":47393,\"Ġscorp\":47394,\"ĠAda\":47395,\"514\":47396,\"Ġslander\":47397,\"recorded\":47398,\"Ġembell\":47399,\"risome\":47400,\"Ġapologizing\":47401,\"ĠMulcair\":47402,\"ĠGibraltar\":47403,\"Cla\":47404,\"Ġallot\":47405,\"ĠAttention\":47406,\"Ġ433\":47407,\"leave\":47408,\"Ġwhine\":47409,\"ĠIssa\":47410,\"ĠFaust\":47411,\"ĠBarron\":47412,\"heny\":47413,\"Ġvictimized\":47414,\"Jews\":47415,\"Ġnurturing\":47416,\"ettel\":47417,\"Winged\":47418,\"ĠSubtle\":47419,\"Ġflavorful\":47420,\"ĠReps\":47421,\"enged\":47422,\"callback\":47423,\"Ġdirectional\":47424,\"Ġclasp\":47425,\"ĠDirections\":47426,\"planet\":47427,\"iculture\":47428,\"Helper\":47429,\"icion\":47430,\"acia\":47431,\"Ġç¥ŀ\":47432,\"Ġsurges\":47433,\"Ġcanoe\":47434,\"ĠPremiership\":47435,\"been\":47436,\"Ġdefied\":47437,\"ĠTrooper\":47438,\"Ġtripod\":47439,\"Ġgasp\":47440,\"ĠEuph\":47441,\"ĠAds\":47442,\"vernight\":47443,\"highly\":47444,\"Role\":47445,\"Ġentangled\":47446,\"ĠZeit\":47447,\"618\":47448,\"ĠRusty\":47449,\"Ġhavens\":47450,\"ĠVaughan\":47451,\"HAEL\":47452,\"ĠSERVICE\":47453,\"/,\":47454,\"Ġstricken\":47455,\"Ġdelusions\":47456,\"Ġbis\":47457,\"ĠHaf\":47458,\"Ġgratification\":47459,\"Ġenticing\":47460,\"UNCH\":47461,\"Adams\":47462,\"ĠOLED\":47463,\"ĠBeetle\":47464,\"Ġ1899\":47465,\"ĠSOFTWARE\":47466,\"ategor\":47467,\"VL\":47468,\"ĠTotem\":47469,\"ĠGators\":47470,\"ATURES\":47471,\"Ġimpedance\":47472,\"Registered\":47473,\"ĠCary\":47474,\"ĠAerial\":47475,\"onne\":47476,\"enium\":47477,\"Ġdred\":47478,\"ĠBeg\":47479,\"Ġconcurrently\":47480,\"Ġsuperpower\":47481,\"ĠXan\":47482,\"jew\":47483,\"imester\":47484,\"ĠDickinson\":47485,\"âĶģ\":47486,\"Fla\":47487,\"Ġpree\":47488,\"ĠRollins\":47489,\"©¶æ\":47490,\"Ġdenomination\":47491,\"ĠLana\":47492,\"516\":47493,\"Ġinciting\":47494,\"scribed\":47495,\"juries\":47496,\"ĠWonders\":47497,\"approximately\":47498,\"Ġsuspending\":47499,\"Ġmountainous\":47500,\"ĠLaugh\":47501,\"oidal\":47502,\"Ns\":47503,\"Detect\":47504,\")=\":47505,\"ĠLuthor\":47506,\"ĠSchwarzenegger\":47507,\"ĠMuller\":47508,\"ĠDevi\":47509,\"ecycle\":47510,\"Jar\":47511,\"613\":47512,\"ĠLongh\":47513,\"Bah\":47514,\"ĠSPORTS\":47515,\"nw\":47516,\"Ġrefinement\":47517,\"Ġwaterways\":47518,\"Ġdiner\":47519,\"Blade\":47520,\"683\":47521,\"Fac\":47522,\"Ġinitials\":47523,\"Ġrog\":47524,\"Ġparanormal\":47525,\"BUT\":47526,\"Ġ[(\":47527,\"ĠSwanson\":47528,\"ĠMesh\":47529,\"âĸ¬\":47530,\"Improve\":47531,\"ĠRadiation\":47532,\"ĠEsther\":47533,\"ĠEsk\":47534,\"ĠAly\":47535,\"iky\":47536,\"Ġirrad\":47537,\"ĠBuckingham\":47538,\"Ġrefill\":47539,\"Ġ._\":47540,\"Repe\":47541,\"CONCLUS\":47542,\"Ġdifferentiated\":47543,\"Ġchirop\":47544,\"ĠAtkins\":47545,\"Pattern\":47546,\"Ġexcise\":47547,\"Ġcabal\":47548,\"NSA\":47549,\"ĠSTA\":47550,\"ĠSIL\":47551,\"ĠParaly\":47552,\"Ġrye\":47553,\"ĠHowell\":47554,\"ĠCountdown\":47555,\"nesses\":47556,\"alysed\":47557,\"Ġresize\":47558,\"ãĤ½\":47559,\"Ġbudgetary\":47560,\"ĠStras\":47561,\"wang\":47562,\"Ġapiece\":47563,\"Ġprecincts\":47564,\"Ġpeach\":47565,\"Ġskyline\":47566,\"Ġ353\":47567,\"popular\":47568,\"Appearances\":47569,\"ĠMechanics\":47570,\"ĠDevOnline\":47571,\"Sullivan\":47572,\"Zen\":47573,\"Ġpu\":47574,\"opolis\":47575,\"544\":47576,\"Ġdeform\":47577,\"Ġcounteract\":47578,\"ĠLange\":47579,\"Ġ417\":47580,\"Console\":47581,\"774\":47582,\"Ġnodding\":47583,\"Ġpopulism\":47584,\"Ġhep\":47585,\"Ġcounselling\":47586,\"compliance\":47587,\"UFF\":47588,\"Ġundeniably\":47589,\"Ġrailing\":47590,\"ĠHorowitz\":47591,\"ĠSimone\":47592,\"ĠBungie\":47593,\"Ġak\":47594,\"ĠTalks\":47595,\"xff\":47596,\"flake\":47597,\"Crash\":47598,\"Ġsweaty\":47599,\"Ġbanquet\":47600,\"ĠOFFIC\":47601,\"Ġinventive\":47602,\"Ġastronomer\":47603,\"ĠStamford\":47604,\"ĠScare\":47605,\"ĠGREEN\":47606,\"olicited\":47607,\"Ġrusher\":47608,\"Ġcentrist\":47609,\"ighting\":47610,\"Ġsubclass\":47611,\"Ġdisav\":47612,\"Ġdefund\":47613,\"ĠNanto\":47614,\"ociate\":47615,\"mast\":47616,\"Ġpacif\":47617,\"Ġmend\":47618,\"eers\":47619,\"immigration\":47620,\"ESSION\":47621,\"Ġnumbering\":47622,\"Ġlaughable\":47623,\"ĠEnded\":47624,\"viation\":47625,\"emark\":47626,\"Pitt\":47627,\"Ġmeticulous\":47628,\"ĠLF\":47629,\"Ġcongratulated\":47630,\"ĠBirch\":47631,\"Ġswayed\":47632,\"Ġsemifinals\":47633,\"Ġhumankind\":47634,\"matter\":47635,\"ĠEquip\":47636,\"opausal\":47637,\"Said\":47638,\"ĠLayout\":47639,\"Ġvoicing\":47640,\"Ġthug\":47641,\"Ġpornographic\":47642,\"IPS\":47643,\"Ġmoaning\":47644,\"Ġgrievance\":47645,\"Ġconfessions\":47646,\"escal\":47647,\"TEXTURE\":47648,\"Authent\":47649,\"osaurus\":47650,\"Purchase\":47651,\"Ġrelegation\":47652,\"alter\":47653,\"ĠÂłÂł\":47654,\"Ġriddled\":47655,\"Ġogre\":47656,\"ĠLowell\":47657,\"Occup\":47658,\"Eat\":47659,\"ĠHyder\":47660,\"ĠAdviser\":47661,\"Commerce\":47662,\"Hunt\":47663,\"ĠOrth\":47664,\"ĠCompetitive\":47665,\"ĠCLA\":47666,\"CDC\":47667,\"Ġsalads\":47668,\"Fle\":47669,\"Ġindustrialized\":47670,\"`,\":47671,\"ĠOWN\":47672,\"Ġbeck\":47673,\"ĠParticularly\":47674,\"oubt\":47675,\"ĠmM\":47676,\"ĠHussain\":47677,\"ĠChennai\":47678,\"Ġ920\":47679,\"Ġappointing\":47680,\"ĠCullen\":47681,\",,,,,,,,\":47682,\"Ġpores\":47683,\"verified\":47684,\"Ġbiochemical\":47685,\"emate\":47686,\"Ġcowardly\":47687,\"ĠHelsinki\":47688,\"ĠEthiopian\":47689,\"SOURCE\":47690,\"ERC\":47691,\"estro\":47692,\"Ġbiotech\":47693,\"ĠSour\":47694,\"Ġbrewer\":47695,\"Bloomberg\":47696,\"Ġintensify\":47697,\"Glass\":47698,\"anco\":47699,\"ĠFDR\":47700,\"greSQL\":47701,\"ĠFires\":47702,\"©¶æ¥µ\":47703,\"eco\":47704,\"1001\":47705,\"ĠHomeless\":47706,\"Ġinstantaneous\":47707,\"ĠHaste\":47708,\"igel\":47709,\"Diamond\":47710,\"Ġpaving\":47711,\"Ġlandfill\":47712,\"Ġdads\":47713,\"houn\":47714,\":]\":47715,\"Ġincendiary\":47716,\"ĠLivingston\":47717,\"ĠHilbert\":47718,\"ĠChecks\":47719,\"styles\":47720,\"inators\":47721,\"ĠClive\":47722,\"phrine\":47723,\"Ġchimpanzees\":47724,\"Ġpall\":47725,\"ĠJM\":47726,\"ĠAadhaar\":47727,\"ðĿ\":47728,\"Ġachievable\":47729,\"disabled\":47730,\"PET\":47731,\"OOOOOOOO\":47732,\"Mot\":47733,\"Ġintangible\":47734,\"Ġballet\":47735,\"ĠWebs\":47736,\"ĠEstimated\":47737,\"Effects\":47738,\"Ġbailed\":47739,\"Joshua\":47740,\"Ġturbulence\":47741,\"Ġoccupant\":47742,\"ĠDaylight\":47743,\"Ġ361\":47744,\"meet\":47745,\"Ġstatically\":47746,\"Ġonlook\":47747,\"Ġki\":47748,\"illegal\":47749,\"Ġvelvet\":47750,\"Ġdehydration\":47751,\"Ġacquies\":47752,\"ĠRez\":47753,\"akura\":47754,\"ĠUpton\":47755,\"atro\":47756,\"Ġincomprehensible\":47757,\"Ġbackdoor\":47758,\"ĠRhino\":47759,\"727\":47760,\"Ġmaths\":47761,\")+\":47762,\"Ġheresy\":47763,\"Ġdf\":47764,\"ĠRoche\":47765,\"ĠLydia\":47766,\"Ġpancreat\":47767,\"reply\":47768,\"arrell\":47769,\"Ġsolicitation\":47770,\"Ġcircadian\":47771,\"BIP\":47772,\"Ġforay\":47773,\"Ġcryptic\":47774,\"izu\":47775,\"imeo\":47776,\"ĠTomato\":47777,\"ĠHoms\":47778,\"examination\":47779,\"Ġquarry\":47780,\"ĠValiant\":47781,\"ĠJericho\":47782,\"ĠINCLUD\":47783,\"Ġ1840\":47784,\"519\":47785,\"Ġresists\":47786,\"Ġsnapshots\":47787,\"ĠSpur\":47788,\"ĠAntiqu\":47789,\"Login\":47790,\"Ġbestselling\":47791,\"Ġantic\":47792,\"ĠSutherland\":47793,\"ãĤ¢ãĥ«\":47794,\"Ġ~/\":47795,\"ĠParm\":47796,\"èĥ\":47797,\"Pages\":47798,\"intensity\":47799,\"Ġimmobil\":47800,\"Ġ1865\":47801,\"zzo\":47802,\"Ġnifty\":47803,\"Ġfentanyl\":47804,\"ĠPreservation\":47805,\"ophen\":47806,\"Ġdarts\":47807,\"ĠDinosaur\":47808,\"pointers\":47809,\"ĠRite\":47810,\"suggest\":47811,\"awareness\":47812,\"ĠSheridan\":47813,\"Ġstances\":47814,\"Ġsorcery\":47815,\"Ġperjury\":47816,\"ĠNikola\":47817,\"iever\":47818,\"Ġfiance\":47819,\"ĠJordanian\":47820,\"ĠBalloon\":47821,\"Ġnab\":47822,\"Ġkb\":47823,\"Ġhumanities\":47824,\"ĠTanaka\":47825,\"hillary\":47826,\"Ġconsultancy\":47827,\"ĠZub\":47828,\"Ġremission\":47829,\"Ġconfid\":47830,\"CHQ\":47831,\"ĠFug\":47832,\"Ġimprovis\":47833,\"Yep\":47834,\"/_\":47835,\"Ġunwillingness\":47836,\"Ġportfolios\":47837,\"055\":47838,\"ĠInstructor\":47839,\"aiman\":47840,\"Ġclaimants\":47841,\"Mbps\":47842,\"ĠBye\":47843,\"received\":47844,\"Tweet\":47845,\"Ġindemn\":47846,\"riz\":47847,\"amara\":47848,\"Nat\":47849,\"Ġevaluates\":47850,\"ĠLur\":47851,\"epad\":47852,\"FOX\":47853,\"ĠThro\":47854,\"Ġrusty\":47855,\"Ġbedrock\":47856,\"ĠOprah\":47857,\"JB\":47858,\"Ġmanipulative\":47859,\"Ġwillful\":47860,\"Ġrelapse\":47861,\"Ġextant\":47862,\"Theme\":47863,\"Sensor\":47864,\"ĠStability\":47865,\"govern\":47866,\"Ġpoppy\":47867,\"Ġknack\":47868,\"Ġinsulated\":47869,\"ĠTile\":47870,\"ĠExtrem\":47871,\"Ġuntold\":47872,\"Ġconverge\":47873,\"Ġrefuel\":47874,\"igroup\":47875,\"Ġdistortions\":47876,\"Ġravaged\":47877,\"Ġmechanically\":47878,\"ĠReilly\":47879,\"ĠNose\":47880,\"ĠIncarnation\":47881,\"ĠBecky\":47882,\"abbling\":47883,\"Ġtaco\":47884,\"Ġrake\":47885,\"Ġmelancholy\":47886,\"Ġillustrious\":47887,\"ĠDartmouth\":47888,\"Guide\":47889,\"ĠRazer\":47890,\"ĠBenz\":47891,\"Ultimate\":47892,\"ĠSurprise\":47893,\"Ġpageant\":47894,\"offer\":47895,\"Whoever\":47896,\"Ġwiser\":47897,\"Ġchemist\":47898,\"ĠHELL\":47899,\"ĠBulk\":47900,\"Ġplutonium\":47901,\"ĠCOVER\":47902,\"Ö¼\":47903,\"failed\":47904,\"Ġtirelessly\":47905,\"Ġinfertility\":47906,\"ĠTrident\":47907,\"ĠShowtime\":47908,\"ĠCiv\":47909,\"Vice\":47910,\"requires\":47911,\"ittance\":47912,\"Ġuncontrolled\":47913,\"interesting\":47914,\"561\":47915,\"Ġinnovate\":47916,\"ategic\":47917,\"Lie\":47918,\"ĠSelling\":47919,\"Ul\":47920,\"Ġsavior\":47921,\"ĠTosh\":47922,\"Ġswast\":47923,\"PASS\":47924,\"Ġrink\":47925,\"Ġcardio\":47926,\"ĠIro\":47927,\"udi\":47928,\"Ġvantage\":47929,\"Ġvans\":47930,\"ĠNiÃ±o\":47931,\"+=\":47932,\"Ġpropagate\":47933,\"<?\":47934,\"Ġmethodological\":47935,\"20439\":47936,\"Ġtriglycer\":47937,\"Ġingrained\":47938,\"ĠAnnotations\":47939,\"arranted\":47940,\"617\":47941,\"ĠSodium\":47942,\"ĠAAC\":47943,\"technical\":47944,\"multipl\":47945,\"Ġ373\":47946,\"åĭ\":47947,\"Ġdecisively\":47948,\"Ġboosters\":47949,\"Ġdesserts\":47950,\"ĠGrenade\":47951,\"Ġtestifying\":47952,\"ĠScully\":47953,\"IDs\":47954,\"Ġlockdown\":47955,\"ĠScher\":47956,\"ĠRÃ©\":47957,\"ĠWhitman\":47958,\"ĠRamsay\":47959,\"remote\":47960,\"Ġhikers\":47961,\"ĠHyundai\":47962,\"Ġconscientious\":47963,\"Ġclerics\":47964,\"ĠSiberian\":47965,\"uti\":47966,\"isbury\":47967,\"Ġrelayed\":47968,\"Ġquartz\":47969,\"ĠCBI\":47970,\"seekers\":47971,\"ulla\":47972,\"Ġwelding\":47973,\"ĠShal\":47974,\"bleacher\":47975,\"Tai\":47976,\"ĠSamson\":47977,\"Ġtumble\":47978,\"ĠInvestor\":47979,\"Ġsubcontract\":47980,\"ĠShinra\":47981,\"owicz\":47982,\"jandro\":47983,\"dad\":47984,\"Ġterminating\":47985,\"ĠNeural\":47986,\"ä»£\":47987,\"Ġleakage\":47988,\"ĠMidlands\":47989,\"ĠCaucasus\":47990,\"íķ\":47991,\"cit\":47992,\"llan\":47993,\"ivably\":47994,\"ĠAlbion\":47995,\"Ġ457\":47996,\"Ġregistrations\":47997,\"Ġcomrade\":47998,\"Ġclipboard\":47999,\"047\":48000,\"Ġdiscouraging\":48001,\"ĠOops\":48002,\"Adapt\":48003,\"Ġempath\":48004,\"nv\":48005,\"ĠPROT\":48006,\"ĠDonn\":48007,\"ĠPax\":48008,\"ĠBayer\":48009,\"tis\":48010,\"Square\":48011,\"Ġfootprints\":48012,\"particip\":48013,\"ĠChilean\":48014,\"Brend\":48015,\"inducing\":48016,\"Magn\":48017,\"Ġclubhouse\":48018,\"ĠMagnum\":48019,\"Ġencamp\":48020,\"ĠEthnic\":48021,\"ucha\":48022,\"erey\":48023,\"Ġwatered\":48024,\"ĠCalais\":48025,\"Ġcomplexion\":48026,\"Ġsects\":48027,\"Ġrenters\":48028,\"Ġbras\":48029,\"oÄŁan\":48030,\"Timeout\":48031,\"Management\":48032,\"Ġinfographic\":48033,\"Pokemon\":48034,\"Clar\":48035,\"Ġlocality\":48036,\"Ġflora\":48037,\"asel\":48038,\"Pont\":48039,\"Ġpopulate\":48040,\"ĠOng\":48041,\"Ġsubsistence\":48042,\"Ġauctions\":48043,\"ĠMcAuliffe\":48044,\"ĠLOOK\":48045,\"bringer\":48046,\"Ġtitan\":48047,\"Ġmanifold\":48048,\"ĠâĹı\":48049,\"Ġcalibrated\":48050,\"Ġcaliphate\":48051,\"ĠSHE\":48052,\"ĠCommissioners\":48053,\"ceivable\":48054,\"jc\":48055,\"Winner\":48056,\"524\":48057,\"Ġcondone\":48058,\"Otherwise\":48059,\"Ġpiling\":48060,\"Ġembody\":48061,\"ĠCrimean\":48062,\"utics\":48063,\"ĠExhibition\":48064,\"Ġ426\":48065,\"eering\":48066,\"Ġvying\":48067,\"ĠHUGE\":48068,\"*=-\":48069,\"Ġprincipled\":48070,\"à¦\":48071,\"Ġquirks\":48072,\"ĠEditors\":48073,\"puting\":48074,\"GES\":48075,\"ĠFTA\":48076,\"à¤¾\":48077,\"addon\":48078,\"ĠHAM\":48079,\"ĠFrieza\":48080,\"Woman\":48081,\".$\":48082,\"Ġcrib\":48083,\"ĠHerod\":48084,\"Ġtimers\":48085,\"ĠSpaces\":48086,\"ĠMacintosh\":48087,\"ataka\":48088,\"Ġglide\":48089,\"Ġsmelling\":48090,\"ĠBAL\":48091,\"Ġunsu\":48092,\"Ġcondos\":48093,\"Ġbicycl\":48094,\"ĠRevival\":48095,\"553\":48096,\"Ġjuggling\":48097,\"Hug\":48098,\"ĠKardashian\":48099,\"ĠBalkans\":48100,\"multiple\":48101,\"Ġnutritious\":48102,\"ocry\":48103,\"1900\":48104,\"Ġintegrates\":48105,\"Ġadjoining\":48106,\"ĠFolder\":48107,\"rollment\":48108,\"venient\":48109,\"Ġuber\":48110,\"yi\":48111,\"Ġwhiff\":48112,\"ĠJuven\":48113,\"ĠBorough\":48114,\"nette\":48115,\"Ġbilingual\":48116,\"ĠSparks\":48117,\"phthal\":48118,\"manufact\":48119,\"Ġtouting\":48120,\"ĠPHI\":48121,\"Keefe\":48122,\"Reward\":48123,\"Ġinfall\":48124,\"ĠTemper\":48125,\"typically\":48126,\"ĠNikol\":48127,\"Ġregulars\":48128,\"Ġpseudonym\":48129,\"Ġexhibitions\":48130,\"Ġblaster\":48131,\"Ġ409\":48132,\"warming\":48133,\"Ġreverber\":48134,\"Ġreciprocal\":48135,\"Ġ670\":48136,\"ipient\":48137,\"bett\":48138,\"ĠBegins\":48139,\"Ġitching\":48140,\"ĠPhar\":48141,\"Assuming\":48142,\"Ġemitting\":48143,\"ĠMLG\":48144,\"Ġbirthplace\":48145,\"Ġtaunt\":48146,\"ĠLuffy\":48147,\"ĠAmit\":48148,\"Ġcircled\":48149,\"ĠNost\":48150,\"ennett\":48151,\"Ġdeforestation\":48152,\"ĠHistorically\":48153,\"ĠEveryday\":48154,\"Ġovertake\":48155,\"792\":48156,\"Ġnun\":48157,\"ĠLucia\":48158,\"Ġaccompanies\":48159,\"ĠSeeking\":48160,\"ĠTrash\":48161,\"anism\":48162,\"Rogue\":48163,\"Ġnorthwestern\":48164,\"ĠSupplemental\":48165,\"ĠNYU\":48166,\"ĠFRI\":48167,\"ĠSatisf\":48168,\"xes\":48169,\"517\":48170,\"Ġreassured\":48171,\"Ġsporadic\":48172,\"Ġ701\":48173,\"Ġmedial\":48174,\"Ġcannabinoid\":48175,\"Ġbarbaric\":48176,\"Ġepis\":48177,\"ĠExplosive\":48178,\"ĠDough\":48179,\"Ġunsolved\":48180,\"Supported\":48181,\"Ġacknowledgment\":48182,\"spawn\":48183,\"Ġkitchens\":48184,\"Ġ-=\":48185,\"talking\":48186,\"icist\":48187,\"ĠPegasus\":48188,\"ĠPSU\":48189,\"Ġphoton\":48190,\"ĠAuthentication\":48191,\"RG\":48192,\"@#&\":48193,\"762\":48194,\"ĠClair\":48195,\"Ġdiaper\":48196,\"Ġbrist\":48197,\"ĠProsecutors\":48198,\"ĠJem\":48199,\"628\":48200,\"ĠEverywhere\":48201,\"ĠJeanne\":48202,\"equality\":48203,\"ãĥ©ãĥ³\":48204,\"objects\":48205,\"ĠPelicans\":48206,\"Ġ392\":48207,\"Ġblu\":48208,\"bys\":48209,\"ĠAgo\":48210,\"Ġinstructional\":48211,\"Ġdiscriminating\":48212,\"ĠTRAN\":48213,\"ĠCornel\":48214,\"agos\":48215,\"Ġtyre\":48216,\"Ġaspiration\":48217,\"ĠBridgewater\":48218,\"\\\":-\":48219,\"!\\\".\":48220,\"ĠEns\":48221,\"ĠCoco\":48222,\"Pie\":48223,\"Ġdetach\":48224,\"ĠCouch\":48225,\"Ġphysique\":48226,\"ĠOccupations\":48227,\"oscopic\":48228,\"enough\":48229,\"Buzz\":48230,\"Appearance\":48231,\"YP\":48232,\"Ġracer\":48233,\"Ġcomplicity\":48234,\"rpm\":48235,\"Toy\":48236,\"Ġinterrupts\":48237,\"ĠCatalyst\":48238,\"Ġutilitarian\":48239,\"impact\":48240,\"Ġspaghetti\":48241,\"Ġporous\":48242,\"Ġesteemed\":48243,\"Ġinciner\":48244,\"ĠIOC\":48245,\"748\":48246,\"Ġespresso\":48247,\"ĠSmile\":48248,\"abilia\":48249,\"635\":48250,\"Ġmathematician\":48251,\"Ġ424\":48252,\"ĠKL\":48253,\"ĠHIP\":48254,\"Ġoverheard\":48255,\"ĠTud\":48256,\"ĠTec\":48257,\"Ġquizz\":48258,\"Ġflattering\":48259,\"Ġconn\":48260,\"âĢİ\":48261,\"Ġattaches\":48262,\"ĠROS\":48263,\"ĠACS\":48264,\"Ġtcp\":48265,\"ĠShame\":48266,\"skip\":48267,\"respected\":48268,\"ĠTrinidad\":48269,\"grain\":48270,\"Ġfoothold\":48271,\"ĠUncharted\":48272,\"ĠJulio\":48273,\"zl\":48274,\"avored\":48275,\"ĠAnxiety\":48276,\"errors\":48277,\"ĠCentauri\":48278,\"itsch\":48279,\"Daddy\":48280,\"Ġclutching\":48281,\"ĠImplement\":48282,\"ĠGutierrez\":48283,\"Ġ760\":48284,\"Ġteleportation\":48285,\"endra\":48286,\"Ġreversible\":48287,\"stros\":48288,\"Adventure\":48289,\"083\":48290,\"Ġliberating\":48291,\"Ġasphalt\":48292,\"ĠSpend\":48293,\"ARDS\":48294,\"imsy\":48295,\"PRES\":48296,\"ĠEmerging\":48297,\"Ġwildfires\":48298,\"Ġtechnologically\":48299,\"Ġemits\":48300,\"ĠARTICLE\":48301,\"Ġirregularities\":48302,\"Ġcherish\":48303,\"çīĪ\":48304,\"Ġstink\":48305,\"ĠRost\":48306,\"Economic\":48307,\"Ġcoughing\":48308,\"ĠMcCann\":48309,\"properties\":48310,\"ilantro\":48311,\"Ġrenegoti\":48312,\"Translation\":48313,\"Ġinquest\":48314,\"ĠGrape\":48315,\"ooters\":48316,\"gui\":48317,\"ĠSwordsman\":48318,\"aceae\":48319,\"hitting\":48320,\"Ġrc\":48321,\"Ġexerted\":48322,\"ĠSAP\":48323,\"itent\":48324,\"Ġperilous\":48325,\"Ġobscurity\":48326,\"Ġassassinate\":48327,\"Ġaboriginal\":48328,\"Ġrescuing\":48329,\"ĠShattered\":48330,\"locking\":48331,\"allion\":48332,\"Changing\":48333,\"ĠHarrington\":48334,\"ĠBord\":48335,\"ĠAfghans\":48336,\"Jamie\":48337,\"aretz\":48338,\"ĠAugustus\":48339,\"Ġ386\":48340,\"830\":48341,\"Ġjog\":48342,\"okingly\":48343,\"Trigger\":48344,\"ĠHOR\":48345,\"Statistics\":48346,\"Ġviewership\":48347,\"Ġadditives\":48348,\"hur\":48349,\"Ġmaximizing\":48350,\"ĠRove\":48351,\"ĠLouie\":48352,\"ĠBucket\":48353,\"ĠCHRIST\":48354,\"ousel\":48355,\"Ġstreaks\":48356,\"irted\":48357,\"Ġtert\":48358,\"Ġcolonialism\":48359,\"Ġburying\":48360,\"yk\":48361,\"Condition\":48362,\"ĠDPRK\":48363,\"ById\":48364,\"751\":48365,\"âĹ¼\":48366,\"Ġworrisome\":48367,\"Ġvocational\":48368,\"slice\":48369,\"Ġsails\":48370,\"ĠCorrectional\":48371,\"954\":48372,\"Ġtul\":48373,\"Kid\":48374,\"luster\":48375,\"Ġfamilial\":48376,\"ĠSpit\":48377,\"ĠEpiscopal\":48378,\"Specifically\":48379,\"ĠVolcano\":48380,\"runs\":48381,\"qs\":48382,\"Ġvetted\":48383,\"Ġcrammed\":48384,\"trop\":48385,\"herer\":48386,\"Thankfully\":48387,\"Ġpercussion\":48388,\"Ġoranges\":48389,\"Ġroundup\":48390,\"Ġ499\":48391,\"xious\":48392,\"Characters\":48393,\"ĠZionism\":48394,\"ĠRao\":48395,\"ÃĽÃĽ\":48396,\"WF\":48397,\"Ġunintentional\":48398,\"ONEY\":48399,\"Grab\":48400,\"Commercial\":48401,\"Ġglutamate\":48402,\"ĠMcKenna\":48403,\"ruciating\":48404,\"nington\":48405,\"ihu\":48406,\"Chan\":48407,\"ĠSwap\":48408,\"Ġleaflets\":48409,\"Ġfunctionally\":48410,\"erous\":48411,\"Farm\":48412,\"Ġcaloric\":48413,\"ĠLiterally\":48414,\"concert\":48415,\"Ġshenan\":48416,\"Ġrepaid\":48417,\"eyes\":48418,\"Ġbashing\":48419,\"ĠGorge\":48420,\"Ġcollaborations\":48421,\"Ġunaccount\":48422,\"itchie\":48423,\"Ġteamwork\":48424,\"ppelin\":48425,\"Ġpiping\":48426,\"Ġminced\":48427,\"Ġdiam\":48428,\"rieg\":48429,\"Ġmascara\":48430,\"Ġsucker\":48431,\"ĠMoons\":48432,\"Apps\":48433,\"ĠPeck\":48434,\"Ġperv\":48435,\"ĠFloat\":48436,\"oley\":48437,\"ĠNish\":48438,\"imize\":48439,\"Ġaromatic\":48440,\"uin\":48441,\"endish\":48442,\"!/\":48443,\"ĠBicycle\":48444,\"ĠASIC\":48445,\"ileged\":48446,\"ĠQuadro\":48447,\"iosyn\":48448,\"Ġlockout\":48449,\"ĠWink\":48450,\"SPEC\":48451,\"Attempts\":48452,\"Ġseeded\":48453,\"redo\":48454,\"iasis\":48455,\"Ġsnag\":48456,\"ãĥķãĤ©\":48457,\"ãĤ¶\":48458,\"Ġgrounding\":48459,\"Ġreliever\":48460,\"Ġfrivolous\":48461,\"ĠGifts\":48462,\"ĠFaces\":48463,\"Especially\":48464,\"Ġmicrobiome\":48465,\"imag\":48466,\"ĠSchl\":48467,\"ĠPles\":48468,\"ĠBleach\":48469,\"ĠIrwin\":48470,\"ĠEaton\":48471,\"ĠDisciple\":48472,\"Ġmultiplication\":48473,\"Ġcoerced\":48474,\"Ġ419\":48475,\"sth\":48476,\"Evil\":48477,\"Bomb\":48478,\"Ġexorc\":48479,\"Ġstaggered\":48480,\"LESS\":48481,\"Ġinertia\":48482,\"ĠEDIT\":48483,\"Ġgob\":48484,\"Traditional\":48485,\"Ġclassy\":48486,\"Leary\":48487,\"ĠPAGE\":48488,\"yrs\":48489,\"Ġtransporter\":48490,\"Ġmatured\":48491,\"Ġhijab\":48492,\"Ġbiome\":48493,\"Whereas\":48494,\"Ġextermination\":48495,\"ĠTues\":48496,\"ĠTakeru\":48497,\"ĠAudrey\":48498,\"erial\":48499,\"ĠAden\":48500,\"affles\":48501,\"Ġnarcissistic\":48502,\"ĠBaird\":48503,\"UTF\":48504,\"Ire\":48505,\"ĠConnie\":48506,\"Champ\":48507,\"Ġwhispering\":48508,\"ĠHatt\":48509,\"DK\":48510,\"Ġdisinfect\":48511,\"Ġdeducted\":48512,\"Ġpartake\":48513,\"Ġdowngrade\":48514,\"ĠEsports\":48515,\"ĠContinuing\":48516,\"Ġdemocratically\":48517,\"icrobial\":48518,\"itta\":48519,\"Ġlimestone\":48520,\"Ġexempted\":48521,\"ĠFrenzy\":48522,\"Herm\":48523,\"728\":48524,\"Ġfledgling\":48525,\"Meta\":48526,\"76561\":48527,\"693\":48528,\"%:\":48529,\"wake\":48530,\"526\":48531,\"ĠDiscipline\":48532,\"Ġvirginity\":48533,\"ĠLegions\":48534,\"ĠFrankie\":48535,\"intent\":48536,\"Ġrestrooms\":48537,\"ĠRouter\":48538,\"daq\":48539,\"Ġobjectionable\":48540,\"âĨĳ\":48541,\"wark\":48542,\"ĠRahul\":48543,\"gain\":48544,\"activation\":48545,\"absolute\":48546,\"ĠAccessed\":48547,\"Ġ2400\":48548,\"oggles\":48549,\"Ġsecondly\":48550,\"ĠDEFENSE\":48551,\"Ġpostage\":48552,\"wrapper\":48553,\"sharp\":48554,\"729\":48555,\"Ġcommunicates\":48556,\"Ġaddon\":48557,\"ĠMilitia\":48558,\"Hong\":48559,\"Ġslumped\":48560,\"ĠJPEG\":48561,\"ĠIcar\":48562,\"adish\":48563,\"681\":48564,\"Ġmajesty\":48565,\"ĠWolfgang\":48566,\"ĠElastic\":48567,\"uper\":48568,\"Ġviz\":48569,\"Ġunconsciously\":48570,\"ĠSTD\":48571,\"ĠSass\":48572,\"Ġflowering\":48573,\"ĠHelic\":48574,\"ĠDraper\":48575,\"ĠAmateur\":48576,\"Ġmanure\":48577,\"Ġdisingen\":48578,\"ĠLei\":48579,\"bring\":48580,\"949\":48581,\"Ġinhibited\":48582,\"Ġheadquartered\":48583,\"Ġenigmatic\":48584,\"ï¿½ï¿½ï¿½\":48585,\"Ġredress\":48586,\"RH\":48587,\"Ġrattled\":48588,\"Ġdiction\":48589,\"lio\":48590,\"ĠTBA\":48591,\"ĠSNAP\":48592,\"Calling\":48593,\"Ġfascists\":48594,\"ĠDove\":48595,\"iewicz\":48596,\"036\":48597,\"Ġcoasts\":48598,\"ĠRect\":48599,\"Ġ)]\":48600,\"Lot\":48601,\"629\":48602,\"ĠSEM\":48603,\"ĠPetersen\":48604,\"ĠExplain\":48605,\"ĠBoards\":48606,\"ĠBezos\":48607,\"ĠJournals\":48608,\"Ġ2024\":48609,\"parser\":48610,\"Ġmistrust\":48611,\"Ġgrate\":48612,\"ĠLocked\":48613,\"boa\":48614,\"Saint\":48615,\"gaming\":48616,\"Ġvowel\":48617,\"inately\":48618,\"blow\":48619,\"Allah\":48620,\"Ġunmatched\":48621,\"Ġbordering\":48622,\"ĠExpend\":48623,\"nr\":48624,\"Oracle\":48625,\"rouch\":48626,\"Ġcontiguous\":48627,\"acus\":48628,\"Ġdistraught\":48629,\"581\":48630,\"Ġanatomical\":48631,\"OX\":48632,\"apixel\":48633,\"833\":48634,\"ĠPLUS\":48635,\"Ġresusc\":48636,\"Ġabiding\":48637,\"573\":48638,\"Ġvacancies\":48639,\"Emily\":48640,\"Ġhypothal\":48641,\"ĠWerner\":48642,\"ĠWee\":48643,\"ĠDJs\":48644,\"513\":48645,\"Ġwitchcraft\":48646,\"Ġacupuncture\":48647,\"entary\":48648,\"benefit\":48649,\"Products\":48650,\"ĠPSP\":48651,\"ĠMPG\":48652,\"ĠJinn\":48653,\"ĠJarrett\":48654,\"Ġ445\":48655,\"ĠImaging\":48656,\"ĠPyth\":48657,\"Finish\":48658,\"Ġtex\":48659,\"Ġjuveniles\":48660,\"Ġheroism\":48661,\"Ġdoubtless\":48662,\"ĠAki\":48663,\"ĠTend\":48664,\"ĠPatriarch\":48665,\"Ġbitters\":48666,\"ĠTelecommunications\":48667,\"itatively\":48668,\"agna\":48669,\"Ġrg\":48670,\"ĠSOLD\":48671,\"Ġcompulsion\":48672,\"ĠNasa\":48673,\"ĠKathryn\":48674,\"Ġmillionaires\":48675,\"Ġintrinsically\":48676,\"Ġbolstered\":48677,\"timeout\":48678,\"flo\":48679,\"Ġtutor\":48680,\"pour\":48681,\"Statement\":48682,\"Ġ{*\":48683,\"ĠRudolph\":48684,\"ĠKimberly\":48685,\"rogens\":48686,\"adiq\":48687,\"]+\":48688,\"Ġindignation\":48689,\"Ġfracturing\":48690,\"ĠReleases\":48691,\"ĠGrain\":48692,\"protein\":48693,\"Lago\":48694,\"Ġvacations\":48695,\"Ġbooted\":48696,\"ĠTHREE\":48697,\"ĠHG\":48698,\"orescence\":48699,\"Ġtf\":48700,\"Ġsoar\":48701,\"iosyncr\":48702,\"Ġglances\":48703,\"ĠSpoon\":48704,\"ĠJury\":48705,\"ĠCowboy\":48706,\"Ġcreatively\":48707,\"Higher\":48708,\"Ġsolicitor\":48709,\"Ġhawk\":48710,\"acio\":48711,\"896\":48712,\"Ġsuperflu\":48713,\"Ġbombshell\":48714,\"cture\":48715,\"Ġbrokerage\":48716,\"Ġraiding\":48717,\"Ġfrench\":48718,\"Ġangled\":48719,\"Transaction\":48720,\"ĠGenocide\":48721,\"upe\":48722,\"ĠHaitian\":48723,\"572\":48724,\"!:\":48725,\"Ġunwittingly\":48726,\"iterator\":48727,\"scroll\":48728,\"Ġtallied\":48729,\"Ġbiomedical\":48730,\"ĠCARD\":48731,\"Ġeuphem\":48732,\"Ġbrainstorm\":48733,\"aquin\":48734,\"Ko\":48735,\"Michelle\":48736,\"ĠRunes\":48737,\"ĠBallistic\":48738,\"uders\":48739,\"Ġmodesty\":48740,\"ĠiPads\":48741,\"ĠEzekiel\":48742,\"YE\":48743,\"Ġstarship\":48744,\"Ġpowerfully\":48745,\"Ġperl\":48746,\"ĠShade\":48747,\"ĠQuart\":48748,\"ĠEEG\":48749,\"Ġfisherman\":48750,\"OSED\":48751,\"ĠTypical\":48752,\"dfx\":48753,\"Ġmeshes\":48754,\"Ġetched\":48755,\"worthiness\":48756,\"Ġtoppled\":48757,\"Ġ396\":48758,\"orius\":48759,\"Weiss\":48760,\"Ġmysql\":48761,\"ĠValhalla\":48762,\"ÙĴ\":48763,\"leasing\":48764,\"Ġrecomp\":48765,\"rapnel\":48766,\"Sel\":48767,\"043\":48768,\"Ġderailed\":48769,\"ĠGuides\":48770,\"IRT\":48771,\"Ġdehuman\":48772,\"ĠBrittany\":48773,\"\\\"))\":48774,\"Ġexclaim\":48775,\"Ġbalk\":48776,\"Ġ840\":48777,\"CLAIM\":48778,\"intel\":48779,\"LAB\":48780,\"Ġpegged\":48781,\"Ġastroph\":48782,\"smoking\":48783,\"Ġrigging\":48784,\"Ġfixation\":48785,\"Ġcatapult\":48786,\"inside\":48787,\"ĠCascade\":48788,\"ĠBolshevik\":48789,\"Gaza\":48790,\"Depth\":48791,\"Ġloudspe\":48792,\"Ġalmonds\":48793,\"meyer\":48794,\"leness\":48795,\"jen\":48796,\"fresh\":48797,\"Ġunbeaten\":48798,\"ĠSquid\":48799,\"ĠPresumably\":48800,\"Timer\":48801,\"BW\":48802,\"Ġrosters\":48803,\"Ġellipt\":48804,\"ĠHarriet\":48805,\"database\":48806,\"ĠMutual\":48807,\"ĠCommodore\":48808,\"uked\":48809,\"knife\":48810,\"ĠCOMMUN\":48811,\"hya\":48812,\"Ġmelts\":48813,\"archives\":48814,\"Ġratification\":48815,\"Ġmultiplying\":48816,\"Ġinteroper\":48817,\"Ġascert\":48818,\"wings\":48819,\"verting\":48820,\"ĠScorpion\":48821,\"aye\":48822,\"ĠPortsmouth\":48823,\"ĠMTA\":48824,\"nit\":48825,\"iazep\":48826,\"Ġquarantine\":48827,\"Ġslideshow\":48828,\"Ġcentimeters\":48829,\"Ġsynopsis\":48830,\"Ġspate\":48831,\"thirst\":48832,\"Ġnominating\":48833,\"ĠMelvin\":48834,\"Preview\":48835,\"Ġthrob\":48836,\"Ġgenerational\":48837,\"ĠRadius\":48838,\"restling\":48839,\"putable\":48840,\"awar\":48841,\"NECT\":48842,\"Ġunlawfully\":48843,\"ĠRevelations\":48844,\"Wikipedia\":48845,\"surv\":48846,\"Ġeyeing\":48847,\"ijn\":48848,\"ĠFW\":48849,\"Ġbrunt\":48850,\"Ġinterstellar\":48851,\"Ġclitor\":48852,\"ĠCroatian\":48853,\"ĠChic\":48854,\"eva\":48855,\"ĠDisapp\":48856,\"ĠAkin\":48857,\"ineries\":48858,\"dust\":48859,\"Interested\":48860,\"Ġgenesis\":48861,\"ĠEucl\":48862,\"Ã¶n\":48863,\"picking\":48864,\"Ġmutated\":48865,\"Ġdisapprove\":48866,\"ĠHDL\":48867,\"Ġ625\":48868,\"Ì¶\":48869,\"cancer\":48870,\"Ġsquats\":48871,\"Ġlevers\":48872,\"Discuss\":48873,\"=]\":48874,\"Dex\":48875,\"ĠVIDEOS\":48876,\"AUD\":48877,\"Ġtransact\":48878,\"ĠKinect\":48879,\"ĠKuala\":48880,\"ĠCyp\":48881,\"747\":48882,\"Ġshattering\":48883,\"Ġarsenic\":48884,\"ĠIntake\":48885,\"ĠAngelo\":48886,\"ĠQuit\":48887,\"ĠKhe\":48888,\"Ġ1893\":48889,\"Maker\":48890,\"029\":48891,\"ĠPainting\":48892,\"Disable\":48893,\"916\":48894,\"Ġanalges\":48895,\"Ġtactile\":48896,\"Ġprophes\":48897,\"Ġdiced\":48898,\"ĠTravels\":48899,\"ĠHeader\":48900,\"ĠClubs\":48901,\"Assistant\":48902,\"Ġincrim\":48903,\"Ġdips\":48904,\"Ġcrucifix\":48905,\"ĠShanahan\":48906,\"ĠInterpret\":48907,\"Ġ4090\":48908,\"alogy\":48909,\"abba\":48910,\"Ġsimulac\":48911,\"husband\":48912,\"SIM\":48913,\"Ġrecycle\":48914,\"ucer\":48915,\"edged\":48916,\"Ġrenaissance\":48917,\"ĠBombay\":48918,\"Catholic\":48919,\"ĠLINE\":48920,\"ĠClothing\":48921,\"reports\":48922,\"Ġplaus\":48923,\"Ġdag\":48924,\"ĠMace\":48925,\"ZI\":48926,\"Ġintruder\":48927,\"ĠVeterinary\":48928,\"gru\":48929,\"Ġsneaky\":48930,\"ĠSie\":48931,\"ĠCinnamon\":48932,\"POSE\":48933,\"Ġcourier\":48934,\"ĠCNS\":48935,\"Ġemancipation\":48936,\"sit\":48937,\"Ġplaythrough\":48938,\"ĠFacilities\":48939,\"virt\":48940,\"ĠGauntlet\":48941,\"Thompson\":48942,\"Ġunbelievably\":48943,\"Parameters\":48944,\"Ġstitching\":48945,\"igne\":48946,\"ĠTHESE\":48947,\"Privacy\":48948,\"Ġshenanigans\":48949,\"Ġvitri\":48950,\"ĠValid\":48951,\"591\":48952,\"Ń·\":48953,\"ĠPrototype\":48954,\"inka\":48955,\"SCP\":48956,\"ĠTid\":48957,\"èĪ\":48958,\"olded\":48959,\"Ġindividuality\":48960,\"Ġbarking\":48961,\"Ġmars\":48962,\"ĠWD\":48963,\"Ġ820\":48964,\"Ġtir\":48965,\"Ġslapping\":48966,\"Ġdisgruntled\":48967,\"ĠAngola\":48968,\"rius\":48969,\"ĠTornado\":48970,\"ĠThurs\":48971,\"Ġcaptcha\":48972,\"Ġangst\":48973,\"ĠPog\":48974,\"ĠAssassins\":48975,\"ĠAdidas\":48976,\"Ġjoyful\":48977,\"Ġwhining\":48978,\"Emergency\":48979,\"Ġphosphorus\":48980,\"Ġattrition\":48981,\"ophon\":48982,\"ĠTimberwolves\":48983,\"ĠJah\":48984,\"ĠBringing\":48985,\"ĠWad\":48986,\"ĠEnsure\":48987,\"ohl\":48988,\"ĠXie\":48989,\"ommel\":48990,\"cmp\":48991,\"Ġzipper\":48992,\"Ġrelat\":48993,\"ĠCorridor\":48994,\"milo\":48995,\"TING\":48996,\"Avg\":48997,\"Ġcropped\":48998,\"]}\":48999,\"Ġraged\":49000,\"ĠLumpur\":49001,\"ĠGuerrero\":49002,\"ourke\":49003,\"Nut\":49004,\"Ġoffsets\":49005,\"oglu\":49006,\"drm\":49007,\"Ġmortals\":49008,\"latable\":49009,\"Ġdismissive\":49010,\"ä¸ī\":49011,\"Ġthroats\":49012,\"Ġchipset\":49013,\"ĠSpotlight\":49014,\"Catalog\":49015,\"artist\":49016,\"Gb\":49017,\"Ġchilly\":49018,\"Ġstoked\":49019,\"Ġ374\":49020,\"Ward\":49021,\"Latin\":49022,\"Ġfiasco\":49023,\"Ġbleach\":49024,\"Ġbrav\":49025,\"Enhanced\":49026,\"Ġinoc\":49027,\"ĠFiorina\":49028,\"_>\":49029,\"Ġleukemia\":49030,\"Ġeluc\":49031,\"Ġannouncer\":49032,\"ĠLithuan\":49033,\"ĠArmageddon\":49034,\"åĩ\":49035,\"Lenin\":49036,\"ĠRuk\":49037,\"Ġpepp\":49038,\"ĠRomantic\":49039,\"ĠPIT\":49040,\"ĠInterstellar\":49041,\"ĠAtkinson\":49042,\"Raid\":49043,\"Js\":49044,\"Goal\":49045,\"Course\":49046,\"Ġvanishing\":49047,\"esley\":49048,\"ĠRounds\":49049,\"Elsa\":49050,\"593\":49051,\"Ġredundancy\":49052,\"ĠSTAND\":49053,\"Ġprophetic\":49054,\"Ġhabitable\":49055,\"ryu\":49056,\"Ġfaintly\":49057,\"MODE\":49058,\"Ġflanked\":49059,\"IRC\":49060,\"Awesome\":49061,\"Ġspurious\":49062,\"ĠZah\":49063,\"ĠMSG\":49064,\"Ġshading\":49065,\"Ġmotivational\":49066,\"ĠSantana\":49067,\"ĠSPR\":49068,\"Ġexcruciating\":49069,\"omial\":49070,\"ĠMiko\":49071,\"ĠLeopard\":49072,\"Abyss\":49073,\"Ġ[|\":49074,\"dirty\":49075,\"Ġbaths\":49076,\"Ġdemoral\":49077,\"andre\":49078,\"PB\":49079,\"Ġunification\":49080,\"Ġsacrament\":49081,\"Ġ[&\":49082,\"Ġpriceless\":49083,\"Ġgelatin\":49084,\"Ġemanating\":49085,\"ĠAllaah\":49086,\"986\":49087,\"Ġoutburst\":49088,\"Ġeras\":49089,\"ĠXVI\":49090,\"ĠSPI\":49091,\"Ott\":49092,\"ĠLazarus\":49093,\"PLIED\":49094,\"Flying\":49095,\"blogs\":49096,\"Wisconsin\":49097,\"Raven\":49098,\"Ġrebate\":49099,\"Ġcreeps\":49100,\"ĠSpan\":49101,\"ĠPainter\":49102,\"ĠKira\":49103,\"ĠAmos\":49104,\"ĠCorvette\":49105,\"Consumer\":49106,\"ĠRecover\":49107,\"cki\":49108,\"Ġpesky\":49109,\"ĠInvention\":49110,\"Companies\":49111,\"Ġchallengers\":49112,\"ademic\":49113,\"ĠUkrainians\":49114,\"ĠNeurolog\":49115,\"ĠForsaken\":49116,\"Ġentrants\":49117,\"Ġembattled\":49118,\"Ġdefunct\":49119,\"ĠGlacier\":49120,\"Ġpoisons\":49121,\"ĠHorses\":49122,\"makes\":49123,\"ĠDirt\":49124,\"Ġ423\":49125,\"hhh\":49126,\"ĠTransformation\":49127,\"QUIRE\":49128,\"..................\":49129,\"Ġtraveller\":49130,\"ĠSexy\":49131,\"ĠKern\":49132,\"ipolar\":49133,\"Ġransomware\":49134,\"oooooooooooooooo\":49135,\"Ec\":49136,\"ruby\":49137,\"Professional\":49138,\"ĠOutbreak\":49139,\"argument\":49140,\"Grey\":49141,\"ĠFifa\":49142,\"ĠCHO\":49143,\"ĠFORM\":49144,\"ĠAmtrak\":49145,\"-[\":49146,\"Ġcradle\":49147,\"Ġantioxidants\":49148,\"ãģ®å®\":49149,\"736\":49150,\"ĠNASL\":49151,\"ĠContributions\":49152,\"Indiana\":49153,\"ĠSTEP\":49154,\"CSS\":49155,\"Ġsalient\":49156,\"Ġallocations\":49157,\"yrights\":49158,\"Ġmashed\":49159,\"ĠCutter\":49160,\"Sexual\":49161,\"Ġpounded\":49162,\"Ġfanbase\":49163,\"Ġcasc\":49164,\"ĠTransparency\":49165,\"Ġanalytic\":49166,\"ĠSummoner\":49167,\"×ŀ\":49168,\"ĠADC\":49169,\"detail\":49170,\"Ġvanquished\":49171,\"Ġcrabs\":49172,\"arie\":49173,\"Destroy\":49174,\"ĠSack\":49175,\"Ġtransistor\":49176,\"Alabama\":49177,\"ĠKoen\":49178,\"ĠFisheries\":49179,\"cone\":49180,\"Ġannexed\":49181,\"ĠMGM\":49182,\"esa\":49183,\"Ġfaked\":49184,\"ĠCongratulations\":49185,\"Ġhindered\":49186,\"Ġcorrectional\":49187,\"ĠITV\":49188,\"leeve\":49189,\"Ġinappropriately\":49190,\"licks\":49191,\"Ġtrespass\":49192,\"Ġpaws\":49193,\"Ġnegotiator\":49194,\"ĠChristensen\":49195,\"limits\":49196,\"ĠDianne\":49197,\"Ġelegance\":49198,\"ĠContracts\":49199,\"anke\":49200,\"Obj\":49201,\"Ġvigilance\":49202,\"Ġcastles\":49203,\"ĠNAD\":49204,\"ĠHolo\":49205,\"Ġemphatically\":49206,\"ĠTitus\":49207,\"ĠServing\":49208,\"ĠRichie\":49209,\"ĠPigs\":49210,\"568\":49211,\"Ġanimosity\":49212,\"ĠAttributes\":49213,\"ĠUriel\":49214,\"MQ\":49215,\"myra\":49216,\"ĠApplicant\":49217,\"Ġpsychiatrists\":49218,\"ĠVij\":49219,\"ĠAbby\":49220,\"agree\":49221,\"Push\":49222,\"ĠkWh\":49223,\"hiba\":49224,\"Ġincite\":49225,\"ĠWeasley\":49226,\"ĠTaxi\":49227,\"ministic\":49228,\"hyper\":49229,\"ĠFarn\":49230,\"Ġ601\":49231,\"ĠNationwide\":49232,\"Fake\":49233,\"952\":49234,\"Ġmaize\":49235,\"Ġinteracted\":49236,\"Ġtransitioned\":49237,\"Ġparasitic\":49238,\"Ġharmonic\":49239,\"Ġdecaying\":49240,\"Ġbaseless\":49241,\"nsics\":49242,\"Ġtranspired\":49243,\"Ġabundantly\":49244,\"ĠForensic\":49245,\"Ġtreadmill\":49246,\"ĠJav\":49247,\"aband\":49248,\"Ġsshd\":49249,\"Ġfrontman\":49250,\"ĠJakarta\":49251,\"oller\":49252,\"drops\":49253,\"ĠSERVICES\":49254,\"romptu\":49255,\"ophical\":49256,\"hospital\":49257,\"bledon\":49258,\"645\":49259,\"Ġmidrange\":49260,\"ĠEVENT\":49261,\"culated\":49262,\"rawled\":49263,\"Ġperched\":49264,\"Ġoverboard\":49265,\"ĠPeel\":49266,\"ĠPwr\":49267,\"ĠCarth\":49268,\"ĠCOMPLE\":49269,\"coe\":49270,\"shall\":49271,\"Ġdeterrence\":49272,\"METHOD\":49273,\"ĠAbsent\":49274,\"MEN\":49275,\"Ġsill\":49276,\"ĠLEVEL\":49277,\"York\":49278,\"Ġsinners\":49279,\"ĠOPEC\":49280,\"ĠNur\":49281,\"ĠDesigns\":49282,\"selection\":49283,\"Ġunworthy\":49284,\"CHA\":49285,\"Ġstrengthens\":49286,\"883\":49287,\"edly\":49288,\"Ġslicing\":49289,\"Ġmalnutrition\":49290,\"Ġfilmmaking\":49291,\"ĠPolk\":49292,\"urated\":49293,\"Ġ421\":49294,\"breakers\":49295,\"!'\\\"\":49296,\"Ġwetlands\":49297,\"ĠDiscrimination\":49298,\"Ġallowable\":49299,\"Ġsteered\":49300,\"ĠSicily\":49301,\"SAM\":49302,\"Ġmustache\":49303,\"Ġmids\":49304,\"Ġclipped\":49305,\"Ġcirculate\":49306,\"Ġbrittle\":49307,\"ĠBuildings\":49308,\"raised\":49309,\"ĠRoundup\":49310,\"Ġwealthier\":49311,\"Ġoverwrite\":49312,\"Ġoverpowered\":49313,\"ĠGerrard\":49314,\"sites\":49315,\"PDATED\":49316,\"Ġacutely\":49317,\"ĠGamble\":49318,\"Ġpim\":49319,\"ĠKus\":49320,\"Typically\":49321,\"Deploy\":49322,\"ĠMoroccan\":49323,\"potion\":49324,\"combe\":49325,\"Ġvigilante\":49326,\"Ġ363\":49327,\"Stew\":49328,\"ĠBagg\":49329,\"Ġresided\":49330,\"ĠSpo\":49331,\"Ġremnant\":49332,\"Ġemptiness\":49333,\"brainer\":49334,\"Ġoutpatient\":49335,\"priority\":49336,\"Ġleptin\":49337,\"ĠPayton\":49338,\"ĠGleaming\":49339,\"ĠShed\":49340,\"ĠPolo\":49341,\"ĠMormonism\":49342,\"restricted\":49343,\"arlane\":49344,\"wx\":49345,\"Ġcreatine\":49346,\"ĠAnon\":49347,\"ĠSTUD\":49348,\"ĠJUL\":49349,\"ĠTee\":49350,\"528\":49351,\"089\":49352,\"Ġhatched\":49353,\"Dispatch\":49354,\"ĠComposite\":49355,\"Ġ451\":49356,\"puff\":49357,\"ĠXCOM\":49358,\"ĠOrn\":49359,\"ĠTHANK\":49360,\"ENDED\":49361,\"ĠAsheville\":49362,\"ĠÃľ\":49363,\"Ġmango\":49364,\"ĠSlightly\":49365,\"worldly\":49366,\"ĠWander\":49367,\"ĠExpand\":49368,\"ĠChr\":49369,\"Mist\":49370,\"Ġorthodoxy\":49371,\"ĠUNESCO\":49372,\"regate\":49373,\"Elsewhere\":49374,\"kie\":49375,\"irled\":49376,\"Ġtopple\":49377,\"Ġadoptive\":49378,\"ĠLegs\":49379,\"dress\":49380,\"ĠSagan\":49381,\"bare\":49382,\"ĠGlou\":49383,\"Crunch\":49384,\"Ġhelpers\":49385,\"Ġchronically\":49386,\"ĠHuma\":49387,\"10000\":49388,\"Ġaccommodating\":49389,\"äºĶ\":49390,\"Ġwrinkles\":49391,\"Ġdodged\":49392,\"fourth\":49393,\"Ġprecon\":49394,\"Ġcompressor\":49395,\"ĠKare\":49396,\"Ġevict\":49397,\"ĠWarwick\":49398,\"imar\":49399,\"Ġmodernization\":49400,\"Ġbandwagon\":49401,\"Ġrefuted\":49402,\"Ġnetted\":49403,\"ĠNaples\":49404,\"ĠGenie\":49405,\"perors\":49406,\"Ġfielded\":49407,\"Ġdere\":49408,\"ĠParables\":49409,\"lees\":49410,\"Ġtrout\":49411,\"aspers\":49412,\"Ġnihil\":49413,\"Ġhappiest\":49414,\"Ġfloppy\":49415,\"ĠLoft\":49416,\"ĠHeard\":49417,\"Ġunison\":49418,\"Ġlug\":49419,\"ĠRedmond\":49420,\"classic\":49421,\"Supporters\":49422,\"SHIP\":49423,\"GMT\":49424,\"Ġfuelled\":49425,\"çĲ\":49426,\"Ġdd\":49427,\"ĠEminem\":49428,\"Ġ1897\":49429,\"NYSE\":49430,\"Ġsecretaries\":49431,\"ĠFIA\":49432,\"ĠCanaveral\":49433,\"Favorite\":49434,\"Ġpomp\":49435,\"Ġdetainee\":49436,\"ership\":49437,\"aimon\":49438,\"iour\":49439,\"ĠApex\":49440,\"Ġplantations\":49441,\"amia\":49442,\"acion\":49443,\"Rust\":49444,\"Ġtowed\":49445,\"ĠTruly\":49446,\"577\":49447,\"Ġsheltered\":49448,\"rider\":49449,\"Wo\":49450,\"Ġlair\":49451,\"ĠIntelligent\":49452,\"improve\":49453,\"matically\":49454,\"Ġetiquette\":49455,\"adra\":49456,\"allo\":49457,\"ĠJuno\":49458,\"anything\":49459,\"ĠStruggle\":49460,\"ĠPredict\":49461,\"ĠGrimes\":49462,\"ĠAMERICA\":49463,\"ctx\":49464,\"ĠSituation\":49465,\"WOOD\":49466,\"Ġsoluble\":49467,\"meier\":49468,\"Ġintolerable\":49469,\"angering\":49470,\"Ġuninterrupted\":49471,\"Ġtooltip\":49472,\"Ġinterrogated\":49473,\"Ġgunned\":49474,\"ĠSneak\":49475,\"æŃ¦\":49476,\"Ġtether\":49477,\"Ġcrumble\":49478,\"Lens\":49479,\"Ġclustered\":49480,\"ĠSyl\":49481,\"ĠHasan\":49482,\"Ġdystopian\":49483,\"wana\":49484,\"Ġjoystick\":49485,\"ĠThib\":49486,\"ammu\":49487,\"Tomorrow\":49488,\"546\":49489,\"Ġovercame\":49490,\"Ġminimized\":49491,\"ceptor\":49492,\"Runner\":49493,\"ENGTH\":49494,\"ĠBrenda\":49495,\"ĠAchievements\":49496,\"Ġtorches\":49497,\"Ġrapport\":49498,\"ĠInvestigator\":49499,\"ĠHandling\":49500,\"relation\":49501,\"grey\":49502,\"815\":49503,\"Ġkcal\":49504,\"ĠCommands\":49505,\"dq\":49506,\"Ġcurls\":49507,\"Ġbearer\":49508,\"Ġcynicism\":49509,\"itri\":49510,\"ĠUseful\":49511,\"Bee\":49512,\"DCS\":49513,\"Ġabras\":49514,\"Pract\":49515,\"BILITIES\":49516,\"712\":49517,\"Ġdebugger\":49518,\"Ġdebtor\":49519,\"ĠLia\":49520,\"ĠKers\":49521,\"Ġexacerbate\":49522,\"ĠStacy\":49523,\"ĠBland\":49524,\"ĠScenes\":49525,\"Ġbranching\":49526,\"âĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪâĸĪ\":49527,\"apeake\":49528,\"Ġsalsa\":49529,\"Ġmishand\":49530,\"ĠKonami\":49531,\"ĠNib\":49532,\"Ġanecdote\":49533,\"Ġagreeable\":49534,\"Ïī\":49535,\"ĠNathaniel\":49536,\"ĠHeisman\":49537,\"ĠBeware\":49538,\"Ġ1886\":49539,\"spective\":49540,\"691\":49541,\"522\":49542,\"Ġinhibits\":49543,\"Ġhashing\":49544,\"Ġ1889\":49545,\"å°Ĩ\":49546,\"vich\":49547,\"Pure\":49548,\"Ġsolidly\":49549,\"Ġaspirin\":49550,\"imaru\":49551,\"Ġstreetcar\":49552,\"ĠUCS\":49553,\"ĠJudd\":49554,\"Ġflashbacks\":49555,\"pins\":49556,\"Ġ1440\":49557,\"ĠUNHCR\":49558,\"ĠSymptoms\":49559,\"TIT\":49560,\"538\":49561,\"Fra\":49562,\"%);\":49563,\"Ġooz\":49564,\"Ġcurfew\":49565,\"Ġcalmed\":49566,\"Ġparticipates\":49567,\"TeX\":49568,\"Ġnonsensical\":49569,\"Ġfullback\":49570,\"ĠDeL\":49571,\"monkey\":49572,\"hari\":49573,\"Ġmetabolites\":49574,\"Ġlooted\":49575,\"ĠALWAYS\":49576,\"ĠBCC\":49577,\"Lt\":49578,\"ochet\":49579,\"Bone\":49580,\"Ġvetoed\":49581,\"Ġgcc\":49582,\"ĠCLICK\":49583,\"Ġ1888\":49584,\"saf\":49585,\"Ġstiffness\":49586,\"Ġlowly\":49587,\"ĠGeh\":49588,\"verson\":49589,\"orset\":49590,\"Ġunforeseen\":49591,\"Ġanesthesia\":49592,\"ĠOptical\":49593,\"Ġreconstructed\":49594,\"ĠTup\":49595,\"shows\":49596,\"NEWS\":49597,\"ĠNewspaper\":49598,\"ĠASA\":49599,\"tera\":49600,\"Numbers\":49601,\"Ġinexplicable\":49602,\"×ĳ\":49603,\"Ġhardness\":49604,\"untarily\":49605,\"ĠAcer\":49606,\"gradient\":49607,\"ARDIS\":49608,\"Ġwoodland\":49609,\"Ġmetaphors\":49610,\"ĠWembley\":49611,\"ĠPavel\":49612,\"philis\":49613,\"Ġrewriting\":49614,\"Ġperceptual\":49615,\"Ġ1070\":49616,\"worms\":49617,\"ĠDowns\":49618,\"Ġunsurprisingly\":49619,\"Ġtagging\":49620,\"flame\":49621,\"Ġlitres\":49622,\"Ġbounces\":49623,\"ĠBabe\":49624,\"shut\":49625,\"Ġoverdoses\":49626,\"ĠSheila\":49627,\"ĠChau\":49628,\"ĠBless\":49629,\"Capture\":49630,\"ĠSignificant\":49631,\"ĠScion\":49632,\"Ġ389\":49633,\"ĠMcH\":49634,\"ĠTitanium\":49635,\"ĠMeal\":49636,\"ameda\":49637,\"agents\":49638,\"aggressive\":49639,\"Billy\":49640,\"763\":49641,\"ĠSaying\":49642,\"DERR\":49643,\"itone\":49644,\"Collins\":49645,\"Bound\":49646,\"Ġbolted\":49647,\"ĠDMCA\":49648,\"953\":49649,\"Ġuniqueness\":49650,\"Ġepigen\":49651,\"unci\":49652,\"antam\":49653,\"Ġreckoning\":49654,\"chairs\":49655,\"OGR\":49656,\"ĠSenegal\":49657,\"Ġ1862\":49658,\"relevant\":49659,\"ĠÂ¯\":49660,\"Ġpharmacies\":49661,\"ĠGeral\":49662,\"vier\":49663,\"Yan\":49664,\"ORPG\":49665,\"Ġrabid\":49666,\"bending\":49667,\"ĠUNITED\":49668,\"Ġ465\":49669,\"Assembly\":49670,\"Ġweep\":49671,\"Ġbehest\":49672,\"ĠMothers\":49673,\"ĠJace\":49674,\"hid\":49675,\"Ġwhirlwind\":49676,\"ĠUNIVERS\":49677,\"Ġutopian\":49678,\"Ġkidnap\":49679,\"Philipp\":49680,\"Kin\":49681,\"893\":49682,\"Ġlivestream\":49683,\"ĠMISS\":49684,\"Ġsubversive\":49685,\"ĠTechniques\":49686,\"ĠJUSTICE\":49687,\"ĠBASE\":49688,\"Ġ387\":49689,\"Ġassailants\":49690,\"ĠHardcore\":49691,\"Ġsprinkled\":49692,\"ĠPse\":49693,\"éļ\":49694,\"printed\":49695,\"ĠHau\":49696,\"ORGE\":49697,\"ĠTOUR\":49698,\"Ġlaced\":49699,\"Ġitch\":49700,\"Giving\":49701,\"Ġported\":49702,\"781\":49703,\"////////////////////////////////\":49704,\"breeding\":49705,\"Ġlogger\":49706,\"ĠHOL\":49707,\"innie\":49708,\"Firstly\":49709,\"Ġembryonic\":49710,\"Ġdelegated\":49711,\"pai\":49712,\"OIL\":49713,\"Ġcentrally\":49714,\"ĠRx\":49715,\"ĠScouting\":49716,\"Dutch\":49717,\"Ġhereditary\":49718,\"ĠCruiser\":49719,\"sat\":49720,\"529\":49721,\"ĠMarriott\":49722,\"othermal\":49723,\"Ġprohibitions\":49724,\"Earn\":49725,\"ĠStab\":49726,\"ĠColleges\":49727,\"ĠBelief\":49728,\"stretched\":49729,\"ĠLH\":49730,\"ĠEntityItem\":49731,\"CIA\":49732,\"Ġunrem\":49733,\"Ġlaureate\":49734,\"Ġdenominations\":49735,\"summary\":49736,\"hler\":49737,\"Spect\":49738,\"ĠKlaus\":49739,\"ĠBeans\":49740,\"Ġinsur\":49741,\"ĠPAX\":49742,\"Ġfielder\":49743,\"ĠVet\":49744,\"ĠSparrow\":49745,\"zie\":49746,\"ĠSQ\":49747,\"ĠMondays\":49748,\"ĠOffline\":49749,\"ĠLerner\":49750,\"ĠExtensions\":49751,\"Ireland\":49752,\"Ġpatronage\":49753,\"Ġcontrasted\":49754,\"ĠMania\":49755,\"hirt\":49756,\"Moscow\":49757,\"Ġcondemns\":49758,\"ĠAnge\":49759,\"Ġcomposing\":49760,\"ĠPepe\":49761,\"ĠPaddock\":49762,\"Ġheterogeneity\":49763,\"Ġideologically\":49764,\"Ġfishes\":49765,\"Ġcursing\":49766,\"ĠRutherford\":49767,\"ĠFloating\":49768,\"ĠAmelia\":49769,\"Tea\":49770,\"Synopsis\":49771,\"Ġstunts\":49772,\"Ġbead\":49773,\"Ġstocking\":49774,\"ĠMILL\":49775,\"obook\":49776,\"massive\":49777,\"\\\\<\":49778,\"Ġhump\":49779,\"ĠPreferences\":49780,\"EngineDebug\":49781,\"geist\":49782,\"ĠNieto\":49783,\"omever\":49784,\"ishy\":49785,\"evaluate\":49786,\"colonial\":49787,\"Alternative\":49788,\"ĠGoPro\":49789,\"ĠVortex\":49790,\"ĠNETWORK\":49791,\"ansky\":49792,\"Secure\":49793,\"ĠThrust\":49794,\"Snake\":49795,\"Ġparcels\":49796,\"Ġsamurai\":49797,\"Ġactresses\":49798,\"Nap\":49799,\"MF\":49800,\"iferation\":49801,\"Beer\":49802,\"523\":49803,\"ĠIly\":49804,\"ointment\":49805,\"Ping\":49806,\"Ġstriped\":49807,\"ĠMellon\":49808,\"ossession\":49809,\"Ġneutron\":49810,\"endium\":49811,\"Ġaph\":49812,\"ĠFlavoring\":49813,\"Ġ383\":49814,\"Ġresponsiveness\":49815,\"ĠJindal\":49816,\"ĠHitchcock\":49817,\"Denver\":49818,\"ĠDRAGON\":49819,\"smanship\":49820,\"ĠDupl\":49821,\"Ġsly\":49822,\"Ġwebcam\":49823,\"ĠTwain\":49824,\"ĠDarling\":49825,\"iliate\":49826,\"consumer\":49827,\"DIT\":49828,\"Ġnamesake\":49829,\"Ġunorthodox\":49830,\"Ġfuner\":49831,\"ĠPLoS\":49832,\"ĠCONTROL\":49833,\"ozyg\":49834,\"oglobin\":49835,\"FACE\":49836,\"ERG\":49837,\"ĠDia\":49838,\"ĠFiesta\":49839,\"cele\":49840,\"034\":49841,\"Ġenclave\":49842,\"âĸ¬âĸ¬\":49843,\"onement\":49844,\"alist\":49845,\"Mand\":49846,\"Ġhomegrown\":49847,\"ĠFancy\":49848,\"Ġconceptions\":49849,\"ĠContains\":49850,\"ureen\":49851,\"Ġreiterate\":49852,\"Ġmeager\":49853,\"Ġinstallments\":49854,\"Spawn\":49855,\"627\":49856,\"Ġphotoc\":49857,\"ĠCabrera\":49858,\"ĠRosenthal\":49859,\"ĠLansing\":49860,\"isner\":49861,\"Ġinvests\":49862,\"ĠUFOs\":49863,\"EXP\":49864,\"Hardware\":49865,\"Ġtragically\":49866,\"Ġconcedes\":49867,\"ieft\":49868,\"cham\":49869,\"borgh\":49870,\"ĠSchr\":49871,\"ĠMelanie\":49872,\"ĠHoy\":49873,\"Ġvisitation\":49874,\"Ġidiosyncr\":49875,\"Ġfractions\":49876,\"Ġforeskin\":49877,\"obos\":49878,\"Ġpoaching\":49879,\"ĠVIEW\":49880,\"Ġstimulates\":49881,\"ĠGork\":49882,\"canon\":49883,\"MIC\":49884,\"ĠNemesis\":49885,\"ĠIndra\":49886,\"ĠDMV\":49887,\"Ġ529\":49888,\"Ġinspecting\":49889,\"Ġgrandma\":49890,\"ĠWhedon\":49891,\"ĠShant\":49892,\"ĠPurg\":49893,\"ikan\":49894,\"ĠTeg\":49895,\"ĠCLR\":49896,\"zac\":49897,\"Victoria\":49898,\"ĠVerify\":49899,\"ionics\":49900,\"Ġpartying\":49901,\"ĠMou\":49902,\"colour\":49903,\"Ġtestimonies\":49904,\"lations\":49905,\"Ġpressuring\":49906,\"hiro\":49907,\"acers\":49908,\"Ġfid\":49909,\"angler\":49910,\"ĠCSI\":49911,\"Ġhereafter\":49912,\"Ġdissidents\":49913,\"reporting\":49914,\"iphany\":49915,\"chev\":49916,\"Ġsolitude\":49917,\"Ġlobe\":49918,\"Ġindis\":49919,\"Ġcredential\":49920,\"recent\":49921,\"adult\":49922,\"ĠNirvana\":49923,\"ĠFranchise\":49924,\"Layer\":49925,\"Hyp\":49926,\"ĠBerkshire\":49927,\"Ġwills\":49928,\"tif\":49929,\"Ġtotem\":49930,\"ĠJudah\":49931,\"repair\":49932,\"Instant\":49933,\"548\":49934,\"Ġembassies\":49935,\"Ġbottleneck\":49936,\"Ġbount\":49937,\"Ġtypew\":49938,\"ĠAlvin\":49939,\"jing\":49940,\"imilar\":49941,\"Rush\":49942,\"Ġbrim\":49943,\"ĠHELP\":49944,\"Aim\":49945,\"]'\":49946,\"Ġpassively\":49947,\"Ġbounded\":49948,\"ĠRated\":49949,\"Ġcriminality\":49950,\"Ġbiomark\":49951,\"Ġdispatcher\":49952,\"ĠTowards\":49953,\"Ġ+++\":49954,\"righteous\":49955,\"frog\":49956,\"ĠPanc\":49957,\"Carter\":49958,\"032\":49959,\"æ©Ł\":49960,\"Ġultraviolet\":49961,\"ĠLicensed\":49962,\"ĠTata\":49963,\"ĠBlessing\":49964,\"ĠGAM\":49965,\"Ġchemically\":49966,\"ĠSeaf\":49967,\"ĠRELE\":49968,\"ĠMercenary\":49969,\"capitalist\":49970,\"Ġformulations\":49971,\"Ġannihilation\":49972,\"ĠVerb\":49973,\"ĠArgon\":49974,\"Ġunloaded\":49975,\"Ġmorphed\":49976,\"Ġconquering\":49977,\"backer\":49978,\"IELD\":49979,\"Ġthefts\":49980,\"Ġfrontrunner\":49981,\"ĠRoyale\":49982,\"ĠFundamental\":49983,\"elight\":49984,\"Chip\":49985,\"necessary\":49986,\"ayn\":49987,\"ĠSlip\":49988,\"Ġ448\":49989,\"cerned\":49990,\"Pause\":49991,\"Ġshockingly\":49992,\"ĠABV\":49993,\"Ġcomposure\":49994,\"733\":49995,\"ĠMotorsport\":49996,\"ahime\":49997,\"Murray\":49998,\"Mach\":49999,\"Ġgrids\":50000,\"Ġdebian\":50001,\"Ġfurthermore\":50002,\"Ġdexterity\":50003,\"ĠCollections\":50004,\"oslov\":50005,\"ilage\":50006,\"bj\":50007,\"ĠMonteneg\":50008,\"ĠstrutConnector\":50009,\"Ġmassacres\":50010,\"Ġbriefs\":50011,\"fetched\":50012,\"uvian\":50013,\"olition\":50014,\"Failure\":50015,\"emonic\":50016,\"Ġflared\":50017,\"Ġclaimant\":50018,\"Ġcures\":50019,\"Ġgiveaways\":50020,\"ĠSubstance\":50021,\"alions\":50022,\"Ġcringe\":50023,\"ĠKul\":50024,\"Ġaristocracy\":50025,\"ĠUlster\":50026,\"olated\":50027,\"housing\":50028,\"ĠMIS\":50029,\"Ġglared\":50030,\"ĠWilhelm\":50031,\"needs\":50032,\"lambda\":50033,\"builders\":50034,\"ĠVIS\":50035,\"Ġradiator\":50036,\"ĠGhostbusters\":50037,\"Ġ436\":50038,\"actual\":50039,\"Ġherds\":50040,\"Ã§a\":50041,\"watching\":50042,\"Ġcountering\":50043,\"Charge\":50044,\"Ġcharred\":50045,\"Ġwarheads\":50046,\"Ġiodine\":50047,\"ĠMacy\":50048,\"041\":50049,\"Ġdepartures\":50050,\"ĠSins\":50051,\"Ġdyed\":50052,\"ĠConcepts\":50053,\"gado\":50054,\"713\":50055,\"Ġquotations\":50056,\"Ġgist\":50057,\"ĠChristy\":50058,\"Ġantigen\":50059,\"ĠHemp\":50060,\"ĠDrawn\":50061,\"ĠBarg\":50062,\"ezvous\":50063,\"Ġpaternity\":50064,\"Ġardu\":50065,\"ĠAnchorage\":50066,\"ĠRik\":50067,\"Ġoverloaded\":50068,\"ĠUsername\":50069,\"ĠTammy\":50070,\"ĠNau\":50071,\"ĠCellular\":50072,\"Ġwaning\":50073,\"Ġrodent\":50074,\"ĠWorcester\":50075,\"ilts\":50076,\"ĠTad\":50077,\"Ġdwellings\":50078,\"Ġbullish\":50079,\"431\":50080,\"Ġretaliate\":50081,\"Ġmigraine\":50082,\"ĠChevron\":50083,\"CHECK\":50084,\"Ġdonkey\":50085,\"crim\":50086,\"SPA\":50087,\"ĠAnalog\":50088,\"Ġmarquee\":50089,\"ĠHaas\":50090,\"Bir\":50091,\"ĠGDDR\":50092,\"ĠDownloads\":50093,\"Ġwillpower\":50094,\"ĠForth\":50095,\"ĠRecorded\":50096,\"Ġimpossibility\":50097,\"ĠLogged\":50098,\"ĠFranks\":50099,\"ĠRatt\":50100,\"initions\":50101,\"Ġcleaners\":50102,\"Ġsorely\":50103,\"Ġflickering\":50104,\"ĠExamination\":50105,\"catching\":50106,\"alloween\":50107,\"Msg\":50108,\"Ġdunno\":50109,\"Fa\":50110,\"Ġdysph\":50111,\"crazy\":50112,\".''.\":50113,\"Ġmainline\":50114,\"Ġcs\":50115,\"Ġptr\":50116,\"ĠWally\":50117,\"igun\":50118,\"951\":50119,\"ĠBigfoot\":50120,\"fights\":50121,\"Ġretrieving\":50122,\"Jr\":50123,\"Ġduplication\":50124,\"ĠExplan\":50125,\"Ġrelational\":50126,\"Ġquaint\":50127,\"Ġbiscuits\":50128,\"Ġado\":50129,\"Ġshudder\":50130,\"Ġantidote\":50131,\"blooded\":50132,\"ksh\":50133,\"Ġsauces\":50134,\"Ġreinvest\":50135,\"Ġdispensary\":50136,\"ĠDiver\":50137,\"Ġ9000\":50138,\"student\":50139,\"Ġinsepar\":50140,\"escap\":50141,\"Ġtoddlers\":50142,\"ĠGPIO\":50143,\"ĠAssignment\":50144,\"headers\":50145,\"Ġlackluster\":50146,\"Ġaback\":50147,\"956\":50148,\"Ġtoolbar\":50149,\"745\":50150,\"Ġoust\":50151,\"Ġcontemplation\":50152,\"ĠPRESIDENT\":50153,\"Ġ458\":50154,\"======\":50155,\"Ġguaranteeing\":50156,\"ĠHeist\":50157,\"ĠCannes\":50158,\"Ļ½\":50159,\"Ġcollaborator\":50160,\"ĠAmp\":50161,\"Ġgou\":50162,\"ĠSHALL\":50163,\"stories\":50164,\"783\":50165,\"Ġmobilized\":50166,\"Ġbrood\":50167,\"ĠLU\":50168,\"ĠðŁĳ\":50169,\"Ġrefin\":50170,\"ĠAnthropology\":50171,\"vind\":50172,\"illi\":50173,\"Ġwarranties\":50174,\"ĠBabel\":50175,\"Ġswath\":50176,\"Ġcaches\":50177,\"Ġantagonists\":50178,\"artifacts\":50179,\"Ġhotly\":50180,\"ĠStarts\":50181,\"ĠGÃ¶\":50182,\"zag\":50183,\"!!!!!\":50184,\"Ġscourge\":50185,\"Ġconspiring\":50186,\"ruits\":50187,\"reverse\":50188,\"ĠSheen\":50189,\"ĠJesuit\":50190,\"ĠGiovanni\":50191,\"adies\":50192,\"Ġbuttocks\":50193,\"earcher\":50194,\"acan\":50195,\"Ġvolleyball\":50196,\"Ġshrouded\":50197,\"Ġscoreboard\":50198,\"bats\":50199,\"ĠIPM\":50200,\"Ġasses\":50201,\"Ġderegulation\":50202,\"ĠTelegram\":50203,\"ĠReboot\":50204,\"Ġ7000\":50205,\"ĠCanary\":50206,\"Ġkernels\":50207,\"ĠFranÃ§ois\":50208,\"ĠDuff\":50209,\"ĠPon\":50210,\"ĠLeica\":50211,\"ĠGarmin\":50212,\"Ġorphans\":50213,\"ĠClaudia\":50214,\"Ġcalendars\":50215,\"ĠLeilan\":50216,\"ento\":50217,\"Rocket\":50218,\"Ġbrunch\":50219,\"ĠHawking\":50220,\"ainers\":50221,\"Ġsensibilities\":50222,\"ĠkW\":50223,\"ĠKand\":50224,\"Ġreclaimed\":50225,\"Ġinterestingly\":50226,\"×©\":50227,\"romy\":50228,\"JM\":50229,\"ĠEnhancement\":50230,\"bush\":50231,\"Skip\":50232,\"Ġrappers\":50233,\"Ġgazing\":50234,\"pedia\":50235,\"athlon\":50236,\"Revolution\":50237,\"Ġsnipers\":50238,\"Ġreverted\":50239,\"Ġconglomerate\":50240,\"Terry\":50241,\"794\":50242,\"Ġharsher\":50243,\"Ġdesolate\":50244,\"ĠHitman\":50245,\"Commission\":50246,\"Ġ(/\":50247,\"âĢ¦.\\\"\":50248,\"Compar\":50249,\"Ġamplification\":50250,\"ominated\":50251,\"Ġregress\":50252,\"ĠCollider\":50253,\"Ġinformants\":50254,\"Ġgazed\":50255,\"<|endoftext|>\":50256},\"merges\":[\"Ġ t\",\"Ġ a\",\"h e\",\"i n\",\"r e\",\"o n\",\"Ġt he\",\"e r\",\"Ġ s\",\"a t\",\"Ġ w\",\"Ġ o\",\"e n\",\"Ġ c\",\"i t\",\"i s\",\"a n\",\"o r\",\"e s\",\"Ġ b\",\"e d\",\"Ġ f\",\"in g\",\"Ġ p\",\"o u\",\"Ġa n\",\"a l\",\"a r\",\"Ġt o\",\"Ġ m\",\"Ġo f\",\"Ġ in\",\"Ġ d\",\"Ġ h\",\"Ġan d\",\"i c\",\"a s\",\"l e\",\"Ġt h\",\"i on\",\"o m\",\"l l\",\"en t\",\"Ġ n\",\"Ġ l\",\"s t\",\"Ġ re\",\"v e\",\"Ġ e\",\"r o\",\"l y\",\"Ġb e\",\"Ġ g\",\"Ġ T\",\"c t\",\"Ġ S\",\"i d\",\"o t\",\"Ġ I\",\"u t\",\"e t\",\"Ġ A\",\"Ġ is\",\"Ġ on\",\"i m\",\"a m\",\"o w\",\"a y\",\"a d\",\"s e\",\"Ġth at\",\"Ġ C\",\"i g\",\"Ġf or\",\"a c\",\"Ġ y\",\"v er\",\"u r\",\"Ġ u\",\"l d\",\"Ġs t\",\"Ġ M\",\"' s\",\"Ġ he\",\"Ġ it\",\"at ion\",\"it h\",\"i r\",\"c e\",\"Ġy ou\",\"i l\",\"Ġ B\",\"Ġw h\",\"o l\",\"Ġ P\",\"Ġw ith\",\"Ġ 1\",\"t er\",\"c h\",\"Ġa s\",\"Ġw e\",\"Ġ (\",\"n d\",\"i ll\",\"Ġ D\",\"i f\",\"Ġ 2\",\"a g\",\"er s\",\"k e\",\"Ġ \\\"\",\"Ġ H\",\"e m\",\"Ġc on\",\"Ġ W\",\"Ġ R\",\"he r\",\"Ġw as\",\"Ġ r\",\"o d\",\"Ġ F\",\"u l\",\"at e\",\"Ġa t\",\"r i\",\"p p\",\"o re\",\"ĠT he\",\"Ġs e\",\"u s\",\"Ġp ro\",\"Ġh a\",\"u m\",\"Ġa re\",\"Ġd e\",\"a in\",\"an d\",\"Ġo r\",\"ig h\",\"es t\",\"is t\",\"a b\",\"r om\",\"Ġ N\",\"t h\",\"Ġc om\",\"Ġ G\",\"u n\",\"o p\",\"0 0\",\"Ġ L\",\"Ġn ot\",\"es s\",\"Ġe x\",\"Ġ v\",\"re s\",\"Ġ E\",\"e w\",\"it y\",\"an t\",\"Ġb y\",\"e l\",\"o s\",\"or t\",\"o c\",\"q u\",\"Ġf rom\",\"Ġha ve\",\"Ġs u\",\"i ve\",\"ou ld\",\"Ġs h\",\"Ġth is\",\"n t\",\"r a\",\"p e\",\"igh t\",\"ar t\",\"m ent\",\"Ġa l\",\"u st\",\"en d\",\"- -\",\"al l\",\"Ġ O\",\"ac k\",\"Ġc h\",\"Ġ le\",\"i es\",\"re d\",\"ar d\",\"â Ģ\",\"ou t\",\"Ġ J\",\"Ġa b\",\"e ar\",\"i v\",\"al ly\",\"ou r\",\"o st\",\"g h\",\"p t\",\"Ġp l\",\"as t\",\"Ġc an\",\"a k\",\"om e\",\"u d\",\"T he\",\"Ġh is\",\"Ġd o\",\"Ġg o\",\"Ġh as\",\"g e\",\"' t\",\"Ġ U\",\"r ou\",\"Ġs a\",\"Ġ j\",\"Ġb ut\",\"Ġw or\",\"Ġa ll\",\"e ct\",\"Ġ k\",\"am e\",\"Ġw ill\",\"o k\",\"Ġw he\",\"Ġthe y\",\"id e\",\"0 1\",\"f f\",\"ic h\",\"p l\",\"t her\",\"Ġt r\",\". .\",\"Ġin t\",\"i e\",\"u re\",\"ag e\",\"Ġn e\",\"i al\",\"a p\",\"in e\",\"ic e\",\"Ġm e\",\"Ġo ut\",\"an s\",\"on e\",\"on g\",\"ion s\",\"Ġwh o\",\"Ġ K\",\"Ġu p\",\"Ġthe ir\",\"Ġa d\",\"Ġ 3\",\"Ġu s\",\"at ed\",\"ou s\",\"Ġm ore\",\"u e\",\"o g\",\"ĠS t\",\"in d\",\"i ke\",\"Ġs o\",\"im e\",\"p er\",\". \\\"\",\"b er\",\"i z\",\"a ct\",\"Ġon e\",\"Ġsa id\",\"Ġ -\",\"a re\",\"Ġyou r\",\"c c\",\"ĠT h\",\"Ġc l\",\"e p\",\"a ke\",\"ab le\",\"i p\",\"Ġcon t\",\"Ġwh ich\",\"i a\",\"Ġ im\",\"Ġab out\",\"Ġwe re\",\"ver y\",\"u b\",\"Ġh ad\",\"Ġ en\",\"Ġcom p\",\", \\\"\",\"ĠI n\",\"Ġu n\",\"Ġa g\",\"i re\",\"ac e\",\"a u\",\"ar y\",\"Ġw ould\",\"as s\",\"r y\",\"Ġ âĢ\",\"c l\",\"o ok\",\"e re\",\"s o\",\"Ġ V\",\"ig n\",\"i b\",\"Ġof f\",\"Ġt e\",\"v en\",\"Ġ Y\",\"i le\",\"o se\",\"it e\",\"or m\",\"Ġ2 01\",\"Ġre s\",\"Ġm an\",\"Ġp er\",\"Ġo ther\",\"or d\",\"ul t\",\"Ġbe en\",\"Ġl ike\",\"as e\",\"an ce\",\"k s\",\"ay s\",\"ow n\",\"en ce\",\"Ġd is\",\"ct ion\",\"Ġan y\",\"Ġa pp\",\"Ġs p\",\"in t\",\"res s\",\"ation s\",\"a il\",\"Ġ 4\",\"ic al\",\"Ġthe m\",\"Ġhe r\",\"ou nt\",\"ĠC h\",\"Ġa r\",\"Ġ if\",\"Ġthe re\",\"Ġp e\",\"Ġy ear\",\"a v\",\"Ġm y\",\"Ġs ome\",\"Ġwhe n\",\"ou gh\",\"ac h\",\"Ġth an\",\"r u\",\"on d\",\"ic k\",\"Ġo ver\",\"ve l\",\"Ġ qu\",\"Ċ Ċ\",\"Ġs c\",\"re at\",\"re e\",\"ĠI t\",\"ou nd\",\"p ort\",\"Ġal so\",\"Ġp art\",\"f ter\",\"Ġk n\",\"Ġbe c\",\"Ġt ime\",\"en s\",\"Ġ 5\",\"op le\",\"Ġwh at\",\"Ġn o\",\"d u\",\"m er\",\"an g\",\"Ġn ew\",\"-- --\",\"Ġg et\",\"or y\",\"it ion\",\"ing s\",\"Ġj ust\",\"Ġint o\",\"Ġ 0\",\"ent s\",\"o ve\",\"t e\",\"Ġpe ople\",\"Ġp re\",\"Ġit s\",\"Ġre c\",\"Ġt w\",\"i an\",\"ir st\",\"ar k\",\"or s\",\"Ġwor k\",\"ad e\",\"o b\",\"Ġs he\",\"Ġo ur\",\"w n\",\"in k\",\"l ic\",\"Ġ1 9\",\"ĠH e\",\"is h\",\"nd er\",\"au se\",\"Ġh im\",\"on s\",\"Ġ [\",\"Ġ ro\",\"f orm\",\"i ld\",\"at es\",\"ver s\",\"Ġon ly\",\"o ll\",\"Ġs pe\",\"c k\",\"e ll\",\"am p\",\"Ġa cc\",\"Ġb l\",\"i ous\",\"ur n\",\"f t\",\"o od\",\"Ġh ow\",\"he d\",\"Ġ '\",\"Ġa fter\",\"a w\",\"Ġat t\",\"o v\",\"n e\",\"Ġpl ay\",\"er v\",\"ic t\",\"Ġc ould\",\"it t\",\"Ġa m\",\"Ġf irst\",\"Ġ 6\",\"Ġa ct\",\"Ġ $\",\"e c\",\"h ing\",\"u al\",\"u ll\",\"Ġcom m\",\"o y\",\"o ld\",\"c es\",\"at er\",\"Ġf e\",\"Ġbe t\",\"w e\",\"if f\",\"Ġtw o\",\"oc k\",\"Ġb ack\",\") .\",\"id ent\",\"Ġu nder\",\"rou gh\",\"se l\",\"x t\",\"Ġm ay\",\"rou nd\",\"Ġp o\",\"p h\",\"is s\",\"Ġd es\",\"Ġm ost\",\"Ġd id\",\"Ġad d\",\"j ect\",\"Ġin c\",\"f ore\",\"Ġp ol\",\"on t\",\"Ġag ain\",\"cl ud\",\"ter n\",\"Ġkn ow\",\"Ġne ed\",\"Ġcon s\",\"Ġc o\",\"Ġ .\",\"Ġw ant\",\"Ġse e\",\"Ġ 7\",\"n ing\",\"i ew\",\"ĠTh is\",\"c ed\",\"Ġe ven\",\"Ġin d\",\"t y\",\"ĠW e\",\"at h\",\"Ġthe se\",\"Ġp r\",\"Ġu se\",\"Ġbec ause\",\"Ġf l\",\"n g\",\"Ġn ow\",\"ĠâĢ ĵ\",\"c om\",\"is e\",\"Ġm ake\",\"Ġthe n\",\"ow er\",\"Ġe very\",\"ĠU n\",\"Ġse c\",\"os s\",\"u ch\",\"Ġe m\",\"Ġ =\",\"ĠR e\",\"i ed\",\"r it\",\"Ġin v\",\"le ct\",\"Ġsu pp\",\"at ing\",\"Ġl ook\",\"m an\",\"pe ct\",\"Ġ 8\",\"ro w\",\"Ġb u\",\"Ġwhe re\",\"if ic\",\"Ġyear s\",\"i ly\",\"Ġd iff\",\"Ġsh ould\",\"Ġre m\",\"T h\",\"I n\",\"Ġe v\",\"d ay\",\"' re\",\"ri b\",\"Ġre l\",\"s s\",\"Ġde f\",\"Ġr ight\",\"Ġs y\",\") ,\",\"l es\",\"00 0\",\"he n\",\"Ġth rough\",\"ĠT r\",\"_ _\",\"Ġw ay\",\"Ġd on\",\"Ġ ,\",\"Ġ1 0\",\"as ed\",\"Ġas s\",\"ub lic\",\"Ġre g\",\"ĠA nd\",\"i x\",\"Ġ very\",\"Ġin clud\",\"ot her\",\"Ġim p\",\"ot h\",\"Ġsu b\",\"ĠâĢ Ķ\",\"Ġbe ing\",\"ar g\",\"ĠW h\",\"= =\",\"ib le\",\"Ġdo es\",\"an ge\",\"r am\",\"Ġ 9\",\"er t\",\"p s\",\"it ed\",\"ation al\",\"Ġb r\",\"Ġd own\",\"Ġman y\",\"ak ing\",\"Ġc all\",\"ur ing\",\"it ies\",\"Ġp h\",\"ic s\",\"al s\",\"Ġde c\",\"at ive\",\"en er\",\"Ġbe fore\",\"il ity\",\"Ġwe ll\",\"Ġm uch\",\"ers on\",\"Ġth ose\",\"Ġsu ch\",\"Ġ ke\",\"Ġ end\",\"ĠB ut\",\"as on\",\"t ing\",\"Ġl ong\",\"e f\",\"Ġth ink\",\"y s\",\"Ġbe l\",\"Ġs m\",\"it s\",\"a x\",\"Ġo wn\",\"Ġpro v\",\"Ġs et\",\"if e\",\"ment s\",\"b le\",\"w ard\",\"Ġsh ow\",\"Ġp res\",\"m s\",\"om et\",\"Ġo b\",\"Ġs ay\",\"ĠS h\",\"t s\",\"f ul\",\"Ġe ff\",\"Ġg u\",\"Ġin st\",\"u nd\",\"re n\",\"c ess\",\"Ġ ent\",\"ĠY ou\",\"Ġgo od\",\"Ġst art\",\"in ce\",\"Ġm ade\",\"t t\",\"st em\",\"ol og\",\"u p\",\"Ġ |\",\"um p\",\"Ġhe l\",\"ver n\",\"ul ar\",\"u ally\",\"Ġa c\",\"Ġm on\",\"Ġl ast\",\"Ġ2 00\",\"1 0\",\"Ġst ud\",\"u res\",\"ĠA r\",\"sel f\",\"ar s\",\"mer ic\",\"u es\",\"c y\",\"Ġm in\",\"oll ow\",\"Ġc ol\",\"i o\",\"Ġm od\",\"Ġc ount\",\"ĠC om\",\"he s\",\"Ġf in\",\"a ir\",\"i er\",\"âĢ Ķ\",\"re ad\",\"an k\",\"at ch\",\"e ver\",\"Ġst r\",\"Ġpo int\",\"or k\",\"ĠN ew\",\"Ġs ur\",\"o ol\",\"al k\",\"em ent\",\"Ġus ed\",\"ra ct\",\"we en\",\"Ġs ame\",\"ou n\",\"ĠA l\",\"c i\",\"Ġdiff ere\",\"Ġwh ile\",\"---- ----\",\"Ġg ame\",\"ce pt\",\"Ġs im\",\".. .\",\"Ġin ter\",\"e k\",\"Ġre port\",\"Ġpro du\",\"Ġst ill\",\"l ed\",\"a h\",\"Ġhe re\",\"Ġwor ld\",\"Ġth ough\",\"Ġn um\",\"ar ch\",\"im es\",\"al e\",\"ĠS e\",\"ĠI f\",\"/ /\",\"ĠL e\",\"Ġre t\",\"Ġre f\",\"Ġtr ans\",\"n er\",\"ut ion\",\"ter s\",\"Ġt ake\",\"ĠC l\",\"Ġcon f\",\"w ay\",\"a ve\",\"Ġgo ing\",\"Ġs l\",\"u g\",\"ĠA meric\",\"Ġspe c\",\"Ġh and\",\"Ġbet ween\",\"ist s\",\"ĠD e\",\"o ot\",\"I t\",\"Ġe ar\",\"Ġagain st\",\"Ġh igh\",\"g an\",\"a z\",\"at her\",\"Ġex p\",\"Ġo p\",\"Ġin s\",\"Ġg r\",\"Ġhel p\",\"Ġre qu\",\"et s\",\"in s\",\"ĠP ro\",\"is m\",\"Ġf ound\",\"l and\",\"at a\",\"us s\",\"am es\",\"Ġp erson\",\"Ġg reat\",\"p r\",\"Ġs ign\",\"ĠA n\",\"' ve\",\"Ġs omet\",\"Ġs er\",\"h ip\",\"Ġr un\",\"Ġ :\",\"Ġt er\",\"ire ct\",\"Ġf ollow\",\"Ġd et\",\"ic es\",\"Ġf ind\",\"1 2\",\"Ġm em\",\"Ġc r\",\"e red\",\"e x\",\"Ġex t\",\"ut h\",\"en se\",\"c o\",\"Ġte am\",\"v ing\",\"ou se\",\"as h\",\"at t\",\"v ed\",\"Ġsy stem\",\"ĠA s\",\"d er\",\"iv es\",\"m in\",\"Ġle ad\",\"ĠB l\",\"c ent\",\"Ġa round\",\"Ġgo vern\",\"Ġc ur\",\"vel op\",\"an y\",\"Ġc our\",\"al th\",\"ag es\",\"iz e\",\"Ġc ar\",\"od e\",\"Ġl aw\",\"Ġre ad\",\"' m\",\"c on\",\"Ġre al\",\"Ġsupp ort\",\"Ġ1 2\",\".. ..\",\"Ġre ally\",\"n ess\",\"Ġf act\",\"Ġd ay\",\"Ġb oth\",\"y ing\",\"Ġs erv\",\"ĠF or\",\"Ġth ree\",\"Ġw om\",\"Ġm ed\",\"od y\",\"ĠThe y\",\"5 0\",\"Ġex per\",\"t on\",\"Ġe ach\",\"ak es\",\"Ġc he\",\"Ġc re\",\"in es\",\"Ġre p\",\"1 9\",\"g g\",\"ill ion\",\"Ġg rou\",\"ut e\",\"i k\",\"W e\",\"g et\",\"E R\",\"Ġm et\",\"Ġs ays\",\"o x\",\"Ġd uring\",\"er n\",\"iz ed\",\"a red\",\"Ġf am\",\"ic ally\",\"Ġha pp\",\"ĠI s\",\"Ġch ar\",\"m ed\",\"v ent\",\"Ġg ener\",\"i ent\",\"p le\",\"i et\",\"re nt\",\"1 1\",\"v es\",\"pt ion\",\"Ġ2 0\",\"form ation\",\"Ġc or\",\"Ġoff ic\",\"ie ld\",\"Ġto o\",\"is ion\",\"Ġin f\",\"Ġ Z\",\"t he\",\"o ad\",\"Ġp ublic\",\"Ġpro g\",\"r ic\",\"* *\",\"Ġw ar\",\"Ġp ower\",\"v iew\",\"Ġf ew\",\"Ġl oc\",\"Ġdiffere nt\",\"Ġst ate\",\"Ġhe ad\",\"' ll\",\"Ġp oss\",\"Ġst at\",\"re t\",\"ant s\",\"Ġv al\",\"Ġis s\",\"Ġc le\",\"i vers\",\"an c\",\"Ġex pl\",\"Ġan other\",\"Ġ Q\",\"Ġa v\",\"th ing\",\"n ce\",\"W h\",\"Ġch ild\",\"Ġs ince\",\"i red\",\"l ess\",\"Ġl ife\",\"Ġde velop\",\"itt le\",\"Ġde p\",\"Ġp ass\",\"ã ĥ\",\"Ġt urn\",\"or n\",\"Th is\",\"b ers\",\"ro ss\",\"ĠA d\",\"Ġf r\",\"Ġres p\",\"Ġsec ond\",\"o h\",\"Ġ /\",\"Ġdis c\",\"Ġ &\",\"Ġsomet hing\",\"Ġcomp le\",\"Ġ ed\",\"Ġf il\",\"Ġmon th\",\"a j\",\"u c\",\"Ġgovern ment\",\"Ġwith out\",\"Ġle g\",\"Ġd ist\",\"Ġp ut\",\"Ġqu est\",\"an n\",\"Ġpro t\",\"2 0\",\"Ġne ver\",\"i ence\",\"Ġle vel\",\"Ġar t\",\"Ġth ings\",\"Ġm ight\",\"Ġeff ect\",\"Ġcont ro\",\"Ġc ent\",\"Ġ1 8\",\"Ġall ow\",\"Ġbel ie\",\"ch ool\",\"ot t\",\"Ġinc re\",\"Ġfe el\",\"Ġres ult\",\"Ġl ot\",\"Ġf un\",\"ot e\",\"Ġt y\",\"ere st\",\"Ġcont in\",\"Ġus ing\",\"Ġb ig\",\"2 01\",\"Ġas k\",\"Ġb est\",\"Ġ )\",\"I N\",\"Ġo pp\",\"3 0\",\"Ġnum ber\",\"in ess\",\"S t\",\"le ase\",\"Ġc a\",\"Ġm ust\",\"Ġd irect\",\"Ġg l\",\"Ġ <\",\"Ġop en\",\"Ġp ost\",\"Ġcom e\",\"Ġse em\",\"ord ing\",\"Ġwe ek\",\"ate ly\",\"it al\",\"Ġe l\",\"ri end\",\"Ġf ar\",\"Ġt ra\",\"in al\",\"Ġp ri\",\"ĠU S\",\"Ġpl ace\",\"Ġfor m\",\"Ġto ld\",\"\\\" :\",\"ain s\",\"at ure\",\"ĠTr ump\",\"Ġst and\",\"Ġ #\",\"id er\",\"ĠF r\",\"Ġne xt\",\"Ġs oc\",\"Ġp ur\",\"Ġle t\",\"Ġl ittle\",\"Ġh um\",\"Ġ i\",\"r on\",\"1 5\",\"Ġ1 5\",\"Ġcomm un\",\"Ġm ark\",\"ĠThe re\",\"Ġw r\",\"ĠTh at\",\"Ġin formation\",\"w ays\",\"Ġb us\",\"a pp\",\"Ġinv est\",\"m e\",\"Ġh ard\",\"ain ed\",\"e ad\",\"Ġim port\",\"Ġapp ro\",\"Ġt est\",\"Ġt ri\",\"Ġre st\",\"os ed\",\"Ġf ull\",\"Ġc are\",\"ĠS p\",\"Ġc ase\",\"O N\",\"Ġs k\",\"Ġl ess\",\"Ġ +\",\"Ġpart ic\",\"ĠP l\",\"ab ly\",\"u ck\",\"is hed\",\"ch n\",\"b e\",\"Ġl ist\",\"at or\",\"Ġto p\",\"Ġad v\",\"ĠB e\",\"ru ct\",\"Ġd em\",\"r ation\",\"l ing\",\"g y\",\"re en\",\"g er\",\"Ġh ome\",\"Ġle ft\",\"Ġbet ter\",\"Ġd ata\",\"Ġ1 1\",\"Ġatt ack\",\"Ġpro ble\",\"l ine\",\"ard s\",\"Ġbe h\",\"r al\",\"ĠH ow\",\"ĠS he\",\"ar ge\",\"Ġ --\",\": //\",\"Ġb ro\",\"ĠP h\",\"at s\",\"Ġbu ild\",\"w w\",\"id ed\",\"a im\",\"as es\",\"en cy\",\"Ġm ain\",\"in ed\",\"Ġinclud ing\",\"Ġ {\",\"Ġg ot\",\"Ġint erest\",\"Ġke ep\",\"Ġ X\",\"Ġe as\",\"ain ing\",\"Ġcl ass\",\"âĢ ¦\",\"ĠN o\",\"Ġv ar\",\"Ġsm all\",\"amp le\",\"A T\",\"Ġ ide\",\"ĠS o\",\"Ġre ce\",\"Ġpol it\",\"Ġm ov\",\"Ġpl an\",\"Ġper cent\",\"iv ing\",\"Ġc amp\",\"Ġp ay\",\"1 4\",\"s c\",\"is ed\",\"Ġu nt\",\"one y\",\"pl oy\",\"== ==\",\"Ġdid n\",\"ĠI nd\",\"el s\",\"ert ain\",\"Ġp os\",\"__ __\",\"i ver\",\"Ġpro cess\",\"Ġprog ram\",\"if ied\",\"ĠR ep\",\"1 6\",\"u ro\",\"olog y\",\"at ter\",\"in a\",\"Ġn ame\",\"ĠA ll\",\"Ġf our\",\"Ġret urn\",\"v ious\",\"b s\",\"Ġcall ed\",\"Ġm ove\",\"ĠS c\",\"ir d\",\"Ġgrou p\",\"Ġb re\",\"Ġm en\",\"Ġc ap\",\"t en\",\"e e\",\"Ġd ri\",\"le g\",\"he re\",\"uth or\",\"Ġp at\",\"Ġcur rent\",\"id es\",\"Ġp op\",\"t o\",\"ent ion\",\"Ġal ways\",\"Ġm il\",\"Ġwom en\",\"Ġ1 6\",\"Ġo ld\",\"iv en\",\"ra ph\",\"ĠO r\",\"r or\",\"ent ly\",\"Ġn ear\",\"ĠE x\",\"re am\",\"s h\",\"Ġ1 4\",\"Ġf ree\",\"iss ion\",\"st and\",\"ĠC on\",\"al ity\",\"us ed\",\"1 3\",\"Ġdes ign\",\"Ġch ange\",\"Ġch ang\",\"Ġb o\",\"Ġv is\",\"em ber\",\"Ġb ook\",\"read y\",\"Ġk ill\",\"2 5\",\"pp ed\",\"Ġa way\",\"Ġab le\",\"Ġcount ry\",\"Ġcon st\",\"ar n\",\"Ġor der\",\"A R\",\"i or\",\"i um\",\"or th\",\"1 8\",\"ail able\",\"Ġs w\",\"Ġm illion\",\"Ġ1 3\",\"at ic\",\"t ed\",\"ĠG o\",\"Ġo per\",\"en g\",\"Ġth ing\",\"aj or\",\"con om\",\"ĠCom m\",\"Ġwh y\",\"u red\",\"ur al\",\"Ġs chool\",\"b y\",\"ĠM ar\",\"Ġa ff\",\"Ġd ays\",\"Ġan n\",\"us h\",\"an e\",\"I f\",\"e g\",\"Ġpro f\",\"Ġhe alth\",\"ou th\",\"B ut\",\"ion al\",\". ,\",\"Ġs ol\",\"Ġal ready\",\"Ġ3 0\",\"Ġchar act\",\"H e\",\"Ġf riend\",\"E S\",\"i ans\",\"ic le\",\"' d\",\"ĠO n\",\"Ġle ast\",\"Ġp rom\",\"Ġd r\",\"Ġh ist\",\"it her\",\"Ġ est\",\"i qu\",\"1 7\",\"s on\",\"Ġte ll\",\"Ġt alk\",\"oh n\",\"o int\",\"le ction\",\"A N\",\"Ġunt il\",\"au gh\",\"Ġl ater\",\"Ġ ve\",\"Ġv iew\",\"end ing\",\"iv ed\",\"Ġwor d\",\"w are\",\"Ġc ost\",\"Ġen ough\",\"Ġg ive\",\"ĠUn ited\",\"Ġte chn\",\"are nt\",\"O R\",\"Ġp ar\",\"ĠD r\",\"Ġ201 6\",\"r ist\",\"er ing\",\"Ġ Â\",\"Ġl arge\",\"s ide\",\"ac y\",\"cc ess\",\"Ġw in\",\"Ġimport ant\",\"Ġ19 9\",\"Ġdoes n\",\"Ġ1 7\",\"Ġbus iness\",\"Ġcle ar\",\"Ġre se\",\"\\\" ,\",\"ur y\",\"Ġe qu\",\"as ter\",\"al f\",\"ĠAmeric an\",\"n ect\",\"Ġex pect\",\"ivers ity\",\"Ġo cc\",\"ĠF l\",\"Ġk ind\",\"Ġme an\",\"Ġp ast\",\"Ġde v\",\"Ġb as\",\"le t\",\"ra ft\",\"Ġor gan\",\"Ġde l\",\"Ġper form\",\"Ġst ory\",\"Ġse ason\",\"ĠC ol\",\"Ġcl aim\",\"Ġc ame\",\"Ġwith in\",\"Ġl ine\",\"Ġpro ject\",\"ĠA t\",\"Ġcontro l\",\"end ed\",\"ĠS y\",\"Ġa ir\",\"iz ation\",\"Ġ *\",\"le y\",\"Ġm oney\",\"id d\",\"Y ou\",\"f or\",\"Ġfam ily\",\"Ġm aking\",\"Ġb it\",\"Ġpol ice\",\"Ġhapp en\",\"Ġ vers\",\"on y\",\"u ff\",\"ĠW hen\",\"Ġs it\",\"ide o\",\"l f\",\"is on\",\"Ġsu re\",\"g in\",\"Ġapp ear\",\"Ġl ight\",\"Ġ es\",\"o f\",\"Ġw ater\",\"Ġt imes\",\"n ot\",\"Ġg row\",\"Ġcomp any\",\"ĠT e\",\"ow s\",\"Ġm ar\",\"our ce\",\"i ol\",\"ar m\",\"b r\",\"Ġex ample\",\"Ġcon c\",\"Ġf ore\",\"ĠT o\",\"p ro\",\"E N\",\"ri es\",\"Ġ2 5\",\"ĠC an\",\"ne y\",\"Ġact ually\",\"Ġe ver\",\"ur ity\",\"ak en\",\"ap s\",\"Ġt ax\",\"Ġm ajor\",\"am a\",\"Ġof ten\",\"er al\",\"Ġhum an\",\"Ġj ob\",\"is ter\",\"Ġav ailable\",\"oc r\",\"en n\",\"a id\",\"iv id\",\"Ġrec ord\",\"? \\\"\",\"Ġs ing\",\"ĠA m\",\"id ence\",\"Ġnew s\",\"st er\",\"Ġe conom\",\"Ġfollow ing\",\"ĠB r\",\"is ing\",\"Ġh our\",\"m ost\",\"um ent\",\"Ġse x\",\"Ġdes c\",\"Ġbec ome\",\"ĠE d\",\"Ġto ok\",\"Ġha ving\",\"Ġprodu ct\",\"a ult\",\"A s\",\"ar ing\",\"Ġme ans\",\"Ġh op\",\"un e\",\"Ġch o\",\"Ġc ertain\",\"Ġn on\",\"Ġde al\",\"2 4\",\"le ment\",\"oc i\",\"en e\",\"Ġs ide\",\"ĠP r\",\"ĠM ay\",\"Ġre ason\",\"u ed\",\"c hed\",\"ul ation\",\"Ġe lect\",\"Ġoffic ial\",\"Ġposs ible\",\"Ġh old\",\"and s\",\"ot s\",\"Ġc ity\",\"or ies\",\"Ġse ver\",\"Ġchild ren\",\"Ġon ce\",\"Ġact iv\",\"l er\",\"Ġn ight\",\"it ions\",\"ĠJ ohn\",\"a pe\",\"pl ay\",\"Ġd one\",\"Ġl im\",\"Ġwork ing\",\"ĠP res\",\"or ld\",\"e b\",\"ĠC o\",\"Ġb ody\",\"ail s\",\"ut es\",\"ĠM r\",\"Ġwhe ther\",\"Ġa uthor\",\"ro p\",\"Ġpro per\",\"Ġse en\",\") ;\",\"Ġf ac\",\"ĠS u\",\"Ġcon d\",\"it ing\",\"Ġcour se\",\"Ġ }\",\"-------- --------\",\"a ign\",\"Ġev ent\",\"Ġen g\",\"Ġp ot\",\"Ġin tern\",\"i am\",\"Ġsh ort\",\"em pt\",\"ã Ĥ\",\"ĠG od\",\"il ar\",\"8 0\",\"Ġor ig\",\"I S\",\"our n\",\"ab ility\",\"it ive\",\"Ġd am\",\"Ġ1 00\",\"Ġp ress\",\"Ġdo ing\",\"Ġprot ect\",\"r ing\",\"Ġthough t\",\"Ġquest ion\",\"re w\",\"ĠW ar\",\"Ġsever al\",\"ĠSt ate\",\"Ġg iven\",\"Ġf und\",\"ĠT w\",\"Ġw ent\",\"an ces\",\"w ork\",\"p or\",\"m y\",\"4 0\",\"Ġar g\",\"art ment\",\"ust om\",\"Ġpol ic\",\"Ġme et\",\"Ġc reat\",\"2 2\",\"ĠSt ates\",\"Ġg ames\",\"ra w\",\"ut ure\",\"Ġunder stand\",\"ur s\",\"ĠO b\",\"l ish\",\"s y\",\"Ġm akes\",\"Ġw on\",\"ag on\",\"Ġh tt\",\"Ġl ove\",\"ent ial\",\"Ġcomple te\",\"p ar\",\"ĠI m\",\"A L\",\"Ġacc ount\",\"Â ł\",\"ore d\",\"ver t\",\"Ġ ident\",\"Ġ201 5\",\"Ġother s\",\"ĠM in\",\"i ber\",\"ver age\",\"The re\",\"ition al\",\"d d\",\"Ġpro b\",\"Ġyou ng\",\"Ġal ong\",\"Ġacc ording\",\"Ġy et\",\"Ġmem bers\",\"ĠWh at\",\"o id\",\"ĠM an\",\"A nd\",\"Ġam ong\",\"a i\",\"Ġem ploy\",\"ĠR es\",\"Ġ >\",\"Ġinv ol\",\"Ġl ow\",\"a f\",\"ĠC ar\",\"Ġh ig\",\"ĠO ne\",\"ĠS ec\",\"in ation\",\"Ġlike ly\",\"Ġan t\",\"ag ed\",\"ĠR uss\",\"Ġb en\",\"Ġre le\",\"F or\",\"b ack\",\"ĠN ot\",\"Ġpres ident\",\"b all\",\"Ġacc ess\",\"ivid ual\",\"ĠD em\",\"ĠE uro\",\"6 0\",\"Ġkn own\",\"ir l\",\"ĠG r\",\"Ġear ly\",\"u se\",\"iet y\",\"âĢ ĵ\",\"Ġf ight\",\"Ġs ent\",\"Ġto day\",\"Ġmark et\",\"\\\" .\",\"Ġb ased\",\"Ġstr ong\",\"ur ther\",\"Ġde b\",\"m ber\",\"Ġproble m\",\"Ġde ath\",\"Ġsoc ial\",\"im ate\",\"A S\",\"ort un\",\"Ġcamp aign\",\"er y\",\"C h\",\"Ġe y\",\"i ally\",\"Ġm us\",\"w h\",\"p os\",\"Ġ er\",\"Ġsa f\",\"Ġmonth s\",\"ir on\",\"Ġv iol\",\"Ġf ive\",\"Ġst re\",\"Ġplay ers\",\"in c\",\"al d\",\"y ear\",\"a un\",\"Ġsu ccess\",\"Ġpres ent\",\"ere nce\",\"Ġ201 4\",\"Ġsu gg\",\"Ġpartic ular\",\"Ġtr y\",\"Ġsugg est\",\"ĠCh rist\",\"on es\",\"Ġpri v\",\"2 3\",\"Ġc rit\",\"Ġl and\",\"Ġloc al\",\"if y\",\"2 9\",\"Ġa ut\",\"E D\",\"ĠG u\",\"Ġm ult\",\"Ġpolit ical\",\"Ġask ed\",\"Ġfor mer\",\"it ter\",\"ri pt\",\"Ġcl ose\",\"Ġp ract\",\"ĠY ork\",\"Ġget ting\",\"Ġac ross\",\"Ġcom b\",\"Ġbelie ve\",\"Ġ z\",\"Ġto get\",\"Ġtoget her\",\"ĠC ent\",\"ir c\",\"Ġind ividual\",\"ĠM c\",\"2 7\",\"is k\",\"ĠE ng\",\"Ġf ace\",\"Ġ2 4\",\"Ġval ue\",\"Ġare a\",\"e v\",\"Ġw rit\",\"ĠPres ident\",\"Ġv ot\",\"Ġke y\",\"Ġm om\",\"p ut\",\"Ġany thing\",\"Ġexper ience\",\"att le\",\"Ġm ind\",\"a ff\",\"om m\",\"Ġf uture\",\"g ed\",\"Ġc ut\",\"Ġto t\",\"it ch\",\"Ġv ideo\",\"Ġinvest ig\",\"Ġn et\",\"ĠM y\",\"r ict\",\"i en\",\". )\",\"Ġimp ro\",\"th ough\",\"ward s\",\"Ġcon nect\",\"ĠM ed\",\"sel ves\",\"ens ive\",\"m b\",\"o ber\",\"at ors\",\"A n\",\"Ġ5 0\",\"Ġre du\",\"res ent\",\"Ġab ove\",\"Ġf re\",\"ĠEuro pe\",\"s w\",\"Ġam ount\",\"ĠA pp\",\"Ġe ither\",\"Ġmil it\",\"Ġan al\",\"Ġf ail\",\"ĠE n\",\"al es\",\"Ġspec ial\",\"Ġbl ack\",\"I T\",\"c her\",\"Ġlook ing\",\"Ġf ire\",\"y n\",\"Ġal most\",\"o on\",\"Ġstud y\",\"Ġm iss\",\"c hes\",\"ro wn\",\"Ġt re\",\"Ġcommun ity\",\"Ġmed ia\",\"Ġf ood\",\"Ġcom es\",\"ĠUn iversity\",\"Ġsing le\",\"Wh at\",\"u ly\",\"Ġh alf\",\"ag ue\",\"h od\",\"ĠRep ublic\",\"Ġstart ed\",\"Ġqu ick\",\"ot o\",\"b ook\",\"Ġiss ue\",\"it or\",\"Ġel se\",\"Ġcons ider\",\"2 6\",\"ro du\",\"Ġt aken\",\"2 8\",\"9 9\",\"ĠW ith\",\"Ġtr ue\",\"Ġw a\",\"Ġtr ad\",\"Ġag o\",\"Ġm ess\",\"ie f\",\"Ġadd ed\",\"o ke\",\"Ġb ad\",\"Ġf av\",\"3 3\",\"Ġsim ilar\",\"as k\",\"ĠD on\",\"Ġcharact er\",\"ort s\",\"ĠH ouse\",\"Ġreport ed\",\"Ġty pe\",\"v al\",\"i od\",\"ĠHow ever\",\"Ġt arg\",\"Ġent ire\",\"pp ing\",\"Ġhist ory\",\"Ġl ive\",\"ff ic\",\".... ....\",\"ed eral\",\"Ġtr ying\",\"Ġdisc uss\",\"ĠH ar\",\"ac es\",\"l ished\",\"Ġse lf\",\"os p\",\"re st\",\"Ġro om\",\"el t\",\"Ġf all\",\"ol ution\",\"Ġe t\",\"Ġ x\",\"Ġis n\",\"Ġide a\",\"b o\",\"Ġs ound\",\"ĠD ep\",\"Ġsome one\",\"ci ally\",\"ull y\",\"Ġf oc\",\"Ġob ject\",\"if t\",\"ap er\",\"Ġplay er\",\"Ġr ather\",\"Ġserv ice\",\"as hing\",\"ĠD o\",\"ĠP art\",\"ru g\",\"m on\",\"p ly\",\"Ġm or\",\"Ġnot hing\",\"Ġprov ide\",\"I C\",\"un g\",\"Ġpart y\",\"Ġex ist\",\"Ġm ag\",\"7 0\",\"Ġr ul\",\"Ġh ouse\",\"Ġbeh ind\",\"Ġhow ever\",\"ĠW orld\",\"Ġs um\",\"Ġapp lic\",\"Ġ ;\",\"Ġfun ction\",\"g r\",\"ĠP ol\",\"Ġfr ont\",\"2 00\",\"Ġser ies\",\"Ġt em\",\"Ġty p\",\"ill s\",\"Ġo pt\",\"Ġpoint s\",\"Ġbel ow\",\"itt ed\",\"Ġspec ific\",\"Ġ201 7\",\"um b\",\"Ġr a\",\"Ġpre vious\",\"Ġpre t\",\"re me\",\"Ġc ustom\",\"Ġcour t\",\"ĠM e\",\"Ġre pl\",\"Ġwho le\",\"g o\",\"c er\",\"Ġt reat\",\"ĠA ct\",\"Ġprob ably\",\"Ġle arn\",\"end er\",\"ĠA ss\",\"Ġvers ion\",\"n ow\",\"Ġche ck\",\"ĠC al\",\"R E\",\"min ist\",\"O n\",\"our ces\",\"Ġben ef\",\"Ġd oc\",\"Ġdet er\",\"Ġen c\",\"Ġsu per\",\"Ġadd ress\",\"Ġv ict\",\"Ġ201 3\",\"Ġme as\",\"t r\",\"Ġf ield\",\"W hen\",\"Ġsign ific\",\"u ge\",\"Ġfe at\",\"Ġcomm on\",\"l oad\",\"Ġbe gin\",\"Ġbr ing\",\"Ġa ction\",\"er man\",\"Ġdesc rib\",\"Ġind ust\",\"Ġwant ed\",\"ri ed\",\"m ing\",\"Ġatt empt\",\"4 5\",\"f er\",\"Ġd ue\",\"ress ion\",\"# #\",\"Ġsh all\",\"Ġs ix\",\"o o\",\"Ġst ep\",\"Ġp ub\",\"Ġhim self\",\"Ġ2 3\",\"Ġc op\",\"Ġd est\",\"Ġst op\",\"A C\",\"ib ility\",\"Ġl ab\",\"ic ult\",\"Ġhour s\",\"Ġcre ate\",\"Ġf urther\",\"ĠAmeric a\",\"ĠC ity\",\"Ġd ou\",\"he ad\",\"S T\",\"ĠN orth\",\"c ing\",\"Ġn ational\",\"u le\",\"ĠIn st\",\"Ġt aking\",\"ĠQ u\",\"ir t\",\"Ġre d\",\"Ġrese arch\",\"v iron\",\"ĠG e\",\"Ġbre ak\",\"an a\",\"Ġsp ace\",\"ater ial\",\"Ġrec ent\",\"ĠA b\",\"Ġgener al\",\"Ġh it\",\"Ġper iod\",\"Ġevery thing\",\"ive ly\",\"Ġph ys\",\"Ġsay ing\",\"an ks\",\"Ġc ou\",\"Ġc ult\",\"ac ed\",\"e al\",\"u ation\",\"Ġc oun\",\"l u\",\"Ġinclud e\",\"Ġpos ition\",\"ĠA fter\",\"ĠCan ad\",\"ĠE m\",\"Ġim m\",\"ĠR ed\",\"Ġp ick\",\"Ġcom pl\",\"Ġm atter\",\"re g\",\"e xt\",\"ang u\",\"is c\",\"o le\",\"a ut\",\"Ġcomp et\",\"e ed\",\"f ect\",\"Ġ2 1\",\"ĠS en\",\"ĠThe se\",\"as ing\",\"Ġcan not\",\"Ġin it\",\"Ġrel ations\",\"ac hed\",\"Ġb ar\",\"Ġ4 0\",\"ĠT H\",\"Ġ201 2\",\"Ġv ol\",\"Ġg round\",\"Ġsec urity\",\"Ġup d\",\"il t\",\"3 5\",\"Ġconc ern\",\"ĠJ ust\",\"Ġwh ite\",\"Ġseem s\",\"ĠH er\",\"pe cially\",\"i ents\",\"Ġann oun\",\"Ġf ig\",\"ight s\",\"Ġst ri\",\"l ike\",\"id s\",\"Ġs us\",\"Ġw atch\",\"Ġ â\",\"Ġw ind\",\"ĠC ont\",\"Ġit self\",\"Ġm ass\",\"A l\",\"y le\",\"iqu e\",\"ĠN ational\",\"Ġab s\",\"Ġp ack\",\"Ġout side\",\"Ġan im\",\"Ġp ain\",\"et er\",\"Ġman ag\",\"du ct\",\"og n\",\"Ġ ]\",\"ĠSe pt\",\"se c\",\"o ff\",\"ĠJ an\",\"Ġf oot\",\"ad es\",\"Ġth ird\",\"Ġm ot\",\"Ġev idence\",\"int on\",\"Ġth reat\",\"a pt\",\"pl es\",\"c le\",\"Ġl o\",\"Ġde cl\",\"Ġit em\",\"med i\",\"Ġrep resent\",\"om b\",\"am er\",\"Ġsignific ant\",\"og raph\",\"s u\",\"Ġc al\",\"i res\",\"00 00\",\"I D\",\"A M\",\"Ġsim ply\",\"Ġlong er\",\"Ġf ile\",\"O T\",\"c he\",\"S o\",\"ate g\",\"or g\",\"ĠH is\",\"Ġen er\",\"Ġd om\",\"Ġup on\",\"il i\",\"\\\": \\\"\",\"Ġthem selves\",\"Ġcom ing\",\"Ġqu ite\",\"Ġdiff icult\",\"ĠB ar\",\"il ities\",\"re l\",\"end s\",\"c ial\",\"6 4\",\"Ġwom an\",\"ra p\",\"y r\",\"Ġne cess\",\"ip s\",\"Ġte xt\",\"Ġrequ ire\",\"Ġmilit ary\",\"Ġre view\",\"Ġresp ons\",\"7 5\",\"Ġsub ject\",\"Ġinst ead\",\"Ġiss ues\",\"Ġg en\",\"\\\" ,\\\"\",\"Ġmin utes\",\"Ġwe ap\",\"r ay\",\"am ed\",\"t ime\",\"b l\",\"H ow\",\"Ġc ode\",\"ĠS m\",\"Ġhig her\",\"ĠSt e\",\"r is\",\"Ġp age\",\"Ġstud ents\",\"ĠIn tern\",\"Ġmet hod\",\"ĠA ug\",\"ĠP er\",\"ĠA g\",\"Ġpolic y\",\"ĠS w\",\"Ġex ec\",\"Ġac cept\",\"um e\",\"rib ut\",\"Ġword s\",\"Ġfin al\",\"Ġchang es\",\"ĠDem ocr\",\"Ġfriend s\",\"Ġres pect\",\"Ġe p\",\"Ġcomp an\",\"iv il\",\"Ġdam age\",\"** **\",\"og le\",\"viron ment\",\"Ġne g\",\"ent al\",\"Ġa p\",\"Ġtot al\",\"iv al\",\"! \\\"\",\"l im\",\"Ġneed s\",\"Ġag re\",\"Ġdevelop ment\",\"Ġa ge\",\"ip le\",\"2 1\",\"Ġresult s\",\"ĠA f\",\"S h\",\"Ġg un\",\"ĠOb ama\",\"ro ll\",\"Ġ @\",\"Ġright s\",\"ĠB rit\",\"Ġrun ning\",\"Ġwas n\",\"Ġp ort\",\"Ġr ate\",\"Ġpret ty\",\"Ġtarg et\",\"Ġsa w\",\"Ġc irc\",\"Ġwor ks\",\"ic ro\",\"al t\",\"o ver\",\"ww w\",\"Th at\",\"l ier\",\"Ġevery one\",\"ud e\",\"Ġp ie\",\"idd le\",\"ra el\",\"Ġr ad\",\"Ġbl ock\",\"Ġw alk\",\"T o\",\"ã ģ\",\"n es\",\"ĠA ust\",\"a ul\",\"ro te\",\"ĠS outh\",\"ess ion\",\"op h\",\"Ġshow s\",\"Ġs ite\",\"Ġj o\",\"Ġr isk\",\"cl us\",\"l t\",\"Ġin j\",\"id ing\",\"ĠS pe\",\"Ġch all\",\"ir m\",\"Ġ2 2\",\"itt ing\",\"st r\",\"Ġh y\",\"L E\",\"ke y\",\"Ġbe gan\",\"at ur\",\"ashing ton\",\"l am\",\"ĠD av\",\"b it\",\"Ġs ize\",\"ĠP ar\",\"3 8\",\"ourn al\",\"f ace\",\"Ġdec ision\",\"Ġl arg\",\"Ġj ud\",\"re ct\",\"Ġcontin ue\",\"ĠO ct\",\"ove red\",\"ĠI nt\",\"==== ====\",\"Ġp arent\",\"ĠW ill\",\"Ġeas y\",\"Ġd rug\",\"ang er\",\"Ġs ense\",\"Ġd i\",\"id ay\",\"Ġener gy\",\"ist ic\",\"Ġass oci\",\"ar ter\",\"ob al\",\"e ks\",\"ĠE l\",\"ur ch\",\"Ġg irl\",\"o e\",\"it le\",\"Ġ2 8\",\"ĠC he\",\"Ġrequ est\",\"Ġso on\",\"Ġh ost\",\"k y\",\"Ġst ates\",\"om es\",\"Ġm aterial\",\"le x\",\"Ġmom ent\",\"Ġan sw\",\"on se\",\"Ġes pecially\",\"Ġn orm\",\"Ġserv ices\",\"p ite\",\"r an\",\"Ġro le\",\"4 4\",\") :\",\"Ġc red\",\"C l\",\"____ ____\",\"Ġm at\",\"Ġl og\",\"ĠCl inton\",\"O U\",\"Ġoff ice\",\"Ġ2 6\",\"Ġch arg\",\"Ġtr ack\",\"m a\",\"Ġhe art\",\"Ġb all\",\"Ġperson al\",\"Ġbuild ing\",\"n a\",\"s et\",\"b ody\",\"ĠBl ack\",\"Ġincre ase\",\"itt en\",\"Ġneed ed\",\"3 6\",\"3 2\",\"= \\\"\",\"Ġl ost\",\"Ġbec ame\",\"Ġgrou ps\",\"ĠM us\",\"Ġw rote\",\"ĠP e\",\"Ġpro p\",\"j oy\",\"Ã ©\",\"ĠWh ite\",\"Ġde ad\",\". '\",\"Ġhtt p\",\"Ġwe bs\",\"O S\",\"Ġins ide\",\"Ġwr ong\",\"Ġstat ement\",\"Ġ ...\",\"y l\",\"Ġfil m\",\"Ġmus ic\",\"Ġsh are\",\"ific ation\",\"Ġre lease\",\"Ġfor ward\",\"Ġst ay\",\"Ġcomp ut\",\"it te\",\"s er\",\"Ġorig inal\",\"Ġc ard\",\"Ġc and\",\"Ġd iv\",\"at ural\",\"Ġfav or\",\"O M\",\"Ġc ases\",\"us es\",\"Ġse ction\",\"Ġle ave\",\"g ing\",\"ov ed\",\"ĠW ashington\",\"3 9\",\"ĠG l\",\"Ġrequ ired\",\"act ion\",\"ap an\",\"o or\",\"it er\",\"ĠK ing\",\"Ġcount ries\",\"ĠG erman\",\"ll ing\",\"Ġ2 7\",\"3 4\",\"Ġquest ions\",\"Ġpr im\",\"Ġc ell\",\"Ġsh oot\",\"Ġany one\",\"ĠW est\",\"Ġaff ect\",\"ep end\",\"Ġon line\",\"ĠIs rael\",\"ĠSept ember\",\"Ġab ility\",\"Ġcont ent\",\"is es\",\"Ġre ve\",\"Ġl aun\",\"Ġind ic\",\"Ġfor ce\",\"c ast\",\"Ġso ld\",\"av ing\",\"f l\",\"Ġso ft\",\"Ġcompan ies\",\"ce ed\",\"Ġart icle\",\"Ġa ud\",\"Ġre v\",\"Ġed uc\",\"Ġplay ing\",\"0 5\",\"Ġhe ld\",\"ct or\",\"Ġrele ased\",\"Ġf ederal\",\"3 7\",\"Ġad minist\",\"Ġinter view\",\"Ġinst all\",\"Ġrece ived\",\"Ġs ource\",\"u k\",\"P h\",\"Ġser ious\",\"Ġcre ated\",\"Ġc ause\",\"Ġim medi\",\"Ġdef in\",\"u el\",\"ĠDep artment\",\"ct ions\",\"ĠC our\",\"ĠN ow\",\"z e\",\"it es\",\"it ution\",\"Ġl ate\",\"Ġspe ak\",\"n ers\",\"Ġleg al\",\"ar i\",\"ĠC or\",\"Ġwe eks\",\"Ġmod el\",\"Ġp red\",\"Ġex act\",\"B C\",\"ĠB y\",\"IN G\",\"os ing\",\"Ġt akes\",\"Ġreg ard\",\"Ġopp ortun\",\"Ġpr ice\",\"Ġ19 8\",\"ĠA pr\",\"f ully\",\"Ġor d\",\"Ġproble ms\",\"ru ction\",\"h am\",\"ĠC ount\",\"le ge\",\"Ġlead ers\",\"E T\",\"le v\",\"Ġde ep\",\"olog ical\",\"es e\",\"h aps\",\"ĠS ome\",\"Ġp ers\",\"Ġcont ract\",\"Ġrelations hip\",\"s p\",\"ou d\",\"Ġb ase\",\"4 8\",\"m it\",\"A d\",\"anc ial\",\"Ġcons um\",\"Ġpot ential\",\"Ġl angu\",\"re m\",\"et h\",\"Ġrel ig\",\"ress ed\",\"6 6\",\"Ġl ink\",\"Ġl ower\",\"ay er\",\"ĠJ une\",\"Ġf em\",\"un t\",\"er c\",\"ur d\",\"Ġcont act\",\"Ġ ill\",\"Ġm other\",\"Ġest ab\",\"h tt\",\"ĠM arch\",\"ĠB ro\",\"ĠCh ina\",\"Ġ2 9\",\"Ġs qu\",\"Ġprov ided\",\"Ġa verage\",\"as ons\",\"Ġ201 1\",\"Ġex am\",\"l in\",\"5 5\",\"n ed\",\"Ġper fect\",\"Ġt ou\",\"al se\",\"u x\",\"Ġbu y\",\"Ġsh ot\",\"Ġcol lect\",\"Ġph ot\",\"Ġplay ed\",\"Ġsur pr\",\"Ġofficial s\",\"Ġsim ple\",\"av y\",\"Ġindust ry\",\"Ġhand s\",\"g round\",\"Ġp ull\",\"Ġr ound\",\"Ġus er\",\"Ġr ange\",\"u ary\",\"Ġpriv ate\",\"op s\",\"e es\",\"Ġw ays\",\"ĠM ich\",\"Ġve h\",\"Ġex cept\",\"Ġter ms\",\"im um\",\"pp er\",\"I ON\",\"ore s\",\"ĠDr agon\",\"ou l\",\"Ġd en\",\"Ġperform ance\",\"Ġb ill\",\"c il\",\"4 7\",\"Ġen vironment\",\"Ġex c\",\"ad d\",\"Ġwor th\",\"Ġp ict\",\"Ġch ance\",\"Ġ201 8\",\"b or\",\"Ġspe ed\",\"ict ion\",\"Ġal leg\",\"ĠJ apan\",\"at ory\",\"re et\",\"Ġm atch\",\"ĠI I\",\"Ġst ru\",\"ord er\",\"Ġst e\",\"Ġl iving\",\"Ġst ruct\",\"in o\",\"Ġse par\",\"her n\",\"Ġresp onse\",\"Ġen joy\",\"Ġv ia\",\"A D\",\"um ents\",\"ace book\",\"Ġmem ber\",\"ib r\",\"iz ing\",\"Ġto ol\",\"ĠM on\",\"ĠWh ile\",\"h ood\",\"ĠA ng\",\"ĠD ef\",\"Ġoff er\",\"T r\",\"a ur\",\"Ġturn ed\",\"ĠJ uly\",\"d own\",\"an ced\",\"Ġrec ently\",\"ĠE ar\",\"Ġc e\",\"ĠSt ar\",\"ĠC ong\",\"rough t\",\"Ġbl ood\",\"Ġhop e\",\"Ġcom ment\",\"ain t\",\"Ġar ri\",\"il es\",\"Ġpartic ip\",\"ough t\",\"ri ption\",\"0 8\",\"4 9\",\"Ġg ave\",\"Ġse lect\",\"Ġkill ed\",\"sy ch\",\"Ġgo es\",\"i j\",\"Ġc oll\",\"Ġimp act\",\"at ives\",\"ĠS er\",\"0 9\",\"ĠAug ust\",\"Ġb oy\",\"d e\",\"ĠD es\",\"Ġf elt\",\"U S\",\"Ġexpect ed\",\"Ġim age\",\"ĠM ark\",\"cc ording\",\"o ice\",\"E C\",\"ĠM ag\",\"en ed\",\"h old\",\"ĠP ost\",\"Ġpre vent\",\"N o\",\"Ġinvol ved\",\"Ġey es\",\"Ġquick ly\",\"A t\",\"un k\",\"Ġbeh av\",\"Ġ ur\",\"Ġl ed\",\"c ome\",\"e y\",\"Ġcand id\",\"Ġear lier\",\"Ġfoc us\",\"et y\",\"P ro\",\"led ge\",\"ix ed\",\"ill ed\",\"Ġpop ular\",\"A P\",\"Ġset t\",\"l ight\",\"Ġvar ious\",\"in ks\",\"Ġlevel s\",\"Ġro ad\",\"ell ig\",\"ab les\",\"he l\",\"itte e\",\"ĠG ener\",\"y pe\",\"Ġhe ard\",\"ic les\",\"Ġm is\",\"Ġus ers\",\"ĠS an\",\"Ġimpro ve\",\"Ġf ather\",\"Ġse arch\",\"The y\",\"v il\",\"Ġprof ess\",\"Ġkn ew\",\"Ġl oss\",\"Ġev ents\",\"6 5\",\"Ġb illion\",\"0 7\",\"0 2\",\"ĠNew s\",\"ĠA M\",\"Ġco ver\",\"w here\",\"ens ion\",\"Ġb ott\",\"Ġare as\",\"en ces\",\"op e\",\"ĠTw itter\",\"a el\",\"Ġget s\",\"ĠGo ogle\",\"Ġs n\",\"i ant\",\"Ġv ote\",\"Ġnear ly\",\"Ġinclud ed\",\"Ġrec ogn\",\"z z\",\"m m\",\"al ed\",\"Ġhappen ed\",\"0 4\",\"Ġh ot\",\"Ġwho se\",\"Ġc ivil\",\"Ġsu ff\",\"o es\",\"it iz\",\"ĠSy ri\",\"Ġresp ond\",\"Ġh on\",\"Ġfeat ures\",\"Ġeconom ic\",\"ĠApr il\",\"r im\",\"Ġtechn ology\",\"Ġo ption\",\"ag ing\",\"Ġpur ch\",\"R e\",\"Ġl at\",\"ch ie\",\"is l\",\"Ġrec omm\",\"u f\",\"Ġtr aining\",\"Ġeffect s\",\"Ġf ast\",\"Ġ201 0\",\"Ġocc ur\",\"Ġwebs ite\",\"Ġem ail\",\"Ġs ens\",\"e ch\",\"Ġo il\",\"Ġinf lu\",\"Ġcurrent ly\",\"ĠS ch\",\"ĠAd d\",\"Ġgo al\",\"Ġsc ient\",\"Ġcon v\",\"1 00\",\"em y\",\"Ġdec ided\",\"Ġtra vel\",\"Ġm ention\",\"L L\",\"0 3\",\"Ġe lection\",\"Ġph one\",\"Ġlook s\",\"Ġsit uation\",\"Ġc y\",\"Ġh or\",\"b ed\",\"ĠCour t\",\"a ily\",\"av es\",\"Ġqu ality\",\"ĠCom p\",\"w ise\",\"Ġt able\",\"Ġst aff\",\"ĠW ind\",\"et t\",\"Ġtri ed\",\"ide red\",\"Ġadd ition\",\"Ġb ox\",\"Ġl ack\",\"ar ily\",\"Ġw ide\",\"Ġm id\",\"Ġbo ard\",\"ys is\",\"Ġant i\",\"h a\",\"Ġd ig\",\"en ing\",\"Ġd ro\",\"C on\",\"6 8\",\"Ġsl ow\",\"b ased\",\"se qu\",\"Ġp ath\",\"E x\",\"ak er\",\"Ġwork ed\",\"Ġp en\",\"Ġeng ine\",\"Ġlook ed\",\"ĠSu per\",\"ĠS erv\",\"Ġvict im\",\"U n\",\"Ġproper ty\",\"Ġint rodu\",\"Ġexec ut\",\"ĠP M\",\"L e\",\"Ġcol or\",\"ĠM ore\",\"Ġ6 0\",\"Ġnet work\",\"Ġd ate\",\"c ul\",\"id ge\",\"Ġext ra\",\"3 1\",\"Ġs le\",\"6 7\",\"Ġw ond\",\"Ġreport s\",\"j ust\",\"ĠAust ral\",\"Ġcap ital\",\"Ġen s\",\"Ġcomm and\",\"Ġallow ed\",\"Ġpre p\",\"Ġca pt\",\"h ib\",\"Ġnum bers\",\"ch an\",\"Ġf air\",\"m p\",\"om s\",\"Ġre ach\",\"W ith\",\"t ain\",\"Ġbro ad\",\"Ġcou ple\",\"ec ause\",\"ly ing\",\"ĠF eb\",\"Ġsc reen\",\"Ġl ives\",\"Ġpri or\",\"ĠCong ress\",\"A r\",\"Ġappro ach\",\"Ġe mer\",\"ar ies\",\"ĠD is\",\"s erv\",\"ĠN e\",\"Ġbu ilt\",\"c ies\",\"Ġre pe\",\"Ġrul es\",\"for ce\",\"ĠP al\",\"Ġfin ancial\",\"Ġcons idered\",\"ĠCh ar\",\"n ces\",\"ĠI S\",\"Ġb rought\",\"Ġb i\",\"i ers\",\"ĠS im\",\"O P\",\"Ġproduct s\",\"Ġvis it\",\"Ġdoc ument\",\"Ġcon duct\",\"Ġcomplete ly\",\"in ing\",\"ĠCal if\",\"ib ly\",\"Ġwr itten\",\"ĠT V\",\"em ents\",\"Ġd raw\",\"O ne\",\"Ġpub lished\",\"Ġsec ret\",\"r ain\",\"he t\",\"ĠF acebook\",\"ond ay\",\"ĠU p\",\"Ġsex ual\",\"Ġth ous\",\"ĠP at\",\"Ġ ess\",\"Ġstand ard\",\"Ġar m\",\"g es\",\"ect ion\",\"Ġf ell\",\"Ġfore ign\",\"an i\",\"ĠFr iday\",\"Ġreg ular\",\"in ary\",\"Ġincre ased\",\"Ġus ually\",\"Ġdem on\",\"Ġd ark\",\"Ġadd itional\",\"ro l\",\"ĠO f\",\"Ġprodu ction\",\"! !\",\"und red\",\"Ġintern ational\",\"id ents\",\"ĠF ree\",\"rou p\",\"Ġr ace\",\"Ġm ach\",\"Ġh uge\",\"A ll\",\"le ar\",\"ove mber\",\"Ġto wn\",\"Ġatt ention\",\"ĠO ff\",\"y ond\",\"ĠThe n\",\"f ield\",\"Ġter ror\",\"ra z\",\"ĠB o\",\"Ġmeet ing\",\"ĠP ark\",\"Ġar rest\",\"Ġf ear\",\"Ġa w\",\"ĠV al\",\"or ing\",\"' ,\",\"Ġext reme\",\"ar r\",\"Ġwork ers\",\"A fter\",\"Ġ3 1\",\"n et\",\"am ent\",\"Ġdirect ly\",\"Ġpop ulation\",\"ub e\",\"ĠOct ober\",\"ĠI N\",\"ĠJan uary\",\"5 9\",\"ĠDav id\",\"Ġc ross\",\"ce mber\",\"ĠF irst\",\"Ġmess age\",\"ir it\",\"Ġn ation\",\"Ġp oll\",\"is ions\",\"Ġansw er\",\"n y\",\"is ode\",\"Ġcar ry\",\"ĠRuss ia\",\"Ġhe ar\",\"eng th\",\"ro y\",\"Ġn atural\",\"in ally\",\"Ġdo g\",\"m itted\",\"Ġtr ade\",\"Ġsub st\",\"Ġmult iple\",\"ĠAf ric\",\"Ġf ans\",\"Ġs ort\",\"Ġgl obal\",\"ic ation\",\"ĠW ed\",\"ar a\",\"Ġa chie\",\"Ġlangu age\",\"ve y\",\"Ġt al\",\"Ġnecess ary\",\"Ġdet ails\",\"Ġs en\",\"ĠS und\",\"ĠRe g\",\"ĠR ec\",\"0 6\",\"Ġs il\",\"ress ive\",\"Ġmed ical\",\"un ch\",\"orn ia\",\"Ġu nd\",\"f ort\",\"oc ks\",\"ĠM onday\",\"ues day\",\"c raft\",\"7 7\",\"ur t\",\"Ġ ver\",\"ĠH ill\",\"Ġrece ive\",\"Ġmor ning\",\"es tern\",\"Ġb ank\",\"Ġs at\",\"ir th\",\"ĠH igh\",\"Ġdev ice\",\"ĠTH E\",\"ĠCent er\",\"Ġsaf e\",\"Ġp le\",\"ĠCanad a\",\"Ġsystem s\",\"Ġass ist\",\"Ġsur v\",\"Ġb attle\",\"ĠS oc\",\"vert is\",\"S he\",\"Ġp aper\",\"Ġgrow th\",\"Ġc ast\",\"S c\",\"Ġpl ans\",\"ll ed\",\"Ġpart s\",\"Ġw all\",\"Ġmove ment\",\"Ġpract ice\",\"im ately\",\"Ġdis play\",\"Ġsomet imes\",\"om p\",\"ĠP aul\",\"ĠY es\",\"k ing\",\"5 8\",\"o ly\",\"Ġs on\",\"Ġav oid\",\"ok es\",\"ĠJ ew\",\"Ġto wards\",\"as c\",\"Ġ //\",\"ĠK ore\",\"Ġtalk ing\",\"Ġcor rect\",\"Ġsp ent\",\"ic ks\",\"i able\",\"e ared\",\"Ġter m\",\"Ġwant s\",\"om ing\",\"Ġ ut\",\"Ġdou b\",\"Ġfor ces\",\"Ġp lease\",\"6 9\",\"ĠN ovember\",\"at form\",\"ond on\",\"Ġon es\",\"Ġimmedi ately\",\"ĠRuss ian\",\"ĠM et\",\"Ġde g\",\"Ġparent s\",\"C H\",\"ĠAmeric ans\",\"al y\",\"ĠM od\",\"Ġsh own\",\"Ġcond itions\",\"Ġst uff\",\"Ġre b\",\"ĠY our\",\"Ġinclud es\",\"n own\",\"ĠS am\",\"Ġexper ien\",\"m ission\",\"ĠE ven\",\"augh t\",\"Ġannoun ced\",\"ĠRepublic an\",\"Ġdeter min\",\"Ġdescrib ed\",\"ĠCount y\",\"( )\",\"Ġdo or\",\"Ġchang ed\",\"Ġne igh\",\"ĠH ere\",\"Ġcle an\",\"Ġp an\",\"ĠDe cember\",\"ĠEurope an\",\"ir ing\",\"ap ter\",\"Ġcl ub\",\"ĠT uesday\",\"Ġp aid\",\"ĠN et\",\"Ġattack s\",\"Ġcharact ers\",\"Ġal one\",\"Ġdirect or\",\"d om\",\"Ġ3 5\",\"Ġl oad\",\"Ġr out\",\"ĠCalif ornia\",\"Ġfin ally\",\"Ġr ac\",\"Ġcont r\",\"Ġexact ly\",\"res h\",\"p ri\",\"ĠIs lam\",\"Ġn ature\",\"Ġcare er\",\"Ġlat est\",\"Ġcon vers\",\"ĠS l\",\"p ose\",\"ci ent\",\"ĠIn c\",\"iv ity\",\"8 8\",\"ĠA tt\",\"ĠM or\",\"nes day\",\"Ġwe ight\",\"k en\",\"Ġnot e\",\"Ġteam s\",\"Ġ \\\\\",\"air s\",\"ĠG reen\",\"Ġh undred\",\"on ent\",\"Ġstre ng\",\"Ġcons ist\",\"ic ated\",\"Ġreg ul\",\"Ġl ic\",\"ast ic\",\"Ġt en\",\"urs day\",\"ellig ence\",\"ous ly\",\"ĠU K\",\"B I\",\"Ġcost s\",\"Ġind epend\",\"ĠA P\",\"Ġnorm al\",\"Ġh om\",\"Ġob vious\",\"Ġs we\",\"Ġst ar\",\"Ġread y\",\"ac her\",\"Ġimp lement\",\"g est\",\"Ġs ong\",\"ĠG et\",\"ĠL ab\",\"Ġinterest ing\",\"us ing\",\"Ġg iving\",\"ĠSund ay\",\"Ġet c\",\"Ġm iddle\",\"Ġrem ember\",\"r ight\",\"os ition\",\"ut ions\",\"Ġm ax\",\"4 6\",\"Ġyour self\",\"Ġdem and\",\"Ġtreat ment\",\"Ġd anger\",\"ĠC ons\",\"Ġgu y\",\"ĠBrit ish\",\"Ġphys ical\",\"Ġrel ated\",\"Ġrem ain\",\"Ġcould n\",\"Ġref er\",\"Ġc itiz\",\"b ox\",\"EN T\",\"bo ard\",\"Ġin n\",\"I G\",\"er o\",\"ĠSt reet\",\"osp ital\",\"ren ch\",\"cher s\",\"Ġst ra\",\"O L\",\"ag er\",\"ĠA N\",\"Ġeas ily\",\"I A\",\"en ge\",\"in y\",\"Ġcl os\",\"ock ed\",\"Ġus es\",\"ĠC oun\",\"I m\",\"u ild\",\"? ?\",\"m ore\",\"Ġan g\",\"Ġwr ite\",\"ol ute\",\"5 7\",\"Ġlead er\",\"Ġread ing\",\"< /\",\"Ġaut om\",\"est s\",\"4 3\",\"Ġleg isl\",\"ĠG old\",\"Ġdesign ed\",\"ĠS T\",\"ĠLe g\",\"a res\",\"Ġbe aut\",\"ĠT ex\",\"Ġappear s\",\"Ġstru gg\",\"ĠR om\",\"Ġ 00\",\"Ġcho ice\",\"Ġparticular ly\",\"ĠF rom\",\"op er\",\"ĠL ondon\",\"ann ed\",\"Ġallow s\",\"ob ile\",\"Ġdiffere nce\",\"âĢ ¢\",\"ĠV iew\",\"ĠWed nesday\",\"Ġal though\",\"Ġrel ative\",\"Ġapplic ation\",\"ate ver\",\"Ġare n\",\"Ġmy self\",\"Ġim ag\",\"Ġdis e\",\"Ġsoc iety\",\"Ġfre qu\",\"ĠEng lish\",\"Ġpo or\",\"ĠD ay\",\"Ġwrit ing\",\"Ġse ven\",\"Ġstart ing\",\"Ġb ud\",\"Ġpr int\",\"ĠTr ans\",\"uf act\",\"ĠSt ud\",\"n ew\",\"Ġcr im\",\"Ġg ives\",\"Ġco ol\",\"a e\",\"i ance\",\"ĠGener al\",\"Ġthink ing\",\"Ġsa ve\",\"Ġlim ited\",\"ĠPart y\",\"Ġmean ing\",\"p en\",\"ow ers\",\"ĠJ ack\",\"E M\",\"Ġn ice\",\"ru pt\",\"Ġg as\",\"Ġe ight\",\"Ġfe et\",\"Ġeff ort\",\"Ġ ign\",\"ic it\",\"B l\",\"co in\",\"Ġop in\",\"Ġbr ain\",\"Wh ile\",\"he st\",\"ĠTh ursday\",\"Ġwould n\",\"augh ter\",\"Ġtou ch\",\"le ments\",\"Ġstud ies\",\"Ġcent er\",\"c ont\",\"or ge\",\"Ġcomput er\",\"Ġinvestig ation\",\"P l\",\"or ks\",\"Ġ200 8\",\"Ġincre asing\",\"Ġst ore\",\"Ġcom ments\",\"Ġb al\",\"m en\",\"Ġdo ll\",\"Ġl iber\",\"Ġw ife\",\"Ġlaw s\",\"atur day\",\"it ness\",\"Ġmod ern\",\"ĠS k\",\"Ġadminist ration\",\"Ġopportun ity\",\"Ġs al\",\"Ġpower ful\",\"M y\",\"Ġclaim s\",\"ĠEar th\",\"ord s\",\"Ġt itle\",\"Ġes c\",\"n ame\",\"N ot\",\"om en\",\"Ġbe yond\",\"Ġc amer\",\"Ġse ll\",\"it ute\",\"ear ch\",\"Ġapp l\",\"im ent\",\"4 2\",\"ĠAr t\",\"Ġun f\",\"Ġviol ence\",\"ur g\",\"ĠE ast\",\"Ġcomp ared\",\"Ġopt ions\",\"Ġthrough out\",\"Ġv s\",\"ig r\",\". [\",\"ac hes\",\"7 8\",\"Ġfil es\",\"F L\",\"E L\",\"ar ian\",\"ĠJ ames\",\"ĠA ir\",\"an ch\",\"Ġdet ail\",\"Ġpie ce\",\"P S\",\"Ġn amed\",\"Ġeduc ation\",\"Ġdri ve\",\"Ġitem s\",\"Ġstud ent\",\"ic ed\",\": :\",\"ic o\",\"Ġth row\",\"Ġsc ene\",\"Ġcomple x\",\"Ġ200 9\",\"Ġpre c\",\"ĠB re\",\"7 9\",\"Ġcon cept\",\"Ġstat us\",\"am ing\",\"Ġd ied\",\"Ġknow ledge\",\"Ġbegin ning\",\"O D\",\"ru ary\",\"Ġcertain ly\",\"Ġgu ys\",\"Ġsl ight\",\"in n\",\"ound s\",\"Ġf ine\",\"Ġf at\",\"ic ations\",\"Ġper haps\",\"ĠA nt\",\"Ġinc ome\",\"Ġhtt ps\",\"Ġmajor ity\",\"port s\",\"st on\",\"Ġgreat er\",\"Ġfe ed\",\"ent ially\",\"Ġsaf ety\",\"Ġun ique\",\"and om\",\"Ġg one\",\"Ġshow ed\",\"Ġhist or\",\"Ġcoun ter\",\"i us\",\"id a\",\"Ġlead ing\",\"i pe\",\"Ġs end\",\"ĠDon ald\",\"er ve\",\"Ġdef ense\",\"ines e\",\"Ġy es\",\"ĠF ire\",\"ĠMus lim\",\"ra q\",\"Ġcontin ued\",\"os h\",\"Ġprov ides\",\"Ġpr ison\",\"ĠP re\",\"Ġhapp y\",\"Ġeconom y\",\"Ġtr ust\",\"ag s\",\"ĠG ame\",\"Ġweap ons\",\"um an\",\"ĠC le\",\"it ation\",\"Ġanal ysis\",\"ĠT imes\",\"Ġsc ience\",\"- >\",\"Ġfig ure\",\"Ġdis app\",\"ent y\",\"Ġsoft ware\",\"Ġu lt\",\"Ġoffic ers\",\"N ew\",\"I s\",\"Ġrem ains\",\"ĠInd ia\",\"Ġp sych\",\"ri ef\",\"Ġc at\",\"es c\",\"Ġob serv\",\"Ġst age\",\"ĠD ark\",\"Ġent er\",\"ch ange\",\"Ġpass ed\",\"Ġdes pite\",\"ĠO ut\",\"Ġmov ie\",\"r s\",\"Ġv oice\",\"m ine\",\"ĠPl ay\",\"Ġto ward\",\"ĠT er\",\"Ġreg ion\",\"Ġval ues\",\"or ters\",\"Ġm ount\",\"Ġoffic er\",\"ĠO ther\",\"b an\",\"Ġh ous\",\"w ood\",\"ro om\",\"I V\",\"ĠS un\",\"se e\",\"ĠO ver\",\"ro g\",\"9 0\",\"Ġl ay\",\"ĠT ur\",\"a wn\",\"Ġpress ure\",\"ĠS ub\",\"Ġbook s\",\"ed om\",\"ĠS and\",\"A A\",\"ag o\",\"Ġre asons\",\"f ord\",\"Ġactiv ity\",\"U T\",\"N ow\",\"ĠSen ate\",\"ce ll\",\"n ight\",\"Ġcall s\",\"in ter\",\"Ġlet ter\",\"ĠR ob\",\"ĠJ e\",\"Ġcho ose\",\"ĠL aw\",\"G et\",\"B e\",\"Ġro b\",\"Ġtyp es\",\"Ġpl atform\",\"Ġqu arter\",\"R A\",\"ĠT ime\",\"Ġmay be\",\"ĠC r\",\"9 5\",\"p re\",\"Ġmov ing\",\"Ġl if\",\"Ġgo ld\",\"Ġs om\",\"Ġpat ients\",\"Ġtr uth\",\"ĠK e\",\"ur ance\",\"ant ly\",\"m ar\",\"Ġchar ge\",\"ĠG reat\",\"Ġce le\",\"---------------- ----------------\",\"Ġro ck\",\"ro id\",\"an cy\",\"Ġcred it\",\"a ud\",\"B y\",\"ĠE very\",\"Ġmov ed\",\"ing er\",\"rib ution\",\"Ġn ames\",\"Ġstra ight\",\"ĠHe alth\",\"ĠW ell\",\"Ġfe ature\",\"Ġr ule\",\"Ġsc he\",\"in ated\",\"ĠMich ael\",\"ber g\",\"4 1\",\"il ed\",\"b and\",\"Ġcl ick\",\"ĠAng el\",\"on ents\",\"Â Ń\",\"ĠI raq\",\"ĠS aturday\",\"Ġa ware\",\"p art\",\"Ġpat tern\",\"O W\",\"ĠL et\",\"Ġgr ad\",\"ign ed\",\"Ġassoci ated\",\"Ġst yle\",\"n o\",\"i ation\",\"a ith\",\"il ies\",\"Ġst ories\",\"ur ation\",\"Ġindividual s\",\"ĠâĢ ¦\",\"m iss\",\"ĠAss oci\",\"ish ing\",\"ab y\",\"Ġsum mer\",\"ĠB en\",\"Ġ3 2\",\"Ġar ch\",\"ut y\",\"ĠTex as\",\"h ol\",\"Ġfull y\",\"Ġm ill\",\"Ġfollow ed\",\"ĠB ill\",\"ĠInd ian\",\"ĠSec ret\",\"ĠB el\",\"ĠFeb ruary\",\"Ġjob s\",\"Ġseem ed\",\"ĠGo vern\",\"i pped\",\"Ġreal ity\",\"Ġl ines\",\"Ġp ark\",\"Ġmeas ure\",\"ĠO ur\",\"I M\",\"Ġbro ther\",\"Ġgrow ing\",\"Ġb an\",\"Ġest im\",\"Ġc ry\",\"ĠS chool\",\"Ġme chan\",\"ĠO F\",\"ĠWind ows\",\"Ġr ates\",\"ĠO h\",\"Ġpos itive\",\"Ġcult ure\",\"ist ics\",\"ic a\",\"Ġh ar\",\"y a\",\"ite ly\",\"i pp\",\"Ġm ap\",\"en cies\",\"ĠWill iam\",\"I I\",\"ak ers\",\"5 6\",\"ĠM art\",\"ĠR em\",\"Ġal tern\",\"it ude\",\"Ġco ach\",\"row d\",\"D on\",\"Ġk ids\",\"Ġj ournal\",\"Ġcor por\",\"Ġf alse\",\"Ġwe b\",\"Ġsle ep\",\"Ġcont ain\",\"Ġst o\",\"Ġb ed\",\"iver se\",\"ĠR ich\",\"ĠCh inese\",\"Ġp un\",\"Ġme ant\",\"k nown\",\"Ġnot ice\",\"Ġfavor ite\",\"a ven\",\"Ġcond ition\",\"Ġpur pose\",\") )\",\"Ġorgan ization\",\"Ġchall eng\",\"Ġman ufact\",\"Ġsus p\",\"ĠA c\",\"Ġcrit ic\",\"un es\",\"uc lear\",\"Ġm er\",\"vent ion\",\"Ġ8 0\",\"Ġm ist\",\"ĠU s\",\"ĠT or\",\"htt p\",\"ol f\",\"Ġlarg er\",\"Ġadv ant\",\"Ġrese ar\",\"Ġact ions\",\"m l\",\"Ġke pt\",\"Ġa im\",\", '\",\"c ol\",\"Ġbenef its\",\"if ying\",\"Ġact ual\",\"ĠIntern ational\",\"Ġveh icle\",\"Ġch ief\",\"Ġeff orts\",\"ĠLe ague\",\"ĠM ost\",\"Ġwa it\",\"Ġad ult\",\"Ġover all\",\"Ġspe ech\",\"Ġhigh ly\",\"Ġfem ale\",\"Ġer ror\",\"Ġeffect ive\",\"5 4\",\"Ġenc our\",\"w ell\",\"Ġfail ed\",\"Ġcons erv\",\"Ġprogram s\",\"Ġt rou\",\"Ġa head\",\"5 00\",\"vertis ement\",\"I P\",\"ĠF ound\",\"p ir\",\"Ġ %\",\"Ġcr ime\",\"and er\",\"Ġloc ation\",\"ĠI ran\",\"Ġbehav ior\",\"az ing\",\"Ġr are\",\"Ġem b\",\"Ġca used\",\"Ġsh ip\",\"Ġact ive\",\"Ġcont ribut\",\"Ġg reen\",\"Ġac qu\",\"Ġref lect\",\"ven ue\",\"Ġf irm\",\"Ġb irth\",\"] .\",\"Ġclear ly\",\"Ġem ot\",\"Ġag ency\",\"ri age\",\"Ġmem ory\",\"9 8\",\"S A\",\"ĠSe e\",\"ac ing\",\"C C\",\"Ġbig gest\",\"Ġr ap\",\"Ġbas ic\",\"Ġb and\",\"e at\",\"Ġsus pect\",\"ĠM ac\",\"Ġ9 0\",\"m ark\",\"ist an\",\"Ġsp read\",\"am s\",\"k i\",\"as y\",\"ra v\",\"ĠR ober\",\"Ġdemon str\",\"r ated\",\"Ġabs olute\",\"Ġpl aces\",\"Ġim pl\",\"ibr ary\",\"Ġc ards\",\"Ġdest roy\",\"Ġv irt\",\"ve re\",\"Ġapp eared\",\"y an\",\"p oint\",\"Ġbe g\",\"Ġtem per\",\"s pe\",\"ant ed\",\"ear s\",\"ĠD irect\",\"Ġl ength\",\"Ġbl og\",\"am b\",\"Ġint eg\",\"Ġres ources\",\"ac c\",\"if ul\",\"Ġsp ot\",\"Ġfor ced\",\"Ġthous ands\",\"ĠMin ister\",\"Ġqu al\",\"ĠF rench\",\"at ically\",\"Ġgener ally\",\"Ġdr ink\",\"Ġth us\",\"I L\",\"od es\",\"Ġappro pri\",\"ĠRe ad\",\"Ġwh om\",\"Ġey e\",\"Ġcol lege\",\"Ġ4 5\",\"ire ction\",\"Ġens ure\",\"Ġapp arent\",\"id ers\",\"Ġrelig ious\",\"Ġmin or\",\"ol ic\",\"Ġt ro\",\"ĠWh y\",\"rib ute\",\"m et\",\"Ġprim ary\",\"Ġdevelop ed\",\"Ġpe ace\",\"Ġsk in\",\"st e\",\"av a\",\"Ġbl ue\",\"Ġfam ilies\",\"Ġ ir\",\"Ġapp ly\",\"Ġin form\",\"ĠSm ith\",\"C T\",\"i i\",\"Ġlim it\",\"Ġres ist\",\"........ ........\",\"um n\",\"Ġconf lic\",\"Ġtw e\",\"ud d\",\"ĠT om\",\"Ġl iter\",\"qu e\",\"b on\",\"Ġha ir\",\"Ġevent ually\",\"Ġp us\",\"Ġhelp ed\",\"Ġag g\",\"or ney\",\"ĠApp le\",\"Ġf it\",\"ĠS ur\",\"Ġpre m\",\"Ġs ales\",\"Ġsecond s\",\"Ġstreng th\",\"Ġfeel ing\",\"¿ ½\",\"Ġt our\",\"Ġknow s\",\"o om\",\"Ġex erc\",\"Ġsom ew\",\"ï ¿½\",\"> >\",\"Ġsp okes\",\"Ġide as\",\"Ġreg ist\",\"so ft\",\"ĠD el\",\"ĠP C\",\"Ġpro pos\",\"Ġlaun ch\",\"Ġbott om\",\"T H\",\"ĠP lease\",\"v est\",\"it z\",\"ĠIn ter\",\"Ġsc ript\",\"Ġr at\",\"ar ning\",\"Ġ il\",\"ĠJ er\",\"ĠA re\",\"Ġwh atever\",\"ok en\",\"ci ence\",\"Ġmod e\",\"Ġag ree\",\"Ġs ources\",\"Ġinit ial\",\"Ġrest rict\",\"Ġwond er\",\"us ion\",\"## ##\",\"ĠS il\",\"vil le\",\"Ġb urn\",\"t w\",\"as ion\",\"ĠÂ £\",\"Ġn or\",\"u ing\",\"Ġre ached\",\"Ġs un\",\"Ġc ateg\",\"ig ration\",\"Ġc ook\",\"Ġprom ot\",\"Ġm ale\",\"Ġcl imate\",\"Ġf ix\",\"Ġalleg ed\",\"U R\",\"all ed\",\"Ġim ages\",\"C ont\",\"ot a\",\"Ġschool s\",\"i os\",\"Ġd rop\",\"Ġst ream\",\"ĠM o\",\"Ġprevious ly\",\"al ing\",\"Ġp et\",\"Ġdou ble\",\"Ġ( @\",\"ann el\",\"Ġdef ault\",\"t ies\",\"Ġr ank\",\"ĠD ec\",\"ĠCoun cil\",\"Ġweap on\",\"Ġst ock\",\"Ġanal y\",\"ĠSt r\",\"Ġpict ure\",\"ĠPol ice\",\"f erence\",\"Ġcent ury\",\"Ġcitiz ens\",\"Ġon to\",\"Ġexp and\",\"Ġhe ro\",\"ĠS ol\",\"Ġw ild\",\"Ġupd ate\",\"Ġcustom ers\",\"r ont\",\"d ef\",\"Ġl ik\",\"Ġcrim inal\",\"ĠChrist ian\",\"S P\",\"7 6\",\"Ġle aving\",\"Ġother wise\",\"ĠD ist\",\"Ġbas is\",\"5 2\",\"5 3\",\"ic ip\",\"ĠB er\",\"Ġrecomm end\",\"Ġfl oor\",\"Ġc rowd\",\"ol es\",\"Ġ7 0\",\"Ġcent ral\",\"ĠE v\",\"Ġd ream\",\"Ġdown load\",\"Ġconf ir\",\"ĠTh om\",\"Ġwind ow\",\"Ġhapp ens\",\"Ġun it\",\"Ġt end\",\"Ġs pl\",\"Ġbec omes\",\"Ġfight ing\",\"Ġpred ict\",\"ĠP ress\",\"ĠP ower\",\"Ġhe avy\",\"ak ed\",\"Ġf an\",\"or ter\",\"ate gy\",\"B A\",\"iz es\",\"Ġsp end\",\"H ere\",\"Ġ200 7\",\"Ġad op\",\"ĠH am\",\"Ġfoot ball\",\"ĠP ort\",\"od ay\",\"5 1\",\"amp ions\",\"Ġtrans fer\",\"h t\",\"Ġ3 8\",\"ter m\",\"ac ity\",\"Ġb ur\",\"] ,\",\"tern al\",\"r ig\",\"b ut\",\"Ġthere fore\",\"ĠB ecause\",\"res p\",\"re y\",\"Ġm ission\",\"S ome\",\"Ġnot ed\",\"Ġass um\",\"Ġdise ase\",\"Ġed it\",\"Ġprog ress\",\"r d\",\"ĠB rown\",\"oc al\",\"Ġadd ing\",\"Ġra ised\",\"ĠAn y\",\"Ġt ick\",\"Ġsee ing\",\"ĠPe ople\",\"Ġagre ement\",\"Ġser ver\",\"Ġw at\",\"Ġdeb ate\",\"Ġsupp osed\",\"il ing\",\"Ġlarg est\",\"Ġsuccess ful\",\"ĠP ri\",\"ĠDemocr atic\",\"Ġj ump\",\"ĠSyri a\",\"Ġown ers\",\"Ġoff ers\",\"Ġshoot ing\",\"Ġeff ic\",\"se y\",\"Ġha ven\",\"ver se\",\"te red\",\"ĠL ight\",\"im al\",\"ĠB ig\",\"Ġdef end\",\"Ġbe at\",\"Ġrecord s\",\"% )\",\"Ġsc en\",\"Ġemploy ees\",\"Ġdev ices\",\"he m\",\"Ġcom mer\",\"ĠM ex\",\"Ġbenef it\",\"ĠPro f\",\"Ġil leg\",\"Ġsur face\",\"ĠAl so\",\"Ġh arm\",\"ing ly\",\"w ide\",\"ĠA lex\",\"Ġsh ut\",\"ĠC ur\",\"Ġl ose\",\"p m\",\"Ġchall enge\",\"se mb\",\"Ġst ation\",\"Ġint elligence\",\"Ġacc ur\",\"ĠFl or\",\"Ġrequ ires\",\"ĠM al\",\"b um\",\"Ġh ospital\",\"Ġsp irit\",\"Ġoff ered\",\"Ġprodu ce\",\"ĠComm un\",\"Ġcreat ing\",\"Ġcr is\",\"s pect\",\"Ġend ed\",\"Ġd aily\",\"Ġvot ers\",\"land s\",\"i as\",\"i h\",\"on a\",\"Ġsm art\",\"ĠOff ice\",\"ĠL ord\",\"ri al\",\"ĠIntern et\",\"Ġcirc um\",\"Ġextreme ly\",\"' .\",\"Ġopin ion\",\"ĠM il\",\"Ġg ain\",\"B S\",\"ĠF in\",\"y p\",\"Ġuse ful\",\"Ġbud get\",\"Ġcom fort\",\"is f\",\"Ġback ground\",\"el ine\",\"Ġep isode\",\"Ġen emy\",\"Ġtri al\",\"Ġestab lish\",\"d ate\",\"ĠC ap\",\"Ġcontin ues\",\"Ġshow ing\",\"ĠUn ion\",\"w ith\",\"Ġpost ed\",\"ĠSy stem\",\"Ġe at\",\"ri an\",\"Ġr ise\",\"ĠGerman y\",\"il s\",\"Ġsign ed\",\"Ġv ill\",\"Ġgr and\",\"m or\",\"ĠEng land\",\"Ġproject s\",\"um ber\",\"Ġconf erence\",\"z a\",\"Ġrespons ible\",\"ĠAr ab\",\"Ġlearn ed\",\"âĢĶ âĢĶ\",\"i pping\",\"ĠGe orge\",\"O C\",\"Ġreturn ed\",\"ĠAustral ia\",\"Ġb rief\",\"Q u\",\"Ġbr and\",\"ill ing\",\"ab led\",\"Ġhig hest\",\"Ġtr ain\",\"ĠComm ission\",\"wh ile\",\"Ġn om\",\"cept ion\",\"Ġm ut\",\"ĠBl ue\",\"Ġinc ident\",\"v ant\",\"8 6\",\"ĠI D\",\"Ġn uclear\",\"7 4\",\"ĠL ike\",\"ĠR E\",\"ĠM icro\",\"l i\",\"m ail\",\"Ġcharg es\",\"8 9\",\"Ġad just\",\"ad o\",\"Ġear th\",\"N A\",\"Ġpr ices\",\"P A\",\"Ġd raft\",\"Ġrun s\",\"Ġcandid ate\",\"ens es\",\"Ġmanag ement\",\"ĠPh il\",\"ĠM iss\",\"Ġte ach\",\"g ram\",\"Ġunderstand ing\",\"a it\",\"ic ago\",\"A dd\",\"ĠE p\",\"sec ut\",\"Ġsepar ate\",\"Ġinst ance\",\"Ġe th\",\"Ġun less\",\"**** ****\",\"ĠF ore\",\"in ate\",\"Ġoper ations\",\"S p\",\"Ġf aith\",\"g ar\",\"ĠCh urch\",\"ron ic\",\"Ġconf ig\",\"os ure\",\"Ġactiv ities\",\"Ġtrad itional\",\"Ġ3 6\",\"Ġd irection\",\"Ġmach ine\",\"Ġsur round\",\"Ġp ush\",\"un ction\",\"ĠE U\",\"Ġeas ier\",\"Ġarg ument\",\"G B\",\"Ġm icro\",\"Ġsp ending\",\"iz ations\",\"Ġthe ory\",\"ad ow\",\"Ġcall ing\",\"ĠL ast\",\"Ġd er\",\"Ġinflu ence\",\"Ġcomm it\",\"Ġph oto\",\"Ġun c\",\"ist ry\",\"g n\",\"ast e\",\"ack s\",\"Ġdis p\",\"ad y\",\"d o\",\"ĠG ood\",\"Ġ `\",\"Ġw ish\",\"Ġreve aled\",\"Âł Âł\",\"l ig\",\"Ġen force\",\"ĠComm ittee\",\"Ġche m\",\"Ġmil es\",\"Ġinterest ed\",\"Ġsol ution\",\"ic y\",\"in ct\",\"Ġ- >\",\"ĠD et\",\"Ġrem oved\",\"Ġcomp ar\",\"e ah\",\"Ġpl ant\",\"ĠS ince\",\"Ġachie ve\",\"Ġadvant age\",\"Ġslight ly\",\"b ing\",\"Ġpl aced\",\"u nder\",\"201 5\",\"ĠM ad\",\"Ġt im\",\"os es\",\"Ġc ru\",\"ĠR ock\",\"Ġmost ly\",\"Ġneg ative\",\"Ġset ting\",\"Ġprodu ced\",\"Ġm ur\",\"Ġconnect ion\",\"ĠM er\",\"Ġdri ver\",\"Ġexecut ive\",\"Ġass ault\",\"Ġb orn\",\"ĠV er\",\"t ained\",\"Ġstruct ure\",\"Ġredu ce\",\"Ġdec ades\",\"Ġd ed\",\"u ke\",\"ĠM any\",\"idd en\",\"Ġle ague\",\"S e\",\"Ġjo in\",\"Ġdis co\",\"Ġd ie\",\"c ks\",\"act ions\",\"Ġass ess\",\"ag n\",\"Ġgo als\",\"our s\",\"I R\",\"Ġsen ior\",\"ill er\",\"m od\",\"ip ment\",\"oc ol\",\"u y\",\"ĠQ ue\",\"Ġpart ies\",\"ir gin\",\"Ġle arning\",\"it able\",\"Ġstre et\",\"Ġcamer a\",\"A pp\",\"Ġsk ills\",\"b re\",\"c ious\",\"Ġcele br\",\"ĠFr anc\",\"Ġexist ing\",\"Ġwill ing\",\"l or\",\"Ġ id\",\"ĠSp ace\",\"Ġcrit ical\",\"ĠL a\",\"ortun ately\",\"Ġser ve\",\"Ġc old\",\"Ġspec ies\",\"T S\",\"Ġanim als\",\"ĠB ay\",\"Ġold er\",\"ĠU nder\",\"est ic\",\"ĠT re\",\"Ġte acher\",\"Ġpre fer\",\"v is\",\"Ġth read\",\"ĠM att\",\"Ġmanag er\",\"ãĥ »\",\"Ġprofess ional\",\"ĠV ol\",\"Ġnot es\",\"The se\",\"ul a\",\"Ġf resh\",\"ent ed\",\"u zz\",\"ed y\",\"clus ion\",\"ĠR el\",\"Ġdoub t\",\"E O\",\"Ġopen ed\",\"ĠB it\",\"Ad vertisement\",\"Ġgu ess\",\"ĠU N\",\"Ġse qu\",\"Ġexpl ain\",\"ott en\",\"Ġatt ract\",\"ak s\",\"Ġstr ing\",\"Ġcont ext\",\"oss ible\",\"ĠRepublic ans\",\"Ġsol id\",\"Ġc ities\",\"Ġask ing\",\"Ġr andom\",\"u ps\",\"ur ies\",\"ar ant\",\"dd en\",\"g l\",\"ĠFlor ida\",\"Ġdep end\",\"ĠSc ott\",\"Ġ3 3\",\"Ġi T\",\"ic on\",\"Ġmention ed\",\"Ġ2 000\",\"Ġclaim ed\",\"Ġdefin itely\",\"ul f\",\"Ġc ore\",\"Ġopen ing\",\"ĠCon st\",\"wh ich\",\"ĠT ra\",\"A G\",\"7 2\",\"Ġbelie ved\",\"ad a\",\"Ġ4 8\",\"ĠSec urity\",\"yr ight\",\"ĠP et\",\"ĠL ou\",\"Ġhold ing\",\"======== ========\",\"Ġ ice\",\"Ġb row\",\"Ġauthor ities\",\"h ost\",\"w ord\",\"Ġsc ore\",\"ĠD iv\",\"Ġcell s\",\"Ġtrans l\",\"Ġneigh bor\",\"Ġrem ove\",\"u ct\",\"Ġdist rict\",\"ĠA ccording\",\"Ġwor se\",\"Ġconcern s\",\"Ġpresident ial\",\"Ġpolic ies\",\"ĠH all\",\"7 3\",\"Ġh us\",\"A Y\",\"Ġ200 6\",\"ĠJ ud\",\"Ġindepend ent\",\"ĠJust ice\",\"ili ar\",\"pr int\",\"igh ter\",\"Ġprotect ion\",\"z en\",\"Ġsu dden\",\"h ouse\",\"ĠJ es\",\"P R\",\"ĠIn f\",\"Ġb ul\",\"Ġ _\",\"ĠServ ice\",\"ĠP R\",\"Ġstr ategy\",\"ff ect\",\"Ġgirl s\",\"Ġmiss ing\",\"oy al\",\"ĠTe am\",\"ul ated\",\"Ġd at\",\"Ġpolit ics\",\"ab or\",\"A ccording\",\"Ġspe ll\",\"Ġg raph\",\"ort hern\",\"T C\",\"A b\",\"Ġlab or\",\"is her\",\"Ġk ick\",\"ĠiT unes\",\"Ġstep s\",\"pos es\",\"Ġsmall er\",\"E n\",\"ber t\",\"Ġro ll\",\"Ġresear chers\",\"Ġcl osed\",\"Ġtrans port\",\"Ġlaw y\",\"________ ________\",\"ĠCh icago\",\"Ġas pect\",\"Ġn one\",\"Ġmar riage\",\"9 6\",\"Ġe lements\",\"ĠF re\",\"ĠS al\",\"Ġd ram\",\"F C\",\"t op\",\"e qu\",\"Ġhe aring\",\"Ġsupport ed\",\"Ġtest ing\",\"co hol\",\"Ġmass ive\",\"Ġst ick\",\"Ġgu ard\",\"is co\",\"ph one\",\"F rom\",\"How ever\",\"Ġb order\",\"Ġcop y\",\"ograph y\",\"l ist\",\"7 1\",\"Ġown er\",\"cl ass\",\"ru it\",\"r ate\",\"ĠO nce\",\"Ġdig ital\",\"Ġt ask\",\"ER S\",\"Ġinc red\",\"t es\",\"+ +\",\"ĠFr ance\",\"Ġb reat\",\"ow l\",\"Ġiss ued\",\"ĠW estern\",\"Ġdet ect\",\"Ġpart ners\",\"Ġsh ared\",\"ĠC all\",\"Ġcan cer\",\"ac he\",\"rib e\",\"Ġexpl ained\",\"Ġhe at\",\"{ \\\"\",\"Ġinvest ment\",\"ĠB ook\",\"Ġw ood\",\"Ġtool s\",\"ĠAl though\",\"Ġbelie f\",\"Ġcris is\",\"Ġg e\",\"ĠM P\",\"Ġoper ation\",\"ty pe\",\"~ ~\",\"g a\",\"Ġcont ains\",\"ant a\",\"Ġexp ress\",\"ĠG roup\",\"ĠJ ournal\",\"k a\",\"Ġam b\",\"ĠUS A\",\"Ġfind ing\",\"Ġfund ing\",\"h ow\",\"Ġestab lished\",\"ide os\",\"Ġdeg ree\",\"Ġdanger ous\",\"ang ing\",\"Ġfre edom\",\"pp ort\",\"out hern\",\"Ġch urch\",\"Ġc atch\",\"ĠTw o\",\"Ġpres ence\",\"ĠGu ard\",\"U p\",\"Ġauthor ity\",\"ĠPro ject\",\"Ġbut ton\",\"Ġcon sequ\",\"Ġval id\",\"Ġwe ak\",\"Ġstart s\",\"Ġref erence\",\"ĠM em\",\"\\\" )\",\"U N\",\"or age\",\"ĠO pen\",\"Ġcol lection\",\"y m\",\"g ency\",\"Ġbeaut iful\",\"ro s\",\"Ġtell s\",\"Ġwa iting\",\"n el\",\"Ġprov iding\",\"ĠDemocr ats\",\"Ġd aughter\",\"Ġm aster\",\"Ġpur poses\",\"ĠJapan ese\",\"Ġequ al\",\"Ġturn s\",\"Ġdoc uments\",\"Ġwatch ing\",\"R es\",\"Ġr an\",\"201 4\",\"Ġre ject\",\"ĠKore a\",\"Ġvictim s\",\"Le vel\",\"ere nces\",\"Ġw itness\",\"Ġ3 4\",\"Ġre form\",\"com ing\",\"Ġocc up\",\"Ġc aught\",\"Ġtra ffic\",\"ad ing\",\"Ġmod els\",\"ar io\",\"Ġserv ed\",\"Ġb atter\",\"u ate\",\"ĠSecret ary\",\"Ġagre ed\",\"Ġtr uly\",\"yn am\",\"ĠR et\",\"Ġun its\",\"ĠRes earch\",\"h and\",\"az ine\",\"ĠM ike\",\"Ġvar iety\",\"ot al\",\"Ġam azing\",\"Ġconfir med\",\"Ġentire ly\",\"Ġpurch ase\",\"Ġe lement\",\"Ġc ash\",\"Ġdeter mine\",\"D e\",\"Ġc ars\",\"ĠW all\",\"â ĸ\",\"Ġview s\",\"Ġdrug s\",\"Ġdep artment\",\"ĠSt ep\",\"u it\",\"Ġ3 9\",\"as ure\",\"ĠCl ass\",\"Ġc overed\",\"ĠB ank\",\"Ġme re\",\"u ana\",\"Ġmult i\",\"Ġm ix\",\"Ġun like\",\"lev ision\",\"Ġsto pped\",\"Ġs em\",\"ĠG al\",\"ul es\",\"Ġwe l\",\"ĠJohn son\",\"l a\",\"Ġsk ill\",\"Ġbec oming\",\"ri e\",\"Ġappropri ate\",\"f e\",\"ell ow\",\"ĠPro t\",\"ul ate\",\"oc ation\",\"Ġweek end\",\"od ies\",\"Ġsit es\",\"Ġanim al\",\"ĠT im\",\"Ġsc ale\",\"Ġcharg ed\",\"Ġinst ruct\",\"ill a\",\"Ġmethod s\",\"Ġc ert\",\"Ġjud ge\",\"ĠH el\",\"Ġdoll ars\",\"Ġstand ing\",\"ĠS qu\",\"Ġdeb t\",\"l iam\",\"Ġdri ving\",\"ĠS um\",\"ĠEd ition\",\"Ġal bum\",\"and on\",\"I F\",\"ĠU k\",\"6 3\",\"ad er\",\"Ġcommer cial\",\"es h\",\"ĠGovern ment\",\"Ġdisc overed\",\"Ġout put\",\"ĠHill ary\",\"ĠCar ol\",\"Ġ200 5\",\"Ġab use\",\"anc ing\",\"Ġsw itch\",\"Ġann ual\",\"T w\",\"Ġst ated\",\"ag ement\",\"in ner\",\"Ġdem ocr\",\"Ġres idents\",\"Ġallow ing\",\"Ġfact ors\",\"od d\",\"Ġf uck\",\"em ies\",\"Ġoccur red\",\"ot i\",\"Ġn orth\",\"ĠP ublic\",\"Ġinj ury\",\"Ġins urance\",\"C L\",\"oll y\",\"ã Ģ\",\"Ġrepe ated\",\"Ġar ms\",\"ang ed\",\"Ġconst ruction\",\"Ġf le\",\"P U\",\"ic ians\",\"Ġfor ms\",\"ĠMc C\",\"ant ic\",\"Ġm ental\",\"p ire\",\"Ġequ ipment\",\"Ġf ant\",\"Ġdiscuss ion\",\"Ġregard ing\",\"k in\",\"ar p\",\"Ġch air\",\"og ue\",\"Ġpro ceed\",\"ĠI d\",\"O ur\",\"Ġmur der\",\"M an\",\"Ġ4 9\",\"as p\",\"Ġsupp ly\",\"Ġin put\",\"Ġwe alth\",\"liam ent\",\"Ġpro ced\",\"or ial\",\"ĠSt at\",\"ĠN FL\",\"hen s\",\"ĠInst itute\",\"Ġput ting\",\"ourn ament\",\"et ic\",\"Ġloc ated\",\"Ġk id\",\"er ia\",\"r un\",\"Ġpr inc\",\"Ġ !\",\"go ing\",\"ĠB et\",\"Ġcl ot\",\"Ġtell ing\",\"Ġprop osed\",\"i ot\",\"or ry\",\"Ġfund s\",\"g ment\",\"ĠL ife\",\"Ġb aby\",\"ĠB ack\",\"Ġsp oke\",\"Im age\",\"Ġear n\",\"ĠA T\",\"g u\",\"Ġex change\",\"ĠL in\",\"ov ing\",\"Ġp air\",\"M ore\",\"az on\",\"Ġarrest ed\",\"Ġkill ing\",\"c an\",\"ĠC ard\",\"y d\",\"Ġident ified\",\"Ġm obile\",\"Ġthan ks\",\"ony m\",\"ĠF orm\",\"Ġhundred s\",\"ĠCh ris\",\"ĠC at\",\"Ġtre nd\",\"h at\",\"ĠA v\",\"om an\",\"Ġelect ric\",\"ĠW il\",\"S E\",\"O f\",\"Ġrest aur\",\"ot ed\",\"Ġtr ig\",\"Ġn ine\",\"Ġb omb\",\"Wh y\",\"Â ¯\",\"Ġco verage\",\"Ġapp eal\",\"ĠRober t\",\"ĠS up\",\"Ġfin ished\",\"Ġfl ow\",\"Ġdel iver\",\"Ġcal cul\",\"Ġphot os\",\"Ġph il\",\"Ġpie ces\",\"Ġapp re\",\"k es\",\"Ġr ough\",\"D o\",\"Ġpart ner\",\"Ġconcern ed\",\"Ġ3 7\",\"ĠG en\",\"C ol\",\"ct ors\",\"Ġ= >\",\"st ate\",\"Ġsuggest ed\",\"ĠFor ce\",\"C E\",\"Ġher self\",\"ĠPl an\",\"w orks\",\"o oth\",\"ren cy\",\"Ġcor ner\",\"Ġhus band\",\"Ġintern et\",\"ĠA ut\",\"em s\",\"os en\",\"ĠAt l\",\"g en\",\"Ġbal ance\",\"6 2\",\"Ġsound s\",\"te xt\",\"Ġar r\",\"ov es\",\"Ġmill ions\",\"Ġrad io\",\"Ġsat isf\",\"ĠD am\",\"M r\",\"G o\",\"S pe\",\"Ġcomb at\",\"r ant\",\"ĠG ree\",\"Ġf uel\",\"Ġdist ance\",\"Ġtest s\",\"Ġdec re\",\"ĠE r\",\"Ġman aged\",\"D S\",\"Ġt it\",\"Ġmeas ures\",\"ĠL iber\",\"Ġatt end\",\"as hed\",\"ĠJ ose\",\"ĠN ight\",\"d it\",\"ĠN ov\",\"ĠE nd\",\"out s\",\"Ġgener ation\",\"Ġadv oc\",\"y th\",\"Ġconvers ation\",\"ĠS ky\",\"act ive\",\"ce l\",\"ri er\",\"ĠFr ank\",\"Ġg ender\",\"Ġcon cent\",\"Ġcar ried\",\"and a\",\"ĠV irgin\",\"Ġarri ved\",\"ic ide\",\"ad ed\",\"Ġfail ure\",\"Ġmin imum\",\"le ts\",\"Ġwor st\",\"Ġkeep ing\",\"Ġint ended\",\"Ġilleg al\",\"Ġsub sc\",\"Ġdetermin ed\",\"Ġtri p\",\"Y es\",\"Ġra ise\",\"Ġ ~\",\"Ġfeel s\",\"Ġpack age\",\"ĠJ o\",\"h i\",\"201 6\",\"re al\",\"Ġf ra\",\"Ġsy mb\",\"M e\",\"uck y\",\"p ret\",\"ĠK h\",\"ĠEd it\",\"ĠWe b\",\"em ic\",\"ĠCol or\",\"Ġjust ice\",\"I nt\",\"Ġfar m\",\"ck now\",\"\\\" >\",\"el ess\",\"Ġredu ced\",\"Ġ5 00\",\"x x\",\"ĠR ad\",\"ĠW ood\",\"Ġcl in\",\"Ġhy p\",\"il er\",\"ur a\",\"k ins\",\"8 5\",\"6 1\",\"ĠThe ir\",\"ĠM ary\",\"Ġs an\",\"Ġno vel\",\"ĠWh o\",\"Ġcap acity\",\"Ġimp ossible\",\"Ġpl ays\",\"Ġmin ister\",\"ij uana\",\"ic ate\",\"ĠS et\",\"Ġf ram\",\"Ġ ing\",\"Ġcommun ities\",\"ĠF BI\",\"it a\",\"Ġb on\",\"Ġstr ateg\",\"Ġinterest s\",\"l ock\",\"g ers\",\"m as\",\"ĠAN D\",\"Ġconflic t\",\"Ġrequire ments\",\"Ġs ac\",\"Ġoper ating\",\"in i\",\"rel ated\",\"Ġcomm itted\",\"Ġrelative ly\",\"Ġs outh\",\"Â¯ Â¯\",\"Ġaff ord\",\"Ġident ity\",\"Ġdec isions\",\"Ġacc used\",\"pl ace\",\"Ġvict ory\",\"o ch\",\"i at\",\"N ame\",\"C om\",\"t ion\",\"ed s\",\"Ġsee k\",\"Ġt ight\",\"ĠIm ages\",\"Ġinit i\",\"Ġhum ans\",\"Ġfam iliar\",\"Ġaud ience\",\"Ġintern al\",\"vent ure\",\"Ġs ides\",\"ĠT O\",\"Ġd im\",\"Ġcon clud\",\"Ġapp oint\",\"Ġenforce ment\",\"ĠJ im\",\"ĠAssoci ation\",\"Ġcircum st\",\"ĠCanad ian\",\"Ġjo ined\",\"Ġdiffere nces\",\"ĠL os\",\"Ġprot est\",\"Ġtw ice\",\"w in\",\"Ġgl ass\",\"ars h\",\"ĠAr my\",\"Ġexp ression\",\"Ġdec ide\",\"Ġplan ning\",\"an ia\",\"Ġhand le\",\"ĠMicro soft\",\"ĠN or\",\"Ġmax imum\",\"ĠRe v\",\"Ġse a\",\"Ġev al\",\"Ġhel ps\",\"re f\",\"Ġb ound\",\"Ġm outh\",\"Ġstand ards\",\"Ġcl im\",\"ĠC amp\",\"ĠF ox\",\"cl es\",\"Ġar my\",\"ĠTe chn\",\"ack ing\",\"x y\",\"S S\",\"Ġ4 2\",\"Ġbu g\",\"ĠUk rain\",\"ĠM ax\",\"ĠJ ones\",\"ĠSh ow\",\"l o\",\"Ġplan et\",\"Ġ7 5\",\"Ġwin ning\",\"Ġf aster\",\"Ġspe ct\",\"Ġbro ken\",\"T R\",\"Ġdef ined\",\"Ġhealth y\",\"Ġcompet ition\",\"htt ps\",\"ĠIs land\",\"ĠF e\",\"Ġannoun ce\",\"ĠC up\",\"ĠInst ead\",\"Ġcl ient\",\"Ġposs ibly\",\"se ction\",\"ock et\",\"l ook\",\"Ġfin ish\",\"Ġcre w\",\"Ġres erv\",\"Ġed itor\",\"Ġh ate\",\"Ġs ale\",\"Ġcontro vers\",\"Ġp ages\",\"w ing\",\"Ġnum er\",\"Ġopp osition\",\"Ġ200 4\",\"Ġref uge\",\"Ġfl ight\",\"Ġap art\",\"ĠL at\",\"A meric\",\"ĠAfric a\",\"Ġapplic ations\",\"ĠPal est\",\"ĠB ur\",\"Ġg ar\",\"ĠSoc ial\",\"Ġup gr\",\"Ġsh ape\",\"Ġspe aking\",\"ans ion\",\"a o\",\"ĠS n\",\"Ġwor ry\",\"ĠBrit ain\",\"P lease\",\"rou d\",\"Ġh un\",\"Ġintrodu ced\",\"Ġd iet\",\"I nd\",\"ĠSec ond\",\"Ġfun ctions\",\"ut s\",\"ĠE ach\",\"ĠJe ff\",\"Ġst ress\",\"Ġaccount s\",\"Ġgu arant\",\"ĠAn n\",\"ed ia\",\"Ġhon est\",\"Ġt ree\",\"ĠAfric an\",\"ĠB ush\",\"} ,\",\"Ġs ch\",\"ĠOn ly\",\"Ġf if\",\"ig an\",\"Ġexerc ise\",\"ĠEx p\",\"Ġscient ists\",\"Ġlegisl ation\",\"ĠW ork\",\"ĠS pr\",\"Ã Ĥ\",\"ĠH uman\",\"Ġ è\",\"Ġsur vey\",\"Ġr ich\",\"ri p\",\"Ġmain tain\",\"Ġfl o\",\"Ġleaders hip\",\"st ream\",\"ĠIslam ic\",\"Ġ 01\",\"ĠCol lege\",\"Ġmag ic\",\"ĠPr ime\",\"Ġfig ures\",\"201 7\",\"ind er\",\"x ual\",\"ĠDe ad\",\"Ġabsolute ly\",\"Ġfour th\",\"Ġpresent ed\",\"resp ond\",\"rib le\",\"Ġal cohol\",\"at o\",\"ĠD E\",\"por ary\",\"Ġgr ab\",\"Ġvar i\",\"Ġqu ant\",\"ĠPh oto\",\"Ġpl us\",\"r ick\",\"ar ks\",\"Ġaltern ative\",\"Ġp il\",\"Ġappro x\",\"th at\",\"Ġobject s\",\"ĠR o\",\"ĠAnd roid\",\"Ġsignificant ly\",\"ĠR oad\",\"k ay\",\"R ead\",\"av or\",\"Ġa cknow\",\"ĠH D\",\"ĠS ing\",\"O r\",\"ĠM ont\",\"Ġun s\",\"pro f\",\"Ġneg oti\",\"ĠAr ch\",\"ik i\",\"Ġte levision\",\"ĠJew ish\",\"Ġcomm ittee\",\"Ġmot or\",\"Ġappear ance\",\"Ġs itting\",\"Ġstri ke\",\"ĠD own\",\"com p\",\"ĠH ist\",\"Ġf old\",\"ac ement\",\"ĠLou is\",\"Ġbel ong\",\"ĠâĢ ¢\",\"Ġm ort\",\"Ġprep ared\",\"Ġ6 4\",\"ĠM aster\",\"Ġind eed\",\"ĠD en\",\"Ġre nt\",\"T A\",\"our ney\",\"ar c\",\"S u\",\"9 7\",\"Ġadv ice\",\"Ġchang ing\",\"Ġlist ed\",\"Ġlaun ched\",\"is ation\",\"ĠP eter\",\"is hes\",\"Ġl ived\",\"ĠM el\",\"ĠSup reme\",\"ĠF ederal\",\"Ġ) ;\",\"ruct ure\",\"Ġset s\",\"Ġphil os\",\"u ous\",\"ĠÂ ł\",\"Ġappl ied\",\"ĠN OT\",\"Ġhous ing\",\"ĠM ount\",\"Ġo dd\",\"Ġsu st\",\"D A\",\"ffic ient\",\"Ġ ?\",\"ol ved\",\"Ġp owers\",\"Ġth r\",\"Ġrem aining\",\"ĠW ater\",\"L C\",\"Ġca uses\",\"ãģ ®\",\"Ġman ner\",\"ad s\",\"Ġsuggest s\",\"Ġend s\",\"stand ing\",\"f ig\",\"ĠD un\",\"id th\",\"Ġg ay\",\"Ġter min\",\"ĠAngel es\",\"M S\",\"Ġscient ific\",\"Ġco al\",\"ap ers\",\"b ar\",\"ĠThom as\",\"Ġsy m\",\"ĠR un\",\"th is\",\"P C\",\"igr ants\",\"Ġmin ute\",\"ĠDist rict\",\"cell ent\",\"Ġle aves\",\"Ġcomple ted\",\"am in\",\"Ġfoc used\",\"Ġmon itor\",\"Ġveh icles\",\"M A\",\"ĠM ass\",\"ĠGr and\",\"Ġaffect ed\",\"itution al\",\"Ġconst ruct\",\"Ġfollow s\",\"Ġt on\",\"re ens\",\"Ġh omes\",\"ĠE xt\",\"ĠLe vel\",\"r ast\",\"ĠI r\",\"Ġel im\",\"Ġlarge ly\",\"ĠJ oe\",\"Ġvot es\",\"all s\",\"Ġbusiness es\",\"ĠFound ation\",\"ĠCent ral\",\"Ġy ards\",\"Ġmaterial s\",\"ul ner\",\"Ġgu ide\",\"Ġclos er\",\"um s\",\"Ġsp orts\",\"ed er\",\"J ust\",\"Ġtax es\",\"8 4\",\"ĠO ld\",\"Ġdec ade\",\"ol a\",\"Ġv ir\",\"Ġdro pped\",\"Ġdel ay\",\"it ect\",\"Ġsec ure\",\"ste in\",\"le vel\",\"Ġtre ated\",\"Ġfil ed\",\"ain e\",\"Ġv an\",\"Ġm ir\",\"Ġcol umn\",\"ict ed\",\"e per\",\"Ġro t\",\"Ġcons ult\",\"Ġent ry\",\"Ġmar ijuana\",\"ĠD ou\",\"Ġapparent ly\",\"ok ing\",\"clus ive\",\"Ġincre ases\",\"an o\",\"Ġspecific ally\",\"Ġte le\",\"ens ions\",\"Ġrelig ion\",\"ab ilities\",\"Ġfr ame\",\"ĠN ote\",\"ĠLe e\",\"Ġhelp ing\",\"Ġed ge\",\"ost on\",\"Ġorgan izations\",\"Ã ĥ\",\"ĠB oth\",\"hip s\",\"Ġbig ger\",\"Ġbo ost\",\"ĠSt and\",\"Ġro w\",\"ul s\",\"ab ase\",\"Ġr id\",\"L et\",\"are n\",\"ra ve\",\"Ġst ret\",\"P D\",\"Ġv ision\",\"Ġwe aring\",\"Ġappre ci\",\"Ġa ward\",\"ĠU se\",\"Ġfact or\",\"w ar\",\"ul ations\",\") (\",\"Ġg od\",\"Ġter rit\",\"Ġpar am\",\"ast s\",\"8 7\",\"Ġen emies\",\"ĠG ames\",\"F F\",\"Ġacc ident\",\"W ell\",\"ĠMart in\",\"T ER\",\"Ġat h\",\"ĠHe ll\",\"Ġfor g\",\"Ġve ter\",\"ĠMed ic\",\"f ree\",\"Ġst ars\",\"Ġexp ensive\",\"Ġac ad\",\"ra wn\",\"ĠW he\",\"Ġl ock\",\"Ġform at\",\"Ġsold iers\",\"s m\",\"Ġag ent\",\"Ġrespons ibility\",\"or a\",\"ĠS cience\",\"Ġrap id\",\"Ġt ough\",\"ĠJes us\",\"Ġbelie ves\",\"M L\",\"Ġwe ar\",\"le te\",\"Ãĥ ÃĤ\",\"ĠD ri\",\"Ġcomm ission\",\"ĠB ob\",\"O h\",\"ap ed\",\"Ġwar m\",\"ÃĥÃĤ ÃĥÃĤ\",\"Ġ200 3\",\"ort ion\",\"Ġhas n\",\"ust er\",\"Ġun ivers\",\"ĠI ll\",\"Ġk ing\",\"olog ies\",\"9 4\",\"ĠT em\",\"ĠM os\",\"Ġpat ient\",\"ĠMex ico\",\"ce an\",\"ĠDe ath\",\"ĠSand ers\",\"y ou\",\"ĠC ast\",\"ĠComp any\",\"pt y\",\"Ġhappen ing\",\"F P\",\"ĠB attle\",\"Ġb ought\",\"A m\",\"M od\",\"U s\",\"ut ers\",\"ĠC re\",\"ĠTh ose\",\"Ġ4 4\",\"is er\",\"Ġs oul\",\"ĠT op\",\"ĠHar ry\",\"ĠA w\",\"Ġse at\",\"ff ee\",\"Ġrev olution\",\"Ġ( \\\"\",\"ĠD uring\",\"et te\",\"Ġr ing\",\"Ġoff ensive\",\"Ġreturn s\",\"Ġv ideos\",\"Ġdis cl\",\"Ġfam ous\",\"en ced\",\"ĠS ign\",\"ĠR iver\",\"Ġ3 00\",\"P M\",\"ĠB us\",\"ĠC H\",\"Ġcandid ates\",\"ard en\",\"Ġpercent age\",\"Ġvis ual\",\"Ġthan k\",\"Ġtrou ble\",\"ner gy\",\"Ġ200 1\",\"Ġpro ve\",\"ash ion\",\"Ġen h\",\"ĠL ong\",\"U M\",\"Ġconnect ed\",\"Ġposs ibility\",\"O ver\",\"Ġexper t\",\"Ġl ibrary\",\"art s\",\"ĠDirect or\",\"Ġfell ow\",\"9 2\",\"ir ty\",\"Ġd ry\",\"Ġsign s\",\"ĠL ove\",\"Ġqu iet\",\"f oot\",\"Ġp ure\",\"ĠH un\",\"Ġf illed\",\"ph as\",\"ĠE lect\",\"end ment\",\"ĠEx pl\",\"Ġun able\",\"n s\",\"m o\",\"Ġv ast\",\"ob e\",\"Ġident ify\",\"app ing\",\"ĠCarol ina\",\"g ress\",\"Ġpro te\",\"Ġf ish\",\"Ġcircumst ances\",\"raz y\",\"ĠPh ot\",\"Ġb odies\",\"ĠM ur\",\"Ġdevelop ing\",\"ĠA R\",\"Ġexperien ced\",\"Ġsubst ant\",\"ĠBo ard\",\"es ome\",\"Ġdom estic\",\"Ġcomb ined\",\"ĠP ut\",\"Ġchem ical\",\"ĠCh ild\",\"Ġpo ol\",\"ĠC y\",\"Ġe gg\",\"c ons\",\"st ers\",\"Ġh urt\",\"Ġmark ets\",\"Ġconserv ative\",\"Ġsupp orters\",\"Ġag encies\",\"id el\",\"O b\",\"ur b\",\"Ġ4 3\",\"ĠDef ense\",\"y e\",\"ĠA p\",\"du le\",\"Ġtemper ature\",\"Ġconduct ed\",\"ĠCh ief\",\"Ġpull ed\",\"Ġf ol\",\"L ast\",\"ont o\",\"os is\",\"V ER\",\"D es\",\"ĠP an\",\"F irst\",\"Ġadv ance\",\"Ġlic ense\",\"r ors\",\"ĠJ on\",\"Ġimag ine\",\"Ġhe ll\",\"Ġf ixed\",\"Ġinc or\",\"os ite\",\"ĠL og\",\"ick en\",\"] :\",\"Ġsurpr ise\",\"h ab\",\"Ġc raft\",\"ol t\",\"ĠJ ul\",\"Ġd ial\",\"Ġrele vant\",\"Ġent ered\",\"Ġlead s\",\"ĠA D\",\"ĠCle an\",\"Ġpict ures\",\"ess or\",\"Ġal t\",\"Ġpay ing\",\"P er\",\"ĠMark et\",\"Ġupd ates\",\"am ily\",\"ĠT ype\",\"ĠH ome\",\"Ġ5 5\",\"semb ly\",\"rom e\",\"8 3\",\"Ġgreat est\",\"Ġhe ight\",\"Ġhe av\",\"ain ts\",\"Ġlist en\",\"as er\",\"ĠS H\",\"Ġcap able\",\"ac le\",\"Ġpers pect\",\"in ating\",\"Ġoff ering\",\"ry pt\",\"ĠDe velop\",\"ab in\",\"r c\",\"Ġbr ight\",\"al ty\",\"ar row\",\"Ġsupp l\",\"ind ing\",\"ack ed\",\"gy pt\",\"ĠAn other\",\"p g\",\"ĠVirgin ia\",\"ĠL u\",\"Ġpl anned\",\"Ġp it\",\"Ġswe et\",\"T ype\",\"ĠD i\",\"Ġtyp ically\",\"ĠFranc isco\",\"Ġpro spect\",\"ĠD an\",\"Ġte en\",\"re es\",\"Ġsc hed\",\"Ġh ol\",\"Ġsc r\",\"Ġlot s\",\"l ife\",\"Ġnews p\",\"Ġfor get\",\"ĠN one\",\"ĠM iddle\",\"ĠR yan\",\"ed d\",\"Ġse vere\",\"Ġsu it\",\"ll er\",\"9 3\",\"Ġcor respond\",\"Ġexpl os\",\"u ations\",\"Ġfl ag\",\"g ame\",\"r id\",\"Ġpr in\",\"ĠD ata\",\"Ġde ploy\",\"ĠEn ter\",\"su it\",\"gh an\",\"ĠM en\",\"Ġthough ts\",\"Ġmat ters\",\"Ġad apt\",\"ĠA ri\",\"Ġf ill\",\"Ġfor th\",\"Ġs am\",\"Ġ4 1\",\"Ġpay ment\",\"ĠH or\",\"Ġsp ring\",\"du c\",\"Ġl osing\",\"Ġbring ing\",\"F O\",\"al a\",\"Ġdist ribution\",\"he red\",\"b our\",\"ĠIsrael i\",\"om a\",\"Ġcomb ination\",\"Ġpl enty\",\"V E\",\"C an\",\"ĠH aw\",\"Ġper man\",\"ĠSpe cial\",\"Ġto w\",\"Ġsee king\",\"Ġexam ples\",\"Ġclass es\",\"c r\",\"Ġbe er\",\"Ġmov es\",\"ĠI P\",\"ĠK n\",\"Ġpan el\",\"E ven\",\"Ġproper ly\",\"Ġr is\",\"Ġpl ug\",\"Ġestim ated\",\"E very\",\"Ġdef ensive\",\"ag raph\",\"Ġpre gn\",\"Ġinst it\",\"ĠV ict\",\"Ġvol ume\",\"Ġpos itions\",\"Ġl inks\",\"ĠPro gram\",\"ĠWe ek\",\"ag ues\",\"Ġtrans form\",\"k er\",\"ĠC EO\",\"Ġc as\",\"Ġopp onent\",\"Ġtwe et\",\"ĠC ode\",\"Ġsh op\",\"Ġf ly\",\"Ġtal ks\",\"Ġb ag\",\"Ph one\",\"Ġa id\",\"Ġpl ants\",\"Ġ6 5\",\"Ġatt orney\",\"ar ters\",\"qu est\",\"ĠMag ic\",\"Ġbeg ins\",\"Ġmy ster\",\"Ġenvironment al\",\"Ġst orage\",\"N N\",\"Ġm arg\",\"Ġs ke\",\"Ġmet al\",\"ell y\",\"Ġord ered\",\"Ġrem ained\",\"Ġl oved\",\"Ġprom pt\",\"Ġupd ated\",\"Ġexper ts\",\"Ġwalk ing\",\"Ġan cient\",\"Ġperform ed\",\"AT E\",\"Ġne ither\",\"i ency\",\"Ġmanufact ure\",\"ĠP ak\",\"Ġselect ed\",\"Ġm ine\",\"Ġult imately\",\"Ġexpl an\",\"Ġlab el\",\"ĠServ ices\",\"ribut ed\",\"Tr ump\",\"Ġsy n\",\"ĠU lt\",\"S C\",\"Ġme at\",\"Ġg iant\",\"ĠW ars\",\"ĠO N\",\"Ġad m\",\"Ġinter pret\",\"Ġeven ing\",\"Ġev il\",\"ĠB oston\",\"ĠW ild\",\"Ġ Ã\",\"ĠBit coin\",\"ĠAm azon\",\"D r\",\"ĠIn formation\",\"Ġobvious ly\",\"Ġadv anced\",\"Ph oto\",\"ol ar\",\"Ġwe ather\",\"Ġsymb ol\",\"Ġso le\",\"Ġpot entially\",\"ost er\",\"Ġorig inally\",\"m un\",\"3 00\",\"az e\",\"ess ions\",\"Ġde ck\",\"Ġst ood\",\"Ġyou th\",\"ĠB ern\",\"R ep\",\"ĠT est\",\"Ġbas ically\",\"ot ic\",\"Ġinvol ve\",\"ol it\",\"ly n\",\"S ee\",\"Ġair craft\",\"Ġconf irm\",\"E W\",\"Ġmess ages\",\"ĠRich ard\",\"Ġk it\",\"Ġpro hib\",\"Ġv ulner\",\"is ters\",\"Ġexist ence\",\"Ġturn ing\",\"ĠS P\",\"Ġdes ire\",\"Ġfl at\",\"Ġm ent\",\"se ason\",\"ang es\",\"Ġneighbor hood\",\"ĠL ake\",\"AT ION\",\"Ġpoint ed\",\"b ur\",\"Ġinn ov\",\"uc ks\",\"U L\",\"Ġprofess or\",\"Ġexp ressed\",\"A B\",\"ic ious\",\"Ġ200 2\",\"ĠDe v\",\"Ġs ession\",\"Ġb are\",\"s en\",\"Ġdis s\",\"ĠC ath\",\"ĠP ass\",\"ĠP oint\",\"Ġdo ctor\",\"or row\",\"ail ed\",\"ĠR ub\",\"ĠD C\",\"ĠChar l\",\"p erson\",\"Ġwrit er\",\"igh ters\",\"ure au\",\"Ġob lig\",\"Ġrecord ed\",\"Ġbro ke\",\"Ġord ers\",\"il ty\",\"Ġmot ion\",\"in ity\",\"l aw\",\"ad ium\",\"Ġimm igration\",\"Ġcontr ast\",\"Ġb att\",\"Ġex cellent\",\"Ġtechn ical\",\"am i\",\"Ġt un\",\"Ġcl oud\",\"ĠY ear\",\"ge on\",\"Ġcre ation\",\"Ġstr ange\",\"Ġa uth\",\"Ġfor t\",\"b orn\",\"Ġext ent\",\"ĠT oday\",\"ĠCl ub\",\"Ġr ain\",\"Ġs ample\",\"Ġaccept ed\",\"Ġt act\",\"Ġf ired\",\"ĠS on\",\"Ġstand s\",\"Ġb oot\",\"Ġ4 7\",\"Ġstat ements\",\"Ġvers ions\",\"Ġse lling\",\"ound ed\",\"Ġ199 0\",\"Ġwere n\",\"ĠW atch\",\"Ġexper iment\",\"P ost\",\"Ġret ail\",\"ul ed\",\"In st\",\"un te\",\"ãĥ ¼\",\"Ġdep art\",\"Ġb ond\",\"i very\",\"om pl\",\"Ġre action\",\"ĠSyri an\",\"ĠP ac\",\"app ed\",\"ani el\",\"D P\",\"Ġres olution\",\"Ġre act\",\"Ġappro ved\",\"on om\",\"m ond\",\"ĠO ffic\",\"-- -\",\"Ġrepl ace\",\"Ġt ack\",\"Ġsp ort\",\"Ġch ain\",\"Ġemer gency\",\"r ad\",\"ĠPalest in\",\"Ġ4 6\",\"Ġautom atically\",\"Ġrout e\",\"Ġp al\",\"Ġb anks\",\"ĠPar is\",\"ĠMed ia\",\"ro ad\",\"ic ing\",\"i xt\",\"ist ed\",\"Ġg rew\",\"Ġco ord\",\"ĠW here\",\"om in\",\"Ġsub s\",\"ï¿½ ï¿½\",\"ĠÂ ±\",\"Ġcorpor ate\",\"Ġse lection\",\"n oon\",\"ĠRep ort\",\"c s\",\"clud ing\",\"ord ers\",\"anc he\",\"ĠIt s\",\"Ġslow ly\",\"ĠE gypt\",\"ĠA cc\",\"Ġcol le\",\"iqu es\",\"E X\",\"Ġattempt s\",\"ur l\",\"ĠC ross\",\"Ġfind ings\",\"ĠS C\",\"ĠO R\",\"Ġind ex\",\"ens ity\",\"ĠW ay\",\"ĠL and\",\"Ġsh ock\",\"d is\",\"Ġd ynam\",\"Ġc art\",\"m osp\",\"S ince\",\"i est\",\"ĠB oy\",\"Ġst orm\",\"ĠCont in\",\"201 3\",\"he w\",\"il it\",\"Ġess ential\",\"iqu id\",\"O ther\",\"ive red\",\"Ġreason able\",\"A ct\",\"Ġsub sequ\",\"ĠP ack\",\"ĠF ort\",\"Ġconsider ing\",\"Ġun iversity\",\"l og\",\"Ġmar ried\",\"Ġill ust\",\"ĠTr ue\",\"£ ı\",\"Ġnumer ous\",\"rast ructure\",\"Ġserious ly\",\"Ġrefer red\",\"u a\",\"Ġconsist ent\",\"on na\",\"ĠRe al\",\"ru ption\",\"ci ples\",\"Ġfact s\",\"9 1\",\"ot es\",\"er g\",\"The n\",\"Ġacc ompl\",\"N ote\",\"Ġre venue\",\"Ġpass ing\",\"Ġm al\",\"e en\",\"ĠY et\",\"Ġg ather\",\"ter day\",\"ew ork\",\"ĠA uthor\",\"P e\",\"Ġopt im\",\"Ġr ub\",\"Ġè £ı\",\"Ġun known\",\"st one\",\"Ġun ion\",\"ol ve\",\"Ġopportun ities\",\"Ġbrow ser\",\"ĠW al\",\"ĠC ost\",\"Ġreport ing\",\"st s\",\"p et\",\"Ġs and\",\"Ġsudden ly\",\"Ġsurpr ising\",\"ĠV R\",\"Ġsomew hat\",\"ĠB as\",\"ult ure\",\"iz z\",\"ĠC D\",\"Ġchalleng es\",\"Ġsett ings\",\"Ġexperien ces\",\"ĠF ull\",\"Ġcan n\",\"Ġrece iving\",\"ES T\",\"Ġj oint\",\"Ġcult ural\",\"Ġa st\",\"8 2\",\"as tern\",\"ce ived\",\"ĠC ru\",\"Ġb ull\",\"p ired\",\"am m\",\"Ġfac ing\",\"p ower\",\"Ġb oss\",\"ĠH ol\",\"Ġinst r\",\"Ġincreasing ly\",\"Ġsh ift\",\"Ġstre ets\",\"ĠWilliam s\",\"ab b\",\"Ġl ie\",\"Ġl augh\",\"ĠC a\",\"P L\",\"Ġadult s\",\"Ġcustom er\",\"Ġob tained\",\"Ġsupport ing\",\"ht ml\",\"f ire\",\"Ġdetail ed\",\"Ġpick ed\",\"ĠR ight\",\"ld er\",\"E E\",\"st ood\",\"ĠK im\",\"Ġw ire\",\"Ġs ight\",\"Ġdevelop ers\",\"Ġpers ons\",\"Ġs ad\",\"Ġc up\",\"Ġwar ning\",\"Ġboy s\",\"l ong\",\"Ġb ird\",\"f o\",\"Ġw al\",\"Ġobserv ed\",\"Ġz one\",\"iven ess\",\"Ġch annel\",\"c ript\",\"Ġref used\",\"ĠAg ain\",\"Ġsu c\",\"Ġspokes man\",\"ĠRe f\",\"r ite\",\"ou ston\",\"ãĥ ³\",\"ĠS her\",\"Ġact s\",\"ĠN ame\",\"Ġstrugg le\",\"ar ry\",\"omet imes\",\"Ġdisc rim\",\"H T\",\"Ġcateg ory\",\"Ġreal ize\",\"Ġemploy ee\",\"ĠAf ghan\",\"en ger\",\"Ġgun s\",\"ĠSte ve\",\"ĠM ot\",\"ĠO l\",\"ok ed\",\"Ġth ick\",\"Ġfair ly\",\"ill y\",\"Ġsur ve\",\"ĠM at\",\"we ight\",\"â Ķ\",\"Ġtro ops\",\"Ġag ents\",\"Ġbatter y\",\"Ġmot iv\",\"Ã ¡\",\"S ec\",\"d en\",\"o very\",\"L S\",\"Ġfl u\",\"Ġconf ident\",\"ĠO per\",\"Ġem pty\",\"Ġp hen\",\"Ġse ctor\",\"Ġexc ited\",\"Ġrem ote\",\"ap h\",\"o en\",\"Ġdestroy ed\",\"Ġmor al\",\"ĠH P\",\"ĠR on\",\"Ġd ress\",\"ĠB at\",\"Ġl it\",\"ĠM S\",\"Ġa f\",\"H L\",\"r um\",\"is ms\",\"Ġshould n\",\"Ġsym pt\",\"ĠTor onto\",\"het ic\",\"Ġcar bon\",\"Ġinstall ed\",\"Ġviol ent\",\"Ġsol ar\",\"j a\",\"Ġpract ices\",\"Ġr ide\",\"ĠP enn\",\"Ġimpro ved\",\"Ġaud io\",\"Ġbehav i\",\"ĠP S\",\"Ġe ating\",\"D ata\",\"ĠRe view\",\"p ass\",\"cl aim\",\"u ated\",\"ang ers\",\"c hen\",\"Ġproper ties\",\"Ġany where\",\"An other\",\"Ġbl ow\",\"ĠJack son\",\"Ġp roud\",\"Ġplan e\",\"l ines\",\"Ġsqu are\",\"Ġpro of\",\"ans as\",\"Ġtalk ed\",\"m akers\",\"Ġs ister\",\"Ġhold s\",\"Ġres ident\",\"Ġ= =\",\"Ġresist ance\",\"Ġspl it\",\"Ġpro secut\",\"Ġconf idence\",\"res ents\",\"Ġcut s\",\"Ġexcept ion\",\"Ġz ero\",\"Get ty\",\"Ġcop yright\",\"Ġtot ally\",\"orm al\",\"ific ations\",\"ĠAustral ian\",\"Ġs ick\",\"Ġ1 50\",\"Ġhouse hold\",\"Ġfe es\",\"Ġdri vers\",\"og en\",\"ĠN Y\",\"Ġnecess arily\",\"Ġregul ations\",\"ear ing\",\"s l\",\"Ġperspect ive\",\"c are\",\"ic ial\",\"H is\",\"Ġesc ape\",\"Ġsurpr ised\",\"ĠV an\",\"ur rent\",\"Ġv ac\",\"8 1\",\"ĠTh us\",\"Ġem phas\",\"ĠCh ampions\",\"ĠI ce\",\"Ġn arr\",\"Ġhead s\",\"Ġca using\",\"b el\",\"f ortunately\",\"ĠM a\",\"Ġtarg ets\",\"ci pl\",\"Ġafter noon\",\"Ġadd s\",\"ĠMay be\",\"ĠF our\",\"ess ed\",\"ple te\",\"Ġus ual\",\"ch o\",\"ing u\",\"Ġwith d\",\"ĠE nergy\",\"ĠE conom\",\"O O\",\"Ġart icles\",\"Ġinj ured\",\"Ġman age\",\"Ġexpl ains\",\"Ġdi agn\",\"R ec\",\"at ures\",\"Ġlink ed\",\"Ġdiscuss ed\",\"Ġexpl o\",\"Ġocc asion\",\"ath an\",\"Ġopp osite\",\"Ġfac es\",\"Ġden ied\",\"ĠK night\",\"Ġn ut\",\"Ġapprox imately\",\"Ġdisapp oint\",\"onym ous\",\"ĠB est\",\"ĠL o\",\"ĠH y\",\"ĠA ff\",\"Ġvot ing\",\"an while\",\"ĠII I\",\"Ġinstit utions\",\"ag ram\",\"ĠD aily\",\"Ġdr ag\",\"Ġnear by\",\"Ġgu ilty\",\"Ġcon ver\",\"P re\",\"s hip\",\"Ġre ward\",\"Ġphilos oph\",\"ĠS S\",\"u gh\",\"Ġapp s\",\"f riend\",\"Ġu pper\",\"Ġad vert\",\"Ġs now\",\"Ġfr ust\",\"Ġour selves\",\"F r\",\"ĠD ie\",\"amp ion\",\"Ġdis miss\",\"Ġc ere\",\"Ġsign al\",\"f rom\",\"Ġ ).\",\"Ġ5 2\",\"Ġcr imes\",\"it ors\",\"est ival\",\"use um\",\"Ġcoun cil\",\"ĠS aud\",\"M ay\",\"ĠG un\",\"ic ian\",\"et her\",\"Ġsu fficient\",\"ĠH en\",\"so le\",\"Ġhistor ical\",\"ĠF ar\",\"ĠT urn\",\"Ġp in\",\"Ġsuc ceed\",\"m at\",\"ly mp\",\"Ġtrad ition\",\"ĠO k\",\"Ġc ro\",\"Ġdesc ription\",\"al le\",\"Ġsk y\",\"T e\",\"Ġwide ly\",\"Ġw ave\",\"Ġdefin ition\",\"ĠJew s\",\"Ġcy cle\",\"Ġref ere\",\"Ġbr ings\",\"us al\",\"Ġal ive\",\"Ġfrequ ently\",\"Ġint ention\",\"ĠCont rol\",\"l v\",\"y stem\",\"Ġpriv acy\",\"g ent\",\"ren ce\",\"ĠQu est\",\"ĠChrist mas\",\"Ġr ail\",\"Ġco oper\",\"Ġtest ed\",\"ĠC apt\",\"as ks\",\"Ġcomfort able\",\"Ġdel ivered\",\"sc ape\",\"Ġdep th\",\"ĠG OP\",\"Ġwrit es\",\"Ġass ets\",\"Ġsa v\",\"im ents\",\"Ġtrans ition\",\"Ġart ist\",\"ĠL ook\",\"Ġl ob\",\"Ġcomp onents\",\"ar ity\",\"Ġwalk ed\",\"Ġro ot\",\"Ġparticip ants\",\"Ġnot iced\",\"Ġres c\",\"Ġn av\",\"ĠAd minist\",\"d a\",\"ut ral\",\"pl ate\",\"Ġimport ance\",\"Ġass ert\",\"ious ly\",\"c ription\",\"Ġinj uries\",\"ĠChe ck\",\"Ġregist ered\",\"Ġint ent\",\"Ġmiss ed\",\"ograph ic\",\"Ġsent ence\",\"oun ter\",\"Ġassist ance\",\"ev in\",\"Ġdat abase\",\"Ġbuild ings\",\"Ġclass ic\",\"Ġth inks\",\"ĠOh io\",\"P r\",\"ug g\",\"Ġfe e\",\"p an\",\"Ġeffect ively\",\"Ġfac ility\",\"Ġbe ar\",\"Ġch apter\",\"Ġdog s\",\"ĠCol umb\",\"Ġl atter\",\"it ial\",\"Ġad mitted\",\"T V\",\"ĠGe org\",\"Ġpost s\",\"\\\\ \\\\\",\"Ġlawy er\",\"Ġequ ival\",\"Ġm and\",\"Ġcontro lled\",\"ĠW alk\",\"ĠAnd rew\",\"Ġmen u\",\"am ental\",\"Ġprotect ed\",\"v a\",\"Ġadminist r\",\"or al\",\"Ġre in\",\"ĠS ar\",\"Ġamount s\",\"Ġn ative\",\"ĠM oon\",\"Ġrep resents\",\"Ġab andon\",\"Ġcarry ing\",\"Ġt ank\",\"m ary\",\"Ġdecl ared\",\"T ube\",\"Ġh at\",\"Ġpun ish\",\"el lect\",\"m es\",\"Ġun iverse\",\"ĠR od\",\"ph y\",\"Ġinf rastructure\",\"Ġ5 1\",\"Ġopp osed\",\"ow nt\",\"c a\",\"ĠM ake\",\"Ġhard ware\",\"Ġco ffee\",\"R el\",\"b al\",\"w orld\",\"ĠS af\",\"ĠSe a\",\"in als\",\"Ġown ed\",\"Ġh all\",\"ers ion\",\"Ġdescrib e\",\"ĠP ot\",\"Ġport ion\",\"Ġat mosp\",\"Ġgovern ments\",\"Ġdep ending\",\"Ġoff ense\",\"Ġtr ick\",\"aw a\",\"ĠL ine\",\"ĠV is\",\"ĠH ard\",\"ĠOr ig\",\"ĠCl ick\",\"Ġdes k\",\"ĠVal ley\",\"ĠS ov\",\"Ġmov ies\",\"Ġrem ark\",\"Ġm ail\",\"Ġcons cious\",\"Ġrul ing\",\"ĠR ights\",\"Ġmed ic\",\"he nt\",\"ĠW omen\",\"> <\",\"Ġrepl aced\",\"ĠP rem\",\"ĠTh anks\",\"Ġre new\",\"ĠB all\",\"if orm\",\"Ġsh ots\",\"C omm\",\"Ġar med\",\"Ġconst ant\",\"Ġt aste\",\"Ġreal ized\",\"Ġbu ff\",\"Ġm o\",\"Ġeffic ient\",\"M ost\",\"or ation\",\"if ies\",\"Ġcommun ication\",\"Ġfl ood\",\"Ġconsequ ences\",\"Ġany way\",\"ig g\",\"ĠG M\",\"ĠTh ank\",\"Ġ iron\",\"Ġev olution\",\"ĠC op\",\"tw itter\",\"Ġ9 5\",\"Ġrelationship s\",\"ad el\",\"ĠYou ng\",\"Ġpropos al\",\"ay ers\",\"uild ing\",\"ĠH ot\",\"OR E\",\"c os\",\"Ġcoll abor\",\"P G\",\"ax y\",\"Ġknow ing\",\"Ġsupport s\",\"ow ed\",\"Ġcontrol s\",\"Ġmere ly\",\"um er\",\"Ġath let\",\"Ġf ashion\",\"p ath\",\"Ġg ift\",\"Ġer a\",\"AN D\",\"Ġkind s\",\"ĠKore an\",\"Ġleg it\",\"ul ous\",\"Ġess entially\",\"Ġthe rap\",\"n ic\",\"Ġsuff ered\",\"Ġh ur\",\"Ġprom ise\",\"Ġex cess\",\"Ġover w\",\"Ġpr ime\",\"ĠH ouston\",\"er ry\",\"ĠM s\",\"R S\",\"201 2\",\"Ġst ores\",\"ĠO lymp\",\"Ġj ourney\",\"Al though\",\"S ub\",\"ĠE duc\",\"ĠCh apter\",\"Ġrequest s\",\"Ġconsum ers\",\"Ġt iny\",\"Ġis ol\",\"ĠF air\",\"b a\",\"ĠY OU\",\"Ġcr ash\",\"ce ler\",\"Ġemot ional\",\"Ġgood s\",\"Ġelect ed\",\"Ġmod er\",\"ĠLin ux\",\"Ġbl ocks\",\"Ġis land\",\"ĠSoc iety\",\"Ġelect ions\",\"Ġbroad cast\",\"Ġche ap\",\"Ġn ations\",\"Ġse asons\",\"4 00\",\"Ġwas te\",\"ĠS at\",\"Ġfield s\",\"em ploy\",\"Ġprof ile\",\"Ġauth ors\",\"AL L\",\"ĠG ra\",\"w est\",\"ĠT y\",\"Ġdeath s\",\"Ġv acc\",\"Ġfor med\",\"Ġd u\",\"Ġon going\",\"ĠMuslim s\",\"el f\",\"ig ure\",\"Ġass ume\",\"ĠUkrain e\",\"w ater\",\"Ġco ast\",\"Ġvot ed\",\"g or\",\"ĠA S\",\"ĠMich igan\",\"az a\",\"ĠAr m\",\"i ro\",\"Ġf lex\",\"as ters\",\"' '\",\"Ġwel come\",\"ar l\",\"Ġloc ations\",\"ig ation\",\"ĠF il\",\"Ġbu ying\",\"Ġarch itect\",\"Ġhard er\",\"ĠC ub\",\"Ġinter face\",\"Ġrestaur ant\",\"Ġdisco ver\",\"Ġex ceed\",\"Ġfav our\",\"ger y\",\"Ġd uty\",\"Ġp itch\",\"ad or\",\"ĠM ach\",\"b oy\",\"Ġrespond ed\",\"Ġext ended\",\"her s\",\"M any\",\"ra id\",\"if er\",\"ĠIn s\",\"S er\",\"Ġmed ium\",\"s he\",\"ĠS ports\",\"Ġmag azine\",\"ut ation\",\"Ġlim its\",\"ĠG all\",\"Ġex ternal\",\"raz il\",\"Ġyoung er\",\"t le\",\"Ġrem ind\",\"ĠC ON\",\"Ġimmedi ate\",\"Ġh idden\",\"Ġvol unte\",\"Ġsim pl\",\"od cast\",\"Ġph ase\",\"d r\",\"Ġpl ot\",\"Ġexp osure\",\"R I\",\"og rap\",\"v in\",\"an ish\",\"ĠAc ad\",\"ĠEng ine\",\"Ġexp ansion\",\"ĠP ay\",\"Y our\",\"Ġpus hed\",\"ĠE ll\",\"ĠHe ad\",\"Ġmarket ing\",\"ĠA C\",\"k et\",\"Ġh its\",\"Ġg ro\",\"ĠA ge\",\"ĠSc ot\",\"] [\",\"Ġst im\",\"Ġi Phone\",\"Ī Ĵ\",\"Ġn arrow\",\"ĠGet ty\",\"ĠTur key\",\"Ġperfect ly\",\"Ġen able\",\"ut ch\",\"Ġprec ise\",\"Ġreg ime\",\"Ġsh if\",\"Ġcomp ens\",\"g un\",\"d iv\",\"Ġch osen\",\"ĠK en\",\"An y\",\"Ġtre es\",\"Ġrecomm ended\",\"ĠR en\",\"u able\",\"ĠH T\",\"F ollow\",\"E G\",\"ĠH and\",\"ĠK enn\",\"Ġarg uments\",\"Ġex ists\",\"Ġb ike\",\"ĠCons erv\",\"Ġbre aking\",\"ĠG ar\",\"Ġc razy\",\"Ġvirt ual\",\"ay lor\",\"ix el\",\"Ġ19 80\",\"Ġper mission\",\"ĠSer ies\",\"Ġconsum er\",\"Ġclose ly\",\"c alled\",\"Ġ5 4\",\"Ġhop es\",\"Ġar ray\",\"ĠW in\",\"ĠLab our\",\"Ġsp ons\",\"ĠI re\",\"Ġp ow\",\"Ġread ers\",\"Ġemploy ment\",\"Ġcreat ure\",\"Ġresult ing\",\"Ġaccur ate\",\"Ġmom ents\",\"Ġarg ued\",\"Ġp ed\",\"D uring\",\"Ġ5 3\",\"ĠT al\",\"Ġs ought\",\"Ġsuff ering\",\"Ġ icon\",\"le e\",\"Ġ( $\",\"al ian\",\"Â °\",\"Ġp ra\",\"Ġbon us\",\"( \\\"\",\"k o\",\"Ġact ing\",\"D E\",\"f all\",\"Ġcompar ison\",\"Ġsm ooth\",\"ĠN AS\",\"u pp\",\"ĠJose ph\",\"ep ing\",\"ĠT ake\",\"ĠM id\",\"Ġs ending\",\"f ast\",\"ĠF all\",\"Ġdeal ing\",\"us er\",\"ĠOr gan\",\"C o\",\"Ġatt ached\",\"Ġse es\",\"% .\",\"Ġtyp ical\",\"AR T\",\"Ġfind s\",\"ĠAs ia\",\"um in\",\"ĠC ore\",\"ĠE nt\",\"in ent\",\"u ce\",\"ĠBl ood\",\"ĠN ever\",\"Ġem ails\",\"Ġhigh light\",\"Ġconf ront\",\"at us\",\"ut ed\",\"Ġun us\",\"Ġtop ic\",\"ĠAd am\",\"Ġb le\",\"at i\",\"Ġunder stood\",\"S et\",\"st ruct\",\"T P\",\"Ġm ob\",\"a a\",\"ĠSt art\",\"pect ed\",\"se ll\",\"Ġded icated\",\"ĠC A\",\"u an\",\"Ġsong s\",\"esc ription\",\"Ġte ch\",\"Ġr ape\",\"Ġas ide\",\"Ġgr ant\",\"Ġ5 6\",\"s ub\",\"Ġarg ue\",\"Ġcont aining\",\"Ġsche dule\",\"Ġliber al\",\"Ġpublic ly\",\"Ġheav ily\",\"ĠU t\",\"in er\",\"ĠS ection\",\"ĠC are\",\"we et\",\"l s\",\"D is\",\"âĶ Ģ\",\"ĠF ollow\",\"B ack\",\"ĠI T\",\"Ġb es\",\"j i\",\"ĠH it\",\"est ed\",\"Ġevery body\",\"ĠSw ed\",\"Ġfem in\",\"Ġfac ilities\",\"Ġcon ven\",\"C omp\",\"ĠO S\",\"c ore\",\"Ġan x\",\"Ġdiv ision\",\"ĠC am\",\"ĠSt an\",\"m ates\",\"Ġexpl ore\",\"pl om\",\"Ġsh ares\",\"pl oad\",\"an es\",\"Ġide al\",\"et ers\",\"ĠB ase\",\"Ġpl astic\",\"Ġdist inct\",\"ĠNet work\",\"ĠSe attle\",\"Ġtrad ing\",\"ens us\",\"int end\",\"Ġex hib\",\"Ġinit ially\",\"ĠF ood\",\"Ġthous and\",\"ĠBus iness\",\"act er\",\"Ġpar agraph\",\"Ġrough ly\",\"Ġw ww\",\"Ġcreat ive\",\"ĠCon f\",\"Ġconsum ption\",\"Ġfil ms\",\"ag an\",\"Ġob tain\",\"Ġt all\",\"Ġt or\",\"Ġacknow led\",\"Ġg rown\",\"al o\",\"K E\",\"Ġ4 00\",\"end ers\",\"t aining\",\"U G\",\"Ġsu icide\",\"Ġwat ched\",\"ĠL ist\",\"al i\",\"re hens\",\"Ġsurround ing\",\"Ġp ip\",\"Ġf lying\",\"ĠJ ava\",\"ord an\",\"Ġserv ing\",\"in ations\",\"p ost\",\"Ġsh o\",\"A v\",\"Ġj ail\",\"z y\",\"Ġ199 9\",\"Ġ< /\",\"Ġliter ally\",\"ĠS ir\",\"Ġexp osed\",\"Ġl ies\",\"st ar\",\"Ġb at\",\"Ġear ned\",\"ĠD ig\",\"Ġspec ified\",\"ĠSe ason\",\"Ġdeg rees\",\"Don ald\",\"Ġcent re\",\"Ġsh aring\",\"Ġwin ter\",\"ĠC O\",\"C he\",\"Ġ Î\",\"M P\",\"Ġun w\",\"Ġfew er\",\"ĠM ir\",\"Ġsomew here\",\"ĠK ey\",\"Ġattack ed\",\"ĠK ir\",\"Ġdom ain\",\"Ġstrong er\",\"Ġ9 9\",\"Ġpen alty\",\"I d\",\"Sc ript\",\"Ġdecl ined\",\"Ġne ck\",\"Ġfra ud\",\"Ġcur rency\",\"Ġr ising\",\"R C\",\"âĢ¦ âĢ¦\",\"H z\",\"Ġt ab\",\"Ġtal ent\",\"n am\",\"ĠN BA\",\"Ġvill age\",\"Ġleg s\",\"ĠN ext\",\"E d\",\"Ġac id\",\"Ġhy d\",\"8 00\",\"Ġinvol ving\",\"ĠIm age\",\"ĠBe fore\",\"F l\",\"Ġyes terday\",\"S ource\",\"Ġterror ist\",\"Ġsu p\",\"Ġsy nt\",\"ĠSaud i\",\"Ġw est\",\"Ġr u\",\"b urg\",\"Ġvis ible\",\"Ġstru ck\",\"r ison\",\"Ġaw esome\",\"Ġd rawn\",\"Ġansw ers\",\"ĠG irl\",\"ĠR am\",\"Ġthreat s\",\"Ġdef eat\",\"os it\",\"Ġv ent\",\"atur ally\",\"Americ an\",\"end a\",\"ĠH oly\",\"Ġr um\",\"% ,\",\"c ase\",\"ĠHist ory\",\"ĠYou Tube\",\"Ġsit uations\",\"ĠD NA\",\"S te\",\"Ġsa ved\",\"It em\",\"Ġrec ip\",\"olog ist\",\"Ġfac ed\",\"Ġel ig\",\"O nce\",\"ĠL i\",\"u h\",\"Ġmist ake\",\"ĠDiv ision\",\"ĠB ell\",\"Ġsympt oms\",\"Â ®\",\"Ġdom in\",\"Ġfall ing\",\"Ġend ing\",\"as hes\",\"Ġmat ches\",\"ĠOn line\",\"Ġexplan ation\",\"D ef\",\"red it\",\"Ġany more\",\"ĠT otal\",\"ĠF OR\",\"us hed\",\"Ġlet ters\",\"Ġris ks\",\"ĠO K\",\"Ġreported ly\",\": \\\\\",\"Ġpl ate\",\"Ġsubject s\",\"Ġattempt ed\",\"if ier\",\"ian a\",\"Ġunlike ly\",\"ĠTh ough\",\"um a\",\"ĠIn vest\",\"ĠPr in\",\"ic an\",\"ĠD ar\",\"ĠColor ado\",\"au g\",\"Ġve get\",\"a os\",\"ri a\",\"Ġshe l\",\"Ġmark ed\",\"Ġ( )\",\"Ġsp r\",\"p o\",\"ĠL ink\",\"Ġdef e\",\"ĠJ r\",\"Ġthem e\",\"Ġpass ion\",\"ĠP en\",\"Ġinf o\",\"iz er\",\"Ġsh it\",\"ĠC ivil\",\"ap se\",\"c re\",\"Ġpo ly\",\"Ġcomp onent\",\"ĠChar les\",\"ĠIre land\",\"ĠPro v\",\"Ġdo ctors\",\"Ġgr anted\",\"Ġpain t\",\"Ġhon or\",\"Ġsm oke\",\"Ġpay ments\",\"Ġprim arily\",\"ĠKing dom\",\"r ich\",\"ate ll\",\"Ġde als\",\"Ġsched uled\",\"Ġfund amental\",\"Ġprote in\",\"Ġnewsp aper\",\"Ġcl ients\",\"yth on\",\"ĠD ate\",\"h us\",\"Ġfeed back\",\"Ġstret ch\",\"Ġc ock\",\"Ġhot el\",\"ĠQue en\",\"Ġsu gar\",\"Ġj u\",\"Ġmil k\",\"Ġappro val\",\"ĠL ive\",\"Ġequival ent\",\"ef ully\",\"Ġins ert\",\"z ona\",\"Ġext ension\",\"d ri\",\"J ohn\",\"Ġacc omp\",\"S m\",\"ĠF und\",\"Ġconst antly\",\"Ġ` `\",\"Ġgener ated\",\"ĠA ction\",\"ĠP sych\",\"ĠT ri\",\"Ġrecogn ize\",\"Ġv ary\",\"ph a\",\"ĠR a\",\"d f\",\"et ch\",\"ĠSov iet\",\"Tw o\",\"Ġpattern s\",\"Ġprof ession\",\"an ing\",\"T ime\",\"ĠL im\",\"Ġcol ors\",\"ĠA z\",\"ĠT R\",\"Ġinf ect\",\"Ġphen omen\",\"Ġshe ll\",\"Al so\",\"Ġput s\",\"Ġdel ivery\",\"Ġbro wn\",\"Ġprocess ing\",\"Ġlight s\",\"ess age\",\"ĠBro ok\",\"ĠA ud\",\"l ation\",\"Ġindust rial\",\"L ike\",\"ĠB razil\",\"rou s\",\"ES S\",\"ĠL uc\",\"Ġsome how\",\"Ġ8 5\",\"Ġpro port\",\"Ġpolit icians\",\"Ġindic ate\",\"Ġh ole\",\"Ġtechn iques\",\"Ġcompet itive\",\"Ġph r\",\"Ġv o\",\"ist ent\",\"ĠD ream\",\"Ġcamp us\",\"Ġaspect s\",\"Ġhelp ful\",\"Ġsh ield\",\"or se\",\"Ġtrig ger\",\"m al\",\"Ġ5 8\",\"Ġt ort\",\"Ġperson ally\",\"Ġt ag\",\"Ġkeep s\",\"ĠV ideo\",\"Ġben ch\",\"Ġg ap\",\"a ire\",\"Ġe ast\",\"Ġrec overy\",\"per ial\",\"Ġprof it\",\"ĠM ic\",\"Ġ5 7\",\"Ġcol on\",\"Ġstrong ly\",\"st yle\",\"Ġalleg ations\",\"h an\",\"Ġrep orters\",\"j o\",\"r ine\",\"arg et\",\"and al\",\"Ġ0 3\",\"Ġfl ash\",\"tr ans\",\"Ġstr ict\",\"Ġpark ing\",\"ĠPak istan\",\"Ġl i\",\"Ġwe ird\",\"ĠE ric\",\"Ġreg ions\",\"ĠJ un\",\"Ġint ellect\",\"ĠW H\",\"od ing\",\"rib utes\",\"up id\",\"ĠT it\",\"Ġf inger\",\"or ia\",\"Ġe lev\",\"ĠF ield\",\"Ġcon clusion\",\"; ;\",\"Ġfeel ings\",\"Ġext ensive\",\"Ġm ixed\",\"Ġne uro\",\"v y\",\"Ġhar ass\",\"ĠC irc\",\"ou ch\",\"Ġterrit ory\",\"Ġsuccess fully\",\"M ar\",\"Ġing red\",\"Ġoverw hel\",\"Ġl ayer\",\"V iew\",\"Ġall ies\",\"ill ance\",\"ĠTh ree\",\"Ġb unch\",\"Ġnorm ally\",\"Ġnet works\",\"Ġsac r\",\"ĠC IA\",\"b les\",\"Ġch ose\",\"Ġopp onents\",\"Ġregard less\",\"Ġfr anch\",\"Ġpre f\",\"ĠP o\",\"Ġbr idge\",\"ann a\",\"ĠSil ver\",\"Ġw age\",\"p age\",\"ri or\",\"Ġrad ical\",\"ĠL ittle\",\"Ġman ip\",\"Ġsecret ary\",\"Ġg ang\",\"D R\",\"F A\",\"Ġdec ent\",\"ĠSp irit\",\"Ġun cle\",\"ĠDevelop ment\",\"Ġinvest ors\",\"Ġwall s\",\"Ġpub lish\",\"Ġgener ate\",\"iss ions\",\"c ar\",\"Ġprom ote\",\"Ġcut ting\",\"Ġche st\",\"Ġdrink ing\",\"Ġcollect ed\",\"Ġ7 2\",\"Ġhop ing\",\"Ġem br\",\"gor ith\",\"Ġwar ned\",\"Ġinstruct ions\",\"O G\",\"ĠD id\",\"ĠAg ency\",\"Ġg ear\",\"Ġcritic ism\",\"ĠF urther\",\"Ġut il\",\"ann y\",\"R ed\",\"Ġcoun sel\",\"ĠAs ian\",\"Ġredu ction\",\"p ool\",\"Ġteach ing\",\"Ġdeep ly\",\"i y\",\"Ġestim ates\",\"Ġcho ices\",\"Ġperman ent\",\"in em\",\"ke l\",\"Ġf asc\",\"p se\",\"f ile\",\"ĠL ow\",\"ĠP erson\",\"Ġt ournament\",\"st al\",\"Ġm el\",\"U ST\",\"ĠR ay\",\"az i\",\"V al\",\"Ġcont ained\",\"ĠH olly\",\"Ġw ake\",\"Ġreve al\",\"Ġprocess es\",\"ĠIS IS\",\"Ġ0 9\",\"Ġbl ind\",\"Ġste el\",\"ĠB ad\",\"Ġcare fully\",\"app y\",\"ro it\",\"Ġg aming\",\"Ġhous es\",\"ĠC oll\",\"Ġtr uck\",\"er m\",\"Ġsc ored\",\"Ġocc as\",\"ret urn\",\"b ound\",\"v ar\",\"Ġsh arp\",\"Ġaf raid\",\"ĠE X\",\"am ber\",\"c ific\",\"Ġsche me\",\"N C\",\"ĠPol it\",\"Ġdecl ine\",\"Ġ199 8\",\"Ġpus hing\",\"Ġposs ession\",\"Ġpriv ile\",\"Ġteacher s\",\"Ġy ield\",\"H A\",\"ĠDav is\",\"it led\",\"#### ####\",\"Ġr ig\",\"ĠD aniel\",\"ac on\",\"Ġh ide\",\"ut en\",\"Ġcolle agues\",\"Ġprin ciples\",\"Ġl oud\",\"Ġs in\",\"ĠDem on\",\"Ġst one\",\"Ġ0 2\",\"Ġt aught\",\"Ġter rible\",\"Ġst uck\",\"ĠPol icy\",\"te en\",\"Ġimplement ation\",\"ĠB BC\",\"ĠAP I\",\"Ġwhe el\",\"all as\",\"Ġch ampions\",\"ol ars\",\"play er\",\"Ġrepeated ly\",\"ĠSt ill\",\"Ġlik es\",\"ast y\",\"es ter\",\"ĠCath olic\",\"R L\",\"Ġb ath\",\"Ġno ise\",\"t itle\",\"Ġn orthern\",\"P art\",\"Ġmag n\",\"Ġf ab\",\"ĠAs h\",\"Ġdis pl\",\"Ġtick et\",\"Ġm urd\",\"Ġalong side\",\"ĠMus ic\",\"Ġr iver\",\"ĠSte el\",\"ĠC L\",\"ĠPl ayer\",\"ĠM ult\",\"ow ing\",\"re p\",\"s ize\",\"Ġt ur\",\"ĠGeorg ia\",\"isc al\",\"ra ction\",\"Ġc able\",\"Ġ5 9\",\"Ġw ins\",\"Ġup coming\",\"Ġsurv ive\",\"Ġins pired\",\"ĠEduc ation\",\"Ġstat istics\",\"ĠF oot\",\"iam i\",\"Ġy ellow\",\"ĠP age\",\". -\",\"ĠH as\",\"Ġur ban\",\"Ġa x\",\"es sel\",\"\\\\ \\\"\",\"Ġquarter back\",\"Ġreg ister\",\"ĠLab or\",\"Ġab ilities\",\"ĠF amily\",\"Ġvar iable\",\"ĠPr ice\",\"Ġcont em\",\"Ġth in\",\"ĠE qu\",\"d ata\",\"Ġg otten\",\"Ġconst it\",\"Ġas ks\",\"Ġt ail\",\"Ġexc iting\",\"ĠE ffect\",\"ĠSp anish\",\"Ġencour age\",\"ins on\",\"ĠA h\",\"Ġcommit ment\",\"C S\",\"Ġr ally\",\"Ġ: :\",\"Ġsubs id\",\"Ġsp in\",\"Ġcapt ured\",\"201 8\",\"Ġinn oc\",\"Ġalleged ly\",\"ĠC ome\",\"Ġart ists\",\"ĠN umber\",\"Ġelect ronic\",\"Ġreg ional\",\"ap es\",\"Ġw ra\",\"Ġmy th\",\"pr ise\",\"ĠM iller\",\"ĠC reat\",\"ĠEp isode\",\"b ell\",\"Ġdirect ed\",\"Ġext ract\",\"Ġs orry\",\"Ġv ice\",\"ag ger\",\"ĠSu pport\",\"Ġ6 6\",\"ĠI ron\",\"Ġwonder ful\",\"Ġg ra\",\"N et\",\"ion e\",\"E ng\",\"Ġsh ips\",\"ik es\",\"ĠK evin\",\"it ar\",\"Ġactiv ists\",\"tr ue\",\"ĠAri zona\",\"ent h\",\"ĠDes pite\",\"ĠS E\",\"Ġha bit\",\"ern el\",\"Ġin qu\",\"Ġab ortion\",\"Ġv oid\",\"Ġexpl icit\",\"Ġeng aged\",\"Ġang ry\",\"Ġr ating\",\"Ġfr ag\",\"b ro\",\"ick ing\",\"d ev\",\"Ġwor ried\",\"Ġob ser\",\"Ġap artment\",\"ĠG T\",\"Ġest ate\",\"ĠConst itution\",\"em on\",\"ĠS now\",\"Ġcount y\",\"Ġdis ag\",\"ĠStep hen\",\"Ġimm igrants\",\"w ind\",\"ĠN ations\",\"Ġfol ks\",\"O ut\",\"Ġg all\",\"Ġtarget ed\",\"Ġst ead\",\"ĠB on\",\"ĠL ib\",\"Ġinform ed\",\"Ġ12 0\",\"ch ain\",\"idel ines\",\"or ough\",\"Ġdri ven\",\"Ġregular ly\",\"Ġbas ket\",\"Ġprinc iple\",\"oc ument\",\"Ġst un\",\"ib ilities\",\"ĠRom an\",\"ĠAb out\",\"Ġal ert\",\"Ġdemocr acy\",\"Ġrepresent ed\",\"H S\",\"c ers\",\"p arent\",\"Ar t\",\"p ack\",\"Ġdi plom\",\"re ts\",\"ĠN O\",\"Ġcapt ure\",\"ĠAd v\",\"Ħ ¢\",\"Ġannounce ment\",\"ĠL ear\",\"Ġh ook\",\"Ġpur s\",\"ĠS uch\",\"ĠC amer\",\"Ġrefuge es\",\"ĠV e\",\"P ol\",\"Ġrecogn ized\",\"l ib\",\"Ġhad n\",\"A ss\",\"Ġpil ot\",\"us hing\",\"Ġreturn ing\",\"Ġtra il\",\"ĠSt one\",\"Ġrout ine\",\"Ġcour ts\",\"Ġdes per\",\"Ġfriend ly\",\"ĠIt aly\",\"Ġpl ed\",\"Ġbreat h\",\"Ġstud io\",\"N S\",\"Ġimp ressive\",\"ĠAfghan istan\",\"Ġf ing\",\"Ġd ownt\",\"ink ing\",\"ĠR og\",\"i ary\",\"col or\",\"se x\",\"ar on\",\"Ġf ault\",\"ĠN ick\",\"D own\",\"ĠR ose\",\"ĠS outhern\",\"X X\",\"is odes\",\"L ist\",\"6 00\",\"Ġout come\",\"er r\",\"Ġelse where\",\"Ġret ire\",\"Ġp ounds\",\"ĠGl obal\",\"Pe ople\",\"Ġcommun ications\",\"Ġlo an\",\"Ġrat io\",\"ĠEm pire\",\"Ġg onna\",\"Ġinv ent\",\"D F\",\"Ġ19 70\",\"ĠComm on\",\"p at\",\"Ġprom ised\",\"Ġd inner\",\"ĠH om\",\"Ġcreat es\",\"Ġoper ate\",\"ver ty\",\"ĠJ ordan\",\"et ime\",\"Ġsust ain\",\"R eg\",\"Ġincred ible\",\"im a\",\"Ġwar rant\",\"Ġm m\",\"A tt\",\"Ġlaw suit\",\"Ġreview s\",\"it ure\",\"ĠS ource\",\"l ights\",\"ĠF ord\",\"Ġ6 3\",\"g roup\",\"st ore\",\"Ġfeat ured\",\"Ġfore ver\",\"Ġpo verty\",\"ĠP op\",\"ĠC NN\",\"az z\",\"ab is\",\"ach ing\",\"Ġl aid\",\"ĠSu pp\",\"Ġfil ter\",\"en a\",\"ĠCommun ity\",\"Ġcreat ures\",\"u ction\",\"ĠR oyal\",\"Ġassoci ation\",\"ĠCon nect\",\"ĠBr ad\",\"âĸ Ī\",\"l ers\",\"the re\",\"ĠG i\",\"Ġval uable\",\"AC K\",\"ĠT aylor\",\"Ġl iquid\",\"ĠAtt orney\",\"ĠCar l\",\"ĠF inal\",\"ag a\",\"ĠWil son\",\"B ecause\",\"ĠProf essor\",\"ak a\",\"Ġincred ibly\",\"r ance\",\"! )\",\"R ef\",\"s k\",\"Ġsol utions\",\"Ġatmosp here\",\"Ġbl ame\",\"um es\",\"ĠN ob\",\"C A\",\"um ps\",\"r ical\",\"ĠPut in\",\"ĠD est\",\"or ic\",\"ĠP A\",\"Ġrespect ively\",\"w an\",\"Ġfif th\",\"â Ħ¢\",\"ĠC ry\",\"Ġgovern or\",\"res ident\",\"Ġpurch ased\",\"Ġh ack\",\"Ġint ense\",\"ob s\",\"Ġorig in\",\"Ġdef ine\",\"Ġcare ful\",\"** *\",\"Ġshould er\",\"Cl ick\",\"Ġt ied\",\"Ġdest ruction\",\"ou red\",\"Ġno body\",\"Ġh o\",\"ĠEx per\",\"Ġt ip\",\"\\\" ;\",\"Ġtechn ique\",\"Ġj ur\",\"ĠP ok\",\"b ow\",\"Ġleg end\",\"Ġacc ord\",\"Ġbus y\",\"ĠInt el\",\"Ġh ang\",\"ak i\",\". ]\",\"âĢĶâĢĶ âĢĶâĢĶ\",\"Ġsur gery\",\"Ġrep rodu\",\"Ġun iform\",\"Ġscen es\",\"c ode\",\"Ġ6 2\",\"l isher\",\"ĠH ave\",\"ph ia\",\"Ġcry pt\",\"Ġrec on\",\"Ġsc ream\",\"Ġadop ted\",\"Ġsc ores\",\"N e\",\"ĠIt alian\",\"in cluding\",\"B O\",\"Ġindic ated\",\"Ġent ertain\",\"G u\",\"T ext\",\"i el\",\"Ġtw enty\",\"Ġeng age\",\"off s\",\"ĠPac ific\",\"Ġsm ile\",\"Ġperson nel\",\"Ġto ler\",\"Ġdo ors\",\"Ġt one\",\"Ġmach ines\",\"Ġent ering\",\"ten ance\",\"C O\",\"ĠJer sey\",\"Ġfore st\",\"Ġhor se\",\"Ġcompl aint\",\"ĠSpr ing\",\"y o\",\"ĠPl us\",\"ed ing\",\"ĠRet urn\",\"qu arters\",\"ial s\",\"c ow\",\"Ġacad emic\",\"Ġf ruit\",\"Ġ199 6\",\"og ether\",\"Ġw ine\",\"Ġpur su\",\"ĠSte ven\",\"Ġlic ens\",\"Wh o\",\"Ġclot hes\",\"re ction\",\"Ġsqu ad\",\"Ġst able\",\"Ġr aw\",\"z ens\",\"St ar\",\"ut ies\",\"anc er\",\"Ġke ys\",\"ĠM u\",\"Ġcompl icated\",\"ig er\",\"ĠTe xt\",\"Ġabs or\",\"Ġ6 8\",\"Ġfun ny\",\"Ġrel ief\",\"ĠL ew\",\"ĠC ook\",\"Ġch art\",\"Ġdraw ing\",\"G E\",\"Ġmod ule\",\"ĠB ull\",\"I LL\",\"Ġs alt\",\"0000 0000\",\"il le\",\"Ġres ource\",\"aw ay\",\"adel phia\",\"ĠB ru\",\"Ġ6 7\",\"Ġsome body\",\"Ġparticip ate\",\"Ġro se\",\"we red\",\"Ġmus cle\",\"Ġcons ent\",\"Ġcontin uing\",\"ĠGuard ian\",\"ĠOr der\",\"reg on\",\"Ġre ar\",\"Ġprov ision\",\"Ġlik ed\",\"ri ent\",\"Ġb ra\",\"Tr ans\",\"Ġmeet ings\",\"Ġto x\",\"Ġcon vent\",\"Ġaut o\",\"Ġrec ording\",\"ĠSo ft\",\"00 1\",\"ĠR oll\",\"Ġprogram ming\",\"Ġp ic\",\"Ġprov ed\",\"Ġst ab\",\"ĠA st\",\"Ġca ption\",\"ul ating\",\"ĠAtt ack\",\"Ġnew ly\",\"Ġ199 7\",\"f r\",\"Ġdis cipl\",\"ĠGree k\",\"Ġed ition\",\"ĠDo es\",\"ĠB ox\",\"if le\",\"ack et\",\"Ġpass es\",\"Ġgu est\",\"Ġac celer\",\"it als\",\"U D\",\"Ġaut hent\",\"ĠR est\",\"ov al\",\"t a\",\"u ine\",\"Ġarm or\",\"ĠT own\",\"Ġcomp at\",\"Ġinc hes\",\"Des pite\",\"Ġass ign\",\"he rent\",\"Ġprep are\",\"ĠM eg\",\"oc key\",\"Ġdep ends\",\"Ġtrack s\",\"w atch\",\"Ġl ists\",\"ĠN orthern\",\"Ġal ter\",\"re c\",\"ĠE astern\",\"Ġcond em\",\"Ġevery where\",\"? '\",\"Ġaff ili\",\"Ġf ought\",\"\\\": {\\\"\",\"Ġm ac\",\"it arian\",\"Ġsc ope\",\"ĠA L\",\"aw s\",\"ar ms\",\"Ġqu e\",\"Ġenjoy ed\",\"nes ota\",\"Ġagg ressive\",\"ĠSt ory\",\"ĠI V\",\"Ġrec ipe\",\"Ġrare ly\",\"ĠMed ical\",\"val ue\",\"ang el\",\"ay ing\",\"omet hing\",\"Ġsub section\",\"Ġs outhern\",\"Ġfrequ ency\",\"re te\",\"roll ed\",\"ult s\",\"ĠN ic\",\"Ġbeh alf\",\"Ġsequ ence\",\"ab et\",\"Ġcontrovers ial\",\"Ġcomp rom\",\"Ġwork er\",\"Ġmain ly\",\"Ġal gorith\",\"ĠM ajor\",\"or ce\",\"g ender\",\"Ġorgan ized\",\"Ġf ake\",\"Ġconclud ed\",\"ĠE D\",\"ĠEx ec\",\"r age\",\"Ġch ances\",\"ber ry\",\"ĠTr ad\",\"Ġconfig uration\",\"Ġwithd raw\",\"Ġf ro\",\"ud es\",\"ĠBro ther\",\"ĠB rian\",\"Ġtri es\",\"Ġsam ples\",\"Ġb id\",\"ĠGold en\",\"Ġphot ograph\",\"if est\",\"ĠD O\",\"ĠPar liament\",\"******** ********\",\"R em\",\"Ġcont est\",\"Ġsign ing\",\"p x\",\"ĠZ eal\",\"âĶĢ âĶĢ\",\"E ar\",\"Ġex it\",\"Be fore\",\"ĠCor por\",\"n ull\",\"mon th\",\"Ġrac ial\",\"ott ed\",\"ĠV eg\",\"ĠRe uters\",\"Ġsw ord\",\"ps on\",\"ĠRom ney\",\"a ed\",\"Ġt rib\",\"Ġin ner\",\"Ġprot ocol\",\"ĠB i\",\"ĠM iami\",\"ever al\",\"p ress\",\"Ġsh ipping\",\"ĠAm endment\",\"ĠHow ard\",\"con nect\",\"ĠD isc\",\"ĠJ ac\",\"iam ond\",\"ĠThere fore\",\"s es\",\"ĠPrin cess\",\"ĠUS B\",\"ĠAn th\",\"Ġsurve illance\",\"Ġap olog\",\"Ġ6 1\",\"ow a\",\"Ġf ulf\",\"j s\",\"Ġl uck\",\"ust ed\",\"ĠÂ §\",\"n i\",\"Ġant icip\",\"em an\",\"Ġwin ner\",\"Ġsil ver\",\"ll a\",\"ic ity\",\"Ġunus ual\",\"Ġcr ack\",\"Ġt ies\",\"e z\",\"Ġpract ical\",\"Ġprov ince\",\"ĠPl ace\",\"Ġprior ity\",\"IC E\",\"Ġdescrib es\",\"Ġbr anch\",\"F orm\",\"ask a\",\"miss ions\",\"b i\",\"Ġp orn\",\"ĠTur k\",\"Ġent hus\",\"Ġf ighters\",\"Ġ0 8\",\"ĠDet roit\",\"Ġfound ation\",\"av id\",\"A re\",\"Ġjud gment\",\"cl ing\",\"Ġsol ve\",\"ĠDes ign\",\"W here\",\"hes is\",\"ĠT ro\",\"a fter\",\"Ġne utral\",\"ĠPalestin ian\",\"ĠHolly wood\",\"Ġadv is\",\"ĠN on\",\"y es\",\"ol is\",\"Ġrep utation\",\"Ġsm ell\",\"Ġb read\",\"ĠB ul\",\"ĠBe ach\",\"Ġclaim ing\",\"Ġgen etic\",\"Ġtechn ologies\",\"Ġupgr ade\",\"row s\",\"Ġdevelop er\",\"ĠJ osh\",\"ĠDis ney\",\"erv ed\",\"ip al\",\"Ġun ex\",\"Ġbare ly\",\"t hen\",\"ĠP ub\",\"Ġill ness\",\"et ary\",\"ĠB al\",\"Ġp atch\",\"Ġbut t\",\"Ġst upid\",\"ĠD og\",\"ĠD allas\",\"f ront\",\"ie ce\",\"Ġprot ests\",\"Ġch at\",\"oen ix\",\"Ġw ing\",\"Ġpar liament\",\"Ġ7 7\",\"ose xual\",\"Ġre nder\",\"pt ions\",\"ĠCo ast\",\"os a\",\"ĠG reg\",\"h op\",\"ĠMan agement\",\"Ġbit coin\",\"Ġrec over\",\"Ġincor por\",\"or ne\",\"ĠUs ing\",\"Ġpre ced\",\"Ġthreat ened\",\"Ġspirit ual\",\"ĠE vent\",\"ĠF red\",\"Ġadvert ising\",\"Ġimprove ments\",\"ĠC ustom\",\"Ġer rors\",\"Ġsens itive\",\"ĠN avy\",\"Ġcre am\",\"L ook\",\"Ġex clusive\",\"Ġcomp rehens\",\"Ġde leg\",\"Ġcon ce\",\"Ġrem em\",\"Ġstruct ures\",\"Ġst ored\",\"N D\",\"Ġ1 000\",\"U P\",\"ĠB udd\",\"A F\",\"w oman\",\"ĠAcad emy\",\"ð Ł\",\"se a\",\"Ġtem porary\",\"Ab out\",\"es ters\",\"Ġtick ets\",\"Ġposs ess\",\"in ch\",\"o z\",\"Ġl a\",\"Ġcontract s\",\"Ġun p\",\"Ġc ig\",\"ĠK at\",\"ult ural\",\"as m\",\"Ġmount ain\",\"ĠCapt ain\",\"St ep\",\"m aking\",\"ĠSp ain\",\"Ġequ ally\",\"Ġl ands\",\"at ers\",\"Ġreject ed\",\"er a\",\"im m\",\"ri x\",\"C D\",\"Ġtrans action\",\"g ener\",\"less ly\",\"Ġ| |\",\"Ġc os\",\"ĠHen ry\",\"Ġprov isions\",\"Ġg ained\",\"Ġdirect ory\",\"Ġra ising\",\"ĠS ep\",\"ol en\",\"ond er\",\"Ġcon sole\",\"in st\",\"Ġb om\",\"Ġunc ertain\",\"1 50\",\"ock ing\",\"Ġmeas ured\",\"Ġpl ain\",\"Ġse ats\",\"Ġd ict\",\"S L\",\"af e\",\"Ġest imate\",\"iz on\",\"at hered\",\"Ġcontribut ed\",\"Ġep isodes\",\"omm od\",\"G r\",\"AN T\",\"Ġ6 9\",\"G ener\",\"Ġ2 50\",\"vious ly\",\"rog en\",\"Ġterror ism\",\"Ġmove ments\",\"ent le\",\"oun ce\",\"ĠS oul\",\"Ġpre v\",\"ĠT able\",\"act s\",\"ri ors\",\"t ab\",\"Ġsuff er\",\"Ġn erv\",\"Ġmain stream\",\"ĠW olf\",\"Ġfranch ise\",\"b at\",\"Ġdem ands\",\"Ġag enda\",\"Ġdo zen\",\"Ġclin ical\",\"iz ard\",\"ĠO p\",\"t d\",\"Ġvis ited\",\"ĠPer haps\",\"Ġact or\",\"Ġde lic\",\"Ġcont ribute\",\"Ġin ject\",\"ĠE s\",\"ac co\",\"Ġlist ening\",\"Ġcon gress\",\"epend ent\",\"Ġprem ium\",\"Ġ7 6\",\"ĠIr ish\",\"Ġass igned\",\"ĠPh ys\",\"Ġworld wide\",\"Ġnarr ative\",\"ot ype\",\"m ont\",\"b ase\",\"ĠB owl\",\"ĠAdminist ration\",\"Ġrel ation\",\"ĠE V\",\"C P\",\"Ġco vers\",\"Ġ7 8\",\"Ġcert ific\",\"Ġgr ass\",\"Ġ0 4\",\"pir acy\",\"ir a\",\"Ġengine ering\",\"ĠM ars\",\"Ġun employ\",\"ĠFore ign\",\"st ract\",\"Ġv en\",\"Ġst eal\",\"Ġrepl ied\",\"Ġult imate\",\"Ġtit les\",\"d ated\",\"Ġj oy\",\"a us\",\"Ġhy per\",\"ak u\",\"Ġoffic ially\",\"ĠPro duct\",\"Ġdifficult y\",\"per or\",\"Ġresult ed\",\"rib ed\",\"l ink\",\"wh o\",\"~~ ~~\",\"ĠSpe ed\",\"ĠV iet\",\"W ind\",\"ĠBar ack\",\"Ġrestrict ions\",\"ĠSh are\",\"Ġ199 5\",\"ition ally\",\"Ġbeaut y\",\"op t\",\"Ġm aps\",\"ĠC R\",\"ĠN ation\",\"ĠCru z\",\"W ill\",\"Ġelectric ity\",\"Ġor g\",\"Ġb urd\",\"Ġviol ation\",\"Ġus age\",\"Ġper mit\",\"ĠCh ron\",\"ĠF ant\",\"Ġn aturally\",\"Ġ0 7\",\"Ġth rown\",\"ĠAw oken\",\"Ġal ien\",\"ĠHer o\",\"ĠK ent\",\"ĠR ick\",\"ri ke\",\"Ġp ace\",\"}, {\\\"\",\"G L\",\"Ġpo ison\",\"ĠT ower\",\"Ġform al\",\"al ysis\",\"Ġgen uine\",\"Ġk il\",\"a ver\",\"Ġproced ure\",\"ĠPro p\",\"intend o\",\"ĠM ain\",\"as ant\",\"Ġtr ained\",\"G ame\",\"ĠL oad\",\"ĠM A\",\"Ġcru cial\",\"Ġle ts\",\"ĠF R\",\"Ġch ampion\",\"1 01\",\"ĠCon ference\",\"Ġwrit ers\",\"Ġconnect ions\",\"Ġo kay\",\"ir ms\",\"ĠR and\",\"Ġenc ounter\",\"ĠB uff\",\"Ġachie ved\",\"Ġche cks\",\"isc ons\",\"Ġassist ant\",\"Ġwhen ever\",\"ĠA ccess\",\"ĠU r\",\"b in\",\"Ġcl ock\",\"is p\",\"op her\",\"Ġb orrow\",\"Ġm ad\",\"Ġperson ality\",\"on ly\",\"IS T\",\"ab ama\",\"Ġg ains\",\"Ġcommon ly\",\"Ġter r\",\"Ġhyp ot\",\"Ġre ly\",\"Ġt iss\",\"iscons in\",\"Ġrid ic\",\"f unction\",\"ĠO regon\",\"Ġun com\",\"r ating\",\"el and\",\"ĠN C\",\"Ġm oon\",\"ann on\",\"Ġvulner able\",\"ut ive\",\"ÂłÂł ÂłÂł\",\"ĠRad io\",\"Ġw estern\",\"se ct\",\"ĠT ony\",\"Ġocc urs\",\"ĠO s\",\"ĠH on\",\"Ã Ń\",\"Ġv essel\",\"ĠScot land\",\"Ġdiscrim ination\",\"Ġsubsequ ent\",\"st ring\",\"Ġfant asy\",\"ĠSh adow\",\"Ġtest im\",\"W E\",\"it i\",\"r as\",\"Ġbo at\",\"Ġmar ks\",\"Ġord inary\",\"Ġre n\",\"Ġrepresent ative\",\"Ġpet ition\",\"Ġ7 3\",\"Ġad venture\",\"Ġign ore\",\"ĠPhil adelphia\",\"ĠS av\",\"V P\",\"Ġfact ory\",\"Ġt asks\",\"Ġdep ression\",\"z ed\",\"................ ................\",\"ĠSt orm\",\"Ġc ogn\",\"Ġelig ible\",\"Ġredu cing\",\"v ia\",\"Ġ0 5\",\"Ġstri king\",\"Ġdoll ar\",\"h o\",\"O V\",\"Ġinstr ument\",\"Ġphilosoph y\",\"ĠMo ore\",\"ĠA venue\",\"Ġrul ed\",\"ĠFr ont\",\"IN E\",\"ĠM ah\",\"Ġscen ario\",\"ĠNAS A\",\"Ġen orm\",\"Ġdeb ut\",\"Ġte a\",\"T oday\",\"Ġabs ence\",\"S im\",\"Ġh am\",\"le ep\",\"Ġt ables\",\"ĠHe art\",\"M I\",\"K e\",\"re qu\",\"V D\",\"m ap\",\"Ġchair man\",\"Ġp ump\",\"Ġrapid ly\",\"v i\",\"Ġsubstant ial\",\"E P\",\"d es\",\"ch ant\",\"ili pp\",\"ĠS anta\",\"ri ers\",\"anche ster\",\"L oad\",\"ĠC ase\",\"Ġsa ving\",\"Ġ7 4\",\"ĠA FP\",\"er ning\",\"oun ced\",\"ĠMin nesota\",\"ĠW as\",\"Ġrec ru\",\"Ġassess ment\",\"ĠB ron\",\"U E\",\"Ġdynam ic\",\"Ġf urn\",\"ul ator\",\"Ġprop ag\",\"h igh\",\"Ġacc ommod\",\"Ġst ack\",\"ĠS us\",\"w rit\",\"Ġre ven\",\"ĠGod d\",\"ĠZeal and\",\"ab s\",\"Ġbr ut\",\"Ġper pet\",\"h ot\",\"Ġhard ly\",\"ĠB urn\",\"ãĤ ¹\",\"Ġst y\",\"Ġtrans actions\",\"Ġg ate\",\"Ġsc reens\",\"Ġsub mitted\",\"Ġ1 01\",\"Ġlangu ages\",\"ugh t\",\"em en\",\"Ġfall s\",\"Ġc oc\",\"Ĥ ¬\",\"Ġstri kes\",\"p a\",\"Ġdel iber\",\"ĠI M\",\"Ġrel ax\",\"ann els\",\"ĠSen ator\",\"Ġext rem\",\"Ġ} ,\",\"ĠDe b\",\"Ġbe ll\",\"Ġdis order\",\"c ut\",\"Ġi OS\",\"Ġl ocked\",\"Ġem issions\",\"Ġshort ly\",\"\\\" ]\",\"ĠJud ge\",\"ĠS ometimes\",\"Ġr ival\",\"Ġd ust\",\"Ġreach ing\",\"F ile\",\"Â¯Â¯ Â¯Â¯\",\"ino is\",\"ĠJ ason\",\"Ġs atell\",\"are t\",\"Ġst ations\",\"Ġag ric\",\"ĠTechn ology\",\"com es\",\"ĠUn fortunately\",\"ĠChild ren\",\"Ġappl ies\",\"ast ed\",\"Ġan ger\",\"ail ability\",\"ĠDam age\",\"Ġcomp are\",\"ĠStand ard\",\"Ġaim ed\",\"ĠB a\",\"angu age\",\"Ġreg ulation\",\"Ġj ury\",\"Ġair port\",\"Ġse ctions\",\"ĠPr ince\",\"em ed\",\"Ġmedic ine\",\"Ġh itting\",\"Ġsp ark\",\"ol ves\",\"Ġad s\",\"St ate\",\"Ġfood s\",\"Ġrepl acement\",\"Ġch icken\",\"Ġlow est\",\"Ġmind s\",\"Ġinvol ves\",\"u i\",\"Ġarr ang\",\"Ġproced ures\",\"ĠWh ich\",\"ivers ary\",\"Ġb ills\",\"Ġimprove ment\",\"Ġin ev\",\"Ġexpect ations\",\"Ġintellect ual\",\"Ġsp aces\",\"Ġmechan ism\",\"2 50\",\"bre ak\",\"ĠZ e\",\"ĠT enn\",\"ĠB alt\",\"Ġbar rel\",\"Ġstat ic\",\"man n\",\"Pol ice\",\"Ġt ips\",\"Ġhand ling\",\"c us\",\"od ed\",\"il ton\",\"ir y\",\"Ġjournal ists\",\"our se\",\"Ġcom ic\",\"Ġnom ine\",\"IT Y\",\"Ġvers us\",\"Ġlo op\",\"Ġsur f\",\"ĠInd ust\",\"ĠHun ter\",\"Ġbelief s\",\"is an\",\"Ġset up\",\"Ġbre w\",\"im age\",\"Ġcomput ers\",\"f ol\",\"} ,\\\"\",\"ĠMed al\",\"Ġtax p\",\"Ġdisplay ed\",\"Ġg rav\",\"Ġf iscal\",\"M on\",\"ĠMos cow\",\"ĠK ong\",\"ĠCent re\",\"Ġcamer as\",\"ĠMr s\",\"ĠH ay\",\"Ġa ver\",\"ĠK elly\",\"p y\",\"Ġrequire ment\",\"Ġent itled\",\"omb ie\",\"Ġsh adow\",\"ag ic\",\"ĠA k\",\"Ġel ite\",\"Ġdiv ided\",\"Ġhead ing\",\"Ġcop ies\",\"Ġloss es\",\"Ġv it\",\"k ed\",\"ĠB ry\",\"Ġan s\",\"ĠSte am\",\"Ġrep orter\",\"he im\",\"ĠIt em\",\"Ġsuper ior\",\"d on\",\"ere nt\",\"Ã ¶\",\"Ġtherap y\",\"Ġpe ak\",\"ĠMod el\",\"Ġl ying\",\"Ġg am\",\"z er\",\"r itten\",\"Ġrespons es\",\"Ġconsider ation\",\"ĠB ible\",\"Ġl oyal\",\"Ġinst ant\",\"Ġp m\",\"ĠFore st\",\"Ã ¼\",\"Ġext end\",\"Ġconv icted\",\"Ġfound er\",\"Ġconv in\",\"ĠO ak\",\"che ck\",\"Ġsch olars\",\"p ed\",\"Ġover se\",\"T op\",\"c ount\",\"ĠAr k\",\"Â ·\",\"Ġ0 6\",\"ĠL A\",\"m d\",\"ĠLat in\",\"im ental\",\"ĠC PU\",\"Ġsubst ance\",\"Ġminor ity\",\"Ġmanufact uring\",\"E r\",\"ocol ate\",\"Ġatt ended\",\"ĠMan ager\",\"r ations\",\"Ġappreci ate\",\"om y\",\"GB T\",\"id ency\",\"B L\",\"Ġguarant ee\",\"pos ition\",\"Ġo cean\",\"clud e\",\"Ġhead ed\",\"Ġt ape\",\"Ġlo ose\",\"Ġlog ic\",\"Ġpro ven\",\"Ġsp ir\",\"Ġad mit\",\"is a\",\"Ġinvestig ate\",\"Ġ199 4\",\"sy lv\",\"ĠL ost\",\"c est\",\"Ġ7 1\",\"Ġrequest ed\",\"Ġwind ows\",\"ĠPok Ã©\",\"ĠWith out\",\"M et\",\"Ġbehavi our\",\"Ġread er\",\"Ġh ung\",\"ĠKe ep\",\"Ġro les\",\"Ġimplement ed\",\"Ġbl ank\",\"Ġserv es\",\"ĠJ ay\",\"Ġc ited\",\"ĠF riend\",\"prof it\",\"ap on\",\"Ġrep air\",\"it em\",\"arr ass\",\"Ġcrit ics\",\"ad i\",\"ĠF ather\",\"Ġsh out\",\"Ġf ool\",\"Ġ8 8\",\"Ġprodu cing\",\"Ġl ib\",\"Ġround s\",\"Ġcirc le\",\"Ġpre par\",\"Ġsub mit\",\"Ġn ic\",\"mor row\",\"ãĥ «\",\"U nder\",\"Ġv ital\",\"ater n\",\"Ġpass word\",\"Ġpublic ation\",\"Ġprom inent\",\"Ġspeak s\",\"Ġb ars\",\"Ġde eper\",\"ĠM ill\",\"port ed\",\"Ġw id\",\"Ġbut ter\",\"Ġsm oking\",\"Ġindic ates\",\"K ey\",\"rop ri\",\"ĠF ile\",\"all ing\",\"ast ing\",\"ĠR us\",\"Ġad j\",\"Ġ7 9\",\"av al\",\"Ġpres um\",\"bur gh\",\"on ic\",\"Ġf ur\",\"Ġpoll s\",\"ik a\",\"Ġsecond ary\",\"Ġmon ster\",\"ig s\",\"ĠCur rent\",\"E vent\",\"Ġowners hip\",\"end ar\",\"Ġarri ve\",\"ĠT ax\",\"Ġn ull\",\"ĠPri v\",\"Ġth ro\",\"Ġk iss\",\"c at\",\"Ġup set\",\"ang le\",\"it ches\",\"ect or\",\"olog ists\",\"ĠGal axy\",\"Ġcor ruption\",\"Ġh int\",\"ent er\",\"ĠH ospital\",\"Ġgreat ly\",\"Ġbeg un\",\"es y\",\"Ġso il\",\"ĠAnt on\",\"Ġmain tenance\",\"ãĥ ©\",\"Ġdo zens\",\"Ġhuman ity\",\"ĠAl abama\",\"Ġr om\",\"w orth\",\"ap ing\",\"sylv ania\",\"l ah\",\"Ġg athered\",\"G A\",\"Ġattack ing\",\"f ound\",\"ĠSqu are\",\"Ġar bit\",\"ict ions\",\"ĠW isconsin\",\"Ġd ance\",\"ĠS aint\",\"arch y\",\"Ġbase ball\",\"Ġcontribut ions\",\"Ġliter ature\",\"Ġex ha\",\"per ty\",\"t est\",\"Ġb ab\",\"Ġcontain er\",\"let ter\",\"Ġfall en\",\"Ġwebs ites\",\"Ġbott le\",\"ĠS ac\",\"Ġbre ast\",\"ĠP L\",\"Ġveter an\",\"Ġinterview s\",\"ĠA le\",\"Ġb anned\",\"eng ers\",\"ĠRev olution\",\"in th\",\"Ġconc erning\",\"IV E\",\"Ġexp enses\",\"ĠMatt hew\",\"ĠColumb ia\",\"d s\",\"ist ance\",\"Ġent ity\",\".. .\\\"\",\"Ġrel iable\",\"Ġpar alle\",\"ĠChrist ians\",\"Ġopin ions\",\"Ġin du\",\"l ow\",\"Ġcompet e\",\"Ġth orough\",\"Ġemploy ed\",\"Ġestablish ment\",\"ig en\",\"ĠC ro\",\"Ġlawy ers\",\"ĠSt ation\",\"T E\",\"ĠL ind\",\"ĠP ur\",\"it ary\",\"Ġeffic iency\",\"âĢ Ĳ\",\"ĠL y\",\"Ġm ask\",\"Ġdis aster\",\"Ġag es\",\"ER E\",\"es is\",\"ĠH old\",\"Ġcas ual\",\"b led\",\"Ġen abled\",\"ĠEn vironment\",\"ĠInt elligence\",\"i per\",\"ĠM ap\",\"ĠB E\",\"Ġemer ged\",\"is dom\",\"Ġc abin\",\"Ġregist ration\",\"Ġfing ers\",\"Ġro ster\",\"Ġfram ework\",\"ĠDo ctor\",\"et ts\",\"Ġtransport ation\",\"Ġaware ness\",\"H er\",\"Ġattempt ing\",\"O ff\",\"ĠSt ore\",\"ÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤ\",\"ĠK now\",\"Ġdef ence\",\"Ġsc an\",\"ĠT en\",\"ĠCh air\",\"ĠP H\",\"ĠAtl anta\",\"Ġfuck ing\",\"Ġans wered\",\"b n\",\"ĠK ar\",\"Ġcateg ories\",\"Ġr ational\",\"Ġc ust\",\"Ġrob ot\",\"Ġcorrect ly\",\"Ġg if\",\"Ġgraph ics\",\"m ic\",\"Ġground s\",\"ĠO pp\",\"i ate\",\"Ġdist ributed\",\"Ġsan ctions\",\"Ġchalleng ing\",\"ut o\",\"Ġingred ients\",\"Ġinv ited\",\"Ġfound ed\",\"ĠRe qu\",\"d ed\",\"Ġb owl\",\"Ġbrother s\",\"ĠH a\",\"I O\",\"Ġw ages\",\"im ore\",\"oc ial\",\"Ġse ed\",\"ative ly\",\"Ġaddress es\",\"ĠI owa\",\"ab eth\",\"Ġatt itude\",\"is d\",\"ch ild\",\"Ġm ole\",\"Ġdisco very\",\"y ard\",\"B r\",\"Ġ8 2\",\"Ġsuppl ies\",\"ell ing\",\"Ġdist ingu\",\"C R\",\"Ġre cept\",\"Ġ vert\",\"Ġsw im\",\"b ec\",\"d oor\",\"ĠY eah\",\"Ġg al\",\"Ġinter act\",\"ĠE SP\",\"ĠC S\",\"amp s\",\"Ġconvin ced\",\"Ġobject ive\",\"Ġdis h\",\"ĠPhot os\",\"l ad\",\"Ġdownt own\",\"o il\",\"in ction\",\"Ġto morrow\",\"ĠC OM\",\"Ġsurv ival\",\"sh ot\",\"Ġsett lement\",\"C ons\",\"ĠX box\",\"int erest\",\"ĠS M\",\"arg o\",\"en ess\",\"Ġeth nic\",\"b ered\",\"M in\",\"ĠT ok\",\"Ġinc ent\",\"ĠComm and\",\"Ġmain tained\",\"Ġbreak s\",\"br idge\",\"at ar\",\"ag g\",\"ĠF inally\",\"un icip\",\"ĠO nt\",\"le ft\",\"Ġrecogn ition\",\"Ġ* /\",\"ĠP ers\",\"Ġwe lf\",\"Ġaddress ed\",\"ĠK ansas\",\"Ġvir us\",\"Ġwhere as\",\"Ġp apers\",\"ram s\",\"ĠMin istry\",\"Ġple asure\",\"Ġacqu ired\",\"Ġd uration\",\"j pg\",\"Ġcal m\",\"ĠN HL\",\"Ġburn ing\",\"Ġfold er\",\"ick ed\",\"ĠP y\",\"ĠIll inois\",\"Cl ass\",\"ĠGodd ess\",\"Ġperform ing\",\"Ġwelf are\",\"j ar\",\"In ter\",\"Ġl in\",\"Ġenh ance\",\"Ġnot ion\",\"f are\",\"yp es\",\"ĠAre a\",\"Ġcann abis\",\"ĠDie go\",\"f s\",\"ĠM anchester\",\"com m\",\"in ite\",\"Ġcover ing\",\"ĠS ound\",\"Ġ19 60\",\"Ġ8 4\",\"e lect\",\"z ing\",\"Ġcitiz en\",\"Ġph ones\",\"Ġr aid\",\"Ġign ored\",\"ĠOb ject\",\"Ġu pload\",\"c ard\",\"Ġmod ified\",\"Ġroom s\",\"ia h\",\"r ange\",\"he ast\",\"ach us\",\"Ġsuggest ing\",\"âĢ ĭ\",\"gr ade\",\"E l\",\"Ġclot hing\",\"Ġr h\",\"ĠH an\",\"un ity\",\"en cing\",\"ĠAust in\",\"sec ution\",\"t ra\",\"d em\",\"ĠQ ual\",\"Ġhe aven\",\"Ġst ages\",\"Ġw edd\",\"pl us\",\"ific ial\",\"ĠIm m\",\"ĠH o\",\"iet ies\",\"Ġphr ase\",\"Ġbr ill\",\"act ory\",\"Ġprov iders\",\"Ġsil ence\",\"Ġa er\",\"ĠA I\",\"ĠAd venture\",\"Ġplatform s\",\"Ġdemonstr ated\",\"Ġinter f\",\"ing ton\",\"Ġr aces\",\"Ġgr ade\",\"ult ane\",\"ĠTh rough\",\"f alse\",\"Ġb ow\",\"ĠA B\",\"Ġfl avor\",\"Ġhistor ic\",\"g ov\",\"Ġcol our\",\"Ġview ed\",\"ĠEm ail\",\"el come\",\"Ġinter vention\",\"Ġd iversity\",\"Ġperiod s\",\"Ġre verse\",\"ĠV ery\",\"Ġqu ote\",\"ĠLe ft\",\"th rough\",\"Ġsc rew\",\"Ġland ing\",\"Ġp ill\",\"Ġw et\",\"Ġprot esters\",\"Ġrepe at\",\"av ed\",\"er k\",\"Ġsal ary\",\"ĠPenn sylvania\",\"St ill\",\"Ġmay or\",\"Ġkit chen\",\"Ġfeat uring\",\"ĠM useum\",\"ĠT ournament\",\"ĠF al\",\"Ġser vers\",\"U C\",\"Ġany body\",\"im g\",\"ĠTr ade\",\"ixt ure\",\"the less\",\"Ġfin ance\",\"Ġcl osing\",\"ĠPat ri\",\"i ac\",\"ab el\",\"Ġ> >\",\"or ous\",\"Ġf irms\",\"sc reen\",\"un a\",\"Ġemb arrass\",\"ul se\",\"Ġlet ting\",\"Ġth rew\",\"ile y\",\"Ġch annels\",\"l an\",\"ĠVeg as\",\"Ġse ar\",\"Ġfant astic\",\"ar re\",\"uzz le\",\"ĠD er\",\"Th ose\",\"Ġsw ing\",\"Ġshe et\",\"ind ex\",\"co ver\",\"og an\",\"Ġvari ables\",\"ĠTe ch\",\"Ġsp oken\",\"ac hel\",\"ĠD a\",\"ĠMount ain\",\"Ġload ed\",\"Ġfoot age\",\"vers ion\",\"Ġun l\",\"ĠPh oenix\",\"Ġthrow ing\",\"Ġf iring\",\"Ġtrack ing\",\"Ġw idth\",\"Ġstrugg ling\",\"ro oms\",\"ot ion\",\"Ġmonth ly\",\"ĠSer ver\",\"Ġegg s\",\"op en\",\"M C\",\"Ġ199 3\",\"Ġh ired\",\"Ġstay ed\",\"ĠAll en\",\"Ġst ro\",\"Ġ9 8\",\"st ep\",\"ĠTurk ish\",\"Ġfab ric\",\"ist ing\",\"ĠD om\",\"Ġd ates\",\"Ġpr on\",\"Ġbasket ball\",\"Ġl ucky\",\"ĠArab ia\",\"Ġassum ed\",\"est y\",\"Ġaff airs\",\"Ġgl ad\",\"ĠInd eed\",\"ĠF A\",\"ĠW ord\",\"Ġjo ining\",\"if ice\",\"p read\",\"ir ts\",\"ĠSe lect\",\"Ġpop ulations\",\"aw are\",\"Ġn ose\",\"Ġcompl aints\",\"st art\",\"Ġsc oring\",\"Th anks\",\"Ġmin ing\",\"Ġvisit ors\",\"S H\",\"Ġdam aged\",\"Ġcharacter istics\",\"ĠP ent\",\"D C\",\"Ġ8 3\",\"ĠS ix\",\"r ates\",\"Ġfl ags\",\"ĠB rew\",\"d og\",\"M ark\",\"// //\",\"Ġexec ution\",\"Ġj oke\",\"ph ones\",\"Ġtestim ony\",\"Ġob st\",\"Q L\",\"ĠC ut\",\"Ġstud ied\",\"ĠN intendo\",\"ick et\",\"ĠN BC\",\"Ġl ad\",\"ĠB ra\",\"ĠM oh\",\"Ġk ernel\",\"Ġoverwhel ming\",\"Ġag ed\",\"Ġapplic able\",\"ĠC ond\",\"Ġroad s\",\"ĠBl ock\",\"m ade\",\"od ge\",\"Ġcomm ands\",\"Ġoff ices\",\"vel and\",\"Ġt ut\",\"Ġrece iver\",\"ĠF ro\",\"Ġsho pping\",\"Ġi P\",\"ĠSt re\",\"ĠA BC\",\"Ġentertain ment\",\"ĠB ow\",\"ort ed\",\"M c\",\"Ġread s\",\"gr ad\",\"ĠCol lect\",\"Ġâ ĪĴ\",\"ĠCap ital\",\"eder ation\",\"Ġemploy er\",\"Ġinvolve ment\",\"Ġanx iety\",\"al ia\",\"Ġro of\",\"ĠAm ong\",\"ĠDemocr at\",\"Ġstat s\",\"ĠV ill\",\"Ġconst itutional\",\"Ġrefer ring\",\"itt y\",\"Ġtack le\",\"out ube\",\"Ġback ed\",\"ĠH ong\",\"ĠBro ad\",\"Ġe le\",\"ĠO tt\",\"Ġ199 2\",\"h our\",\"achus etts\",\"C al\",\"Ġdefe ated\",\"Ġ8 1\",\"es p\",\"Ġseem ingly\",\"w as\",\"ĠJ enn\",\"ĠK urd\",\"Ġg ene\",\"Ġdisc ount\",\"R et\",\"EC T\",\"( );\",\"Ġclub s\",\"Ġs id\",\"ĠM arsh\",\"Che ck\",\"Ġp p\",\"ĠE ag\",\"ides pread\",\"Ġbe ings\",\"F T\",\"Ġintrodu ction\",\"ĠCh ange\",\"AR D\",\"Ġ1 10\",\"ad ows\",\"ier ce\",\"Ġme al\",\"a uthor\",\"ĠB ang\",\"lah oma\",\"Ġr anks\",\"201 1\",\"?? ??\",\"m ax\",\"Ġcoll apse\",\"Ġop ens\",\"Ġe cho\",\"Ġs oph\",\"Ġrac ist\",\"Ġenorm ous\",\"Ġw aves\",\"Ġt ap\",\"Ġcomprehens ive\",\". --\",\"ĠR oy\",\"Ġfarm ers\",\"Rel ated\",\"a ired\",\"ron es\",\"ĠC rim\",\"Ġproport ion\",\"Ġdesign s\",\"Ġnegoti ations\",\"Ġvirt ually\",\"ĠBat man\",\"Ġwar n\",\"Ġlegit imate\",\"m ate\",\"Ġcon vention\",\", ,\",\"net ic\",\"ĠS D\",\"Ġconsist ently\",\"Ġcompens ation\",\"Ġpunish ment\",\"Ġy e\",\"Ġt ie\",\"ĠB ureau\",\"ir lf\",\"ĠB u\",\"ĠA ren\",\"ĠPh ilipp\",\"Ġkn ife\",\"Ġmem ories\",\"ĠR oss\",\"Ġang le\",\"Ġ8 6\",\"ĠTh under\",\"Ġre nd\",\"ĠT our\",\"Ġcount s\",\"s ung\",\"ĠIm p\",\"Ġeduc ational\",\"Ġaccess ible\",\"C OM\",\"Ġd rew\",\"y er\",\"G l\",\"am ine\",\"OR T\",\"O B\",\"I B\",\"m aster\",\"Ġtri als\",\"og y\",\"h ar\",\"ĠTr ust\",\"Ġprefer red\",\"irlf riend\",\"ĠN ev\",\"Ġb in\",\"Ġc ow\",\"P age\",\"Ġsign ature\",\"ĠB L\",\"7 00\",\"Ġret ired\",\"Ġby tes\",\"Ġneigh b\",\"ĠLeg end\",\"Ġdev ast\",\"Ġsuspect ed\",\"is ons\",\"ĠPokÃ© mon\",\"sc ale\",\"Ġcap abilities\",\"Ġre vel\",\"Ġche ese\",\"d y\",\"igr ant\",\"Ġfail ing\",\"b its\",\"ĠHer oes\",\"ĠG host\",\"ĠS cient\",\"Ġappoint ed\",\"ur i\",\"Ġinst itution\",\"Ġexpand ed\",\"g reg\",\"Ġmonitor ing\",\"Ġp odcast\",\"Ġcoal ition\",\"Ġ9 6\",\"J o\",\"Ġst olen\",\"ĠS ab\",\"Ġstop s\",\"Ġhol iday\",\"Ġint r\",\"C ar\",\"Bl ack\",\"ĠL GBT\",\"Ġwar ming\",\"ĠAnd erson\",\"Ġ8 9\",\"Ġprodu cer\",\"M ed\",\"Ġaccur acy\",\"ĠMar vel\",\"iz abeth\",\"ĠPat rick\",\"m ony\",\"Ġmin i\",\"ac les\",\"Ġover t\",\"the y\",\"Ġmembers hip\",\"ĠV en\",\"Ġex ch\",\"Ġrem oval\",\"ĠD ave\",\"T Y\",\"m ad\",\"ĠF ind\",\"Ġad equ\",\"Ġe c\",\"Ġte eth\",\"Ġemot ion\",\"Ġper m\",\"Ġsole ly\",\"d b\",\"Ġextra ord\",\"IG HT\",\"c al\",\"Ġgu idelines\",\"Ġd ying\",\"Ġsusp ended\",\"ĠPrem ier\",\"ĠAnth ony\",\"el ve\",\"Ġd ad\",\"ĠE th\",\"ĠFoot ball\",\"Ġabandon ed\",\"Ġ< <\",\"Ġm arch\",\"Ġhor ror\",\"âĢ¦ \\\"\",\"Ġchild hood\",\"Ġcampaign s\",\"Ġl unch\",\"ĠAl bert\",\"bl ock\",\"âĸĪ âĸĪ\",\"ound ing\",\"Ġb one\",\"or gan\",\"ad ers\",\"ĠFl ash\",\"ĠDri ve\",\"Ġton ight\",\"Ġw ars\",\"ĠF L\",\"Ġform ation\",\"con st\",\"New s\",\"Ġcom pe\",\"or ious\",\"ĠSt aff\",\"Ġdiscuss ions\",\"ĠProt ection\",\"ĠJ am\",\"Ġcrit eria\",\"Ġinstall ation\",\"Ġaccompl ish\",\"iz za\",\"Ġpub lisher\",\"Ġresc ue\",\"ĠT ry\",\"U LL\",\"ĠS om\",\"ĠH op\",\"ore t\",\"th s\",\"ord on\",\"Ġp ocket\",\"ĠIn v\",\"Down load\",\"ĠCr ime\",\"Ġb ene\",\"ĠGu ide\",\"ĠAs sembly\",\"Ġparam eters\",\"I E\",\"ĠAlex ander\",\"Ġconc ert\",\"ĠSc he\",\"Ġsh oes\",\"Ġvis iting\",\"Ġrec all\",\"Ġb ub\",\"Ġr ural\",\"Ġconc rete\",\"ĠR os\",\"N ext\",\"R uss\",\"Ġlo ans\",\"ĠSh ield\",\"Ġtre m\",\"hem at\",\"k g\",\"ĠHar ris\",\"is ition\",\"ĠM ove\",\"ĠF C\",\"Ġf ate\",\"ĠCh o\",\"Ġt ired\",\"Ġprinc ipal\",\"h ist\",\"ien ces\",\"ath y\",\"Ġse vent\",\"Ġm ood\",\"Ġstrateg ic\",\"Ġdise ases\",\"Ġfor um\",\"Ġtem por\",\"Ġhead quarters\",\"P ar\",\"ig e\",\"fl ix\",\"Ġgu itar\",\"Ġ9 4\",\"On ly\",\"Ġrele ases\",\"ro ph\",\"================ ================\",\"Ġ6 00\",\"ĠContin ue\",\"ig ate\",\"ĠC rit\",\"sy stem\",\"Ġdis abled\",\"Ġunex pected\",\"ith ub\",\"Ġuncle ar\",\"ĠE st\",\"Ġcontr ad\",\"Ġstrateg ies\",\"vent ures\",\"Ġpass age\",\"AM E\",\"Ġimpro ving\",\"Ġreve als\",\"Ġdecre ase\",\"ov a\",\"Ġann oy\",\"ĠSh ort\",\"ĠL ibrary\",\"Ġcy ber\",\"n ell\",\"ĠH ur\",\"ĠC B\",\"Ġphot ograp\",\"U I\",\"Ġs ed\",\"G e\",\"Ġ8 7\",\"Ġd iverse\",\"Ġencour aged\",\"Ġcons piracy\",\"Ġbird s\",\"Ġoper ator\",\"Ġhand ful\",\"Ġclass ified\",\"? )\",\"Ġdram atic\",\"Ġinvestig ators\",\"it o\",\"Ġw idespread\",\"ĠR oom\",\"-------------------------------- --------------------------------\",\"Ġcollect ive\",\"Ġjournal ist\",\"St ring\",\"Ġtemper atures\",\"il a\",\"Ġgu id\",\"Ġins pect\",\"Ġmiss ile\",\"ĠMay or\",\"Ġman ual\",\"Ġsim ultane\",\"Ġrat ings\",\"Ġsu ck\",\"Ġ9 7\",\"Ġunivers al\",\"Ġph arm\",\"Ġdis rupt\",\"ian o\",\"A V\",\"Ġf t\",\"Ġstat ist\",\"old s\",\"ĠWalk er\",\"ph p\",\"Ġunder t\",\"ĠL as\",\"ish op\",\"nt il\",\"res hold\",\"ĠWhe ther\",\"M s\",\"Ġden y\",\"ĠCl oud\",\"Ġprov ider\",\"Ġsurv iv\",\"ĠUp date\",\"h as\",\"Ġmist akes\",\"ch arge\",\"pl ed\",\"r ity\",\"Ġn ode\",\"ĠMass achusetts\",\"ool s\",\"lic ation\",\"Ġf ails\",\"em ale\",\"or i\",\"back s\",\"Ġsh irt\",\"Ġ' '\",\"ĠN AT\",\"Ġwat ers\",\"els on\",\"Ġe ase\",\"Ġsc ar\",\"Ġcont ents\",\"m ind\",\"Ġcont ribution\",\"Ġsh r\",\"Ġhand ed\",\"Ġst ability\",\"Ġtra ve\",\"E m\",\"Ġmir ror\",\"12 3\",\"Ġwe igh\",\"Ġf iction\",\"ou ver\",\"ist ant\",\"r ition\",\"ĠF ed\",\"Ġphys ically\",\"Ġst ake\",\"ĠArt icle\",\"ĠAr c\",\"ĠLew is\",\"ĠM ind\",\"Ġdemonstr ate\",\"Ġprof its\",\"v ision\",\"om ic\",\"ol id\",\"Ġbatt les\",\"Ġdri ves\",\"Ġeas tern\",\"ĠS ony\",\"!! !\",\"ar ation\",\"v ard\",\"ĠG L\",\"port ation\",\"Ġ9 2\",\"Ġlaw makers\",\"Ġprotect ing\",\"ĠE PA\",\"Ġy eah\",\"Ġsh ame\",\"ol ph\",\"e ven\",\"x it\",\"Ġatt ach\",\"Ġrepresent ing\",\"Ġob s\",\"ĠUt ah\",\"iff s\",\"ĠFre edom\",\"Ã ³\",\"A K\",\"Ġinc idents\",\"it age\",\"Ġview ers\",\"c d\",\"Ġm ouse\",\"Ġcl ar\",\"Ġaccord ance\",\"Ġb ot\",\"c or\",\"ĠSum mer\",\"he ld\",\"Ġinnoc ent\",\"Ġiniti ative\",\"ol s\",\"________________ ________________\",\"Ġsp ots\",\"p ace\",\"Ġconvent ional\",\"Ġcorpor ations\",\"Ġblock ed\",\"H D\",\"at tered\",\"Ġref ers\",\"Ġbu ck\",\"ĠDig ital\",\"12 0\",\"Ġtop ics\",\"T F\",\"Ä ģ\",\"br id\",\"re ement\",\"Ġunder lying\",\"ĠM ember\",\"Ġinvestig ating\",\"Ġpregn ancy\",\"Ġtouch down\",\"ĠB and\",\"ĠCall er\",\"Ġinst ances\",\"P P\",\"w a\",\"G ood\",\"Ġ199 1\",\"ĠC old\",\"Ġfear s\",\"Ġrem arks\",\"Ĩ Ĵ\",\"at al\",\"Ġm it\",\"Ġexper iments\",\"i pt\",\"Col or\",\"ind u\",\"Up date\",\"Ġ9 3\",\"A g\",\"Ġ å\",\"anc ouver\",\"B oth\",\"Ġjud ges\",\"Ob ject\",\"Ġst ere\",\"umb n\",\"Ġparticip ation\",\"ĠSt ars\",\"ĠJ ere\",\"Ġweek ly\",\"ĠB an\",\"Ġconvers ations\",\"ĠP itt\",\"u z\",\"ĠIndian a\",\"ĠK ick\",\"Ġinf ection\",\"Ġhero es\",\"Ġsett led\",\"Ġstri p\",\"Ġh al\",\"Ġd ump\",\"ĠS ci\",\"Ġl es\",\"Ġref erences\",\"ĠU RL\",\"ĠBr idge\",\"Ġwant ing\",\"For ce\",\"Ġex clus\",\"Me anwhile\",\"m n\",\"Ġg entle\",\"m aker\",\"sen al\",\"ĠG ro\",\"ou ri\",\"ĠR ain\",\"ĠAll iance\",\"Ġl ift\",\"el a\",\"S D\",\"ĠCle veland\",\"Ġrank ed\",\"Ġst adium\",\"Ġdead ly\",\"ä ¸\",\"Ġr iding\",\"ar ia\",\"ĠAr mor\",\"Ġdocument ation\",\"ĠGree ce\",\"ree k\",\"Ġl ens\",\"ĠS a\",\"Ġg ross\",\"ĠE mer\",\"ag ers\",\"ĠD ub\",\"ĠR h\",\"ĠAM D\",\"Ġarri val\",\"Ġdes ert\",\"Ġsupp lement\",\"ĠRes p\",\"Ġkn ee\",\"Ġmarg in\",\"f ont\",\"og g\",\"201 0\",\"ĠP ir\",\"ĠP rom\",\"iv als\",\"Ġint ake\",\"Ġdifferent ly\",\"ug s\",\"Ġb its\",\"clud ed\",\"Ġsearch ing\",\"ĠD u\",\"um ble\",\"Ġfunction al\",\"ĠBalt imore\",\"ĠC ould\",\"Ġdes ired\",\"Ġcirc uit\",\"ĠL yn\",\"ĠG O\",\"ĠF alse\",\"re pre\",\"' :\",\"alt ies\",\"Ġmin im\",\"Ġdro ve\",\"ĠSh ould\",\"Ġh ip\",\"Ġpro s\",\"Ġut ility\",\"ĠN ature\",\"ĠM ode\",\"P resident\",\"o pp\",\"r at\",\"form ance\",\"Ġconcent ration\",\"Ġf ont\",\"ĠB ud\",\"Ġam id\",\"Ġre vers\",\"ĠM L\",\"B ar\",\"Ġinter action\",\"Ġjur isd\",\"Ġspell s\",\"d ep\",\"f il\",\"Ġcivil ians\",\"ut ter\",\"ĠCo oper\",\"ĠBel ow\",\"Ġent rance\",\"Ġcon vert\",\"Ġcontrovers y\",\"ow ered\",\"Ġcontr ary\",\"Ġar c\",\"ĠExec utive\",\"ĠOffic er\",\"Ġpack ages\",\"Ġprog ressive\",\"w idth\",\"Ġreserv ed\",\"v ol\",\"ĠSam sung\",\"Ġprint ed\",\"Ġcent ers\",\"Ġintrodu ce\",\"ĠKenn edy\",\"Ġodd s\",\"Ġsure ly\",\"Ġindepend ence\",\"Ġpass engers\",\"repre ne\",\"ĠBe h\",\"Ġl oves\",\"ĠESP N\",\"Ġfac ilit\",\"Ġident ical\",\"Ġdo ct\",\"Ġpartners hip\",\"con f\",\"ĠH ide\",\"Ġconf used\",\"ĠC ow\",\"M en\",\"Ġw rest\",\"ĠIraq i\",\"Ġh oles\",\"ĠStud ies\",\"Ġpregn ant\",\"h ard\",\"Ġsign als\",\"I X\",\"Ġpull ing\",\"Ġgrad uate\",\"Ġnomine e\",\"D ate\",\"Ġper mitted\",\"Ġâ Ĥ¬\",\"ĠOk lahoma\",\"St art\",\"Ġauthor ized\",\"Ġal arm\",\"ĠC os\",\"v an\",\"Ġgener ations\",\"c ular\",\"Ġdr agon\",\"ĠSoft ware\",\"ĠEd ward\",\"Ġcontro ller\",\"S en\",\"ge red\",\"ĠV ik\",\"Ġappro ached\",\"Th ank\",\"Ġcan ce\",\"Ġform ula\",\"ĠSm all\",\"Ġweak ness\",\"Ġr amp\",\"it udes\",\"j ud\",\"Ġbrill iant\",\"Ġacc us\",\"s ource\",\"Ġ8 00\",\"ĠE vil\",\"S w\",\"Ġhom eless\",\"we ek\",\"i ens\",\"r ics\",\"ĠTh ird\",\"T O\",\"Ġorgan ic\",\"Ġpresent ation\",\"ag h\",\"ĠDown load\",\"v ation\",\"Ġas sembly\",\"or able\",\"hold ers\",\"ĠBern ie\",\"ĠHel p\",\"Ġt ong\",\"ĠF ight\",\"Ġbe ach\",\"B ook\",\"ĠL ic\",\"Ġr ush\",\"ĠR ound\",\"ou p\",\"ĠMar x\",\"Ġcalcul ated\",\"ĠDe vil\",\"ĠSar ah\",\"Ġoccasion ally\",\"Ġbul let\",\"Av ailable\",\"g ate\",\"Ġ9 1\",\"Ġh osp\",\"Ġprom ises\",\"ĠH IV\",\"ĠSt adium\",\"ĠSt ock\",\"ĠCorpor ation\",\"g age\",\"N G\",\"ĠC redit\",\"Ġs ne\",\"ib l\",\"Ġacc um\",\"s uch\",\"Ġterror ists\",\"Ġconscious ness\",\"ĠZ h\",\"Ġdram a\",\"ool a\",\"pir ation\",\"Ġlab our\",\"ĠN in\",\"Ġut ter\",\"Ġdemocr atic\",\"Ġass ass\",\"il ation\",\"Ġg est\",\"Ġab road\",\"Ġmet ab\",\"Ġs orts\",\"Ġfl av\",\"U B\",\"Ġm g\",\"ĠNot hing\",\"ĠO d\",\"Ġmus ical\",\"200 9\",\"Ġdro ps\",\"oc ated\",\"ater al\",\"0000 00\",\"Ġg re\",\"Ġequ ality\",\"Ġburd en\",\"Ġv ig\",\"ĠLe ader\",\"-------- ----\",\"Ġcere mony\",\"Ġf ighter\",\"Ġact ors\",\"Ġ æ\",\"am an\",\"F i\",\"Ġal ign\",\"put er\",\"Ġe lder\",\"ĠN SA\",\"Ġrepresent ation\",\"ĠOnt ario\",\"IT H\",\"usal em\",\"Ġharass ment\",\"itz er\",\"Ġsy mp\",\"Ġbox es\",\"ĠD R\",\"Ġman ifest\",\"at re\",\"Ġ ^\",\"Ġd ies\",\"le ton\",\"Ġmiss ions\",\"et he\",\"Ġres olve\",\"Ġfollow ers\",\"Ġas c\",\"Ġk m\",\"l ord\",\"am med\",\"Ġsil ent\",\"ĠAssoci ated\",\"Ġtim ing\",\"Ġprison ers\",\"ĠK ings\",\"ĠF ive\",\"Ġtow er\",\"Ġappro aches\",\"Ġprecise ly\",\"Ġb ureau\",\"ĠM other\",\"ĠI ss\",\"Ġkey board\",\"it ual\",\"Ġfund ed\",\"Ġstay ing\",\"Ġpsych ological\",\"Ġm ile\",\"ĠLe on\",\"ĠBar b\",\"w ill\",\"Ġw ider\",\"ĠAtl antic\",\"Ġt ill\",\"ĠR ome\",\"ro t\",\"Ġaccomp an\",\"Ġfl our\",\"ac o\",\"W orld\",\"ĠExp ress\",\"ĠY u\",\"C or\",\"Ġple ased\",\"part y\",\"Ġpoint ing\",\"Ġinf lation\",\"Ġro y\",\"Ġ ),\",\"ain er\",\"Ġwedd ing\",\"orm on\",\"Ġrequ iring\",\"Ġqual ified\",\"Ġse gment\",\"EN D\",\"Ġs izes\",\"e als\",\"Ġcor rupt\",\"ass ador\",\"Ġcele b\",\"Ġdream s\",\"ĠM ess\",\"Ġcheck ing\",\"ĠV ersion\",\"Ġprep aring\",\"Ġact ively\",\"ĠD iff\",\"Ġl ux\",\"ĠW inter\",\"act eria\",\"ĠN E\",\"Ġdep uty\",\"Ġtrans gender\",\"Ġsum mary\",\"Ġin her\",\"er ies\",\"ch ar\",\"ĠY an\",\"Ġkn ock\",\"ĠP ath\",\"Ġl ip\",\"roll er\",\"Ġimp ression\",\"Ġcelebr ate\",\"Ġsl ide\",\"Ġgu ests\",\"Ġcl ip\",\"F S\",\"Ġsav ings\",\"Ġcapt ain\",\"Ġleg acy\",\"ĠDen ver\",\"Ġw ounded\",\"tab oola\",\"AC T\",\"Ġpurs ue\",\"Ġo xy\",\"Ġ q\",\"Ġsem i\",\"ĠN eed\",\"ĠAff airs\",\"Ġob sc\",\"Ġcheck ed\",\"Ġd ual\",\"C ode\",\"ĠM D\",\"le m\",\"ult y\",\"ĠÂ ©\",\"ĠEl izabeth\",\"Ġcent uries\",\"ard ed\",\"s rc\",\"Ġev ident\",\"enn is\",\"at in\",\"Ġunemploy ment\",\"ĠMar io\",\"Ġint im\",\"Ch rist\",\"Ġbi ological\",\"Ġsold ier\",\"ĠAdd ed\",\"Ġm ath\",\"ĠG il\",\"Ġbi as\",\"Ġd ating\",\"ĠO cean\",\"Ġm ice\",\"M us\",\"h ire\",\"ĠT es\",\"Ser ver\",\"lim ited\",\"S ize\",\"Ġmet ers\",\"Ġrock et\",\"es see\",\"Ġcertific ate\",\"ĠIran ian\",\"AS S\",\"Ġgr id\",\"D ec\",\"Ġro lling\",\"com mun\",\"ĠSwed en\",\"b ury\",\"Ġtiss ue\",\"Ġrac ism\",\"ĠL ocal\",\"Ġmyster y\",\"Ġexam ine\",\"Ġst em\",\"Ġs its\",\"Ġhop ed\",\"ot ing\",\"Ġdial ogue\",\"Ġpers u\",\"W atch\",\"l ay\",\"M AN\",\"Ġch ronic\",\"ĠPort land\",\"mark et\",\"ĠS EC\",\"Ġparalle l\",\"Ġsc andal\",\"Ġcar ries\",\"Ġphenomen on\",\"h uman\",\"ack er\",\"ĠO x\",\"Ġretire ment\",\"tain ment\",\"ov ie\",\"ĠG ear\",\"Ġd uties\",\"Ġdo se\",\"Ġsc roll\",\"M B\",\"in f\",\"Ġsa uce\",\"Ġland scape\",\"red dit\",\"ĠChampions hip\",\"ĠRed dit\",\"al id\",\"Ġco in\",\"Ġover s\",\"Ġpost ing\",\"ab out\",\"Ġf el\",\"and y\",\"Ġb old\",\"Ġfocus ing\",\"e ffect\",\"G R\",\"Ġde emed\",\"Ġrecommend ations\",\"Ġste pped\",\"Ġvot er\",\"ĠDe ep\",\"ĠInst agram\",\"Ġmoder ate\",\"ĠMary land\",\"Ġrestrict ed\",\"ĠM B\",\"ĠCh all\",\"Ġto b\",\"Ġc ir\",\"ĠO cc\",\"ĠE ver\",\"Ġcoll aps\",\"IN FO\",\"= -\",\"ĠP ict\",\"ĠAcc ount\",\"n c\",\"Ġo ught\",\"Ġex port\",\"Ġdr unk\",\"( '\",\"Ġw ise\",\"ĠM ort\",\"ne cess\",\"Ġan cest\",\"ĠInc re\",\"Ġfrequ ent\",\"m ir\",\"Ġinterpret ation\",\"Ġdepend ent\",\"Ġco ins\",\"ĠB ol\",\"V ideo\",\"ĠJust in\",\"Ġfat al\",\"Ġcook ing\",\"Ġconf usion\",\"ip her\",\"Ġcust ody\",\"ĠMor gan\",\"om ach\",\"ĠGovern or\",\"Ġrestaur ants\",\"el ing\",\"Ġacknowled ged\",\"Ġthe r\",\"Ġgen es\",\"ch ing\",\"He y\",\"Ġtact ics\",\"ĠMex ican\",\"Ġv end\",\"Ġhe s\",\"qu er\",\"Ġnot ing\",\"ĠCamer on\",\"Ġtarget ing\",\"ro ck\",\"Ġcred its\",\"Ġemot ions\",\"Ġrepresent atives\",\"new s\",\"Ġlegisl ative\",\"Ġrem oving\",\"Ġtweet ed\",\"ĠCar ter\",\"ĠF ixed\",\"Ġfor cing\",\"Ġspeak er\",\"Ġm ales\",\"ĠViet nam\",\"l ined\",\"Ġconcept s\",\"Ġvo ices\",\"o ir\",\"ĠT rib\",\"W he\",\"ĠJer usalem\",\"ĠS ant\",\"Ġc ul\",\"Ġl ady\",\"ĠHaw ai\",\"Ġar ts\",\"ĠIn n\",\"ĠMach ine\",\"ĠEm peror\",\"Ġsl ot\",\"g ly\",\"ĠPro cess\",\"II I\",\"Ġathlet es\",\"ĠTem ple\",\"ĠRep resent\",\"Ġpres c\",\"Ġt ons\",\"Ġgold en\",\"Ġp unch\",\"ĠG R\",\"iver pool\",\"Ġen act\",\"Ġlob by\",\"Ġm os\",\"Ġpick ing\",\"Ġlif etime\",\"Ġcogn itive\",\"E ach\",\"z o\",\"Ġd ub\",\"Ġcons ists\",\"ol n\",\"Ġf estival\",\"am ous\",\"Ġint ellig\",\"w ords\",\"ĠSm art\",\"Ġde le\",\"Ġl apt\",\"Ġmag ical\",\"ĠS in\",\"b us\",\"ur ities\",\"igh th\",\"ĠRub y\",\"ĠS ure\",\"ol ving\",\"Ġj un\",\"O ST\",\"Ġimp osed\",\"Ġast ron\",\"Ġcor rel\",\"ĠN S\",\"ĠK it\",\"ĠF uture\",\"b urn\",\"Ġimm une\",\"oc us\",\"Ġcour ses\",\"ĠSt ring\",\"Ġle an\",\"Ġg host\",\"Ġout comes\",\"Ġexp ense\",\"Ġevery day\",\"Ġaccept able\",\"A h\",\"Ġequ ipped\",\"Ġor ange\",\"F R\",\"ĠD utch\",\"Th ough\",\"ĠR ank\",\"Q U\",\"ĠRober ts\",\"wh at\",\"re nd\",\"Ġdisapp ear\",\"Ġsp awn\",\"ĠL am\",\"o is\",\"Ġdes erve\",\"Ġmin imal\",\"Ġnerv ous\",\"ĠW ould\",\"Ġro ok\",\"ĠV ancouver\",\"Ġres ign\",\"sh ire\",\"ĠW orks\",\"ĠB uild\",\"Ġafford able\",\"ĠG ary\",\"ĠAren a\",\"Ġh anging\",\"Ġimpl ications\",\"ĠS ong\",\"Ġmain taining\",\"Ġgu ards\",\"C ON\",\"Ġder ived\",\"Ġexecut ed\",\"Ġthe ories\",\"Ġqu oted\",\"ĠAnd re\",\"og a\",\"sel ess\",\"in fo\",\"ĠBel g\",\"Ġt ears\",\"ĠSur v\",\"Ġbirth day\",\"ig ious\",\"im mer\",\"Ġspect rum\",\"Ġarchitect ure\",\"Ġrec ruit\",\"arm a\",\"T able\",\"Ġmon sters\",\"ĠG ov\",\"Ġdest ination\",\"Ġattract ive\",\"Ġf oss\",\"ĠMore over\",\"Ġpres ents\",\"TH E\",\"Ġrep ly\",\"pt on\",\"Ġc um\",\"Ġdel ight\",\"Ġaffect s\",\"Ġdon ations\",\"ĠT oy\",\"ĠH im\",\"M ENT\",\"Ġover come\",\"it ched\",\"ĠFant asy\",\"ĠH at\",\"ĠBe ast\",\"b ott\",\"Ġinvestig ations\",\"R un\",\"Ġhun ting\",\"d i\",\"f und\",\"Ġs essions\",\"est yle\",\"Ġport ray\",\"oid s\",\"Y eah\",\"Ġcommun icate\",\"Ġcom edy\",\"ĠY ang\",\"Ġbel t\",\"ĠMar ine\",\"Ġpredict ed\",\"Pl ay\",\"Ġimportant ly\",\"Ġremark able\",\"Ġelim inate\",\"D avid\",\"Ġb ind\",\"V ID\",\"Ġadvoc ates\",\"ĠG aza\",\"im p\",\"D B\",\"ĠN a\",\"ĠSim ilar\",\"I ES\",\"Ġchar ity\",\"v as\",\"m ath\",\"Ġâ ĸ\",\"ok er\",\"nd um\",\"Ġcap s\",\"ĠH al\",\"2 000\",\"e an\",\"Ġfle et\",\"Ġrec re\",\"R ight\",\"Ġsleep ing\",\"ij ing\",\"k ind\",\"Ġdesign ated\",\"Ã ¤\",\"Ġanim ation\",\"ke e\",\"ĠInt rodu\",\"Ġ/ >\",\"Ġdelay ed\",\"Ġtrem end\",\"Ġcur ious\",\"U se\",\"Ġle ct\",\"d am\",\"Ġinnov ation\",\"ĠPoint s\",\"Ġload ing\",\"Ġdisp ute\",\"ct ic\",\"ird s\",\"ĠB Y\",\"Ġn urs\",\"ĠVal ue\",\"ION S\",\"ĠH um\",\"Ġtem plate\",\"m ers\",\"Ġappear ances\",\"ĠEnter tainment\",\"Ġtransl ation\",\"Ġsa ke\",\"Ġbene ath\",\"Ġin hib\",\"Ġe uro\",\"abet es\",\"Ġstud ying\",\"ĠM as\",\"Ġper ceived\",\"Ġexam ined\",\"Ġe ager\",\"Ġco aches\",\"Ġim per\",\"ch i\",\"Ġprodu ces\",\"\\\" ).\",\"ĠEvery one\",\"Ġm unicip\",\"Ġg irlfriend\",\"Ġh ire\",\"ĠV ice\",\"Ġsu itable\",\"op y\",\"Ġin equ\",\"ĠD uke\",\"f ish\",\"f irst\",\"ĠO bs\",\"Ġinter ior\",\"ĠBru ce\",\"ĠR y\",\"Ġanal ys\",\"Ġconsider able\",\"Ġfore cast\",\"Ġf ert\",\"ors hip\",\"ĠD rug\",\"ĠA LL\",\": \\\"\",\"th ur\",\"ĠM ail\",\"Ġball ot\",\"Ġinst antly\",\"ĠCh annel\",\"Ġp icks\",\"Ġ198 9\",\"Ġt ent\",\"ol i\",\"Ġcivil ian\",\"b ling\",\"ell o\",\"b u\",\"Ġin ch\",\"Ġlog o\",\"Ġcooper ation\",\"Ġwal ks\",\"Ġinvest ments\",\"Ġimp rison\",\"ĠF estival\",\"ĠK y\",\"Ġleg ally\",\"Ġg ri\",\"ch arg\",\"S l\",\"Ġthreat ening\",\"du ction\",\"fl ow\",\"Ġdismiss ed\",\"ibr aries\",\"c ap\",\"e le\",\"ĠMc G\",\"ĠHar vard\",\"ĠConserv ative\",\"ĠC BS\",\"p ng\",\"Ġro ots\",\"ĠH aving\",\"umb led\",\"ĠF un\",\"\\\\ /\",\"ĠS earch\",\"ple x\",\"Ġdiscuss ing\",\"Ġcontin u\",\"ĠT ai\",\"ĠW ik\",\"F ree\",\"f it\",\"Ġref use\",\"Ġmanag ing\",\"Ġsy nd\",\"ip edia\",\"w alk\",\"Ġprofession als\",\"Ġguid ance\",\"Ġunivers ities\",\"Ġas semb\",\"unt u\",\"F inally\",\"AS E\",\"ĠAut o\",\"ĠH ad\",\"Ġann iversary\",\"L D\",\"ĠD ur\",\"ĠUlt imate\",\"ih ad\",\"pro duct\",\"Ġtrans it\",\"Ġrest ore\",\"Ġexpl aining\",\"Ġass et\",\"Ġtransfer red\",\"Ġbur st\",\"ap olis\",\"ĠMag azine\",\"ĠC ra\",\"ĠB R\",\"gg ed\",\"ĠH E\",\"M ich\",\"b et\",\"ĠL ady\",\"yl um\",\"erv es\",\"Ġme ets\",\"wh ite\",\"L og\",\"Ġcorrespond ing\",\"Ġins isted\",\"G G\",\"Ġsurround ed\",\"Ġt ens\",\"Ġl ane\",\"Ġco inc\",\"h ome\",\"Ġexist ed\",\"ect ed\",\"ĠDou ble\",\"lam m\",\"Ġske pt\",\"ex p\",\"Ġper ception\",\"ie v\",\"ĠBe ing\",\"o ft\",\"Ġadop t\",\". :\",\"] ;\",\"Wind ows\",\"Ġsatell ite\",\"AS H\",\"Ġinf ant\",\"d escription\",\"ĠMe anwhile\",\"c m\",\"oc a\",\"ĠT reat\",\"act or\",\"Ġtob acco\",\"ĠN orm\",\"em ption\",\"Ġfl esh\",\"Ġj e\",\"o op\",\"ĠHe aven\",\"Ġbe ating\",\"an im\",\"Ġgather ing\",\"Ġcult iv\",\"G O\",\"ab e\",\"ĠJon athan\",\"ĠSaf ety\",\"Ġbad ly\",\"pro t\",\"Ġcho osing\",\"Ġcontact ed\",\"Ġqu it\",\"Ġdist ur\",\"Ġst ir\",\"Ġto ken\",\"D et\",\"ĠP a\",\"Ġfunction ality\",\"00 3\",\"s ome\",\"Ġlimit ations\",\"Ġmet h\",\"b uild\",\"con fig\",\"N T\",\"re ll\",\"ble m\",\"ĠM om\",\"Ġveter ans\",\"ĠH u\",\"Ġtrend s\",\"are r\",\"ĠG iven\",\"ĠCa ption\",\"m ay\",\"AS T\",\"Ġwond ering\",\"ĠCl ark\",\"n ormal\",\"Ġsepar ated\",\"Ġdes p\",\"st ic\",\"b rew\",\"Ġrel ating\",\"ĠN ik\",\"ĠF arm\",\"Ġenthus i\",\"g ood\",\"d eb\",\"Ġactiv ist\",\"Ġm art\",\"Ġexplos ion\",\"ĠEconom ic\",\"L ink\",\"Ġins ight\",\"Ġconven ient\",\"Ġcounter part\",\"su pport\",\"ĠV irt\",\"ag en\",\"ĠTenn essee\",\"ĠSim on\",\"ĠA ward\",\"OC K\",\"ĠF igure\",\"Ġoverse as\",\"Ġpr ide\",\"ĠC as\",\"n ote\",\"m g\",\"C urrent\",\"Ġdispl ays\",\"cont ent\",\"Ġtravel ing\",\"Ġhosp itals\",\"ĠFin ancial\",\"ĠP ast\",\"Ġdefend ant\",\"Ġstream ing\",\"m ble\",\"ĠBer lin\",\"uk i\",\"Ġdist ribut\",\"Ġant ib\",\"Ġch ocolate\",\"ĠCast le\",\"Ġinter rupt\",\"ĠR ow\",\"Ġconvers ion\",\"Ġbug s\",\"ĠR ather\",\"li est\",\"L Y\",\"ĠJe an\",\"com mon\",\"ak h\",\"Ġ1 30\",\"ot ton\",\"ĠDe an\",\"Ġam endment\",\"Ġgame play\",\"ĠWar ren\",\"od a\",\"Ġhigh lights\",\"Ġir re\",\"ĠNAT O\",\"Ġball s\",\"Ġdemand ing\",\"U RE\",\"ĠL uke\",\"F igure\",\"st op\",\"on ia\",\"z one\",\"iz ers\",\"ĠW R\",\"Ġaward ed\",\"Ġregul atory\",\"ĠH art\",\"ĠS N\",\"pl ing\",\"Ġs our\",\"ĠP ixel\",\"us ive\",\"Ġf et\",\"ĠS ent\",\"Ġautom atic\",\"Ġf er\",\"vern ment\",\"ĠKh an\",\"T ON\",\"f ather\",\"Ġextraord inary\",\"th rop\",\"ĠP ython\",\"ĠG PU\",\"Ġsex ually\",\"Ġdesk top\",\"it ivity\",\"ĠAnton io\",\"Ġo rient\",\"Ġe ars\",\"ob by\",\"ous es\",\"vertis ements\",\"Ġmanufacture rs\",\"ic ient\",\"min ute\",\"Ġconv iction\",\"Ġg arden\",\"p ublic\",\"Ġsatisf ied\",\"f old\",\"O K\",\"Ġin hab\",\"ĠTh ink\",\"Ġprogram me\",\"Ġst omach\",\"Ġcoord in\",\"Ġh oly\",\"Ġth reshold\",\"Ġr het\",\"Ġser ial\",\"Ġemploy ers\",\"ĠEvery thing\",\"ra h\",\"Ġb other\",\"Ġbr ands\",\"Val ue\",\"ĠT ed\",\"ĠPlan et\",\"Ġp ink\",\"ĠFurther more\",\"s a\",\"P E\",\"re ck\",\"ĠUS D\",\"ot te\",\"Ġ& &\",\"Ġland ed\",\"g ets\",\"Ġprodu cers\",\"Ġhealth care\",\"Ġdomin ant\",\"Ġdest ro\",\"Ġam ended\",\"ch ron\",\"Ġf its\",\"ĠSy d\",\"ĠAuthor ity\",\"AT CH\",\"Ġfight s\",\"ĠL LC\",\"Ġ-- -\",\"ĠCor p\",\"Ġtox ic\",\"spe cific\",\"ĠC orn\",\"ĠChe l\",\"Ġtele phone\",\"ĠP ant\",\"Ġmyster ious\",\"aun ch\",\"od ox\",\"med ia\",\"Ġwitness es\",\"ag u\",\"Ġquestion ed\",\"ĠBre xit\",\"ĠRem ember\",\"ene z\",\"Ġend orse\",\"iat ric\",\"ĠId ent\",\"Ġridic ulous\",\"1 10\",\"Ġpr ayer\",\"Ġscient ist\",\"Ġ19 50\",\"ĠA qu\",\"Ġunder ground\",\"ĠU FC\",\"m are\",\"ĠL ater\",\"w ich\",\"Ġsubsc rib\",\"Ġhost s\",\"Ġer r\",\"Ġgr ants\",\"ant om\",\"Ġsum mon\",\"ear ly\",\"ĠC lear\",\"ĠPr im\",\"Ġsusp ension\",\"Ġguarant eed\",\"app er\",\"Ġr ice\",\"ĠSe an\",\"ĠSh in\",\"Ġrefere ndum\",\"Ġfl ed\",\"r ust\",\"Ġ3 60\",\"ter y\",\"Ġsh ocked\",\"B R\",\"ĠO il\",\"ĠAll ah\",\"Ġpart ly\",\"Ġign or\",\"Ġtrans mission\",\"Ġhom osexual\",\"ivers al\",\"Ġhop efully\",\"ãĤ ¤\",\"Ġless on\",\"L eg\",\"Ġ ..\",\"Y et\",\"t able\",\"app ropri\",\"re tt\",\"Ġbo ards\",\"Ġincor rect\",\"Ġb acteria\",\"ar u\",\"am ac\",\"Ġsn ap\",\".' \\\"\",\"Ġpar ad\",\"t em\",\"he art\",\"Ġav ailability\",\"Ġw isdom\",\"Ġ( +\",\"Ġpri est\",\"ĠÂł ĠÂł\",\"O pen\",\"Ġsp an\",\"Ġparam eter\",\"Ġconv ince\",\"Ġ( %)\",\"r ac\",\"Ġf o\",\"Ġsafe ly\",\"Ġconver ted\",\"ĠOlymp ic\",\"Ġres erve\",\"Ġhe aling\",\"ĠM ine\",\"M ax\",\"Ġin herent\",\"ĠGra ham\",\"Ġinteg rated\",\"D em\",\"Ġpip eline\",\"Ġapp lying\",\"Ġem bed\",\"ĠCharl ie\",\"Ġc ave\",\"200 8\",\"Ġcons ensus\",\"Ġre wards\",\"P al\",\"ĠHT ML\",\"Ġpopular ity\",\"look ing\",\"ĠSw ord\",\"ĠAr ts\",\"' )\",\"Ġelect ron\",\"clus ions\",\"Ġinteg rity\",\"Ġexclus ively\",\"Ġgr ace\",\"Ġtort ure\",\"Ġburn ed\",\"tw o\",\"Ġ18 0\",\"P rodu\",\"Ġent reprene\",\"raph ics\",\"Ġg ym\",\"ric ane\",\"ĠT am\",\"Ġadministr ative\",\"Ġmanufacture r\",\"Ġ vel\",\"ĠN i\",\"Ġisol ated\",\"ĠMedic ine\",\"Ġback up\",\"Ġpromot ing\",\"Ġcommand er\",\"Ġfle e\",\"ĠRus sell\",\"Ġforg otten\",\"ĠMiss ouri\",\"Ġres idence\",\"m ons\",\"Ġrese mb\",\"Ġw and\",\"Ġmeaning ful\",\"P T\",\"Ġb ol\",\"Ġhe lic\",\"Ġwealth y\",\"Ġr ifle\",\"str ong\",\"row ing\",\"pl an\",\"as ury\",\"âĢ¦ .\",\"Ġexpand ing\",\"ĠHam ilton\",\"Ġrece ives\",\"S I\",\"eat ures\",\"ĠAn im\",\"RE E\",\"P ut\",\"Ġbrief ly\",\"ri ve\",\"Ġstim ul\",\"Ġ`` (\",\"Ġ __\",\"Ġch ip\",\"Ġha z\",\"Ġpri ze\",\"ĠTh ings\",\"AC E\",\"ul in\",\"d ict\",\"ok u\",\"Ġassoci ate\",\"ock ets\",\"y outube\",\"St ory\",\"ateg ory\",\"Ġm ild\",\"ail ing\",\"ĠY e\",\"O rig\",\"ĠK a\",\"or ig\",\"Ġpropag anda\",\"Ġan onymous\",\"Ġstrugg led\",\"Ġout rage\",\"AT ED\",\"ĠBe ijing\",\"r ary\",\"Ġle ather\",\"Ġworld s\",\"Ġbroad er\",\"12 5\",\"id al\",\"ĠBet ter\",\"Ġt ear\",\"E xt\",\"Ġpropos als\",\"Ġit er\",\"ĠSqu ad\",\"Ġvol unt\",\"m i\",\"D id\",\"ĠP u\",\"p in\",\"Ġspeak ers\",\"Ġb orders\",\"Ġfig ured\",\"= '\",\"Ġsimultane ously\",\"aed a\",\"Ġcharg ing\",\"Ġur ged\",\"Ġcon j\",\"25 6\",\"ĠG ordon\",\"mer ce\",\"Ġdocument ary\",\"Sh are\",\"it ol\",\"ON E\",\"ĠG arden\",\"h att\",\"ĠThom pson\",\"ane ous\",\"ap ore\",\"Ġt anks\",\"Ġless ons\",\"tr ack\",\"Ġout standing\",\"Ġvolunte ers\",\"Ġsp ray\",\"Ġmanag ers\",\"l arge\",\"Ġcamp s\",\"Ġart ificial\",\"ĠR u\",\"Ġb ags\",\"th al\",\"Ġcompat ible\",\"ĠBl ade\",\"Ġf ed\",\"Ġarg ues\",\"F I\",\"Ġunf air\",\"Ġcor n\",\"Ġoff set\",\"Ġdirect ions\",\"Ġdisappoint ed\",\"ĠCon vention\",\"Ġview ing\",\"M E\",\"oc ity\",\"Ġtown s\",\"Ġlay ers\",\"Ġro lled\",\"Ġjump ed\",\"Ġatt ribute\",\"Ġun necess\",\"inc oln\",\"Ġsupp ose\",\"ĠNet her\",\"ch a\",\"Ġbur ied\",\"Ġsix th\",\"B en\",\"ress ing\",\"OU R\",\"Ġw ound\",\"Ġcy cl\",\"Ġmechan isms\",\"Ġcongress ional\",\"ĠE lement\",\"Ġagre ements\",\"Ġdec or\",\"Ġclos est\",\"ĠM it\",\"Go ogle\",\"} }\",\"Ġm ixture\",\"Ġflu id\",\"S ign\",\"ĠSch olar\",\"Ġp ist\",\"ask et\",\"ab ling\",\"Ġrac ing\",\"he ro\",\"ri el\",\"ass y\",\"Ġche aper\",\"b en\",\"Ġvert ical\",\"amac are\",\"ĠRead ing\",\"g ments\",\"Ġhelic op\",\"Ġsacr ifice\",\"ay a\",\"p aren\",\"V A\",\"ĠL es\",\"ĠStud io\",\"Ġviol ations\",\"ĠAn na\",\"ac er\",\"é ¾\",\"ĠR at\",\"ĠBe ck\",\"ĠD ick\",\"ĠA CT\",\"Ġcomp osition\",\"Ġtext ure\",\"ĠO wn\",\"Ġsmart phone\",\"ĠN A\",\"Ġfor b\",\"im port\",\"Ġdef ending\",\"il st\",\"re r\",\"Ġo h\",\"ĠJere my\",\"Ġbank ing\",\"cept ions\",\"Ġrespect ive\",\"/ .\",\"Ġdr inks\",\"ĠW i\",\"Ġb ands\",\"ĠL iverpool\",\"Ġg rip\",\"ĠB uy\",\"Ġopen ly\",\"Ġreview ed\",\"per t\",\"Ġver ify\",\"ĠCo le\",\"ĠW ales\",\"M O\",\"Ġun pre\",\"Ġshel ter\",\"ĠIm perial\",\"Ġgu i\",\"ĠD ak\",\"Ġsuggest ions\",\"Ġexplicit ly\",\"Ġsl ave\",\"Ġblock chain\",\"Ġcompet ing\",\"Ġprom ising\",\"S ON\",\"Ġsoc cer\",\"Ġconst itution\",\"4 29\",\"Ġdist ract\",\"ĠU ser\",\"es ides\",\"ĠMet hod\",\"ĠTok yo\",\"Ġaccompan ied\",\"Cl ient\",\"s ur\",\"al og\",\"Ġident ification\",\"Ġinv asion\",\"as ma\",\"Ġindust ries\",\"pp ers\",\"Ġsub tle\",\"ĠUn it\",\"n atural\",\"Ġsurv ived\",\"Ġfl aw\",\"ĺ ħ\",\"ĠH oll\",\"Ġdef icit\",\"Ġtut orial\",\"ĠCh ance\",\"Ġarg uing\",\"Ġcontem porary\",\"Ġinteg ration\",\"for ward\",\"Ġt um\",\"it is\",\"Ġh iding\",\"ĠD omin\",\"ĠT an\",\"ĠB uilding\",\"ĠV in\",\"Ġspokes person\",\"ĠNot es\",\"Ġemer ging\",\"Ġprepar ation\",\"Ġpro st\",\"Ġsuspect s\",\"Ġaut onom\",\"D escription\",\"Ġdeal t\",\"ĠP ear\",\"Ġstead y\",\"Ġdecre ased\",\"Ġso vere\",\"ĠCl in\",\"Ġgrad ually\",\"ors es\",\"ĠW AR\",\"S erv\",\"ãĤ ¢\",\"h r\",\"Ġd irty\",\"ĠB arn\",\"ĠB C\",\"Ġd il\",\"Ġcal endar\",\"Ġcompl iance\",\"Ġch amber\",\"b b\",\"Ġpass enger\",\"ate ful\",\"ĠT itle\",\"ĠSyd ney\",\"ĠG ot\",\"Ġdark ness\",\"Ġdef ect\",\"Ġpack ed\",\"ass ion\",\"Ġgod s\",\"Ġh arsh\",\"IC K\",\"le ans\",\"Ġalgorith m\",\"Ġoxy gen\",\"Ġvis its\",\"Ġbl ade\",\"Ġkil omet\",\"ĠKent ucky\",\"Ġkill er\",\"P ack\",\"enn y\",\"Ġdiv ine\",\"Ġnom ination\",\"be ing\",\"Ġeng ines\",\"Ġc ats\",\"Ġbuff er\",\"ĠPh ill\",\"Ġtra ff\",\"AG E\",\"Ġtong ue\",\"Ġrad iation\",\"ere r\",\"m em\",\"ĠExpl icit\",\"é¾ į\",\"Ġcou ples\",\"Ġphys ics\",\"ĠMc K\",\"Ġpolit ically\",\"aw ks\",\"ĠBl oom\",\"Ġwor ship\",\"e ger\",\"ut er\",\"ĠF O\",\"Ġmat hemat\",\"Ġsent enced\",\"Ġdis k\",\"ĠM arg\",\"Ġ/ *\",\"P I\",\"Ġoption al\",\"Ġbab ies\",\"Ġse eds\",\"ĠScott ish\",\"Ġth y\",\"] ]\",\"ĠHit ler\",\"P H\",\"ng th\",\"Ġrec overed\",\"ing e\",\"Ġpow der\",\"Ġl ips\",\"Ġdesign er\",\"Ġdis orders\",\"Ġcour age\",\"Ġch aos\",\"\\\" },{\\\"\",\"Ġcar rier\",\"b ably\",\"H igh\",\"ĠR T\",\"es ity\",\"l en\",\"Ġrout es\",\"u ating\",\"F il\",\"N OT\",\"w all\",\"s burgh\",\"Ġeng aging\",\"ĠJava Script\",\"ore r\",\"li hood\",\"Ġun ions\",\"ĠF ederation\",\"ĠTes la\",\"Ġcomple tion\",\"ĠT a\",\"Ġprivile ge\",\"ĠOr ange\",\"Ġne ur\",\"paren cy\",\"Ġb ones\",\"Ġtit led\",\"Ġprosecut ors\",\"ĠM E\",\"Ġengine er\",\"ĠUn iverse\",\"ĠH ig\",\"n ie\",\"o ard\",\"Ġheart s\",\"ĠG re\",\"uss ion\",\"Ġmin istry\",\"Ġpen et\",\"ĠN ut\",\"ĠO w\",\"ĠX P\",\"in stein\",\"Ġbul k\",\"S ystem\",\"ic ism\",\"ĠMarket able\",\"Ġpre val\",\"Ġpost er\",\"Ġatt ending\",\"ur able\",\"Ġlicens ed\",\"ĠG h\",\"et ry\",\"ĠTrad able\",\"Ġbl ast\",\"à ¤\",\"ĠTit an\",\"ell ed\",\"d ie\",\"H ave\",\"ĠFl ame\",\"Ġprof ound\",\"Ġparticip ating\",\"Ġan ime\",\"ĠE ss\",\"Ġspec ify\",\"Ġregard ed\",\"ĠSpe ll\",\"Ġs ons\",\"own ed\",\"Ġm erc\",\"Ġexper imental\",\"land o\",\"h s\",\"ĠDun geon\",\"in os\",\"Ġcomp ly\",\"ĠSystem s\",\"ar th\",\"Ġse ized\",\"l ocal\",\"ĠGirl s\",\"ud o\",\"on ed\",\"ĠF le\",\"Ġconstruct ed\",\"Ġhost ed\",\"Ġsc ared\",\"act ic\",\"ĠIs lands\",\"ĠM ORE\",\"Ġbl ess\",\"Ġblock ing\",\"Ġch ips\",\"Ġev ac\",\"P s\",\"Ġcorpor ation\",\"Ġo x\",\"Ġlight ing\",\"Ġneighb ors\",\"ĠU b\",\"ar o\",\"Ġbe ef\",\"ĠU ber\",\"F acebook\",\"ar med\",\"it ate\",\"ĠR ating\",\"ĠQu ick\",\"Ġoccup ied\",\"Ġaim s\",\"ĠAdd itionally\",\"ĠInt erest\",\"Ġdram atically\",\"Ġhe al\",\"Ġpain ting\",\"Ġengine ers\",\"M M\",\"ĠM ust\",\"Ġquant ity\",\"P aul\",\"Ġearn ings\",\"ĠPost s\",\"st ra\",\"ãĥ¼ ãĥ\",\"Ġst ance\",\"Ġdro pping\",\"sc ript\",\"Ġd ressed\",\"M ake\",\"Ġjust ify\",\"ĠL td\",\"Ġprompt ed\",\"Ġscr ut\",\"Ġspeed s\",\"ĠGi ants\",\"om er\",\"ĠEd itor\",\"Ġdescrib ing\",\"ĠL ie\",\"ment ed\",\"Ġnow here\",\"oc aly\",\"Ġinst ruction\",\"fort able\",\"Ġent ities\",\"Ġc m\",\"ĠN atural\",\"Ġinqu iry\",\"Ġpress ed\",\"iz ont\",\"for ced\",\"Ġra ises\",\"ĠNet flix\",\"ĠS ide\",\"Ġout er\",\"Ġamong st\",\"im s\",\"ows ki\",\"Ġclim b\",\"ne ver\",\"Ġcomb ine\",\"d ing\",\"Ġcomp r\",\"Ġsignific ance\",\"Ġremem bered\",\"ĠNev ada\",\"ĠT el\",\"ĠSc ar\",\"ĠWar riors\",\"ĠJ ane\",\"Ġcou p\",\"b as\",\"Ġtermin al\",\", -\",\"O H\",\"Ġt ension\",\"Ġw ings\",\"ĠMy ster\",\"ï¿½ï¿½ ï¿½ï¿½\",\"ĠUn like\",\"val id\",\"viron ments\",\"ĠAl i\",\"Ġn aked\",\"book s\",\"ĠM un\",\"ĠG ulf\",\"Ġd ensity\",\"Ġdim in\",\"Ġdesper ate\",\"Ġpres idency\",\"Ġ198 6\",\"h y\",\"IN D\",\"Ġun lock\",\"im ens\",\"Ġhand led\",\"ĠE b\",\"Ġdisapp eared\",\"Ġgen re\",\"Ġ198 8\",\"Ġdetermin ation\",\"St ream\",\"ik o\",\"ap ters\",\"Ġacknow ledge\",\"J an\",\"Ġcapital ism\",\"P at\",\"Ġ20 20\",\"Ġpain ful\",\"Ġcur ve\",\"Ġbom bs\",\"st orm\",\"ĠMet al\",\"en cer\",\"ĠF ig\",\"ĠA aron\",\"anc hes\",\"Ġins piration\",\"Ġexha ust\",\"t ains\",\"ash i\",\"Ġdesc ript\",\"Ġr itual\",\"ĠChel sea\",\"Ġpromot ion\",\"ĠH ung\",\"ĠW ard\",\"iv a\",\"ĠE T\",\"Ġto ss\",\"all ow\",\"ĠFranc is\",\"D ep\",\"Ġhapp iness\",\"ĠGl ass\",\"Ġbet a\",\"Ġstreng then\",\"N E\",\"o a\",\"Ġbutt ons\",\"ĠMur ray\",\"Ġkick ed\",\"Qu est\",\"ĠT alk\",\"ĠS everal\",\"ĠZ ero\",\"Ġdr one\",\"ul k\",\"Ġc am\",\"ĠM obile\",\"Ġprevent ing\",\"Ġret ro\",\"ĠA x\",\"Ġcru el\",\"Ġflo at\",\". ),\",\"Ġfil ing\",\"ĠGr ant\",\"ĠB or\",\"Ġr ib\",\"Ġchampions hip\",\"ĠM erc\",\"Ġsty les\",\"Ġc ake\",\"Ġbuild s\",\"ĠS elf\",\"io x\",\"Ġep ic\",\"oy d\",\"B el\",\"ĠSt ew\",\". (\",\"ah u\",\"ĠBe yond\",\"Ġout s\",\"Ġsol o\",\"ĠT ree\",\"Ġpres erve\",\"Ġt ub\",\"AR E\",\"ro c\",\"ĠIm pro\",\"ĠW right\",\"Ġbu nd\",\"Ġtr aged\",\"Ġoccas ional\",\"b ian\",\"Sec ond\",\"r ons\",\"Ġinter actions\",\"form ed\",\"s ing\",\"Ġown s\",\"Ġh ockey\",\"Gener al\",\"Ġlog ical\",\"Ġexp end\",\"Ġesc al\",\"ĠGr iff\",\"ĠC rown\",\"ĠRes erve\",\"Ġsto pping\",\"Ġexc use\",\"sec ond\",\"Ġoper ated\",\"Ġre aches\",\"ĠMal ays\",\"Ġpoll ution\",\"ĠBrook lyn\",\"Ġde lete\",\"Ġhas h\",\"Bl ock\",\"ah a\",\"âĢ ³\",\"Ġsh orter\",\"p iece\",\"> </\",\"Ġh orm\",\"ĠW at\",\"ĠBre ak\",\"Ġprohib ited\",\"Ġint ensity\",\"ĠAl an\",\"Ġli ability\",\"? !\",\"and ed\",\"Ġneigh bour\",\"ĠCol lection\",\"Ġf ires\",\"Ġrevolution ary\",\"f ly\",\"ĠOr leans\",\"Wh ite\",\"ĠW rit\",\"ĠD awn\",\"Ġsett le\",\"Ġexec ute\",\"B M\",\"Ġspokes woman\",\"Ġlif estyle\",\"Ġclick ing\",\"ĠK ill\",\"ĠLiber al\",\"ĠN azi\",\"Ġtra iler\",\"Ġmount ains\",\"Ġdam n\",\"z es\",\"p es\",\"Ġpress ing\",\"Ġb ail\",\"ĠOrgan ization\",\"Ġp ir\",\"Ġth irty\",\"Ġelect rical\",\"Ġ1 15\",\"ĠP oly\",\"ĠR ap\",\"ĠSt rike\",\"ĠC ann\",\"Ġdemand ed\",\"Ġback ing\",\"def ault\",\"spe ed\",\"ĠLeg isl\",\"Ġmother s\",\"ĠB ody\",\"Ġvar iation\",\"ced ented\",\"p owered\",\"le ading\",\"N ever\",\"Ġg rave\",\"ĠAnt i\",\"A W\",\"Ġinterview ed\",\"ĠG ab\",\"ĠF at\",\"Ġrook ie\",\"u u\",\"Ġdep os\",\"ix on\",\"Ġam pl\",\"ret ion\",\"ĠHe at\",\"Ġpeace ful\",\"S M\",\"ie ve\",\"Ġd iver\",\"ĠVict oria\",\"Ġm ic\",\"p df\",\"Ġst ating\",\"Ġl ung\",\"Ġcritic ized\",\"Ġvacc ine\",\"ĠLoad ing\",\"ur se\",\"T ake\",\"ĠFr an\",\"ĠS old\",\"ĠRob in\",\"Ġdetect ed\",\"ĠSc ript\",\"Ġadjust ed\",\"Ġsen ator\",\"Ġopp osing\",\"Er ror\",\"C ount\",\"Ġconflic ts\",\"Ġo w\",\"ĠAr gent\",\"Ġmatch ing\",\"h h\",\"ĠTre k\",\"st arter\",\"\\\" ),\",\"ĠA F\",\"od er\",\"xx xx\",\"ĠAl t\",\"ac re\",\"ĠP ick\",\"ĠSol ar\",\"ĠD al\",\"O ct\",\"ĠB att\",\"Ġs rc\",\"Ġeng agement\",\"Ġexecut ives\",\"Ġliber ty\",\"j ava\",\"Ġtal ented\",\"igen ous\",\"Ġcon secut\",\".. ...\",\"In fo\",\"Ġhor rible\",\"Ġsurprising ly\",\"f eed\",\"ic ating\",\"ĠL ED\",\"Ġfem ales\",\"St ation\",\"ell er\",\"ĠOak land\",\"Ġmechan ical\",\"i ology\",\"ĠV ar\",\"Ġrob ust\",\"ett ings\",\"ott a\",\"Ġthe oret\",\"Ġret ain\",\"k ward\",\"Ġd a\",\"Ġdeploy ed\",\"d el\",\"ĠAnd y\",\"Ġsubsc ribe\",\"we b\",\"Ġn a\",\"ĠMic hel\",\"Ġpart ially\",\"ĠCome y\",\"Ġc rown\",\"ĠM aj\",\"ĠBl u\",\"r ator\",\"D ay\",\"IN T\",\"Ġdocument ed\",\"ĠG DP\",\"g i\",\"che ll\",\"Ġbrut al\",\"ĠB ab\",\"st ration\",\"Ġthe ft\",\"Ġt ube\",\"@ @\",\"Ġqu ery\",\"ĠL incoln\",\"Ġpublish ing\",\"Ġw ore\",\"or ical\",\"Ġr ic\",\"Ġnot able\",\"Ġsubsequ ently\",\"ne x\",\"Ġobser ve\",\"ĠB oe\",\"Ġc odes\",\"m ain\",\"W H\",\"ĠS L\",\"Ġresident ial\",\"av an\",\"Ġm as\",\"are st\",\"ade on\",\"OU T\",\"Ġsoph istic\",\"ant e\",\"Ġc ens\",\"Ġ **\",\"Ġmort ality\",\"Ġyour s\",\"Ġoccas ions\",\"Ġrec alled\",\"ĠDri ver\",\"Ġv ocal\",\"Ġbath room\",\"Ġsh ops\",\"Ġcollabor ation\",\"ĠOb amacare\",\"ĠC ell\",\"Ch ar\",\"Su per\",\"C re\",\"Ġt ends\",\"Ġt orn\",\"Ġeconom ics\",\"a very\",\"ĠR aid\",\"ĠS em\",\"Ġshould ers\",\"Ġexpect ing\",\"Ġexam ination\",\"en ame\",\"ĠU I\",\"i ability\",\"ol as\",\"ĠAm b\",\"ĠD ra\",\"Ġmid field\",\"ĠI C\",\"Ġlay out\",\"Ġflo ating\",\"f i\",\"it ative\",\"Ġtremend ous\",\"Ġ Ð\",\"Ġab und\",\"W ork\",\"ĠLight ning\",\"Ġsimilar ly\",\"Ġconserv atives\",\"Ġpr ay\",\"B E\",\"iz arre\",\"Ġt empt\",\"Ġemphas is\",\"ĠMet ro\",\"Ġf ishing\",\"Ġmar ry\",\"ne g\",\"ĠStud y\",\"Ġrec k\",\"Ġdis pos\",\"on ing\",\"bs ite\",\"Ġsusp ic\",\"Ġmer ch\",\"ĠG ib\",\"ĠDes cription\",\"ĠD VD\",\"w he\",\"ĠY emen\",\"Ġen vironments\",\"oot ing\",\"ĠMod ern\",\"e u\",\"Ġreflect s\",\"Ġh oney\",\"Ġanaly st\",\"Ġg ut\",\"d ec\",\"A ction\",\"Ġhousehold s\",\"Ġst er\",\"Ġtem ple\",\"Ġreform s\",\"Ġfavour ite\",\"Ġdead line\",\"ĠL E\",\"Th ree\",\"ĠWith in\",\"A ug\",\"Ġnight s\",\"elt a\",\"Ġinv alid\",\"ĠEx change\",\"ĠDel hi\",\"w hen\",\"inc ome\",\"Ġ ðŁ\",\"Ġwire less\",\"sc ribe\",\"ist a\",\"Ġhost ile\",\"Ġall y\",\"Ġg ig\",\"Ġout lets\",\"ĠD or\",\"EM ENT\",\"Ġas h\",\"Ġab stract\",\"OR D\",\"ĠMot or\",\"Ġadv iser\",\"ist le\",\"Ġb ases\",\"Ġcourt esy\",\"Ġcross ing\",\"Ġcle ared\",\"Ġrefuge e\",\"cos ystem\",\"Ġthrow s\",\"f un\",\"bour ne\",\"d ays\",\"Ġdisag ree\",\"ĠN ative\",\"Ġreflect ed\",\"ĠF ast\",\"ĠY ellow\",\"ĠSing apore\",\"ĠR aven\",\"Ġembr ace\",\"ĠK u\",\"ĠC hen\",\"ĠEar ly\",\"Ġappoint ment\",\"ĠMin i\",\"it ement\",\"Ġpl acing\",\"Ġb icy\",\"S R\",\"Ġwh is\",\"S U\",\"Ġinvestig ated\",\"Ġphotograph s\",\"g ithub\",\"ĠBe at\",\"ĠR ing\",\"ig hed\",\"i ar\",\"Ġev olved\",\"eral d\",\"Ġd un\",\"Ġh ub\",\"I AL\",\"Ġencour aging\",\"ĠPr int\",\"ĠD ays\",\"Ġpro secution\",\"Ġp ants\",\"az y\",\"l ive\",\"Ġfoss il\",\"ĠJ u\",\"Ġro cks\",\"ud ge\",\"ĠR ace\",\"Ġg reet\",\"b ie\",\"Ġf illing\",\"ĠL en\",\"Ġdi abetes\",\"Ġfire arms\",\"um ing\",\"enez uel\",\"ĠB B\",\"Ġaccept ing\",\"AT H\",\"Ġres ort\",\"Ġh unt\",\"ri k\",\"uck er\",\"am ents\",\"Ġsust ained\",\"Ġcross ed\",\"Ġbreak fast\",\"Ġatt ributes\",\"lect ed\",\"at ile\",\"Ġv ibr\",\"ĠK al\",\"ars on\",\"op les\",\"Ġtou ched\",\"Ġdam ages\",\"Ġimp ressed\",\"ru p\",\"Ġan ch\",\"ĠAd ams\",\"H el\",\"ĠVict or\",\"Ġmount ed\",\"ĠC C\",\"Ġdelic ious\",\"sp an\",\"ell a\",\"Ġel abor\",\"am ples\",\"Ġdef ic\",\"Ġconstit u\",\"u ates\",\"ĠM ission\",\"ĠT her\",\"ĠMon ster\",\"b es\",\"Re uters\",\"ĠInd ones\",\"h ill\",\"mun ition\",\"Ġconfirm ation\",\"ĠCons ider\",\"ac ent\",\"Ġj et\",\"ĠEm ploy\",\"ĠGT X\",\"n an\",\"ĠSp ider\",\"Ġprocess or\",\"Ġpat ri\",\"ĠPent agon\",\"ĠRob inson\",\"Ġreal istic\",\"Ã ±\",\"Ġappear ing\",\"Ġp ipe\",\"om ed\",\"Ġf ru\",\"Ġaw ful\",\"Ġeval uation\",\"Ġintellig ent\",\"ĠC itiz\",\"Ġfund ra\",\"od ium\",\"Ġtwe ets\",\"Ġwor n\",\"pr ing\",\"Ġkid n\",\"Ġreb els\",\"ĠK am\",\"ĠNether lands\",\"ĠS W\",\"Ġacqu isition\",\"ĠM ale\",\"ãĥ ª\",\"omb ies\",\"Ġtrad em\",\"ĠStat us\",\"B re\",\"ĠTH IS\",\"Ġad verse\",\"ĠN EW\",\"s ign\",\"Ġorgan isation\",\"en c\",\"ĠHar per\",\"ap or\",\"ĠMem bers\",\"ĠPe ace\",\"ĠAir port\",\"ĠOther s\",\"Ġscr atch\",\"ĠP il\",\"Ġsens or\",\"Ġadop tion\",\"ĠHot el\",\"ĠDr ag\",\"Ġhonest ly\",\"Ġy ard\",\"ĠFor ces\",\"Ġpat ent\",\"Ġb ass\",\"Ġquiet ly\",\"Ġbreat hing\",\"Ġp ose\",\"i ors\",\"ĠJ ess\",\"st atic\",\"IT E\",\"O ffic\",\"Ġj ew\",\"w cs\",\"Ġ14 0\",\"Ġpre view\",\"ipp i\",\"Ġunf ortunately\",\"oke mon\",\"Ġh orn\",\"Ġre ass\",\"Ġpe er\",\"ock er\",\"Ġunt o\",\"ĠGr ay\",\"Ġclean ing\",\"Ġattract ed\",\"200 7\",\"P oint\",\"k ill\",\"ĠAg reement\",\"ur ches\",\"Ġhor r\",\"ĠMiss iss\",\"Ġworth y\",\"Ġfl owers\",\"t own\",\"d ll\",\"Ġre actions\",\"Ġde ce\",\"Ġindic ating\",\"M D\",\"Ġpre ference\",\"ĠM VP\",\"ess ional\",\"ĠT arget\",\"g ence\",\"ĠInd ians\",\"Ġm isc\",\"Ġfree ly\",\"Ġmus cles\",\"Ġline up\",\"Ġimpact s\",\"ous ing\",\"om i\",\"ac ular\",\"Ġcontro lling\",\"ag ine\",\"c ery\",\"he ll\",\"Ġrank ing\",\"ĠN ich\",\"ĠA ve\",\"12 8\",\"Ġhigh way\",\"Ġinc ons\",\"Ġb inding\",\"Ġstrugg les\",\"ĠPitt sburgh\",\"Ġgr ay\",\"r in\",\"Ġcom ics\",\"ĠS port\",\"Ġrel atives\",\"Ġfr ight\",\"Ġpro be\",\"ĠPort ug\",\"Ġv oc\",\"Ġt u\",\"ĠCor ps\",\"Ġposs ibilities\",\"Ġqual ify\",\"wcs store\",\"Ġl ibraries\",\"Ġm igrants\",\"Ġent ries\",\"Ġconsecut ive\",\"v als\",\"ĠChair man\",\"Ġh ill\",\"IM E\",\"ĠG ard\",\"Ġinequ ality\",\"f ox\",\"ĠS ave\",\"Ġc ort\",\"claim ed\",\"Ġtra its\",\"Ġp our\",\"Ġmiss iles\",\"Ġess ence\",\"Ġs ends\",\"Ġall iance\",\"Ġw ishes\",\"ĠChrist opher\",\"B ig\",\"N Y\",\"ĠJac ob\",\"s an\",\"ur red\",\"ĠS O\",\"ll y\",\"Ġadvoc ate\",\"ĠB ond\",\"Ġ\\\" /\",\"Us ing\",\"Ġdistrict s\",\"ĠG ate\",\"ĠB ir\",\"r idge\",\"ĠN az\",\"ĠR s\",\"bo ards\",\"ĠG a\",\"ĠRe agan\",\"Ġinflu enced\",\"1 000\",\"ap y\",\"Ġchalleng ed\",\"Ġb arg\",\"Ġfac ulty\",\"ĠF if\",\"Ġacqu ire\",\"A c\",\"Ġin sect\",\"Ġinstr uments\",\"Ġle af\",\"th odox\",\"M essage\",\"Ġt ale\",\"Ġthere by\",\"Ġtra p\",\"Ġstrong est\",\"ĠMil itary\",\"is ible\",\"Ġ198 4\",\"ethe less\",\"Ġflex ible\",\"Ġkill s\",\"Ġfin ishing\",\"ĠS ize\",\"Ġredu ces\",\"Ġep id\",\"Ġorient ation\",\"f ull\",\"Ġtr ace\",\"Ġl aser\",\"Ġopp ose\",\"Ġed iting\",\"Ġmoment um\",\"ä º\",\"sh ow\",\"V I\",\"ĠL ad\",\"Ġ198 5\",\"Ġmurd ered\",\"9 00\",\"ut her\",\"Ġprob ability\",\"ĠP oll\",\"Ġrel uct\",\"ĠChe m\",\"ĠMont real\",\"Ġadequ ate\",\"ĠPol and\",\"ĠSher iff\",\"um ph\",\"Ġo k\",\"Ġ 000\",\"Ġ\\\" [\",\"Ġoper ators\",\"ĠF er\",\"Ġmod es\",\"ĠE ve\",\"Ġdiscipl ine\",\"N ET\",\"H and\",\"Ġor al\",\"ĠW E\",\"em ail\",\"J P\",\"ĠPalestin ians\",\"Ġhe nce\",\"ĠL ess\",\"Ġover l\",\"d ig\",\"Ġintim id\",\"ĠCo al\",\"Ġr anging\",\"th a\",\"Ġdist ant\",\"Ġf ib\",\"ĠInd ex\",\"ĠW onder\",\"ĠP el\",\"hatt an\",\"ĠH ug\",\"Ã Ĺ\",\"ra it\",\"Ġwra pped\",\"ĠR PG\",\"Ġchemical s\",\"ĠM oney\",\"Ġfro zen\",\"Ġind irect\",\"ĠAgain st\",\"E nd\",\"Ġuncom fortable\",\"ĠGall ery\",\"ĠPost ed\",\"Ø §\",\"ond uct\",\"Ġconsequ ence\",\"Ġbit ter\",\"Ġ198 7\",\"p op\",\"Ġcount less\",\"ĠAl aska\",\"ff ff\",\"Ġdepart ure\",\"Ġref und\",\"ĠI an\",\"i ated\",\"Ġsee ks\",\"Ġmechan ics\",\"Ġjurisd iction\",\"lyn n\",\"Ġal ike\",\"ĠH unt\",\"ath on\",\"Ġres olved\",\"Ġc ache\",\"Ġdist inction\",\"d irect\",\"Ġenc ount\",\"ou b\",\"be at\",\"ĠCount ry\",\"se arch\",\"Ġcontin uous\",\"Ġmod est\",\"ĠR ail\",\"th ood\",\"1 30\",\"B UG\",\"Ġcrim inals\",\"Ġindic ation\",\"Ġencount ered\",\"l ast\",\"ĠW y\",\"Ġide ology\",\"ĠP DF\",\"sec urity\",\"] )\",\"ĠJim my\",\"ĠE N\",\"Ġh iring\",\"T em\",\"Ġp ig\",\"aun t\",\"ĠCry stal\",\"Ġpen alties\",\"Ġcap ability\",\"Ġp y\",\"Ġproduct ive\",\"Ġbal anced\",\"ĠGe Force\",\"cl ick\",\"olit an\",\"od s\",\"Ġafter wards\",\"Ġplay offs\",\"ĠG ill\",\"U ser\",\"Ġback s\",\"p ub\",\"t ag\",\"Ġabs urd\",\"p iring\",\"Ġc iting\",\"Ġtr illion\",\"Ġoblig ation\",\"Ġmax im\",\"ah oo\",\"c f\",\"um i\",\"ĠAl pha\",\"ĠN elson\",\"Ġpursu ant\",\"in itely\",\"Ġf ract\",\"ent ry\",\"ber y\",\"ĠTh or\",\"Add ed\",\"ĠD J\",\"ĠG ene\",\"Ġaw kward\",\"St ud\",\"Ġwal let\",\"ĠDiv ine\",\"ari os\",\"Ġrele asing\",\"Ġed ited\",\"Ġaccompl ished\",\"B est\",\"Ġed ges\",\"Ġplan es\",\"Ġfeed ing\",\"\\\" },\\\"\",\"Ġdiscl osure\",\"Ġgr ain\",\"air y\",\"o ons\",\"ern and\",\"V R\",\"Ġreason ably\",\"Ġdr um\",\"Ġpart ial\",\"Ġgraph ic\",\"Ġunpre cedented\",\"Ġadv ised\",\"M icro\",\"ĠAss ad\",\"point s\",\"sc ar\",\"ĠZ one\",\"tt es\",\"Ġ7 00\",\"v o\",\"ĠH amp\",\"Ġfix es\",\"Ġca ution\",\"Ġstr ings\",\"Ġpan els\",\"Ġle ak\",\"Ġpr icing\",\"row th\",\"ĠEr ror\",\"ĠS aints\",\"f ix\",\"Ġobserv ations\",\"ĠA bs\",\"Ġsuggest ion\",\"ĠUkrain ian\",\"Ġbar rier\",\"Ġpain ted\",\"B et\",\"im ir\",\"ĠS pect\",\"p ot\",\"orne ys\",\"Ġcomp ound\",\"Ġbe ars\",\"ĠR ush\",\"Ġlux ury\",\"S um\",\"Ġor bit\",\"ĠMar c\",\"Ġex empt\",\"ĠTra il\",\"ĠM O\",\"ĠH ans\",\"ĠWe apon\",\"oc used\",\"umin um\",\"ĠJer ry\",\"Ġb ust\",\"ĠA G\",\"ĠW iki\",\"Ġend less\",\"ĠV lad\",\"ĠB ah\",\"ĠR adeon\",\"ke ys\",\"ĠSur vey\",\"ĠV iol\",\"def ine\",\"le an\",\"Ġcomm od\",\"Ġreven ues\",\"Å į\",\"Ġfurn iture\",\"Ġcast ing\",\"Ġdiplom atic\",\"ĠPlay ers\",\"ĠK illed\",\"Ġmod ify\",\"Ġinnov ative\",\"ĠAb u\",\"n or\",\"Ġbond s\",\"Ġcoach ing\",\"M er\",\"Ġmod ules\",\"ĠPatri ots\",\"Ġenh anced\",\"Ġproceed ings\",\"Ġteam mates\",\"Ġ12 8\",\"ard o\",\"Ġcomprom ise\",\"ĠM uch\",\"Ġfle w\",\"ĠEd ge\",\"Ġunnecess ary\",\"Ġdoct rine\",\"re port\",\"ĠOr lando\",\"ĠProf ile\",\"Ġplay off\",\"friend ly\",\"Ġcompl ain\",\"ĠM C\",\"ĠO pt\",\"ĠG B\",\"Ġbeat en\",\"Ġg olf\",\"Ġpl acement\",\"B it\",\"Ġnews letter\",\"Ġ201 9\",\"vis or\",\"raw l\",\"ĠiP ad\",\"Ġact ed\",\"Ġju ice\",\"Ġdec ks\",\"P N\",\"su ccess\",\"ĠH alf\",\"Ġdele ted\",\"Ġsec rets\",\"Ġas ylum\",\"M art\",\"ĠAct iv\",\"ĠGu y\",\"ĠT s\",\"Ġd ys\",\"Ġassum ing\",\"Ġman a\",\"Ġsub ur\",\"Ġ12 5\",\"M edia\",\"AR Y\",\"r ide\",\"c p\",\"Ġdifficult ies\",\"Ġcollect ing\",\"Ġbank rupt\",\"n on\",\"Ġcomp osed\",\"Ġvol t\",\"Ġmilit ants\",\"Ġ> >>\",\"ĠM ormon\",\"t or\",\"Ġpartic les\",\"ĠB art\",\"ry ption\",\"Ġad min\",\"Ġsqu ee\",\"VID IA\",\"Ġcreat or\",\"iam eter\",\"ic ular\",\"N BC\",\"Ġgrab bed\",\"Ġn odd\",\"Ġr ated\",\"Ġrot ation\",\"Ġgr asp\",\"Ġexcess ive\",\"ĠE C\",\"ĠWh it\",\"Ġinvent ory\",\"ault s\",\"ĠF B\",\"Ġe cosystem\",\"Ġbill ions\",\"Ġvent ure\",\"n amed\",\"Ġdef ender\",\"out e\",\"Inst ead\",\"ir able\",\"W ar\",\"Ġassum ption\",\"Ġb ite\",\"Ġearth qu\",\"t ail\",\"sp ace\",\"Ġgif ts\",\"boy s\",\"Ġinev itable\",\"Ġstruct ural\",\"Ġbenef icial\",\"Ġcompe lling\",\"h ole\",\"erv ation\",\"Ġco at\",\"o j\",\"inc arn\",\"ĠY ears\",\"Ġdetermin ing\",\"Ġrhet oric\",\"Ġbound aries\",\"Ġwh ites\",\"A nt\",\"add y\",\") -\",\"ra ham\",\"eter min\",\"Ġhar vest\",\"ĠCon c\",\"Ġlapt op\",\"ĠM atch\",\"Ġenjoy ing\",\"cc a\",\"oll ar\",\"Ġtri ps\",\"Ġadd iction\",\"ĠS ak\",\"Ġpow ered\",\"Ġc ous\",\"ĠRuss ians\",\"ie re\",\"Ġret rie\",\"qu ality\",\"Ġdiff er\",\"Ġking dom\",\"ĠL aur\",\"ĠCap itol\",\"Ġcon clusions\",\"ĠAl tern\",\"ĠN av\",\"Ġtrans parent\",\"B ER\",\"G roup\",\"ĠCom plete\",\"Ġinf er\",\"Ġint rig\",\"Ġins ane\",\"R O\",\"oph ob\",\"is en\",\"qu al\",\"Mich ael\",\"Ġm useum\",\"ĠP ope\",\"Ġres et\",\"r ative\",\"f ive\",\"Ġagg reg\",\"itte es\",\"osit ory\",\"Ġcar b\",\"ĠRec ord\",\"Ġdec ides\",\"ĠF ix\",\"Ġexcept ions\",\"ĠCommission er\",\"un s\",\"ĠEnvironment al\",\"Ġlegend ary\",\"ist ence\",\"Ġtun nel\",\"k m\",\"Ġins ult\",\"Ġt roll\",\"Ġsh ake\",\"Ġdet ention\",\"qu es\",\"ĠCh rome\",\"ĠF iles\",\"Ġsub t\",\"Ġprospect s\",\"Ġpro l\",\"re nder\",\"pro of\",\"Ġperform ances\",\"St r\",\"Ġh ref\",\"ern ame\",\"Ġachieve ment\",\"Ġf ut\",\"F ull\",\"ĠLe ban\",\"go ogle\",\"ãĥ Ī\",\"amp a\",\"May be\",\"Ġproject ed\",\"ĠE mb\",\"Ġcol leg\",\"Ġa wards\",\"Ġâ Ķ\",\"G old\",\"ĠBl ake\",\"ĠR aj\",\"if ting\",\"Ġp ending\",\"Ġinst inct\",\"Ġdevelop ments\",\"Con nect\",\"ĠM and\",\"ĠW ITH\",\"ĠPhilipp ines\",\"prof ile\",\"Ġalt ogether\",\"ĠB und\",\"ĠT D\",\"oo oo\",\"amp ed\",\"ip h\",\"Ġste am\",\"Ġold est\",\"Ġdet ection\",\"ul pt\",\"Ġ ç\",\"ĠWay ne\",\"200 6\",\"f a\",\"Ġcir cles\",\"ĠF u\",\"Ġdon ors\",\"appropri ate\",\"ĠDak ota\",\"j amin\",\"Ġmotiv ated\",\"Ġpurch ases\",\"ĠLouis iana\",\"ĠS pl\",\"Ġgl obe\",\"Ġ10 5\",\"z ip\",\"c all\",\"Ġdepart ments\",\"Ġsustain able\",\"10 5\",\"ĠO P\",\"if iers\",\"Ġprevent ed\",\"Ġinc omp\",\"ĠComm ander\",\"Ġdom inated\",\"ĠÂ »\",\"Ġinvest ed\",\"Ġcomplex ity\",\"Ġin cl\",\"Ġens uring\",\"Ġreal m\",\"yn c\",\"ĠInd ependent\",\"r ained\",\"ĠJ en\",\"ĠFl ight\",\"Ġat he\",\"Ġspec ulation\",\"ĠT E\",\"oc ate\",\"t ic\",\"Ġpl aint\",\"her ry\",\"Ġto y\",\"Ġ1 11\",\"Ġpl ates\",\"st atus\",\"ĠIs a\",\"Ġdev oted\",\"C op\",\"ĠE S\",\"25 5\",\"ur rency\",\"M ain\",\"Ġsl aves\",\"Ġpe pper\",\"Ġqu otes\",\"Ġce iling\",\"ĠF ish\",\"Ġtrans formation\",\"Ġfra ction\",\"Ġadvant ages\",\"Ġto ile\",\"Ġstun ning\",\"Ġmo ist\",\"bre aking\",\"s i\",\"ĠL ocation\",\"ĠMed ium\",\"Ġtext s\",\"Ġu gly\",\"Ġb io\",\". âĢĶ\",\"ĠB ased\",\"Ġtr ains\",\"ĠW ing\",\"ĠAn cient\",\"ĠRec ords\",\"ĠH ope\",\"Spe cial\",\"ades h\",\"ob i\",\"[ /\",\"Ġtempor arily\",\"V er\",\"h u\",\"os er\",\"Ġover night\",\"Ġm amm\",\"ĠTre asury\",\"ĠV enezuel\",\"ĠMeg a\",\"Ġt ar\",\"Ġexpect s\",\"bl ack\",\"or ph\",\"\\\\\\\\ \\\\\\\\\",\"Ġaccept ance\",\"Ġrad ar\",\"s is\",\"Ġjun ior\",\"Ġfram es\",\"Ġobserv ation\",\"ac ies\",\"P ower\",\"ĠAdv anced\",\"M ag\",\"olog ically\",\"ĠMe chan\",\"Ġsent ences\",\"Ġanaly sts\",\"augh ters\",\"force ment\",\"Ġv ague\",\"Ġcl ause\",\"Ġdirect ors\",\"Ġeval uate\",\"Ġcabin et\",\"M att\",\"ĠClass ic\",\"A ng\",\"Ġcl er\",\"ĠB uck\",\"Ġresear cher\",\"Ġ16 0\",\"Ġpoor ly\",\"Ġexperien cing\",\"ĠP ed\",\"ĠMan hattan\",\"Ġfre ed\",\"Ġthem es\",\"ad vant\",\"Ġn in\",\"Ġpra ise\",\"10 4\",\"ĠLib ya\",\"b est\",\"Ġtrust ed\",\"Ġce ase\",\"Ġd ign\",\"D irect\",\"Ġbomb ing\",\"Ġm igration\",\"ĠSci ences\",\"Ġmunicip al\",\"ĠA verage\",\"Ġgl ory\",\"Ġreve aling\",\"Ġare na\",\"Ġuncertain ty\",\"Ġbattle field\",\"ia o\",\"G od\",\"Ġc inem\",\"ra pe\",\"el le\",\"ap ons\",\"Ġlist ing\",\"Ġwa ited\",\"Ġsp otted\",\"ke ley\",\"ĠAud io\",\"e or\",\"ard ing\",\"idd ing\",\"ig ma\",\"ĠN eg\",\"Ġl one\",\"Ġ ----\",\"ex e\",\"d eg\",\"Ġtrans f\",\"Ġwas h\",\"Ġsl avery\",\"Ġexpl oring\",\"ĠW W\",\"ats on\",\"Ġen cl\",\"l ies\",\"ĠC reek\",\"Ġwood en\",\"Man ager\",\"ĠBr and\",\"um my\",\"ĠAr thur\",\"Ġbureau cr\",\"Ġbl end\",\"ar ians\",\"F urther\",\"Ġsupposed ly\",\"Ġwind s\",\"Ġ19 79\",\"Ġgrav ity\",\"Ġanalys es\",\"ĠTra vel\",\"ĠV eter\",\"Ġd umb\",\"Ġaltern ate\",\"g al\",\"Ġconsum ed\",\"Ġeffect iveness\",\".' '\",\"Ġpath s\",\"ond a\",\"L A\",\"ĠStr ong\",\"Ġen ables\",\"Ġesc aped\",\"Ġ\\\" \\\"\",\"Ġ1 12\",\"Ġ198 3\",\"Ġsm iled\",\"Ġtend ency\",\"F ire\",\"Ġp ars\",\"ĠR oc\",\"Ġl ake\",\"Ġf itness\",\"ĠA th\",\"ĠH orn\",\"Ġh ier\",\"Ġimp ose\",\"m other\",\"Ġp ension\",\"ic ut\",\"bor ne\",\"ic iary\",\". _\",\"ĠS U\",\"Ġpol ar\",\"is y\",\"eng u\",\"itial ized\",\"AT A\",\"w rite\",\"Ġexerc ises\",\"ĠD iamond\",\"ot ypes\",\"Ġharm ful\",\"on z\",\"Ġprint ing\",\"st ory\",\"Ġexpert ise\",\"ĠG er\",\"Ġtraged y\",\"ĠF ly\",\"Ġd ivid\",\"amp ire\",\"st ock\",\"M em\",\"Ġre ign\",\"Ġun ve\",\"Ġam end\",\"ĠProp het\",\"Ġmut ual\",\"ĠF ac\",\"Ġrepl acing\",\"H ar\",\"ĠCirc uit\",\"Ġthro at\",\"ĠSh ot\",\"Ġbatter ies\",\"Ġto ll\",\"Ġaddress ing\",\"ĠMedic aid\",\"Ġp upp\",\"ĠN ar\",\"ol k\",\"Ġequ ity\",\"M R\",\"ĠHis pan\",\"ĠL arge\",\"m id\",\"D ev\",\"Ġexp ed\",\"Ġdem o\",\"ĠMarsh all\",\"erg us\",\"Ġf iber\",\"Ġdiv orce\",\"ĠCre ate\",\"Ġsl ower\",\"ĠPark er\",\"ĠStud ent\",\"ĠTr aining\",\"Ret urn\",\"ĠT ru\",\"Ġc ub\",\"ĠRe ached\",\"Ġpan ic\",\"Ġqu arters\",\"Ġre ct\",\"Ġtreat ing\",\"Ġr ats\",\"ĠChristian ity\",\"ol er\",\"Ġsac red\",\"Ġdecl are\",\"ul ative\",\"et ing\",\"Ġdeliver ing\",\"est one\",\"Ġt el\",\"ĠL arry\",\"Ġmet a\",\"ac cept\",\"art z\",\"ĠRog er\",\"hand ed\",\"Ġhead er\",\"Ġtra pped\",\"ĠCent ury\",\"Ġkn ocked\",\"ĠOx ford\",\"Ġsurviv ors\",\"b ot\",\"Ġdemon stration\",\"Ġd irt\",\"Ġass ists\",\"OM E\",\"ĠD raft\",\"ortun ate\",\"fol io\",\"pe red\",\"ust ers\",\"g t\",\"ĠL ock\",\"Ġjud icial\",\"ver ted\",\"Ġsec ured\",\"out ing\",\"ĠBook s\",\"Ġhost ing\",\"Ġlif ted\",\"l ength\",\"Ġj er\",\"Ġwhe els\",\"ĠR ange\",\"umbn ails\",\"Ġdiagn osis\",\"te ch\",\"ĠStew art\",\"ĠP ract\",\"Ġnation wide\",\"Ġde ar\",\"Ġoblig ations\",\"Ġgrow s\",\"Ġmand atory\",\"Ġsusp icious\",\"! '\",\"A pr\",\"G reat\",\"Ġmort gage\",\"Ġprosecut or\",\"Ġeditor ial\",\"ĠK r\",\"Ġprocess ed\",\"ung le\",\"Ġflex ibility\",\"Ear lier\",\"ĠC art\",\"ĠS ug\",\"Ġfoc uses\",\"Ġstart up\",\"Ġbre ach\",\"ĠT ob\",\"cy cle\",\"ãĢ Į\",\"ro se\",\"Ġb izarre\",\"ãĢ į\",\"Ġveget ables\",\"$ $\",\"Ġret reat\",\"osh i\",\"ĠSh op\",\"ĠG round\",\"ĠSt op\",\"ĠHawai i\",\"ĠA y\",\"Per haps\",\"ĠBe aut\",\"uff er\",\"enn a\",\"Ġproduct ivity\",\"F ixed\",\"cont rol\",\"Ġabs ent\",\"ĠCamp aign\",\"G reen\",\"Ġident ifying\",\"Ġreg ret\",\"Ġpromot ed\",\"ĠSe ven\",\"Ġer u\",\"ne ath\",\"aug hed\",\"ĠP in\",\"ĠL iving\",\"C ost\",\"om atic\",\"me ga\",\"ĠN ig\",\"oc y\",\"Ġin box\",\"Ġem pire\",\"Ġhor izont\",\"Ġbr anches\",\"Ġmet aph\",\"Act ive\",\"ed i\",\"ĠFil m\",\"ĠS omething\",\"Ġmod s\",\"inc ial\",\"ĠOrig inal\",\"G en\",\"Ġspir its\",\"Ġear ning\",\"H ist\",\"Ġr iders\",\"Ġsacr ific\",\"M T\",\"ĠV A\",\"ĠS alt\",\"Ġoccup ation\",\"ĠM i\",\"Ġdis g\",\"lic t\",\"Ġn it\",\"Ġn odes\",\"e em\",\"ĠP ier\",\"Ġhat red\",\"ps y\",\"ãĥ ī\",\"Ġthe ater\",\"Ġsophistic ated\",\"Ġdef ended\",\"Ġbes ides\",\"Ġthorough ly\",\"ĠMedic are\",\"Ġbl amed\",\"arent ly\",\"Ġcry ing\",\"F OR\",\"pri v\",\"Ġsing ing\",\"ĠI l\",\"Ġc ute\",\"o ided\",\"olit ical\",\"ĠNe uro\",\"å ¤\",\"Ġdon ation\",\"ĠEag les\",\"ĠG ive\",\"T om\",\"Ġsubstant ially\",\"ĠLic ense\",\"ĠJ a\",\"Ġg rey\",\"ĠAn imal\",\"ĠE R\",\"ĠU nd\",\"Ġke en\",\"Ġconclud e\",\"ĠMississ ippi\",\"Eng ine\",\"ĠStud ios\",\"P ress\",\"o vers\",\"ll ers\",\"Ġ3 50\",\"ĠR angers\",\"Ġr ou\",\"ert o\",\"E p\",\"iss a\",\"iv an\",\"Ġse al\",\"ĠReg ist\",\"dis play\",\"Ġwe aken\",\"u um\",\"ĠComm ons\",\"ĠS ay\",\"Ġcult ures\",\"Ġl aughed\",\"Ġsl ip\",\"Ġtreat ments\",\"iz able\",\"m art\",\"ĠR ice\",\"Ġbe ast\",\"Ġob esity\",\"ĠLa ure\",\"ig a\",\"Wh ich\",\"hold er\",\"Ġelder ly\",\"Ġp ays\",\"Ġcompl ained\",\"Ġc rop\",\"Ġpro c\",\"Ġexplos ive\",\"ĠF an\",\"ĠAr senal\",\"A uthor\",\"ef ul\",\"Ġme als\",\"Ġ( -\",\"id ays\",\"Ġimag ination\",\"Ġann ually\",\"Ġm s\",\"as ures\",\"H ead\",\"ik h\",\"m atic\",\"Ġboy friend\",\"ĠCom puter\",\"Ġb ump\",\"Ġsur ge\",\"ĠCra ig\",\"ĠKir k\",\"D el\",\"medi ate\",\"Ġscen arios\",\"ĠM ut\",\"ĠSt ream\",\"Ġcompet itors\",\"Ù Ħ\",\"ĠStan ford\",\"ĠRes ources\",\"az ed\",\"b age\",\"Ġorgan is\",\"ĠRe lease\",\"Ġsepar ately\",\"Ġha bits\",\"Ġmeasure ments\",\"ĠCl ose\",\"Ġaccomp any\",\"Ġg ly\",\"Ġt ang\",\"ĠR ou\",\"Ġplug in\",\"Ġcon vey\",\"ĠChall enge\",\"oot s\",\"j an\",\"Ġcur s\",\"ĠRel ations\",\"ke eper\",\"Ġapproach ing\",\"p ing\",\"Spe aking\",\"Ġarrang ement\",\"ĠV I\",\"are ttes\",\"Ġaffect ing\",\"Ġperm its\",\"b ecause\",\"Ġu seless\",\"ĠH us\",\"!! !!\",\"Ġdestro ying\",\"Un fortunately\",\"Ġfasc inating\",\"S em\",\"Ġelect oral\",\"Ġtrans parency\",\"ĠCh aos\",\"Ġvolunte er\",\"Ġstatist ical\",\"Ġactiv ated\",\"ro x\",\"We b\",\"H E\",\"ĠHamp shire\",\"is ive\",\"M ap\",\"Ġtr ash\",\"ĠLaw rence\",\"st ick\",\"C r\",\"Ġr ings\",\"EX T\",\"Ġoper ational\",\"op es\",\"D oes\",\"ĠEv ans\",\"Ġwitness ed\",\"P ort\",\"Ġlaunch ing\",\"ec onom\",\"w ear\",\"ĠPart icip\",\"um m\",\"cul es\",\"ĠR AM\",\"ĠT un\",\"Ġass ured\",\"Ġb inary\",\"Ġbet ray\",\"Ġexpl oration\",\"ĠF el\",\"Ġad mission\",\"it ated\",\"S y\",\"Ġav oided\",\"ĠSim ulator\",\"Ġcelebr ated\",\"ĠElect ric\",\"¥ ŀ\",\"Ġcl uster\",\"itzer land\",\"he alth\",\"L ine\",\"ĠN ash\",\"at on\",\"Ġsp are\",\"Ġenter prise\",\"ĠD IS\",\"clud es\",\"Ġfl ights\",\"Ġreg ards\",\"ĠÃ Ĺ\",\"h alf\",\"Ġtr ucks\",\"Ġcontact s\",\"Ġunc ons\",\"ĠCl imate\",\"Ġimm ense\",\"N EW\",\"oc c\",\"ect ive\",\"Ġemb od\",\"Ġpat rol\",\"Ġbes ide\",\"Ġv iable\",\"Ġcre ep\",\"Ġtrig gered\",\"ver ning\",\"Ġcompar able\",\"q l\",\"Ġg aining\",\"ass es\",\"Ġ( );\",\"ĠG rey\",\"ĠM LS\",\"s ized\",\"Ġpros per\",\"\\\" ?\",\"Ġpoll ing\",\"Ġsh ar\",\"ĠR C\",\"Ġfire arm\",\"or ient\",\"Ġf ence\",\"Ġvari ations\",\"g iving\",\"ĠP i\",\"osp el\",\"Ġpled ge\",\"Ġc ure\",\"Ġsp y\",\"Ġviol ated\",\"Ġr ushed\",\"Ġstro ke\",\"ĠBl og\",\"sel s\",\"ĠE c\",\",' '\",\"Ġp ale\",\"ĠColl ins\",\"ter ror\",\"ĠCanad ians\",\"Ġt une\",\"Ġlabor atory\",\"Ġn ons\",\"t arian\",\"Ġdis ability\",\"ĠG am\",\"Ġsing er\",\"al g\",\"ĠSen ior\",\"Ġtrad ed\",\"ĠWar rior\",\"Ġinf ring\",\"ĠFrank lin\",\"Ġstr ain\",\"ĠSwed ish\",\"Ġsevent h\",\"ĠB enn\",\"ĠT ell\",\"Ġsynd rome\",\"Ġwond ered\",\"id en\",\"++ ++\",\"ig o\",\"Ġpur ple\",\"Ġjournal ism\",\"Ġreb el\",\"Ġf u\",\"bl og\",\"Ġinv ite\",\"ren cies\",\"ĠCont act\",\"Is rael\",\"ĠCont ent\",\"Ġche er\",\"Ġbed room\",\"ĠEngine ering\",\"ĠQue ens\",\"Ġd well\",\"ĠPlay Station\",\"ĠD im\",\"ĠCol on\",\"l r\",\"Ġoper ates\",\"Ġmotiv ation\",\"US A\",\"ast ered\",\"C ore\",\"ĠTr uth\",\"ol o\",\"OS E\",\"ĠMem ory\",\"Ġpred ec\",\"Ġan arch\",\"Ġ19 20\",\"ĠY am\",\"Ã ¨\",\"b id\",\"Ġgr ateful\",\"Ġexc itement\",\"Ġtre asure\",\"Ġlong est\",\"ct ive\",\"Ġdes erves\",\"Ġreserv es\",\"Ġcop s\",\"ĠOtt awa\",\"ĠEgypt ian\",\"ank ed\",\"Ġart if\",\"Ġhypot hesis\",\": /\",\"Ġpurch asing\",\"Ġlove ly\",\"H P\",\"Ġdiv ide\",\"Ġstrict ly\",\"Ġquestion ing\",\"Ġtaxp ayers\",\"ĠJ oy\",\"Ġroll s\",\"ĠHe avy\",\"Ġp orts\",\"Ġmag netic\",\"Ġinf lamm\",\"Ġbr ush\",\"t ics\",\"â ĪĴ\",\"Ġbott les\",\"pp y\",\"Ġp add\",\"ãĤ ¯\",\"m illion\",\"Ġdevast ating\",\"Ġcomp iled\",\"Ġmed ication\",\"Ġtw elve\",\"ĠPer ry\",\"Sp ace\",\"im b\",\"y our\",\"Ġle aked\",\"ĠT ar\",\"Ġun ity\",\"Ġinfect ed\",\"Ġtravel ed\",\"ID E\",\"ĠMc Donald\",\"t xt\",\"ĠPr inc\",\"Ġinter ven\",\"ĠTai wan\",\"ĠP ow\",\"Ġbe aring\",\"ĠTh read\",\"Ġz ones\",\"iz ards\",\"un ks\",\"Ch apter\",\"ll or\",\"ĠÂ ·\",\"Ġw ounds\",\"Ġdisc retion\",\"Ġsucceed ed\",\"ik ing\",\"Ġicon ic\",\"C all\",\"Ġscreen ing\",\"ĠM is\",\"ict s\",\"Ġmin isters\",\"Ġsepar ation\",\"Pl ayer\",\"Ġb ip\",\"Ġbel oved\",\"Ġcount ing\",\"ĠE ye\",\"ar ound\",\"ing ing\",\"Ġtable t\",\"Ġoff ence\",\"in ance\",\"h ave\",\"ĠInf o\",\"ĠNin ja\",\"Ġprotect ive\",\"ĠC ass\",\"M ac\",\"ĠQual ity\",\"N orth\",\"Ġ ic\",\"ĠCub a\",\"ĠChron icle\",\"ĠPro perty\",\"Ġfast est\",\"ot os\",\"ĠG erm\",\"OW N\",\"Ġbo om\",\"ĠStan ley\",\"ergus on\",\"Ġcle ver\",\"Ġent ers\",\"m ode\",\"ter ior\",\"ĠS ens\",\"Ġlin ear\",\"AR K\",\"Ġcomp aring\",\"Ġpure ly\",\"Ġsaf er\",\"ĠPot ter\",\"Ġc ups\",\"R T\",\"Ġgl uc\",\"Ġatt ributed\",\"Ġdu pl\",\"ĠP ap\",\"Ġprec ious\",\"Ġp a\",\"iction ary\",\"ĠT ig\",\"ĠTo o\",\"ol utions\",\"st an\",\"Ġrob ots\",\"Ġlob b\",\"Ġstat ute\",\"Ġprevent ion\",\"w estern\",\"16 0\",\"ĠAct ive\",\"ĠMar ia\",\"h al\",\"N one\",\"ell ar\",\"ĠK B\",\"ĠPart ners\",\"ĠSing le\",\"ĠFollow ing\",\"ang o\",\"ac ious\",\"Ġth ou\",\"Ġk g\",\"Ġinflu ential\",\"ĠFriend s\",\"S ur\",\"ain ted\",\"Ġfor ums\",\"Ġst arter\",\"Ġcitizens hip\",\"ĠE lection\",\"on ge\",\"ot ation\",\"os ph\",\";; ;;\",\"ut ical\",\"p ur\",\"ere n\",\"Ġaccus ations\",\"bit ious\",\"ab bit\",\"ĠOr d\",\"Post ed\",\"ir k\",\"Ġsens itivity\",\"ic he\",\"ĠAm y\",\"ĠF ab\",\"Ġsum mit\",\"Ġped est\",\"Ġrub ber\",\"Ġagric ultural\",\"Ġcan cel\",\"A E\",\"Ġin aug\",\"Ġcont am\",\"Ġfirm ly\",\"i w\",\"st age\",\"ĠK an\",\"Ġt ier\",\"Ġinv ention\",\"Ġtransl ated\",\"ĠR ules\",\"B ox\",\"Tw itter\",\"ID S\",\"Ġp izza\",\"Ġdeb ug\",\"ĠD rop\",\"v s\",\"Ġh orses\",\"b ig\",\"Ġb oring\",\"Ġh ood\",\"ĠMcC ain\",\"at ched\",\"ĠBro s\",\"Ġsk ip\",\"Ġess ay\",\"st at\",\"ĠLeg ends\",\"Ġam munition\",\"au c\",\"Ġshoot er\",\"Ġun h\",\"Ġsuppl ied\",\"Ġgener ic\",\"ĠS K\",\"ib an\",\"yr ics\",\"Ġ25 5\",\"Ġclim bing\",\"Form er\",\"Ġfl ip\",\"Ġjump ing\",\"Ġfrust ration\",\"ĠTer ry\",\"Ġneighborhood s\",\"Ġmed ian\",\"be an\",\"Ġbr ains\",\"Follow ing\",\"Ġsh aped\",\"Ġdraw s\",\"Ġal tered\",\"J ack\",\"Ġrecip es\",\"Ġsk illed\",\"we alth\",\"ach i\",\"e lection\",\"Ġbehavi ors\",\"de als\",\"ĠU ntil\",\"F e\",\"Ġdecl aration\",\"mar ks\",\"ĠBet ween\",\"cel ona\",\"Ġres on\",\"Ġbub ble\",\"Am ong\",\"Ġim perial\",\"G S\",\"Ġfemin ist\",\"200 5\",\"ĠK yle\",\"Ġaccount ing\",\"ĠTe le\",\"ĠT yr\",\"Ġconnect ing\",\"Ġre hab\",\"ĠP red\",\"s im\",\"Ġmeant ime\",\"Ġphys ician\",\"M W\",\"ĠCamp bell\",\"ĠBr andon\",\"Ġcontribut ing\",\"ĠR ule\",\"ĠWe ight\",\"ĠN ap\",\"Ġinter active\",\"Ġv ag\",\"Ġhel met\",\"ĠCom b\",\"f our\",\"Ġsh ipped\",\"Ġcomple ting\",\"ĠP D\",\"PD ATE\",\"Ġspread ing\",\"Ġsc ary\",\"erv ing\",\"ĠG as\",\"Ġfr ank\",\"s chool\",\"Ġrom antic\",\"Ġstab il\",\"R ob\",\"Ġaccur ately\",\"Ġac ute\",\"ĠH ann\",\"Ġsymbol s\",\"Ġcivil ization\",\"ĠA W\",\"Ġlight ning\",\"Ġcons iders\",\"Ġven ue\",\"Ġ ×\",\"Ġo ven\",\"ĠS F\",\"h is\",\"Ġn u\",\"ĠLear n\",\"Ġpe oples\",\"Ġst d\",\"Ġsle e\",\"Ġs lic\",\"ĠStat istics\",\"Ġcor ners\",\"ĠB aker\",\"Ġ: )\",\"ment ation\",\"ol ver\",\"Ġlaugh ing\",\"ĠT odd\",\"ond e\",\"ĠH ills\",\"Ġn uts\",\"ĠW oman\",\"pl ane\",\"Ġl iver\",\"ĠIn side\",\"S orry\",\"Ġagre es\",\"Ġfund ament\",\"ĠF isher\",\"Ġa uction\",\"Ġthread s\",\"gl as\",\"ĠBas ic\",\"ĠN at\",\"Ġlack ing\",\"Ġceleb ration\",\"j u\",\"Ġs illy\",\"E uro\",\"Ġt att\",\"ight y\",\"cont rolled\",\"T est\",\"ĠSing h\",\"Ġr age\",\"Ġrh yth\",\"o ffic\",\"ĠPh antom\",\"Ġhead lines\",\"Ġrespond ing\",\"ĠMor ning\",\"Ġvit amin\",\"Ġboot s\",\"ĠS ite\",\"al in\",\"p i\",\"Ġvir al\",\"ĠU C\",\"D ER\",\"ĠSe x\",\"Ġst ocks\",\"c urrent\",\"Ġch urches\",\"ĠR are\",\"ĠMur phy\",\"Ġden ial\",\"ĠG aming\",\"Ġtou g\",\"Ġn ick\",\"Ġm akers\",\"ĠRon ald\",\"Ġgener ous\",\"ĠD oc\",\"ĠMor ris\",\"Ġtransform ed\",\"ĠN ormal\",\"Ġ10 4\",\"ĠKick starter\",\"ĠUp on\",\"On line\",\"ĠI RS\",\"Ġw rap\",\"Ġl oving\",\"Ġarri ves\",\"ĠD ue\",\"Ġhe ter\",\"ĠM ade\",\"Ġrent al\",\"Ġbelong s\",\"Ġatt orneys\",\"Ġcro ps\",\"Ġmat ched\",\"ul um\",\"ol ine\",\"10 9\",\"Ġdis par\",\"Ġbuy ers\",\"ĠCam bridge\",\"Ġeth ics\",\"rou ps\",\"Ġjust ified\",\"Ġmarg inal\",\"Ġrespect ed\",\"win ning\",\"Ġnodd ed\",\"ĠSer ge\",\"ĠForm er\",\"C raft\",\"######## ########\",\"ĠWar ner\",\"Ġd ash\",\"et e\",\"Ġent ert\",\"ĠE scape\",\"out heast\",\"Ġkn ees\",\"ĠB omb\",\"Ġr ug\",\"P ass\",\"Ġatt itudes\",\"go vernment\",\"ĠPri or\",\"Ġqual ities\",\"Ġnot ification\",\"ĠPh one\",\"l ie\",\"Ġanticip ated\",\"ĠCom bat\",\"ĠBar ry\",\"Ġ198 2\",\"Us ers\",\"on er\",\"Ġcomput ing\",\"ĠConnect icut\",\"Ġless er\",\"Ġpe ers\",\"ĠC u\",\"Ġtechn ically\",\"Ġsub mission\",\"ĠUn iversal\",\"Ġman ually\",\"our ge\",\"Ġrespond ents\",\"ĠB TC\",\"ĠH ost\",\"Ġf are\",\"ĠB ird\",\"Ġrece ipt\",\"al so\",\"Ġj ack\",\"Ġagric ulture\",\"Ġsk ull\",\"Ġ! =\",\"Ġpass ive\",\"ĠC I\",\"Ġsoc ieties\",\"Ġremind ed\",\"Ġinter ference\",\"B uy\",\"Ġâ ľ\",\"g on\",\"Ġscrut iny\",\"ĠW itch\",\"Ġconduct ing\",\"Ġ ãĥ\",\"Ġexch anges\",\"ĠMit chell\",\"Ġinhab it\",\"Ġtw ist\",\"B D\",\"Ġwhere ver\",\"group on\",\"Ġj okes\",\"ĠBen jamin\",\"ĠR andom\",\"fr ame\",\"ĠL ions\",\"Ġhighlight ed\",\"ĠArk ansas\",\"E nt\",\"Ġp ile\",\"Ġpre lim\",\"g s\",\"mind ed\",\"Ġfel ony\",\"ĠG A\",\"ĠL uck\",\"Ġpract ically\",\"ĠB os\",\"Ġact ress\",\"D am\",\"ĠB ou\",\"Ġvis a\",\"Ġembed ded\",\"Ġhy brid\",\"Ġear liest\",\"Ġsoon er\",\"s ocial\",\"ĠH A\",\"Ġste ep\",\"Ġdis advant\",\"Ġexplo it\",\"ĠE gg\",\"ĠUlt ra\",\"Ġnecess ity\",\"L ocal\",\"ie ge\",\"Ġd ated\",\"Ġmass es\",\"Ġsubsc ription\",\"pl ess\",\"Ġan onym\",\"Ġpresum ably\",\"Bl ue\",\"The ir\",\"asket ball\",\"ĠPhil ip\",\"Ġcom ed\",\"load ed\",\"r ane\",\"Ġref lection\",\"Ch ina\",\"Ġext ends\",\"Ġform ing\",\"Ġund ers\",\"200 1\",\"Ġgr at\",\"Ġconcent rations\",\"Ġins ulin\",\"Ġsec ular\",\"Ġwh ilst\",\"Ġwin ners\",\"Ad vertisements\",\"Ġdeliber ately\",\"ĠWork ing\",\"Ġs ink\",\"et ics\",\"d ale\",\"Ġmand ate\",\"Ġg ram\",\"Ġvac ation\",\"Ġwarn ings\",\"ri pp\",\"ĠTH AT\",\"Ġcomment ary\",\"Ġint u\",\"Ġa est\",\"Ġreason ing\",\"Ġbreak down\",\"ĠZ ombie\",\"Ġ-- >\",\"ĠPolit ical\",\"c ott\",\"Ġthr ust\",\"Ġtechn ological\",\"Ġdec iding\",\"Ġtraff icking\",\"L ong\",\"W elcome\",\"pr ising\",\"ĠCommun ications\",\"Ġend ors\",\"Ġsw ift\",\"Ġmetab ol\",\"co ins\",\"res a\",\"ĠHT TP\",\"Ġen roll\",\"ĠH appy\",\"us r\",\"int age\",\"Ġ[ \\\"\",\"u ably\",\"ĠM aterial\",\"Ġrepe al\",\"Se pt\",\"k h\",\"ĠMod i\",\"Ġunder neath\",\"ĠI L\",\"sh ore\",\"Ġdiagn osed\",\"ace utical\",\"Ġsh ower\",\"au x\",\"ĠSw itch\",\"ĠStre ngth\",\"Ġj ihad\",\"n ational\",\"Ġtra uma\",\"uss y\",\"on i\",\"Ġcons olid\",\"Ġcal ories\",\"ĠF lynn\",\"ag ged\",\"16 8\",\"ĠP ink\",\"Ġfulf ill\",\"Ġch ains\",\"Ġnot ably\",\"ĠA V\",\"L ife\",\"ĠCh uck\",\"m us\",\"ĠUr ban\",\"ĠH end\",\"Ġdep osit\",\"ĠS ad\",\"Ġaff air\",\"OR K\",\"ie val\",\"ĠF DA\",\"Ġt rop\",\"ĠOver all\",\"Ġvirt ue\",\"Ġsatisf action\",\"au nd\",\"Ġl un\",\"ĠSw itzerland\",\"ĠOper ation\",\"pro cess\",\"Ġsh ook\",\"Ġcount ies\",\"le ased\",\"ĠCharl otte\",\"1 12\",\"Ġtrans cript\",\"Ġre dd\",\"p ush\",\"ĠHe y\",\"ĠAn alysis\",\"[ \\\"\",\"Ġaltern atives\",\"ard less\",\"Ġele ph\",\"Ġpre jud\",\"ĠLe af\",\"H aving\",\"ĠH ub\",\"Ġexpress ions\",\"ĠVol ume\",\"Ġshock ing\",\"ĠRed s\",\"Ġread ily\",\"Ġplan ets\",\"ad ata\",\"Ġcollaps ed\",\"ĠMad rid\",\"Ġir rit\",\"i pper\",\"ĠEn c\",\"ĠW ire\",\"Ġbu zz\",\"ĠG P\",\"ash a\",\"Ġaccident ally\",\"ur u\",\"Ġfrust rated\",\"ĠS A\",\"Ġhung ry\",\"ĠH uff\",\"Ġlab els\",\"ant o\",\"ĠE P\",\"Ġbar riers\",\") |\",\"ĠBer keley\",\"ĠJ ets\",\"Ġp airs\",\"ĠL an\",\"J ames\",\"ĠB ear\",\"Ġhum or\",\"ĠLiber ty\",\"Ġmagn itude\",\"Ġag ing\",\"ĠM ason\",\"Ġfriends hip\",\"umb ling\",\"Ġemer ge\",\"Ġnewsp apers\",\"Ġam bitious\",\"ĠRich ards\",\"atern al\",\"Ġ198 1\",\"Ġcook ies\",\"Ġsc ulpt\",\"Ġpur suit\",\"L ocation\",\"Ġscript s\",\"p c\",\"Ġarrang ements\",\"Ġd iameter\",\"Ġl oses\",\"am ation\",\"Ġl iqu\",\"ĠJ ake\",\"aret te\",\"Ġunderstand s\",\"ĠZ en\",\"v m\",\"Ġappro ve\",\"Ġw ip\",\"Ġult ra\",\"Ġint end\",\"ĠD I\",\"asc ular\",\"Ġst ays\",\"ĠK or\",\"ĠK l\",\"Ġinvest ing\",\"L a\",\"Ġbelie ving\",\"b ad\",\"m outh\",\"Ġtaxp ayer\",\"ãĥ ĥ\",\"ĠQue bec\",\"Ġl ap\",\"ĠSw iss\",\"d rop\",\"Ġdr ain\",\"ir i\",\"et c\",\"ft en\",\"ĠN ex\",\"Ġst raw\",\"Ġscream ing\",\"Ġcount ed\",\"Ġdam aging\",\"Ġamb assador\",\"cent ury\",\"Ġpro x\",\"Ġarrest s\",\"u v\",\"il ateral\",\"ĠCh arg\",\"Ġpresc ribed\",\"Ġindepend ently\",\"Ġf ierce\",\"ĠB aby\",\"Ġb rave\",\"Ġsu its\",\"= >\",\"Ġbas eline\",\"ĠR ate\",\"Ġis lands\",\"Ġ( (\",\"g reen\",\"ix els\",\"Ġname ly\",\"ĠVill age\",\"th an\",\"am y\",\"V ersion\",\"g mail\",\"ential s\",\"ĠS ud\",\"ĠMel bourne\",\"Ġarri ving\",\"Ġquant um\",\"e ff\",\"rop olitan\",\"T ri\",\"Ġfun eral\",\"ĠI R\",\"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ\",\"ĠC ob\",\"it ably\",\"Ġt urb\",\"Ġcomb o\",\"Re view\",\"Ġdeploy ment\",\"u ity\",\"ĠB ott\",\"Ġinv isible\",\"Ġrender ing\",\"Ġunl ocked\",\"Ġa qu\",\"ĠVlad imir\",\"Ġp ad\",\"ĠBr ain\",\"ĠLeg acy\",\"dr agon\",\"ĠKurd ish\",\"Ġsound ed\",\"Ġdet ained\",\"ĠD M\",\"g ary\",\"Ġd aughters\",\"Ġdistur bing\",\"uk a\",\"ĠPar ad\",\"Ġt ast\",\"Ġunf ortunate\",\"Ġu l\",\"em in\",\"Ġattend ance\",\"tr l\",\"Ġpar ks\",\"ĠMem orial\",\"ĠAl ice\",\"oth y\",\"gu ard\",\"ĠD ise\",\"ĠSh an\",\"ĠFor um\",\"R ich\",\"Ġshif ted\",\"ue z\",\"Ġl ighter\",\"ĠMag n\",\"Ġc od\",\"S ch\",\"ham mad\",\"P ub\",\"3 50\",\"ĠP okemon\",\"Ġprot otype\",\"Ġun re\",\"B ase\",\"ĠStud ents\",\"ĠRep ly\",\"ĠCommun ist\",\"Ġg au\",\"ĠTy ler\",\"I Z\",\"Ġparticip ated\",\"Ġsup rem\",\"ĠDet ails\",\"Ġvessel s\",\"ro d\",\"Ġt ribe\",\"ke ep\",\"Ġassum ptions\",\"Ġp ound\",\"Ġcr ude\",\"ĠAv ailable\",\"Ġswim ming\",\"Ġin clusion\",\"Ġadv ances\",\"c ulation\",\"Ġconserv ation\",\"Ġover d\",\"ĠBuff alo\",\"Art icle\",\"ed ge\",\"Ġaw a\",\"ĠMad ison\",\"Ġsid ew\",\"Ġcat ast\",\"ĠK rist\",\"uc le\",\"ĠHigh way\",\"ĠTer ror\",\"Ġactiv ation\",\"Ġuncons cious\",\"ĠSat an\",\"ĠSus an\",\"ill ery\",\"Ġarr anged\",\"i op\",\"Ġrum ors\",\"ur ring\",\"th ink\",\"ĠKe ith\",\"ĠK ind\",\"Ġavoid ing\",\"by n\",\"n ut\",\"ĠSpe aker\",\"r us\",\"n ames\",\"Ġgu ilt\",\"ĠOlymp ics\",\"Ġsa il\",\"ĠM es\",\"lev ant\",\"ĠColumb us\",\"a ft\",\"C ity\",\"S outh\",\"ĠHar vey\",\"ĠP un\",\"S everal\",\"Ġment ally\",\"Ġimp ress\",\"m ount\",\"ĠUb untu\",\"âĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶ\",\"ĠSuper man\",\"ĠMP s\",\"Ġintent ions\",\"ĠR acing\",\"Ġlike lihood\",\"Ġ2 40\",\"T otal\",\"Ġto ys\",\"ĠW atson\",\"Ġur ge\",\"L ear\",\"ĠP aper\",\"Ġoccur ring\",\"ĠB eng\",\"ĠC ert\",\"Ġst ones\",\"T im\",\"ĠTw in\",\"z b\",\"ĠD ynam\",\"Ġpolit ician\",\"k ens\",\"ĠEnter prise\",\"UT ERS\",\"Ġab ol\",\"Ġref resh\",\"Ġarbit rary\",\"pe ction\",\"Ġtrou bles\",\"Ġ} );\",\"t v\",\"Ġpil ots\",\"Ġdist ribute\",\"Ġaud it\",\"Ġp ause\",\"orig inal\",\"Ġr ivals\",\"Â £\",\"F ig\",\"T L\",\"ab il\",\"ry ing\",\"L in\",\"ion ed\",\"l on\",\"Ġf ancy\",\"Ġcr ashed\",\"Ġt ract\",\"Ġshe d\",\"Ġcons ume\",\"B ased\",\"down load\",\"in it\",\"Ġvolt age\",\"Int rodu\",\"Ġcondem ned\",\"ĠFin ance\",\"res pect\",\"Ġex cluded\",\"Ġestablish ing\",\"her ic\",\"Ġher itage\",\"Ġspect acular\",\"Ġun st\",\"ĠSnow den\",\"ĠL ane\",\"S an\",\"Ġprotect ions\",\"st ruction\",\"inc inn\",\"Ġmac ro\",\"C ustom\",\"ios ity\",\"Ġes p\",\"Ġfunction ing\",\"Ġm ush\",\"Ġp uzzle\",\"Ġeth ical\",\"M al\",\"Ġgo verning\",\"ĠF erguson\",\"Ġrest ored\",\"Ġst ressed\",\"ĠCoun ter\",\"ĠK as\",\"cl ip\",\"AN S\",\"Ġse iz\",\"U K\",\"by ss\",\"old own\",\"ap i\",\"Ġperman ently\",\"oun ters\",\"W est\",\"Th rough\",\"L ight\",\"at oes\",\"Ġne at\",\"Ġc ord\",\"ure r\",\"Ġsevere ly\",\"ĠA ven\",\"Ġinter rog\",\"Ġtri ple\",\"G iven\",\"N umber\",\"Ġar ise\",\"Ġs her\",\"pl ant\",\"Ġfl ower\",\"ĠC ou\",\"Ġat e\",\"Ġnew er\",\"b ul\",\"Ġmean while\",\"ĠL air\",\"Ġadjust ment\",\"ĠCop yright\",\"Ġd ivers\",\"i ological\",\"Ġgam ers\",\"o at\",\"Ġhistor ically\",\"Ġanal og\",\"Ġlong time\",\"Ġpres cription\",\"ĠM ist\",\"ĠHy per\",\"ĠM aine\",\"ĠDe ity\",\"Ġmulti pl\",\"ĠRe incarn\",\"ĠH yd\",\"ĠP ic\",\"S il\",\"r ants\",\"ĠC ris\",\". ;\",\"( {\",\"epend ence\",\"Ġrec y\",\"ate ur\",\"Ġqu ad\",\"Ġgl ob\",\"Ġcon ced\",\"te am\",\"Ġcapital ist\",\"ĠL ot\",\"Ġroy al\",\"ĠCy ber\",\"Ġblack s\",\"met ic\",\"ri v\",\"ĠD anny\",\"Ġsp o\",\"ĠR O\",\"Ġanim ated\",\"rypt ed\",\"ĠDep uty\",\"Ġrend ered\",\"F E\",\"Ġstre ak\",\"Ġcloud s\",\"ĠDou g\",\"~~~~ ~~~~\",\"Ġdisc our\",\"ĠVe h\",\"Ġpsych ology\",\"ĠJ ourney\",\"Ġcry stal\",\"ĠFro st\",\"Ġsuspic ion\",\"Ġrel ate\",\"or us\",\"ĠC rypt\",\"ĠN VIDIA\",\"com ed\",\"ut ing\",\"incinn ati\",\"Ġvulner ability\",\"ost ic\",\"Ġisol ation\",\"Ġcool ing\",\"ĠCoal ition\",\"Ġ1 19\",\"F our\",\"ĠDe al\",\"Ġâ ī\",\"se mble\",\"ram ent\",\"ĠBar celona\",\"Ġ10 2\",\"Ġcoc aine\",\"ocaly pse\",\"F eb\",\"ogen ic\",\"Ġmut ation\",\"Ġcrypt oc\",\"ĠK el\",\"ĠG it\",\"a is\",\"Ġs isters\",\"AN K\",\"Ġactiv ate\",\"T er\",\"Ġd read\",\"yl on\",\"Ġprop ri\",\"A ust\",\"ĠDef ault\",\"Ġout door\",\"Ġshe er\",\"ce ive\",\"Ġg ently\",\"Ð ¾\",\"Pro gram\",\"Ġâ ĨĴ\",\"Ġve gan\",\"ĠCr us\",\"Ġrespons ibilities\",\"ĠH R\",\"OL D\",\"Ġprev ents\",\"Ġst iff\",\"ĠW ere\",\"Ġathlet ic\",\"ĠSc ore\",\"Ġ) :\",\"Ġcolumn s\",\"ĠL oc\",\"av ailable\",\"ĠF ram\",\"ĠS essions\",\"Ġcompan ion\",\"Ġpack s\",\"14 0\",\"ĠKn ights\",\"Ġf art\",\"Ġstream s\",\"Ġsh ore\",\"Ġapp eals\",\"ĠPer formance\",\"h aul\",\"ĠSt ra\",\"ĠN ag\",\"10 3\",\"ĠTrans portation\",\"B B\",\"E v\",\"z an\",\"P ublic\",\"Ġtw in\",\"uls ion\",\"M ult\",\"Ġelect ro\",\"Ġstat ue\",\"ation ally\",\"ĠN ort\",\"Ġins pection\",\"/ *\",\"ig ue\",\"Ġcomp assion\",\"ĠT ales\",\"ĠSte in\",\"ĠSc reen\",\"ĠB ug\",\"ĠL ion\",\"g irl\",\"Ġwithdraw al\",\"Ġobject ives\",\"Ġblood y\",\"Ġprelim inary\",\"Ġj acket\",\"Ġdim ensions\",\"ĠC ool\",\"ĠOcc up\",\"Ġw reck\",\"Ġdoub led\",\"ank ing\",\"Ġ19 75\",\"Ġglass es\",\"ĠW ang\",\"pro v\",\"P ath\",\"connect ed\",\"ĠMult i\",\"ĠNor way\",\"agon ist\",\"Ġfe ared\",\"Ġtouch ing\",\"Ġarg uably\",\"Â¯Â¯Â¯Â¯ Â¯Â¯Â¯Â¯\",\"ĠNC AA\",\"che m\",\"Ġsp at\",\"ĠW WE\",\"ĠC el\",\"ig ger\",\"Ġattack er\",\"ĠJo in\",\"ob ject\",\"ett a\",\"Ġelim inated\",\"d et\",\"Ġdest ruct\",\"ĠLuc as\",\"ct uary\",\"18 0\",\"ĠBr ady\",\"ĠBl ues\",\"B ay\",\"au kee\",\"Ġtim eline\",\"Ġdeleg ates\",\"w ritten\",\"uff icient\",\"Ġsh apes\",\"Cop yright\",\"ou ble\",\"serv ice\",\"Ġp ione\",\"Ġcolleg es\",\"Ġrow s\",\"Ġsp ite\",\"Ġassess ed\",\"3 60\",\"Ġle ase\",\"Ġconfident ial\",\"ck er\",\"ĠMan ning\",\"ĠV oice\",\"Ġse aled\",\"Ġcalcul ate\",\"N O\",\"ĠAss istant\",\"Ġteen ager\",\"ul ent\",\"ather ine\",\"Ġm ock\",\"Ġd iamond\",\"Ġf est\",\"Ġsw itched\",\"Ġres ume\",\"ĠPu erto\",\"Ġl anes\",\"ir ation\",\"ĠSimilar ly\",\"Ġro d\",\"ĠS el\",\"ĠPal ace\",\"ĠLim ited\",\"e ous\",\"Ġvar iant\",\"Ġw ard\",\"Ġ) )\",\"Sh ow\",\"OO K\",\"A lex\",\"ĠN ep\",\"br is\",\"ĠWik ipedia\",\"Ġexcept ional\",\"Ġman ages\",\"ĠD raw\",\"Ag ain\",\"Ġco pper\",\"ut t\",\"Ġex ports\",\"Ġport folio\",\"Ġelev ated\",\"R ated\",\"ĠOther wise\",\"ĠT act\",\"ĠShe l\",\"ĠT X\",\"\\\" âĢĶ\",\"Ġres ur\",\"ĠW a\",\"ven ant\",\"Ġmon etary\",\"pe ople\",\"E mail\",\"Ġfif ty\",\"ĠS weet\",\"ĠMalays ia\",\"Ġconf using\",\"ĠR io\",\"ud a\",\"uten ant\",\"\\\" );\",\"Ġpra ised\",\"Ġvol umes\",\"t urn\",\"Ġm ature\",\"Ġnon profit\",\"Ġpassion ate\",\"ĠPriv ate\",\"Ġ10 3\",\"Ġdesc end\",\"ç ¥ŀ\",\"uff y\",\"head ed\",\"Whe ther\",\"ri en\",\"ze ch\",\"be it\",\"Ġch rom\",\"ĠMc M\",\"Ġd ancing\",\"Ġe leg\",\"ĠNot iced\",\"11 5\",\"Ġadvoc acy\",\"ENT S\",\"amb ling\",\"ĠMin or\",\"ĠF inn\",\"Ġprior ities\",\"Ġthere of\",\"ĠSt age\",\"ĠRog ers\",\"Ġsubst itute\",\"ĠJ ar\",\"ĠJeff erson\",\"Ġlight ly\",\"10 2\",\"ĠL isa\",\"u its\",\"ys ical\",\"Ġshif ts\",\"Ġd rones\",\"Ġwork place\",\"Ġres id\",\"ens ed\",\"ah n\",\"Ġpref erences\",\"ser ver\",\"Ġdeb ates\",\"d oc\",\"ĠGod s\",\"Ġhelicop ter\",\"Ġhon our\",\"Ġconsider ably\",\"ed ed\",\"ĠF emale\",\"ĠAn ne\",\"Ġre un\",\"ĠF ace\",\"ĠHall ow\",\"ĠBud get\",\"Ġcondem n\",\"Ġt ender\",\"Pro f\",\"ocr atic\",\"ĠTurn er\",\"ĠAg ric\",\"Ġ19 76\",\"Ġa pt\",\"d isc\",\"ĠF ighter\",\"ĠA ur\",\"Ġgar bage\",\"in put\",\"ĠK arl\",\"ĠOl iver\",\"ĠL anguage\",\"k n\",\"N on\",\"ĠCl ar\",\"Ġtrad itions\",\"Ġad vertisement\",\"ĠS or\",\"Ġarch ive\",\"Ġvill ages\",\"7 50\",\"Ġimplement ing\",\"w aukee\",\"Ġdiet ary\",\"Ġswitch ing\",\"Rep ublic\",\"Ġvel ocity\",\"Ġc it\",\"ĠA wards\",\"Ġfin ancing\",\"Ġlast ed\",\") ]\",\"Ġrem inder\",\"P erson\",\"Ġprec ision\",\"Ġdesign ers\",\"ĠF ried\",\"ĠB order\",\"Ġtr agic\",\"Ġw ield\",\"Ġiniti atives\",\"ĠT ank\",\"w er\",\"Ġjo ins\",\"R o\",\"in ery\",\"Ġar row\",\"Ġgener ating\",\"found er\",\"Ġsear ches\",\"Ġrandom ly\",\"A ccess\",\"Ġb atch\",\"Ġp osed\",\"l at\",\"Ġpursu ing\",\"as a\",\"Ġtest ified\",\"form ing\",\"ĠSh ar\",\"w iki\",\"ĠE ither\",\"S ometimes\",\"Ġsen ators\",\"ĠJohn ny\",\"ĠTal iban\",\"ĠG PS\",\"\\\":\\\" /\",\"ãģ® å\",\"Ġanaly zed\",\"ĠRub io\",\"ĠMove ment\",\"op ard\",\"ii i\",\"St and\",\"f ight\",\"Ġign oring\",\"i ang\",\"ĠG N\",\"so ever\",\"ĠST AT\",\"Ġref using\",\"Ġswe at\",\"Ġb ay\",\"P ORT\",\"ir med\",\"ak y\",\"Ġdis pro\",\"Ġlabel ed\",\"Ġ10 8\",\"H ello\",\"Ġple asant\",\"ab a\",\"Ġtri umph\",\"Ġab oard\",\"Ġinc om\",\"ĠC row\",\"le tt\",\"Ġfol k\",\"Ġch ase\",\"` `\",\"ĠBr us\",\"Ġte ens\",\"c ue\",\"Ġter rain\",\"h yd\",\"il ight\",\"OR Y\",\"Su pport\",\"ew s\",\"ll i\",\"rain ts\",\"ĠC and\",\"Ġab used\",\"ach ment\",\"l arg\",\"B as\",\"ĠC ancer\",\"Ġ19 78\",\"Ġsupp orter\",\"ac cess\",\"ĠTer min\",\"ĠT ampa\",\"ĠAN Y\",\"Ġnew est\",\"ĠCrim inal\",\"ed u\",\"Ġ19 30\",\"Ġadm its\",\"Ġend e\",\"Ġfail ures\",\"ur ate\",\"ful ness\",\"cy cl\",\"ĠSub ject\",\"Ġinf inite\",\"th ree\",\"W A\",\"p it\",\"ĠInst all\",\"R ad\",\"ili ation\",\"G M\",\"Ġcontin ent\",\"Ġaccommod ate\",\"ĠCl ay\",\"Ġp up\",\"ĠF unction\",\"Ġham mer\",\"ĠAlbert a\",\"Ġrev ised\",\"Ġminor ities\",\"Ġmeasure ment\",\"Con nell\",\"Ġdis able\",\"ĠM ix\",\"In cre\",\"Ġfor k\",\"ĠR osen\",\"Ġimpl ies\",\"umb lr\",\"AN G\",\"Ġprote ins\",\"Ġagg ression\",\"Ġfacilit ate\",\"S N\",\"Ġilleg ally\",\"u er\",\"Ġacad em\",\"Ġp uzz\",\"ĠSh ift\",\"p ay\",\"oll o\",\"Ġaud iences\",\"B uild\",\"Ġno ble\",\"Ġsynt ax\",\"â ĺħ\",\"Ġbe am\",\"ĠB ed\",\"ĠA ld\",\"Ġorig ins\",\"v ideo\",\"Ġ19 77\",\"ĠAss ault\",\"Ġgar age\",\"Te am\",\"Ġver dict\",\"Ġd war\",\"ĠVirt ual\",\"e vent\",\"Ke ep\",\"Ġsent iment\",\"Ġwild life\",\"sh irt\",\"Ġb urg\",\"Ġrecommend ation\",\"rep resent\",\"Ġgall ery\",\"own ers\",\"Ġsch olar\",\"Ġconven ience\",\"ĠSw ift\",\"Ġconv inc\",\"C ap\",\"Ġwar fare\",\"ĠVis ual\",\"Ġconst itute\",\"Ġab ort\",\"ĠWe ather\",\"ĠLook ing\",\"ĠH em\",\"Ġmart ial\",\"Ġinc oming\",\"et ition\",\"Ġtoler ance\",\"ĠCre ated\",\"Ġfl ows\",\"ĠE lder\",\"Ġsoul s\",\"Ġf oul\",\"ĠP ain\",\"ĠC AN\",\"Ġ2 20\",\"b c\",\"he nd\",\"Ġgen ius\",\"R eal\",\"ĠW r\",\"omet er\",\"p ad\",\"Ġlim iting\",\"ĠS i\",\"ĠL ore\",\"ĠAd ventures\",\"Ġvar ied\",\"D isc\",\"f in\",\"ĠPerson al\",\"Ch ris\",\"Ġinv ented\",\"Ġd ive\",\"ĠR ise\",\"Ġo z\",\"ĠCom ics\",\"Ġexp ose\",\"ĠRe b\",\"let ters\",\"s ite\",\"im ated\",\"Ġh acking\",\"Ġeduc ated\",\"ĠNob ody\",\"Ġdep ri\",\"Ġincent ive\",\"ãĤ ·\",\"Ġovers ight\",\"Ġtrib es\",\"ĠBelg ium\",\"Ġlicens ing\",\"our t\",\"Produ ct\",\"ah l\",\"ĠG em\",\"Ġspecial ist\",\"Ġc ra\",\"ann ers\",\"ĠCor byn\",\"Ġ19 73\",\"RE AD\",\"Ġsum mar\",\"Ġover look\",\"ĠApp lication\",\"Ġin appropriate\",\"Ġdownload ed\",\"Q ue\",\"ĠB ears\",\"Ġth umb\",\"ĠChar acter\",\"ĠReincarn ated\",\"ĠS id\",\"Ġdemonstr ates\",\"s ky\",\"ĠBloom berg\",\"ĠAr ray\",\"ĠRes ults\",\"ĠFour th\",\"ĠED T\",\"ĠO scar\",\"c end\",\"Ġ10 6\",\"ĠN ULL\",\"ĠH ERE\",\"m atch\",\"ĠBr un\",\"Ġgluc ose\",\"ie g\",\"eg u\",\"Ġcert ified\",\"Ġrel ie\",\"Ġhuman itarian\",\"Ġpr ayers\",\"K ing\",\"Ġn an\",\"h ou\",\"10 8\",\"ul u\",\"Ġrenew able\",\"Ġdistingu ish\",\"Ġd ense\",\"ĠV ent\",\"ĠPack age\",\"ĠB oss\",\"Ġedit ors\",\"Ġm igr\",\"T ra\",\"ĠPet ers\",\"ĠAr ctic\",\"200 4\",\"ĠC ape\",\"Ġloc ally\",\"Ġlast ing\",\"Ġhand y\",\". ).\",\"P an\",\"ĠR ES\",\"Ind ex\",\"Ġt ensions\",\"Ġformer ly\",\"Ġide ological\",\"Ġsens ors\",\"Ġdeal ers\",\"Ġdef ines\",\"S k\",\"Ġproceed s\",\"Ġpro xy\",\"az ines\",\"ĠB ash\",\"ĠP ad\",\"ĠC raft\",\"eal ous\",\"Ġshe ets\",\"omet ry\",\"J une\",\"cl ock\",\"T T\",\"ĠThe atre\",\"ĠB uzz\",\"Ġch apters\",\"Ġmill enn\",\"Ġd ough\",\"ĠCongress ional\",\"Ġimag ined\",\"av ior\",\"Ġclin ic\",\"Ġ19 45\",\"Ġhold er\",\"ro ot\",\"oles ter\",\"Ġrest art\",\"B N\",\"ĠHam as\",\"ĠJ ob\",\"Ġor b\",\"Ġr am\",\"Ġdiscl ose\",\"Ġtransl ate\",\"Ġimm igrant\",\"Ġannoy ing\",\"Ġtreat y\",\"an ium\",\"ĠTe a\",\"ĠLeg ion\",\"Ġcrowd s\",\"ĠB ec\",\"ĠA er\",\"oh yd\",\"B ro\",\"Look ing\",\"Ġl bs\",\"Ġagg ress\",\"Ġse am\",\"Ġinter cept\",\"ĠM I\",\"mer cial\",\"act iv\",\"ĠC it\",\"Ġdim ension\",\"Ġconsist ency\",\"Ġr ushing\",\"ĠDou glas\",\"Ġtr im\",\"Inst all\",\"ick er\",\"Ġsh y\",\"10 6\",\"Ġment ions\",\"pe lled\",\"ĠT ak\",\"c ost\",\"Ġclass room\",\"Ġfort une\",\"dri ven\",\"Ġun le\",\"ĠWhe el\",\"Ġinvest or\",\"ĠM asters\",\"k it\",\"Ġassoci ations\",\"ĠEv olution\",\"op ing\",\"us cript\",\"Ġprov incial\",\"ĠWal ter\",\"av i\",\"S O\",\"Ġun limited\",\"Eng lish\",\"ĠC ards\",\"ĠEb ola\",\"ne red\",\"Ġreven ge\",\"Ġout right\",\"um per\",\"Ġf itting\",\"ĠSol id\",\"Ġform ally\",\"Ġproblem atic\",\"Ġhaz ard\",\"Ġenc ryption\",\"Ġstraight forward\",\"ĠA K\",\"Ġp se\",\"ĠOr b\",\"ĠCh amber\",\"ĠM ak\",\"Cont ents\",\"Ġloyal ty\",\"Ġl yrics\",\"ĠSy m\",\"Ġwel comed\",\"Ġcook ed\",\"Ġmon op\",\"Ġn urse\",\"Ġmis leading\",\"Ġe ternal\",\"Ġshif ting\",\"Ġ+ =\",\"V is\",\"Ġinst itutional\",\"ill ary\",\"Ġp ant\",\"VER T\",\"ĠA CC\",\"ĠEn h\",\"Ġinc on\",\"ĠRE UTERS\",\"Ġdon ated\",\"âĢ¦âĢ¦ âĢ¦âĢ¦\",\"In tern\",\"Ġexhib it\",\"Ġt ire\",\"ĠR ic\",\"ĠCh ampion\",\"ĠMu hammad\",\"N ING\",\"ĠSoc cer\",\"Ġmob ility\",\"Ġvary ing\",\"ĠM ovie\",\"Ġl ord\",\"o ak\",\"F ield\",\"Ġve ctor\",\"us ions\",\"Ġsc rap\",\"Ġen abling\",\"m ake\",\"T or\",\". *\",\"| |\",\"ĠWe bsite\",\"ĠN PC\",\"Ġsocial ist\",\"ĠBill y\",\"ĠAdd itional\",\"Ġc argo\",\"Ġfar ms\",\"ĠSo on\",\"ĠPri ze\",\"Ġmid night\",\"Ġ9 00\",\"se en\",\"ĠSp ot\",\"Ġshe ep\",\"Ġspons ored\",\"ĠH i\",\"ĠJ ump\",\"Ġ19 67\",\"Micro soft\",\"ĠAg ent\",\"Ġch arts\",\"d ir\",\"Ġadj acent\",\"Ġtr icks\",\"Ġman ga\",\"Ġex agger\",\"/ >\",\"foot ball\",\"ĠF CC\",\"G C\",\"ĠT ier\",\"and ra\",\"OU ND\",\"% ),\",\"Ġfru its\",\"V C\",\"ĠA A\",\"R ober\",\"Ġmid st\",\"â Ĺ\",\"ank a\",\"Ġlegisl ature\",\"ĠNe il\",\"Ġtour ists\",\"\\\" \\\"\",\"ĠWar ning\",\"ĠNever theless\",\"ĠOffic ial\",\"ĠWh atever\",\"Ġm old\",\"Ġdraft ed\",\"Ġsubst ances\",\"Ġbre ed\",\"Ġt ags\",\"ĠT ask\",\"Ġver b\",\"Ġmanufact ured\",\"com ments\",\"ĠPol ish\",\"Pro v\",\"Ġdetermin es\",\"Ob ama\",\"k ers\",\"Ġutter ly\",\"Ġse ct\",\"sc he\",\"ĠG ates\",\"ĠCh ap\",\"Ġal uminum\",\"Ġz ombie\",\"ĠT ouch\",\"ĠU P\",\"Ġsatisf y\",\"Ġpred omin\",\"asc ript\",\"Ġelabor ate\",\"Ġ19 68\",\"Ġmeas uring\",\"ĠV ari\",\"any ahu\",\"Ġs ir\",\"ul ates\",\"id ges\",\"ick ets\",\"ĠSp encer\",\"T M\",\"oub ted\",\"Ġpre y\",\"Ġinstall ing\",\"ĠC ab\",\"re ed\",\"re ated\",\"Su pp\",\"Ġwr ist\",\"ĠK erry\",\"10 7\",\"ĠK le\",\"ĠR achel\",\"Ġc otton\",\"ĠA RE\",\"ĠE le\",\"Cont rol\",\"Ġload s\",\"ĠD od\",\"an as\",\"b one\",\"Ġclass ical\",\"ĠReg ional\",\"ĠInt eg\",\"V M\",\"Ġdes ires\",\"Ġaut ism\",\"support ed\",\"ĠM essage\",\"Ġcomp act\",\"writ er\",\"Ġ10 9\",\"ĠHur ricane\",\"c ision\",\"Ġcy cles\",\"Ġdr ill\",\"Ġcolle ague\",\"Ġm aker\",\"G erman\",\"Ġmist aken\",\"S un\",\"ĠG ay\",\"Ġwhat soever\",\"Ġsell s\",\"ĠA irl\",\"l iv\",\"ĠO ption\",\"Ġsol ved\",\"Ġse ctors\",\"Ġhorizont al\",\"Ġequ ation\",\"ĠSk ill\",\"ĠB io\",\"g ement\",\"ĠSn ap\",\"ĠLeg al\",\"Ġtradem ark\",\"Ġmake up\",\"Ġassemb led\",\"Ġsa ves\",\"ĠHallow een\",\"ĠVer mont\",\"ĠFR OM\",\"Ġfar ming\",\"ĠP odcast\",\"accept able\",\"ĠHig her\",\"Ġas leep\",\"ull ivan\",\"Ġrefere n\",\"ĠLe v\",\"Ġbul lets\",\"ok o\",\"H C\",\"Ġst airs\",\"Ġmain tains\",\"ĠL ower\",\"ĠV i\",\"Ġmar ine\",\"Ġac res\",\"Ġcoordin ator\",\"ĠJ oh\",\"Ġcounterpart s\",\"ĠBrother s\",\"Ġind ict\",\"b ra\",\"Ġch unk\",\"Ġc ents\",\"H ome\",\"ĠMon th\",\"Ġaccording ly\",\"if les\",\"ĠGerm ans\",\"ĠSy n\",\"H ub\",\"Ġey eb\",\"âĶĢâĶĢ âĶĢâĶĢ\",\"Ġr anges\",\"ĠHoll and\",\"ĠRob ot\",\"f c\",\"M ike\",\"Ġpl asma\",\"Ġsw ap\",\"Ġath lete\",\"ĠR ams\",\",' \\\"\",\"Ġinfect ions\",\"Ġcor rid\",\"Ġv ib\",\"Ġpat ches\",\"Ġtradition ally\",\"Ġrevel ation\",\"Ġswe ep\",\"Ġgl ance\",\"Ġin ex\",\"200 3\",\"ĠR aw\",\"work ing\",\"os ures\",\"ĠD at\",\"ĠLyn ch\",\"Ġle verage\",\"ĠRe id\",\"Ġcorrel ation\",\"ian ces\",\"av ascript\",\"Ġrep ository\",\"ret ty\",\"Ġ19 72\",\"24 0\",\"Ġo un\",\"p ol\",\"ĠRe ed\",\"Ġtact ical\",\"is ite\",\"App le\",\"ĠQu inn\",\"Ġrap ed\",\"ill o\",\"Euro pe\",\"Ġalgorith ms\",\"ĠRod rig\",\"i u\",\"Ġill um\",\"Ġf ame\",\"Ġintrodu cing\",\"Ġdel ays\",\"ĠRaid ers\",\"Ġwh istle\",\"Ġnovel s\",\"ĠRe ally\",\"Ġder iv\",\"Ġpublic ations\",\"ĠNe ither\",\"ĠCom merce\",\"Ġa ston\",\"l anguage\",\"Not es\",\"ĠR oth\",\"ĠF ear\",\"Ġm ate\",\"Ġpar ade\",\"ĠQ B\",\"Ġman eu\",\"ĠC incinnati\",\"m itting\",\"Ġwa ist\",\"ĠR ew\",\"Ġdisc ont\",\"Ð °\",\"Ġst aring\",\"Ġal ias\",\"Ġsec urities\",\"Ġtoile t\",\"ĠJ edi\",\"Ġun law\",\"v ised\",\"//// ////\",\"] (\",\"ĠWe iss\",\"Ġpre st\",\"ĠComp an\",\"Ġmem o\",\"ĠGr ace\",\"J uly\",\"ĠEl ite\",\"cent er\",\"ĠSt ay\",\"Ġgal axy\",\"Ġto oth\",\"ĠS ettings\",\"Ġsubject ed\",\"ãĤ ¦\",\"Ġline back\",\"Ġretail ers\",\"ĠW ant\",\"Ġd angers\",\"A ir\",\"Ġvolunt ary\",\"ew ay\",\"Ġinterpret ed\",\"ot ine\",\"Ã §\",\"Ġp el\",\"Serv ice\",\"ĠEvent ually\",\"Ġcare ers\",\"Ġthreat en\",\"Ġmem or\",\"ĠBrad ley\",\"anc ies\",\"s n\",\"ĠUn known\",\"N ational\",\"Ġsh adows\",\"ail and\",\"ĠD ash\",\"Every one\",\"izz ard\",\"M arch\",\"= (\",\"Ġpull s\",\"Ġstr anger\",\"Ġback wards\",\"ĠBern ard\",\"imens ional\",\"Ġch ron\",\"Ġtheoret ical\",\"k top\",\"Ġw are\",\"ĠInvest ig\",\"ĠIn iti\",\"ĠOper ations\",\"o ven\",\"oc ide\",\"* /\",\"Ġfl ames\",\"ĠC ash\",\"sh it\",\"Ġc ab\",\"ĠAn aly\",\"ĠSe ah\",\"Ġdefin ing\",\"Ġorder ing\",\"Ġimm un\",\"Ġpers istent\",\"AC H\",\"Russ ian\",\"m ans\",\"Ġh ind\",\"Ġphot ography\",\"Â ©\",\"Ġh ug\",\"Ġ10 7\",\"ĠH ence\",\"i ots\",\"ude au\",\"Ġsubsid ies\",\"Ġroutine ly\",\"ĠDev ice\",\"it ic\",\"Ġdisg ust\",\"land er\",\"Ġ19 40\",\"Ġassign ment\",\"ĠB esides\",\"w ick\",\"ĠD ust\",\"us c\",\"struct ed\",\"11 1\",\"de velop\",\"Ġf ond\",\"Ġinter section\",\"Ġdign ity\",\"Ġcommission er\",\"With out\",\"re ach\",\"Ġcart oon\",\"Ġsc ales\",\"ãĥ Ń\",\"F IG\",\"Ġsurve ys\",\"ĠIndones ia\",\"Ġart work\",\"Ġun ch\",\"Ġcy cling\",\"un ct\",\"au er\",\"or ate\",\"ĠOb viously\",\"Ġcharacter ized\",\"fe ld\",\"Ġaff irm\",\"Ġinn ings\",\"Ġ é\",\"Ġal iens\",\"Ġcl oth\",\"et ooth\",\"ĠC ertain\",\"Â §\",\"Ġdig est\",\"k now\",\"ĠX L\",\"Ġpredict ions\",\"Ġd in\",\"W AR\",\"Ġafter math\",\"Ex ample\",\"ĠSu ccess\",\"ĠTh r\",\"IG N\",\"Ġmin er\",\"B us\",\"Ġcl arity\",\"heim er\",\"ĠO UT\",\"ĠS end\",\"ĠCirc le\",\"ĠD iet\",\"Ġpron ounced\",\"Ġcreat ors\",\"Ġearthqu ake\",\"atter y\",\"ge ons\",\"Ġo d\",\"Ġlay ing\",\"or p\",\"U lt\",\"pro ject\",\"Ġunder min\",\"Ġsequ el\",\"S am\",\"ĠDark ness\",\"Ġre ception\",\"b ull\",\"Y S\",\"ĠV ir\",\"Ġsequ ences\",\"ĠCo in\",\"Ġout fit\",\"ĠW ait\",\"1 19\",\"Ġdel ivers\",\".... ..\",\"Ġbl own\",\"ĠE sc\",\"ĠM ath\",\"per m\",\"ĠU l\",\"Ġgl im\",\"Ġfac ial\",\"Ġgreen house\",\"Ġto kens\",\"/ -\",\"ĠAnn ual\",\"ĠON E\",\"Ġteen age\",\"ĠPhys ical\",\"ĠL ang\",\"ĠC elt\",\"Ġsu ed\",\"ivid ually\",\"Ġpat ience\",\"ch air\",\"reg ular\",\"Ġa ug\",\"in v\",\"ex cept\",\"ĠL il\",\"Ġn est\",\"f d\",\"s um\",\"ĠCh ase\",\"Russ ia\",\"ĠJenn ifer\",\"Ġoff season\",\"Over all\",\"F ore\",\"Ġr iot\",\"A ud\",\"form er\",\"Ġdefend ers\",\"ĠC T\",\"iot ic\",\"rib ly\",\"Ġautom ated\",\"Ġpen is\",\"Ġins ist\",\"Ġdi agram\",\"ĠS QL\",\"ĠG arc\",\"Ġw itch\",\"cl ient\",\"ier ra\",\"am bers\",\"Ġrec ount\",\"f ar\",\"V ery\",\"oster one\",\"Ġappreci ated\",\"ĠPer fect\",\"S ection\",\"Ġd oses\",\"oca ust\",\"Ġcost ly\",\"Ġg rams\",\"ĠSh i\",\"Ġwrest ling\",\"Ġ19 71\",\"Ġtro phy\",\"Ġn erve\",\"ĠK az\",\"ĠExper ience\",\"Ġpled ged\",\"Ġplay back\",\"Ġcreat ivity\",\"by e\",\"Ġattack ers\",\"Ġhold ers\",\"ĠCo ach\",\"ĠPh D\",\"Ġtransf ers\",\"Ġcol ored\",\"ĠH indu\",\"Ġd rown\",\"Ġlist ened\",\"ĠW A\",\"ias m\",\"P O\",\"Ġappeal ing\",\"Ġdiscl osed\",\"ĠCh icken\",\"ag ging\",\"Ġple aded\",\"Ġnav igation\",\"ĠReturn s\",\"Ġ[ [\",\"R OR\",\"E A\",\"Ġphotograp her\",\"ĠR ider\",\"ipp ers\",\"Ġsl ice\",\"Ġe rect\",\"Ġhe d\",\"iss ance\",\"ĠVik ings\",\"ur ious\",\"Ġapp et\",\"oubted ly\",\"Ch ild\",\"Ġauthent ic\",\"o os\",\"ĠM aking\",\"Ġannoun cing\",\"Ġb od\",\"Ġmet er\",\"ĠN ine\",\"ĠR ogue\",\"Ġwork force\",\"Ġrenew ed\",\"Ġorganis ations\",\"ac s\",\"P LE\",\"Sh ort\",\"Ġcomp ounds\",\"ĠVis it\",\"Ġen velop\",\"ear th\",\"Ġsupport ive\",\"gg le\",\"ĠBrus sels\",\"ĠGu ild\",\"Cre ate\",\"RE L\",\"Ġaver aged\",\"Ġ19 69\",\"ri ages\",\"Ġlength y\",\"Ġforg ot\",\"O kay\",\"ĠE rd\",\"Ġdeal er\",\"Ġrec ession\",\"D D\",\"Ġdesper ately\",\"Ġhun ger\",\"Ġst icks\",\"Ġm ph\",\"ĠF aith\",\"Ġintention ally\",\"Ġdem ol\",\"ue ller\",\"ĠS ale\",\"Ġde bris\",\"s pring\",\"Ġle ap\",\">> >>\",\"Ġcontain ers\",\"se lling\",\"rane an\",\"atter ing\",\"Ġcomment ed\",\"ĠC M\",\"on ut\",\"Ġwood s\",\"es pecially\",\"Ġorgan ize\",\"iv ic\",\"ĠWood s\",\"ang a\",\"s qu\",\"Ġm aj\",\"am on\",\"Ġax is\",\"Ġ19 74\",\"ĠDen mark\",\"Ġwar rior\",\"ĠP and\",\"Ġout lined\",\"ĠB O\",\"ins ula\",\"z illa\",\"eb ook\",\"Ġd are\",\"Ġsear ched\",\"Ġnav igate\",\"S n\",\"writ ing\",\"Ġun ited\",\"J apan\",\"ĠHe brew\",\"Ġfl ame\",\"Ġrel ies\",\"Ġcatch ing\",\"ĠSh o\",\"Ġimprison ment\",\"Ġp ockets\",\"Ġclos ure\",\"ĠF am\",\"t im\",\"ade qu\",\"Act ivity\",\"Ġrecru iting\",\"ĠW ATCH\",\"ĠArgent ina\",\"d est\",\"Ġapolog ize\",\"or o\",\"Ġlack s\",\"Ġtun ed\",\"ĠGriff in\",\"Ġinf amous\",\"Ġcelebr ity\",\"ss on\",\"Ġ ----------------------------------------------------------------\",\"ĠIs is\",\"ĠDis play\",\"Ġcred ibility\",\"Ġeconom ies\",\"Ġhead line\",\"ĠCow boys\",\"Ġind ef\",\"Ġl ately\",\"Ġincent ives\",\"but ton\",\"ĠM ob\",\"A ut\",\"Ġres igned\",\"ĠO m\",\"c amp\",\"Ġprof iles\",\"Ġsche mes\",\"olph ins\",\"ay ed\",\"Cl inton\",\"en h\",\"ĠY ahoo\",\"Ġab st\",\"Ġan k\",\"su its\",\"Ġw ished\",\"ĠMar co\",\"udd en\",\"Ġsp here\",\"ĠB ishop\",\"Ġincorpor ated\",\"ĠPl ant\",\"11 4\",\"Ġh ated\",\"p ic\",\"Ġdon ate\",\"Ġl ined\",\"Ġbe ans\",\"Ġsteal ing\",\"Ġcost ume\",\"Ġsher iff\",\"Ġfor ty\",\"Ġint act\",\"Ġadapt ed\",\"Ġtrave lling\",\"b art\",\"Ġnice ly\",\"Ġdri ed\",\"Ġsc al\",\"os ity\",\"NOT E\",\"ĠB h\",\"ĠBron cos\",\"ĠI gn\",\"Ġint imate\",\"Ġchem istry\",\"Ġopt imal\",\"D eb\",\"ĠGener ation\",\"Ġ] ,\",\"ich i\",\"ĠW ii\",\"ĠYOU R\",\"vent ions\",\"W rite\",\"Ġpop ul\",\"un ning\",\"ĠW or\",\"V ol\",\"Ġqu een\",\"head s\",\"K K\",\"Ġanaly ze\",\"op ic\",\"ear chers\",\"Ġd ot\",\"leg raph\",\"ast ically\",\"Ġupgr ades\",\"Ġca res\",\"Ġext ending\",\"Ġfree ze\",\"Ġin ability\",\"Ġorg ans\",\"Ġpret end\",\"Ġout let\",\"11 3\",\"ol an\",\"ĠM all\",\"ul ing\",\"t alk\",\"Ġexpress ing\",\"ĠAl ways\",\"ĠBe gin\",\"f iles\",\"Ġlic enses\",\"% %\",\"ĠM itt\",\"Ġfil ters\",\"ĠMil waukee\",\"G N\",\"Ġunf old\",\"M o\",\"Ġnut rition\",\"pp o\",\"B o\",\"Ġfound ing\",\"Ġunder mine\",\"Ġeas iest\",\"ĠC zech\",\"ĠM ack\",\"Ġsexual ity\",\"ĠN ixon\",\"W in\",\"ĠAr n\",\"ĠK in\",\"ãĤ £\",\"ic er\",\"Ġfort un\",\"Ġsurf aces\",\"agh d\",\"Ġcar riers\",\"ĠP ART\",\"ĠT ib\",\"Ġinter val\",\"Ġfrust rating\",\"ĠSh ip\",\"ĠAr med\",\"ff e\",\"Ġbo ats\",\"ĠAb raham\",\"in is\",\"Ġsu ited\",\"th read\",\"i ov\",\"ab ul\",\"ĠVenezuel a\",\"Ġto m\",\"su per\",\"Ġcast le\",\"alth ough\",\"iox ide\",\"ec hes\",\"Ġevolution ary\",\"Ġnegoti ate\",\"Ġconfront ed\",\"Rem ember\",\"Ġ17 0\",\"S uch\",\"Ġ9 11\",\"m ult\",\"ĠA byss\",\"ur ry\",\"ke es\",\"spe c\",\"ĠBarb ara\",\"Ġbelong ing\",\"Ġvill ain\",\"ist ani\",\"Ġaccount able\",\"Ġport ions\",\"ĠDe cl\",\"U r\",\"ĠK ate\",\"g re\",\"Ġmag azines\",\"UC K\",\"Ġregul ate\",\"om on\",\"ĠAl most\",\"Ġover view\",\"Ġsc ram\",\"Ġl oot\",\"ĠF itz\",\"Ġcharacter istic\",\"ĠSn ake\",\"s ay\",\"ĠR ico\",\"Ġtra it\",\"ĠJo ined\",\"au cus\",\"Ġadapt ation\",\"ĠAirl ines\",\"Ġarch ae\",\"ĠI de\",\"Ġb ikes\",\"Ġliter ary\",\"Ġinflu ences\",\"ĠUs ed\",\"C reat\",\"Ġple a\",\"ĠDef ence\",\"ĠAss ass\",\"Ġp ond\",\"UL T\",\") \\\"\",\"Ġeval uated\",\"Ġob taining\",\"Ġdem ographic\",\"Ġvig il\",\"ale y\",\"Ġsp ouse\",\"ĠSeah awks\",\"resp ons\",\"ĠB elt\",\"um atic\",\"Ġr ises\",\"run ner\",\"ĠMichel le\",\"Ġpot ent\",\"r ace\",\"ĠP AC\",\"F ind\",\"olester ol\",\"IS S\",\"ĠIntrodu ced\",\"ress es\",\"ign ment\",\"O s\",\"ĠT u\",\"ĠDe x\",\"ic ides\",\"Ġspark ed\",\"ĠLaur a\",\"ĠBry ant\",\"Ġsm iling\",\"ĠNex us\",\"Ġdefend ants\",\"ĠCat al\",\"Ġdis hes\",\"sh aped\",\"Ġpro long\",\"m t\",\"( $\",\"ãĢ Ĥ\",\"Ġcalcul ations\",\"ĠS ame\",\"Ġp iv\",\"H H\",\"Ġcance lled\",\"Ġgr in\",\"Ġterrit ories\",\"ist ically\",\"C ome\",\"ĠP arent\",\"Pro ject\",\"Ġneg lig\",\"ĠPriv acy\",\"Ġam mo\",\"LE CT\",\"olute ly\",\"ĠEp ic\",\"Ġmis under\",\"w al\",\"Apr il\",\"m os\",\"path y\",\"ĠC arson\",\"Ġalbum s\",\"ĠE asy\",\"Ġpist ol\",\"< <\",\"Ġ\\\\ (\",\"t arget\",\"hel p\",\"Ġinter pre\",\"cons cious\",\"ĠH ousing\",\"ĠJ oint\",\"12 7\",\"Ġbe ers\",\"s cience\",\"ĠFire fox\",\"effect ive\",\"ĠC abin\",\"ĠO kay\",\"ĠApp lic\",\"Ġspace craft\",\"ĠS R\",\"ve t\",\"ĠStr ange\",\"S B\",\"Ġcor ps\",\"iber al\",\"e fficient\",\"Ġpreval ence\",\"Ġeconom ists\",\"11 8\",\"Th read\",\"ord able\",\"OD E\",\"ĠC ant\",\"=- =-\",\"if iable\",\"ĠA round\",\"Ġpo le\",\"Ġwilling ness\",\"CL A\",\"ĠK id\",\"Ġcomple ment\",\"Ġsc attered\",\"Ġin mates\",\"Ġble eding\",\"e very\",\"Ġque ue\",\"ĠTr ain\",\"Ġh ij\",\"Ġme lee\",\"ple ted\",\"Ġdig it\",\"Ġg em\",\"offic ial\",\"Ġlif ting\",\"Ð µ\",\"Re qu\",\"it utes\",\"Ġpack aging\",\"ĠWork ers\",\"h ran\",\"ĠLeban on\",\"ol esc\",\"Ġpun ished\",\"ĠJ uan\",\"Ġj am\",\"ĠD ocument\",\"Ġm apping\",\"ic ates\",\"Ġinev itably\",\"Ġvan illa\",\"ĠT on\",\"Ġwat ches\",\"Ġle agues\",\"Ġiniti ated\",\"deg ree\",\"port ion\",\"Ġrec alls\",\"Ġru in\",\"Ġm elt\",\"I AN\",\"Ġhe m\",\"Ex p\",\"Ġb aking\",\"ĠCol omb\",\"at ible\",\"Ġrad ius\",\"pl ug\",\"ĠI F\",\"et ically\",\"Ġf ict\",\"H ER\",\"ĠT ap\",\"atin um\",\"Ġin k\",\"Ġco h\",\"ĠW izard\",\"b oth\",\"te x\",\"Ġsp ends\",\"ĠCurrent ly\",\"ĠP it\",\"Ġneur ons\",\"ig nt\",\"Ġr all\",\"Ġbus es\",\"b uilding\",\"Ġadjust ments\",\"Ġc ried\",\"ibl ical\",\"att ed\",\"ĠZ ion\",\"ĠM atter\",\"Ġmed itation\",\"ĠD ennis\",\"Ġour s\",\"ĠT ab\",\"Ġrank ings\",\"ort al\",\"Ġad vers\",\"Ġsur render\",\"ĠG ob\",\"ci um\",\"om as\",\"im eter\",\"Ġmulti player\",\"Ġhero in\",\"Ġoptim istic\",\"Ġindic ator\",\"ĠBr ig\",\"Ġgro cery\",\"Ġapplic ant\",\"ĠRock et\",\"v id\",\"Ex ception\",\"p ent\",\"Ġorgan izing\",\"Ġenc ounters\",\"ĠT OD\",\"Ġjew el\",\"S ave\",\"ĠChrist ie\",\"Ġhe ating\",\"Ġl azy\",\"ĠC P\",\"Ġcous in\",\"Con fig\",\"Ġreg ener\",\"Ġne arest\",\"Ġachie ving\",\"EN S\",\"th row\",\"ĠRich mond\",\"ant le\",\"200 2\",\"Ġan ten\",\"b ird\",\"13 3\",\"Ġn arc\",\"r aint\",\"un ny\",\"ĠHispan ic\",\"ourn aments\",\"Ġprop he\",\"ĠTh ailand\",\"ĠT i\",\"Ġinject ion\",\"Ġinher it\",\"rav is\",\"Ġmed i\",\"Ġwho ever\",\"ĠDE BUG\",\"G P\",\"ĠH ud\",\"C ard\",\"p rom\",\"Ġp or\",\"Ġover head\",\"L aw\",\"Ġviol ate\",\"Ġhe ated\",\"Ġdescript ions\",\"Ġachieve ments\",\"ĠBe er\",\"ĠQu ant\",\"W as\",\"Ġe ighth\",\"ĠI v\",\"Ġspecial ized\",\"U PDATE\",\"ĠD elta\",\"P op\",\"J ul\",\"ĠAs k\",\"oph y\",\"Ġnews letters\",\"ĠT ool\",\"Ġg ard\",\"ĠConf eder\",\"ĠGM T\",\"ĠAb bott\",\"Ġimm unity\",\"ĠV M\",\"Is lam\",\"Ġimpl icit\",\"w d\",\"Ġ19 44\",\"rav ity\",\"omet ric\",\"Ġsurv iving\",\"ur ai\",\"ĠPr ison\",\"Ġr ust\",\"ĠSk etch\",\"Ġbe es\",\"ĠThe ory\",\"Ġmer it\",\"T ex\",\"ch at\",\"Ġm im\",\"Ġpast e\",\"ĠK och\",\"Ġignor ance\",\"ĠSh oot\",\"Ġbas ement\",\"Un ited\",\"ĠAd vis\",\"he ight\",\"Ġf oster\",\"Ġdet ain\",\"in formation\",\"Ġne ural\",\"' ;\",\"Ġprov es\",\"all ery\",\"Ġinv itation\",\"um bers\",\"Ġc attle\",\"Ġbicy cle\",\"z i\",\"Ġconsult ant\",\"Ġap ology\",\"ĠT iger\",\"Ġ12 3\",\"99 9\",\"Ġind ividually\",\"r t\",\"ig ion\",\"ĠBrazil ian\",\"Ġdist urb\",\"Ġentreprene urs\",\"Ġfore sts\",\"cer pt\",\"pl ates\",\"p her\",\"clip se\",\"Ġtw itter\",\"Ġac ids\",\"ograph ical\",\"h um\",\"ĠB ald\",\"if ully\",\"Ġcomp iler\",\"ĠD A\",\"Ġdon or\",\"as i\",\"Ġtrib al\",\"l ash\",\"ĠCon fig\",\"Ġapplic ants\",\"Ġsal aries\",\"13 5\",\"Put in\",\"ĠF ocus\",\"ir s\",\"Ġmisc onduct\",\"ĠH az\",\"Ġeat en\",\"M obile\",\"Mus lim\",\"ĠMar cus\",\"v iol\",\"Ġfavor able\",\"Ġst ub\",\"ad in\",\"ĠH ob\",\"Ġfaith ful\",\"Ġelectron ics\",\"Ġvac uum\",\"w ait\",\"back ed\",\"econom ic\",\"d ist\",\"Ġten ure\",\"Ġsince re\",\"ĠT ogether\",\"ĠW ave\",\"Ġprog ression\",\"Ġden ying\",\"Ġdist ress\",\"br aska\",\"th ird\",\"Ġmix ing\",\"Ġcolon ial\",\"Ġpriv ately\",\"Ġun rest\",\"atern ity\",\"Ġprem ises\",\"ant i\",\"greg ation\",\"Ġlic ence\",\"ĠH ind\",\"ĠSam uel\",\"Ġconvinc ing\",\"ĠA ce\",\"ĠR ust\",\"ĠNet anyahu\",\"Ġhand les\",\"ĠP atch\",\"orient ed\",\"ah o\",\"ĠG onz\",\"Ġhack ers\",\"claim er\",\"Ġcustom s\",\"ĠGr an\",\"f ighters\",\"Ġl uc\",\"Ġman uscript\",\"aren thood\",\"Ġdev il\",\"Ġwar riors\",\"Ġoff enders\",\"Will iam\",\"Ġhol idays\",\"Ġnight mare\",\"Ġle ver\",\"iff erent\",\"St at\",\"Ġexhib ition\",\"put ed\",\"ĠP ure\",\"Ġal pha\",\"Ġenthus iasm\",\"ĠRepresent atives\",\"E AR\",\"ĠT yp\",\"Ġwhe at\",\"ĠAl f\",\"Ġcor rection\",\"Ġev angel\",\"AT T\",\"M iss\",\"Ġs oup\",\"Ġimpl ied\",\"par am\",\"Ġsex y\",\"ĠL ux\",\"Ġrep ublic\",\"p atch\",\"ab lish\",\"Ġic ons\",\"Ġfather s\",\"ĠG ET\",\"ĠCar ib\",\"Ġregul ated\",\"ĠCo hen\",\"ĠBob by\",\"Ġn er\",\"Ġb ent\",\"vent ory\",\"ĠAl ong\",\"ĠE ST\",\"ĠWall ace\",\"Ġmurd ers\",\"r ise\",\"ke ll\",\"ĠCommon wealth\",\"Ġn asty\",\"et a\",\"ĠM IT\",\"Ġadminist ered\",\"Ġgenuine ly\",\"Ed itor\",\"n ick\",\"Ġhyd ro\",\"**************** ****************\",\"ĠB le\",\"Ġfin es\",\"Ġg orge\",\"aus ible\",\"r h\",\"Ġapp le\",\"ment ioned\",\"Ġro pe\",\"ot yp\",\"H R\",\"Ġdisappoint ing\",\"Ġc age\",\"n ik\",\"Ġdoub ts\",\"ĠF REE\",\"print s\",\"ĠM UST\",\"Ġvend ors\",\"ĠIn qu\",\"Ġliber als\",\"Ġcontract or\",\"Ġup side\",\"child ren\",\"Ġtrick y\",\"Ġregul ators\",\"charg ed\",\"l iter\",\"Ġ ***\",\"Ġreb ell\",\"l ang\",\"Ġloc als\",\"Ġphys icians\",\"Ġhe y\",\"ar se\",\"t m\",\"ĠLe x\",\"Ġbehavior al\",\"success ful\",\"F X\",\"Ġbr ick\",\"ov ic\",\"Ġcon form\",\"Ġreview ing\",\"Ġins ights\",\"Ġbi ology\",\"ĠRem ove\",\"ĠExt ra\",\"Ġcomm itting\",\"indu ced\",\"ignt y\",\"ig m\",\"Ġat omic\",\"Comm on\",\"ĠE M\",\"ĠP ere\",\"ĠIt ems\",\"e h\",\"Ġpres erved\",\"ĠH ood\",\"Ġprison er\",\"Ġbankrupt cy\",\"Ġg ren\",\"us hes\",\"Ġexplo itation\",\"Ġsign atures\",\"Ġfin an\",\"] ,\\\"\",\"ĠM R\",\"Ġme g\",\"rem lin\",\"Ġmusic ians\",\"Ġselect ing\",\"Ġexam ining\",\"IN K\",\"l ated\",\"H i\",\"Ġart ic\",\"Ġp ets\",\"Ġimp air\",\"ĠM AN\",\"Ġtable ts\",\"in clude\",\"R ange\",\"Ġca ut\",\"Ġlog s\",\"Ġmount ing\",\"Ġun aware\",\"Ġdynam ics\",\"ĠPalest ine\",\"ĠQu arter\",\"ĠPur ple\",\"Ġm a\",\"ĠIm port\",\"Ġcollect ions\",\"ci ation\",\"Ġsuccess or\",\"Ġcl one\",\"Ġaim ing\",\"Ġposs essed\",\"Ġstick ing\",\"Ġsh aking\",\"Ġloc ate\",\"ĠH ockey\",\"T urn\",\"17 0\",\"Ġfif teen\",\"ĠHar rison\",\"Ġcontinu ously\",\"ĠT C\",\"ĠVal ent\",\"ĠRes cue\",\"Ġby pass\",\"am ount\",\"Ġm ast\",\"Ġprotect s\",\"Ġart istic\",\"Ġsomet ime\",\"Ġsh oe\",\"Ġshout ed\",\"ific ant\",\"et itive\",\"ĠReg ister\",\"ĠJ in\",\"Ġconcent rated\",\"ling ton\",\"on ies\",\"Ġgener ator\",\"yr im\",\"ĠAr men\",\"Ġclear ing\",\"id o\",\"ĠT W\",\"al ph\",\"Ġlad ies\",\"H ard\",\"Ġdial og\",\"Ġinput s\",\"æ ľ\",\"Ġpos es\",\"Ġsl ots\",\"ĠPrem ium\",\"Ġle aks\",\"Ġboss es\",\"Ġ11 3\",\"c ourse\",\"A cc\",\"ĠNew ton\",\"ĠAust ria\",\"ĠM age\",\"Ġte aches\",\"ab ad\",\"Ġwe ars\",\"Ġc yl\",\"Ġcur se\",\"ĠS ales\",\"ĠW ings\",\"Ġp sy\",\"Ġg aps\",\"ĠIce land\",\"ĠP interest\",\"Ġland lord\",\"Ġdefin itions\",\"ĠK er\",\"Ġsufficient ly\",\"ĠP ence\",\"ĠArch itect\",\"Ġsur pass\",\"Ġ11 4\",\"Ġsuper hero\",\"ĠDise ase\",\"Ġpri ests\",\"ĠC ulture\",\"Ġdefin itive\",\"Ġsecret ly\",\"ĠD ance\",\"inst all\",\"ch ief\",\"ĠJess ica\",\"W ould\",\"Up dated\",\"Ġlock er\",\"ĠK ay\",\"Ġmem orial\",\"è ¦\",\"f at\",\"Ġdis gu\",\"Ġflav ors\",\"ĠBase ball\",\"ĠRes istance\",\"Ġk icks\",\"Ġen v\",\"Ġteen agers\",\"D ark\",\"ĠC AR\",\"Ġh alt\",\"ĠL G\",\"ĠGab riel\",\"Ġfe ver\",\"Ġs atur\",\"Ġm all\",\"Ġaffili ate\",\"ĠS leep\",\"ĠSpe cific\",\"ĠV el\",\"Ġj ar\",\"ĠSac red\",\"ĠEd wards\",\"ĠA CL\",\"Ġret ained\",\"ĠG iant\",\"Ġlim itation\",\"in ces\",\"Ġref usal\",\"ĠT ale\",\"ĠBut ler\",\"Ġacc idents\",\"ĠC SS\",\"Ġimport ed\",\"ĠCop y\",\"Î ±\",\"ER T\",\"z el\",\"Ġdiv isions\",\"h ots\",\"ĠAl b\",\"ĠD S\",\"Load er\",\"W ashington\",\"at isf\",\"ĠCreat ive\",\"\\\\ .\",\"ĠAut om\",\"red ict\",\"Ġrecept or\",\"ĠCarl os\",\"Met hod\",\"ok a\",\"Ġmal icious\",\"Ġste pping\",\", [\",\"ĠD ad\",\"Ġatt raction\",\"ĠEffect s\",\"ĠPir ate\",\"ĠC er\",\"ĠIndust ry\",\"ĠR ud\",\"Ġchar ter\",\"Ġd ining\",\"Ġins ists\",\"Ġconfig ure\",\"Ġ( #\",\"ĠSim ple\",\"ĠSc roll\",\"UT C\",\"17 5\",\"ĠK on\",\"Ġmarket place\",\"Ġ ãĤ\",\"Ġref res\",\"Ġg ates\",\"er red\",\"ĠP od\",\"Ġbeh ave\",\"Fr ank\",\"n ode\",\"Ġendors ed\",\"he tt\",\"as ive\",\"ĠHom eland\",\"Ġr ides\",\"ĠLe ave\",\"er ness\",\"Ġflood ing\",\"A FP\",\"Ġris en\",\"Ġcontin ually\",\"Ġun anim\",\"ĠCont ract\",\"ĠP as\",\"Ġgu ided\",\"ĠCh ile\",\"b d\",\"Ġsu cc\",\"pt ic\",\"Ġcomm ittees\",\"ĠL uther\",\"ĠAny one\",\"Ġs ab\",\"12 4\",\"Ġp ixel\",\"ĠB ak\",\"ĠT ag\",\"ĠBenn ett\",\"En ter\",\"sm all\",\"ĠPresident ial\",\"Ġp ul\",\"Ġcontr ace\",\"arch ive\",\"Ġcoast al\",\"ĠK ids\",\"19 2\",\"âĢ ²\",\"ick y\",\"ING TON\",\"Ġw olf\",\"ĠSt alin\",\"T ur\",\"id get\",\"am as\",\"ĠUn less\",\"Ġspons or\",\"Ġmor ph\",\"ĠCho ose\",\"Ġrun ner\",\"Ġun bel\",\"Ġm ud\",\"ĠMan a\",\"Ġdub bed\",\"Ġg odd\",\"ure rs\",\"wind ow\",\"Ġrel ied\",\"Ġcelebr ating\",\"os c\",\"Ġ13 5\",\"Ġlobb ying\",\"Ġincom plete\",\"Ġrestrict ion\",\"Ġinc ap\",\"it us\",\"Ġexpect ation\",\"ĠAp ollo\",\"Ġint ens\",\"Ġsyn c\",\"G H\",\"Ġmanip ulation\",\"B Y\",\"Ġspe ar\",\"Ġbre asts\",\"Ġvol can\",\"il ia\",\"M aterial\",\"Ġform ats\",\"ĠB ast\",\"Ġparliament ary\",\"Ġsn ake\",\"Ġserv ants\",\"ĠTr udeau\",\"ĠGr im\",\"ĠArab ic\",\"ĠSC P\",\"ĠBoy s\",\"st ation\",\"Ġprospect ive\",\"ord e\",\"in itialized\",\"Ġb ored\",\"AB LE\",\"Ġaccess ed\",\"Ġtax i\",\"ĠShe ll\",\"aid en\",\"urs ed\",\"in ates\",\"ĠIns urance\",\"ĠPet e\",\"Sept ember\",\"6 50\",\"Ġad ventures\",\"ĠCo ver\",\"Ġt ribute\",\"Ġsk etch\",\"Ġem power\",\"Ġ Ø\",\"ĠGl enn\",\"ĠD aw\",\"= \\\\\\\"\",\"ĠPolit ics\",\"Ġgu ides\",\"Ġd ioxide\",\"ĠG ore\",\"ĠBr ight\",\"ĠS ierra\",\"Ġval ued\",\"c ond\",\"Ġpo inter\",\"Se lect\",\"Ġrisk y\",\"Ġabsor b\",\"im ages\",\"Ġref uses\",\"Ġbon uses\",\"__ _\",\"Ġh ilar\",\"ĠF eatures\",\"2 20\",\"ĠCollect or\",\"F oot\",\"Ġ19 64\",\"cul us\",\"Ġd awn\",\"Ġwork out\",\"ĠL O\",\"Ġphilosoph ical\",\"ĠSand y\",\"ĠYou th\",\"Ġl iable\",\"A f\",\"bl ue\",\"Ġovert urn\",\"less ness\",\"ĠTrib une\",\"ĠIn g\",\"Ġfact ories\",\"Ġcat ches\",\"Ġpr one\",\"Ġmat rix\",\"Ġlog in\",\"Ġin acc\",\"Ġex ert\",\"s ys\",\"Ġneed le\",\"ĠQ ur\",\"Ġnot ified\",\"ould er\",\"t x\",\"Ġremind s\",\"Ġpublisher s\",\"Ġn ort\",\"Ġg it\",\"Ġfl ies\",\"ĠEm ily\",\"Ġflow ing\",\"ĠAl ien\",\"ĠStr ateg\",\"Ġhard est\",\"Ġmod ification\",\"AP I\",\"ĠM Y\",\"Ġcr ashes\",\"st airs\",\"n umber\",\"Ġur ging\",\"ch annel\",\"ĠFal con\",\"Ġinhabit ants\",\"Ġterr ifying\",\"Ġutil ize\",\"Ġban ner\",\"Ġcig arettes\",\"Ġsens es\",\"ĠHol mes\",\"Ġpract ition\",\"ĠPhill ips\",\"ott o\",\"Ġcomp ile\",\"Mod el\",\"ĠK o\",\"Ġ[ ]\",\"Americ ans\",\"ĠTer ms\",\"Ġmed ications\",\"ĠAn a\",\"Ġfundament ally\",\"ĠNot ice\",\"Ġwe aker\",\"Ġ 0000\",\"Ġgar lic\",\"Ġout break\",\"Ġeconom ist\",\"ĠB irth\",\"Ġobst acles\",\"ar cer\",\"ĠOr thodox\",\"Ġplace bo\",\"ĠC rew\",\"asp berry\",\"ĠAng els\",\"Ġdis charge\",\"Ġdestruct ive\",\"11 7\",\"ĠR ising\",\"Ġd airy\",\"l ate\",\"Ġcoll ision\",\"ĠTig ers\",\"ean or\",\"ocument ed\",\"ĠIn valid\",\"Ġd ont\",\"ĠL iter\",\"ĠV a\",\"Ġhyd rogen\",\"Ġvari ants\",\"ĠBrown s\",\"Ġ19 65\",\"Ġind igenous\",\"Ġtrad es\",\"Ġremain der\",\"Ġswe pt\",\"ĠImp act\",\"Ġred ist\",\"Ġun int\",\"grad uate\",\"ãĥ ķ\",\"ĠW ILL\",\"ãģ® ç\",\"ĠCrit ical\",\"Ġf isher\",\"Ġv icious\",\"Ġrevers ed\",\"Y ear\",\"ĠS ox\",\"Ġshoot ings\",\"Ġfil ming\",\"Ġtouchdown s\",\"ai res\",\"m el\",\"Ġgrand father\",\"Ġaffect ion\",\"ing le\",\"Ġover ly\",\"Add itional\",\"Ġsup reme\",\"ĠGr ad\",\"Ġsport ing\",\"Ġmer cy\",\"ĠBrook s\",\"ount y\",\"Ġperform s\",\"Ġtight ly\",\"Ġdem ons\",\"Ġkill ings\",\"Ġfact ion\",\"ĠNov a\",\"aut s\",\"Ġund oubtedly\",\"ar in\",\"Ġunder way\",\"ra k\",\"Ġl iv\",\"ĠReg ion\",\"Ġbrief ing\",\"s ers\",\"cl oud\",\"ĠM ik\",\"us p\",\"Ġpred iction\",\"az or\",\"Ġport able\",\"ĠG and\",\"Ġpresent ing\",\"Ġ10 80\",\"Â »\",\"ush i\",\"ĠSp ark\",\"there um\",\"Ġjust ification\",\"ĠN y\",\"Ġcontract ors\",\"ming ham\",\"ĠSt yle\",\"å ħ\",\"ĠChron icles\",\"ĠPict ure\",\"Ġprov ing\",\"Ġw ives\",\"set t\",\"Ġmole cules\",\"ĠFair y\",\"Ġconsist ing\",\"Ġp ier\",\"al one\",\"in ition\",\"Ġn ucle\",\"j son\",\"Ġg otta\",\"Ġmob il\",\"Ġver bal\",\"ar ium\",\"Ġmon ument\",\"uck ed\",\"Ġ25 6\",\"T ech\",\"mine craft\",\"ĠTr ack\",\"Ġt ile\",\"Ġcompat ibility\",\"as is\",\"Ġs add\",\"Ġinstruct ed\",\"ĠM ueller\",\"Ġle thal\",\"Ġhorm one\",\"Ġor che\",\"el se\",\"Ġske let\",\"Ġentert aining\",\"Ġminim ize\",\"ag ain\",\"Ġunder go\",\"Ġconst raints\",\"Ġcig arette\",\"ĠIslam ist\",\"Ġtravel s\",\"ĠPant hers\",\"l ings\",\"C are\",\"Ġlaw suits\",\"ur as\",\"Ġcry st\",\"Ġlow ered\",\"Ġaer ial\",\"Ġcomb inations\",\"Ġha un\",\"Ġch a\",\"Ġv ine\",\"Ġquant ities\",\"Ġlink ing\",\"b ank\",\"Ġso y\",\"B ill\",\"ĠAngel a\",\"Ġrecip ient\",\"ĠProt est\",\"Ġs ocket\",\"Ġsolid arity\",\"Ġâ Ĩ\",\"m ill\",\"Ġvar ies\",\"ĠPak istani\",\"Dr agon\",\"Ġun e\",\"Ġhor izon\",\"ÂłÂłÂłÂł ÂłÂłÂłÂł\",\"Ġprov inces\",\"Ġfrank ly\",\"Ġenact ed\",\"not es\",\"[ '\",\"Ġ19 2\",\"ocr acy\",\"Ġendorse ment\",\"Ġover time\",\"Tr ue\",\"L ab\",\"lic ted\",\"ĠD NC\",\"Ġbe ats\",\"ĠJam ie\",\"15 2\",\"ĠIN T\",\"Cont act\",\"Ġaccount ed\",\"h ash\",\"ĠPack ers\",\"p ires\",\"Ġles bian\",\"Ġamend ments\",\"Ġhop eful\",\"ĠFin land\",\"Ġspot light\",\"Ġconfig ured\",\"Ġtrou bled\",\"Ġg aze\",\"ĠCal gary\",\"Ġrel iability\",\"Ġins urg\",\"sw er\",\"b uy\",\"ĠSk in\",\"Ġp ixels\",\"Ġhand gun\",\"Ġpar as\",\"Ġcateg or\",\"ĠE L\",\"ĠRe x\",\"Ind eed\",\"Ġkind a\",\"Ġconj unction\",\"ĠBry an\",\"ĠMan ufact\",\"y ang\",\"Pl us\",\"S QL\",\"ish ment\",\"Ġdom inate\",\"Ġn ail\",\"Ġo ath\",\"Ġeru pt\",\"ĠF ine\",\"it bart\",\"ĠCh ip\",\"ĠAb d\",\"ĠN am\",\"Ġbuy er\",\"Ġdiss ent\",\"Le aks\",\"Cont in\",\"Ġr ider\",\"ĠSome one\",\"Ġill usion\",\"c in\",\"ĠBoe ing\",\"Ġin adequ\",\"ov ation\",\"i ants\",\"Ġreb uild\",\"4 50\",\"ĠDest iny\",\"S W\",\"ĠT ill\",\"H it\",\"ia z\",\"ĠBang l\",\"acher s\",\"ĠRe form\",\"Ġse gments\",\"Ġsystem atic\",\"d c\",\"ĠConserv atives\",\"Ġport al\",\"h or\",\"ĠDragon bound\",\"Ġdrag ged\",\"om o\",\"Ġthe e\",\"ad vert\",\"ĠRep orts\",\"ĠE t\",\"Ġbarrel s\",\"Aug ust\",\"Ġcompar isons\",\"Ġhe x\",\"Ġan throp\",\"\\\" [\",\"bor ough\",\"ab i\",\"Ġpict ured\",\"play ing\",\"ĠAdd ress\",\"ĠMir ror\",\"Sm ith\",\"Ġt ires\",\"ĠN PR\",\"AA AA\",\"Ġclass ification\",\"ĠTh an\",\"ĠH arm\",\"ĠR A\",\"Ġreject ion\",\"min ation\",\"Ġr anged\",\"ĠF alls\",\"D I\",\"H ost\",\"ãĤ ´\",\"ĠEx ample\",\"list ed\",\"th irds\",\"Ġsaf egu\",\"br and\",\"Ġprob able\",\"Can ada\",\"IT ION\",\"ĠQ aeda\",\"Ġch ick\",\"Ġimport s\",\"h it\",\"l oc\",\"W W\",\"Ġble w\",\"Ġany time\",\"Ġwh oles\",\"ik ed\",\"Ġcal culation\",\"cre ate\",\"ĠO ri\",\"Ġupgr aded\",\"Ġapp ar\",\"ut ory\",\"ĠM ol\",\"B rit\",\"ĠJ ong\",\"IN AL\",\"ĠStart ing\",\"Ġd ice\",\"urt le\",\"Ġre lying\",\"cl osure\",\"Ġprof itable\",\"Ġsl aughter\",\"ĠMan ual\",\"c aster\",\"Ġ\\\" $\",\"Ġfe ather\",\"ĠSim ply\",\"ie ves\",\"Ġdeter ior\",\"ĠPC I\",\"Ġst amp\",\"Ġfl aws\",\"Ġsh ade\",\"ham mer\",\"Ġpass port\",\"Ġcont ing\",\"am el\",\"Ġobser vers\",\"Ġneg lect\",\"ĠR B\",\"ĠBrother hood\",\"Ġskept ical\",\"f amily\",\"us k\",\"Ġemotion ally\",\"â Ļ\",\"ĠBet a\",\"ason able\",\"id ity\",\"ĠM ul\",\"Ġkick ing\",\"ĠC arm\",\"oll ah\",\"VERT IS\",\"ĠAt hen\",\"Ġlad der\",\"ĠBul let\",\"å £\",\"00 01\",\"ĠWild life\",\"ĠM ask\",\"ĠN an\",\"R ev\",\"Ġun acceptable\",\"leg al\",\"Ġcrowd ed\",\"ag i\",\"ĠC ox\",\"j e\",\"Ġmor ality\",\"Ġfu els\",\"Ġc ables\",\"Ġman kind\",\"ĠCarib bean\",\"Ġanch or\",\"Ġby te\",\"ĠO ften\",\"ĠO z\",\"Ġcraft ed\",\"Ġhistor ian\",\"ĠW u\",\"Ġtow ers\",\"ĠCitiz ens\",\"Ġhel m\",\"Ġcred entials\",\"Ġsing ular\",\"ĠJes se\",\"Ġtack les\",\"Ġcont empt\",\"Ġa fore\",\"ĠSh adows\",\"Ġn il\",\"Ġur gent\",\"app le\",\"bl ood\",\"Ġv on\",\"Ġoff line\",\"Ġbreat he\",\"Ġj umps\",\"Ġirre levant\",\"ox ic\",\"om al\",\"import ant\",\"J im\",\"Ġgl oves\",\"arm ing\",\"dep th\",\"Ġtal ents\",\"ook ie\",\"ĠS B\",\"Ġpal m\",\"uff s\",\"est a\",\"IG H\",\"Ġcan on\",\"ĠVer izon\",\"ĠP le\",\"Ġcou pled\",\"vel t\",\"Ġfundra ising\",\"ĠGet ting\",\"ĠD LC\",\"Ġmathemat ical\",\"ĠH S\",\"ĠCard inals\",\"te lling\",\"Ġspons ors\",\"Ġ Ï\",\"ĠBull s\",\"op tion\",\"Ġprop ose\",\"Ġmem orable\",\"Ġembr aced\",\"Ġdecl ining\",\"He alth\",\"ed a\",\"Ġ} ;\",\"Ġsp am\",\"m ile\",\"Ġpit cher\",\"ĠE ight\",\"Ġcar ing\",\"ut ic\",\"ro le\",\"Ġair line\",\"ernand ez\",\"ĠAth let\",\"Ġcert ification\",\"ux e\",\"rig er\",\"Ġem pir\",\"Ġsens ation\",\"Ġdis m\",\"Ġb olt\",\"Ġev olve\",\"H ouse\",\"Ġconsult ation\",\"ĠD uty\",\"Ġtou ches\",\"ĠN athan\",\"Ġf aint\",\"h ad\",\"\\\" (\",\"ĠCons umer\",\"ĠExt reme\",\"Ġ12 7\",\"ĠHer m\",\"ĠSac rament\",\"iz oph\",\"Ġanx ious\",\"ul ously\",\"Ġsoc ially\",\"ĠU TC\",\"Ġsol ving\",\"ĠLet ter\",\"Hist ory\",\"ed uc\",\"Pr ice\",\") );\",\"Ġrel oad\",\"am ic\",\"Ġp ork\",\"Ġdisc ourse\",\"Ġt ournaments\",\"ai ro\",\"ĠK ur\",\"ĠCost a\",\"Ġviol ating\",\"Ġinterf ere\",\"Ġrecre ational\",\"uff le\",\"Ġspe eches\",\"Ġneed ing\",\"Ġremem bers\",\"Ġcred ited\",\"n ia\",\"f ocused\",\"amer a\",\"Ġb ru\",\"um bs\",\"ĠCub an\",\"Ġpreced ing\",\"Ġnons ense\",\"ac ial\",\"Ġsmart phones\",\"ĠSt ories\",\"S ports\",\"ĠEmer gency\",\"oun cing\",\"ef ined\",\"Ġb er\",\"Ġconsult ing\",\"Ġm asters\",\"he astern\",\".\\\" [\",\"ĠRun ning\",\"Ġsus cept\",\"ĠF eng\",\"Americ a\",\"pr ises\",\"st itial\",\"ĠWeek ly\",\"ĠGreat er\",\"mod ules\",\"if ter\",\"G raphics\",\"ul er\",\"Ġwho lly\",\"Ġsupp ress\",\"Ġconce aled\",\"Ġhapp ily\",\"Ġaccept s\",\"ĠEn joy\",\"Ġr ivers\",\"ĠEx cept\",\"2 25\",\"ĠN HS\",\"ĠMc Connell\",\"Ġp ussy\",\"fer red\",\"ut able\",\"Ġatt ain\",\"Ġ> =\",\"Ġdepos its\",\"roph ic\",\"Ġnot orious\",\"ĠSh aw\",\"il itation\",\"Ġepid emic\",\"all ic\",\"Ġsmall est\",\"ov ich\",\"Ġaccess ories\",\"per ties\",\"Ġsur plus\",\"ĠMe ch\",\"Ġamb ig\",\"ĠImm igration\",\"Ġch im\",\"ev al\",\"Ġpract icing\",\"ĠMyster y\",\"Ġdom ains\",\"ĠSil icon\",\"app s\",\"Ġkilomet ers\",\"e a\",\"ĠSm ash\",\"Ġwarrant y\",\"Ġn ost\",\"s il\",\"re v\",\"J on\",\"ĠDub lin\",\"Ġtast es\",\"Ġb out\",\"g reat\",\"er ror\",\"Ġsw itches\",\"ĠB apt\",\"D O\",\"ok i\",\"Ġsour ced\",\"pro du\",\"Ġattach ment\",\"ĠIss ue\",\"ĠQuest ion\",\"Jo in\",\"Ġf itted\",\"Ġunlaw ful\",\"^ ^\",\"ere k\",\"Ġauthent ication\",\"Ġst ole\",\"Ġaccount ability\",\"l abel\",\"S earch\",\"Ġal beit\",\"atic an\",\"fund ed\",\"ĠAdd ing\",\"ĠI Q\",\"Ġsub mar\",\"l it\",\"a que\",\"ĠLear ning\",\"Ġint eger\",\"M aster\",\"ĠCh rom\",\"Ġprem ier\",\"O p\",\"ĠLi u\",\"Ġbl essed\",\"ĠGl obe\",\"ĠResp onse\",\"Ġlegit im\",\"ĠMer kel\",\"Ġdispos al\",\"Â ´\",\"Ġgau ge\",\"pe at\",\"Ġindu ced\",\"Ġquestion able\",\"arth y\",\"ĠV it\",\"ĠF eed\",\"U ntil\",\"U t\",\"worth y\",\"R Y\",\"ĠH erald\",\"ĠHam mer\",\"Ġmed al\",\"ĠR ivers\",\"ĠH ack\",\"Ġclar ify\",\"Ġtrack ed\",\"Ġautonom ous\",\"Ġten ant\",\"ĠQ atar\",\"er ie\",\"Ġgr im\",\"ĠMon itor\",\"Ġresist ant\",\"ĠSpe c\",\"ĠWell s\",\"N AS\",\"14 8\",\"Ġmin ers\",\"iot ics\",\"Ġmiss es\",\"11 6\",\"g ian\",\"g it\",\"ĠE yes\",\"p res\",\"Ġgrad uated\",\"Ġang el\",\"Ġsyn chron\",\"Ġefficient ly\",\"Ġtrans mitted\",\"H arry\",\"Ġglob ally\",\"EN CE\",\"ĠMont ana\",\"r aged\",\"ĠPre vention\",\"Ġp iss\",\"ĠL l\",\"Ġshe lf\",\"ĠB JP\",\"ĠTest ament\",\"ĠL ate\",\"ik er\",\"ĠH app\",\"ĠJul ian\",\"h all\",\"Ġsp ont\",\"Ġshut down\",\"Ġincons istent\",\"Ġsubscrib ers\",\"Ġske leton\",\"ĠNe braska\",\"Ġins pire\",\"ĠV oid\",\"F eed\",\"Ġang les\",\"ĠSpr ings\",\"Ġbench mark\",\"Ġvacc ines\",\"izoph ren\",\"se xual\",\"uff ed\",\"Ġsh ine\",\"ĠK ath\",\"Ġgest ure\",\"ine a\",\"Ġr ip\",\"Ġopp ression\",\"Ġcons cience\",\"b t\",\"ĠL um\",\"Ġinc idence\",\"ĠF a\",\"w r\",\"Ġmin eral\",\"ĠSp urs\",\"alk y\",\"Ġth under\",\"Ġop io\",\"Be ing\",\"ĠPal m\",\"Ġwas ted\",\"Ġl b\",\"i aries\",\"ĠIniti ative\",\"Ġcur ric\",\"Ġmark er\",\"ĠMc L\",\"Ġext ensions\",\"ĠP v\",\"ĠAr ms\",\"Ġoffer ings\",\"Ġdef enses\",\"Ġvend or\",\"Ġcontrad ict\",\"ĠCol in\",\"Ġredd it\",\"Ġper ipher\",\"12 2\",\"Ġs ins\",\"E dit\",\"IC T\",\"So ft\",\"ĠSh ah\",\"Ġadministr ator\",\"ĠT rip\",\"Ġporn ography\",\"Ġtu ition\",\"in ence\",\"ĠPro gress\",\"Ġcat alog\",\"Ġsu ite\",\"Ġh ike\",\"Ġreprodu ctive\",\"eng ine\",\"Ġd rought\",\"ĠNo ah\",\"Ġ2 30\",\"Ġd ude\",\"Ġrelax ed\",\"Ġpart ition\",\"Ġparticip ant\",\"Ġtel esc\",\"Ġfe as\",\"ĠF F\",\"own er\",\"Ġswe eping\",\"Ġl enses\",\"Ġmatch up\",\"ĠRe pl\",\"ourn als\",\"Ġcred ible\",\"Ġgrand mother\",\"Ġther mal\",\"Ġsubscrib ing\",\"Ġident ities\",\"col m\",\"U CT\",\"Ġreluct ant\",\"us ers\",\"ĠC ort\",\"Ġassist ed\",\"OS S\",\"ATION S\",\"IS H\",\"Ġpharm aceutical\",\"ic able\",\"ad ian\",\"ĠSon ic\",\"ĠF ury\",\"ĠM ong\",\"A H\",\"ĠPsych ology\",\"Ġph osph\",\"Ġtreat s\",\"Ń Ķ\",\"Ġstead ily\",\"ĠHell o\",\"Ġrel ates\",\"Ġcl ue\",\"Ex pl\",\"a uth\",\"Ġrev ision\",\"Ġe ld\",\"os ion\",\"Ġbr on\",\"14 4\",\"ri kes\",\"Ġmin es\",\"Ġblank et\",\"ĠF ail\",\"el ed\",\"ĠIm agine\",\"ĠPl anned\",\"a ic\",\"Re quest\",\"M ad\",\"ĠHor se\",\"ĠEag le\",\"Ġcap ac\",\"15 7\",\"Ġl ing\",\"ĠN ice\",\"ĠP arenthood\",\"min ster\",\"og s\",\"ens itive\",\"Not hing\",\"Ġcar n\",\"F in\",\"ĠP E\",\"Ġr ifles\",\"ĠL P\",\"S and\",\"Ġgui Active\",\"Ġtour ist\",\"C NN\",\"Ġunve iled\",\"Ġpredec essor\",\"} {\",\"u ber\",\"Ġoff shore\",\"Ġopt ical\",\"ĠR ot\",\"ĠPear l\",\"et on\",\"Ġst ared\",\"Ġfart her\",\"at ility\",\"cont in\",\"ĠG y\",\"ĠF oster\",\"ĠC oc\",\"ri ents\",\"Ġdesign ing\",\"ĠEconom y\",\"ON G\",\"W omen\",\"ĠN ancy\",\"er ver\",\"Ġmas cul\",\"Ġcasual ties\",\"Ġ2 25\",\"ĠS ullivan\",\"ĠCh oice\",\"Ġa ster\",\"w s\",\"Ġhot els\",\"Ġconsider ations\",\"Ġcou ch\",\"ĠSt rip\",\"ĠG n\",\"Ġmanip ulate\",\"l ied\",\"Ġsynt hetic\",\"Ġassault ed\",\"Ġoff enses\",\"ĠDra ke\",\"Ġim pe\",\"Oct ober\",\"ĠHer itage\",\"h l\",\"ĠBl air\",\"Un like\",\"Ġg rief\",\"Ġ4 50\",\"Ġopt ed\",\"Ġresign ation\",\"il o\",\"Ġver se\",\"ĠT omb\",\"Ġu pt\",\"Ġa ired\",\"ĠH ook\",\"ĠML B\",\"Ġassum es\",\"out ed\",\"ĠV ers\",\"Ġinfer ior\",\"Ġbund le\",\"ĠD NS\",\"ograp her\",\"Ġmult ip\",\"ĠSoul s\",\"Ġillust rated\",\"Ġtact ic\",\"Ġdress ing\",\"Ġdu o\",\"Con f\",\"Ġrel ent\",\"Ġc ant\",\"Ġscar ce\",\"Ġcand y\",\"ĠC F\",\"Ġaffili ated\",\"Ġspr int\",\"yl an\",\"ĠGarc ia\",\"Ġj unk\",\"Pr int\",\"ex ec\",\"C rit\",\"Ġport rait\",\"ir ies\",\"ĠOF F\",\"Ġdisp utes\",\"W R\",\"L ove\",\"ãģ Ħ\",\"ĠRe yn\",\"Ġh ipp\",\"op ath\",\"Ġflo ors\",\"ĠFe el\",\"Ġwor ries\",\"Ġsett lements\",\"ĠP os\",\"Ġmos que\",\"Ġfin als\",\"Ġcr ushed\",\"ĠPro bably\",\"ĠB ot\",\"ĠM ans\",\"ĠPer iod\",\"Ġsovere ignty\",\"Ġsell er\",\"Ġap ost\",\"Ġam ateur\",\"Ġd orm\",\"Ġconsum ing\",\"Ġarm our\",\"ĠRo ose\",\"Ġint ensive\",\"Ġelim inating\",\"ĠSun ni\",\"ĠAle ppo\",\"j in\",\"Ġadv ise\",\"p al\",\"ĠH alo\",\"Ġdes cent\",\"Ġsimpl er\",\"Ġbo oth\",\"ST R\",\"L ater\",\"ĠC ave\",\"== =\",\"Ġm ol\",\"Ġf ist\",\"Ġshot gun\",\"su pp\",\"Ġrob bery\",\"E ffect\",\"Ġobsc ure\",\"ĠProf essional\",\"Ġemb assy\",\"Ġmilit ant\",\"Ġinc arcer\",\"Ġgener ates\",\"Ġlaun ches\",\"Ġadministr ators\",\"Ġsh aft\",\"Ġcirc ular\",\"Ġfresh man\",\"ĠW es\",\"ĠJo el\",\"ĠD rew\",\"ĠDun can\",\"ĠApp arently\",\"s ight\",\"ĠIntern al\",\"ĠInd ividual\",\"ĠF E\",\"Ġb ore\",\"ĠM t\",\"Ġbroad ly\",\"ĠO ptions\",\"ount ain\",\"ip es\",\"ĠV ideos\",\"20 4\",\"Ġh ills\",\"Ġsim ulation\",\"Ġdisappoint ment\",\"it an\",\"ĠLabor atory\",\"Ġup ward\",\"Ġbound ary\",\"Ġdark er\",\"h art\",\"Ġdomin ance\",\"C ong\",\"ĠOr acle\",\"ĠL ords\",\"Ġscholars hip\",\"ĠVin cent\",\"ed e\",\"ĠR ah\",\"Ġencour ages\",\"ro v\",\"Ġqu o\",\"Ġprem ise\",\"ĠCris is\",\"ĠHol ocaust\",\"Ġrhyth m\",\"Ġmet ric\",\"cl ub\",\"Ġtransport ed\",\"Ġn od\",\"ĠP ist\",\"Ġancest ors\",\"ĠFred er\",\"th umbnails\",\"ĠC E\",\"ON D\",\"Ph il\",\"ven ge\",\"ĠProduct s\",\"cast le\",\"Ġqual ifying\",\"ĠK aren\",\"VERTIS EMENT\",\"Ġmight y\",\"Ġexplan ations\",\"Ġfix ing\",\"D i\",\"Ġdecl aring\",\"Ġanonym ity\",\"Ġju ven\",\"ĠN ord\",\"ĠDo om\",\"ĠAct ually\",\"O k\",\"ph is\",\"ĠDes ert\",\"Ġ11 6\",\"I K\",\"ĠF M\",\"Ġinc omes\",\"V EL\",\"ok ers\",\"Ġpe cul\",\"Ġlight weight\",\"g ue\",\"Ġacc ent\",\"Ġincre ment\",\"ĠCh an\",\"Ġcompl aining\",\"ĠB aghd\",\"Ġmidfield er\",\"Ġover haul\",\"Pro cess\",\"ĠH ollow\",\"ĠTit ans\",\"Sm all\",\"man uel\",\"ĠUn ity\",\"ĠEv ents\",\"S ty\",\"Ġdispro portion\",\"n esty\",\"en es\",\"ĠC od\",\"Ġdemonstr ations\",\"ĠCrim son\",\"ĠO H\",\"Ġen rolled\",\"Ġc el\",\"ĠBre tt\",\"Ġa ide\",\"Ġhe els\",\"Ġbroad band\",\"Ġmark ing\",\"Ġw izard\",\"ĠN J\",\"ĠChief s\",\"Ġingred ient\",\"Ġd ug\",\"ĠSh ut\",\"urch ase\",\"end or\",\"Ġfar mer\",\"ĠGold man\",\"12 9\",\"15 5\",\"Or der\",\"Ġl ion\",\"i ably\",\"Ġst ain\",\"ar ray\",\"ilit ary\",\"ĠFA Q\",\"Ġexpl oded\",\"ĠMcC arthy\",\"ĠT weet\",\"ĠG reens\",\"ek ing\",\"l n\",\"ens en\",\"Ġmotor cycle\",\"Ġpartic le\",\"Ġch olesterol\",\"B ron\",\"Ġst air\",\"Ġox id\",\"Ġdes irable\",\"ib les\",\"Ġthe or\",\"for cing\",\"Ġpromot ional\",\"ov o\",\"b oot\",\"ĠBon us\",\"raw ling\",\"Ġshort age\",\"ĠP sy\",\"Ġrecru ited\",\"Ġinf ants\",\"Ġtest osterone\",\"Ġded uct\",\"Ġdistinct ive\",\"Ġfirm ware\",\"bu ilt\",\"14 5\",\"Ġexpl ored\",\"Ġfact ions\",\"Ġv ide\",\"Ġtatt oo\",\"Ġfinan cially\",\"Ġfat igue\",\"Ġproceed ing\",\"const itutional\",\"Ġmis er\",\"Ġch airs\",\"gg ing\",\"ipp le\",\"Ġd ent\",\"Ġdis reg\",\"ç Ķ\",\"st ant\",\"ll o\",\"b ps\",\"aken ing\",\"Ġab normal\",\"ĠE RA\",\"å£ «\",\"ĠH BO\",\"ĠM AR\",\"Ġcon cess\",\"Ġserv ant\",\"Ġas pir\",\"l av\",\"ĠPan el\",\"am o\",\"Ġprec ip\",\"Ġrecord ings\",\"Ġproceed ed\",\"Ġcol ony\",\"ĠT ang\",\"ab lo\",\"Ġstri pped\",\"Le ft\",\"to o\",\"Ġpot atoes\",\"Ġfin est\",\"% ).\",\"Ġc rap\",\"ĠZ ach\",\"ab ases\",\"ĠG oth\",\"Ġbillion aire\",\"w olf\",\"Ġsan ction\",\"S K\",\"Ġlog ged\",\"P o\",\"ey ed\",\"un al\",\"Ġcr icket\",\"Ġarm ies\",\"Ġunc overed\",\"Cl oud\",\"Ã³ n\",\"Ġreb ounds\",\"Ġm es\",\"O per\",\"P ac\",\"Ġnation ally\",\"Ġinsert ed\",\"p ict\",\"Ġgovern ance\",\"Ð ¸\",\"Ġprivile ges\",\"G ET\",\"Ġfavor ites\",\"im ity\",\"Ġlo ver\",\"the m\",\"em pl\",\"Ġgorge ous\",\"An n\",\"Ġsl ipped\",\"Ġve to\",\"B ob\",\"Ġsl im\",\"u cc\",\"ĠF ame\",\"udden ly\",\"Ġden ies\",\"ĠM aur\",\"Ġdist ances\",\"Ġw anna\",\"t ar\",\"ĠS ER\",\"Ġâ Ī\",\"Ġle mon\",\"at hetic\",\"Ġlit eral\",\"Ġdistingu ished\",\"Ġansw ering\",\"G I\",\"Ġrelig ions\",\"ĠPhil os\",\"ĠL ay\",\"Ġcomp os\",\"ire ments\",\"ĠK os\",\"ine z\",\"roll ing\",\"Ġyoung est\",\"and ise\",\"ĠB orn\",\"Ġalt ar\",\"am ina\",\"ĠB oot\",\"v oc\",\"Ġdig ging\",\"Ġpress ures\",\"Ġl en\",\"26 4\",\"Ġassass ination\",\"ĠBir mingham\",\"ĠMy th\",\"Ġsovere ign\",\"ĠArt ist\",\"ĠPhot ograph\",\"Ġdep icted\",\"Ġdisp ens\",\"orth y\",\"Ġamb ul\",\"int eg\",\"ĠC ele\",\"ĠTib et\",\"Ġhier archy\",\"Ġc u\",\"Ġpre season\",\"ĠPet erson\",\"Ġcol ours\",\"Ġworry ing\",\"Ġback ers\",\"ĠPal mer\",\"ĠÎ ¼\",\"Ġcontribut or\",\"Ġhear ings\",\"Ġur ine\",\"Ġ Ù\",\"ourge ois\",\"Sim ilar\",\"ĠZ immer\",\"s omething\",\"ĠUS C\",\"Ġstrength s\",\"ĠF I\",\"Ġlog ging\",\"As ked\",\"ĠTh ai\",\"in qu\",\"ĠW alt\",\"Ġcrew s\",\"it ism\",\"3 01\",\"Ġshar ply\",\"um ed\",\"Ġred irect\",\"r ators\",\"In f\",\"ĠWe apons\",\"Ġte asp\",\"19 99\",\"L ive\",\"ĠEs pecially\",\"ĠS ter\",\"ĠVeter ans\",\"Ġint ro\",\"other apy\",\"Ġmal ware\",\"Ġbre eding\",\"Ġmole cular\",\"ĠR oute\",\"ĠCom ment\",\"oc hem\",\"Ġa in\",\"Se ason\",\"Ġlineback er\",\"Ä «\",\"ĠEconom ics\",\"es ar\",\"ĠL ives\",\"ĠEm ma\",\"Ġk in\",\"ĠTer rit\",\"Ġpl anted\",\"ot on\",\"ĠBut ter\",\"ĠSp ons\",\"P ER\",\"Ġdun geon\",\"Ġsymb olic\",\"Ġfil med\",\"Ġdi ets\",\"Ġconclud es\",\"Ġcertain ty\",\"ĠForm at\",\"Ġstr angers\",\"form at\",\"ĠPh ase\",\"Ġcop ied\",\"Ġmet res\",\"ld a\",\"ĠUs ers\",\"Ġdeliber ate\",\"Ġwas hed\",\"ĠL ance\",\"im ation\",\"Ġimpro per\",\"ĠGen esis\",\"ick r\",\"ĠK ush\",\"Ġreal ise\",\"Ġembarrass ing\",\"alk ing\",\"b ucks\",\"Ġver ified\",\"Ġout line\",\"year s\",\"ĠIn come\",\"20 2\",\"Ġz ombies\",\"F inal\",\"ĠMill enn\",\"Ġmod ifications\",\"ĠV ision\",\"ĠM oses\",\"ver b\",\"iter ranean\",\"ĠJ et\",\"Ġnav al\",\"ĠA gg\",\"Ġur l\",\"Ġvict ories\",\"Ġnon etheless\",\"Ġinj ust\",\"ĠF act\",\"ç ļ\",\"Ġins ufficient\",\"re view\",\"face book\",\"Ġnegoti ating\",\"Ġguarant ees\",\"im en\",\"uten berg\",\"Ġg ambling\",\"Ġcon gr\",\"Load ing\",\"Ġnever theless\",\"Ġpres idents\",\"ĠIndust rial\",\"Ġ11 8\",\"Ġp oured\",\"ĠT ory\",\"Ġ17 5\",\"Ġ: =\",\"Sc ott\",\"ange red\",\"T ok\",\"Ġorgan izers\",\"M at\",\"ĠG rowth\",\"Ġad ul\",\"Ġens ures\",\"Ġ11 7\",\"é¾į å\",\"Ġmass acre\",\"Ġgr ades\",\"be fore\",\"AD VERTISEMENT\",\"ĠSl ow\",\"ĠM MA\",\"âĢĶ \\\"\",\"ĠV atican\",\"Q aeda\",\"Ġo we\",\"66 66\",\"ĠS orry\",\"ĠGr ass\",\"Ġbackground s\",\"Ġexha usted\",\"Ġcl an\",\"Ġcomprom ised\",\"ĠE lf\",\"ĠIsa ac\",\"ens on\",\"In vest\",\"IF A\",\"Ġinterrupt ed\",\"ãĥī ãĥ©\",\"Ġtw isted\",\"ĠDrag ons\",\"M ode\",\"ĠK remlin\",\"Ġfert il\",\"he res\",\"ph an\",\"ĠN ode\",\"f ed\",\"ĠOr c\",\"Ġunw illing\",\"C ent\",\"Ġprior it\",\"Ġgrad uates\",\"Ġsubject ive\",\"Ġiss uing\",\"ĠL t\",\"Ġview er\",\"Ġw oke\",\"Th us\",\"bro ok\",\"Ġdep ressed\",\"Ġbr acket\",\"ĠG or\",\"ĠFight ing\",\"Ġstri ker\",\"Rep ort\",\"ĠPortug al\",\"Ġne o\",\"w ed\",\"19 9\",\"Ġflee ing\",\"sh adow\",\"ident ified\",\"US E\",\"Ste am\",\"Ġstret ched\",\"Ġrevel ations\",\"art ed\",\"ĠD w\",\"Ġalign ment\",\"est on\",\"ĠJ ared\",\"S ep\",\"Ġblog s\",\"up date\",\"g om\",\"r isk\",\"Ġcl ash\",\"ĠH our\",\"Ġrun time\",\"Ġunw anted\",\"Ġsc am\",\"Ġr ack\",\"Ġen light\",\"on est\",\"ĠF err\",\"Ġconv ictions\",\"Ġp iano\",\"Ġcirc ulation\",\"ĠW elcome\",\"Ġback lash\",\"ĠW ade\",\"Ġrece ivers\",\"ot ive\",\"J eff\",\"Ġnetwork ing\",\"ĠPre p\",\"ĠExpl orer\",\"Ġlect ure\",\"Ġupload ed\",\"ĠMe at\",\"B LE\",\"ĠNaz is\",\"ĠSy nd\",\"st ud\",\"ro ots\",\"ri ans\",\"Ġportray ed\",\"Ġ ??\",\"ĠBudd ha\",\"s un\",\"Rober t\",\"ĠCom plex\",\"Ġover see\",\"Ġste alth\",\"T itle\",\"ĠJ obs\",\"ĠK um\",\"Ġappreci ation\",\"ĠM OD\",\"Ġbas ics\",\"Ġcl ips\",\"Ġnurs ing\",\"Ġpropos ition\",\"Ġreal ised\",\"ĠNY C\",\"Ġall ocated\",\"ri um\",\"ar an\",\"ĠPro duction\",\"ĠV ote\",\"Ġsm ugg\",\"Ġhun ter\",\"az er\",\"ĠCh anges\",\"Ġfl uct\",\"y on\",\"Ar ray\",\"Ġk its\",\"W ater\",\"Ġuncom mon\",\"Ġrest ing\",\"ell s\",\"w ould\",\"Ġpurs ued\",\"Ġassert ion\",\"omet own\",\"ĠMos ul\",\"ĠPl atform\",\"io let\",\"Ġshare holders\",\"Ġtra ils\",\"P ay\",\"ĠEn forcement\",\"ty pes\",\"ĠAn onymous\",\"Ġsatisf ying\",\"il ogy\",\"Ġ( '\",\"w ave\",\"c ity\",\"Ste ve\",\"Ġconfront ation\",\"ĠE ld\",\"C apt\",\"ah an\",\"ht m\",\"ĠC trl\",\"ON S\",\"2 30\",\"if a\",\"hold ing\",\"Ġdelic ate\",\"Ġj aw\",\"ĠGo ing\",\"or um\",\"S al\",\"Ġd ull\",\"ĠB eth\",\"Ġpr isons\",\"Ġe go\",\"ĠEl sa\",\"avor ite\",\"ĠG ang\",\"ĠN uclear\",\"Ġsp ider\",\"ats u\",\"Ġsam pling\",\"Ġabsor bed\",\"ĠPh arm\",\"iet h\",\"Ġbuck et\",\"ĠRec omm\",\"O F\",\"ĠF actory\",\"AN CE\",\"Ġb acter\",\"H as\",\"ĠObs erv\",\"12 1\",\"Ġprem iere\",\"De velop\",\"Ġcur rencies\",\"C ast\",\"Ġaccompany ing\",\"ĠNash ville\",\"Ġfat ty\",\"ĠBre nd\",\"Ġloc ks\",\"Ġcent ered\",\"ĠU T\",\"augh s\",\"or ie\",\"ĠAff ordable\",\"v ance\",\"D L\",\"em et\",\"Ġthr one\",\"ĠBlu etooth\",\"Ġn aming\",\"if ts\",\"AD E\",\"Ġcorrect ed\",\"Ġprompt ly\",\"ĠST R\",\"Ġgen ome\",\"Ġcop e\",\"Ġval ley\",\"Ġround ed\",\"ĠK end\",\"al ion\",\"p ers\",\"Ġtour ism\",\"Ġst ark\",\"v l\",\"Ġblow ing\",\"ĠSche dule\",\"st d\",\"Ġunh appy\",\"Ġlit igation\",\"ced es\",\"Ġand roid\",\"Ġinteg ral\",\"ere rs\",\"ud ed\",\"t ax\",\"Ġre iter\",\"ĠMot ors\",\"oci ated\",\"Ġwond ers\",\"ĠAp ost\",\"uck ing\",\"ĠRoose velt\",\"f ram\",\"Ġyield s\",\"Ġconstit utes\",\"aw k\",\"Int erest\",\"Ġinter im\",\"Ġbreak through\",\"ĠC her\",\"Ġpro sec\",\"ĠD j\",\"ĠM T\",\"Res p\",\"ĠP T\",\"Ġs perm\",\"ed it\",\"B T\",\"Lin ux\",\"count ry\",\"le ague\",\"Ġd ick\",\"Ġo ct\",\"Ġinsert ing\",\"Ġsc ra\",\"ĠBrew ing\",\"Ġ19 66\",\"Ġrun ners\",\"Ġpl un\",\"id y\",\"ĠD ian\",\"Ġdys function\",\"Ġex clusion\",\"Ġdis gr\",\"Ġincorpor ate\",\"Ġrecon c\",\"Ġnom inated\",\"ĠAr cher\",\"d raw\",\"achel or\",\"Ġwrit ings\",\"Ġshall ow\",\"Ġh ast\",\"ĠB MW\",\"ĠR S\",\"Ġth igh\",\"Ġ19 63\",\"Ġl amb\",\"Ġfav ored\",\"ag le\",\"Ġcool er\",\"ĠH ours\",\"ĠG U\",\"ĠOrig in\",\"Ġglim pse\",\"---------------- ----\",\"L im\",\"Ġche ek\",\"Ġj ealous\",\"- '\",\"Ġhar ness\",\"ĠPo ison\",\"Ġdis abilities\",\"ne apolis\",\"Ġout look\",\"Ġnot ify\",\"ĠIndian apolis\",\"Ġab rupt\",\"ns ic\",\"Ġenc rypted\",\"Ġfor fe\",\"reat h\",\"Ġr abb\",\"Ġfound ations\",\"Ġcompl iment\",\"ĠInter view\",\"ĠS we\",\"Ġad olesc\",\"Ġmon itors\",\"ĠSacrament o\",\"Ġtime ly\",\"Ġcontem pl\",\"Ġposition ed\",\"Ġpost ers\",\"ph ies\",\"iov ascular\",\"v oid\",\"ĠFif th\",\"Ġinvestig ative\",\"OU N\",\"Ġinteg rate\",\"ĠIN C\",\"ish a\",\"ibl ings\",\"ĠRe quest\",\"ĠRodrig uez\",\"Ġsl ides\",\"ĠD X\",\"Ġfemin ism\",\"Ġdat as\",\"Ġb end\",\"ir us\",\"ĠNig eria\",\"F ox\",\"Ch ange\",\"Ġair plane\",\"ĠLad en\",\"Ġpublic ity\",\"ixt y\",\"Ġcommit ments\",\"Ġaggreg ate\",\"Ġdisplay ing\",\"ĠAr row\",\"Ġ12 2\",\"Ġrespect s\",\"and roid\",\"s ix\",\"ĠSh a\",\"Ġrest oration\",\") \\\\\",\"W S\",\"oy s\",\"Ġillust rate\",\"with out\",\"12 6\",\"ĠâĶ Ĥ\",\"Ġpick up\",\"n els\",\"Ġ ....\",\"f ood\",\"ĠF en\",\") ?\",\"Ġphenomen a\",\"Ġcompan ions\",\"ĠW rite\",\"Ġsp ill\",\"Ġbr idges\",\"ĠUp dated\",\"ĠF o\",\"Ġinsect s\",\"ASH INGTON\",\"Ġsc are\",\"il tr\",\"ĠZh ang\",\"Ġsever ity\",\"Ġind ul\",\"14 9\",\"ĠCo ffee\",\"Ġnorm s\",\"Ġp ulse\",\"ĠF T\",\"Ġhorr ific\",\"ĠDest roy\",\"ĠJ SON\",\"Ġo live\",\"Ġdiscuss es\",\"R est\",\"E lect\",\"ĠW inn\",\"ĠSurv iv\",\"ĠH ait\",\"S ure\",\"op ed\",\"Ġro oted\",\"ĠS ke\",\"ĠBron ze\",\"Ġl ol\",\"Def ault\",\"Ġcommod ity\",\"red ited\",\"Ġliber tarian\",\"Ġforb idden\",\"Ġgr an\",\"à ¨\",\"Ġl ag\",\"en z\",\"dri ve\",\"Ġmathemat ics\",\"Ġw ires\",\"Ġcrit ically\",\"Ġcarb ohyd\",\"ĠChance llor\",\"ĠEd die\",\"Ġban ning\",\"ĠF ri\",\"Ġcompl ications\",\"et ric\",\"ĠBangl adesh\",\"Ġband width\",\"St op\",\"ĠOrig inally\",\"Ġhalf way\",\"yn asty\",\"sh ine\",\"Ġt ales\",\"rit ies\",\"av ier\",\"Ġspin ning\",\"ĠWH O\",\"Ġneighbour hood\",\"b ach\",\"Ġcommer ce\",\"ĠS le\",\"B U\",\"Ġentreprene ur\",\"Ġpecul iar\",\"ĠCom ments\",\"f re\",\"3 20\",\"IC S\",\"Ġimag ery\",\"ĠCan on\",\"ĠElect ronic\",\"sh ort\",\"( (\",\"D ig\",\"Ġcomm em\",\"u ced\",\"Ġincl ined\",\"ĠSum mon\",\"Ġcl iff\",\"ĠMed iterranean\",\"Ġpo etry\",\"Ġprosper ity\",\"ĠRe ce\",\"Ġp ills\",\"m ember\",\"Ġfin ale\",\"un c\",\"ĠG ig\",\"ä ½\",\"Ġl od\",\"Ġback ward\",\"- +\",\"ĠFor ward\",\"Ġth ri\",\"s ure\",\"Ġso ap\",\"ĠF X\",\"R ES\",\"ĠSe xual\",\"oul os\",\"Ġfool ish\",\"Ġright eous\",\"Ġco ff\",\"terror ism\",\"ust ain\",\"ot er\",\"Ġab uses\",\"ne xt\",\"Ġab usive\",\"Ġthere after\",\"Ġprohib ition\",\"ĠS UP\",\"Ġd ip\",\"Ġr ipped\",\"Ġinher ited\",\"Ġb ats\",\"st ru\",\"G T\",\"Ġflaw ed\",\"ph abet\",\"Ġf og\",\"do ors\",\"Ġim aging\",\"Ġdig its\",\"ĠHung ary\",\"Ġar rog\",\"Ġteach ings\",\"Ġprotocol s\",\"ĠB anks\",\"à ¸\",\"p ound\",\"ĠC urt\",\".\\\" )\",\". /\",\"Ġex emption\",\"end ix\",\"ĠM ull\",\"Ġimpro ves\",\"ĠG amer\",\"d imensional\",\"I con\",\"ĠMarg aret\",\"St atus\",\"d ates\",\"Ġint ends\",\"Ġdep ict\",\"Ġpark ed\",\"J oe\",\"ĠMar ines\",\"chn ology\",\"! ).\",\"Ġjud ged\",\"Ġwe ights\",\"R ay\",\"Ġapart ments\",\"he ster\",\"Ġrein force\",\"Ġoff ender\",\"occ up\",\"Ġs ore\",\"e pt\",\"ĠPH P\",\"ĠB row\",\"Ġauthor ization\",\"ĠR isk\",\"ĠDel aware\",\"ĠQ U\",\"Ġnot ifications\",\"Ġsun light\",\"Ġex clude\",\"d at\",\"Ġm esh\",\"ĠSud an\",\"Ġbelong ed\",\"Ġsub way\",\"Ġno on\",\"ĠInter ior\",\"ol ics\",\"ĠL akers\",\"Ġc oding\",\"Dis claimer\",\"Cal if\",\"O ld\",\"Ġdis l\",\"???? ?\",\"Ġconfir ms\",\"Ġrecruit ment\",\"Ġhom icide\",\"Cons ider\",\"ĠJeff rey\",\"ft y\",\"} ;\",\"Ġobject ion\",\"do ing\",\"ĠLe o\",\"W ant\",\"Ġgl ow\",\"ĠClar ke\",\"ĠNorm an\",\"Ġver ification\",\"Ġpack et\",\"ĠForm ula\",\"Ġpl ag\",\"es ville\",\"Ġshout ing\",\"Ġo v\",\"ĠR EC\",\"ĠB ub\",\"Ġn inth\",\"Ġener g\",\"Ġvalid ity\",\"Ġup s\",\"j ack\",\"Ġneighbor ing\",\"ĠN ec\",\"ew orks\",\"ĠH ab\",\"are z\",\"Ġsp ine\",\"Ġevent ual\",\"ĠLe aders\",\"ĠC arn\",\"Ġprob ation\",\"Ġrom ance\",\"ms g\",\"ĠMechan ical\",\"ER Y\",\"R ock\",\"Ġpart isan\",\"N ode\",\"ass ets\",\"min ent\",\"Ġforeign ers\",\"Ġtest ify\",\"ĠUs ually\",\"l ords\",\"ĠG ren\",\"ĠPow ell\",\"BI L\",\"Ġs r\",\"Ġadd ict\",\"Ġshell s\",\"Ġs igh\",\"ĠY ale\",\"tern ity\",\"Ġ7 50\",\"E U\",\"ĠR ifle\",\"Ġpat ron\",\"em a\",\"ĠB annon\",\"an ity\",\"Ġtrop ical\",\"ĠV II\",\"c ross\",\"Every thing\",\"ĠIS O\",\"Ġhum ble\",\"ass ing\",\"ĠF IG\",\"Ġupd ating\",\"ys on\",\"Ġcal cium\",\"Ġcompet ent\",\"Ġste ering\",\"Pro t\",\"ĠS Y\",\"ĠFin als\",\"ĠR ug\",\"15 9\",\"13 7\",\"ĠG olf\",\"Ġ12 6\",\"Ġaccommod ation\",\"ĠHug hes\",\"Ġaest hetic\",\"art isan\",\"ĠTw ilight\",\"Ġpr ince\",\"ĠAgric ulture\",\"ĠDis co\",\"Ġpreced ent\",\"Ġtyp ing\",\"author ized\",\"O ption\",\"ĠA ub\",\"l ishes\",\"ach t\",\"m ag\",\"P eter\",\"ĠU FO\",\"mont on\",\"ĠL ith\",\"Ġa rom\",\"Ġsec uring\",\"Ġconf ined\",\"priv ate\",\"Ġsw ords\",\"Ġmark ers\",\"Ġmetab olic\",\"se lect\",\"ĠCur se\",\"ĠO t\",\"g ressive\",\"Ġinc umb\",\"ĠS aga\",\"Ġpr iced\",\"Ġclear ance\",\"Cont ent\",\"Ġdr illing\",\"Ġnot ices\",\"Ġb ourgeois\",\"Ġv est\",\"Ġcook ie\",\"ĠGuard ians\",\"ry s\",\"in yl\",\"Ġ12 4\",\"Ġpl ausible\",\"on gh\",\"ĠOd in\",\"Ġconcept ion\",\"ĠY uk\",\"ĠBaghd ad\",\"ĠFl ag\",\"Aust ral\",\"ĠI BM\",\"Ġintern ationally\",\"ĠWiki Leaks\",\"I ED\",\"Ġc yn\",\"Ġcho oses\",\"ĠP ill\",\"Ġcomb ining\",\"Ġrad i\",\"ĠMoh ammed\",\"def ense\",\"atch ing\",\"Sub ject\",\"ic iency\",\"Fr ame\",\"Ġ{ \\\"\",\"Ġche ss\",\"Ġtim er\",\"19 0\",\"Ġt in\",\"Ġord inance\",\"emet ery\",\"Ġacc using\",\"Ġnotice able\",\"Ġcent res\",\"Ġl id\",\"ĠM ills\",\"img ur\",\"Ġz oom\",\"erg ic\",\"Ġcomp ression\",\"pr im\",\"f ind\",\"Ġsur g\",\"Ġp and\",\"ĠK ee\",\"ĠCh ad\",\"cell ence\",\"oy le\",\"Ġsocial ism\",\"ĠT ravis\",\"ĠM Hz\",\"Ġgu ild\",\"ALL Y\",\"ĠSub scribe\",\"ĠRel ated\",\"Ġoccur rence\",\"itch ing\",\"Ġfict ional\",\"Ġcr ush\",\"ĠE A\",\"c od\",\"m ix\",\"ĠTri ple\",\"Ġretrie ve\",\"Ġstimul us\",\"Ġpsych iat\",\"ĠDo or\",\"Ġhomosexual ity\",\"Ġelement ary\",\"Ġcell ular\",\"id ian\",\"ĠL aun\",\"Ġintrig uing\",\"Ġfo am\",\"ĠB ass\",\"id i\",\"its u\",\"Ġass ure\",\"Ġcongr at\",\"Ġbusiness man\",\"ĠBo ost\",\"cl ose\",\"Ġl ied\",\"Ġsc iences\",\"ĠO mega\",\"ĠG raphics\",\"Ġ< =\",\"sp oken\",\"Ġconnect ivity\",\"S aturday\",\"ĠAven gers\",\"Ġto ggle\",\"Ġank le\",\"Ġnational ist\",\"mod el\",\"ĠP ool\",\"ophob ia\",\"V ar\",\"ĠM ons\",\"ator ies\",\"Ġaggress ively\",\"C lear\",\"For ge\",\"act ers\",\"Ġhed ge\",\"Ġpip es\",\"Ġbl unt\",\"Ġs q\",\"Ġremote ly\",\"W ed\",\"as ers\",\"Ġref riger\",\"Ġt iles\",\"Ġresc ued\",\"Ġcompr ised\",\"ins ky\",\"Ġman if\",\"avan augh\",\"Ġprol ifer\",\"Ġal igned\",\"x ml\",\"Ġtri v\",\"Ġcoord ination\",\"ĠP ER\",\"ĠQu ote\",\"13 4\",\"b f\",\"ĠS aw\",\"Ġtermin ation\",\"Ġ19 0\",\"Ġadd itions\",\"Ġtri o\",\"Ġproject ions\",\"Ġpositive ly\",\"Ġin clusive\",\"Ġmem br\",\"19 90\",\"old er\",\"Ġpract iced\",\"ink le\",\"Ar ch\",\"Ġstar ters\",\"ari us\",\"Ġinter mediate\",\"ĠBen ef\",\"ĠK iller\",\"Ġinter ventions\",\"ĠK il\",\"ĠF lying\",\"In v\",\"Ġprem ature\",\"Ġpsych iatric\",\"Ġind ie\",\"Ġcoll ar\",\"ĠRain bow\",\"af i\",\"Ġdis ruption\",\"ĠFO X\",\"cast ing\",\"Ġmis dem\",\"c ro\",\"Ġw ipe\",\"ard on\",\"Ġb ast\",\"ĠTom my\",\"ĠRepresent ative\",\"Ġbell y\",\"ĠP O\",\"ĠBre itbart\",\"13 2\",\"Ġmess aging\",\"Sh ould\",\"Ref erences\",\"ĠG RE\",\"ist ical\",\"L P\",\"ĠC av\",\"ĠC razy\",\"Ġintu itive\",\"ke eping\",\"ĠM oss\",\"Ġdiscont in\",\"ĠMod ule\",\"Ġun related\",\"ĠPract ice\",\"ĠTrans port\",\"Ġstatist ically\",\"orn s\",\"Ġs ized\",\"p u\",\"Ġca f\",\"ĠWorld s\",\"ĠRod gers\",\"ĠL un\",\"ĠCom ic\",\"l iving\",\"Ġc ared\",\"Ġclim bed\",\") {\",\"Ġconsist ed\",\"Ġmed ieval\",\"fol k\",\"Ġh acked\",\"Ġd ire\",\"ĠHerm ione\",\"Ġt ended\",\"ce ans\",\"D aniel\",\"w ent\",\"Ġlegisl ators\",\"Ġred es\",\"g ames\",\"Ġg n\",\"am iliar\",\"Ġ+ +\",\"gg y\",\"th reat\",\"Ġmag net\",\"Ġper ceive\",\"Ġz ip\",\"Ġindict ment\",\"Ġcrit ique\",\"g ard\",\"ĠSaf e\",\"ĠC ream\",\"Ġad vent\",\"ob a\",\"Ġv owed\",\"ous ands\",\"Ġsk i\",\"Ġabort ions\",\"u art\",\"Ġstun ned\",\"Ġadv ancing\",\"Ġlack ed\",\"Ġ\\\\ \\\"\",\"Ġsch izophren\",\"Ġeleg ant\",\"Ġconf erences\",\"Ġcance led\",\"ĠHud son\",\"ĠHop efully\",\"Ġtr ump\",\"Ġfrequ encies\",\"Ġmet eor\",\"ĠJun ior\",\"ĠFle et\",\"ĠMal colm\",\"ĠT ools\",\"Ġ ........\",\"Ġh obby\",\"ĠEurope ans\",\"Ġ15 00\",\"ĠInt o\",\"Ġs way\",\"ĠApp ro\",\"ĠCom pl\",\"Comm unity\",\"Ġt ide\",\"ĠSum mit\",\"ä »\",\"Ġinter vals\",\"ĠE ther\",\"Ġhabit at\",\"ĠSteven s\",\"lish ing\",\"ĠDom ain\",\"Ġtrig gers\",\"Ġch asing\",\"Ġchar m\",\"ĠFl ower\",\"it ored\",\"Ġbless ing\",\"Ġtext ures\",\"F ive\",\"Ġliqu or\",\"R P\",\"F IN\",\"Ġ19 62\",\"C AR\",\"Un known\",\"Ġres il\",\"ĠL ily\",\"Ġabund ance\",\"Ġpredict able\",\"r ar\",\"Ġbull shit\",\"le en\",\"che t\",\"M or\",\"M uch\",\"ä ¹\",\"Ġemphas ized\",\"Ġcr ust\",\"Ġprim itive\",\"Ġenjoy able\",\"ĠPict ures\",\"Ġteam mate\",\"pl er\",\"ĠT ol\",\"ĠK ane\",\"Ġsummon ed\",\"th y\",\"ram a\",\"ĠH onda\",\"Ġreal izing\",\"Ġquick er\",\"Ġconcent rate\",\"cle ar\",\"Ġ2 10\",\"ĠErd ogan\",\"ar is\",\"Ġrespond s\",\"ĠB I\",\"Ġelig ibility\",\"Ġpus hes\",\"ĠId aho\",\"Ġagg rav\",\"Ġru ins\",\"ur ations\",\"Ġb ans\",\"Ġan at\",\"sh are\",\"Ġgr ind\",\"h in\",\"um en\",\"Ġut ilities\",\"ĠYan kees\",\"Ġdat abases\",\"ĠD D\",\"Ġdispl aced\",\"Ġdepend encies\",\"Ġstim ulation\",\"h un\",\"h ouses\",\"ĠP retty\",\"ĠRaven s\",\"ĠTOD AY\",\"Ġassoci ates\",\"Ġthe rape\",\"cl ed\",\"Ġde er\",\"Ġrep airs\",\"rent ice\",\"Ġrecept ors\",\"Ġrem ed\",\"ĠC e\",\"Ġmar riages\",\"Ġball ots\",\"ĠSold ier\",\"Ġhilar ious\",\"op l\",\"13 8\",\"Ġinherent ly\",\"Ġignor ant\",\"Ġb ounce\",\"ĠE aster\",\"REL ATED\",\"ĠCur rency\",\"E V\",\"ãĥ ŀ\",\"ĠLe ad\",\"Ġdece ased\",\"B rien\",\"ĠMus k\",\"J S\",\"Ġmer ge\",\"heart ed\",\"c reat\",\"m itt\",\"m und\",\"ĠâĢ ĭ\",\"ĠB ag\",\"Ġproject ion\",\"Ġj ava\",\"ĠStand ards\",\"ĠLeon ard\",\"Ġcoc onut\",\"ĠPop ulation\",\"Ġtra ject\",\"Ġimp ly\",\"Ġcur iosity\",\"ĠD B\",\"ĠF resh\",\"ĠP or\",\"Ġheav ier\",\"ne ys\",\"gom ery\",\"Ġdes erved\",\"Ġphr ases\",\"ĠG C\",\"Ġye ast\",\"d esc\",\"De ath\",\"Ġreb oot\",\"Ġmet adata\",\"IC AL\",\"Ġrep ay\",\"ĠInd ependence\",\"Ġsubur ban\",\"ical s\",\"Ġat op\",\"Ġall ocation\",\"gener ation\",\"ĠG ram\",\"Ġmoist ure\",\"Ġp ine\",\"ĠLiber als\",\"Ġa ides\",\"Ġund erest\",\"ĠBer ry\",\"Ġcere mon\",\"3 70\",\"ast rous\",\"ĠPir ates\",\"Ġt ense\",\"ĠIndust ries\",\"ĠApp eals\",\"ĠN ear\",\"Ġè£ı ç\",\"Ġlo vers\",\"ĠC AP\",\"ĠC raw\",\"Ġg iants\",\"Ġeffic acy\",\"E lement\",\"ĠBeh avior\",\"ĠToy ota\",\"Ġint est\",\"P riv\",\"A I\",\"Ġmaneu ver\",\"Ġperfect ion\",\"Ġb ang\",\"p aper\",\"r ill\",\"Ge orge\",\"b order\",\"in ters\",\"ĠS eth\",\"Ġcl ues\",\"ĠLe vi\",\"ĠRe venue\",\"14 7\",\"Ġv apor\",\"Ġfortun ate\",\"Ġthreat ens\",\"Ġve t\",\"Ġdepend ency\",\"ers ed\",\"art icle\",\"ĠBl izzard\",\"Ġch lor\",\"Ġmin us\",\"ĠB ills\",\"Ġcryptoc urrency\",\"Ġmetabol ism\",\"ter ing\",\"Ġp estic\",\"step s\",\"ĠTre asure\",\"ract ed\",\"ĠConst ant\",\"Ġtem p\",\"13 9\",\"ĠDet ective\",\"ur ally\",\"Ġrecover ing\",\"Ġcort ex\",\"Ġ14 4\",\"cl osed\",\"Ġprejud ice\",\"aun ted\",\"Ġstorm s\",\"ĠN OW\",\"Ġmach inery\",\"Add ress\",\"Ġcompe lled\",\"27 0\",\"Ġdesp air\",\"b ane\",\"Ġveget able\",\"Ġbed s\",\"Lear n\",\"Ġcolor ful\",\"Ġsp ike\",\"Ġmarg ins\",\"Ġsymp athy\",\"Ġworks hop\",\"ĠC BC\",\"S at\",\"Ġburn s\",\"ĠG ender\",\"Ġ12 9\",\"ĠC able\",\"Ġdeb ts\",\"ĠThe resa\",\"Ġreflect ing\",\"Ġa irst\",\"Ġr im\",\"ram id\",\"Ġweakness es\",\"W rit\",\"ogg le\",\"t i\",\"ĠCh arge\",\"Ġwe ighed\",\"Ġ( .\",\"Ġl aughter\",\"Ġrou ter\",\"ĠDemocr acy\",\"D ear\",\"Ġhas ht\",\"Ġd y\",\"Ġhint s\",\"run ning\",\"Ġfin ishes\",\"ar us\",\"M ass\",\"res ult\",\"asc us\",\"Ġv intage\",\"Ġcon qu\",\"Ġwild ly\",\"ac ist\",\"Ġl ingu\",\"Ġprot agonist\",\"st rom\",\"te enth\",\"ĠSol o\",\"m ac\",\"f illed\",\"Ġre nown\",\"it ives\",\"Ġmot ive\",\"ĠAnt ar\",\"ĠM ann\",\"ĠAd just\",\"Ġrock ets\",\"Ġtrou bling\",\"e i\",\"Ġorgan isms\",\"ass is\",\"Christ ian\",\"Ġ14 5\",\"ĠH ass\",\"Ġsw all\",\"Ġw ax\",\"ĠSurv ival\",\"V S\",\"ĠM urd\",\"v d\",\"stand ard\",\"Ġdrag ons\",\"Ġacceler ation\",\"r ational\",\"f inal\",\"Ġp aired\",\"ĠE thereum\",\"Ġinterf aces\",\"Ġres ent\",\"Ġartif acts\",\"Å «\",\"are l\",\"Ġcompet itor\",\"ĠNich olas\",\"ĠSur face\",\"c pp\",\"ĠT ot\",\"Ġeconom ically\",\"Ġorgan ised\",\"Ġen forced\",\"in ho\",\"Ġvar ieties\",\"Ġab dom\",\"ĠBa iley\",\"id av\",\"ĠSal v\",\"p aid\",\"Ġalt itude\",\"ess ert\",\"ĠG utenberg\",\"are a\",\"op oulos\",\"Ġprofess ors\",\"igg s\",\"ĠF ate\",\"he y\",\"Ġ3 000\",\"D ist\",\"Ġtw ins\",\"c ill\",\"ĠM aps\",\"Ġtra ps\",\"Ġwe ed\",\"ĠK iss\",\"Ġy oga\",\"Ġrecip ients\",\"ĠWest minster\",\"Ġpool s\",\"ĠWal mart\",\"18 8\",\"ĠSchool s\",\"att ack\",\"ĠAR M\",\"par agraph\",\"W arning\",\"j l\",\"Ġself ish\",\"anche z\",\"ĠHe ights\",\"F re\",\"ĠS oph\",\"Ġ --------------------------------\",\"t ml\",\"33 3\",\"Ġraid s\",\"Ġsatell ites\",\"KE Y\",\"Ġlast s\",\"Ñ Ĥ\",\"In s\",\"ĠD ame\",\"Ġunp redict\",\"// /\",\"gh ai\",\"Ġart illery\",\"Ġcru ise\",\"Ġg el\",\"ĠCabin et\",\"Ġbl ows\",\"ĠE sp\",\"Ġprox imity\",\"ot he\",\"ĠSk ills\",\"ĠU pper\",\"ob o\",\"ĠN DP\",\"Ġenjoy s\",\"Ġrepe ating\",\"ĠConst ruction\",\"ĠQuest ions\",\"H illary\",\"Ġu int\",\"Ġprocess ors\",\"ĠGib son\",\"ĠMult iple\",\"q a\",\"ĠB om\",\"ĠM iles\",\"vent ional\",\"Ġhur ts\",\"s kin\",\"ĠA IDS\",\"Ġadvis ers\",\"ĠR oot\",\"Ġmethod ology\",\"ĠD ale\",\"Ġdet on\",\"ĠKnow ledge\",\"sequ ently\",\"Ġ12 1\",\"Ġconnect s\",\"C y\",\"ĠD anger\",\"Ġcontribut ors\",\"ĠB ent\",\"Ġbr ass\",\"ĠGun s\",\"int o\",\"ĠFort une\",\"Ġbro ker\",\"bal ance\",\"Ġlength s\",\"Ġv ic\",\"Ġaver aging\",\"Ġappropri ately\",\"ĠCamer a\",\"Ġsand wich\",\"ĠCD C\",\"Ġcoord inate\",\"Ġnav ig\",\"Ġgood ness\",\"l aim\",\"Ġbra ke\",\"Ġextrem ist\",\"ĠW ake\",\"ĠM end\",\"ĠT iny\",\"ĠC OL\",\"ĠR F\",\"ĠD ual\",\"ĠW ine\",\"C ase\",\"Ġref ined\",\"Ġl amp\",\"L ead\",\"Ġb apt\",\"ĠCar b\",\"ĠS add\",\"ĠMin neapolis\",\"PD F\",\"Ear ly\",\"ĠH idden\",\"I ts\",\"ĠT IME\",\"Ġp ap\",\"Ġcommission ed\",\"ĠF ew\",\"ĠCol ts\",\"ĠB ren\",\"Ġbot hered\",\"Ġlike wise\",\"Ex per\",\"ĠSch w\",\"c ry\",\"n n\",\"ĠM itch\",\"im on\",\"M G\",\"b m\",\"UM P\",\"r ays\",\"Ġregist ry\",\"Ġ2 70\",\"ach ine\",\"re lla\",\"ant ing\",\"00 000\",\"Ġru ined\",\"sp ot\",\"Ġt a\",\"Ġmaxim ize\",\"Ġincon ven\",\"D ead\",\"H uman\",\"En abled\",\"ĠMar ie\",\"Ġch ill\",\"ĠParad ise\",\"Ġstar ring\",\"ĠLat ino\",\"ĠProt ocol\",\"ĠE VER\",\"Ġsuppl iers\",\"m essage\",\"ĠBro ck\",\"Ġser um\",\"âĸĪâĸĪ âĸĪâĸĪ\",\"Ġen comp\",\"Ġamb ition\",\"ues e\",\"Ġar rows\",\"And rew\",\"Ġanten na\",\"Ġ19 61\",\"ĠB ark\",\"Ġb ool\",\"ãĤ ª\",\"ĠSt orage\",\"Ġrail way\",\"Ġtoug her\",\"ĠC ad\",\"Ġwas hing\",\"P y\",\"' ]\",\"em bed\",\"ĠMem phis\",\"ack le\",\"Ġfam ously\",\"ĠF ortunately\",\"ov ies\",\"Ġmind set\",\"Ġsne ak\",\"ĠD h\",\"RA W\",\"ĠSim pson\",\"Ġliv est\",\"Ġland mark\",\"Ġc ement\",\"L ow\",\"Ġthr illed\",\"ĠCour se\",\"in el\",\"Ġch uck\",\"id ate\",\"gl obal\",\"Ġwh it\",\"Ġ ï¿½\",\"ad ays\",\"s ki\",\"ĠS V\",\"Ġvir uses\",\"30 6\",\"ĠResp ons\",\"Ġthe aters\",\"ĠBr anch\",\"ĠGene va\",\"ĠM K\",\"Ġunbel iev\",\"Ġcommun ist\",\"Orig inal\",\"ĠRe ceived\",\"ĠTrans fer\",\"ĠAr g\",\"In put\",\"ĠStr ategy\",\"Ġpal ace\",\"the ning\",\"D ri\",\"Ġsent encing\",\"umbn ail\",\"Ġp ins\",\"re cy\",\"Ġs iblings\",\"Get ting\",\"ĠB U\",\"ĠNorth west\",\"Ġprolong ed\",\"ĠSak ura\",\"C omb\",\"ĠB our\",\"Ġinadequ ate\",\"ĠK ash\",\"Ġus ername\",\"ĠImpro ve\",\"Ġbatt ling\",\"ĠM AC\",\"Ġcurric ulum\",\"Ġs oda\",\"ĠC annon\",\"Ġsens ible\",\"sp ons\",\"De cember\",\"Ġw icked\",\"ĠP engu\",\"Ġdict ators\",\"ĠHe arts\",\"og yn\",\"Ġsimilar ities\",\"ĠSt ats\",\"Ġh ollow\",\"it ations\",\"\\\": [\",\"Ġh over\",\"ĠList en\",\"s ch\",\"S und\",\"Ġc ad\",\"ĠPar ks\",\"Ġl ur\",\"Ġhy pe\",\"ĠL em\",\"N AME\",\"is ure\",\"Fr iday\",\"Ġshoot s\",\"Ġclos es\",\"Ġd b\",\"ĠR idge\",\"ĠDiff erent\",\"Ġrepl ies\",\"ĠBroad way\",\"op ers\",\"Ġint oler\",\"ĠZe us\",\"akes pe\",\"Ġpropri etary\",\"Ġrequest ing\",\"Ġcontro llers\",\"ĠM IN\",\"im edia\",\"be cca\",\"Ġexp ans\",\"Ġoil s\",\"B ot\",\"ĠCh and\",\"Ġpr inter\",\"Ġto pped\",\"ĠP OL\",\"ĠEar lier\",\"S ocial\",\"av in\",\"Ġdecre ases\",\"ĠSe b\",\"Ġspecific ations\",\"ĠBl ast\",\"ĠK urt\",\"Ġfre el\",\"B rown\",\"Ġdil ig\",\"ro e\",\"ĠPro blem\",\"ĠQu ad\",\"Ġdecent ral\",\"ĠV ector\",\"an ut\",\"Ġplug ins\",\"ĠGreg ory\",\"Ġfuck ed\",\"el ines\",\"ĠAmb assador\",\"t ake\",\"Ġcle ans\",\"ong yang\",\"An onymous\",\"st ro\",\"\\\" }\",\"al ine\",\"ĠO dd\",\"ĠE ug\",\"2 16\",\"Ġbo il\",\"ĠP owers\",\"Ġnurs es\",\"Ob viously\",\"ĠTechn ical\",\"Ġexceed ed\",\"OR S\",\"Ġextrem ists\",\"Ġtr aces\",\"ex pl\",\"Ġcom r\",\"ĠS ach\",\") /\",\"Ġm asks\",\"Ġsc i\",\"B on\",\"Ġreg ression\",\"we gian\",\"Ġadvis or\",\"it ures\",\"ĠV o\",\"ex ample\",\"ĠInst ruct\",\"Ġs iege\",\"Ġredu ctions\",\"pt r\",\"Ġstat utory\",\"Ġrem oves\",\"Ġp uck\",\"red its\",\"Ġbe e\",\"Ġsal ad\",\"Ġpromot ions\",\"ĠJosh ua\",\"with standing\",\"ET H\",\"ĠCh a\",\"im us\",\"Ġexpend iture\",\"aun ting\",\"Ġdelight ed\",\"Ġ15 5\",\"be h\",\"Ġcar pet\",\"ĠSp art\",\"Ġj ungle\",\"l ists\",\"Ġbull ying\",\"ĠNob el\",\"ĠGl en\",\"Ġreferen ced\",\"Ġintrodu ces\",\"se in\",\"Ġcho pped\",\"gl ass\",\"ĠW rest\",\"Ġneutral ity\",\"Ġâ Ļ\",\"Ġinvestig ator\",\"Ġshel ves\",\"Ġun constitutional\",\"Ġreprodu ction\",\"Ġmer chant\",\"m ia\",\"Ġmet rics\",\"Ġexplos ives\",\"ĠSon ia\",\"Ġbod ily\",\"Ġthick ness\",\"Ġpredomin antly\",\"ĠAb ility\",\"Ġmon itored\",\"IC H\",\"Ġ] .\",\"ĠMart inez\",\"Ġvis ibility\",\"Ġqu eries\",\"Ġgen ocide\",\"ĠWar fare\",\"Qu ery\",\"Ġstud ios\",\"Ġemb ry\",\"Ġcorrid or\",\"Ġclean ed\",\"com plete\",\"ĠM H\",\"Ġenroll ment\",\"ING S\",\"Ġimpact ed\",\"Ġdis astrous\",\"ĠY un\",\"ĠCl aire\",\"ĠBas ically\",\"y t\",\"uster ity\",\"Ġindirect ly\",\"w ik\",\"Ġd od\",\"ĠCar r\",\"Ġam p\",\"Ġprohib it\",\"ĠIn itial\",\"ĠR d\",\"ij i\",\"Ġeduc ate\",\"c orn\",\"i ott\",\"ĠBeaut y\",\"Ġdetect ive\",\"ĠCon n\",\"s ince\",\"Ġst agger\",\"Ġob ese\",\"Ġb ree\",\"olog ic\",\"is se\",\"walk er\",\"Ġbl ades\",\"Ġlaw ful\",\"fun c\",\"ĠBeh ind\",\"Ġappet ite\",\"Ġ( *\",\"Ġt ennis\",\"Ġoff spring\",\"Ġj ets\",\"Ġstruct ured\",\"Ġafore mentioned\",\"N ov\",\"Ġsc aling\",\"f ill\",\"Ġst ew\",\"Ġcur b\",\"ĠStep han\",\"ed In\",\"S F\",\"ob ic\",\"é ŃĶ\",\"ou g\",\"ĠM M\",\"Ġgen etically\",\"ope z\",\"13 6\",\"Ġu mb\",\"anc ers\",\"Ġcoh ort\",\"Ġmerch andise\",\"Ġimp osing\",\"ĠLegisl ature\",\"ĠArch ive\",\"iv ia\",\"ĠN aval\",\"Ġoff ences\",\"Ġmir acle\",\"Ġsn apped\",\"Ġf oes\",\"Ġextensive ly\",\"ĠR af\",\"Ġc ater\",\"ed ience\",\"K it\",\"ĠB in\",\"Ġrecomm ends\",\"ĠC ities\",\"Ġrig id\",\"ĠRE AD\",\"ĠNob le\",\"ĠT ian\",\"Ġcertific ates\",\"ant is\",\"o iler\",\"ĠBudd hist\",\"d id\",\"Ġsurvey ed\",\"Ġdown ward\",\"Ġprint s\",\"ĠMot ion\",\"ron ics\",\"ĠS ans\",\"oss ibly\",\"u ctions\",\"Ġcolon ies\",\"ĠDan ish\",\"un it\",\"Ġsp oil\",\"Ġadvis ory\",\"ber ries\",\"Pl an\",\"Ġspecific ation\",\"op hers\",\"ĠRes ource\",\"Ġsh irts\",\"prising ly\",\"commun ications\",\"Ġtriv ial\",\"Ġmention ing\",\"ise xual\",\"Ġsupp lements\",\"Ġsuper vision\",\"B P\",\"v or\",\"Ġw it\",\"Ġco oldown\",\"Ġplaint iff\",\"ĠReview s\",\"ĠS ri\",\"ĠM int\",\"ĠSug ar\",\"Ġafter ward\",\"ĠPri est\",\"ĠInvest ment\",\"og ene\",\"ĠT aking\",\"Ġstretch ing\",\"Ġinflamm ation\",\"ĠTe hran\",\"Ġl ining\",\"Ġfree zing\",\"ĠEnt ity\",\"Ġins piring\",\"spe cial\",\"pr ice\",\"Ġsu e\",\"ĠP orter\",\"oun ge\",\"ET A\",\"ĠD erek\",\"ĠLu is\",\"u o\",\"ym ph\",\"Ġex terior\",\"ih il\",\"ĠAsh ley\",\"in ator\",\"Ġnut rients\",\"ĠTh rones\",\"Ġfin ances\",\"ĠIn spect\",\"Ġspe cially\",\"ĠRequ ired\",\"ĠP TS\",\"ĠViol ence\",\"oint ed\",\"sh ots\",\"Ġex cerpt\",\"co on\",\"IN S\",\"ĠG ri\",\"Ġrecogn ised\",\"We ek\",\"You ng\",\"Ġv om\",\"is le\",\"ĠCur ry\",\"ĠBudd h\",\"Ġnot ebook\",\"Ġd urable\",\"/ ?\",\"ĠG ad\",\"ĠP upp\",\"Ġforg ive\",\"p ark\",\"Ġpersonal ities\",\"an alysis\",\"cl amation\",\"Ġelev ator\",\"Ġware house\",\"ĠR ole\",\"un n\",\"Ġillust ration\",\"ĠSc an\",\"Ġatmosp heric\",\"Im port\",\"AN C\",\"rict ed\",\"f u\",\"01 0\",\"Ġar che\",\"Ġreward ed\",\"akespe are\",\"Ġintern ally\",\"ĠR BI\",\"alk er\",\"Ġeleph ant\",\"ow itz\",\"ĠP izza\",\"Ġbip artisan\",\"Ã© s\",\"Ġslow ed\",\"ĠSt ark\",\"Ġover ride\",\"OU S\",\"Ġ3 20\",\"undred s\",\"ĠDe ck\",\"ĠC ensus\",\"be e\",\"14 6\",\"ot or\",\"Ġ ip\",\"Ġu b\",\"oc ations\",\"ĠBut ton\",\"r ice\",\"Ġc ripp\",\"ff f\",\"Ġorig inated\",\"Ġoverwhel med\",\"app a\",\"Ġfore most\",\"âĢ ĳ\",\"ĠL EG\",\"re lease\",\"eat ured\",\"at ches\",\"Ġre ps\",\"Ġl ending\",\"ĠRe ference\",\"ĠCl ient\",\"16 5\",\"vent h\",\"Com plete\",\"ĠPat rol\",\"Ġsw orn\",\"c am\",\"Ġshut tle\",\"ĠR alph\",\"Ġh ometown\",\"- ,\",\"on al\",\"ĠB P\",\"å ı\",\"Ġpersu ade\",\"ĠAlex and\",\"Ġcomb ines\",\"Ġv ivid\",\"ĠL ag\",\"Ġenc oding\",\"Ġsal vation\",\"w en\",\"ĠRec overy\",\"i ya\",\"Un iversity\",\"ĠB iden\",\"Ġbud gets\",\"ĠTex ans\",\"f its\",\"Ġhon ored\",\"Ġp ython\",\"T D\",\"## #\",\"cl one\",\"Ġbl ink\",\"ĠL iquid\",\"Ġunemploy ed\",\"Ġcl ashes\",\"ĠCoun sel\",\"Ġdirect ing\",\"Ġpun ct\",\"ĠFal cons\",\"Ġsh ark\",\"ĠDam ascus\",\"Ġje ans\",\"Ġemb ark\",\"Ġse ize\",\"Ġup wards\",\"2 80\",\"ĠE z\",\"ĠAny thing\",\"Ġex otic\",\"l ower\",\"ĠCreat or\",\"ĠU m\",\"Ġsubur bs\",\"ber ger\",\"ĠW end\",\"Ġm int\",\"ĠX X\",\"ĠD ro\",\"Ġsuff ers\",\"Ġher b\",\"t ree\",\"Ġfrag ile\",\"Ġflood ed\",\"ĠAl cohol\",\"ole an\",\"ny der\",\"ĠK O\",\"F ram\",\"Ġ13 6\",\"Ġow ed\",\"ĠMe lee\",\"ĠH ash\",\"Ġwh isk\",\"Ġsu do\",\"r r\",\"Qu ick\",\"app ro\",\"Ġi i\",\"ĠEx amples\",\"he e\",\"Ġpromot es\",\"per ature\",\"k ar\",\"ĠHon or\",\"Ġs odium\",\"ĠL if\",\"ros so\",\"intend ent\",\"Ġcorrespond ent\",\"F ound\",\"sec ret\",\"Ġident ifies\",\"ag ne\",\"Ġl ou\",\"ĠP P\",\"Ġcoinc idence\",\"m ove\",\"Ġmilit ia\",\"Ġinf iltr\",\"ĠPrim ary\",\"Ġpitch ing\",\"ĠI b\",\"ĠGO OD\",\"ãĤ ¸\",\"ĠW izards\",\"ir al\",\"ĠVen us\",\"R R\",\"ĠâĢ ķ\",\"ĠCase y\",\"Ġsad ly\",\"Ġadm ire\",\"Ġembarrass ed\",\"c b\",\"M el\",\"Ġtub es\",\"Ġbeaut ifully\",\"ĠQueens land\",\"Bel ow\",\"re z\",\"qu et\",\"ple asant\",\"ĠÂ «\",\"C amp\",\"Ġdec isive\",\"19 98\",\"ĠL amb\",\"ut ton\",\"h n\",\"ĠJ agu\",\"au nder\",\"ĠC ord\",\"Ġcl erk\",\"Ġca ffe\",\"Ġwip ed\",\"Ġre im\",\"ĠMount ains\",\"Ġimprison ed\",\"Ġdevelop s\",\"ĠP ra\",\"Ġmodel ing\",\"Any one\",\"ance l\",\"ĠS it\",\"Ġshield s\",\"Ġl awn\",\"Ġcard iovascular\",\"Ġdemonstr ating\",\"Ġpar se\",\"ĠIsrael is\",\"Ġeuro s\",\"14 3\",\"Ġgl orious\",\"ins ki\",\"ec d\",\"Ġcondition ing\",\"Ġhel pless\",\"Ġmicro sc\",\"ĠHar bor\",\"Ġst akes\",\"Ġ2 60\",\"Ġun equ\",\"ĠFl oyd\",\"Ġd amp\",\"Ġappar atus\",\"ĠLaw s\",\"Ġcoun ters\",\"Ġindu ce\",\"at able\",\"ĠAh med\",\"Ġsl am\",\"N ovember\",\"Ġpers ist\",\"Ġim minent\",\"Ã¡ n\",\"Ġsh red\",\"Ġph ases\",\"ĠEd monton\",\"ĠArm strong\",\"ĠMe et\",\"ĠK itty\",\"Ñ Ģ\",\"c irc\",\"ĠAd ult\",\"Ġa rose\",\"ĠX en\",\"D an\",\"g ow\",\"Ġsuper f\",\"ĠAd mir\",\"Ġend ure\",\"Ġkey word\",\"yr us\",\"Ġy arn\",\"Ġpath way\",\"ĠHop kins\",\"mid t\",\"Ġcens orship\",\"d ependent\",\"Ġinstruct or\",\"S ources\",\"Ġto e\",\"Ġball oon\",\"N ob\",\"Ġsw ear\",\"ĠCast ro\",\"Ġgl oss\",\"ĠK avanaugh\",\"Ġremark ably\",\"Ph otos\",\"ĠN om\",\"ĠS outheast\",\"y ers\",\"Ġvalid ation\",\"Ġcann on\",\"ĠVict ory\",\"ĠPier re\",\"Ġcaut ious\",\"Aud io\",\"Ġf etch\",\"ĠG ift\",\"ĠH yp\",\"Ġrem edy\",\"Z E\",\"Ġsc ent\",\"Ġbe ard\",\"ĠR ut\",\"- \\\"\",\"Ġpat ents\",\"H y\",\"Ġun just\",\"Ġpot ato\",\"Ġforth coming\",\"Ġche f\",\"ĠR ift\",\"aff e\",\"ĠR OM\",\"ĠL aunch\",\"Ġp ads\",\"ĠNe o\",\"Ġon set\",\"Ġsquee ze\",\"s afe\",\"Ġpref ix\",\"ĠT M\",\"ĠN early\",\"ĠClin ical\",\"ĠM ental\",\"ot iation\",\"ĠUn ic\",\"ant ry\",\"ĠC ir\",\"Ġep it\",\"Ã ¦\",\"Ġextract ed\",\"verse ly\",\"ri ad\",\"Ġstr ains\",\"Ġto ps\",\"Ġpo em\",\"ĠRand y\",\"ĠMap le\",\"TH ER\",\"up iter\",\"ĠSS D\",\"ļ é\",\"Ġun con\",\"per ing\",\"Ġsle pt\",\"in ers\",\"Ġunder water\",\"ĠEv idence\",\"g one\",\"20 5\",\"Ġhistor ians\",\"Ġsynt hesis\",\"Ġf rog\",\"b asketball\",\"Ġvibr ant\",\"Ġsub ord\",\"Ġ3 65\",\"ĠD ial\",\"Ġcooper ate\",\"HA HA\",\"Ġgreet ed\",\"15 8\",\"Ġj azz\",\"Ġinto x\",\"ĠWalk ing\",\"Ġsuper visor\",\"ĠF usion\",\"ĠMer cedes\",\"s end\",\"H am\",\"s d\",\"n l\",\"Ġtour s\",\"ĠF IFA\",\"Ġcul p\",\"g d\",\"30 4\",\"Ġple as\",\"Ġillust rates\",\"ĠColomb ia\",\"Ġhighlight ing\",\"ĠSum mary\",\"Ġexp osing\",\"ĠD ru\",\"Ġir ony\",\"r itional\",\"ĠCar roll\",\"ĠEll is\",\"P ict\",\"ĠR apt\",\"Ġad apter\",\"Ġun m\",\"Ġcor pse\",\"Ġceleb rities\",\"D en\",\"at um\",\"ĠAp ocalypse\",\"ĠW ag\",\"lin ing\",\"Ġhorm ones\",\"R ub\",\"ĠX i\",\"ĠV aults\",\"20 8\",\"alky rie\",\"inos aur\",\"Ġfeed s\",\"v ity\",\"Ġdefe ating\",\"W ait\",\"Ġemphas ize\",\"ĠSteel ers\",\"yr inth\",\"le ys\",\"ĠWhe never\",\"Current ly\",\"ĠCl ock\",\"Ġcollect ively\",\"any on\",\"ĠJ P\",\"Ġment ality\",\"Ġdownload s\",\"Ġsurround ings\",\"ĠBarn es\",\"Ġflags hip\",\"Ġindic ators\",\"Ġgra pp\",\"Jan uary\",\"ĠElement al\",\"ĠAthen a\",\"ib al\",\"Ġs ights\",\"Ġcap ita\",\"ĠTreat y\",\"Ġvo iced\",\"ĠG az\",\"let te\",\"Ġy a\",\"Ġexp ired\",\"Leg end\",\"H ot\",\"n ature\",\"Ġunst able\",\"Ġ2 80\",\"Ã º\",\"Com ment\",\"AL E\",\"Ġquest s\",\"Ġhand ler\",\"n is\",\"Ġvers atile\",\"Ġconce al\",\"enge ance\",\"ĠInter active\",\"Ġobs essed\",\"ĠDog s\",\"Ġcr acked\",\"S ound\",\"s v\",\"ĠD ylan\",\"ro ads\",\"f x\",\"ĠCath olics\",\"ĠH ag\",\"Ġsl ammed\",\"Ġgl owing\",\"s ale\",\"Ġtiss ues\",\"ĠCh i\",\"ne e\",\"Ġc her\",\"s ic\",\"ur rection\",\"Ġb acon\",\"ul atory\",\") .\\\"\",\"Ġir regular\",\"FOR M\",\"ass ed\",\"Ġintention al\",\"Ġcompens ate\",\"ĠSpe aking\",\"ĠS ets\",\"15 3\",\"Ġconvent ions\",\"b ands\",\"em ade\",\"Ġe cc\",\"ĠWin ston\",\"ĠAssass in\",\"ĠBelg ian\",\"Ġdepend ence\",\"Ġnic he\",\"Ġb ark\",\"ĠJ azz\",\"Ġdisadvant age\",\"Ġgas oline\",\"Ġ16 5\",\"çļ Ħ\",\"ess a\",\"mod ule\",\"ang ular\",\"O Y\",\"ĠTreat ment\",\"it as\",\"ol ation\",\"ĠArn old\",\"Ġfe ud\",\"ĠN est\",\"Ġthe atre\",\"ew ater\",\"Ġmin ors\",\"olic y\",\"ĠH aven\",\"div ision\",\"Ġtr unk\",\"F ar\",\"ĠP ull\",\"Ġcapt uring\",\"Ġ18 00\",\"ĠTe en\",\"Ġex empl\",\"Ġclin ics\",\"ĠB urg\",\"Ġsubst it\",\"Ġpay load\",\"ĠL av\",\"ĠT roy\",\"ĠW itness\",\"Ġfrag ments\",\"Ġpass words\",\"Ġg ospel\",\"ĠG in\",\"Ġten ants\",\"ol ith\",\"S ix\",\"Pre vious\",\"ĠAg es\",\"ĠDar win\",\"Ġbl at\",\"Ġem pathy\",\"sm ith\",\"b ag\",\"ĠE cho\",\"ĠC amb\",\"ĠM add\",\"ĠB oo\",\"Ġred e\",\"ĠBurn ing\",\"Ġsmooth ly\",\"ĠAd rian\",\"ĠV ampire\",\"ĠMon sters\",\"ste am\",\"Sty le\",\"M a\",\"re a\",\"ĠD war\",\"aly st\",\"urs or\",\"Ġelim ination\",\"Ġcrypt o\",\"ch t\",\"ĠE ternal\",\"âĢ¦ ]\",\"ĠS orce\",\"I ll\",\"N ER\",\"Ġu h\",\"Con clusion\",\"w age\",\"Ġresp ir\",\"Ġrem inis\",\"het ical\",\"Ġg y\",\"Ġutil ized\",\"ic idal\",\"Ġ19 00\",\"Ġhun ters\",\"ĠSw an\",\"ĠRe act\",\"Ġvis itor\",\"ĠThanks giving\",\"30 8\",\"Post s\",\"Ġh ips\",\"19 97\",\"om ers\",\"Ġkn ocking\",\"ĠVeh icle\",\"Ġt il\",\"Ġ13 8\",\"Ġm i\",\"ĠInvest igation\",\"ĠKen ya\",\"Ġcas ino\",\"Ġmot ives\",\"Ġreg ain\",\"re x\",\"Ġweek ends\",\"Ġstab bed\",\"bor o\",\"Ġexplo ited\",\"ĠHA VE\",\"ĠTe levision\",\"c ock\",\"Ġprepar ations\",\"Ġende av\",\"ĠRem ote\",\"ĠM aker\",\"ĠPro du\",\"ĠEv an\",\"Ġinform ational\",\"ĠLouis ville\",\"15 4\",\"ĠDream s\",\"Ġpl ots\",\"ĠRun ner\",\"Ġhur ting\",\"Ġacad emy\",\"ĠMont gomery\",\"n m\",\"ĠL anc\",\"ĠAl z\",\"2 10\",\"el ong\",\"Ġretail er\",\"Ġar ising\",\"Ġrebell ion\",\"Ġbl onde\",\"play ed\",\"Ġinstrument al\",\"C ross\",\"Ġret ention\",\"Ġtherape utic\",\"Ġse as\",\"Ġinfant ry\",\"ĠCl int\",\"Ġprompt ing\",\"Ġbit ch\",\"Ġst ems\",\"ĠK ra\",\"Ġthe sis\",\"ĠB og\",\"ru ed\",\"Ġk ings\",\"Ġcl ay\",\"ific ent\",\"ĠY ES\",\"ĠTh ing\",\"ĠCub s\",\"vey ard\",\"els h\",\"in arily\",\"ĠE y\",\"ĠRoll ing\",\"Ġev olving\",\"Ind ia\",\"Ġrecogn izes\",\"Ġgrad uation\",\"is ers\",\"Ġfert ility\",\"ĠMil an\",\"Comm and\",\"Ġbox ing\",\"Ġ19 43\",\"Ġgl uten\",\"ĠEm ir\",\"Ġid ol\",\"Ġcon ceived\",\"ĠCre ation\",\"Mer it\",\"udd y\",\"uss ions\",\"ĠLie utenant\",\"iet al\",\"Ġunch anged\",\"ĠSc ale\",\"ĠCrime a\",\"ball s\",\"ator ial\",\"Ġdepth s\",\"Ġempir ical\",\"Ġtrans m\",\"Ġuns afe\",\"miss ible\",\"com fort\",\"15 6\",\"Ġmechan ic\",\"00 2\",\"l ins\",\"Ġsm oked\",\"P os\",\"Ġslow ing\",\"Ġl av\",\"Tex as\",\"Ġche ating\",\"ĠMet ropolitan\",\"eth yl\",\"Ġdiscover ing\",\"as se\",\"Ġpen cil\",\"ĠPy ongyang\",\"Ġclos et\",\"ĠShe et\",\"ĠEnt ry\",\"ou stic\",\"Ġmy st\",\"er ate\",\"ari at\",\"Ġminer als\",\"Ġmusic ian\",\"ĠP ul\",\"ĠM az\",\"24 9\",\"Ġper missions\",\"Ġ iv\",\"en ary\",\"ick ers\",\"ĠB ing\",\"he a\",\"en able\",\"Ġgri ev\",\"Ġassert ed\",\"ĠColon el\",\"Ġaff idav\",\"w o\",\"Ġse ated\",\"ĠR ide\",\"Ġpaint ings\",\"ĠP ix\",\"Ġ13 7\",\"ish i\",\"umb ai\",\"g otten\",\"ĠEar l\",\"Ġin ning\",\"Ġc ensus\",\"Ġtrave lled\",\"ĠCons ult\",\"18 5\",\"b ind\",\"Ġsimpl icity\",\"Ġoverlook ed\",\"ĠHelp ful\",\"Ġmon key\",\"Ġoverwhelming ly\",\"Bl ood\",\"ĠFl int\",\"ĠJ ama\",\"ĠPres ent\",\"ĠR age\",\"ĠT A\",\"pt ive\",\"Ġturn out\",\"w ald\",\"ĠD olphins\",\"ĠV PN\",\"Ġon ion\",\"Ġcraft ing\",\"m ma\",\"ĠMerc ury\",\"Ġarr ange\",\"Ġalert s\",\"ĠO T\",\"zb ollah\",\"Ġg ases\",\"ĠRichards on\",\"s al\",\"l ar\",\"Ġfro st\",\"Ġlower ing\",\"Ġacc laim\",\"Ġstart ups\",\"ĠG ain\",\"ess ment\",\"Ġguard ian\",\"äº º\",\"ĠP ie\",\"ĠL inks\",\"Ġmer its\",\"Ġaw ake\",\"Ġparent al\",\"Ġexceed s\",\"Ġid le\",\"ĠPil ot\",\"Ġe Bay\",\"ĠAc cept\",\"ipe g\",\"C am\",\"ĠK ot\",\"Ġtrad ers\",\"olit ics\",\"unk er\",\"ĠP ale\",\"os i\",\"an mar\",\"Ġ19 47\",\"ĠF ell\",\"est ial\",\"it ating\",\"G F\",\"ĠS r\",\"if ted\",\"Ġconnect or\",\"ĠB one\",\"ill es\",\"2 60\",\"h ma\",\"Ġoverl ap\",\"ĠGit Hub\",\"Ġclean er\",\"ĠBapt ist\",\"ĠW AS\",\"Ġlung s\",\"Ñ ģ\",\"ĠB UT\",\"Ġc ite\",\"Ġpit ched\",\"reat ment\",\"Ġtro phies\",\"ĠN u\",\"38 6\",\"ĠPr ide\",\"Ġattend ees\",\"[ ]\",\"17 9\",\"Ġspat ial\",\"Ġpri zes\",\"ĠRel igion\",\"Ġshow case\",\"ĠC ategory\",\"vid ia\",\"T arget\",\"Pro perty\",\"? ,\",\"Ġf usion\",\"p ie\",\"ĠU CLA\",\"Ġsound track\",\"Ġprin cess\",\"ĠC aval\",\"sh ould\",\"Ġlim bs\",\"Back ground\",\"Ġlone ly\",\"Ġc ores\",\"ĠT ail\",\"she et\",\"Ġ13 2\",\"R a\",\"ãĤ «\",\"ĠB olt\",\"Ġbook ed\",\"Ġadmin ister\",\"Ġequ als\",\"w y\",\"Ġobserv ing\",\"ĠBar on\",\"ĠAd obe\",\"Ġv irgin\",\"ĠSocial ist\",\"M ove\",\"gh azi\",\"ĠLind a\",\"2 12\",\"Ġbre wing\",\"Ġmerch ants\",\"bur se\",\"Ġdiv or\",\"Ġmet als\",\"ĠN er\",\"Ġsum s\",\"ĠEn emy\",\"Ġen vision\",\"Ġgrant ing\",\"ĠH oney\",\"ĠSk yrim\",\"Ġsoc io\",\"gr aded\",\"Ġselect ive\",\"W ASHINGTON\",\"Ġ19 48\",\"ĠSir ius\",\"ĠG ross\",\"act ivity\",\"ĠI van\",\"Ġfur ious\",\"BS D\",\"ĠPre vious\",\"Ġrespons ive\",\"Ġchar itable\",\"Ġle aning\",\"ĠP ew\",\"Ġviol ates\",\"\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\",\"ĠCom ing\",\"w ire\",\"Ġpo et\",\"Ġres olutions\",\"comm and\",\"ĠPortug uese\",\"Ġnick name\",\"Ġde af\",\"Feb ruary\",\"Ġrecogn ise\",\"Ġentire ty\",\"Ġseason al\",\"pl aced\",\"ĠTe legraph\",\"Ġmicro phone\",\"our ing\",\"Ġgr ains\",\"Ġgovern ed\",\"Ġpost p\",\"ĠW aters\",\"in ement\",\"Ġund ocumented\",\"ĠCom cast\",\"Ġf ox\",\"Ġassault s\",\"re on\",\"man y\",\"ĠJen kins\",\"ĠAny way\",\"Ġassess ments\",\"Ġdown s\",\"ĠM ouse\",\"Ġsuper b\",\"k t\",\"ĠD ow\",\"Ġtax ation\",\"4 01\",\"Ġsm iles\",\"Ġundert aken\",\"Ġex h\",\"Ġenthusi astic\",\"Ġtw ent\",\"Ġgovernment al\",\"Ġautonom y\",\"ĠTechn ologies\",\"ĠCh ain\",\"Ġpreval ent\",\"f b\",\"Ġnic otine\",\"og ram\",\"j ob\",\"Ġawa iting\",\"ĠMen u\",\"Ġdep uties\",\"k ov\",\"ish ops\",\"But ton\",\"ĠShan ghai\",\"Ġdies el\",\"ĠD uck\",\"R yan\",\"ĠPC s\",\"N F\",\"j ury\",\"ent e\",\"Ġinacc urate\",\"edd y\",\"Wh atever\",\"Ġshow c\",\"ĠN ad\",\"od us\",\"et r\",\"Ġplaint iffs\",\"ĠW OR\",\"ĠAss ange\",\"Ġpriv at\",\"Ġpremium s\",\"Ġt am\",\"UR L\",\"Ġel ites\",\"ĠR anger\",\"otten ham\",\"ĠH off\",\"ĠAt hens\",\"Ġdefin ite\",\"Ġs ighed\",\"Ġeven ly\",\"2 11\",\"ĠAm ber\",\"ak ia\",\"Ġmail ing\",\"Ġcr ashing\",\"ĠConfeder ate\",\"ru gged\",\"W al\",\"ĠDep ths\",\"Ġjuven ile\",\"Ġreact or\",\"Introdu ction\",\"ĠDel uxe\",\"19 95\",\"ĠS anchez\",\"ĠM ead\",\"iv able\",\": -\",\"ĠPlan ning\",\"ĠT rap\",\"qu in\",\"ĠProt ect\",\"ve red\",\"In formation\",\"Ġkid ney\",\"inn amon\",\"l as\",\"Ġpolic ing\",\"Ġtoler ate\",\"ĠQ i\",\"Ġbi ased\",\"F ort\",\"ĠK i\",\"s ave\",\"Ġprivile ged\",\"Ġbe asts\",\"ĠGl as\",\"ĠC inem\",\"Ġcome back\",\"Sund ay\",\"Ġext inction\",\"h ops\",\"Ġtrans mit\",\"Ġdoub les\",\"ĠFl at\",\"16 7\",\"Ġdis puted\",\"Ġinjust ice\",\"f oo\",\"V ict\",\"role um\",\"ĠJul ie\",\"Con text\",\"ĠR arity\",\"iss ue\",\"Comp onent\",\"Ġcounsel ing\",\"an ne\",\"d ark\",\"Ġobject ions\",\"u ilt\",\"Ġg ast\",\"Ġpl ac\",\"Ġun used\",\"ãĥ ĩ\",\"ĠT rial\",\"ĠJ as\",\"hed ral\",\"ob b\",\"Ġtempor al\",\"ĠPR O\",\"ĠN W\",\"ĠAnn iversary\",\"L arge\",\"Ġther m\",\"Ġd avid\",\"Ġsystem ic\",\"ĠSh ir\",\"m ut\",\"ĠNe pt\",\"add ress\",\"Ġscan ning\",\"Ġunderstand able\",\"Ġcan vas\",\"C at\",\"ĠZ oo\",\"Ġang els\",\"L O\",\"ĠStat ement\",\"ĠS ig\",\"ov able\",\"ĠA way\",\"sh aring\",\"ocr ats\",\"st ated\",\"Ġweigh ing\",\"N or\",\"w ild\",\"B ey\",\"Ġaston ishing\",\"ĠReyn olds\",\"Ġop ener\",\"Ġtrain er\",\"Ġsurg ical\",\"p n\",\"Ġadjust ing\",\"whe el\",\"Ġf rown\",\"erv ative\",\"Ġsusp end\",\"With in\",\"te in\",\"Ġobst acle\",\"Ġliber ties\",\"ym es\",\"Ġur anium\",\"ans om\",\"an ol\",\"ub a\",\"ĠL oss\",\"Ġa rous\",\"ĠHend erson\",\"W ow\",\"s pl\",\"c ur\",\"ĠÂ Ń\",\"Ġtheir s\",\"Dam age\",\"Ġdownload ing\",\"Ġdisc ern\",\"ĠSt o\",\"ĠFl a\",\"Ġh ath\",\"ĠA j\",\"Ġun pleasant\",\"Europe an\",\"exp ensive\",\"Ġscreens hot\",\"ĠU V\",\"Ġall ied\",\"ĠPers ian\",\"Ġmonop oly\",\"Ġat om\",\"ĠReds kins\",\"\\\"> <\",\"Ġcan cell\",\"Ġcinem a\",\"13 1\",\"f air\",\"ĠAlf red\",\"Ġd uck\",\"arg s\",\"22 3\",\"ĠIS I\",\"Ġsign aling\",\"in ar\",\"Ġlaugh s\",\"Ġfor wards\",\"Ġreck less\",\"Ġlisten ers\",\"at ivity\",\"Ġvast ly\",\"n ant\",\"L ess\",\"ĠHun ting\",\"ĠScient ific\",\"IT ED\",\"Ġkn ight\",\"ĠH TC\",\"us a\",\"t mp\",\"Ġr ude\",\"ĠLegend ary\",\"Ġar ises\",\"B ad\",\"ĠCl aim\",\"pe g\",\"Ġreal ities\",\"Th ink\",\"ĠÂ °\",\"Ġro de\",\"Ġstri ve\",\"Ġan ecd\",\"Ġshort s\",\"Ġhypot hes\",\"Ġcoord inated\",\"ĠGand hi\",\"ĠF PS\",\"R ED\",\"Ġsuscept ible\",\"Ġshr ink\",\"ĠCh art\",\"Hel p\",\"Ġ ion\",\"de ep\",\"rib es\",\"ĠK ai\",\"ĠCustom er\",\"Sum mary\",\"Ġc ough\",\"w ife\",\"Ġl end\",\"Ġposition ing\",\"Ġlot tery\",\"ĠC anyon\",\"Ġf ade\",\"Ġbron ze\",\"ĠKenn y\",\"Ġbo asts\",\"ĠEnh anced\",\"rec ord\",\"Ġemer gence\",\"Ġa kin\",\"ĠB ert\",\"it ous\",\"âĸ ĳ\",\"Ġst ip\",\"Ġexch anged\",\"om ore\",\"als h\",\"Ġreserv oir\",\"Ġstand point\",\"W M\",\"Ġiniti ate\",\"Ġdec ay\",\"Ġbrew ery\",\"Ġter ribly\",\"Ġmort al\",\"lev ard\",\"Ġrev is\",\"N I\",\"el o\",\"Ġconf ess\",\"ĠMS NBC\",\"Ġsub missions\",\"Cont roller\",\"Ġ20 2\",\"ĠR uth\",\"} );\",\"ĠAz ure\",\"Ġ .\\\"\",\"20 6\",\"ĠMarket ing\",\"Ġl aund\",\"ien cies\",\"Ġrenown ed\",\"ĠT rou\",\"ĠN GO\",\"ble ms\",\"Ġterr ified\",\"Ġwar ns\",\"Ġper t\",\"Ġuns ure\",\"4 80\",\"ale z\",\"ult z\",\"ĠOut side\",\"Ġst yl\",\"ĠUnder ground\",\"Ġp anc\",\"Ġd ictionary\",\"Ġf oe\",\"rim inal\",\"ĠNor wegian\",\"Ġj ailed\",\"Ġm aternal\",\"Ã© e\",\"ĠLu cy\",\"c op\",\"Ch o\",\"Ġuns igned\",\"ĠZe lda\",\"ĠIns ider\",\"ĠContin ued\",\"Ġ13 3\",\"ĠNar uto\",\"ĠMajor ity\",\"16 9\",\"ĠW o\",\"ãĤ ĵ\",\"Ġpast or\",\"Ġinform al\",\"Ð ½\",\"an throp\",\"jo in\",\"ãģ Ĺ\",\"it ational\",\"N P\",\"ĠWrit ing\",\"f n\",\"ĠB ever\",\"19 5\",\"Ġy elling\",\"Ġdr astically\",\"Ġe ject\",\"Ġne ut\",\"Ġth rive\",\"ĠFre qu\",\"ou x\",\"Ġpossess es\",\"ĠSen ators\",\"ĠD ES\",\"ĠSh akespeare\",\"ĠFran co\",\"ĠL B\",\"uch i\",\"Ġinc arn\",\"Ġfound ers\",\"F unction\",\"Ġbright ness\",\"ĠB T\",\"Ġwh ale\",\"ĠThe ater\",\"m ass\",\"ĠD oll\",\"S omething\",\"Ġecho ed\",\"ĠHe x\",\"c rit\",\"af ia\",\"Ġgodd ess\",\"Ġele ven\",\"ĠPre view\",\"ĠAur ora\",\"Ġ4 01\",\"uls ive\",\"ĠLog an\",\"in burgh\",\"ĠCent ers\",\"ĠON LY\",\"ĠA id\",\"Ġparad ox\",\"Ġh urd\",\"ĠL C\",\"D ue\",\"c ourt\",\"Ġoff ended\",\"Ġeval uating\",\"ĠMatthew s\",\"Ġto mb\",\"Ġpay roll\",\"Ġextra ction\",\"ĠH ands\",\"if i\",\"Ġsuper natural\",\"ĠCOM M\",\"] =\",\"dog s\",\"Ġ5 12\",\"ĠMe eting\",\"Rich ard\",\"ĠMax imum\",\"Ġide als\",\"Th ings\",\"m and\",\"ĠReg ardless\",\"Ġhum ili\",\"b uffer\",\"L ittle\",\"ĠD ani\",\"ĠN ak\",\"Ġliber ation\",\"ĠA be\",\"ĠO L\",\"Ġstuff ed\",\"ac a\",\"ind a\",\"raph ic\",\"Ġmos qu\",\"Ġcampaign ing\",\"Ġoccup y\",\"S qu\",\"r ina\",\"ĠW el\",\"ĠV S\",\"Ġphys ic\",\"Ġp uls\",\"r int\",\"oad ed\",\"ET F\",\"ĠArch ives\",\"Ġven ues\",\"h ner\",\"ĠTur bo\",\"Ġl ust\",\"Ġappeal ed\",\"que z\",\"il ib\",\"ĠTim othy\",\"Ġo mn\",\"d ro\",\"Ġobs ession\",\"ĠSav age\",\"19 96\",\"Gl obal\",\"J es\",\"2 14\",\"Ġsl iding\",\"Ġdisapp ro\",\"ĠMag ical\",\"Ġvolunt arily\",\"g b\",\"ane y\",\"Ġprop het\",\"ĠRe in\",\"ĠJul ia\",\"ĠW orth\",\"aur us\",\"Ġb ounds\",\"ie u\",\")) )\",\"Ġcro re\",\"ĠCitiz en\",\"S ky\",\"Ġcolumn ist\",\"Ġseek ers\",\"ond o\",\"IS A\",\"ĠL ength\",\"Ġnost alg\",\"Ġnew com\",\"Ġdet rim\",\"ent ric\",\"3 75\",\"ĠG E\",\"Ġaut op\",\"Ġacadem ics\",\"App Data\",\"ĠS hen\",\"Ġid iot\",\"ĠTrans it\",\"Ġteasp oon\",\"W il\",\"K O\",\"ĠCom edy\",\"> ,\",\"Ġpop ulated\",\"W D\",\"Ġp igs\",\"ĠO culus\",\"Ġsymp athetic\",\"Ġmar athon\",\"19 8\",\"Ġseiz ure\",\"s ided\",\"Ġd op\",\"irt ual\",\"L and\",\"ĠFl oor\",\"osa urs\",\"... ]\",\"Ġl os\",\"Ġsubsid iary\",\"E Y\",\"ĠPart s\",\"ĠSt ef\",\"ĠJud iciary\",\"Ġ13 4\",\"Ġmir rors\",\"Ġk et\",\"t imes\",\"Ġneuro log\",\"Ġc av\",\"ĠGu est\",\"Ġtum or\",\"sc ill\",\"ĠLl oyd\",\"E st\",\"Ġcle arer\",\"Ġstere otypes\",\"Ġd ur\",\"not hing\",\"Red dit\",\"Ġnegoti ated\",\"---------------- --------\",\"23 5\",\"Ġfl own\",\"ĠSe oul\",\"ĠRes ident\",\"ĠS CH\",\"Ġdisappear ance\",\"ĠV ince\",\"g rown\",\"Ġgrab s\",\"r il\",\"ĠInf inite\",\"ĠTw enty\",\"Ġpedest rian\",\"Ġjer sey\",\"ĠF ur\",\"ĠInf inity\",\"ĠEll iott\",\"Ġment or\",\"Ġmor ally\",\"Ġob ey\",\"sec ure\",\"iff e\",\"Ġantib iotics\",\"ang led\",\"ĠFre eman\",\"ĠIntrodu ction\",\"J un\",\"Ġm arsh\",\"ic ans\",\"ĠEV ENTS\",\"och ond\",\"W all\",\"icult y\",\"Ġmisdem eanor\",\"Ġl y\",\"Th omas\",\"ĠRes olution\",\"Ġanim ations\",\"ĠD ry\",\"Ġinter course\",\"ĠNew castle\",\"ĠH og\",\"ĠEqu ipment\",\"17 7\",\"Ġterrit orial\",\"Ġarch ives\",\"20 3\",\"Fil ter\",\"ĠMun ich\",\"Ġcommand ed\",\"ĠW and\",\"Ġpit ches\",\"ĠCro at\",\"Ġrat ios\",\"ĠM its\",\"Ġaccum ulated\",\"ĠSpecific ally\",\"Ġgentle man\",\"acer b\",\"Ġp enn\",\"Ġa ka\",\"ĠF uk\",\"Ġinterven e\",\"ĠRef uge\",\"ĠAlz heimer\",\"Ġsuccess ion\",\"oh an\",\"d oes\",\"L ord\",\"Ġsepar at\",\"Ġcorrespond ence\",\"Ġsh iny\",\"P rior\",\"Ġs ulf\",\"Ġmiser able\",\"Ġded ication\",\"( ).\",\"Ġspecial ists\",\"Ġdefect s\",\"ĠC ult\",\"ĠX ia\",\"Ġje opard\",\"ĠO re\",\"Ab ility\",\"Ġle ar\",\"Ġamb itions\",\"ĠB MI\",\"ĠArab s\",\"Ġ19 42\",\"Ġpres ervation\",\"ific ate\",\"Ġash amed\",\"l oss\",\"ĠRest aur\",\"Ġrese mble\",\"Ġen rich\",\"ĠK N\",\"ĠCl an\",\"fl oat\",\"Ġplay able\",\"IT T\",\"Ġharm ony\",\"arr ison\",\"ĠWe instein\",\"w ere\",\"Ġpoison ing\",\"ĠCom put\",\"ĠWord Press\",\"m ajor\",\"ĠVal ve\",\"F an\",\"ĠTh row\",\"ĠRom ans\",\"ĠDep ression\",\"ad os\",\"Ġtort ured\",\"Ġbal ancing\",\"bott om\",\"Ġacqu iring\",\"ĠMon te\",\"ard i\",\"Ġa ura\",\"Ġ# #\",\"ĠStand ing\",\"ĠAtl as\",\"C F\",\"Ġintr ins\",\"ĠBen ghazi\",\"Ġcamp ing\",\"Ġt apped\",\"bl ade\",\"st rous\",\"ĠR abb\",\"ĠW ritten\",\"t ip\",\"ĠNe igh\",\"ster dam\",\"ĠAll ow\",\"ĠHe aling\",\"ĠR hod\",\"n um\",\"Ġcaffe ine\",\"ĠPer cent\",\"Ġbo o\",\"Ġapp les\",\"30 5\",\"Ġwel coming\",\"Ġappl aud\",\"Ġa usterity\",\"Â ±\",\"ĠRe ality\",\"ef e\",\"å ®\",\"Ġsu cks\",\"Ġtab s\",\"ĠPay Pal\",\"Ġback pack\",\"Ġgif ted\",\"abul ary\",\"ĠSc out\",\"ir teen\",\"Ġch in\",\"Ġo mitted\",\"Ġnegative ly\",\"Ġaccess ing\",\"ĠE arn\",\"Ġambul ance\",\"Ġhead phones\",\"Ġ20 5\",\"ĠRef resh\",\"p resident\",\"ĠKit chen\",\"ĠEnt ered\",\"ĠS nyder\",\"00 5\",\"om ical\",\"Ġborrow ed\",\"ĠN em\",\"Ġav iation\",\"Ġst all\",\"rim ination\",\"Ġuniform s\",\"it ime\",\"ĠSim mons\",\"ener gy\",\"ab lished\",\"y y\",\"qual ified\",\"Ġrall ies\",\"ĠSt uart\",\"fl ight\",\"Ġgang s\",\"r ag\",\"Ġv ault\",\"lu x\",\"ĠCom par\",\"Ġdesign ation\",\"20 9\",\"ĠJ os\",\"d ollar\",\"z ero\",\"Ġwell s\",\"30 3\",\"Ġconstitu ents\",\"Ġhe ck\",\"Ġc ows\",\"Ġcommand ers\",\"Ġdifferent ial\",\"ĠC atherine\",\"29 9\",\"Ġval ve\",\"Ġbr ace\",\"Ġperspect ives\",\"c ert\",\"f act\",\"icular ly\",\"ĠMc N\",\"pl anes\",\"Ġint ric\",\"Ġpe as\",\"ov an\",\"Ġtoss ed\",\"ret ch\",\"ĠL opez\",\"Ġunf amiliar\",\"de ath\",\"ĠA part\",\"ĠCh ang\",\"Ġrelie ved\",\"rop he\",\"Ġair ports\",\"Ġfre ak\",\"ut il\",\"M ill\",\"ĠCh in\",\"ĠOw en\",\"m ale\",\"ĠBro ken\",\"ĠWind s\",\"ro b\",\"r ising\",\"Ġfire fighters\",\"Ġauthor itarian\",\"Ġ14 8\",\"Bit coin\",\"ex ternal\",\"Ġbrow sers\",\"iche ver\",\"or ian\",\"Ġun b\",\"Ġpo ke\",\"ĠZ ot\",\"M id\",\"ĠPop ular\",\"Ġco vert\",\"Ġcont ributes\",\"Ġ6 50\",\"Ġcont ention\",\"G ate\",\"Ġcons oles\",\"Ġchrom os\",\"ĠI X\",\"Ġvis ually\",\"ĠE isen\",\"Ġjewel ry\",\"Ġdeleg ation\",\"Ġacceler ate\",\"ĠR iley\",\"Ġsl ope\",\"Ġind oor\",\"it ially\",\"Ġhuge ly\",\"Ġtun nels\",\"Ġfin ed\",\"Ġdirect ive\",\"Ġfore head\",\"ustom ed\",\"Ġsk ate\",\"Mus ic\",\"g as\",\"Ġrecogn izing\",\"am bo\",\"Ġover weight\",\"ĠGr ade\",\"Ù Ĭ\",\"Ġsound ing\",\"Ġlock ing\",\"ĠR EM\",\"St ore\",\"Ġexc av\",\"ĠLike wise\",\"ĠL ights\",\"Ġel bow\",\"ĠSupp ly\",\"w ic\",\"Ġhands ome\",\"19 94\",\"C oll\",\"Ġadequ ately\",\"ĠAssoci ate\",\"Ġstri ps\",\"Ġcrack down\",\"Ġmar vel\",\"ĠK un\",\"Ġpass ages\",\"@@ @@\",\"ĠT all\",\"Ġthought ful\",\"names e\",\"Ġprost itution\",\"bus iness\",\"Ġball istic\",\"person al\",\"c ig\",\"iz ational\",\"R ound\",\"ĠÂłĠÂł ĠÂłĠÂł\",\"ĠCole man\",\"Ġadm itting\",\"ĠPl ug\",\"Ġbit coins\",\"ĠSu z\",\"Ġfair ness\",\"Ġsupp lier\",\"Ġcatast rophic\",\"ĠHel en\",\"o qu\",\"M arc\",\"ĠArt icles\",\"g ie\",\"Ġend angered\",\"Ġdest iny\",\"ĠVol t\",\"ol ia\",\"ax is\",\"Ġche at\",\"Ġun ified\",\"IC O\",\"qu ote\",\"30 2\",\"ĠS ed\",\"Ġsupp ression\",\"Ġanaly zing\",\"Ġsqu at\",\"Ġfig uring\",\"Ġcoordin ates\",\"Ġch unks\",\"Ġ19 46\",\"Ġsub p\",\"Ġw iki\",\"ĠFor bes\",\"ĠJ upiter\",\"ĠE rik\",\"im er\",\"ĠCom mercial\",\"\\\\ )\",\"Ġlegitim acy\",\"Ġd ental\",\"ĠMe an\",\"Ġdefic its\",\"5 50\",\"Orig inally\",\"ĠHor ror\",\"Ġcontam ination\",\"ll ah\",\"Ġconf isc\",\"ĠCl are\",\"T B\",\"ĠF ailed\",\"an ed\",\"Ġrul er\",\"ĠCont roller\",\"Ġfemin ists\",\"F ix\",\"g ay\",\"20 7\",\"Ġr abbit\",\"Th ird\",\"ownt own\",\"Ġgl ue\",\"Ġvol atile\",\"Ġsh ining\",\"Ġf oll\",\"Ġimp aired\",\"Ġsup ers\",\"æ Ī\",\"Ġcl utch\",\"ļé ĨĴ\",\"Ġpro let\",\"Ġ( !\",\"Ġy elled\",\"ĠK iev\",\"ĠEr n\",\"ĠSh ock\",\"K B\",\"Ġsit uated\",\"qu ery\",\"ĠN as\",\"Ġan nex\",\"char acter\",\"ĠHol iday\",\"Ġautom ation\",\"ĠJ ill\",\"ĠRem astered\",\"Ġl inem\",\"Ġwild erness\",\"ĠHor izon\",\"ĠGu inea\",\"A Z\",\"Ġmain land\",\"Ġsec recy\",\"LE ASE\",\"Ġp unk\",\"ĠProv ince\",\"( ),\",\"Spe ed\",\"Ġhand ing\",\"ĠSeb ast\",\"S ir\",\"r ase\",\"Ġj ournals\",\"Ġcon gest\",\"ĠT ut\",\"ir rel\",\"Ġschizophren ia\",\"Ġmis ogyn\",\"health y\",\"I ron\",\"Ġreact ed\",\"- $\",\"25 2\",\"Ġpl ural\",\"Ġpl um\",\"Ġbarg ain\",\"Ġground ed\",\"f inder\",\"Ġdis se\",\"ĠL az\",\"O OD\",\"Ġat roc\",\"F actory\",\"Ġmin ions\",\"Ġo ri\",\"ĠB rave\",\"ĠP RE\",\"ĠMy anmar\",\"ĠH od\",\"Ġexped ition\",\"Ġexpl ode\",\"ĠCo ord\",\"Ġext r\",\"ĠB rief\",\"ĠAD HD\",\"Ġhard core\",\"feed ing\",\"Ġd ile\",\"ĠF ruit\",\"Ġvacc ination\",\"ĠM ao\",\"osp here\",\"Ġcont ests\",\"- |\",\"Ġf ren\",\"isp here\",\"R om\",\"ĠSh arp\",\"ĠTre nd\",\"Ġdis connect\",\"âĢ¢ âĢ¢\",\"Ġper secution\",\"Ear th\",\"Ġhealth ier\",\"38 4\",\"Ġc ob\",\"ĠTr inity\",\"OW S\",\"AN N\",\"Ġspecial ty\",\"Ġg ru\",\"Ġcooper ative\",\"wh y\",\"Start ing\",\"ĠIss ues\",\"st re\",\"ens or\",\"Ġ18 5\",\"Ad v\",\"! ?\",\"ĠRe vel\",\"em ia\",\"ĠH ulk\",\"Ġcelebr ations\",\"ĠS ou\",\"ra ud\",\"ĠKle in\",\"Ġun real\",\"con text\",\"Ġpartners hips\",\"Ġadop ting\",\"t ical\",\"Ġspl ash\",\"ĠHe zbollah\",\"c ategory\",\"cycl op\",\"xt on\",\"ĠD ot\",\"urd y\",\"t z\",\"Ġenvelop e\",\"ĠN L\",\"â ķ\",\"Ġwhere in\",\"Spe c\",\"18 4\",\"Ġte lev\",\"al iation\",\"Ġmyth s\",\"å °\",\"Ġrig orous\",\"Ġcommun icating\",\"Ġobser ver\",\"Ġre he\",\"ĠW ash\",\"Ġapolog ized\",\"ĠT in\",\"Ġexpend itures\",\"work ers\",\"d ocument\",\"Ġhes itate\",\"ĠLen in\",\"Ġunpredict able\",\"Ġrenew al\",\"cl er\",\"ok ia\",\"ĠCON T\",\"Ġpost season\",\"Tok ens\",\"Ġex acerb\",\"Ġbet ting\",\"Ġ14 7\",\"Ġelev ation\",\"W ood\",\"ĠSol omon\",\"19 4\",\"00 4\",\"out put\",\"Ġredu nd\",\"ĠM umbai\",\"Ġp H\",\"Ġreprodu ce\",\"ĠD uration\",\"MA X\",\"Ġb og\",\"C BS\",\"ĠBal ance\",\"ĠS gt\",\"ĠRec ent\",\"Ġc d\",\"Ġpo pped\",\"Ġincomp et\",\"pro p\",\"ay an\",\"g uy\",\"Pac ific\",\"Ġty r\",\"Ġ{ {\",\"ĠMy stic\",\"ĠD ana\",\"Ġmast urb\",\"Ġge ometry\",\"Ã ¢\",\"ĠCor rect\",\"Ġtraject ory\",\"Ġdistract ed\",\"Ġf oo\",\"ĠW elsh\",\"L uc\",\"m ith\",\"Ġrug by\",\"Ġrespir atory\",\"Ġtri angle\",\"Ġ2 15\",\"Ġunder graduate\",\"ĠSuper ior\",\"ch anging\",\"_ -\",\"Ġright ly\",\"Ġrefere e\",\"Ġluc rative\",\"Ġun authorized\",\"Ġresemb les\",\"ĠGN U\",\"ĠDer by\",\"Ġpath ways\",\"ĠL ed\",\"Ġend urance\",\"Ġst int\",\"Ġcollect or\",\"F ast\",\"Ġd ots\",\"Ġnational s\",\"ĠSec urities\",\"Ġwh ip\",\"Par am\",\"Ġlearn s\",\"M agic\",\"Ġdetail ing\",\"m oon\",\"Ġbroadcast ing\",\"Ġb aked\",\"26 5\",\"hol m\",\"ĠS ah\",\"ĠHus sein\",\"ĠCourt esy\",\"17 4\",\"Ġ14 6\",\"Ġge ographic\",\"pe ace\",\"Ġjud ging\",\"ĠS tern\",\"B ur\",\"Ġstory line\",\"G un\",\"ĠSt ick\",\"24 5\",\"30 7\",\"ãĤ´ ãĥ³\",\"ĠAdminist rator\",\"Ġbur nt\",\"Ġp ave\",\"ch oes\",\"Ex ec\",\"Ġcamp uses\",\"Res ult\",\"Ġmut ations\",\"ĠCh arter\",\"Ġcapt ures\",\"Ġcomp ares\",\"Ġbad ge\",\"S cient\",\"Ġer ad\",\"ier y\",\"o i\",\"ett es\",\"ĠE state\",\"Ġst rap\",\"Ġproud ly\",\"Ġf ried\",\"Ġwithd rawn\",\"ĠV oy\",\"ph ony\",\"It ems\",\"ĠP ierce\",\"b ard\",\"Ġann otation\",\"ant on\",\"ill on\",\"Im pro\",\"... )\",\"Ġhapp ier\",\"---- --\",\"ad just\",\"Ġstaff ers\",\"Ġactiv ism\",\"Ġper f\",\"Ġal right\",\"N eed\",\"Ġcomm ence\",\"Ġopio id\",\"ĠAm anda\",\"E s\",\"ĠP ars\",\"ĠK aw\",\"W orks\",\"24 8\",\"Ġind o\",\"t c\",\"end ant\",\"ĠM oto\",\"Ġlegal ization\",\"OT E\",\"Ġtask ed\",\"Ġt sp\",\"ĠACT IONS\",\"16 6\",\"Ġrefres hing\",\"ĠN R\",\"ĠPere z\",\"Ġinfring ement\",\"S Y\",\"List en\",\"in ning\",\"k u\",\"Ġrot ate\",\"pro gram\",\"ar ah\",\"Des ign\",\"Ġ( Â£\",\"Ġst oring\",\"Ġwar rants\",\"Ġjud gement\",\"ĠB rist\",\"us ually\",\"ph oto\",\"ĠR an\",\"ĠP ine\",\"Ġoutrage ous\",\"ĠValent ine\",\"lu ence\",\"ĠEvery body\",\"Al tern\",\"Ġrele vance\",\"Ġtermin ated\",\"Ġd essert\",\"Ġfulf illed\",\"Ġprosecut ed\",\"ĠW ords\",\"Ġm igrant\",\"Ġcultiv ation\",\"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ\",\"idel ity\",\"ĠV ern\",\"ĠLog in\",\"Ġmetaph or\",\"ĠT ip\",\"Ġrecru its\",\"ĠP ig\",\"rib ing\",\"Ġenthusi asts\",\"ex per\",\"Ġfright ening\",\"ĠH air\",\"ans on\",\"str ate\",\"Ġh i\",\"He ight\",\"Ġown ing\",\"n one\",\"Ġdis like\",\"Ġkn ives\",\"pher d\",\"Ġloud ly\",\"ĠAP Is\",\"Dis play\",\"ĠL ac\",\"ĠUS S\",\"ab l\",\"ver ages\",\"J ew\",\"Ġ17 2\",\"ĠHist orical\",\"at oon\",\"ĠPhys ics\",\"in tern\",\"Ġwarm th\",\"Ġto pp\",\"D M\",\"Ġgun man\",\"Ġem peror\",\"od i\",\"ãĥ £\",\"in atory\",\"ĠR ib\",\"Ġ13 1\",\"ĠSat urn\",\"ĠSh ining\",\"Ġw aking\",\"Qu otes\",\"Ġcomed ian\",\"en berg\",\"Â ½\",\"Ġbelie vers\",\"Ġpaper work\",\"c ustom\",\"Ġle v\",\"Ġl ament\",\"Ġpour ing\",\"22 2\",\"p olitical\",\"ĠSupp lement\",\"m aid\",\"Ġcruel ty\",\"Ġt read\",\"ys ics\",\"A w\",\"rit es\",\"Ġmod ifier\",\"ĠP osition\",\"Ad am\",\"l b\",\"ub s\",\"Ġimper fect\",\"Ġcl usters\",\"ĠEngine er\",\"ĠC herry\",\"Ġinaug uration\",\"ĠS au\",\"Ġembod iment\",\"ĠUn cle\",\"Ġover r\",\"Ġexplos ions\",\"c ule\",\"ĠPrinc eton\",\"ĠAndre a\",\"Ġincorrect ly\",\"Ġearn est\",\"Ġpil gr\",\"ĠS print\",\"Ġslee ve\",\"Ġhe ars\",\"ĠAm azing\",\"Ġbrow sing\",\"ag in\",\"Ġhom eland\",\"Ġha w\",\"Ġd iving\",\"ist ered\",\"17 8\",\"Ġbarg aining\",\"ĠArc ade\",\"Ġdeleg ate\",\"ters on\",\"................................ ................................\",\"ĠJackson ville\",\"27 5\",\"Ġst agn\",\"Ġad am\",\"ĠSher man\",\"C B\",\"Ġsub urb\",\"ĠFood s\",\"Ġconver ting\",\"ĠAr ist\",\"Ġch ambers\",\"l ove\",\"Ġam ino\",\"ĠG an\",\"Ġmad ness\",\"m c\",\"ĠUS E\",\"def ined\",\"Ġul tr\",\"ind ust\",\"Ġw olves\",\"l ance\",\"Add itionally\",\"Ġcr acks\",\"as ia\",\"ĠRe ason\",\"ĠP ump\",\"Ġaccident al\",\"ĠL aser\",\"ĠR id\",\"Ġinitial ized\",\"ell i\",\"Ġun named\",\"Ġn oun\",\"ĠPass ed\",\"Ġhost age\",\"ĠEth iop\",\"sh irts\",\"Ġun rel\",\"ĠEmb assy\",\"Ġ19 41\",\"Ġat oms\",\"Ġpur ported\",\"16 4\",\"ĠF i\",\"Ġgall ons\",\"ĠMon ica\",\"Ġp g\",\"en ment\",\"Ġsort ed\",\"ĠG ospel\",\"Ġhe ights\",\"Ġtr aced\",\"Ġunder going\",\"She ll\",\"Ġs acks\",\"Ġproport ions\",\"Ġhall uc\",\"F ont\",\"ac et\",\"Ġwar mer\",\"ĠIN TER\",\"Ġgrab bing\",\"Pl ug\",\"Ġreal ization\",\"ĠBur ke\",\"Ġen chant\",\"AT ER\",\"ĠSe ed\",\"Ġabund ant\",\"F M\",\"Ġc ivic\",\"V s\",\"is i\",\"Ġv ow\",\"Ġre per\",\"ĠPartners hip\",\"Ġpenet ration\",\"Ġax e\",\"Ġsh attered\",\"ĠZ ombies\",\"Ġv inyl\",\"ĠAl ert\",\"e on\",\"Ġoblig ed\",\"ĠIll ust\",\"ĠPl aza\",\"ĠFront ier\",\"Ġdavid jl\",\"ĠSer ial\",\"ĠH av\",\"ĠNut rition\",\"B i\",\"Ġâĸ Ī\",\"ĠJ ays\",\"lin ux\",\"Ġhur ry\",\"Ġv oy\",\"Ġhop eless\",\"ĠSte alth\",\"Ġ ãģ\",\"ess ors\",\"tt le\",\"b org\",\"ĠSaf ari\",\"f ell\",\"Ġw ary\",\"d ue\",\"ĠAb ove\",\"H a\",\"E LL\",\"Ġnot or\",\"ĠW on\",\"T oo\",\"Ġoccup ations\",\"Ġposs essions\",\"Ġinv iting\",\"Ġpred ators\",\"Ġacceler ated\",\"Ġ15 7\",\"uter te\",\"ĠC ube\",\"e ast\",\"acc ount\",\"G ive\",\"Ġtrans plant\",\"red ients\",\"id able\",\"Ġscreens hots\",\"ĠG und\",\"ĠF S\",\"Ġtravel ers\",\"Ġsens ory\",\"ĠF iat\",\"ĠRock ets\",\"İ ĭ\",\"_ {\",\"F riend\",\"Ġchar ming\",\"AL S\",\"Ġenjoy ment\",\"m ph\",\"Ġ5 000\",\"ĠRE G\",\"Ù Ĩ\",\"b ia\",\"Ġcomp ilation\",\"ro st\",\"ĠV P\",\"ĠSch ne\",\"201 9\",\"Ġcop ying\",\"M ORE\",\"ĠFl ore\",\"f alls\",\"2 15\",\"t otal\",\"Ġdis ciples\",\"d ouble\",\"Ġexceed ing\",\"Ġsm ashed\",\"Ġconcept ual\",\"ĠRom ania\",\"ĠB rent\",\"ĠI CE\",\"ĠT ou\",\"Ġg rap\",\"Ġn ails\",\"18 9\",\"ãĥ ĺ\",\"Ġproc ure\",\"e ur\",\"Ġconfir ming\",\"ĠC ec\",\"aw i\",\"ĠEd en\",\"Ġn g\",\"Ġengine ered\",\"at ics\",\"Ġhook ed\",\"Ġdisgust ing\",\"ĠMur der\",\"ãĤ ¿\",\"L ibrary\",\"Ġ16 8\",\"Al most\",\"hem atic\",\"Men u\",\"ĠNot re\",\"ĠJ ur\",\"Ġkidn apped\",\"Ġhack er\",\"ĠJ ade\",\"Ġcreep y\",\"Ġdraw ings\",\"ĠSpons or\",\"Ġcycl ists\",\"ĠGob lin\",\"Ġoptim ized\",\"Ġst aged\",\"ĠMc D\",\"bet ween\",\"A ge\",\"en o\",\"S ex\",\"ĠW ide\",\"n ings\",\"av is\",\"Ġincap able\",\"ĠK ob\",\"Ġreward ing\",\"ĠL one\",\"oles cent\",\"Ġcontract ed\",\"Ġstick y\",\"J ose\",\"B all\",\"f est\",\"ĠIn put\",\"ĠRec ently\",\"Ġto mat\",\"squ are\",\"App lication\",\"Ġnit rogen\",\"Ġdupl icate\",\"ĠRec on\",\"ĠD ear\",\"L ondon\",\"Ġint ra\",\"Ġd ock\",\"Ġout reach\",\"ĠM illion\",\"Ġmamm als\",\"am pton\",\"V AL\",\"Ġsn aps\",\"Ġd os\",\"ĠWh ole\",\"ĠRead y\",\"T ry\",\"ĠWinn ipeg\",\"ear ance\",\"Ġinc urred\",\"ren ched\",\"ĠNS W\",\"il ot\",\"rain e\",\"Ġc ube\",\"g ot\",\"Ġrun way\",\"etermin ed\",\"ĠHaw ks\",\"Ġsurviv or\",\"ĠW ish\",\"ĠD in\",\"ĠDE F\",\"ĠV ault\",\"18 7\",\"Ġmush rooms\",\"Ġcris p\",\"be y\",\"ĠDisco very\",\"Ġdevelopment al\",\"Ġparad igm\",\"Ġcha otic\",\"ĠT su\",\"Ġ3 33\",\"b ons\",\"Ġbacter ial\",\"Ġcomm its\",\"Ġcos mic\",\"Ġme ga\",\"oc ative\",\"ĠP aint\",\"ophob ic\",\"Ġv ain\",\"Ġcar ved\",\"ĠTh ief\",\"ĠG ul\",\"ows hip\",\"Ġc ites\",\"ĠEd inburgh\",\"Ġdimin ished\",\"Ġacknowled ges\",\"ĠK ills\",\"Ġmic row\",\"ĠHer a\",\"Ġsen iors\",\"Ġwhere by\",\"H op\",\"at ron\",\"Ġun available\",\"ĠN ate\",\"Ġ4 80\",\"Ġsl ated\",\"ĠRe becca\",\"ĠB attery\",\"Ġgram mar\",\"Ġhead set\",\"Ġcurs or\",\"Ġex cluding\",\"any e\",\"aunder ing\",\"eb in\",\"Ġfeas ible\",\"ĠPub lishing\",\"ĠLab s\",\"ĠCl iff\",\"ĠFerr ari\",\"Ġp ac\",\"vis ible\",\"mark ed\",\"pe ll\",\"Ġpol ite\",\"Ġstagger ing\",\"ĠGal actic\",\"Ġsuper st\",\"Ġpar an\",\"ĠOffic ers\",\"ãĢ ģ\",\"Ġspecific s\",\"ul us\",\"23 9\",\"ĠP aste\",\"AM P\",\"ĠPan ama\",\"ĠDe lete\",\"angu ard\",\"rest rial\",\"Ġhero ic\",\"ĠD y\",\"Ø§ ÙĦ\",\"Ġincumb ent\",\"Ġcr unch\",\"t ro\",\"Ġsc oop\",\"Ġblog ger\",\"Ġsell ers\",\"ure n\",\"Ġmedic ines\",\"ĠC aps\",\"ĠAnim ation\",\"ox y\",\"Ġout ward\",\"Ġinqu iries\",\"22 9\",\"Ġpsych ologist\",\"ĠS ask\",\"ev il\",\"Ġcontam inated\",\"ãĤ ¨\",\"he rence\",\"Ġbrand ed\",\"ĠAbd ul\",\"z h\",\"Ġparagraph s\",\"Ġmin s\",\"Ġcor related\",\"er b\",\"Ġimp art\",\"Ġmil estone\",\"ĠSol utions\",\"ot le\",\"Ġunder cover\",\"Ġmar ched\",\"ĠCharg ers\",\"f ax\",\"ĠSec rets\",\"Ġr uth\",\"we ather\",\"Ġfemin ine\",\"Ġsh am\",\"Ġprest igious\",\"igg ins\",\"Ġs ung\",\"hist ory\",\"ett le\",\"gg ie\",\"Ġout dated\",\"ol and\",\"Ġper ceptions\",\"ĠS ession\",\"ĠDod gers\",\"u j\",\"ĠE ND\",\"D oc\",\"Ġdefic iency\",\"Gr and\",\"ĠJ oker\",\"Ġretro spect\",\"Ġdiagn ostic\",\"Ġharm less\",\"Ġro gue\",\"ĠA val\",\"E qu\",\"Ġtrans c\",\"ĠRoberts on\",\"ĠDep ending\",\"ĠBurn s\",\"iv o\",\"Ġhost ility\",\"F eatures\",\"ĵ ĺ\",\"Ġdis comfort\",\"ĠL CD\",\"spec ified\",\"ĠEx pect\",\"3 40\",\"Ġimper ative\",\"ĠReg ular\",\"Ch inese\",\"Ġstate wide\",\"Ġsy mm\",\"Ġlo ops\",\"Ġaut umn\",\"N ick\",\"Ġsh aping\",\"Ġqu ot\",\"Ġc herry\",\"ĠCross ref\",\"è¦ ļéĨĴ\",\"Stand ard\",\"he ed\",\"ĠD ell\",\"ĠViet namese\",\"Ġo st\",\"ĠV alkyrie\",\"O A\",\"Ass ad\",\"Ġreb ound\",\"ĠTra ffic\",\"pl aces\",\"æ ĺ\",\"ĠB uc\",\"17 2\",\"Ġshel ters\",\"Ġins isting\",\"ĠCertain ly\",\"ĠKenn eth\",\"ĠT CP\",\"Ġpen al\",\"ĠRe play\",\"he ard\",\"Ġdial ect\",\"iz a\",\"ĠF Y\",\"it cher\",\"ĠD L\",\"Ġspir al\",\"Ġquarterback s\",\"Ġh ull\",\"Ġgo ogle\",\"Ġto dd\",\"ĠSter ling\",\"ĠPl ate\",\"Ġsp ying\",\"mb ol\",\"ĠReal m\",\"ĠPro ced\",\"ĠCr ash\",\"Ġtermin ate\",\"Ġprotest ing\",\"C enter\",\"gu ided\",\"Ġun cover\",\"Ġboy cott\",\"Ġreal izes\",\"s ound\",\"Ġpret ending\",\"ĠV as\",\"19 80\",\"Ġfram ed\",\"Ġ13 9\",\"Ġdesc ended\",\"Ġrehab ilitation\",\"Ġborrow ing\",\"ĠB uch\",\"Ġbl ur\",\"R on\",\"ĠFro zen\",\"en za\",\"Ch ief\",\"ĠP oor\",\"Ġtransl ates\",\"M IN\",\"Ġ2 12\",\"J ECT\",\"Ġerupt ed\",\"Ġsuccess es\",\"S EC\",\"Ġpl ague\",\"Ġg ems\",\"d oms\",\"Ġstret ches\",\"ĠSp y\",\"Ġstory telling\",\"C redit\",\"ĠP ush\",\"Ġtra ction\",\"Ġin effective\",\"ĠL una\",\"Ġt apes\",\"Ġanaly tics\",\"erc ise\",\"Ġprogram mes\",\"ĠCar bon\",\"Ġbeh old\",\"he avy\",\"ĠConserv ation\",\"ĠF IR\",\"Ġs ack\",\"ter min\",\"ric ks\",\"Ġhous ed\",\"Ġunus ually\",\"I ce\",\"Ġexecut ing\",\"ĠMor oc\",\"ed ay\",\"Ġed itions\",\"Ġsm arter\",\"ĠB A\",\"Ġout law\",\"Ġvan ished\",\"ib a\",\"AL SE\",\"ĠSil va\",\"23 8\",\"C ould\",\"Ġphilos opher\",\"Ġevac uated\",\"Sec ret\",\"14 2\",\"Ġvis as\",\"ãĤ ¬\",\"ĠM alt\",\"ĠClear ly\",\"ĠN iger\",\"ĠC airo\",\"ĠF ist\",\"3 80\",\"ĠX ML\",\"aut o\",\"it ant\",\"Ġrein forced\",\"Rec ord\",\"ĠSurviv or\",\"G Hz\",\"Ġscrew s\",\"parent s\",\"Ġo ceans\",\"ma res\",\"Ġbra kes\",\"vas ive\",\"Ġhell o\",\"ĠS IM\",\"rim p\",\"Ġo re\",\"ĠArm our\",\"24 7\",\"Ġterr ific\",\"Ġt ones\",\"14 1\",\"ĠMin utes\",\"Ep isode\",\"Ġcur ves\",\"Ġinflamm atory\",\"Ġbat ting\",\"ĠBeaut iful\",\"L ay\",\"Ġunp op\",\"v able\",\"Ġr iots\",\"ĠTact ics\",\"b augh\",\"ĠC ock\",\"Ġorg asm\",\"ĠS as\",\"Ġconstruct or\",\"et z\",\"G ov\",\"Ġant agon\",\"Ġthe at\",\"Ġde eds\",\"ha o\",\"c uts\",\"ĠMc Cl\",\"Ġu m\",\"ĠScient ists\",\"Ġgrass roots\",\"ys sey\",\"\\\"] =>\",\"Ġsurf aced\",\"Ġsh ades\",\"Ġneighb ours\",\"Ġad vertis\",\"oy a\",\"Ġmer ged\",\"Up on\",\"Ġg ad\",\"Ġanticip ate\",\"Any way\",\"Ġsl ogan\",\"Ġdis respect\",\"I ran\",\"ĠT B\",\"act ed\",\"Ġsubp oen\",\"medi ately\",\"OO OO\",\"Ġwa iver\",\"Ġvulner abilities\",\"ott esville\",\"ĠHuff ington\",\"J osh\",\"ĠD H\",\"M onday\",\"ĠEll en\",\"K now\",\"x on\",\"it ems\",\"22 8\",\"Ġf ills\",\"ĠN ike\",\"Ġcum ulative\",\"and als\",\"I r\",\"Ġ ì\",\"Ġfr iction\",\"ig ator\",\"Ġsc ans\",\"ĠVi enna\",\"ld om\",\"Ġperform ers\",\"P rim\",\"Ġb idding\",\"M ur\",\"Ġlean ed\",\"ĠPri x\",\"al ks\",\"Ġ[ âĢ¦]\",\"ĠTw itch\",\"ĠDevelop er\",\"ĠG ir\",\"Ġcall back\",\"Ab stract\",\"Ġacc ustomed\",\"Ġfreed oms\",\"ĠP G\",\"ur acy\",\"Ġl ump\",\"is man\",\",, ,,\",\"19 92\",\"ĠR ED\",\"Ġwor m\",\"M atch\",\"ĠPl atinum\",\"I J\",\"ĠOwn er\",\"Tri via\",\"com pl\",\"Ġnew born\",\"Ġfant as\",\"O wn\",\"Ġ19 59\",\"Ġsymp ath\",\"Ġub iqu\",\"Ġoutput s\",\"Ġal lev\",\"Ġpr ag\",\"K evin\",\"Ġfav ors\",\"Ġbur ial\",\"Ġn urt\",\"so lete\",\"c ache\",\"Ġ15 6\",\"Ġunl ocks\",\"te chn\",\"M aking\",\"Ġcon quer\",\"ad ic\",\"æ ĸ\",\"Ġel f\",\"Ġelect orate\",\"ĠKurd s\",\"ĠSt ack\",\"ĠSam urai\",\"Ġâ ĺħ\",\"Ġ{ }\",\"ĠS aid\",\"ĠFall out\",\"Ġkind ness\",\"ĠCustom s\",\"ĠBou levard\",\"Ġhelicop ters\",\"ot ics\",\"ĠVe get\",\"com ment\",\"Ġcritic ised\",\"Ġpol ished\",\"ĠRem ix\",\"ĠC ultural\",\"Ġrec ons\",\"Ġdo i\",\"at em\",\"Sc reen\",\"Ġbar red\",\"Com ments\",\"ĠGener ally\",\"Ġsl ap\",\"7 20\",\"V ari\",\"p ine\",\"Ġem pt\",\"Ġh ats\",\"ĠPlay ing\",\"l ab\",\"a verage\",\"form s\",\"ĠC otton\",\"Ġcan s\",\"ĠD ON\",\"ĠSom alia\",\"C rypt\",\"ĠIncre ases\",\"E ver\",\"mod ern\",\"Ġsur geon\",\"3 000\",\"Ġrandom ized\",\"================================ ================================\",\"B ern\",\"im pl\",\"ĠC OR\",\"Ġpro claim\",\"th ouse\",\"Ġto es\",\"Ġam ple\",\"Ġpres erving\",\"Ġdis bel\",\"gr and\",\"B esides\",\"Ġsil k\",\"ĠPat tern\",\"h m\",\"Ġenter prises\",\"Ġaffidav it\",\"ĠAdvis ory\",\"Ġadvert ised\",\"ĠRel igious\",\"se ctions\",\"psy ch\",\"ĠField s\",\"aw ays\",\"Ġhasht ag\",\"ĠNight mare\",\"Ġv ampire\",\"Ġfore nsic\",\"rosso ver\",\"n ar\",\"Ġn avy\",\"Ġvac ant\",\"ĠD uel\",\"Ġhall way\",\"Ġface book\",\"ident ally\",\"ĠN RA\",\"Ġm att\",\"Ġhur ricane\",\"ĠKir by\",\"ĠP uzzle\",\"Ġsk irt\",\"ou st\",\"du llah\",\"Ġanal ogy\",\"in ion\",\"Ġtomat oes\",\"ĠN V\",\"ĠPe ak\",\"ĠMe yer\",\"Ġappoint ments\",\"Ġm asc\",\"Ġal ley\",\"re hend\",\"Ġchar ities\",\"Ġund o\",\"Ġdest inations\",\"ĠTest ing\",\"\\\"> </\",\"Ġdest ined\",\"Ġimp lements\",\"ĠHar old\",\"RE CT\",\"Ġoptim ization\",\"Ġkilomet res\",\"Ġc md\",\"Ġimpair ment\",\"Ġun successful\",\"Ġswift ly\",\"ĠGlas gow\",\"art en\",\"ĠSh ares\",\"ĠAn swer\",\"ĠAl bum\",\"Ġnut ritional\",\"ãĥ ĸ\",\"ĠF ut\",\"Ġbl oc\",\"ĠN FC\",\"Ġwholes ale\",\"ĠC W\",\"Ġneg lected\",\"Ġlaun cher\",\"Ġannounce ments\",\"OU LD\",\"com b\",\"Ġrot ating\",\"Ġrest s\",\"ĠT icket\",\"ched el\",\"L ou\",\"ĠV ic\",\"Ġ\\\" '\",\"Ġtem plates\",\"Ġrepl aces\",\"Ar c\",\":: ::\",\"ĠGil bert\",\"Ġillness es\",\"Ġsched ules\",\"Ġheter osexual\",\"L INE\",\"Ġhere in\",\"Ġco erc\",\"Ġdecre asing\",\"Ġde portation\",\"s udo\",\"ĠInd igenous\",\"Ġweigh s\",\"Al ong\",\"' );\",\"ĠBeng als\",\"70 7\",\"Ġjoint s\",\"ver ts\",\"Ġ14 9\",\"na ire\",\"Ġsimpl est\",\"Ġl ore\",\"10 80\",\"f iction\",\"ĠDat abase\",\"Ġreserv ation\",\"Ġs ou\",\"Ġsan ctuary\",\"aud io\",\"ap le\",\"Ġveget arian\",\"Ġanticip ation\",\"m icro\",\"Ġend uring\",\"Ġdepart ed\",\"Ġsidew alk\",\"Ġprohib its\",\"ĠF ont\",\"Ġcomp ute\",\"ĠS ect\",\"Ġ15 8\",\"B attle\",\"Ġbom ber\",\"Ġdist raction\",\"Ġend ured\",\"Ġpractition ers\",\"Ġdistur bed\",\"Ġdr ank\",\"ord ered\",\"Ġsurpr ises\",\"se at\",\"Sec urity\",\"ĠW isdom\",\"og o\",\"Ġsub paragraph\",\"ĠPen insula\",\"ĠOrig ins\",\"ire n\",\"ĠP av\",\"igg le\",\"Ġgrat itude\",\"ĠG ravity\",\"over ty\",\"im an\",\"ct r\",\"ĠCa esar\",\"c ould\",\"g em\",\"Ġsk ies\",\"Ġch amp\",\"Ġagree ing\",\"F amily\",\"D iv\",\"17 6\",\"Ġmess y\",\"um ption\",\"F ederal\",\"ern o\",\"ĠCh at\",\"Bey ond\",\"Ġdev ote\",\"ĠW alsh\",\"Ġdump ed\",\"Ġaccum ulation\",\"st ad\",\"hib ition\",\"Ġsm okers\",\"Ġinspect or\",\"F rench\",\"iss an\",\"ĠV ita\",\"Ġresearch ing\",\"R AM\",\"ĠCelt ics\",\"Ġcl oak\",\"ĠTer ra\",\"M ary\",\"so ld\",\"ĠD OM\",\"mod s\",\"Int el\",\"Ġmult itude\",\"ĠImpro ved\",\"Ġrel iance\",\"Ġartif act\",\"Ġalarm ing\",\"P rom\",\"h on\",\"T ION\",\"med ium\",\"Ġref lex\",\"ĠEx cel\",\"Ġweaken ed\",\"16 3\",\"2 24\",\"Ġcost umes\",\"Ġunique ly\",\"Ġs orrow\",\"Ġm ansion\",\"w p\",\"Ġsal v\",\"ĠGro ve\",\"bs p\",\"ĠSn iper\",\"ĠSh ipping\",\"ĠP OW\",\"Ġund is\",\"Ġbrand ing\",\"G irl\",\"ĠAh mad\",\"ĠL akes\",\"ĠCore y\",\"Ġinherit ance\",\"ener y\",\"Ġpack ing\",\"ĠP rest\",\"D est\",\"F W\",\"Ġregul ator\",\"l ocked\",\"Ġcont ested\",\"ĠMel issa\",\"ĠD uc\",\"Ġunpop ular\",\"Ġst acked\",\"Ġ19 17\",\"Ġyear ly\",\"Ġst are\",\"Ġassess ing\",\"Ã ¸\",\"Ġbe verages\",\"Ġcompet itions\",\"Ġstreng thening\",\"al ong\",\"ĠL ud\",\"Ġmel ted\",\"stan bul\",\"Ġb ounty\",\"EN C\",\"ĠL ands\",\"Ġdecl ares\",\"Ġcustom ize\",\"Ġcomp osite\",\"ãĥ ¬\",\"C M\",\"ograph ics\",\"ĠTem p\",\"Ġcont ender\",\"Ġins ign\",\"ĠL AN\",\"Ġdis asters\",\"ins pired\",\"Ġjud gments\",\"ustain able\",\"urs ion\",\"Ġvar iance\",\"ĠUlt imately\",\"Ġ --------\",\"u ador\",\"ĠR X\",\"Ġmel ting\",\"ĠExt ended\",\"ĠT we\",\"M ajor\",\"ĠB il\",\"Ġsy rup\",\"qu ick\",\"ĠHold er\",\"Ġinnoc ence\",\"U LE\",\"ĠM ight\",\"99 99\",\"Ġf al\",\"Ġcontinu ity\",\"Ġ19 53\",\"ĠB S\",\"st ill\",\"L at\",\"ĠAb use\",\"Ġun supported\",\"xxxx xxxx\",\"Ġinst itute\",\"Ġfrag ment\",\"ĠP ep\",\"W estern\",\"ĠC ause\",\"ĠFr ag\",\"ĠAr s\",\"à ¥\",\"ast ics\",\"Ġb ishop\",\"Ġcross es\",\"Ġ15 4\",\"ĠUp grade\",\"Ġmit igate\",\"ĠRay mond\",\"Mod s\",\"Ġtom ato\",\"Ġst umbled\",\"Ġdiff ers\",\"In itial\",\"ĠR aspberry\",\"Ġign ores\",\"Ġt ant\",\"Ã ł\",\"Ġrel ay\",\"Ġb isexual\",\"Ġconf ession\",\"Ġd ement\",\"in as\",\"ĠHe ather\",\"pl atform\",\"dri ving\",\"bour g\",\"ĠM ush\",\"Ġhy ster\",\"Det ails\",\"Ġdr ift\",\"ĠW ald\",\"ĠLuck ily\",\"or f\",\"Ġexp ire\",\"ĠP unch\",\"zy me\",\"g old\",\"Ġunp aid\",\"ĠT rent\",\"Ġun armed\",\"Ġill icit\",\"ĠT ottenham\",\"Ġsm ash\",\"Intern ational\",\"ink er\",\"Ġst ing\",\"ĠSadd am\",\"ĠAR T\",\"Ġtruth s\",\"b irth\",\"Ġso ber\",\"ĠN it\",\"Ġ ib\",\"Ġus able\",\"Ġst acks\",\"ĠSy lv\",\"Ġnort heast\",\"Ġdom ination\",\"ĠM our\",\"EN SE\",\"ĠMe asure\",\"Ġprogram mer\",\"Ġ< -\",\"18 2\",\"ĠCond ition\",\"Ġback yard\",\"ir ling\",\"ĠJ eb\",\"ĠCre ed\",\"ĠH ang\",\"ĠCOM P\",\"F ER\",\"ĠIs h\",\"Ġdetect ives\",\"------------ ---\",\"ĠMess enger\",\"Ġlo oph\",\"Ġgate way\",\"15 1\",\"ĠMaterial s\",\"ĠD T\",\"Ġdo omed\",\"od o\",\"Ġslic es\",\"Ġemail ed\",\"ĠPer l\",\"Ġren ov\",\"UT H\",\"ody nam\",\"ĠSouth west\",\"get ic\",\"ĠT PP\",\"Ġoptim ism\",\"ĠT ow\",\"ul ators\",\"prot ected\",\"y les\",\"Â «\",\"Ġex ile\",\"en v\",\"P rop\",\"ĠZimmer man\",\"Ù İ\",\"C a\",\"om aly\",\"ãĥ Ĩ\",\"Ġrail road\",\"L ee\",\"23 2\",\"Ġrepl icate\",\"Ġcomfort ably\",\"act ly\",\"Ġr av\",\"Ġtelesc ope\",\"Ġhonest y\",\"ĠPe pper\",\"ĠBr ing\",\"Ġric hest\",\"Ġout doors\",\"Ġh alls\",\"Ġcont end\",\"IS E\",\"Ġsub mitting\",\"Ġna ive\",\"ar ations\",\"Ġ14 3\",\"Ġpo ised\",\"respons ible\",\"Ġsoc ks\",\"ĠSk ull\",\"Quest ion\",\"Ġdiscover ies\",\"Jo ined\",\"ĠEn emies\",\"ĠWire less\",\"ĠRe venge\",\"Ġpuzz les\",\"Ġce ased\",\"29 0\",\"cript ions\",\"ĠCon sole\",\"Ġbo iling\",\"Ġdisc rep\",\"Ġded uction\",\"Ġar senal\",\"XX XX\",\"ĠAm sterdam\",\"rox imately\",\"ĠSh ane\",\"Ġpos ing\",\"ĠACL U\",\"ĠCompan ies\",\"Ġthe ology\",\"ĠU g\",\"qu arter\",\"ĠH ank\",\"Co in\",\"ĠL v\",\"Ġalleg ation\",\"ĠAv oid\",\"Ġindef initely\",\"Ġcommod ities\",\"Ġbr ig\",\"ĠMan it\",\"Ġt enth\",\"met hod\",\"ĠKn icks\",\"ĠâĢ İ\",\"Ġinv oked\",\"D ial\",\"AR A\",\"Ġc aucus\",\"22 7\",\"ĠJ ab\",\"Ġoun ces\",\"b ay\",\"Ġbud dy\",\"f an\",\"23 4\",\"ĠH il\",\"ad h\",\"ĠT Y\",\"ĠIN D\",\"Ġ19 39\",\"Ġiter ation\",\"ĠGonz alez\",\"ĠV ert\",\"ĠI O\",\"em b\",\"re ra\",\"en ch\",\"ĠRequ irements\",\"ĠW ins\",\"Ġlivest ock\",\"h ours\",\"\\\" âĢ¦\",\"b ral\",\"M arg\",\"ĠD one\",\"Ġwas ting\",\"ing ed\",\"g roups\",\"Ġw ishing\",\"ĠT umblr\",\"Ġt apping\",\"Ġnational ism\",\"ĠB yr\",\"Ġsqu ares\",\"ĠAct ions\",\"ãĥ ¥\",\"In side\",\"deb ug\",\"Ġapp end\",\"Ġstub born\",\"ĠC ind\",\"T ell\",\"Ġt earing\",\"ĠRe y\",\"or c\",\"ĠDay ton\",\"ĠN H\",\"ĠMad ness\",\"Ch arl\",\"ĠMor rison\",\"fil ter\",\"Ġacc use\",\"Ġ. /\",\"Ġtor rent\",\"Ġdecl ines\",\"g allery\",\"M ine\",\"Ġneg otiation\",\"ĠBash ar\",\"op ia\",\"19 93\",\"em ort\",\"ĠNo vel\",\"ĠF ang\",\"ers ive\",\"ĠInst ant\",\"Ġroll er\",\"A round\",\"ĠElect ions\",\"G ames\",\"Ġin expensive\",\"Ġwor s\",\"Ġv ul\",\"ĠH ole\",\"Ġunbeliev able\",\"Ġn ause\",\"Ġent r\",\"bo at\",\"ĠST E\",\"Ġbus h\",\"ĠHass an\",\"Ġw o\",\"Ġpa used\",\"ĠM ig\",\"l ived\",\"Ġsc out\",\"Ġl ith\",\"Pub lished\",\"du ino\",\"c ool\",\"Ġcirc ulating\",\"id as\",\"ĠP am\",\"viol ent\",\"ĠCraw ford\",\"udd le\",\"ĠLet ters\",\"Gu ard\",\"mor ph\",\"Ġwand ering\",\"Ġsoph omore\",\"Ġque er\",\"ĠBl ind\",\"r ue\",\"ĠMar riage\",\"D om\",\"Ġpadd ing\",\"Ġfold ers\",\"Ġmeaning less\",\"Ġcandid acy\",\"af ort\",\"Ġwhistle bl\",\"ĠIdent ified\",\"Ġcig ar\",\"Ġh id\",\"ĠDub ai\",\"Ġpost ure\",\"Ġh iking\",\"ĠTermin al\",\"Legend ary\",\"ĠT P\",\"ĠAT K\",\"ĠStar bucks\",\"ĠR iot\",\"19 91\",\"ĠBott om\",\"e ffic\",\"ĠEug ene\",\"ĠWy oming\",\"ĠRock y\",\"Ġsal mon\",\"Ġmet ro\",\"Ġb ilateral\",\"Ġcelebr ates\",\"L ength\",\"b illion\",\"B at\",\"Ġre leg\",\"Ġpse udo\",\"D T\",\"ĠRh ode\",\"P arent\",\"ple tion\",\"Ġatt ribut\",\"Ġtun ing\",\"ĠNOT E\",\"ĠRe bel\",\"ic us\",\"F und\",\"Ġcock tail\",\"Ġ5 01\",\"Ġsp oon\",\"Ġbrut ality\",\"Ġun ite\",\"Ġmicro bi\",\"ĠRe ich\",\"pos itive\",\"Ġam azed\",\"ĠN T\",\"D esc\",\"ECT ION\",\"Ġfalse ly\",\"ĠHigh lander\",\"ĠC rist\",\"ĠVictor ian\",\"Ġdistribut ions\",\"the ir\",\"ĠE instein\",\"Ġp od\",\"Ġepid em\",\"Ġhe ap\",\"ĠR anch\",\"Ġan them\",\"Ġre app\",\"ĠAub urn\",\"Ġconc urrent\",\"ĠThrough out\",\"ĠP OST\",\"â ĺ\",\"Ġhom emade\",\"k ick\",\"B eg\",\"Ġch assis\",\"c ounter\",\"Ġmer ger\",\"Ġl aps\",\"2 17\",\"un ion\",\"ĠTr igger\",\"Ġdeb ated\",\"Ġsil ently\",\"Ġrest raint\",\"B al\",\"0000 000\",\"Ġform idable\",\"ĠFil ip\",\"Ġsacrific es\",\"F ood\",\"Ġdwar f\",\"ĠSe qu\",\"in ian\",\"More over\",\"Ġtang ible\",\"ops is\",\"ĠMine craft\",\"ĠRegist ration\",\"o an\",\"Ġrepresent ations\",\"Ġth irst\",\"Ġcor p\",\"ire ment\",\"M ade\",\"l oe\",\"> \\\"\",\"c ats\",\"* .\",\"Ġgest ures\",\"gener al\",\"Le ague\",\"Ġpack ets\",\"ĠInspect or\",\"ĠBer g\",\"Ġfraud ulent\",\"Ġcritic ize\",\"F un\",\"Ġbl aming\",\"nd ra\",\"Ġsl ash\",\"ĠE ston\",\"Ġpropos ing\",\"Ġwh ales\",\"Ġtherap ist\",\"Ġsub set\",\"Ġle isure\",\"EL D\",\"ĠC VE\",\"ĠAct ivity\",\"Ġcul min\",\"sh op\",\"ĠD AY\",\"is cher\",\"ĠAdmir al\",\"ĠAtt acks\",\"Ġ19 58\",\"Ġmem oir\",\"Ġfold ed\",\"Ġsex ist\",\"Ġ15 3\",\"ĠL I\",\"Ġread ings\",\"Ġembarrass ment\",\"ĠEmploy ment\",\"w art\",\"ch in\",\"Ġcontin uation\",\"l ia\",\"Rec ently\",\"Ġd uel\",\"Ġevac uation\",\"ĠKash mir\",\"Ġdis position\",\"ĠR ig\",\"Ġbol ts\",\"Ġins urers\",\"4 67\",\"M ex\",\"Ġret aliation\",\"Ġmis ery\",\"Ġunre asonable\",\"r aining\",\"I mm\",\"ĠP U\",\"em er\",\"Ġgen ital\",\"ãĤ ³\",\"ĠC andy\",\"Ġon ions\",\"ĠP att\",\"lin er\",\"Ġconced ed\",\"Ġf a\",\"Ġfor c\",\"ĠH ernandez\",\"ĠGe off\",\"deb ian\",\"ĠTe ams\",\"Ġc ries\",\"Ġhome owners\",\"23 7\",\"A BC\",\"Ġst itch\",\"Ġstat istic\",\"Ġhead ers\",\"ĠBi ology\",\"Ġmot ors\",\"ĠG EN\",\"ĠL ip\",\"Ġh ates\",\"Ġhe el\",\"S elf\",\"i pl\",\"ED IT\",\"ort ing\",\"Ġann ot\",\"ĠSpe ech\",\"old emort\",\"ĠJ avascript\",\"ĠLe Bron\",\"Ġfoot print\",\"Ġf n\",\"Ġseiz ures\",\"n as\",\"h ide\",\"Ġ19 54\",\"ĠBe e\",\"ĠDecl aration\",\"ĠKat ie\",\"Ġreserv ations\",\"N R\",\"f emale\",\"Ġsatur ated\",\"Ġb iblical\",\"Ġtroll s\",\"Dev ice\",\"ph otos\",\"Ġdr ums\",\"ãĥīãĥ© ãĤ´ãĥ³\",\"N ight\",\"f ighter\",\"ĠH ak\",\"ri ber\",\"Ġc ush\",\"Ġdiscipl inary\",\"ba um\",\"ĠG H\",\"ĠSch midt\",\"ilib rium\",\"Ġs ixty\",\"ĠKush ner\",\"ro ts\",\"Ġp und\",\"ĠR ac\",\"Ġspr ings\",\"Ġcon ve\",\"Bus iness\",\"F all\",\"Ġqual ifications\",\"Ġvers es\",\"Ġnarc iss\",\"ĠK oh\",\"ĠW ow\",\"ĠCharl ottesville\",\"ed o\",\"Ġinterrog ation\",\"ĠW ool\",\"36 5\",\"B rian\",\"Ġâľ ĵ\",\"Ġalleg es\",\"ond s\",\"id ation\",\"ĠJack ie\",\"y u\",\"Ġl akes\",\"Ġworth while\",\"Ġcryst als\",\"ĠJud a\",\"Ġcomp rehend\",\"Ġfl ush\",\"Ġabsor ption\",\"ĠO C\",\"Ġfright ened\",\"ĠCh ocolate\",\"Mart in\",\"Ġbu ys\",\"Ġbu cks\",\"Ġapp ell\",\"ĠChampions hips\",\"Ġlist ener\",\"ĠDef ensive\",\"Ġc z\",\"ud s\",\"ĠM ate\",\"Ġre play\",\"Ġdecor ated\",\"Ġs unk\",\"ĠV IP\",\"ĠAn k\",\"Ġ19 5\",\"aa aa\",\"Nob ody\",\"ĠMil k\",\"ĠG ur\",\"ĠM k\",\"ĠS ara\",\"Ġse ating\",\"ĠW id\",\"Tr ack\",\"Ġemploy s\",\"Ġgig antic\",\"AP P\",\"ãĤ §\",\"in ventory\",\"Ġtow el\",\"at che\",\"l asting\",\"ĠT L\",\"Ġlat ency\",\"Ġkn e\",\"B er\",\"me aning\",\"Ġup held\",\"Ġplay ground\",\"Ġm ant\",\"S ide\",\"Ġstere o\",\"Ġnorth west\",\"Ġexception ally\",\"Ġr ays\",\"Ġrec urring\",\"D rive\",\"Ġup right\",\"Ġab duct\",\"ĠMar athon\",\"Ġgood bye\",\"Ġal phabet\",\"h p\",\"Ġcourt room\",\"ring ton\",\"ot hing\",\"T ag\",\"Ġdiplom ats\",\"Ġbar bar\",\"ĠAqu a\",\"18 3\",\"33 33\",\"Ġmat urity\",\"Ġinst ability\",\"ĠAp ache\",\"Ġ= ==\",\"Ġfast ing\",\"ĠGr id\",\"Mod Loader\",\"Ġ15 2\",\"A bs\",\"ĠOper ating\",\"ett i\",\"Ġacqu aint\",\"Don nell\",\"ĠK em\",\"ĠFor ge\",\"Ġarm ored\",\"M il\",\"Ġphilos ophers\",\"in vest\",\"Pl ayers\",\"â Ī\",\"Ġmy riad\",\"Ġcomr ades\",\"R ot\",\"Ġremember ing\",\"Ġcorrespond s\",\"Ġprogram mers\",\"ĠLyn n\",\"Ġo lig\",\"Ġco herent\",\"yn chron\",\"ĠChem ical\",\"Ġj ugg\",\"p air\",\"post s\",\"E ye\",\"ĠIn ner\",\"Ġsem ester\",\"ott est\",\"ĠEmir ates\",\"ric anes\",\"or ously\",\"m its\",\"ĠW is\",\"Ġd odge\",\"l ocation\",\"Ġf aded\",\"Am azon\",\"ĠPro ceed\",\"ĠIN FO\",\"j ournal\",\"ĠTru ck\",\"T en\",\"Ġ2 17\",\"Ġstat utes\",\"m obile\",\"ĠT ypes\",\"Rec omm\",\"b uster\",\"pe x\",\"Ġleg ends\",\"Ġhead ache\",\"f aced\",\"ĠWi Fi\",\"if ty\",\"ĠH ER\",\"Ġcirc uits\",\"ER ROR\",\"22 6\",\"ol in\",\"Ġcyl inder\",\"osp ace\",\"ik ers\",\"P rem\",\"Qu ant\",\"Ġconflic ting\",\"Ġslight est\",\"Ġfor ged\",\"ion age\",\"Step hen\",\"ĠK ub\",\"ĠOpp ortun\",\"ĠHe al\",\"Ġbl o\",\"Ġrul ers\",\"Ġh uh\",\"Ġsubmar ine\",\"f y\",\"ass er\",\"Ġallow ance\",\"ĠKas ich\",\"ĠT as\",\"ĠAustral ians\",\"Forge ModLoader\",\"ĠâĨ ĳ\",\"ĠMat rix\",\"am ins\",\"Ġ12 00\",\"ĠAc qu\",\"23 6\",\"D ocument\",\"ĠBre aking\",\"19 3\",\"ĠSub st\",\"ĠRoll er\",\"ĠPro perties\",\"ĠN I\",\"t ier\",\"Ġcr ushing\",\"Ġadvoc ating\",\"Further more\",\"keep ers\",\"Ġsex ism\",\"x d\",\"Ġcall er\",\"ĠS ense\",\"chie ve\",\"ĠT F\",\"Ġfuel ed\",\"Ġreminis cent\",\"Ġobs ess\",\"ur st\",\"Ġup hold\",\"ĠF ans\",\"het ics\",\"Ġâ Ĺ\",\"ĠB ath\",\"Ġbe verage\",\"Ġo scill\",\"25 4\",\"Ġpol es\",\"Ġgrad ual\",\"Ġex ting\",\"ĠS uff\",\"ĠS uddenly\",\"Ġlik ing\",\"Ġ19 49\",\"un ciation\",\"am ination\",\"ĠO mar\",\"ĠL V\",\"ĠCon sequently\",\"Ġsynt hes\",\"ĠG IF\",\"Ġp ains\",\"Ġinteract ing\",\"u ously\",\"inc re\",\"Ġrum or\",\"ĠScient ology\",\"19 7\",\"ĠZ ig\",\"Ġspe lling\",\"ĠA SS\",\"Ġexting u\",\"ms on\",\"Ġg h\",\"Ġremark ed\",\"ĠStrateg ic\",\"ĠM ON\",\"å ¥\",\"g ae\",\"ĠWH AT\",\"E ric\",\"ĠCamp us\",\"Ġmeth ane\",\"Ġimag in\",\"J UST\",\"ĠAl m\",\"X T\",\"i q\",\"ĠR SS\",\"Ġwrong doing\",\"att a\",\"Ġbig ot\",\"Ġdemonstr ators\",\"ĠCal vin\",\"ĠV illa\",\"Ġmembr ane\",\"ĠAw esome\",\"Ġbenef ic\",\"26 8\",\"Ġmagn ificent\",\"ĠL ots\",\"G reg\",\"ĠBor is\",\"Ġdetain ees\",\"ĠH erman\",\"Ġwhis pered\",\"Ġa we\",\"Prof essor\",\"fund ing\",\"Ġphys iological\",\"ĠDest ruction\",\"Ġlim b\",\"Ġmanip ulated\",\"Ġbub bles\",\"Ġpse ud\",\"Ġhyd ra\",\"ĠBrist ol\",\"Ġst ellar\",\"ĠExp ansion\",\"ĠK ell\",\"ĠInterest ingly\",\"Ġm ans\",\"Ġdrag ging\",\"Ġec ological\",\"ĠF it\",\"Ġg ent\",\"Ġbenef ited\",\"ĠHait i\",\"Ġpoly g\",\"ãĥ İ\",\"Ġ20 30\",\"Ġpro w\",\"Ġrecon struction\",\"Ġwas t\",\"Ġpsych ic\",\"ĠGree ks\",\"Hand ler\",\"16 2\",\"ĠP ulse\",\"Ġsol icit\",\"Ġsy s\",\"Ġinflu x\",\"ĠG entle\",\"per cent\",\"Ġprolifer ation\",\"Ġtax able\",\"Ġdisreg ard\",\"Ġesc aping\",\"Ġg inger\",\"Ġwith stand\",\"Ġdevast ated\",\"ĠD ew\",\"ser ies\",\"Ġinject ed\",\"ela ide\",\"Ġturn over\",\"he at\",\"Ļ Ĥ\",\"H appy\",\"ĠSil ent\",\"ãĤ Ń\",\"iv ism\",\"Ġir rational\",\"AM A\",\"Ġre ef\",\"r ub\",\"Ġ16 2\",\"Ġbank ers\",\"ĠEth ics\",\"v v\",\"Ġcritic isms\",\"K n\",\"18 6\",\"M ovie\",\"ĠT ories\",\"Ġno od\",\"Ġdist ortion\",\"F alse\",\"od ore\",\"Ġt asty\",\"Res earch\",\"ĠU ID\",\"- )\",\"Ġdivor ced\",\"ĠM U\",\"ĠHay es\",\"ĠIs n\",\"ian i\",\"ĠH Q\",\"Ġ\\\" #\",\"ign ant\",\"Ġtra umatic\",\"ĠL ing\",\"H un\",\"Ġsab ot\",\"on line\",\"r andom\",\"Ġren amed\",\"ra red\",\"K A\",\"d ead\",\"Ã© t\",\"ĠAss istance\",\"Ġse af\",\"++++ ++++\",\"Ġse ldom\",\"ĠWeb b\",\"Ġbo olean\",\"u let\",\"Ġref rain\",\"ĠDI Y\",\"ru le\",\"Ġshut ting\",\"Ġutil izing\",\"load ing\",\"ĠPar am\",\"co al\",\"oot er\",\"Ġattract ing\",\"ĠD ol\",\"Ġher s\",\"ag netic\",\"ĠRe ach\",\"im o\",\"Ġdisc arded\",\"ĠP ip\",\"01 5\",\"Ã¼ r\",\"Ġm ug\",\"Im agine\",\"C OL\",\"Ġcurs ed\",\"ĠSh ows\",\"ĠCurt is\",\"ĠSach s\",\"spe aking\",\"ĠV ista\",\"ĠFram ework\",\"ong o\",\"Ġsub reddit\",\"Ġcr us\",\"ĠO val\",\"R ow\",\"g rowing\",\"Ġinstall ment\",\"Ġgl ac\",\"ĠAdv ance\",\"EC K\",\"ĠLGBT Q\",\"LE Y\",\"Ġac et\",\"Ġsuccess ive\",\"ĠNic ole\",\"Ġ19 57\",\"Qu ote\",\"Ġcircumst ance\",\"ack ets\",\"Ġ14 2\",\"ort ium\",\"Ġguess ed\",\"ĠFr ame\",\"Ġperpet rators\",\"ĠAv iation\",\"ĠBen ch\",\"Ġhand c\",\"A p\",\"Ġ19 56\",\"25 9\",\"r and\",\"Net Message\",\"d in\",\"urt les\",\"h ig\",\"ĠV III\",\"ff iti\",\"ĠSw ords\",\"b ial\",\"Ġkidn apping\",\"dev ice\",\"Ġb arn\",\"ĠEl i\",\"auc as\",\"S end\",\"Con structed\",\"ĠÂ ½\",\"Ġneed les\",\"Ġad vertisements\",\"Ġv ou\",\"Ġexhib ited\",\"ĠFort ress\",\"As k\",\"B erry\",\"TY PE\",\"Ġcan cers\",\"ump ing\",\"ĠTerrit ory\",\"Ġpr ud\",\"Ġn as\",\"Ġathe ist\",\"Ġbal ances\",\"ãģ Ł\",\"ĠSh awn\",\"& &\",\"Ġland sc\",\"ĠR GB\",\"Ġpet ty\",\"Ġex cellence\",\"Ġtransl ations\",\"Ġpar cel\",\"ĠChe v\",\"E ast\",\"ĠOut put\",\"im i\",\"Ġamb ient\",\"ĠTh reat\",\"Ġvill ains\",\"Ġ5 50\",\"IC A\",\"Ġtall er\",\"Ġle aking\",\"c up\",\"Ġpol ish\",\"Ġinfect ious\",\"ĠK C\",\"Ġ@ @\",\"back ground\",\"Ġbureaucr acy\",\"ĠS ai\",\"un less\",\"it ious\",\"ĠSky pe\",\"At l\",\"ID ENT\",\"00 8\",\"Ġhyp ocr\",\"Ġpit chers\",\"Ġguess ing\",\"ĠF INAL\",\"Bet ween\",\"Ġvill agers\",\"Ġ25 2\",\"f ashion\",\"ĠTun is\",\"Be h\",\"ĠEx c\",\"ĠM ID\",\"28 8\",\"ĠHas kell\",\"19 6\",\"ĠN OR\",\"Ġspec s\",\"Ġinv ari\",\"Ġgl ut\",\"ĠC ars\",\"Ġimp ulse\",\"Ġhon ors\",\"g el\",\"Ġjurisd ictions\",\"ĠBund le\",\"ul as\",\"Calif ornia\",\"ĠIncre ase\",\"Ġp ear\",\"Ġsing les\",\"Ġc ues\",\"Ġunder went\",\"ĠW S\",\"Ġexagger ated\",\"Ġdub ious\",\"Ġfl ashing\",\"L OG\",\") ].\",\"J ournal\",\"t g\",\"V an\",\"ĠI stanbul\",\"ĠIn sp\",\"ĠFrank en\",\"D raw\",\"Ġsad ness\",\"Ġiron ic\",\"ĠF ry\",\"x c\",\"Ġ16 4\",\"is ch\",\"W ay\",\"ĠProtest ant\",\"h orn\",\"Ġun aff\",\"ĠV iv\",\"ill as\",\"ĠProduct ions\",\"ĠH ogan\",\"Ġper imeter\",\"ĠS isters\",\"Ġspont aneous\",\"Ġdown side\",\"Ġdescend ants\",\"Ġor n\",\"w orm\",\"Japan ese\",\"Ġ19 55\",\"Ġ15 1\",\"ĠDo ing\",\"els en\",\"umb les\",\"Ġrad ically\",\"ĠDr um\",\"ĠB ach\",\"Ġli abilities\",\"ĠO B\",\"ĠElement ary\",\"Ġmem e\",\"yn es\",\"Ġfinger print\",\"ĠGr ab\",\"Ġundert ake\",\"Mem bers\",\"ĠRead er\",\"ĠSim s\",\"g od\",\"Ġhypot hetical\",\"s cient\",\"ĠA J\",\"Ġchar ism\",\"Ġad missions\",\"ĠMiss ile\",\"tr ade\",\"Ġexerc ising\",\"ĠBack ground\",\"W ritten\",\"Ġvoc als\",\"whe ther\",\"Ġv i\",\"ĠW inner\",\"Ġl itter\",\"ĠSh ooting\",\"ST EM\",\"ãĤ ¡\",\"ĠA FL\",\"Ġvari ability\",\"Ġe ats\",\"ĠD PS\",\"b row\",\"Ġeleph ants\",\"Ġstr at\",\"Ġ Å\",\"Ġsett lers\",\"Matt hew\",\"Ġin advert\",\"H I\",\"ĠIM F\",\"ĠGo al\",\"Ġnerv es\",\"John son\",\"ey e\",\"ablish ment\",\"Th ursday\",\"BIL ITY\",\"H ad\",\"am oto\",\"het amine\",\"ep s\",\"Ġmit ochond\",\"Ġcomp ressed\",\"ĠTre vor\",\"ĠAnim als\",\"T ool\",\"L ock\",\"Ġtwe ak\",\"Ġpin ch\",\"Ġcancell ation\",\"P ot\",\"Ġfoc al\",\"ĠAst ron\",\"17 3\",\"ĠA SC\",\"ĠO THER\",\"umn i\",\"Ġdem ise\",\"d l\",\"Ù ħ\",\"Sem itism\",\"Ġcr acking\",\"Ġcollabor ative\",\"Ġexpl ores\",\"s ql\",\"Ġher bs\",\"Ġconfig urations\",\"m is\",\"ĠRes ult\",\"ace y\",\"ĠSm oke\",\"Ġsan ct\",\"el ia\",\"Ġdeg ener\",\"Ġdeep est\",\"Ġscream ed\",\"Ġn ap\",\"Soft ware\",\"ĠST AR\",\"E F\",\"ĠX in\",\"spons ored\",\"mans hip\",\"23 3\",\"Ġprim aries\",\"Ġfilter ing\",\"Ġas semble\",\"m il\",\"ĠMy ers\",\"b ows\",\"Ġpun ched\",\"M ic\",\"Ġinnov ations\",\"Ġfun c\",\"and o\",\"Ġfr acking\",\"ĠV ul\",\"Ð¾ Ð\",\"osh op\",\"ĠIm mun\",\"Ġsett ling\",\"Ġadolesc ents\",\"Ġreb uilding\",\"Ġtransform ing\",\"Ġpar ole\",\"Ġhar bor\",\"Ġbook ing\",\"ot ional\",\"onge vity\",\"ĠY o\",\"b ug\",\"Ġemer ges\",\"ĠMethod s\",\"ĠCh u\",\"P res\",\"ĠDun geons\",\"Ġtra iling\",\"ĠR um\",\"ĠH ugh\",\"å¤ ©\",\"ĠE ra\",\"ĠBatt les\",\"Res ults\",\"ĠTr ading\",\"Ġvers a\",\"c ss\",\"ax ies\",\"he et\",\"Ġgre ed\",\"19 89\",\"Ġgard ens\",\"Ġconting ent\",\"P ark\",\"ĠLeaf s\",\"h ook\",\"ro be\",\"Ġdiplom acy\",\"ĠF uel\",\"ĠInv asion\",\"Ġupgr ading\",\"M ale\",\"Ġe lic\",\"Ġrelent less\",\"ĠCo venant\",\"ap esh\",\"ĠT rop\",\"T y\",\"pro duction\",\"art y\",\"Ġpun ches\",\"ak o\",\"cyclop edia\",\"ĠR abbit\",\"ĠHD MI\",\"Ġ14 1\",\"Ġf oil\",\"Item Image\",\"ĠF G\",\"Ġimplement ations\",\"ĠP om\",\"ixt ures\",\"Ġaw ait\",\"Ġ3 30\",\"am us\",\"Ġumb rella\",\"Ġfore see\",\"se par\",\"Ġcircum cision\",\"Ġperipher al\",\"S ay\",\"ĠExper t\",\"In c\",\"Ġwithd rew\",\"ĠAnd ers\",\"f ried\",\"Ġradio active\",\"ĠOp ening\",\"Ġboard ing\",\"ĠN D\",\"Ġover throw\",\"Act iv\",\"W P\",\"ĠAct s\",\"× Ļ\",\"Ġmot ions\",\"v ic\",\"ĠM ighty\",\"ĠDef ender\",\"a er\",\"Ġthank ful\",\"ĠK illing\",\"ĠBr is\",\"mo il\",\"Ġpredict ing\",\"26 6\",\"ch oice\",\"Ġkill ers\",\"Ġinc ub\",\"ĠChe st\",\"ather ing\",\"Ġpro claimed\",\"fl ower\",\"oss om\",\"umbled ore\",\"ĠCy cling\",\"ĠOccup y\",\"AG ES\",\"P en\",\"ĠY ug\",\"Ġpack aged\",\"Ġheight ened\",\"c ot\",\"st ack\",\"C ond\",\"Ġst amps\",\"m age\",\"Ġpersu aded\",\"Ġens l\",\"ĠCard inal\",\"Ġsol itary\",\"Ġpossess ing\",\"ĠC ork\",\"Ġev id\",\"ĠT ay\",\"Ġbl ues\",\"Ġextrem ism\",\"Ġlun ar\",\"Ġcl own\",\"Te chn\",\"Ġfest ivals\",\"ĠPv P\",\"ĠL ar\",\"Ġconsequ ently\",\"p resent\",\"Ġsom eday\",\"ç İĭ\",\"ĠMet eor\",\"Ġtour ing\",\"c ulture\",\"Ġbe aches\",\"S hip\",\"c ause\",\"ĠFl ood\",\"ãĥ ¯\",\"Ġpur ity\",\"th ose\",\"Ġem ission\",\"b olt\",\"Ġch ord\",\"ĠScript ure\",\"L u\",\"Ġ$ {\",\"cre ated\",\"Other s\",\"25 8\",\"Ġelement al\",\"Ġannoy ed\",\"ĠA E\",\"d an\",\"ĠS ag\",\"Res earchers\",\"Ġfair y\",\"âĢĵ âĢĵ\",\"======== ====\",\"Sm art\",\"GG GG\",\"Ġskelet ons\",\"Ġpup ils\",\"link ed\",\"Ġur gency\",\"en abled\",\"ĠF uck\",\"Ġcoun cill\",\"r ab\",\"U AL\",\"T I\",\"Ġlif es\",\"Ġconf essed\",\"B ug\",\"Ġharm on\",\"ĠCON FIG\",\"ĠNe utral\",\"D ouble\",\"Ġst aple\",\"ĠSH A\",\"Brit ish\",\"ĠSN P\",\"AT OR\",\"oc o\",\"Ġswing ing\",\"ge x\",\"ole on\",\"pl ain\",\"ĠMiss ing\",\"ĠTro phy\",\"v ari\",\"ran ch\",\"Ġ3 01\",\"4 40\",\"00000000 00000000\",\"Ġrest oring\",\"Ġha ul\",\"uc ing\",\"ner g\",\"Ġfut ures\",\"Ġstrateg ist\",\"quest ion\",\"Ġlater al\",\"ĠB ard\",\"Ġs or\",\"ĠRhod es\",\"ĠD owntown\",\"????? -\",\"ĠL it\",\"ĠB ened\",\"Ġco il\",\"st reet\",\"ĠPort al\",\"FI LE\",\"ĠG ru\",\"* ,\",\"23 1\",\"ne um\",\"Ġsuck ed\",\"Ġr apper\",\"Ġtend encies\",\"ĠLaure n\",\"cell aneous\",\"26 7\",\"Ġbrow se\",\"Ġover c\",\"head er\",\"o ise\",\"Ġbe et\",\"ĠG le\",\"St ay\",\"Ġm um\",\"Ġtyp ed\",\"Ġdiscount s\",\"T alk\",\"ĠO g\",\"ex isting\",\"ĠS ell\",\"u ph\",\"C I\",\"ĠAust rian\",\"ĠW arm\",\"Ġdismiss al\",\"Ġaver ages\",\"c amera\",\"Ġalleg iance\",\"L AN\",\"=\\\" #\",\"Ġcomment ators\",\"ĠSet ting\",\"ĠMid west\",\"Ġpharm ac\",\"ĠEX P\",\"Ġstain less\",\"Ch icago\",\"Ġt an\",\"24 4\",\"Ġcountry side\",\"ĠV ac\",\"29 5\",\"Ġpin ned\",\"Ġcr ises\",\"Ġstandard ized\",\"T ask\",\"ĠJ ail\",\"ĠD ocker\",\"col ored\",\"f orth\",\"\\\" },\",\"Ġpat rons\",\"Ġsp ice\",\"Ġm ourn\",\"ĠM ood\",\"Ġlaund ry\",\"Ġequ ip\",\"ĠM ole\",\"y ll\",\"ĠTH C\",\"n ation\",\"ĠSher lock\",\"Ġiss u\",\"ĠK re\",\"ĠAmeric as\",\"ĠA AA\",\"Ġsystem atically\",\"Ġcont ra\",\"ĠS ally\",\"Ġrational e\",\"Ġcar riage\",\"Ġpe aks\",\"Ġcontrad iction\",\"ens ation\",\"ĠFail ure\",\"Ġpro ps\",\"Ġnames pace\",\"Ġc ove\",\"field s\",\"ãĤ ĭ\",\"Ġw ool\",\"ĠC atch\",\"Ġpresum ed\",\"ĠD iana\",\"r agon\",\"ig i\",\"Ġh amm\",\"Ġst unt\",\"ĠG UI\",\"ĠObserv atory\",\"ĠSh ore\",\"Ġsmell s\",\"ann ah\",\"Ġcock pit\",\"ĠD uterte\",\"8 50\",\"Ġopp ressed\",\"bre aker\",\"ĠCont ribut\",\"ĠPer u\",\"ĠMons anto\",\"ĠAtt empt\",\"Ġcommand ing\",\"Ġfr idge\",\"ĠR in\",\"ĠChe ss\",\"ual ity\",\"Ġo l\",\"Republic an\",\"ĠGl ory\",\"ĠW IN\",\".... ...\",\"ag ent\",\"read ing\",\"Ġin h\",\"J ones\",\"Ġcl icks\",\"al an\",\"Ġ[ ];\",\"ĠMaj esty\",\"ĠC ed\",\"op us\",\"ate l\",\"Ã ª\",\"AR C\",\"ĠEc uador\",\"ãĥ ł\",\"ĠK uro\",\"Ġritual s\",\"Ġcapt ive\",\"Ġoun ce\",\"Ġdisag reement\",\"Ġsl og\",\"f uel\",\"P et\",\"M ail\",\"Ġexerc ised\",\"Ġsol ic\",\"Ġrain fall\",\"Ġdev otion\",\"ĠAss essment\",\"Ġrob otic\",\"opt ions\",\"ĠR P\",\"ĠFam ilies\",\"ĠFl ames\",\"Ġassign ments\",\"00 7\",\"aked own\",\"Ġvoc abulary\",\"Re illy\",\"Ġc aval\",\"g ars\",\"Ġsupp ressed\",\"ĠS ET\",\"ĠJohn s\",\"Ġwar p\",\"bro ken\",\"Ġstat ues\",\"Ġadvoc ated\",\"Ġ2 75\",\"Ġper il\",\"om orph\",\"ĠF emin\",\"per fect\",\"Ġh atch\",\"L ib\",\"5 12\",\"Ġlif elong\",\"3 13\",\"Ġche eks\",\"Ġnum bered\",\"ĠM ug\",\"B ody\",\"ra vel\",\"We ight\",\"ĠJ ak\",\"ĠHe ath\",\"Ġkiss ing\",\"ĠJ UST\",\"Ġw aving\",\"u pload\",\"Ġins ider\",\"ĠPro gressive\",\"ĠFil ter\",\"tt a\",\"ĠBe am\",\"Ġviol ently\",\"ip ation\",\"Ġskept icism\",\"Ġ19 18\",\"ĠAnn ie\",\"ĠS I\",\"Ġgen etics\",\"Ġon board\",\"at l\",\"ĠFried man\",\"ĠB ri\",\"cept ive\",\"Ġpir ate\",\"ĠRep orter\",\"27 8\",\"Ġmyth ology\",\"Ġe clipse\",\"Ġsk ins\",\"Ġgly ph\",\"ing ham\",\"F iles\",\"C our\",\"w omen\",\"Ġreg imes\",\"Ġphotograp hed\",\"K at\",\"ĠMA X\",\"Offic ials\",\"Ġunexpected ly\",\"Ġimpress ions\",\"F ront\",\";;;; ;;;;\",\"Ġsuprem acy\",\"Ġs ang\",\"Ġaggrav ated\",\"Ġabrupt ly\",\"ĠS ector\",\"Ġexc uses\",\"Ġcost ing\",\"ide press\",\"St ack\",\"ĠR NA\",\"ob il\",\"Ġghost s\",\"ld on\",\"at ibility\",\"Top ics\",\"Ġreim burse\",\"ĠH M\",\"ĠDe g\",\"Ġth ief\",\"y et\",\"ogen esis\",\"le aning\",\"ĠK ol\",\"ĠB asketball\",\"Ġf i\",\"ĠSee ing\",\"Ġrecy cling\",\"Ġ[ -\",\"Cong ress\",\"Ġlect ures\",\"P sy\",\"Ġne p\",\"Ġm aid\",\"Ġori ented\",\"A X\",\"Ġrespect ful\",\"re ne\",\"fl ush\",\"ĠUn loaded\",\"re quest\",\"gr id\",\"ĠAltern atively\",\"ĠHug o\",\"Ġdec ree\",\"ĠBuddh ism\",\"and um\",\"And roid\",\"ĠCong o\",\"ĠJoy ce\",\"Ġacknowled ging\",\"hes ive\",\"ĠTom orrow\",\"ĠH iro\",\"th ren\",\"ĠM aced\",\"Ġho ax\",\"ĠIncre ased\",\"ĠPr adesh\",\"W ild\",\"____ __\",\"16 1\",\"Ġa unt\",\"Ġdistribut ing\",\"ĠT ucker\",\"ĠSS L\",\"ĠW olves\",\"B uilding\",\"ou lt\",\"ĠLu o\",\"ĠY as\",\"ĠSp ir\",\"ĠSh ape\",\"ĠCamb od\",\"ĠIP v\",\"Ġm l\",\"Ġext rad\",\"39 0\",\"ĠPenn y\",\"d ream\",\"Ġstation ed\",\"opt ional\",\"ew orthy\",\". </\",\"Ġundert aking\",\"Ġchick ens\",\"Ġstimul i\",\"ĠEl se\",\"ig ators\",\"ĠBegin ning\",\"ct ory\",\"Ġprep ares\",\"Ġdel ta\",\"Ġvic inity\",\"t ool\",\"Ġworks hops\",\"M Hz\",\"Ġaccus ation\",\"Ġhist ories\",\"rop olis\",\"ĠChurch ill\",\"Ġne on\",\"Ġb aff\",\"d ies\",\"may be\",\"Ġè£ı è¦ļéĨĴ\",\"Ġsympt om\",\"EC H\",\"ĠMan uel\",\"Ġban ana\",\"ĠH B\",\"Ġ ****\",\"ĠKore ans\",\"c oll\",\"F B\",\"Ġpr aying\",\"ĠCann ot\",\"ĠM ile\",\"Ġembr acing\",\"ĠSil k\",\"39 3\",\"ot ers\",\"F D\",\"Ġday light\",\"al ias\",\"ĠBrig ade\",\"ĠHann ah\",\"Ġcler gy\",\"Ġs outheast\",\"Ġalcohol ic\",\"Ġpropos es\",\"liv ion\",\"Ġcalcul ating\",\"Ġstim ulate\",\"Ġspl itting\",\"e ight\",\"ĠInd y\",\"pl ays\",\"ĠP ik\",\"Ġdom est\",\"Ġforg iveness\",\"ĠR ings\",\"pat ient\",\"kins on\",\"M ont\",\"ig ible\",\"; \\\"\",\"Ġperiod ically\",\"amm ad\",\"ĠBr itt\",\"p ard\",\"Ġarbit ration\",\"ĠSchne ider\",\"ĠCorpor ate\",\"ĠMay a\",\"Ġsn akes\",\"a um\",\"Ġbl asted\",\"Ġmyster ies\",\"Ġrev ive\",\"oc amp\",\"ĠD odge\",\"ĠOper a\",\"27 9\",\"Ġor phan\",\"Ġspec ifies\",\"ĠM ets\",\"D uration\",\"H en\",\"Ġfire works\",\"Ġprosec ute\",\"ĠTill erson\",\"d p\",\"us age\",\"l iness\",\"ĠDeb ian\",\"Ġ2 24\",\"ris es\",\"ĠIn fect\",\"at ra\",\"ĠR R\",\"ĠL or\",\"d iff\",\"ĠCharl eston\",\"Ġac oustic\",\"Ġam use\",\"3 30\",\"Ġc er\",\"ĠT ac\",\"Ġ[ +\",\"Ġcard iac\",\"ĠRestaur ant\",\"er gy\",\"Ġf uzz\",\"Ġbit es\",\"Ġhazard ous\",\"Ġbr ighter\",\"r ans\",\"ĠStephan ie\",\"ext ra\",\"RE T\",\"ĠChrist ine\",\"ĠS ue\",\"stat ement\",\"Ġbol ster\",\"Ġant it\",\"Rad io\",\"B IT\",\"ãĤ °\",\"Ġvis ions\",\"ĠCon cept\",\"Ġin line\",\"ĠPhilos ophy\",\"is ans\",\"ĠIr ving\",\"Ã £\",\"t aking\",\"Ġincons ist\",\"ĠKum ar\",\"Ġl ig\",\"ĠSch umer\",\"ĠReg ulations\",\"ĠH z\",\"th ro\",\"ĠV oldemort\",\"ĠM ED\",\"ĠFreder ick\",\"P ad\",\"22 1\",\"Ġalleg ing\",\"ĠCommun ication\",\"Ġ16 7\",\"Ġforecast s\",\"Ġsp iders\",\"Or gan\",\"ĠParticip ants\",\"ĠO ps\",\"des ign\",\"Cl ose\",\"Ġfact o\",\"Ġbom bers\",\"res istant\",\"ateg ories\",\"S chool\",\"Ġhom ework\",\"Ġcor ro\",\"T uesday\",\"ĠBrend an\",\"ĠM X\",\"ĠT S\",\"ĠSt ri\",\"Ġstake holders\",\"ĠMillenn ium\",\"Ġtransfer ring\",\"J ud\",\"Ġt ac\",\"Ġ16 00\",\"ĠSD K\",\"r b\",\"Ġinterpret ations\",\"ĠS G\",\"Ġup stairs\",\"ĠHar vest\",\"Ġvag ina\",\"Ġing est\",\"x f\",\"ĠOr ion\",\"ĠJoe y\",\"Ġsand wic\",\"Ġimm ortal\",\"Ġfl ipped\",\"ort ex\",\"threat ening\",\"Ġsn iper\",\"Ġconver ts\",\"Ġinstall ations\",\"ĠBul gar\",\"ors che\",\"m ails\",\"Ġl ure\",\"Ġnarrow ly\",\"Ġgren ade\",\"ĠG ing\",\"Ġunder wear\",\"------------ --\",\"Ġch ased\",\"ĠV AL\",\"Ġparent ing\",\"ĠH amb\",\"ĠBl az\",\"Ġanarch ist\",\"ĠMed ian\",\"ĠProgram s\",\"Î ½\",\"Ġob j\",\"ĠN okia\",\"orm an\",\"an qu\",\"at ism\",\"op a\",\"Ġfulf illing\",\"Ġpupp y\",\"Ġent it\",\"ĠSebast ian\",\"Ġshoot ers\",\"Ġric her\",\"è ¡\",\"Ġtempt ed\",\"ĠAT T\",\"ĠC V\",\"Ġto re\",\"Res ource\",\"ĠDevil s\",\"40 8\",\"in ational\",\"Ġass urance\",\"ĠDar ren\",\"Ġwh ichever\",\"pos ure\",\"Ġf ury\",\"St ock\",\"Ġunivers ally\",\"resp onse\",\"Ġo ak\",\"Ġwork load\",\"ĠCor ner\",\"ee le\",\"\\\" ...\",\"Ġdepri ved\",\"k owski\",\"Ġcast s\",\"Ġaffili ation\",\"ĠA ch\",\"ĠAs ked\",\"at he\",\"Ġl act\",\"ĠTh u\",\"r m\",\"Ġair lines\",\"Ġnot ions\",\"Form at\",\"ĠF AA\",\"ãĥ Ĭ\",\"dri ver\",\"Ġtrans cend\",\"S ettings\",\"ĠPro secut\",\"Ġsp inal\",\"Ġdefault s\",\"F K\",\"Ġpref ers\",\"rend ered\",\"th us\",\"fil m\",\"Ġt iger\",\"ĠSp icer\",\"rec ogn\",\"ĠRug by\",\"Net work\",\"Ġp ity\",\"Ġcomp artment\",\"c asters\",\"ĠMon roe\",\"Ġ7 20\",\"Ġcorrect ions\",\"Ġdop amine\",\"ĠA Z\",\"C ut\",\"Ġro omm\",\"Ġspec ulate\",\"H ash\",\"Ġrestrict ive\",\"11 11\",\"red ible\",\"on el\",\"Ġramp ant\",\"re ported\",\"ĠSu ite\",\"ĠMin imum\",\"al ys\",\"az ard\",\"lo op\",\"Ġl ent\",\"sh a\",\"Ġv andal\",\"men u\",\"ĠBoe hner\",\"Ġnarr atives\",\"Ġauthent icity\",\"26 9\",\"an ic\",\"d uty\",\"28 5\",\"Ġthank ed\",\"Ġbetray ed\",\"l ift\",\"Ġsouth west\",\"ĠDex ter\",\"ĠB od\",\"Ġkey words\",\"A verage\",\"D IS\",\"Ġethnic ity\",\"! ),\",\"ĠNational s\",\"á ¹\",\"ĠT ah\",\"iox id\",\"Ġwid get\",\"Ġpast a\",\"Ġbill ing\",\"Ġtr ilogy\",\"ĠL ines\",\"Ġsn iff\",\"Ġnep hew\",\"L ate\",\"Ġprinc ip\",\"ĠLo op\",\"ĠMarx ist\",\"Ġdiss olved\",\"Ġcontext s\",\"ĠAm ount\",\"ĠSp ike\",\"Ġtot als\",\"Ġorgan izer\",\"Ġup rising\",\"s hips\",\"Y Y\",\"ĠNort heast\",\"m oney\",\"grad ation\",\"Ġgoal keeper\",\"ĠH ear\",\"Ġste ak\",\"ĠBuzz Feed\",\"Ġsole mn\",\"ĠSc and\",\"Ġpo pping\",\"Ġad here\",\"ĠAl leg\",\"by te\",\"ĠW olver\",\"Ġun in\",\"Ġrec ol\",\"it ud\",\"Ġmim ic\",\"ib us\",\"Ġpredict s\",\"ĠKee per\",\"i ating\",\"Ġde ception\",\"Ġlear nt\",\"Ġdi ary\",\"Ġcond itional\",\"Ġre lic\",\"Ġinv oke\",\"ien ced\",\"å Ī\",\"ĠP ont\",\"Ġcell phone\",\"Ġspeed ing\",\"Ġtack ling\",\"Ġn ude\",\"op ened\",\"ĠMan afort\",\"Ġ19 52\",\"Ġmaj ors\",\"ĠSil ence\",\"Ġlog istics\",\"Ġweight ed\",\"ĠPsych iat\",\"\\\": [\\\"\",\"Ġsick ness\",\"Ġdivid ends\",\"z on\",\"Re lease\",\"ĠKe ys\",\"ĠI ch\",\"Ġen z\",\"ĠF ernand\",\"ĠÎ ±\",\"Ġmean ings\",\"Ġp enny\",\"Ġst ern\",\"Ġl ar\",\"ĠPub lished\",\"Ġback drop\",\"K im\",\"ĠSy nt\",\"Ġdeb uted\",\"w m\",\"ĠIs le\",\"Ġregul ating\",\"ott i\",\"ĠSch olars\",\"ices ter\",\"ĠChe f\",\"Ġpop s\",\"ĠLaun cher\",\"ĠVar ious\",\"Ġcomment ing\",\"os lav\",\"enz ie\",\"Ġrival ry\",\"â Ĥ¬\",\"Re ally\",\"Ġor c\",\"Ġbe an\",\"ĠJud y\",\"Not ice\",\"ĠB ike\",\"? ]\",\"Ġrent ed\",\"st en\",\"Ġfore front\",\"ĠBald win\",\"Ġyield ed\",\"t ails\",\"Pr ime\",\"ĠS ources\",\"ic ator\",\"Se an\",\"Ġmarch ing\",\"Out put\",\"ĠJ ungle\",\"Ġres ide\",\"zz le\",\"ĠAndrew s\",\"Ġtor que\",\"Bas ic\",\"Act ually\",\"st rap\",\"p enter\",\"Ġexam s\",\"ĠY a\",\"Ġ15 9\",\"ĠDec ision\",\"Ġr ansom\",\"ete enth\",\"ens ing\",\"2 13\",\"Ġsun set\",\"40 4\",\"ĠRap id\",\"ĠHe in\",\"ĠAb original\",\"Ġorgan ism\",\"ĠS ever\",\"Ġcl a\",\"aj i\",\"Sim ple\",\"ĠFl avor\",\"ĠE val\",\"pr us\",\"Ġch orus\",\"D AY\",\"Ġden ounced\",\"Ġbi ography\",\"ĠTurn bull\",\"Rec ent\",\"N ormal\",\"lect ions\",\"W ord\",\"Ġf erry\",\"ĠWag ner\",\"h om\",\"Un it\",\"Ġsuper market\",\"ĠS ith\",\"Ġnomine es\",\"Ġdictators hip\",\"idd ler\",\"Ġannoun ces\",\"ĠThe m\",\"ĠNept une\",\"Ġde ity\",\"ĠY i\",\"Ġmon arch\",\"AR R\",\"Ġinv aded\",\"ĠH ok\",\"unt ary\",\"C ertain\",\"eg a\",\"Ġk idding\",\"ĠReg ulation\",\"Ġtr ay\",\"Ġphotograp hers\",\"ĠArc ane\",\"Ġdis charged\",\"Ġevangel ical\",\"Ġinter change\",\"Ġfilm maker\",\"ĠEnd less\",\"Ġ29 0\",\"ĠSalv ador\",\"AS Y\",\"ĠSign al\",\"Ġwr ath\",\"â ľ\",\"l ot\",\"' /\",\"Ġproject ile\",\"Ġemploy ing\",\"ĠInter face\",\"19 1\",\"atell ite\",\"ĠR ath\",\"pack age\",\"Ġindic ations\",\"J ason\",\"Ġarg s\",\"ĠG Hz\",\"Ġt ilt\",\"n ants\",\"w on\",\"ãĤ µ\",\"red d\",\"res cent\",\"ĠCal endar\",\"Ġmod ular\",\"Ġassist ing\",\"Ġred eem\",\"ĠBe an\",\"Ġwor sh\",\"Ġdecentral ized\",\") ...\",\"37 7\",\"Ġarr ays\",\"Ġaccomplish ments\",\"Î ¿\",\"d ot\",\"Ġmut ually\",\"Ġob struct\",\"Ġmis represent\",\"ore st\",\"ion ic\",\"ru ce\",\"% ;\",\"Ġknow ingly\",\"port ing\",\"in ently\",\"A ri\",\"ĠSch ultz\",\"D a\",\"ĠC ere\",\"Ġob solete\",\"ħ ĭ\",\"g ive\",\"Ġb ait\",\"Ġen larg\",\"Ne ill\",\"Ġ19 33\",\"Ġrecons ider\",\"ĠSerge ant\",\"ĠDian e\",\"ĠC ogn\",\"ĠI con\",\"P osition\",\"Ġf ost\",\"Ġstir ring\",\"se ven\",\"ĠSpace X\",\"ugg ets\",\"Ġmed d\",\"G al\",\"ĠS ister\",\"B oy\",\"Ġtrigger ing\",\"T aking\",\"Ġscream s\",\"Ġca usal\",\"Ġaw aken\",\"Ar m\",\"29 7\",\"Ġdisp atched\",\"ĠF ALSE\",\"Ġorgan izational\",\"ĠT ong\",\"Ġdile mma\",\"d emon\",\"S pl\",\"Ġhook s\",\"ud ing\",\"Ġvalid ate\",\"Ġpot ion\",\"Ġcl aw\",\"Ġburg l\",\"Ġqu ir\",\"AC A\",\"ĠBren nan\",\"Ġdur ability\",\"Ġbomb ings\",\"ĠWind ow\",\"Ġculp rit\",\"3 25\",\"There fore\",\"umb ered\",\"per formance\",\"w arts\",\"Ġen forcing\",\"ĠBl ow\",\"Ġre print\",\"if ax\",\"al pha\",\"Ġsin ister\",\"Ġbur ger\",\"fight ing\",\"Sc ore\",\"ĠSt ones\",\"i em\",\"40 5\",\"che my\",\"Ġvine gar\",\"n om\",\"Ġprev ailing\",\"ĠLat est\",\"Â ¶\",\"Ġb a\",\"ĠWrit er\",\"Ġ17 7\",\"ĠCon way\",\"Ġcollect s\",\"Ġquant itative\",\"Ġhor rors\",\"og ens\",\"ĠSl ov\",\"Ġl ays\",\"h aw\",\"ĠSl ash\",\"Ġnight club\",\"ĠDav ies\",\"Ġbr ide\",\"ĠScar let\",\"y mm\",\"ĠApplic ations\",\"vel ength\",\"Ġrev ival\",\"Ġsoft ly\",\"Ġz oo\",\"ita ire\",\"C ur\",\"Ġelect rom\",\"Ġplant ing\",\"OT O\",\"ĠE lements\",\"Ġsw allow\",\"por ter\",\"Ġlapt ops\",\"Ġpe anut\",\"Ġlobby ists\",\"Î ²\",\"Pan el\",\"ĠJo an\",\"im il\",\"t nc\",\"Ġresist ed\",\"Ġout we\",\"Ġret aining\",\"at ri\",\"Ġpo orer\",\"ĠSyri ans\",\"ĠHam mond\",\"Ġwe ld\",\"ud er\",\"top ic\",\"ĠT T\",\"ric ia\",\"Ġth ieves\",\"L ic\",\"ĠG ust\",\"ĠW ays\",\"are th\",\"24 3\",\"Ġbroad caster\",\"sh ield\",\"ass ium\",\"ub le\",\"Ġairst rikes\",\"on so\",\"Ġped al\",\"Ġcollect ors\",\"ĠV ander\",\"ĠMes a\",\"Ġdict ator\",\"Ġd ir\",\"ent on\",\"c art\",\"sc ore\",\"ad der\",\"C ry\",\"Ġs sh\",\"gg er\",\"Ġdrunk en\",\"ĠG S\",\"ĠSe at\",\"Ġcorner back\",\"Ġsk ipped\",\"ĠRes earchers\",\"ĠAud i\",\"Ref erence\",\"Ġhaun ted\",\"Ã «\",\"ĠClin ic\",\"c z\",\"Ġp s\",\"ĠPal adin\",\"ĠRec ipe\",\"Ġst igma\",\"opp y\",\"Ġmon keys\",\"ĠHaw k\",\"S ad\",\"\\\" />\",\"ĠWorks hop\",\"ĠRet ail\",\"ĠAv atar\",\"6 25\",\"N a\",\"ĠV C\",\"ĠSec ure\",\"M Y\",\"19 88\",\"oss ip\",\"Ġpro state\",\"Ġund en\",\"Ġg amer\",\"ĠCont ents\",\"ĠWar hammer\",\"ĠSent inel\",\"3 10\",\"Ġse gregation\",\"ĠF lex\",\"ĠM AY\",\"Ġdr ills\",\"ĠDrug s\",\"Islam ic\",\"Ġsp ur\",\"Ġca fe\",\"Ġimag inary\",\"Ġgu iding\",\"Ġsw ings\",\"ĠThe me\",\"ob y\",\"Ġn ud\",\"Ġbe gging\",\"Ġstr ongh\",\"Ġreject ing\",\"Ġpedest rians\",\"ĠPro spect\",\"R are\",\"s le\",\"Ġconcess ions\",\"ĠConst itutional\",\"Ġbe ams\",\"Ġfib ers\",\"p oon\",\"Ġinstinct s\",\"pro perty\",\"ĠB IG\",\"Sand ers\",\"im ates\",\"Ġco ating\",\"Ġcorps es\",\"ĠTR UE\",\"check ed\",\"Ġ16 6\",\"A sh\",\"ĠJ S\",\"ĠF iction\",\"Ġcommun al\",\"Ġener getic\",\"oooo oooo\",\"Ġnow adays\",\"IL D\",\"ib o\",\"ĠSU V\",\"R en\",\"Ġdwell ing\",\"Sil ver\",\"Ġt ally\",\"ĠM oving\",\"Ġcow ard\",\"Ġgener als\",\"Ġhorn s\",\"Ġcirc ulated\",\"Ġrob bed\",\"ĠUn limited\",\"Ġharass ed\",\"Ġinhib it\",\"Ġcomp oser\",\"ĠSpot ify\",\"Ġspread s\",\"3 64\",\"Ġsu icidal\",\"Ġno ises\",\"ĠSt ur\",\"Ġs aga\",\"ĠK ag\",\"is o\",\"Ġtheoret ically\",\"M oney\",\"Ġsimilar ity\",\"Ġslic ed\",\"ut ils\",\"ing es\",\"\\\" -\",\"Ġan th\",\"Ġimp ed\",\"Mod ule\",\"Through out\",\"Ġmen us\",\"comm ittee\",\"and i\",\"ob j\",\"in av\",\"f ired\",\"ĠAb dullah\",\"Ġund ead\",\"Ġfont s\",\"H old\",\"EN G\",\"Ġsustain ability\",\"Ġfl ick\",\"Ġr azor\",\"ĠF est\",\"ĠChar acters\",\"Ġword ing\",\"Ġpopul ist\",\"Ġcritic izing\",\"Ġm use\",\"v ine\",\"Ġcard board\",\"Ġkind ly\",\"Ġfr inge\",\"ĠThe ft\",\"icult ural\",\"Ġgovern ors\",\"Ġ ï¿½ï¿½ï¿½ï¿½\",\"Ġ16 3\",\"Ġtime out\",\"ĠA uth\",\"Child ren\",\"A U\",\"Ġred emption\",\"ĠAl ger\",\"Ġ19 14\",\"Ġw aved\",\"Ġastron auts\",\"og rams\",\"Ġsw amp\",\"ĠFinn ish\",\"Ġcand le\",\"Ġton nes\",\"ut m\",\"Ġr ay\",\"Ġsp un\",\"Ġfear ful\",\"art icles\",\"Ġca us\",\"or ically\",\"ĠRequ ires\",\"ĠG ol\",\"Ġpop e\",\"Ġinaug ural\",\"Ġg le\",\"AD A\",\"ĠIS IL\",\"ĠOff ensive\",\"Ġwatch dog\",\"Ġbal con\",\"ent ity\",\"ĠH oo\",\"Ġgall on\",\"AC C\",\"Ġdoub ling\",\"Ġimpl ication\",\"ĠS ight\",\"Ġdoct r\",\"---- ---\",\"Ġ\\\\ \\\\\",\"Ġm alt\",\"R oll\",\"Ġâī ¥\",\"Ġrec ap\",\"add ing\",\"u ces\",\"ĠB end\",\"fig ure\",\"Ġtur key\",\"Ġsoc ietal\",\"ĠT ickets\",\"Ġcommer cially\",\"Ġsp icy\",\"Ġ2 16\",\"ĠR amp\",\"Ġsuperior ity\",\"Ã ¯\",\"ĠTr acker\",\"C arl\",\"ĠC oy\",\"ĠPatri ot\",\"Ġconsult ed\",\"Ġlist ings\",\"Ġsle w\",\"reens hot\",\"ĠG one\",\"Ġ[ ...]\",\"30 9\",\"Ġh ottest\",\"Ø ±\",\"Ġrock y\",\"ĠD iaz\",\"Ġmass age\",\"Ġpar aly\",\"Ġp ony\",\"A z\",\"Ġcart ridge\",\"ĠN Z\",\"Ġsn ack\",\"ĠLam ar\",\"ple ment\",\"ĠLes lie\",\"Ġm ater\",\"Ġsn ipp\",\"24 6\",\"Ġjoint ly\",\"ĠBris bane\",\"ĠiP od\",\"Ġpump ing\",\"Ġgo at\",\"ĠSh aron\",\"eal ing\",\"Ġcor on\",\"Ġan omal\",\"rah im\",\"ĠConnect ion\",\"Ġsculpt ure\",\"Ġsched uling\",\"ĠD addy\",\"at hing\",\"Ġeyeb rows\",\"Ġcur ved\",\"Ġsent iments\",\"Ġdraft ing\",\"D rop\",\"( [\",\"Ġnom inal\",\"ĠLeaders hip\",\"ĠG row\",\"Ġ17 6\",\"Ġconstruct ive\",\"iv ation\",\"Ġcorrupt ed\",\"ger ald\",\"ĠC ros\",\"ĠChe ster\",\"ĠL ap\",\"ãģ ª\",\"OT H\",\"D ATA\",\"Ġal mond\",\"pro bably\",\"I mp\",\"Ġfe ast\",\"ĠWar craft\",\"F lor\",\"Ġcheck point\",\"Ġtrans cription\",\"Ġ20 4\",\"Ġtwe aks\",\"Ġrel ieve\",\"S cience\",\"Ġperform er\",\"Z one\",\"Ġtur moil\",\"ig ated\",\"hib it\",\"ĠC afe\",\"the med\",\"Ġflu or\",\"ben ch\",\"Ġde com\",\"ĠU nt\",\"ĠBar rett\",\"ĠF acts\",\"Ġt asting\",\"ĠPTS D\",\"ĠSe al\",\"ĠJuda ism\",\"ĠDynam ic\",\"ĠC ors\",\"V e\",\"ĠM ing\",\"ĠTrans form\",\"v on\",\"ĠDef enders\",\"ĠTact ical\",\"ĠV on\",\"ĠUn ivers\",\"Ġdist orted\",\"ĠB reath\",\"?' \\\"\",\"Ġag on\",\"ĠDead ly\",\"Ġl an\",\"ĠCy cle\",\"orn ed\",\"Ġrel iably\",\"Ġgl or\",\"ĠMon key\",\"ãĥ ¡\",\"Ġad ren\",\"Ġmicrow ave\",\"ĠAl ban\",\"irc raft\",\"dig it\",\"sm art\",\"ĠD read\",\"Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯ Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯\",\"{ {\",\"ĠRoc hester\",\"Ġsimpl ified\",\"Ġinf licted\",\"Ġtake over\",\"Ġyour selves\",\"ad itional\",\"Ġmus cular\",\"K S\",\"Ġing en\",\"T ax\",\"ĠFe ature\",\"27 7\",\"Ġcru c\",\"Ġcr ate\",\"Ġun identified\",\"Ġacclaim ed\",\"ĠM anga\",\"ĠFr ances\",\"ĠNep al\",\"ĠG erald\",\"ĠKu wait\",\"Ġsl ain\",\"ĠHe b\",\"ĠG oku\",\"ãģ® æ\",\"28 6\",\"M rs\",\"ĠC ody\",\"ĠSan ctuary\",\"01 6\",\"Ġdism ant\",\"Ġdatas et\",\"ĠH ond\",\"b uck\",\"ĠPat terson\",\"Ġpal ette\",\"ĠG D\",\"ic ol\",\"ĠL odge\",\"Ġplanet ary\",\"ak in\",\"ĠRegist ered\",\"ab we\",\"ĠPeters burg\",\"Ġha iled\",\"ĠP iece\",\"S che\",\"ĠDO J\",\"Ġen umer\",\"18 1\",\"ĠObs erver\",\"ĠB old\",\"f ounded\",\"com merce\",\"Ġexplo its\",\"ĠF inding\",\"UR N\",\"ĠS ne\",\"ĠAc id\",\"ay ette\",\"ĠVal ues\",\"Ġdr astic\",\"Ġarchitect ural\",\"Ġ\\\" .\",\"× ķ\",\"ump ed\",\"Ġwra pping\",\"Ġwid ow\",\"ĠSl ayer\",\"l ace\",\"on ce\",\"German y\",\"av oid\",\"Ġtem ples\",\"P AR\",\"Ã ´\",\"ĠLuc ifer\",\"ĠFl ickr\",\"l ov\",\"for ces\",\"Ġsc outing\",\"Ġlou der\",\"tes y\",\"Ġbefore hand\",\"Ä ĵ\",\"ĠNe on\",\"ĠW ol\",\"ĠTyp ically\",\"ĠPolit ico\",\"-+ -+\",\"Ġbuild er\",\"Ġder ive\",\"K ill\",\"Ġp oker\",\"Ġambig uous\",\"Ġlif ts\",\"Ġcy t\",\"Ġrib s\",\"ood le\",\"ĠS ounds\",\"h air\",\"ĠSynd rome\",\"t f\",\"Ġproport ional\",\"u id\",\"Ġper taining\",\"ĠKind le\",\"ĠNeg ro\",\"Ġreiter ated\",\"ĠTon ight\",\"oth s\",\"ĠCorn ell\",\"Ġo wing\",\"Ġ20 8\",\"elf are\",\"oc ating\",\"ĠB irds\",\"Sub scribe\",\"Ġess ays\",\"Ġburd ens\",\"Ġillust rations\",\"ar ious\",\"ER AL\",\"ĠCal cul\",\"Ġx en\",\"ĠLink edIn\",\"ĠJ ung\",\"Ġredes ign\",\"Con nor\",\"29 6\",\"Ġrevers al\",\"ĠAd elaide\",\"ĠL L\",\"Ġs inking\",\"Ġg um\",\"US H\",\"c apt\",\"ĠGr imm\",\"Ġfoot steps\",\"ĠCB D\",\"isp ers\",\"Ġpro se\",\"Wed nesday\",\"ĠM ovies\",\"ed in\",\"Ġoverturn ed\",\"Ġcontent ious\",\"US B\",\"~~~~~~~~ ~~~~~~~~\",\"ĠCo pper\",\"Ġpoint less\",\"N V\",\"val ues\",\"olph in\",\"d ain\",\"Ġdepos ited\",\"ĠG W\",\"Ġpreced ed\",\"ĠCl a\",\"ĠGo lem\",\"ĠN im\",\"ĠÎ ²\",\"ĠEngine ers\",\"m iddle\",\"Ġfl att\",\"oper ative\",\"Ġcouncil s\",\"imb abwe\",\"el in\",\"Ġstress ful\",\"ĠL D\",\"Ġres h\",\"l ake\",\"Ġwheel chair\",\"ĠAltern ative\",\"Ġoptim ize\",\"oper ation\",\"Ġpe ek\",\"Ġones elf\",\"ig il\",\"Ġtrans itions\",\"op athy\",\"bl ank\",\"Ġ16 9\",\"17 1\",\"________________________________ ________________________________\",\"Ġl aundering\",\"En c\",\"ĠD EC\",\"Ġwork outs\",\"Ġsp ikes\",\"Ġdin osaurs\",\"Ġdiscrim inatory\",\"P ool\",\"R ather\",\"38 5\",\"R NA\",\"tes ters\",\"et o\",\"ĠIdent ity\",\"Ġve in\",\"ĠBur ton\",\"Ġarc ade\",\"4 20\",\"Ult imately\",\"ĠSad ly\",\"Ã °\",\"p ill\",\"Ġcub ic\",\"ĠSpect rum\",\"the se\",\"st ates\",\"Ġun official\",\"h awks\",\"ĠEVER Y\",\"Ġrain bow\",\"Ġincarcer ation\",\"and ing\",\"Ġsy ll\",\"ĠEver ton\",\"Ġ17 9\",\"ĠSer bia\",\"Ġ18 9\",\"m eter\",\"ĠMic key\",\"Ġant iqu\",\"Ġfact ual\",\"ne ck\",\"ĠN are\",\"n orm\",\"m ust\",\"Ġhigh ways\",\"Ġgl am\",\"Ġdivid ing\",\"ĠSquad ron\",\"ĠMar tha\",\"Ġbirth s\",\"C over\",\"//////// ////////\",\"ĠW ong\",\"Ph ot\",\"ĠA LS\",\"ri o\",\"ĠNon etheless\",\"ĠL emon\",\"Ġ20 6\",\"ĠE E\",\"Ġderiv ative\",\"ĠWW II\",\"v ote\",\"Ġthere in\",\"Ġsepar ating\",\"44 6\",\"sy nc\",\"ĠStre ets\",\"Ġr att\",\"Ġmunicip ality\",\"ĠShort ly\",\"Ġmon k\",\") ,\\\"\",\"Ġscr ub\",\"Ġoper atives\",\"Ne ither\",\"Pl ace\",\"ĠLim it\",\"F emale\",\"ĠAct or\",\"Char acter\",\"Ġconstit uted\",\"35 7\",\"Ġprotest ed\",\"ĠSt raw\",\"ĠHe ight\",\"ild a\",\"ĠTy ph\",\"Ġflood s\",\"Ġcos metic\",\"W AY\",\"pert ure\",\"up on\",\"t ons\",\"ess ing\",\"ĠP ocket\",\"Ġro oft\",\"ĠC aucas\",\"Ġant idepress\",\"Ġincomp atible\",\"EC D\",\"Ġoper a\",\"ĠCont est\",\"Ġgener ators\",\"l ime\",\"Def ense\",\"19 87\",\"for um\",\"Ġsav age\",\"ĠHung arian\",\"n z\",\"Ġmet allic\",\"Ġex pelled\",\"Ġres idency\",\"Ġdress es\",\"66 6\",\"ĠC lement\",\"f ires\",\"C ategory\",\"Ġge ek\",\"al is\",\"Ġc emetery\",\"educ ated\",\"Ġc rawl\",\"ĠUn able\",\"ĠT yson\",\"ak is\",\"Ġp ardon\",\"ĠW ra\",\"Ġstrengthen ed\",\"ĠF ors\",\"33 5\",\"ĠH C\",\"ĠM ond\",\"Ġvisual s\",\"ĠBeat les\",\"ett lement\",\"Ġ ï\",\"g ro\",\"Ġb ash\",\"Ġpo orest\",\"Ġex cel\",\"Ġaspir ations\",\"ĠM unicip\",\"ens ible\",\"Ġceremon ies\",\"Ġintimid ation\",\"ĠCON TR\",\"be ck\",\"ĠK ap\",\"as u\",\"Ġtradem arks\",\"ĠS ew\",\"ĠComp etition\",\"net work\",\"ĠAr ri\",\"ĠT et\",\"Ro aming\",\"W C\",\"D at\",\"Ġso b\",\"Ġpair ing\",\"Ġoverd ose\",\"SA Y\",\"ab er\",\"Ġrev olt\",\"ĠF ah\",\"act ing\",\"e q\",\"est ation\",\"F ight\",\"ĠMar ks\",\"27 3\",\"Ġ17 8\",\"R aw\",\"ãģ ĭ\",\"34 9\",\"bl ocks\",\"Ġver ge\",\"est ine\",\"ĠPod esta\",\"Ġinv asive\",\"Ġprofound ly\",\"ĠA o\",\"e ach\",\"Ġl est\",\"inter pret\",\"Ġshr inking\",\"Ġerr one\",\"Ġche es\",\"ly s\",\"ĠI vy\",\"ĠDirect ory\",\"Ġhint ed\",\"V ICE\",\"Ġcontact ing\",\"ĠG ent\",\"he i\",\"Ġlabel ing\",\"Ġmerc ury\",\"ĠL ite\",\"Ġexp ires\",\"Ġdest abil\",\"rit is\",\"c u\",\"Ġfeather s\",\"Ġste er\",\"Ġprogram med\",\"ĠV ader\",\"Go ing\",\"ĠE lim\",\"Ġy o\",\"ĠMic he\",\"Ġ20 3\",\"Ġslee ves\",\"Ġb ully\",\"ĠHum ans\",\"36 8\",\"Ġcomp ress\",\"ĠBan ner\",\"AR S\",\"Ġa while\",\"Ġcal ib\",\"Ġspons orship\",\"ĠDiff iculty\",\"ĠP apers\",\"Ġident ifier\",\"} .\",\"Ġy og\",\"ĠSh ia\",\"Ġclean up\",\"Ġvib e\",\"int rodu\",\"im ming\",\"Austral ia\",\"Ġout lines\",\"ĠY outube\",\"tr ain\",\"ĠM akes\",\"Ġde ported\",\"Ġcent r\",\"ĠD ug\",\"ĠB oulder\",\"ĠBuff y\",\"Ġinj unction\",\"ĠHar ley\",\"ĠG roups\",\"ĠD umbledore\",\"ĠCl ara\",\"Ġ\\\" -\",\"Ġsacrific ed\",\"ep h\",\"Sh adow\",\"ib ling\",\"Ġfreel ance\",\"Ġevident ly\",\"ph al\",\"Ġret ains\",\"M ir\",\"Ġfin ite\",\"d ar\",\"ĠC ous\",\"Ġrep aired\",\"Ġperiod ic\",\"Ġchampions hips\",\"Ġaster oid\",\"bl ind\",\"Ġexpress ly\",\"ĠAst ros\",\"Ġsc aled\",\"Ġge ographical\",\"ĠRap ids\",\"En joy\",\"Ġel astic\",\"ĠMoh amed\",\"Mark et\",\"be gin\",\"Ġdisco vers\",\"Ġtele communications\",\"Ġscan ner\",\"Ġen large\",\"Ġsh arks\",\"Ġpsy chedel\",\"ĠRou ge\",\"Ġsnap shot\",\"is ine\",\"X P\",\"Ġpestic ides\",\"ĠL SD\",\"ĠDist ribution\",\"re ally\",\"Ġde gradation\",\"Ġdisgu ise\",\"Ġbi om\",\"ĠEX T\",\"Ġequ ations\",\"Ġhaz ards\",\"ĠComp ared\",\") *\",\"Ġvirt ues\",\"Ġeld ers\",\"Ġenh ancing\",\"ĠAc ross\",\"er os\",\"ang ling\",\"Ġcomb ust\",\"ucc i\",\"Ġconc ussion\",\"Ġcontrace ption\",\"ĠK ang\",\"Ġexpress es\",\"Ġa ux\",\"ĠP ione\",\"Ġexhib its\",\"Deb ug\",\"OT AL\",\"ĠAl ready\",\"ĠWheel er\",\"Ġexp ands\",\"? :\",\"Ġreconc iliation\",\"Ġpir ates\",\"Ġpur se\",\"Ġdiscour age\",\"Ġspect acle\",\"R ank\",\"Ġwra ps\",\"ĠTh ought\",\"Ġimp ending\",\"O pp\",\"ĠAng lo\",\"ĠE UR\",\"Ġscrew ed\",\"ret ched\",\"Ġencour agement\",\"mod els\",\"Ġconf use\",\"mm m\",\"ĠVit amin\",\"âĸĳ âĸĳ\",\"C ru\",\"Ġkn ights\",\"Ġdisc ard\",\"Ġb ishops\",\"ĠW ear\",\"ĠGar rett\",\"k an\",\"ãĥ Ł\",\"Ġmascul ine\",\"cap ital\",\"ĠA us\",\"Ġfat ally\",\"th anks\",\"ĠA U\",\"ĠG ut\",\"12 00\",\"Ġ 00000000\",\"Ġsur rog\",\"ĠBI OS\",\"ra its\",\"ĠWat ts\",\"Ġresur rection\",\"ĠElect oral\",\"ĠT ips\",\"4 000\",\"Ġnut rient\",\"Ġdepict ing\",\"Ġspr ink\",\"Ġm uff\",\"ĠL IM\",\"ĠS ample\",\"ps c\",\"ib i\",\"gener ated\",\"Ġspec imens\",\"Ġdiss atisf\",\"Ġtail ored\",\"Ġhold ings\",\"ĠMonth ly\",\"ĠE at\",\"po ons\",\"Ġne c\",\"ĠC age\",\"ĠLot us\",\"ĠLan tern\",\"Ġfront ier\",\"Ġp ensions\",\"Ġj oked\",\"ĠHard y\",\"=-=- =-=-\",\"r ade\",\"U ID\",\"Ġr ails\",\"Ġem it\",\"Ġsl ate\",\"Ġsm ug\",\"Ġsp it\",\"ĠCall s\",\"ĠJac obs\",\"f eat\",\"ĠU E\",\"Ġrest ruct\",\"Ġregener ation\",\"Ġenerg ies\",\"ĠCon nor\",\"OH N\",\"ĠChe ese\",\"Ġg er\",\"Ġresur rect\",\"man agement\",\"N W\",\"Ġpres ently\",\"ĠBru ins\",\"M ember\",\"ĠM ang\",\"id an\",\"Ġboost ing\",\"w yn\",\"+ .\",\"requ isite\",\"ĠNY PD\",\"ĠMe gan\",\"ĠCond itions\",\"Ġp ics\",\"nes ium\",\"ĠR ash\",\"Ġ17 4\",\"ĠD ucks\",\"Ġemb ro\",\"z u\",\"on ian\",\"rel igious\",\"Ġc raz\",\"ĠAC A\",\"ĠZ ucker\",\"EM A\",\"ĠPro s\",\"We apon\",\"ĠKn ox\",\"ĠAr duino\",\"Ġst ove\",\"Ġheaven s\",\"ĠP urchase\",\"Ġher d\",\"Ġfundra iser\",\"Dig ital\",\"5 000\",\"Ġprop onents\",\"/ âĢĭ\",\"Ġj elly\",\"ĠVis a\",\"Ġmon ks\",\"Ġadvance ment\",\"ĠW er\",\"Ġ18 7\",\"e us\",\"ert ility\",\"Ġfet al\",\"Ġ19 36\",\"L o\",\"Ġout fits\",\"Ġstair case\",\"b omb\",\"Ġcustom ized\",\"cl air\",\"T ree\",\"Ġm apped\",\"ĠConsider ing\",\"ĠTor res\",\"Ġmeth yl\",\"Ġapprox imate\",\"Ġdo om\",\"ĠHans en\",\"Ġc rossover\",\"Ġstand alone\",\"ä ¼\",\"Ġinv ites\",\"Ġgra veyard\",\"Ġh p\",\"Donald Trump\",\"Ġesc ort\",\"G ar\",\"Ġpredec essors\",\"Ġh ay\",\"Ġen zyme\",\"ĠStra ight\",\"vis ors\",\"I ng\",\"ane ously\",\"ĠApp lied\",\"Ġf ec\",\"ĠDur ant\",\"Ġout spoken\",\"or b\",\"Ġz eal\",\"Ġdisgr ace\",\"' ).\",\"ĠChe ng\",\"28 9\",\"ĠRen a\",\"ĠSu icide\",\"29 4\",\"Ġout raged\",\"ĠNew man\",\"ĠN vidia\",\"ĠA ber\",\"ĠB ers\",\"Ġrecre ation\",\"Wind ow\",\"ĠD P\",\"x e\",\"Ġped oph\",\"Ġfall out\",\"ambo o\",\"Ġpresent ations\",\"ĠApp s\",\"Ġh tml\",\"3 45\",\"ĠX XX\",\"Ġrub bing\",\"ĠLe ather\",\"Ġhum idity\",\"se ys\",\"est ablished\",\"ĠUn its\",\"64 6\",\"Ġrespect able\",\"A uto\",\"Ġthri ving\",\"ĠInn ovation\",\"ang s\",\"Ext ra\",\"reg ulation\",\"29 8\",\"p ick\",\"Ex amples\",\"ĠC J\",\"Att ack\",\"Ġdr acon\",\"L T\",\"Ġstick er\",\"re rs\",\"Ġsun ny\",\"I ss\",\"reg ulated\",\"d im\",\"ĠAb stract\",\"Ġhus bands\",\"Off ice\",\"om ination\",\"it ars\",\"AN GE\",\"asc al\",\"ĠK ris\",\"ĠInf antry\",\"Ġm alf\",\"ĠA the\",\"ĠR ally\",\"bal anced\",\"................ ........\",\"OU P\",\"Ġmole cule\",\"met ics\",\"ĠSpl it\",\"ĠInstruct ions\",\"ĠN ights\",\"c ards\",\"Ġt ug\",\"Ġcon e\",\"å Ń\",\"Ġt x\",\"ĠDisc ussion\",\"Ġcatast rophe\",\"pp e\",\"g io\",\"Ġcommun ism\",\"Ġhal ted\",\"ĠGu ant\",\"cle an\",\"ĠSc hed\",\"ĠK anye\",\"Ġw ander\",\"ĠSer iously\",\"Ġ18 8\",\"enn ial\",\"f ollow\",\"product ive\",\"ĠFl ow\",\"ĠS ail\",\"Ġc raw\",\"Ġsim ulations\",\"or u\",\"ang les\",\"ĠN olan\",\"Ġmen stru\",\"4 70\",\"Ġ20 7\",\"aj a\",\"Ġcas ually\",\"board ing\",\"Ġ2 22\",\"ov y\",\"ĠN umbers\",\"um at\",\"O E\",\"28 7\",\"ĠCle mson\",\"Ġcert s\",\"Ġsl id\",\"ĠT ribe\",\"Ġto ast\",\"Ġfort unes\",\"Ġf als\",\"ĠComm ittees\",\"Ġg p\",\"Ġf iery\",\"ĠN ets\",\"ĠAn ime\",\"Pack age\",\"ĠComp are\",\"l aughter\",\"in fect\",\"Ġatroc ities\",\"Ġjust ices\",\"Ġins ults\",\"ĠVern on\",\"Ġsh aken\",\"Ġperson a\",\"est amp\",\"36 7\",\"br ain\",\"Ġexperiment ing\",\"K en\",\"ĠElect ronics\",\"Ġ16 1\",\"dom ain\",\"Ġgraph ical\",\"b ishop\",\"Ġwho pping\",\"ĠEv angel\",\"Ġadvertis ers\",\"ĠSpe ar\",\"Ġb ids\",\"Ġdestro ys\",\"ut z\",\"Ġunders c\",\"ĠAD D\",\"Ġan ts\",\"ĠC um\",\"ipp les\",\"ĠF ill\",\"Ġgl anced\",\"Ġind icted\",\"ĠE ff\",\"Ġmis con\",\"ĠDes ktop\",\"Ġab ide\",\"ãĥ Ģ\",\"ĠI o\",\"ĠC oul\",\"Ġcaps ule\",\"ĠCh rys\",\"M ON\",\"Ġund es\",\"ĠI RA\",\"Ġc itation\",\"Ġdict ate\",\"ĠNet works\",\"ĠConf lict\",\"ĠSt uff\",\"x a\",\"is ec\",\"ĠChem istry\",\"Ġquarter ly\",\"William s\",\"an an\",\"O pt\",\"ĠAlexand ria\",\"out heastern\",\"ĠSpring field\",\"ĠBlack s\",\"Ġge ography\",\"24 2\",\"Ġut most\",\"ĠEx xon\",\"ab outs\",\"E VA\",\"ĠEn able\",\"ĠBar r\",\"Ġdisag reed\",\"ĠCy prus\",\"Ġdement ia\",\"Ġlab s\",\"Ġubiqu itous\",\"ĠLO VE\",\"Ġconsolid ated\",\"s r\",\"Ġcream y\",\"ĠTim ber\",\"Reg ardless\",\"ĠCert ificate\",\"Ġ\\\" ...\",\"ogen ous\",\"Capt ain\",\"Ġinsult ing\",\"ĠSor os\",\"ĠInst r\",\"ĠBulgar ia\",\"bet ter\",\"Ġsuck ing\",\"ĠDavid son\",\"at z\",\"Ġcoll ateral\",\"g if\",\"Ġplag ued\",\"ĠC ancel\",\"ĠGard ner\",\"R B\",\"Ġsix teen\",\"Rem ove\",\"ur istic\",\"c ook\",\"R od\",\"Ġcompr ising\",\"f le\",\") âĢĶ\",\"ĠVik ing\",\"g rowth\",\"agon al\",\"Ġsr f\",\"af ety\",\"m ot\",\"N early\",\"st own\",\"ĠF actor\",\"Ġautom obile\",\"Ġproced ural\",\"m ask\",\"amp ires\",\"Ġdisapp ears\",\"j ab\",\"3 15\",\"Ġ19 51\",\"ne eded\",\"Ġd aring\",\"le ader\",\"Ġp odium\",\"Ġun healthy\",\"Ġm und\",\"Ġpy ramid\",\"oc re\",\"Ġkiss ed\",\"Ġdream ed\",\"ĠFant astic\",\"ĠG ly\",\"å Ĭ\",\"Ġgreat ness\",\"Ġsp ices\",\"Ġmet ropolitan\",\"Ġcomp uls\",\"i ets\",\"101 6\",\"ĠSh am\",\"ĠP yr\",\"fl ies\",\"ĠMid night\",\"Ġswall owed\",\"Ġgen res\",\"ĠL ucky\",\"ĠRew ards\",\"Ġdisp atch\",\"ĠI PA\",\"ĠApp ly\",\"Ġa ven\",\"al ities\",\"3 12\",\"th ings\",\"Ġ( ).\",\"Ġm ates\",\"ĠS z\",\"ĠC OP\",\"ol ate\",\"O FF\",\"Ġre charge\",\"c aps\",\"ĠYork er\",\"ic one\",\"Ġgal axies\",\"ile aks\",\"D ave\",\"ĠP uzz\",\"ĠCelt ic\",\"ĠA FC\",\"27 6\",\"ĠS ons\",\"Ġaffirm ative\",\"H or\",\"Ġtutorial s\",\"ĠC ITY\",\"ĠR osa\",\"ĠExt ension\",\"Ser ies\",\"Ġf ats\",\"Ġr ab\",\"l is\",\"Ġun ic\",\"Ġe ve\",\"ĠSp in\",\"Ġadul thood\",\"ty p\",\"Ġsect arian\",\"Ġcheck out\",\"ĠCy cl\",\"S ingle\",\"Ġmart yr\",\"Ġch illing\",\"88 8\",\"ou fl\",\"Ġ] ;\",\"Ġcongest ion\",\"m k\",\"ĠWhere as\",\"Ġ19 38\",\"ur rencies\",\"er ion\",\"Ġbo ast\",\"ĠPat ients\",\"Ġch ap\",\"ĠB D\",\"real DonaldTrump\",\"Ġexam ines\",\"h ov\",\"Ġstart ling\",\"ĠBab ylon\",\"w id\",\"om ew\",\"br ance\",\"ĠOd yssey\",\"w ig\",\"Ġtor ch\",\"ĠV ox\",\"ĠMo z\",\"ĠT roll\",\"ĠAn s\",\"Similar ly\",\"ĠF ul\",\"00 6\",\"Un less\",\"ĠAl one\",\"st ead\",\"ĠPub lisher\",\"r ights\",\"t u\",\"ĠDoes n\",\"Ġprofession ally\",\"Ġcl o\",\"ic z\",\"Ġste als\",\"Ġ á\",\"19 86\",\"Ġst urdy\",\"ĠJoh ann\",\"Ġmed als\",\"Ġfil ings\",\"ĠFr aser\",\"d one\",\"Ġmult inational\",\"Ġf eder\",\"Ġworth less\",\"Ġp est\",\"Yes terday\",\"ank ind\",\"Ġg ays\",\"Ġb orne\",\"ĠP OS\",\"Pict ure\",\"Ġpercent ages\",\"25 1\",\"r ame\",\"Ġpot ions\",\"AM D\",\"ĠLeban ese\",\"Ġr ang\",\"ĠL SU\",\"ong s\",\"Ġpen insula\",\"ĠCl ause\",\"AL K\",\"oh a\",\"ĠMac Book\",\"Ġunanim ous\",\"Ġl enders\",\"Ġhang s\",\"Ġfranch ises\",\"ore rs\",\"ĠUp dates\",\"Ġisol ate\",\"and ro\",\"S oon\",\"Ġdisrupt ive\",\"ĠSur ve\",\"Ġst itches\",\"ĠSc orp\",\"ĠDomin ion\",\"Ġsupp lying\",\"Ar g\",\"Ġtur ret\",\"ĠL uk\",\"Ġbr ackets\",\"* )\",\"ĠRevolution ary\",\"ĠHon est\",\"Ġnot icing\",\"ĠSh annon\",\"Ġafford ed\",\"Ġth a\",\"ĠJan et\",\"! --\",\"ĠNare ndra\",\"ĠPl ot\",\"H ol\",\"se ver\",\"e enth\",\"Ġobst ruction\",\"Ġ10 24\",\"st aff\",\"j as\",\"or get\",\"sc enes\",\"l aughs\",\"ĠF argo\",\"cr ime\",\"Ġorche str\",\"Ġde let\",\"ili ary\",\"rie ved\",\"Ġmilit ar\",\"ĠGreen e\",\"âĹ ı\",\"ãģ ¦\",\"ĠGu ards\",\"Ġunle ashed\",\"ĠWe ber\",\"Ġadjust able\",\"Ġcal iber\",\"Ġmotiv ations\",\"ĠÃ ł\",\"m Ah\",\"ĠL anka\",\"hand le\",\"Ġp ent\",\"ĠR av\",\"ĠAng ular\",\"ĠK au\",\"umb ing\",\"Ġphil anthrop\",\"Ġde hyd\",\"Ġtox icity\",\"e er\",\"ĠY ORK\",\"w itz\",\"å ¼\",\"ĠI E\",\"commun ity\",\"ĠA H\",\"Ġret ali\",\"Ġmass ively\",\"ĠDani els\",\"ĠD EL\",\"Ġcar cin\",\"Ur l\",\"Ġrout ing\",\"ĠNPC s\",\"ĠR AF\",\"ry ce\",\"Ġwa ived\",\"ĠGu atem\",\"Every body\",\"Ġco venant\",\"Ġ17 3\",\"Ġrelax ing\",\"Ġqu art\",\"al most\",\"Ġguard ed\",\"ĠSold iers\",\"ĠPL AY\",\"Ġout going\",\"L AND\",\"Ġre write\",\"ĠM OV\",\"ĠIm per\",\"ĠS olution\",\"Ġphenomen al\",\"Ġl ongevity\",\"Ġimp at\",\"ĠN issan\",\"ir ie\",\"Ġod or\",\"ĠZ ar\",\"ok s\",\"Ġmilit ias\",\"ĠSP EC\",\"Ġtoler ated\",\"ars er\",\"ĠBrad ford\",\"+ ,\",\"Ġsur real\",\"s f\",\"Can adian\",\"Ġresemb lance\",\"Ġcarbohyd rate\",\"VI EW\",\"Ġaccess ory\",\"me al\",\"larg est\",\"ieg el\",\"Some one\",\"Ġtoug hest\",\"os o\",\"Ġfun nel\",\"Ġcondemn ation\",\"lu ent\",\"Ġw ired\",\"ĠSun set\",\"Jes us\",\"ĠP ST\",\"ĠP ages\",\"ĠTy coon\",\"ĠP F\",\"Ġselect ions\",\"Ġ à¤\",\"part isan\",\"Ġhigh s\",\"ĠR une\",\"Ġcraft s\",\"le ad\",\"ĠParent s\",\"Ġre claim\",\"ek er\",\"ĠAll ied\",\"ae per\",\"Ġlo oming\",\"Ġbenefic iaries\",\"ĠH ull\",\"Stud ents\",\"Jew ish\",\"d j\",\"Ġp act\",\"tem plate\",\"ĠOffic ials\",\"ĠBay lor\",\"Ġhe mp\",\"Ġyouth s\",\"ĠLevel s\",\"ĠX iao\",\"ĠC hes\",\"Ġende avor\",\"ĠRem oved\",\"Ġhipp ocamp\",\"H ell\",\"ãĤ Ĭ\",\"80 5\",\"Ġd inosaur\",\"ĠWr ath\",\"ĠIndones ian\",\"Ġcalcul ator\",\"ĠD ictionary\",\"Ġ4 20\",\"ĠM AG\",\"( _\",\"! ,\",\"t arians\",\"Ġrestrict ing\",\"rac use\",\"Ġweek day\",\"OU NT\",\"Ġsh rugged\",\"leg round\",\"Ġb ald\",\"ĠDo ctors\",\"Ġt outed\",\"ĠMax well\",\"Ġ2 14\",\"Ġdiplom at\",\"Ġrep ression\",\"Ġconstitu ency\",\"v ice\",\"r anked\",\"ĠNap oleon\",\"g ang\",\"ĠFore ver\",\"t un\",\"Ġbul b\",\"ĠPD T\",\"ĠC isco\",\"V EN\",\"Ġres umed\",\"Ste ven\",\"ĠManit oba\",\"Ġfab ulous\",\"ĠAg ents\",\"19 84\",\"Ġam using\",\"ĠMyster ies\",\"Ġor thodox\",\"fl oor\",\"Ġquestion naire\",\"Ġpenet rate\",\"Ġfilm makers\",\"ĠUn c\",\"Ġst amped\",\"Ġth irteen\",\"Ġout field\",\"Ġforward ed\",\"Ġapp ra\",\"Ġa ided\",\"t ry\",\"Ġunf ocused\",\"ĠL iz\",\"ĠWend y\",\"ĠSc ene\",\"Ch arg\",\"Ġreject s\",\"Ġleft ist\",\"ĠProv idence\",\"ĠBr id\",\"reg n\",\"Ġprophe cy\",\"ĠL IVE\",\"4 99\",\"Ġfor ge\",\"ĠF ML\",\"Ġintrins ic\",\"ĠF rog\",\"Ġw ont\",\"ĠH olt\",\"Ġfam ed\",\"CL US\",\"aeper nick\",\"ĠH ate\",\"ĠC ay\",\"Ġregister ing\",\"ort ality\",\"rop y\",\"ocaly ptic\",\"a an\",\"n av\",\"Ġfasc ist\",\"IF IED\",\"Ġimpl icated\",\"ĠRes ort\",\"ĠChand ler\",\"ĠBr ick\",\"P in\",\"ys c\",\"Us age\",\"ĠHel m\",\"us ra\",\"âĺħ âĺħ\",\"ĠAb bas\",\"Ġunanim ously\",\"Ġke eper\",\"Ġadd icted\",\"?? ?\",\"Ġhelm ets\",\"Ġant ioxid\",\"aps ed\",\"80 8\",\"gi ene\",\"Ġwa its\",\"Ġmin ion\",\"ra ved\",\"ĠP orsche\",\"Ġdream ing\",\"Ġ17 1\",\"ĠC ain\",\"Ġun for\",\"ass o\",\"ĠConfig uration\",\"k un\",\"hard t\",\"Ġn ested\",\"ĠL DS\",\"L ES\",\"Ġt ying\",\"en os\",\"Ġc ue\",\"ĠMar qu\",\"sk irts\",\"Ġclick ed\",\"Ġexp iration\",\"ĠAccording ly\",\"ĠW C\",\"Ġbless ings\",\"Ġaddict ive\",\"ĠN arr\",\"y x\",\"ĠJagu ars\",\"Ġrent s\",\"ĠS iber\",\"Ġt ipped\",\"ous se\",\"ĠFitz gerald\",\"Ġhier arch\",\"out ine\",\"Ġwa velength\",\"> .\",\"ch id\",\"ĠProcess ing\",\"/ +\",\"r anking\",\"E asy\",\"ĠConst ruct\",\"Ġt et\",\"ins ured\",\"H UD\",\"Ġqu oting\",\"Ġcommun icated\",\"in x\",\"Ġin mate\",\"Ġerect ed\",\"ĠAbs olutely\",\"ĠSure ly\",\"Ġun im\",\"ĠThr one\",\"he id\",\"Ġcl aws\",\"Ġsuper star\",\"ĠL enn\",\"ĠWh is\",\"U k\",\"ab ol\",\"Ġsk et\",\"ĠN iet\",\"Ġper ks\",\"Ġaff inity\",\"Ġopen ings\",\"phas is\",\"Ġdiscrim inate\",\"T ip\",\"v c\",\"Ġgr inding\",\"ĠJenn y\",\"Ġast hma\",\"hol es\",\"ĠHom er\",\"Ġreg isters\",\"ĠGl ad\",\"Ġcre ations\",\"Ġlith ium\",\"Ġappl ause\",\"unt il\",\"Just ice\",\"ĠTur ks\",\"Ġsc andals\",\"Ġb ake\",\"t ank\",\"M ech\",\"ĠMe ans\",\"ĠM aid\",\"Republic ans\",\"is al\",\"wind ows\",\"ĠSant os\",\"Ġveget ation\",\"33 8\",\"t ri\",\"Ġfl ux\",\"ins ert\",\"Ġclar ified\",\"Ġmort g\",\"ĠCh im\",\"ĠT ort\",\"Ġdiscl aim\",\"met al\",\"ĠAs ide\",\"Ġindu ction\",\"Ġinf l\",\"Ġathe ists\",\"amp h\",\"Ġe ther\",\"ĠV ital\",\"ĠBu ilt\",\"M ind\",\"Ġweapon ry\",\"S ET\",\"Ġ18 6\",\"ad min\",\"g am\",\"cont ract\",\"af a\",\"Ġderiv atives\",\"Ġsn acks\",\"Ġch urn\",\"E conom\",\"Ġca pped\",\"ĠUnder standing\",\"ĠH ers\",\"ĠI z\",\"Ġd uct\",\"I ENT\",\"augh ty\",\"Ġâľ Ķ\",\"ĠN P\",\"Ġsa iling\",\"In itialized\",\"Ġt ed\",\"Ġreact ors\",\"ĠL omb\",\"Ġcho ke\",\"ĠW orm\",\"Ġadm iration\",\"Ġsw ung\",\"ens ibly\",\"Ġr ash\",\"ĠGo als\",\"ĠImport ant\",\"Sh ot\",\"ĠR as\",\"Ġtrain ers\",\"ĠB un\",\"Work ing\",\"Ġhar med\",\"ĠPand ora\",\"ĠL TE\",\"Ġmush room\",\"ĠCH AR\",\"ĠF ee\",\"ĠM oy\",\"B orn\",\"ol iberal\",\"ĠMart ial\",\"Ġgentle men\",\"Ġling ering\",\"Offic ial\",\"Ġgra ffiti\",\"ĠN ames\",\"D er\",\"Ġqu int\",\"ist rate\",\"aze era\",\"ĠNOT ICE\",\"ĠFlore nce\",\"Ġpay able\",\"Ġdep icts\",\"ĠSpe cies\",\"He art\",\"âĶĢâĶĢâĶĢâĶĢ âĶĢâĶĢâĶĢâĶĢ\",\"Ġencl osed\",\"Incre ases\",\"D aily\",\"ĠL is\",\"Ġenact ment\",\"ĠB acon\",\"ĠSt eele\",\"dem and\",\"Ġ18 3\",\"Ġmouth s\",\"Ġstr anded\",\"Ġenhance ment\",\"01 1\",\"ĠWh ats\",\"Ġhe aled\",\"en y\",\"ĠR ab\",\"Ġ3 40\",\"ĠLab yrinth\",\"ro ach\",\"ĠY osh\",\"ĠCl ippers\",\"Ġconcert s\",\"Intern et\",\"35 5\",\"Ġstick ers\",\"Ġter med\",\"ĠAx e\",\"Ġgrand parents\",\"Fr ance\",\"ĠCl im\",\"ĠU h\",\"ul ic\",\"Ġthr ill\",\"cent ric\",\"ĠOver view\",\"ĠCond uct\",\"Ġsubstant ive\",\"Ġ18 2\",\"m ur\",\"Ġstr ay\",\"ĠCo ff\",\"Ġrep etitive\",\"ĠFor gotten\",\"Ġqual ification\",\"ew itness\",\"ĠZ imbabwe\",\"Ġsim ulated\",\"ĠJ D\",\"25 3\",\"ĠW are\",\"Ġun sc\",\"T imes\",\"Ġsum mons\",\"Ġdis connected\",\"Ġ18 4\",\"ci us\",\"ĠGu jar\",\"od ka\",\"Ġer ase\",\"ĠTob acco\",\"elect ed\",\"Ġun cont\",\"ĠShe pard\",\"ĠL amp\",\"Ġalert ed\",\"Ġoper ative\",\"arn a\",\"u int\",\"Ġneglig ence\",\"ac ements\",\"Ġsup ra\",\"Ġprev ail\",\"ĠSh ark\",\"Ġbel ts\",\"ãģ «\",\"Ġt ighter\",\"Engine ers\",\"Ġin active\",\"Ġexp onent\",\"ĠWill ie\",\"a ples\",\"Ġhe ir\",\"ĠH its\",\"ian n\",\"ĠS ays\",\"Ġcurrent s\",\"ĠBeng al\",\"Ġar ist\",\"B uffer\",\"Ġbree ze\",\"ĠWes ley\",\"Col a\",\"Ġpron oun\",\"Ġde ed\",\"ĠK ling\",\"Ġof t\",\"Ġinf lict\",\"Ġpun ishing\",\"Ġn m\",\"ik u\",\"OD UCT\",\"01 4\",\"Ġsubsid y\",\"ĠDE A\",\"ĠHer bert\",\"ĠJ al\",\"B ank\",\"Ġdef erred\",\"Ġship ment\",\"B ott\",\"Ġal le\",\"b earing\",\"HT ML\",\"Off line\",\"Ġ2 13\",\"Ġscroll ing\",\"Ġsc anned\",\"ĠLib yan\",\"ĠT OP\",\"ch rom\",\"d t\",\"col umn\",\"Psy NetMessage\",\"Z ero\",\"Ġtor so\",\"0 50\",\"âķ Ĳ\",\"Ġimp erson\",\"ĠSchw artz\",\"ud ic\",\"Ġpiss ed\",\"ĠS app\",\"25 7\",\"ĠIS Ps\",\"og l\",\"Ġsuper vised\",\"Ġad olescent\",\"Ġatt ained\",\"ĠDel ivery\",\"ĠB unny\",\"Ġ19 37\",\"Ġmini ature\",\"Ġo s\",\"Ġ3 70\",\"60 8\",\"ĠMour inho\",\"Ġinn ate\",\"Ġtem po\",\"ĠN M\",\"ĠFall en\",\"00 9\",\"Ġprov ocative\",\"Stream er\",\"ĠBened ict\",\"ĠBol she\",\"Ġt urtle\",\"ĠPC B\",\"ĠEqu al\",\"Direct or\",\"ĠR end\",\"Ġflu ids\",\"Author ities\",\"Ġcous ins\",\"requ ency\",\"ĠNeigh bor\",\"s ets\",\"sh ared\",\"Char les\",\"pass word\",\"Ġg ears\",\"Ġ2 11\",\"ĠHard ware\",\"ri ka\",\"Ġup stream\",\"H om\",\"Ġdisproportion ately\",\"iv ities\",\"Ġund efined\",\"Ġelect rons\",\"Ġcommem or\",\"Event ually\",\"Ġ> <\",\"Ġir responsible\",\"2 18\",\"ĠRe leased\",\"ĠO VER\",\"ĠI GN\",\"ĠB read\",\"st ellar\",\"ĠS age\",\"tt ed\",\"dam age\",\"ed ition\",\"ĠPre c\",\"Ġl ime\",\"Ġconf inement\",\"Ġcal orie\",\"we apon\",\"Ġdiff ering\",\"ĠS ina\",\"m ys\",\"am d\",\"Ġintric ate\",\"k k\",\"ĠP AT\",\"Ã£ o\",\"st ones\",\"lin ks\",\"Ġr anch\",\"Sem itic\",\"Ġdifferent iate\",\"ĠS inger\",\"occup ied\",\"Ġfort ress\",\"c md\",\"Ġinter ception\",\"ĠAnk ara\",\"Ġre pt\",\"ĠSol itaire\",\"Ġrem ake\",\"p red\",\"Ġd ared\",\"aut ions\",\"ĠB ACK\",\"Run ning\",\"Ġdebug ging\",\"Ġgraph s\",\"3 99\",\"ĠNig el\",\"Ġb un\",\"Ġpill ow\",\"Ġprog ressed\",\"fashion ed\",\"Ġob edience\",\"ER N\",\"Ġrehe ars\",\"C ell\",\"t l\",\"S her\",\"Ġher ald\",\"ĠPay ment\",\"ĠC ory\",\"ĠDe pt\",\"Ġrep ent\",\"ĠWe ak\",\"uck land\",\"Ġple asing\",\"Ġshort ages\",\"Ġjur ors\",\"ĠK ab\",\"q qa\",\"Ant i\",\"Ġw ow\",\"ĠRC MP\",\"Ġt sun\",\"ĠS ic\",\"Ġcomp rises\",\"Ġsp ies\",\"Ġprec inct\",\"n u\",\"Ġur ges\",\"Ġtim ed\",\"Ġstrip es\",\"ĠB oots\",\"Ġy en\",\"Adv anced\",\"Ġdisc rete\",\"ĠArch angel\",\"employ ment\",\"D iff\",\"Ġmon uments\",\"Ġ20 9\",\"work er\",\"Ġ19 6\",\"ĠI g\",\"utter stock\",\"T PS\",\"J ac\",\"Ġhomeless ness\",\"Ġcomment ator\",\"Ġrac ially\",\"f ing\",\"se ed\",\"E le\",\"ell ation\",\"Ġeth anol\",\"Ġpar ish\",\"ĠD ong\",\"ĠAw akening\",\"Ġdev iation\",\"ĠB earing\",\"ĠTsu k\",\"Ġrec ess\",\"Ġl ymph\",\"ĠCann abis\",\"å ľ\",\"ĠNEW S\",\"Ġd ra\",\"ĠStef an\",\"ĠWr ong\",\"ĠS AM\",\"Ġloose ly\",\"Ġinterpre ter\",\"ĠPl ain\",\"Go vernment\",\"Ġbigot ry\",\"Ġgren ades\",\"ave z\",\"pict ured\",\"Ġmand ated\",\"ĠMon k\",\"ĠPed ro\",\"Ġl ava\",\"27 4\",\"Ġcyn ical\",\"ĠScroll s\",\"l ocks\",\"M p\",\"Ġcon gregation\",\"orn ings\",\"ph il\",\"ĠI bid\",\"Ġf erv\",\"Ġdisapp earing\",\"Ġarrog ant\",\"sy n\",\"ĠMa ver\",\"ĠSu it\",\"24 1\",\"Ġab bre\",\"ack ers\",\"P a\",\"ĠY el\",\"Whe never\",\"Ġ23 5\",\"ĠV ine\",\"ĠAn at\",\"Ġext inct\",\"LE T\",\"Ġexecut able\",\"V ERS\",\"ox ide\",\"D NA\",\"ĠP rel\",\"Ġresent ment\",\"Ġcompr ise\",\"ĠAv iv\",\"Ġinter ceptions\",\"Ġprol ific\",\"IN A\",\"ĠEr in\",\"though t\",\"2 19\",\"ĠPsychiat ry\",\"un ky\",\"chem ist\",\"H o\",\"ĠMcC oy\",\"Ġbr icks\",\"L os\",\"ri ly\",\"ĠUS SR\",\"Ġr ud\",\"Ġl aud\",\"ĠW ise\",\"ĠEmer ald\",\"Ġrev ived\",\"Ġdam ned\",\"ĠRep air\",\"id em\",\"ct ica\",\"Ġpatri arch\",\"ĠN urs\",\"me g\",\"Ġcheap est\",\"re ements\",\"empt y\",\"ĠCele br\",\"Ġdepri vation\",\"ch anted\",\"ĠTh umbnails\",\"E nergy\",\"ĠEth an\",\"ĠQ ing\",\"Ġopp oses\",\"W IND\",\"v ik\",\"ĠM au\",\"ĠS UB\",\"66 7\",\"G RE\",\"ĠVol unte\",\"nt on\",\"C ook\",\"å Ĳ\",\"es que\",\"Ġplum met\",\"Ġsu ing\",\"Ġpron ounce\",\"Ġresist ing\",\"ĠF ishing\",\"ĠTri als\",\"Ġy ell\",\"Ġ3 10\",\"Ġin duct\",\"Ġpersonal ized\",\"oft en\",\"R eb\",\"EM BER\",\"Ġview point\",\"Ġexist ential\",\"() )\",\"rem ove\",\"MENT S\",\"l asses\",\"Ġev apor\",\"Ġa isle\",\"met a\",\"Ġreflect ive\",\"Ġentit lement\",\"Ġdev ised\",\"mus ic\",\"asc ade\",\"Ġwind ing\",\"off set\",\"Ġaccess ibility\",\"ke red\",\"Bet ter\",\"ĠJohn ston\",\"th inking\",\"S now\",\"ĠCroat ia\",\"ĠAt omic\",\"27 1\",\"34 8\",\"Ġtext book\",\"ĠSix th\",\"Ġ Ø§ÙĦ\",\"Ġsl ider\",\"ĠBur ger\",\"b ol\",\"S ync\",\"Ġgrand children\",\"Ġc erv\",\"+ )\",\"Ġe ternity\",\"Ġtweet ing\",\"Ġspec ulative\",\"Ġpiv otal\",\"ĠW P\",\"ĠT ER\",\"ynam ic\",\"Ġu pl\",\"ĠC ats\",\"per haps\",\"Ġclass mates\",\"Ġblat ant\",\"' -\",\"Ġl akh\",\"ant ine\",\"ĠB org\",\"i om\",\"/ (\",\"ĠAthlet ic\",\"Ġs ar\",\"OT A\",\"ĠHoff man\",\"Never theless\",\"Ġad orable\",\"Ġspawn ed\",\"Ass ociated\",\"ĠDom estic\",\"Ġimpl ant\",\"ĠLux em\",\"ĠK ens\",\"Ġp umps\",\"ĠS AT\",\"Att ributes\",\"50 9\",\"av our\",\"Ġcentral ized\",\"ĠT N\",\"Ġfresh ly\",\"ĠA chieve\",\"Ġouts iders\",\"her ty\",\"ĠRe e\",\"ĠT owers\",\"ĠD art\",\"ak able\",\"Ġm p\",\"ĠHeaven ly\",\"Ġr ipe\",\"ĠCarol ine\",\"ry an\",\"Ġclass ics\",\"Ġret iring\",\"Ġ2 28\",\"Ġa h\",\"Ġdeal ings\",\"Ġpunch ing\",\"ĠChap man\",\"O ptions\",\"max well\",\"vol ume\",\"Ġst al\",\"Ġex ported\",\"ĠQu ite\",\"Ġnumer ical\",\"B urn\",\"F act\",\"ĠKey stone\",\"Ġtrend ing\",\"Ġalter ing\",\"ĠAfric ans\",\"47 8\",\"ĠM N\",\"ĠKn ock\",\"Ġtempt ation\",\"Ġprest ige\",\"Over view\",\"ĠTrad itional\",\"ĠBah rain\",\"Priv ate\",\"ĠH OU\",\"Ġbar r\",\"ĠT at\",\"C ube\",\"US D\",\"ĠGrand e\",\"ĠG at\",\"ĠFl o\",\"Ġres ides\",\"Ġind ec\",\"vol ent\",\"Ġperpet ual\",\"ub es\",\"Ġworld view\",\"ĠQuant um\",\"Ġfil tered\",\"Ġen su\",\"orget own\",\"ERS ON\",\"ĠM ild\",\"37 9\",\"OT T\",\"Ã ¥\",\"Ġvit amins\",\"Ġrib bon\",\"Ġsincere ly\",\"ĠH in\",\"Ġeight een\",\"Ġcontradict ory\",\"Ġgl aring\",\"Ġexpect ancy\",\"Ġcons pir\",\"Ġmon strous\",\"Ġ3 80\",\"re ci\",\"Ġhand ic\",\"Ġpump ed\",\"Ġindic ative\",\"Ġr app\",\"Ġav ail\",\"ĠLEG O\",\"ĠMar ijuana\",\"19 85\",\"ert on\",\"Ġtwent ieth\",\"################ ################\",\"ĠSw amp\",\"Ġval uation\",\"Ġaffili ates\",\"adjust ed\",\"ĠFac ility\",\"26 2\",\"Ġenz ymes\",\"itud inal\",\"Ġimp rint\",\"S ite\",\"Ġinstall er\",\"ĠT RA\",\"m ology\",\"lin ear\",\"ĠCollect ive\",\"ig ating\",\"ĠT oken\",\"Ġspec ulated\",\"K N\",\"ĠC ly\",\"or ity\",\"Ġdef er\",\"Ġinspect ors\",\"appro ved\",\"R M\",\"ĠSun s\",\"Ġinform ing\",\"ĠSy racuse\",\"ib li\",\"7 65\",\"Ġgl ove\",\"Ġauthor ize\",\"âĢ¦âĢ¦âĢ¦âĢ¦ âĢ¦âĢ¦âĢ¦âĢ¦\",\"ĠCru ise\",\"Ġcontract ing\",\"she ll\",\"IF E\",\"ĠJew el\",\"p ract\",\"ĠPhot oshop\",\"ĠKnow ing\",\"h arm\",\"Ġattract ions\",\"ad an\",\"et us\",\"01 8\",\"w agen\",\"Al t\",\"Ġmultip ly\",\"Ġequ ilibrium\",\": {\",\"ĠF ighters\",\"ĠEd gar\",\"Ġfour teen\",\"Go vern\",\"Ġmis use\",\"Ġab using\",\"Ġancest ry\",\"ram er\",\"64 4\",\"Ġwor ms\",\"Ġthick er\",\"ĠComb ine\",\"Ġpeas ants\",\"Ġv ind\",\"Ġcon quest\",\"Ġm ocked\",\"Ġc innamon\",\"ĠC ald\",\"ĠGall up\",\"Ġavoid ance\",\"Ġincarn ation\",\"ĠStr at\",\"Ġt asted\",\"ent a\",\"ĠN eal\",\"p ared\",\"Ġtermin ology\",\"ject ion\",\"Scient ists\",\"ĠIN S\",\"ĠDe e\",\"Ġdirect ories\",\"R oad\",\"ĠSh ap\",\"br ight\",\"ĠDirect ors\",\"ĠCol umn\",\"Ġb ob\",\"Ġprefer ably\",\"Ġgl itch\",\"f urt\",\"Ġe g\",\"id is\",\"C BC\",\"Ġsur rendered\",\"Ġtest ament\",\"33 6\",\"ug gest\",\"ĠN il\",\"an other\",\"Ġpat hetic\",\"ĠDon na\",\"Ġ2 18\",\"ĠA very\",\"Ġwhis key\",\"Ġf ixture\",\"ĠCon quest\",\"Ġbet s\",\"O cc\",\"ĠLe icester\",\"] .\\\"\",\"Ġ) );\",\"Ġfl ashes\",\"45 6\",\"Ġmask ed\",\"ge bra\",\"Ġcomput ed\",\"che l\",\"aud er\",\"Ġdefe ats\",\"ĠLiber ation\",\"ĠOs ama\",\"ĠV ive\",\"Ch anges\",\"Ch annel\",\"Ġtar iffs\",\"Ġm age\",\"ĠS ax\",\"Ġinadvert ently\",\"ĠC RE\",\"ĠRe aper\",\"ink y\",\"gr ading\",\"Ġstere otyp\",\"Ġcur l\",\"ĠF ANT\",\"Ġfram eworks\",\"M om\",\"ĠAn ch\",\"Ġflav our\",\"car bon\",\"Ġperm itting\",\"let cher\",\"ĠMo zilla\",\"ĠPark ing\",\"ĠCh amp\",\"Sc roll\",\"Ġmurd erer\",\"Ġrest ed\",\"Ġow es\",\"ĠP oss\",\"AD D\",\"IF F\",\"res olution\",\"ĠMin ing\",\"Ġcompar ative\",\"D im\",\"Ġneighbour ing\",\"ĠA ST\",\"ĠT oxic\",\"Ġbi ases\",\"Ġgun fire\",\"ur ous\",\"ĠMom ent\",\"19 83\",\"Ġper vasive\",\"tt p\",\"ĠNorm ally\",\"r ir\",\"S arah\",\"ĠAlb any\",\"Ġun sett\",\"ĠS MS\",\"ip ers\",\"l ayer\",\"ĠWh ites\",\"up le\",\"Ġtur bo\",\"ĠLe eds\",\"Ġthat s\",\"ĠMin er\",\"M ER\",\"ĠRe ign\",\"Ġper me\",\"ĠBl itz\",\"Ġ19 34\",\"Ġintimid ating\",\"t ube\",\"Ġecc entric\",\"ab olic\",\"box es\",\"ĠAssoci ates\",\"v otes\",\"Ġsim ulate\",\"um bo\",\"aster y\",\"Ġship ments\",\"FF FF\",\"an th\",\"Ġseason ed\",\"Ġexperiment ation\",\"âĸ ł\",\"law s\",\"Me et\",\"idd les\",\"ant ics\",\"R ating\",\"IS IS\",\"h ift\",\"Ġfront s\",\"b uf\",\"01 7\",\"Ġun att\",\"ĠD il\",\"le ases\",\"ĠGard ens\",\"77 7\",\"t ouch\",\"ve ll\",\"45 8\",\"Ġ= ====\",\"s aving\",\"Ġer osion\",\"ĠQu in\",\"Ġearn s\",\"Ġaccomplish ment\",\"ĠWe i\",\"Ġ< [\",\"____ _\",\"Ġir rig\",\"ĠT eddy\",\"Ġconqu ered\",\"ĠArm ored\",\"Ġassert s\",\"Ġmanip ulating\",\"r Ã©\",\"Ġtranscript s\",\"G allery\",\"Ġplot ting\",\"Ne il\",\"Ġbetray al\",\"load er\",\"ĠS ul\",\"Ġdispl acement\",\"Ġroy alty\",\"ĠW I\",\"he it\",\"ĠDev ices\",\"alle l\",\"Ġmunicipal ities\",\"Ġcan al\",\"St ars\",\"ĠU AE\",\"Ġ\\\" âĢ¦\",\"ĠC U\",\"ab ove\",\"Ġreson ance\",\"ĠguiActive Un\",\"add ed\",\"ĠBra ves\",\"ĠI bn\",\"Ġhere by\",\"ĠB RE\",\"Ġshare holder\",\"ĠH ir\",\"ĠJ i\",\"Ġstrange ly\",\"Ġadm ired\",\"Ġpl ight\",\"Ġb achelor\",\"ĠP ole\",\"cipl inary\",\"T ony\",\"ĠArmen ian\",\"Ġun man\",\"ĠZion ist\",\"St age\",\"isco ver\",\"Ġautom otive\",\"Ġs idelines\",\"Ġsl ick\",\"ĠRena issance\",\"ĠF UN\",\"Im ages\",\"ĠH aj\",\"Ġp ing\",\"Ġshort cut\",\"ĠBl vd\",\"ĠLook s\",\"Ġbur sts\",\"Ġcl amp\",\"Ġm ish\",\"Ġsort ing\",\"Ġpatri ot\",\"Ġcorrect ness\",\"ĠScand inav\",\"ĠCaval iers\",\"p ython\",\"az ar\",\"Ġ3 75\",\"ĠJa une\",\"40 9\",\"Ġdetrim ental\",\"Ġstab bing\",\"Ġpoison ed\",\"Ġf ountain\",\"oc ent\",\"or st\",\"ĠMar i\",\"Ġr ains\",\"ĠO vers\",\"ĠInst itution\",\"ud get\",\"AM Y\",\"t ale\",\"ĠK R\",\"ĠPr ices\",\"Ġhead aches\",\"Ġlands l\",\"ĠA ura\",\"Bon us\",\"ĠZ hao\",\"ĠH ip\",\"Ġhop s\",\"ĠKurd istan\",\"Ġexplo iting\",\"ry n\",\"Ġhypocr isy\",\"op ening\",\"Ġgun shot\",\"Ġw ed\",\"inter stitial\",\"Inter stitial\",\"Ġam en\",\"Bre aking\",\"Ġmarket ed\",\"W ire\",\"ĠC rowd\",\"Contin ue\",\"ĠK nown\",\"ĠEffect ive\",\"ore an\",\"iz ons\",\"Jose ph\",\"Ġescal ation\",\"us ername\",\"Ġcur tain\",\"AT ES\",\"ĠP AR\",\"ĠM iy\",\"Ġcounter fe\",\"l ene\",\"Ġcont enders\",\"d aily\",\"ĠAs c\",\"ĠPhill ip\",\"most ly\",\"Ġfil ename\",\"he ne\",\"Ġresemb ling\",\"Ġst aging\",\"ĠCh loe\",\"Ġw iring\",\"H on\",\"ĠRen ew\",\"ott age\",\"ĠHy brid\",\"m uch\",\"Ġstro kes\",\"Ġpolicy makers\",\"AP TER\",\"ĠArk ham\",\"pl ot\",\"Ġassist ants\",\"Ġde port\",\"ĠSe ga\",\"Ġinflu enza\",\"ĠC ursed\",\"ĠK obe\",\"Ġskin ny\",\"Prov ider\",\"ĠR ip\",\"Ġincrement al\",\"product s\",\"B F\",\"Ġd ome\",\"ĠC redits\",\"Ġlos ers\",\"int s\",\"ĠBet ty\",\"ĠTal ent\",\"ĠD AM\",\"L v\",\"E ss\",\"Ġd ens\",\"tem p\",\"J udge\",\"od ic\",\"Ġ' (\",\"UR ES\",\"ets k\",\"V O\",\"Ġretrie ved\",\"Ġarchitect s\",\"Ù ĩ\",\"Ġeth ic\",\"ĠSecond ary\",\"st ocks\",\"ad ia\",\"Ġ3 25\",\"ĠOp inion\",\"Ġsimultane ous\",\"Ġd izz\",\"ul p\",\"Ġsmugg ling\",\"ipp ery\",\"R andom\",\"f acing\",\"ĠD as\",\"Ġstock p\",\"Ġdiscl osures\",\"po inter\",\"Ġcor al\",\"ĠSe lection\",\"ĠP ike\",\"ival ent\",\"Ġruth less\",\"ĠR im\",\"Ġensu ing\",\"ĠExper iment\",\"Ġcongress man\",\"Ġbelie ver\",\"Ġun specified\",\"ĠM ord\",\"Ġknowledge able\",\"ĠV ERY\",\"T X\",\"Ġstra ps\",\"Ġtur f\",\"apesh ifter\",\"Ġmar ital\",\"Ġfl ock\",\"ãģ Ĩ\",\"26 3\",\"AM ES\",\"ĠOpp osition\",\"Ġtre asures\",\"ĠG OD\",\"Ġmodel ed\",\"ĠWOR LD\",\"Ġ( [\",\"ĠUs age\",\"H F\",\"Ġ$ (\",\"uss ed\",\"Ġpione er\",\"E ight\",\"par se\",\"b read\",\"rit z\",\"ĠMir anda\",\"ĠK ant\",\"++ )\",\"ore n\",\"Ġprov oked\",\"Ġbre eds\",\"ĠIn cludes\",\"ĠPast ebin\",\"ĠFl ip\",\"J ava\",\"Ġbr ink\",\"Ġrum ored\",\"Ġun seen\",\"Ġgar nered\",\"ĠDef in\",\"al ted\",\"Ġtatt oos\",\"Ġhes itation\",\"is itions\",\"ĠWe aver\",\"ĠReport ing\",\"Ġtherap ies\",\"Ġconsult ants\",\"Ġresid ual\",\"ĠMal i\",\"ĠRom a\",\"i ago\",\"ĠRes idents\",\"ub i\",\"Ġremed ies\",\"Ġadapt ive\",\"ĠAl ive\",\"ĠBar cl\",\"Ġwal lets\",\"c rypt\",\"etermin ation\",\"ĠPel osi\",\"Ġsl ipping\",\"oton in\",\"Ġall iances\",\"pat rick\",\"ir is\",\"Ġor th\",\"ĠPer kins\",\"ĠDe V\",\"ĠG ets\",\"Ġdry ing\",\"ge e\",\"fore st\",\"ĠFor get\",\"ore m\",\"33 9\",\"Ġvague ly\",\"ĠD ion\",\"ĠP orn\",\"ĠH OW\",\"Ġp neum\",\"Ġrub ble\",\"ĠT aste\",\"enc ia\",\"ĠG el\",\"Ġd st\",\"Ġ24 5\",\"ĠMoroc co\",\"inf lamm\",\"ĠTw ins\",\"Ġb ots\",\"d aughter\",\"ĠB alk\",\"Ġbre thren\",\"Ġlog os\",\"Ġgo bl\",\"f ps\",\"Ġsub division\",\"Ġp awn\",\"Ġsquee zed\",\"Ġmor ale\",\"ĠD W\",\"' \\\"\",\"Ġkn ot\",\"ook y\",\"Ġdiv isive\",\"Ġboost ed\",\"ch y\",\"ãĥ Ĳ\",\"if act\",\"Ġnewcom ers\",\"ĠWrest ling\",\"Ġsc outs\",\"w olves\",\"R at\",\"Ġnin eteenth\",\"ĠOs borne\",\"St ats\",\"Ġem powered\",\"Ġpsych opath\",\"ĠO EM\",\"ugg age\",\"ĠP K\",\"ĠMoh ammad\",\"P ak\",\"Ġanarch ists\",\"ĠExt ract\",\"est hes\",\"ĠStock holm\",\"l oo\",\"ĠG raph\",\"Ġdeploy ing\",\"ĠStr anger\",\"ĠM old\",\"Ġstaff er\",\"Ġdiscount ed\",\"uck le\",\"ple ase\",\"ĠLand ing\",\"ÃŃ a\",\"Ġ19 3\",\"Ġan te\",\"Ġrep etition\",\"Ġ+ /-\",\"Ġpar ody\",\"Ġlive ly\",\"AA A\",\"ĠHor us\",\"Ġp its\",\"ind ers\",\"L OC\",\"ĠVen ice\",\"40 6\",\"ĠDis cover\",\"â Ĩ\",\"ellect ual\",\"Ġp ens\",\"Ġey el\",\"ig uous\",\"Im pl\",\"Ġj oking\",\"Ġinv al\",\"ĠBel fast\",\"Ġcredit ors\",\"ĠSky walker\",\"ov sky\",\"Ġcease fire\",\"Ġse als\",\"is oft\",\") ).\",\"ĠFel ix\",\"IT S\",\"Ġt resp\",\"ĠBlock chain\",\"ew are\",\"ĠSch war\",\"en ne\",\"mount ed\",\"ĠBe acon\",\"les h\",\"Ġimmense ly\",\"Ġche ering\",\"Em ploy\",\"sc ene\",\"ish ly\",\"atche wan\",\"ĠNic olas\",\"Ġdr ained\",\"ĠEx it\",\"ĠAz erb\",\"j un\",\"Ġflo ated\",\"u ania\",\"De ep\",\"Ġsuper v\",\"Ġmyst ical\",\"ĠD ollar\",\"ĠApost le\",\"ĠR EL\",\"ĠProv ided\",\"ĠB ucks\",\"ãĥ ´\",\"cut ting\",\"Ġenhance ments\",\"ĠPengu ins\",\"ĠIsa iah\",\"Ġj erk\",\"ĠW yn\",\"Ġst alled\",\"Ġcryptoc urrencies\",\"ĠR oland\",\"sing le\",\"Ġl umin\",\"ĠF ellow\",\"ĠCap acity\",\"ĠKaz akh\",\"W N\",\"Ġfin anced\",\"38 9\",\"Ġt id\",\"Ġcoll usion\",\"ĠMy r\",\"î Ģ\",\"Sen ator\",\"Ġped iatric\",\"Ġneat ly\",\"Ġsandwic hes\",\"ĠArchitect ure\",\"Ġt ucked\",\"Ġbalcon y\",\"Ġearthqu akes\",\"qu ire\",\"F uture\",\"Ġhe fty\",\"é Ĺ\",\"Ġspecial izes\",\"Ġstress es\",\"Ġs ender\",\"Ġmisunder standing\",\"Ġep ile\",\"Ġprov oke\",\"ĠCol ors\",\"Ġdis may\",\"uk o\",\"[ _\",\"58 6\",\"ne utral\",\"Ġdon ating\",\"ĠRand all\",\"Mult i\",\"Ġconvenient ly\",\"ĠS ung\",\"ĠC oca\",\"Ġt ents\",\"ĠAc celer\",\"Ġpart nered\",\"27 2\",\"ir ming\",\"ĠB AS\",\"s ometimes\",\"Ġobject ed\",\"ub ric\",\"p osed\",\"LC S\",\"gr ass\",\"Ġattribut able\",\"V IS\",\"Israel i\",\"Ġrepe ats\",\"ĠR M\",\"v ag\",\"ut a\",\"in ous\",\"Ġin ert\",\"ĠMig uel\",\"æ Ń\",\"ĠHawai ian\",\"B oard\",\"Ġart ific\",\"ĠAzerb ai\",\"as io\",\"ĠR ent\",\"A IN\",\"Ġappl iances\",\"Ġnational ity\",\"Ġass hole\",\"ĠN eb\",\"Ġnot ch\",\"h ani\",\"ĠBr ide\",\"Av ailability\",\"Ġintercept ed\",\"Ġcontin ental\",\"Ġsw elling\",\"ĠPers pect\",\"b ies\",\". <\",\"ith metic\",\"ĠL ara\",\"Ġtempt ing\",\"add r\",\"Ġoversee ing\",\"cl ad\",\"ĠD V\",\"ĠGing rich\",\"Ġm un\",\"ĠApp ropri\",\"Ġalter ations\",\"ĠPat reon\",\"Ġha voc\",\"Ġdiscipl ines\",\"Ġnotor iously\",\"aku ya\",\"ier i\",\"? ).\",\"ĠW ent\",\"Ġsil icon\",\"Ġtre mb\",\"Cont ainer\",\"K nown\",\"Ġmort ar\",\"est e\",\"ick a\",\"Ar thur\",\"ĠPre viously\",\"ĠMart y\",\"Ġsp arse\",\"g ins\",\"Ġin ward\",\"ĠParticip ant\",\"C opy\",\"ĠM isc\",\"Ġantib iotic\",\"ĠRet ro\",\"Ġel usive\",\"Ġass ail\",\"ĠBatt alion\",\"ĠB ought\",\"Ġdimin ish\",\"ĠEuro pa\",\"s ession\",\"ĠDanger ous\",\"ies el\",\"Ġdisbel ief\",\"Ġbl asts\",\"ext reme\",\"ĠBoy d\",\"ĠProject s\",\"ĠGu ys\",\"Ġunder gone\",\"Ġgr ill\",\"ĠDw ight\",\"Ġ19 7\",\"US ER\",\"Ġfiles ystem\",\"Ġcl ocks\",\"T aylor\",\"Ġwra pper\",\"Ġfold ing\",\"ous and\",\"ĠPhilipp ine\",\"ATION AL\",\"ĠPer th\",\"Ġas hes\",\"Ġaccum ulate\",\"ĠGate way\",\"Sh op\",\"orks hire\",\"H an\",\"ĠBar rel\",\"ĠLe h\",\"ĠX V\",\"Ġwh im\",\"Ġrep o\",\"ĠC G\",\"ĠM am\",\"Ġincorpor ating\",\"Ġbail out\",\"Ġlingu istic\",\"Ġdis integ\",\"C LE\",\"Ġcinem atic\",\"ĠF iber\",\"S yn\",\"il ion\",\"ĠCom pos\",\"c hens\",\"Ġne oc\",\"Ġbo iled\",\"F INE\",\"on o\",\"un cle\",\"ik en\",\"ĠB M\",\"Î ¹\",\"Ġreceipt s\",\"Ġdisp osed\",\"ĠTh irty\",\"ĠR ough\",\"ĠA BS\",\"Ġnot withstanding\",\"oll en\",\"# $\",\"Ġunrel iable\",\"Ġbl oom\",\"Ġmedi ocre\",\"Ġtr am\",\"ĠTas man\",\"Ġsh akes\",\"Ġmanifest o\",\"ĠM W\",\"Ġsatisf actory\",\"Ġsh ores\",\"Ġcomput ation\",\"Ġassert ions\",\"orm ons\",\"ar ag\",\"ab it\",\"Dem ocrats\",\"ĠL oot\",\"ĠVol ks\",\"ha ired\",\"Ġgrav itational\",\"S ing\",\"ĠM iz\",\"Ġthro ttle\",\"Ġtyr anny\",\"ĠView s\",\"Ġrob ber\",\"ĠMinor ity\",\"Ġsh rine\",\"sc ope\",\"pur pose\",\"Ġnucle us\",\"our cing\",\"ĠUS DA\",\"ĠD HS\",\"w ra\",\"ĠBow ie\",\"Sc ale\",\"ĠB EL\",\"x i\",\"I ter\",\"Ġ( ),\",\"w right\",\"Ġsail ors\",\"ous ed\",\"NAS A\",\"ĠPro of\",\"ĠMin eral\",\"t oken\",\"ĠF D\",\"R ew\",\"Ġe ll\",\"6 30\",\"Ġchance llor\",\"ĠG os\",\"Ġamount ed\",\"ĠRec re\",\"ome z\",\"ĠOpt im\",\"ĠOl ive\",\"Ġtrack er\",\"ow ler\",\"ĠUn ique\",\"R oot\",\"Ġmar itime\",\"ĠQur an\",\"ĠAd apt\",\"Ġecosystem s\",\"ĠRe peat\",\"ĠS oy\",\"ĠI MP\",\"Ġgrad uating\",\"and em\",\"P ur\",\"ĠRes et\",\"ĠTr ick\",\"ĠPh illy\",\"ĠT ue\",\"ĠMalays ian\",\"Ġclim ax\",\"Ġb ury\",\"Ġcons pic\",\"ĠSouth ampton\",\"ĠFl owers\",\"Ġesc orted\",\"ĠEduc ational\",\"ĠI RC\",\"Ġbrut ally\",\"e ating\",\"Ġpill ar\",\"ĠS ang\",\"ĠJ ude\",\"ar ling\",\"ĠAm nesty\",\"Ġrem inding\",\"ĠAdminist rative\",\"hes da\",\"Ġfl ashed\",\"ĠP BS\",\"per ate\",\"fe ature\",\"Ġsw ipe\",\"Ġgra ves\",\"oult ry\",\"26 1\",\"bre aks\",\"ĠGu er\",\"Ġsh rimp\",\"ĠV oting\",\"qu ist\",\"Ġanaly tical\",\"Ġtables poons\",\"ĠS OU\",\"Ġresear ched\",\"Ġdisrupt ed\",\"Ġj our\",\"Ġrepl ica\",\"Ġcart oons\",\"b ians\",\"} )\",\"c opy\",\"G ot\",\"ou ched\",\"P UT\",\"Ġsw arm\",\"not ations\",\"s aid\",\"Ġreb uilt\",\"Ġcollabor ate\",\"Ġr aging\",\"Ġn ar\",\"Ġdem ographics\",\"ĠD DR\",\"Ġdist rust\",\"oss ier\",\"ĠK ro\",\"Ġpump kin\",\"Ġreg rets\",\"Ġfatal ities\",\"ĠL ens\",\"ĠO le\",\"p d\",\"Ġpupp et\",\"ĠOut look\",\"ĠSt am\",\"O l\",\"F air\",\"U U\",\"Ġre written\",\"Ä ±\",\"Ġfasc inated\",\"Ġve ctors\",\"Ġtrib unal\",\"u ay\",\"ĠM ats\",\"ĠCo ins\",\"[ [\",\"Ġ18 1\",\"Ġrend ers\",\"ĠK aepernick\",\"Ġesp ionage\",\"Ġsum m\",\"Ġd itch\",\"Acc ount\",\"Ġspread sheet\",\"Ġmut ant\",\"p ast\",\"40 7\",\"Ġd ye\",\"Ġinit iation\",\"Ġ4 000\",\"Ġpunish able\",\"Ġth inner\",\"ĠKh al\",\"Ġinter medi\",\"D un\",\"ĠGoth am\",\"Ġeager ly\",\"Ġvag inal\",\"p owers\",\"V W\",\"ĠWATCH ED\",\"Ġpred ator\",\"ams ung\",\"Ġdispar ity\",\"Ġ[ *\",\"Ġam ph\",\"Ġout skirts\",\"ĠSpir its\",\"Ġskelet al\",\"Ð »\",\"ĠR ear\",\"Ġissu ance\",\"ĠLog ic\",\"re leased\",\"Z Z\",\"ĠB ound\",\"Ent ry\",\"Ġex its\",\"is ol\",\"ĠFound er\",\"Ġw re\",\"ĠGreen land\",\"ĠM MO\",\"t aker\",\"IN C\",\"ãģ ¾\",\"Ġhour ly\",\"hen ko\",\"Ġfantas ies\",\"Ġdis ob\",\"Ġdemol ition\",\"ãĥ ĭ\",\"Ġen listed\",\"rat ulations\",\"Ġmis guided\",\"Ġens ured\",\"Ġdiscour aged\",\"m ort\",\"Ġfl ank\",\"Ġc ess\",\"Ġreact s\",\"ĠS ere\",\"s ensitive\",\"ĠSer pent\",\"ass ad\",\"Ġ24 7\",\"Ġcalm ly\",\"b usters\",\"Ġble ed\",\"ĠSt ro\",\"Ġamuse ment\",\"ĠAntar ctica\",\"Ġs cept\",\"ĠG aw\",\"a q\",\"ason ic\",\"Ġsp rawling\",\"n ative\",\"atur ated\",\"ĠBattle field\",\"IV ERS\",\"E B\",\"ĠG ems\",\"ĠNorth western\",\"ĠFil ms\",\"ĠAut omatic\",\"Ġappre hend\",\"ãģ ¨\",\"Ġgui Name\",\"Ġback end\",\"Ġevid enced\",\"ge ant\",\"01 2\",\"ĠS iege\",\"Ġexternal To\",\"Ġunfocused Range\",\"ĠguiActiveUn focused\",\"Ġgui Icon\",\"ĠexternalTo EVA\",\"ĠexternalToEVA Only\",\"F ri\",\"ch ard\",\"en aries\",\"Ġchief s\",\"Ġc f\",\"ĠH UD\",\"Ġcorro bor\",\"Ġd B\",\"ĠT aken\",\"ĠPat ricia\",\"ra il\",\"ĠCh arm\",\"ĠLiber tarian\",\"rie ve\",\"Person al\",\"ĠO UR\",\"ger ies\",\"Ġdump ing\",\"Ġneurolog ical\",\"it imate\",\"ĠClint ons\",\"raft ed\",\"ĠM olly\",\"Ġtermin als\",\"reg ister\",\"Ġfl are\",\"Ġenc oded\",\"Ġautop sy\",\"p el\",\"m achine\",\"Ġexempt ions\",\"ĠRoy als\",\"d istance\",\"Ġdraft s\",\"Ġl ame\",\"ĠC unning\",\"Ġsp ouses\",\"ĠMark ets\",\"ĠCar rier\",\"Ġimp lying\",\"ĠY ak\",\"s id\",\"Ġl oser\",\"Ġvigil ant\",\"Ġimpe achment\",\"Ġaug mented\",\"ĠEmploy ees\",\"Ġunint ended\",\"tern ally\",\"ĠW att\",\"Ġrecogn izable\",\"ess im\",\"æ Ŀ\",\"Ġco ated\",\"r ha\",\"Ġlie utenant\",\"ĠLegisl ation\",\"pub lished\",\"44 4\",\"01 3\",\"Ġide ally\",\"ĠPass word\",\"Ġsimpl ify\",\"ĠMet a\",\"ĠM RI\",\"Ġple ading\",\"organ ized\",\"hand ler\",\"Ġun ravel\",\"cor rect\",\"Ġ icy\",\"Ġparan oid\",\"Ġpass er\",\"Ġinspect ions\",\"of er\",\"ĠHealth care\",\"28 3\",\"ĠBr ut\",\"iol a\",\"for ge\",\"ĠMed ieval\",\"MS N\",\"ie vers\",\"ĠProgram ming\",\"å ī\",\"Ġ2 23\",\"m u\",\"ĠC LE\",\"ug a\",\"Ġsho ppers\",\"Ġinform ative\",\"ĠPl ans\",\"Ġsupplement ation\",\"ĠT ests\",\"ty ard\",\"ocy tes\",\"ĠVeg a\",\"ĠGujar at\",\"erman ent\",\"Ex cept\",\"ĠL OT\",\"all a\",\"ĠC umm\",\"ĠO sw\",\"Ġven om\",\"ĠDeb t\",\"ĠD OWN\",\"Ġreun ion\",\"Ġm uc\",\"ĠRel ief\",\"Ġge op\",\"ĠðŁ ĺ\",\"al ogue\",\"An th\",\"ech o\",\"Ġcor ros\",\"Ġrepl ication\",\"ĠBl azing\",\"ĠD aughter\",\"Ġinf lic\",\"ĠLind sey\",\"Ù Ī\",\"28 4\",\"Ex it\",\"Ġgl oom\",\"TA IN\",\"Ġundermin ing\",\"Ġadv ising\",\"h idden\",\"Ġover flow\",\"Ġg or\",\"urd ue\",\"Ġe choes\",\"enh agen\",\"Ġimp uls\",\"d rug\",\"c ash\",\"Ġas ync\",\"Ġmir ac\",\"at ts\",\"p unk\",\"Ġpiv ot\",\"ĠLegisl ative\",\"Ġblog gers\",\"ĠCl aw\",\"s burg\",\"d yl\",\"ĠRecomm end\",\"Ġver te\",\"Ġprohib iting\",\"ĠPant her\",\"Jon athan\",\"Ġo min\",\"Ġhate ful\",\"28 1\",\"ĠOr che\",\"ĠMurd och\",\"down s\",\"Ġas ymm\",\"G ER\",\"Al ways\",\"Ġinform s\",\"ĠW M\",\"ĠP ony\",\"ĠApp endix\",\"ĠAr lington\",\"J am\",\"Ġmedic inal\",\"ĠS lam\",\"IT IES\",\"Ġre aff\",\"ĠR i\",\"F G\",\"S pring\",\"b ool\",\"Ġthigh s\",\"Ġmark ings\",\"ĠRa qqa\",\"ĠL ak\",\"p oll\",\"ts ky\",\"ĠMort y\",\"ĠDef inition\",\"Ġdeb unk\",\"end ered\",\"ĠLe one\",\"a vers\",\"Ġmortg ages\",\"App arently\",\"N ic\",\"ha us\",\"ĠTh ousands\",\"au ld\",\"Ġm ash\",\"sh oot\",\"Ġdi arr\",\"Ġconscious ly\",\"H ero\",\"e as\",\"ĠN aturally\",\"ĠDestroy er\",\"Ġdash board\",\"serv ices\",\"R og\",\"Ġmillenn ials\",\"Ġinv ade\",\"- (\",\"Ġcomm issions\",\"ĠA uckland\",\"Ġbroadcast s\",\"Ġfront al\",\"Ġcr ank\",\"ĠHist oric\",\"Ġrum ours\",\"CT V\",\"Ġster il\",\"Ġboost er\",\"rock et\",\"ãĤ ¼\",\"ut sche\",\"ĠP I\",\"Ġ2 33\",\"ĠProdu cer\",\"ĠAnaly tics\",\"Ġinval uable\",\"Ġunint ention\",\"ĠC Y\",\"Ġscrut in\",\"Ġg igg\",\"Ġeng ulf\",\"Ġprolet ariat\",\"Ġh acks\",\"ĠH ew\",\"ar ak\",\"ĠSl ime\",\"ield ing\",\"ag her\",\"ĠEll iot\",\"Ġtele com\",\"Ġ2 19\",\"ult an\",\"ĠAr bor\",\"ĠSc outs\",\"B an\",\"Ġlifes pan\",\"Ġbl asp\",\"38 8\",\"Ġjud iciary\",\"ĠContin ental\",\"ask ing\",\"Mc C\",\"L ED\",\"Ġbag gage\",\"ĠSorce rer\",\"Ġrem nants\",\"ĠGriff ith\",\"ets u\",\"ĠSub aru\",\"ĠPerson ality\",\"des igned\",\"ush ima\",\"agn ar\",\"Ġrec oil\",\"Ġpass ions\",\"\\\\ \\\":\",\"Ġte e\",\"Ġabol ition\",\"ĠCreat ing\",\"j ac\",\"Ġ19 4\",\"01 9\",\"Ġpill ars\",\"ric hed\",\"/ \\\"\",\"t k\",\"Ġlive lihood\",\"Ġro asted\",\"ah on\",\"ĠH utch\",\"ass ert\",\"Ġdivid end\",\"Ġkn it\",\"Ġd aunting\",\"Ġdisturb ance\",\"Ġsh ale\",\"Ġcultiv ated\",\"Ġrefriger ator\",\"L B\",\"ĠN ET\",\"Ġcommercial s\",\"Ġthink ers\",\"45 5\",\"Ġch op\",\"B road\",\"Ġsuspic ions\",\"Ġtag ged\",\"l ifting\",\"Ġsty lish\",\"ĠShield s\",\"Short ly\",\"Ġt ails\",\"A uth\",\"ST E\",\"ĠG AME\",\"Ġse ism\",\"ĠK is\",\"olog ne\",\"Ġcow ork\",\"Ġforc ibly\",\"Ġthy roid\",\"ĠP B\",\"AN E\",\"mar ried\",\"h orse\",\"Ġpoly mer\",\"ĠCh al\",\"od or\",\"DE BUG\",\"ĠCon text\",\"Ġbl iss\",\"Ġpin point\",\"ĠMat hemat\",\"leg ram\",\"ĠWeek end\",\"Ġlab elled\",\"Ġb art\",\"it les\",\"Ġest rogen\",\"âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ âĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶâĢĶ\",\"\\\" '\",\"Ġvis ibly\",\"Ġouts ider\",\"aid a\",\"Are a\",\"Ġdisse min\",\"Ġdish onest\",\"ĠCl osed\",\"ĠBullet in\",\"ĠRam sey\",\"sw ord\",\"ĠX I\",\"our ced\",\"S ame\",\"34 6\",\"ĠRe pe\",\"ĠK ou\",\"c ake\",\"em is\",\"C ache\",\"ĠMe aning\",\"ĠEn light\",\"onom y\",\"Ġmanifest ation\",\"sw orth\",\"J ay\",\"Ġch ore\",\"Ã¶ r\",\"D ream\",\"Ġsanction ed\",\"Ġcult urally\",\"ĠA ra\",\"N av\",\"Ġthe ological\",\"Ġstr ut\",\"ĠV O\",\"ĠHand book\",\"Ġconstruct ing\",\"ĠÂ ¶\",\"ĠBenef its\",\"ĠPsych ological\",\"s ac\",\"å ¸\",\"p olicy\",\"ĠMat ters\",\"ĠReport ed\",\"ĠBy te\",\"Ġvit ro\",\"ĠM aiden\",\"Ġl am\",\"ĠJenn ings\",\"Ġgar ment\",\"ĠRut gers\",\"ĠStaff ord\",\"ĠWell ington\",\"Ġinter mitt\",\"Ġn pm\",\"Ġord eal\",\"Ġplug ged\",\"o oming\",\"in ished\",\"fram ework\",\"Ġtim ber\",\"Ġc ass\",\"Ġ8 50\",\"il ess\",\"ĠRed ux\",\"7 68\",\"St re\",\"Ġsurpass ed\",\"w hel\",\"Ġparalle ls\",\"Ġve il\",\"ĠG I\",\"ĠR EST\",\"Ġread iness\",\"s ort\",\"Ġmod ifying\",\"ĠSl ate\",\"ru ff\",\"Ġmar ble\",\"Ġinf rared\",\"Ġaud itor\",\"ĠFANT ASY\",\"ĠP overty\",\"ĠS PD\",\"Ġ\\\" (\",\"K y\",\"RA Y\",\"Ġexecut ions\",\"ĠBever ly\",\"ĠMarx ism\",\"ĠBur st\",\"ĠK ali\",\"est ones\",\"Clear ly\",\"E ll\",\"ãģ §\",\"ĠProceed ings\",\"T oken\",\"IF IC\",\"Ã± a\",\"Cent ral\",\"ĠH aley\",\"ĠD rama\",\"Ġform ations\",\"OR N\",\"Book s\",\"Ġdom inating\",\"ĠFly ers\",\"ĠCompan ion\",\"Ġdiscipl ined\",\"ĠYug oslav\",\"ĠSpell s\",\"Ġv engeance\",\"Ġland lords\",\"L en\",\"ĠO gre\",\"ano ia\",\"Ġpier cing\",\"Ġcon greg\",\"Ġscore r\",\"ob ia\",\"Ġnic kel\",\"ĠLear ns\",\"Ġre jo\",\"Ġmaster piece\",\"Fl ash\",\"Ġinhab ited\",\"ĠOpen GL\",\"ĠD ud\",\"ĠI CO\",\"Ġar ter\",\"Ġpl ur\",\"Ġmaster y\",\"Ġlong standing\",\"st ed\",\"Ġw ines\",\"Ġtelev ised\",\"ĠSh rine\",\"ĠBay ern\",\"Ġâ ĵĺ\",\"Ġencl osure\",\"j ohn\",\"Ġprophe ts\",\"ĠRes urrection\",\"ĠOrd ers\",\"Ġun even\",\"r als\",\"Ġd wind\",\"ĠL ah\",\"ĠSl oven\",\"37 8\",\"Ġins istence\",\"aff le\",\"ĠCl one\",\"Ġhard ship\",\"ĠCongress man\",\"Ġple ad\",\"Ġreview ers\",\"Ġc ured\",\"Ġ19 35\",\"as ley\",\"f ake\",\"ĠTh inking\",\"yd ia\",\"P ART\",\"ĠD ota\",\"o it\",\"Ġwh ipped\",\"Ġb ouncing\",\"ĠHispan ics\",\"com ings\",\"Ġcann abin\",\"ĠCh ambers\",\"ĠZ ack\",\"Option al\",\"Ġco ats\",\"Ġprow ess\",\"ĠNort on\",\"Ġplain ly\",\"Ġfre ight\",\"Ġinhib ition\",\"Ġcl am\",\"Ġ30 3\",\"ke f\",\"ale igh\",\"L uke\",\"Ġpsych o\",\"ator ium\",\"M ED\",\"Ġtreat ies\",\"Ġind isc\",\"Ġd c\",\"OP S\",\"Ġresil ient\",\"ĠInter state\",\"Ġsl ack\",\"Ġmund ane\",\"Ġestab lishes\",\"35 9\",\"Ġstr ained\",\"Ġn ond\",\"S us\",\"Ġcast e\",\"ar ate\",\"ie ving\",\"Ġunfair ly\",\"Ġpars er\",\"on ial\",\"urs ive\",\"V ia\",\"ĠOtt o\",\"ĠAuthor ities\",\"stro ke\",\"K R\",\"ĠMer cy\",\"Ġfurn ished\",\"Ġout set\",\"Ġmet ic\",\"19 82\",\"olith ic\",\"ĠT ent\",\"og ical\",\"ĠA ircraft\",\"Ġh ides\",\"ĠBec ame\",\"Ġeduc ators\",\"re aching\",\"Ġvol atility\",\"Ġtodd ler\",\"ĠNAS CAR\",\"ĠTw elve\",\"ĠHigh lights\",\"Ġgra pe\",\"Ġspl its\",\"Ġpe asant\",\"Ġre neg\",\"ĠMS I\",\"Tem p\",\"st ars\",\"Ġtre k\",\"ĠHy de\",\"b inding\",\"Ġreal ism\",\"Ġox ide\",\"ĠH os\",\"Ġmount s\",\"Ġbit ing\",\"Ġcollaps ing\",\"Ġpost al\",\"Ġmuse ums\",\"Ġdet ached\",\"Ġrespect ing\",\"Ġmonop ol\",\"Ġwork flow\",\"ĠC ake\",\"Tem plate\",\"ĠOrgan isation\",\"Ġpers istence\",\"36 9\",\"C oming\",\"B rad\",\"Ġredund ant\",\"ĠG TA\",\"Ġb ending\",\"Ġrev oked\",\"Ġoff ending\",\"Ġfram ing\",\"Ġprint f\",\"Comm un\",\"mem bers\",\"Out side\",\"Ġconst rued\",\"Ġc oded\",\"F ORE\",\"Ġch ast\",\"Ch at\",\"Ind ian\",\"ĠY ard\",\"? !\\\"\",\"ĠP orts\",\"ĠX avier\",\"ĠR ET\",\"' .\\\"\",\"ĠBo at\",\"iv ated\",\"ich t\",\"umer able\",\"D s\",\"ĠDun n\",\"Ġcoff in\",\"Ġsecure ly\",\"ĠRapt ors\",\"ĠB es\",\"Install ation\",\"Ġin ception\",\"ĠHealth y\",\"end ants\",\"Ġpsych ologists\",\"ĠShe ikh\",\"c ultural\",\"ĠBlack Berry\",\"sh ift\",\"F red\",\"oc he\",\"Ġc akes\",\"ĠS EO\",\"ĠG ian\",\"ĠAs ians\",\"og ging\",\"e lement\",\"Ġpund its\",\"ĠV augh\",\"ĠG avin\",\"Ġh itter\",\"Ġdrown ed\",\"Ġch alk\",\"ĠZ ika\",\"Ġmeas les\",\"80 2\",\"âĢ¦ ..\",\"ĠAW S\",\"] \\\"\",\"Ġdist ort\",\"ĠM ast\",\"Ġantib odies\",\"ĠM ash\",\"Mem ory\",\"ĠUg anda\",\"ĠPro b\",\"Ġvom iting\",\"ĠTurn s\",\"Ġoccup ying\",\"Ġev asion\",\"ĠTher apy\",\"Ġprom o\",\"Ġelect r\",\"Ġblue print\",\"ĠD re\",\"pr iced\",\"ĠDep ot\",\"Ġallev iate\",\"ĠSom ali\",\"m arg\",\"n ine\",\"Ġnostalg ia\",\"ĠShe pherd\",\"Ġcaval ry\",\"Ġtor ped\",\"ĠBlood y\",\"x b\",\"Ġs ank\",\"Ġgo alt\",\"report print\",\"embed reportprint\",\"clone embedreportprint\",\"ĠIn itially\",\"ĠF ischer\",\"Ġnot eworthy\",\"c ern\",\"Ġin efficient\",\"raw download\",\"rawdownload cloneembedreportprint\",\"c ation\",\"ĠD ynasty\",\"l ag\",\"D ES\",\"Ġdistinct ly\",\"ĠEston ia\",\"Ġopen ness\",\"Ġg ossip\",\"ru ck\",\"W idth\",\"ĠIb rahim\",\"Ġpet roleum\",\"Ġav atar\",\"ĠH ed\",\"ath a\",\"ĠHog warts\",\"Ġc aves\",\"67 8\",\"Ġsafegu ard\",\"ĠM og\",\"iss on\",\"ĠDur ham\",\"sl aught\",\"ĠGrad uate\",\"Ġsub conscious\",\"ĠEx cellent\",\"ĠD um\",\"---- -\",\"Ġp iles\",\"ĠW ORK\",\"ĠG arn\",\"ĠF ol\",\"ĠAT M\",\"Ġavoid s\",\"ĠT ul\",\"Ġble ak\",\"EL Y\",\"iv ist\",\"light ly\",\"P ers\",\"ĠD ob\",\"ĠL S\",\"Ġins anity\",\"Î µ\",\"atal ie\",\"En large\",\"Ġtw ists\",\"Ġfault y\",\"Ġpir acy\",\"Ġimp over\",\"Ġrug ged\",\"ĠF ashion\",\"Ġs ands\",\"' ?\",\"sw ick\",\"Ġn atives\",\"Ġhe n\",\"ĠNo ise\",\"ãĥ Ĺ\",\"Ġg reens\",\"Ġfree zer\",\"Ġd ynasty\",\"ĠFather s\",\"ĠNew ark\",\"Ġarchae ological\",\"Ġo t\",\"ob ar\",\"Ġblock ade\",\"Ġall erg\",\"L V\",\"Ġdeb it\",\"ĠR FC\",\"ĠMil ton\",\"ĠPress ure\",\"Ġwill ingly\",\"Ġdisproportion ate\",\"Ġopp ressive\",\"Ġdiamond s\",\"Ġbelong ings\",\"19 70\",\"Ġbell s\",\"Ġimperial ism\",\"Ġ2 27\",\"Ġexpl oding\",\"ĠE clipse\",\"Ġ19 19\",\"Ġr ant\",\"Ġnom inations\",\"34 7\",\"Ġpeace fully\",\"ric a\",\"ĠF UCK\",\"Ġvib ration\",\"mal ink\",\"Ġro pes\",\"ĠIv anka\",\"ĠBrew ery\",\"ĠBook er\",\"ĠOw ens\",\"go ers\",\"Serv ices\",\"ĠSn ape\",\"Ġ19 1\",\"39 5\",\"Ġ2 99\",\"just ice\",\"Ġb ri\",\"Ġdisc s\",\"Ġprom inently\",\"Ġvul gar\",\"Ġsk ipping\",\"l ves\",\"Ġtsun ami\",\"37 4\",\"ĠU rug\",\"ĠE id\",\"rec ated\",\"p hen\",\"Ġfault s\",\"ĠStart ed\",\"9 50\",\"Ġp i\",\"Ġdetect or\",\"Ġbast ard\",\"Ġvalid ated\",\"Space Engineers\",\"OUR CE\",\"Ġ( ~\",\"Ġuns ur\",\"Ġaff irmed\",\"Ġfasc ism\",\"Ġres olving\",\"ĠCh avez\",\"ĠC yn\",\"Ġdet ract\",\"L ost\",\"Ġrig ged\",\"Ġhom age\",\"ĠBrun o\",\"55 5\",\"ec a\",\"Ġpress es\",\"Ġhum our\",\"Ġsp acing\",\"Ġ' /\",\"olk ien\",\"C oun\",\"OP ER\",\"T re\",\"S on\",\"ĠCambod ia\",\"ier re\",\"m ong\",\"o zy\",\"Ġliquid ity\",\"ĠSov iets\",\"ĠFernand o\",\"Ġ2 29\",\"Ġsl ug\",\"ĠCatal an\",\"elect ric\",\"Ġsc enery\",\"ĠH earth\",\"Ġconst rained\",\"Ġgoal ie\",\"ĠGu idelines\",\"ĠAm mo\",\"ĠPear son\",\"Ġtax ed\",\"Ġfet us\",\"Resp onse\",\"ĠAlex is\",\"th ia\",\"G uy\",\"Ġrecon struct\",\"Ġextrem es\",\"Ġconclud ing\",\"ĠP eg\",\"ook s\",\"Ġded uctions\",\"R ose\",\"Ġground breaking\",\"ĠT arg\",\"ãĥ ģ\",\"ĠRe ve\",\"res ource\",\"Ġmo ons\",\"Ġelectrom agnetic\",\"Ġamid st\",\"ĠVik tor\",\"N ESS\",\"B ACK\",\"Ġcomm ute\",\"ĠAna heim\",\"Ġfluct uations\",\"6 40\",\"Ġnood les\",\"ĠCop enhagen\",\"ĠT ide\",\"ĠGri zz\",\"ĠS EE\",\"Ġpip elines\",\"Ġsc ars\",\"end o\",\"ag us\",\"ĠE TF\",\"/ #\",\"ĠBec ome\",\"44 8\",\"Ġvis c\",\"ĠRecomm ended\",\"Ġj umper\",\"Ġcogn ition\",\"Ġassass in\",\"Ġwitness ing\",\"ĠSet up\",\"Ġl ac\",\"v im\",\"IS M\",\"p ages\",\"SS L\",\"35 8\",\"Ġad ject\",\"indust rial\",\"l ore\",\"cher y\",\"Ġgl itter\",\"Ġc alf\",\"Flor ida\",\"Ġspoil ers\",\"Ġsucceed s\",\"Ġch anting\",\"Ġslog ans\",\"ĠTr acy\",\"Vis it\",\"rol ogy\",\"Ġm ornings\",\"Ġline age\",\"Ġs ip\",\"Ġintense ly\",\"Ġflour ish\",\"ĠSle eping\",\"ĠF em\",\"or por\",\"ĠK lan\",\"ĠDar th\",\"h ack\",\"ĠNi elsen\",\"Ġtum ors\",\"Ġprocure ment\",\"ĠY orkshire\",\"Ġra ided\",\"K Y\",\"An na\",\"Ġ// [\",\"ĠDis order\",\"ĠMust ang\",\"ĠW en\",\"ĠTry ing\",\"s q\",\"Ġdeliver ies\",\"Ġshut ter\",\"Ġcere bral\",\"Ġbip olar\",\"ĠC N\",\"l ass\",\"j et\",\"Ġdeb ating\",\"> :\",\"Ġe agle\",\"gr ades\",\"ĠD ixon\",\"UG C\",\"M AS\",\"ĠDr aco\",\"ĠMach ines\",\"aff er\",\"Ġem an\",\"Â ²\",\"pr on\",\"ĠG ym\",\"Ġcompar atively\",\"ĠTrib unal\",\"PR O\",\"Ġle x\",\"Ġfert ile\",\"Ġdep ressing\",\"Ġsuperf icial\",\"ess ential\",\"ĠHun ters\",\"g p\",\"Ġprom inence\",\"L iber\",\"ĠAn cest\",\"ote chnology\",\"Ġm ocking\",\"ĠTra ff\",\"ĸ ļ\",\"Med ium\",\"I raq\",\"Ġpsychiat rist\",\"Quant ity\",\"ĠL ect\",\"Ġno isy\",\"5 20\",\"G Y\",\"Ġsl apped\",\"ĠM TV\",\"Ġpar a\",\"p ull\",\"Mult iple\",\"as her\",\"Ġn our\",\"ĠSe g\",\"Spe ll\",\"v ous\",\"ord ial\",\"Sen ior\",\"ĠGold berg\",\"ĠPl asma\",\"ne ed\",\"Ġmess enger\",\"ere t\",\"Ġteam ed\",\"Ġliter acy\",\"ĠLe ah\",\"ĠD oyle\",\"Ġem itted\",\"U X\",\"Ġev ade\",\"Ġm aze\",\"Ġwrong ly\",\"ĠL ars\",\"Ġstere otype\",\"Ġpled ges\",\"Ġarom a\",\"ĠM ET\",\"Ġac re\",\"ĠO D\",\"Ġf f\",\"Ġbrew eries\",\"ĠH ilton\",\"und le\",\"ĠK ak\",\"ĠThank fully\",\"ĠCan ucks\",\"in ctions\",\"ĠApp ears\",\"Ġco er\",\"Ġundermin ed\",\"ro vers\",\"And re\",\"Ġbl aze\",\"um ers\",\"Ġfam ine\",\"amp hetamine\",\"ulk an\",\"Am ount\",\"Ġdesper ation\",\"wik ipedia\",\"develop ment\",\"ĠCor inth\",\"uss ia\",\"Jack son\",\"L I\",\"N ative\",\"R s\",\"Oh io\",\"ĠKath leen\",\"F ortunately\",\"Ġattend ant\",\"ĠPre ferred\",\"ĠDid n\",\"ĠV s\",\"M is\",\"Ġrespond ent\",\"Ġb oun\",\"st able\",\"Ġp aved\",\"Ġunex pl\",\"ĠChe ney\",\"L M\",\"ĠC ull\",\"bl own\",\"Ġconfront ing\",\"oc ese\",\"serv ing\",\"W i\",\"ĠLith uania\",\"ann i\",\"Ġst alk\",\"h d\",\"Ġv ener\",\"AP H\",\"ynchron ous\",\"UR R\",\"um ably\",\"hist oric\",\"H alf\",\"H ay\",\"Ġresil ience\",\"spe ction\",\"Ġabandon ing\",\"O bs\",\"ĠDeb bie\",\"Ġgrad ient\",\"ĠPl aint\",\"ĠCan al\",\"AR CH\",\"Ġexpans ive\",\"Ġfun g\",\"Ġb ounced\",\"U nd\",\"Ġprec autions\",\"Ġclar ification\",\"Ġd agger\",\"Ġgri ps\",\"ĠÂ µ\",\"ĠRiver a\",\"ĠUnd ead\",\"is ites\",\"ĠFIR ST\",\"Ã± o\",\"aud i\",\"Ġhost ages\",\"Ġcompl iant\",\"Ġal umni\",\"Se ven\",\"Ġcyber security\",\"e ither\",\"Col lect\",\"Ġinvari ably\",\"ĠS oci\",\"Ġlaw maker\",\"Ġa le\",\"ĠPerson ally\",\"N azi\",\"Ġcustom ization\",\"ĠPro c\",\"ĠSask atchewan\",\"eat uring\",\"Ġsp ared\",\"Ġdiscontin ued\",\"Ġcomput ational\",\"ĠMotor ola\",\"Ġsuprem acist\",\"government al\",\"Ġparad ise\",\"ĠDown ing\",\"ĠNik on\",\"Ġcat alyst\",\"ber ra\",\"Tor onto\",\"8 75\",\"bet a\",\"ĠMac ron\",\"Ġunreal istic\",\"ve ctor\",\"ĠVeh icles\",\"it iveness\",\"ĠR V\",\"ĠCol bert\",\"s in\",\"o ji\",\"ent in\",\"ĠKr ish\",\"hell o\",\"ff ield\",\"ok y\",\"ĠT ate\",\"Ġmap le\",\"Ġa ids\",\"chem ical\",\"33 4\",\"n uts\",\"ĠWar p\",\"Ġx x\",\"ĠRob b\",\"umer ous\",\"_- _\",\"ft ime\",\"ĠV W\",\"Ġw inger\",\"ĠD ome\",\"t ools\",\"ĠP V\",\"ĠGe orgetown\",\"Ġg eared\",\"Ġjihad ists\",\"Ġc p\",\"Ġster oids\",\"M other\",\"cler osis\",\"ĠDR M\",\"nes ia\",\"Ġl inger\",\"Ġimm ersive\",\"ĠC OUN\",\"Ġoutwe igh\",\"ens ual\",\"B and\",\"Ġtransform s\",\"mat ched\",\"ps ons\",\"ĠJud icial\",\"f actor\",\"Ġrefer ral\",\"Ġodd ly\",\"ĠW enger\",\"B ring\",\"ĠB ows\",\"60 2\",\"IC LE\",\"Ġl ions\",\"ĠAcad emic\",\"ĠTh orn\",\"ĠRa ider\",\"kef eller\",\"St orage\",\"L ower\",\"ĠOr t\",\"ĠEqu ality\",\"AL T\",\"ĠS OC\",\"T ypes\",\"Ġl yn\",\"ĠAss et\",\"co at\",\"TP P\",\"C VE\",\"ĠPione er\",\"app lication\",\"Mod ern\",\"ĠH K\",\"En vironment\",\"Al right\",\"R ain\",\"IP P\",\"ĠShi ite\",\"Ġm ound\",\"ĠAb ilities\",\"cond ition\",\"St aff\",\"Ġcompet ence\",\"ĠM oor\",\"ĠDi ablo\",\"Ġwith held\",\"Ġost ensibly\",\"ĠB rom\",\"Ġms g\",\"Ġden omin\",\"ĠRef erences\",\"ĠF P\",\"Ġplun ged\",\"Ġp amph\",\"m oving\",\"cent ral\",\"Ġdown right\",\"Ġf ading\",\"T al\",\"T yp\",\"ĠTh y\",\"uk es\",\"it he\",\"Ġo ve\",\"Ġbatt led\",\"Ġseaf ood\",\"Ġfig ur\",\"ĠR D\",\"c rop\",\"Ġsqu ads\",\"{ \\\\\",\"à ¹\",\"ĠE h\",\"Ġinterview ing\",\"ĠQ in\",\"Ġas piring\",\"PL IC\",\"Ġcla uses\",\"ĠG ast\",\"ĠN ir\",\"Ġl uggage\",\"Ġh ose\",\"Ġsystem d\",\"Ġdesc ending\",\"ĠRev ised\",\"ĠR ails\",\"al ign\",\"70 9\",\"33 7\",\"Ġf ug\",\"charg ing\",\"t ags\",\"Ġut er\",\"k ish\",\"WAR NING\",\"49 0\",\"prof its\",\"Ġvoy age\",\"Ġa ce\",\"ĠV anguard\",\"ĠT anks\",\"ĠM uk\",\"Ġ2 26\",\"S afe\",\"Ar mor\",\"Ġvolcan ic\",\"Ġwom b\",\"ĠM IL\",\"Ġbegin ner\",\"ĠRec ogn\",\"ĠA AP\",\"PL AY\",\") !\",\"Ġdetect ing\",\"c n\",\"Ġbre aches\",\"Bas ically\",\"ĠP ag\",\"ĠMunicip al\",\"ĠInd ie\",\"ĠL af\",\"ĠDis able\",\"ĠOl son\",\"Ġrest rained\",\"Ġrul ings\",\"Ġhum ane\",\"ev ents\",\"ĠCinem a\",\"display Text\",\"ĠH atch\",\"action Date\",\"onna issance\",\"Ġassault ing\",\"ĠL ug\",\"CH AT\",\"Ġvig orous\",\"ĠPer se\",\"Ġintoler ance\",\"ĠSnap chat\",\"ĠSh arks\",\"Ġd ummy\",\"ĠDi agn\",\"ĠGu itar\",\"im eters\",\"40 3\",\"RE G\",\"A x\",\"Ġsepar ates\",\"ĠMah m\",\"Ġt v\",\"j ah\",\"O OL\",\"C irc\",\"ĠWinds or\",\"uss ian\",\"Ġintu ition\",\"Ġdis dain\",\"ĠDon ovan\",\"Ġ2 21\",\"E mb\",\"Ġcondem ning\",\"Ġgener osity\",\"zz y\",\"Ġpant ies\",\"ĠPre vent\",\"Action Code\",\"AN A\",\"34 2\",\"external ActionCode\",\"Ġspec ifying\",\"Ġcryst all\",\"J ere\",\"Ġru pt\",\"ĠApp rentice\",\"Ġprof iling\",\"Ð º\",\"St rike\",\"Ġsid eline\",\"Ġoblig ated\",\"Ġocc ult\",\"Ġbureaucr atic\",\"ant ically\",\"rupt ed\",\"neg ative\",\"ĠEthiop ia\",\"ĠC ivic\",\"Ġins iders\",\"el igible\",\"ĠTV s\",\"ĠB AR\",\"ĠT I\",\"i ologist\",\"ĠA IR\",\"Ġsubstit uted\",\"Ar ab\",\"ĠS aul\",\"ĠY og\",\"p rem\",\"Ġbuild ers\",\"Ġstation ary\",\"Ġdoubt ful\",\"Ġvig orously\",\"Ġthr illing\",\"Ph ysical\",\"ĠCare y\",\"ĠHyd ra\",\"geon ing\",\"ĠS ly\",\"y ton\",\"Ġborrow ers\",\"ĠPark inson\",\"Ġ ë\",\"ĠJama ica\",\"Ġsat ir\",\"Ġinsurg ents\",\"ĠF irm\",\"Ġis ot\",\"ĠK arn\",\"our ning\",\"ak ens\",\"doc s\",\"l ittle\",\"ĠMon aco\",\"CL ASS\",\"Tur key\",\"L y\",\"ĠCon an\",\"ass ic\",\"Ġstar red\",\"ĠPac ers\",\"et ies\",\"Ġt ipping\",\"M oon\",\"ĠR w\",\"s ame\",\"Ġcav ity\",\"Ġgo of\",\"ĠZ o\",\"Sh ock\",\"um mer\",\"Ġemphas izes\",\"Ġreg rett\",\"Ġnovel ty\",\"Ġen vy\",\"ĠPass ive\",\"r w\",\"50 5\",\"Ġind ifferent\",\"ĠR ica\",\"ĠHim self\",\"ĠFred die\",\"Ġad ip\",\"ä¸ Ģ\",\"Ġbreak out\",\"Ġhur ried\",\"ĠHu ang\",\"ĠD isk\",\"Ġro aming\",\"?????- ?????-\",\"U V\",\"ĠRick y\",\"ĠS igma\",\"Ġmarginal ized\",\"Ġed its\",\"Ġ30 4\",\"mem ory\",\"Ġspec imen\",\"29 3\",\"ãģ ¯\",\"Ġvert ically\",\"Ġaud ition\",\"ĠHe ck\",\"Ġc aster\",\"ĠHold ings\",\"ad al\",\"ĠC ron\",\"ĠL iam\",\"Ġdef lect\",\"P ick\",\"ĠDeb ug\",\"RE F\",\"Ġvers atility\",\"ot hes\",\"class ified\",\"ĠMah ar\",\"ĠH ort\",\"C ounter\",\"st asy\",\"not iced\",\"33 1\",\"ĠSh im\",\"f uck\",\"ĠB ie\",\"Ġair ing\",\"ĠPro tein\",\"ĠHold ing\",\"Ġspect ators\",\"ili ated\",\"ĠThat cher\",\"n osis\",\"ãĥ¼ ãĥ³\",\"Te le\",\"B oston\",\"ĠTem pl\",\"st ay\",\"Ġdecl arations\",\"47 9\",\"Vol ume\",\"ĠDesign er\",\"ĠOver watch\",\"id ae\",\"Ġon wards\",\"Ġn ets\",\"ĠMan ila\",\"part icularly\",\"Ġpolit ic\",\"o other\",\"Ġport raits\",\"Ġpave ment\",\"c ffff\",\"Ġs aints\",\"Ġbegin ners\",\"ES PN\",\"Ġshort comings\",\"âķĲ âķĲ\",\"Ġcom et\",\"ĠOrgan ic\",\"qu el\",\"Ġhospital ized\",\"Bre ak\",\"Ġpe el\",\"dyl ib\",\"asp x\",\"ur ances\",\"ĠT IM\",\"P g\",\"Ġread able\",\"ĠMal ik\",\"Ġm uzzle\",\"Ġbench marks\",\"d al\",\"ĠV acc\",\"ĠH icks\",\"60 9\",\"ĠB iblical\",\"he ng\",\"Ġover load\",\"ĠCivil ization\",\"Ġimm oral\",\"Ġf ries\",\"ãĤ Ĵ\",\"Ġreprodu ced\",\"Ġform ulation\",\"j ug\",\"ire z\",\"g ear\",\"Ġco ached\",\"Mp Server\",\"ĠS J\",\"ĠK w\",\"In it\",\"d eal\",\"ĠO ro\",\"ĠL oki\",\"ĠSong s\",\"Ġ23 2\",\"ĠLou ise\",\"asion ally\",\"Ġunc ond\",\"olly wood\",\"Ġprogress ives\",\"ĠEn ough\",\"ĠDo e\",\"Ġwreck age\",\"Ġbr ushed\",\"ĠBase Type\",\"Ġz oning\",\"ish able\",\"het ically\",\"ĠC aucus\",\"ĠH ue\",\"Ġk arma\",\"ĠSport ing\",\"Ġtrad er\",\"Ġseem ing\",\"ĠCapt ure\",\"4 30\",\"b ish\",\"Ġt unes\",\"Ġindo ors\",\"ĠSp here\",\"ĠD ancing\",\"TER N\",\"Ġno b\",\"ĠG ST\",\"m aps\",\"Ġpe ppers\",\"F it\",\"Ġoverse es\",\"ĠRabb i\",\"ĠR uler\",\"vert ising\",\"off ice\",\"xx x\",\"Ġra ft\",\"Ch anged\",\"Ġtext books\",\"L inks\",\"ĠO mn\",\"ãĢ ĳ\",\"Ġinconven ience\",\"ĠDon etsk\",\"= ~\",\"Ġimplicit ly\",\"Ġboost s\",\"ĠB ones\",\"ĠBo om\",\"Cour tesy\",\"Ġsens ational\",\"AN Y\",\"Ġgre edy\",\"ed en\",\"Ġinex per\",\"ĠL er\",\"ĠV ale\",\"Ġtight en\",\"ĠE AR\",\"ĠN um\",\"Ġancest or\",\"S ent\",\"ĠH orde\",\"urg ical\",\"all ah\",\"Ġsa p\",\"amb a\",\"ĠSp read\",\"tw itch\",\"Ġgrand son\",\"Ġfract ure\",\"Ġmoder ator\",\"ĠSe venth\",\"ĠRe verse\",\"Ġestim ation\",\"Cho ose\",\"Ġpar ach\",\"Ġbar ric\",\"ãĢ Ĳ\",\"Ġcomp ass\",\"Ġall ergic\",\"âĢ ķ\",\"OT HER\",\"err illa\",\"Ġw agon\",\"Ġz inc\",\"Ġrub bed\",\"ĠFull er\",\"ĠLuxem bourg\",\"ĠHoo ver\",\"Ġli ar\",\"ĠEven ing\",\"ĠCob b\",\"est eem\",\"Ġselect or\",\"ĠB rawl\",\"is ance\",\"ĠE k\",\"Ġtro op\",\"Ġg uts\",\"ĠApp eal\",\"ĠTibet an\",\"Ġrout ines\",\"ĠM ent\",\"Ġsummar ized\",\"steam apps\",\"Ġtr anqu\",\"Ġ19 29\",\"or an\",\"ĠAut hent\",\"Ġg maxwell\",\"Ġappre hens\",\"Ġpo ems\",\"Ġsa usage\",\"ĠWeb ster\",\"ur us\",\"Ġthem ed\",\"Ġl ounge\",\"Ġcharg er\",\"Sp oiler\",\"Ġsp illed\",\"h og\",\"ĠSu nder\",\"ĠA in\",\"ĠAng ry\",\"Ġdis qual\",\"ĠFrequ ency\",\"ĠEther net\",\"Ġhel per\",\"Per cent\",\"Ġhorr ifying\",\"Ġa il\",\"ĠAll an\",\"EE E\",\"ĠCross ing\",\"44 9\",\"Ġh olog\",\"ĠPuzz les\",\"ĠGo es\",\"eren n\",\"60 4\",\"ãģ ı\",\"ĠRaf ael\",\"Ġatt en\",\"ĠE manuel\",\"Ġup ro\",\"ĠSus p\",\"P sych\",\"ĠTr ainer\",\"ĠN ES\",\"ĠHun ts\",\"bec ue\",\"Ġcounsel or\",\"R ule\",\"Ġtox ins\",\"Ġb anners\",\"r ifice\",\"Ġgreet ing\",\"Ġfren zy\",\"Ġall ocate\",\"Ġ* )\",\"ex pr\",\"50 3\",\"ĠCh ick\",\"ĠT orn\",\"Ġconsolid ation\",\"ĠF letcher\",\"sw itch\",\"fr ac\",\"cl ips\",\"ĠMcK in\",\"ĠLun ar\",\"Mon th\",\"IT CH\",\"Ġscholar ly\",\"rap ed\",\"39 8\",\"Ġ19 10\",\"Ġe greg\",\"Ġin secure\",\"Ġvict orious\",\"cffff cc\",\"Ġsing led\",\"Ġel ves\",\"ĠW ond\",\"bur st\",\"Ġcam oufl\",\"ĠBL ACK\",\"Ġcondition ed\",\"ç ī\",\"ans wered\",\"Ġcompuls ory\",\"asc ist\",\"Ġpodcast s\",\"ĠFrank furt\",\"bn b\",\"Ġne oliberal\",\"ĠKey board\",\"ĠBel le\",\"w arm\",\"Ġtrust s\",\"Ġins ured\",\"ĠBu cc\",\"us able\",\"60 7\",\"ĠPl ains\",\"Ġ18 90\",\"Ġsabot age\",\"Ġlod ged\",\"f elt\",\"Ġg a\",\"ĠN arc\",\"ĠSal em\",\"Ġsevent y\",\"ĠBl ank\",\"p ocket\",\"Ġwhis per\",\"Ġm ating\",\"om ics\",\"ĠSal man\",\"ĠK ad\",\"Ġan gered\",\"Ġcoll isions\",\"Ġextraord inarily\",\"Ġcoerc ion\",\"G host\",\"b irds\",\"è Ģ\",\"k ok\",\"Ġper missible\",\"avor able\",\"Ġpo inters\",\"Ġdiss ip\",\"ac i\",\"Ġtheat rical\",\"ĠCos mic\",\"Ġforget ting\",\"Ġfinal ized\",\"å¤ §\",\"y out\",\"l ibrary\",\"Ġbo oming\",\"ĠBel ieve\",\"ĠTe acher\",\"ĠL iv\",\"ĠGOOD MAN\",\"ĠDomin ican\",\"OR ED\",\"ĠPart ies\",\"Ġprecip itation\",\"ĠSl ot\",\"R oy\",\"ĠComb ined\",\"Ġinteg rating\",\"Ġch rome\",\"Ġintest inal\",\"ĠRe bell\",\"Ġmatch ups\",\"Ġblock buster\",\"ĠLore n\",\"ĠLe vy\",\"Ġpre aching\",\"ĠS ending\",\"ĠPur pose\",\"ra x\",\"f if\",\"Ġauthor itative\",\"ĠP ET\",\"ast ical\",\"Ġdish on\",\"Ġchat ting\",\"Ġ\\\"$ :/\",\"Connect ion\",\"Ġrecre ate\",\"Ġdel inqu\",\"Ġbro th\",\"ĠD irty\",\"ĠAd min\",\"z man\",\"Ġscholars hips\",\"Ġ25 3\",\"cont act\",\"als a\",\"7 67\",\"c reen\",\"abb age\",\"Ġ19 15\",\"Ġbl ended\",\"Ġal armed\",\"L anguage\",\"35 6\",\"Ġbl ends\",\"ĠCh anged\",\"W olf\",\"Ġhe pat\",\"Creat ing\",\"Ġper secut\",\"Ġsweet ness\",\"art e\",\"Ġforfe iture\",\"ĠRober to\",\"im pro\",\"N FL\",\"ĠMag net\",\"Det ailed\",\"Ġinsign ificant\",\"ĠPOL IT\",\"ĠBB Q\",\"ĠC PS\",\"Ġse aw\",\"amin er\",\"m L\",\"end if\",\"f inals\",\"Ġ26 5\",\"u ish\",\"Ġ} )\",\"ĠPro blems\",\"Ġem blem\",\"Ġserious ness\",\"Ġpars ing\",\"Ġsubst itution\",\"Ġpress ured\",\"Ġrecy cled\",\"ale b\",\"Rub y\",\"Ġprof iciency\",\"Dri ver\",\"ĠW ester\",\": '\",\"AF TA\",\"Ġm antle\",\"ĠClay ton\",\"fl ag\",\"Ġpractition er\",\"c overed\",\"ĠSt ruct\",\"add afi\",\"4 25\",\"ĠTown ship\",\"ĠHyd ro\",\"Lou is\",\"34 3\",\"Ġcond o\",\"ĠT ao\",\"Ġutil ization\",\"Ġnause a\",\"ĠDem s\",\"rid ges\",\"p ause\",\"Ġform ulas\",\"Ġchall enger\",\"37 6\",\"Ġdefect ive\",\"ĠRail way\",\"ĠPub Med\",\"Ġyog urt\",\"l bs\",\"ĠNor folk\",\"OP E\",\"ĠMood y\",\"Ġdistribut or\",\"Ġscroll s\",\"Ġextract s\",\"St an\",\"Ġv iability\",\"Ġexp oses\",\"Ġstar vation\",\"ĠStep s\",\"ĠD odd\",\"f ew\",\"ST D\",\"33 2\",\"Ġclos ures\",\"Ġcomplement ary\",\"ĠS asha\",\"ump y\",\"Ġmon et\",\"Ġartic ulate\",\"ĠDo ct\",\"k iller\",\"Ġsc rim\",\"Ġ2 64\",\"Ġprost itutes\",\"Ġse vered\",\"Ġattach ments\",\"Ġcool ed\",\"L ev\",\"ĠF alk\",\"f ail\",\"Ġpolic eman\",\"ĠD ag\",\"Ġpray ed\",\"ĠK ernel\",\"Ġcl ut\",\"Ġc ath\",\"Ġan omaly\",\"St orm\",\"em aker\",\"ĠBreak fast\",\"ul i\",\"o ire\",\"J J\",\"h z\",\"Oper ation\",\"ĠS ick\",\"35 4\",\"ĠGuatem ala\",\"R ate\",\"Ġexp osures\",\"f aces\",\"ĠArch ae\",\"ra f\",\"ĠM ia\",\"Ġ20 25\",\"Ġop aque\",\"Ġdisgu ised\",\"ĠHead quarters\",\"S ah\",\"Ġp ots\",\"9 78\",\"ĠM alf\",\"Ġfrown ed\",\"Ġpoison ous\",\"ĠCon vers\",\"ee ks\",\"Ġcr ab\",\".\\\" \\\"\",\"Ġtre ason\",\"Ġr anc\",\"Ġescal ating\",\"Ġwar r\",\"Ġmob s\",\"Ġl amps\",\"ĠSun shine\",\"ĠBrun swick\",\"Ph ones\",\"Ġspe lled\",\"ĠSk ip\",\"Ġ20 50\",\"Ġ19 11\",\"ĠPl uto\",\"ĠAm end\",\"Ġme ats\",\"38 7\",\"Ġst omp\",\"ĠZh ou\",\"ĠLevi athan\",\"ĠHaz ard\",\"ad v\",\"ĠOr well\",\"Ġal oud\",\"Ġb umper\",\"ĠAn arch\",\"ub untu\",\"ĠSer ious\",\"f itting\",\"ĠOption al\",\"ĠCec il\",\"RE AM\",\"Ġser otonin\",\"Ġcultiv ate\",\"ag ogue\",\"} \\\\\",\"Ġmos ques\",\"ĠSun ny\",\"Ġre active\",\"rev olution\",\"ĠL up\",\"ĠFed ora\",\"Ġdefense man\",\"ĠV ID\",\"ist ine\",\"Ġdrown ing\",\"ĠBroad casting\",\"Ġthr iller\",\"ĠS cy\",\"Ġacceler ating\",\"Ġdirect s\",\"od ied\",\"b ike\",\"d uration\",\"Ġpain fully\",\"R edd\",\"Ġproduct ions\",\"Ġg ag\",\"Ġwh ist\",\"Ġs ock\",\"Ġinf initely\",\"ĠConc ern\",\"ĠCit adel\",\"Ġlie u\",\"Ġcand les\",\"ogene ous\",\"arg er\",\"Ġheaven ly\",\"inflamm atory\",\"Per formance\",\"C s\",\"ruct ose\",\"az aki\",\"Ġp essim\",\"Ġinf erence\",\"Ġpow d\",\"ĠZ oe\",\"Ġpain ts\",\"Ġd azz\",\"pt a\",\"-------- ---\",\"Ġins pir\",\"ĠExper imental\",\"ĠKn ife\",\"reg or\",\"b ors\",\"Ġshow ers\",\"rom eda\",\"Ġs aint\",\"Ġben ign\",\"ĠJ iang\",\"Ġenvision ed\",\"Ġsh roud\",\"IF T\",\"H O\",\"Ġsh uff\",\"ĠI CC\",\"Ġse greg\",\"Ġrevis it\",\"ighth ouse\",\"L i\",\"Ġsub strate\",\"ĠSe as\",\"ĠRew ard\",\"ĠH ep\",\"ĠBr ass\",\"s bm\",\"Ġelim inates\",\"Ġst amina\",\"ĠV AT\",\"ĠLo an\",\"Ġconst raint\",\"Ġappropri ated\",\"Ġp es\",\"ĠA LE\",\"r anging\",\"Ġ40 4\",\"39 2\",\"Ġintellectual s\",\"ach u\",\"Ġrestruct uring\",\"ĠLe vin\",\"Ġrun es\",\"Ġdelight ful\",\"Ġcarbohyd rates\",\"ĠMod els\",\"ĠExp o\",\"Ġtransport ing\",\"all oc\",\"Ġring ing\",\"S amsung\",\"Ġscarce ly\",\"ĠURL s\",\"ĠM AS\",\"Ġprot otypes\",\"Ġnarr ator\",\"ĠCPU s\",\"cd n\",\"ĠBart on\",\"Ġdecided ly\",\"ĠSh u\",\"ix ir\",\"oc ious\",\"ĠMy st\",\"N intendo\",\"Ġre use\",\"Ġforg iven\",\"F ew\",\"in ical\",\"n at\",\"Ġseam less\",\"ĠEv a\",\"ĠE VE\",\"ĠJ O\",\"land ers\",\"Ġso fter\",\"neg ie\",\"Ġtrans ient\",\"Ġorb ital\",\"Ġfulf il\",\"ĠK om\",\"Hop efully\",\"Ġdynam ically\",\"ĠHun ger\",\"å Ľ\",\"ĠArmen ia\",\"el man\",\"ber to\",\"Ġp ige\",\"ĠID s\",\"lim it\",\"Ġve ins\",\"Ġso aring\",\"p acks\",\"Gold en\",\"ĠCr ab\",\"ist or\",\"ĠR PM\",\"Ġ$ $\",\"g ression\",\"Ġjihad ist\",\"Ġgam ble\",\"Ġcare g\",\"Ġinf lated\",\"F ace\",\"ĠFire arms\",\"ĠEm manuel\",\"â Ŀ\",\"Ġsh ocks\",\"gr ab\",\"Ġspl end\",\"ĠHP V\",\"ab ortion\",\"Ab ove\",\"Ent ity\",\"play ers\",\"Ġcomm enced\",\"ul ence\",\"Ġfulfill ment\",\"Ġembod iments\",\"ĠW elfare\",\"Ġha il\",\"Ġ< @\",\"tt en\",\"Ġcat cher\",\"ĠJ azeera\",\"Ġvolcan o\",\"Ġstabil ize\",\"ĠHand ler\",\"Ġintens ified\",\"ĠAb rams\",\"Ġhum iliation\",\"p aced\",\"60 5\",\"ĠCent OS\",\"Spe cific\",\"Ġhe ed\",\"ĠC AM\",\"ĠGal ile\",\"D ie\",\"Ġabol ished\",\"ĠThom son\",\"ĠTe achers\",\"ĠW ass\",\"j ong\",\"ĠIS BN\",\"ĠAll ies\",\"sh ake\",\"å ·\",\"v ict\",\"How ard\",\"Ġde em\",\"Ġexceed ingly\",\"ĠSmart stocks\",\"ib e\",\"Ġdoor way\",\"Ġcompet ed\",\"ig mat\",\"Ġnational ists\",\"Ġg room\",\"ĠKe en\",\"Ġdispos able\",\"de cl\",\"ĠT olkien\",\"ĠSche me\",\"Ġb iod\",\"Ġav id\",\"ĠEl on\",\"ag ar\",\"ĠT SA\",\"R oman\",\"Ġartific ially\",\"Ġadvis ors\",\"X L\",\"ĠInf erno\",\"36 6\",\"Ġted ious\",\"ĠPhot ography\",\"ĠCar rie\",\"Ġtro pe\",\"ĠSand ra\",\"Ġdec imal\",\"Que en\",\"ĠGund am\",\"ĠO M\",\"ote ch\",\"N BA\",\"Ġ19 32\",\"Ġent renched\",\"ĠMar ion\",\"Ġfr aternity\",\"Lab our\",\"Hen ry\",\"Ġlat itude\",\"E ither\",\"Ġenh ances\",\"ĠPot ential\",\"Ġsh ines\",\"id ad\",\"Ġbread th\",\"Ġcapac ities\",\"ĠðŁ ĻĤ\",\"ĠBron x\",\"Ġsex es\",\"Ġdifferent iation\",\"Ġheavy weight\",\"ĠT aj\",\"d ra\",\"Ġmigr ate\",\"Ġexhaust ion\",\"ĠR UN\",\"els ius\",\"ĠCu omo\",\"Ġgu itars\",\"Ġcl ones\",\"ĠSom ew\",\"ĠP ry\",\"------------ -\",\"Ġwarr anted\",\"cy cles\",\"Ġsalv age\",\"Ġdis ks\",\"R ANT\",\"ĠNGO s\",\"ĠMart ian\",\"\\\":[ {\\\"\",\"Ġadd icts\",\"oj ure\",\"il let\",\"Ġamazing ly\",\"art ments\",\"p ixel\",\"ĠGPU s\",\"Lay out\",\"è £\",\"ĠTam il\",\"ĠBas il\",\"Ġimpart ial\",\"ĠSt ructure\",\"f ork\",\"b ryce\",\"Ġr idge\",\"ĠHamb urg\",\"ri ous\",\"Ġbl itz\",\"cig arettes\",\"Ġcan ned\",\"40 2\",\"Ġiron ically\",\"Ġcompassion ate\",\"ĠHaw kins\",\". #\",\"ĠCat hedral\",\"Ġrall ied\",\"in ternal\",\"Ġqu ota\",\"st akes\",\"T EXT\",\"m om\",\"Ġcomple tes\",\"Ġ23 8\",\"Ġsh rug\",\"ãĥ ĳ\",\"ĠN inth\",\"Ġrev ise\",\"ĠProv ider\",\"Ġtre acher\",\"Ġqu asi\",\"ĠPR ES\",\"Ġdep osition\",\"Ġconfidential ity\",\"iss ors\",\"Ġim balance\",\"Ġspan ning\",\"Ġang ular\",\"ĠC ul\",\"commun ication\",\"ĠNor a\",\"ĠGen ius\",\"op ter\",\"Ġs acked\",\"Sp ot\",\"Ġfine ly\",\"ĠCH R\",\"28 2\",\"w aves\",\"Pal est\",\"ĠRo hing\",\"N L\",\"è ¿\",\"Ġsh itty\",\"ĠSc alia\",\"4 75\",\"Pro gress\",\"Ġreferen cing\",\"Ġclass rooms\",\"ab ee\",\"Ġs od\",\"hes ion\",\"70 8\",\"ĠZucker berg\",\"ĠFin ish\",\"ĠScot ia\",\"ĠSav ior\",\"ĠInstall ation\",\"an tha\",\"( -\",\"Ġ30 2\",\"ĠP unk\",\"Ġcr ater\",\"yout u\",\"Ġro ast\",\"Ġinflu encing\",\"Ġd up\",\"ĠJ R\",\"ĠG rav\",\"Ġstat ure\",\"Ġbath rooms\",\"A side\",\"W iki\",\"me an\",\"ĠZ ak\",\"ĠOn es\",\"ĠN ath\",\"Ġhyper t\",\"Ġcommence ment\",\"C ivil\",\"Ġmoder ately\",\"Ġdistribut ors\",\"Ġbreast feeding\",\"Ġ9 80\",\"ĠS ik\",\"ĠC ig\",\"ĠAM ER\",\"R IP\",\"ĠCare er\",\"ust ing\",\"Ġmess ed\",\"Ġe h\",\"ĠJ ensen\",\"/ $\",\"Ġblack mail\",\"Ġconvers ions\",\"Ġscientific ally\",\"Ġmant ra\",\"p aying\",\"Ġiv ory\",\"ĠCour ts\",\"OU GH\",\"aunt let\",\"Ser ial\",\"B row\",\"ĠH undreds\",\"3 23\",\"Ġpe e\",\"Ġlin ux\",\"Ġsub mer\",\"ĠPrinc ipal\",\"48 5\",\"ĠD SL\",\"ĠCous ins\",\"Ġdoctr ines\",\"ĠAthlet ics\",\"Ġ3 15\",\"ĠK arma\",\"Ġatt ent\",\"ur ger\",\"Ġpresc ribe\",\"Ġenc aps\",\"ĠC ame\",\"Ġsecret ive\",\"ĠCr imes\",\"d n\",\"C lean\",\"ĠEgypt ians\",\"ĠCar penter\",\"Ġ ll\",\"H um\",\"ĠMil o\",\"Ġcapital ists\",\"Ġbrief ed\",\"T we\",\"ĠBas in\",\"elve t\",\"M os\",\"Ġplun ge\",\"ĠKa iser\",\"ĠFu j\",\"ill in\",\"Ġsafegu ards\",\"Ġo ste\",\"ĠOpportun ity\",\"ĠM afia\",\"ĠCall ing\",\"ap a\",\"ur ban\",\"br ush\",\"ill ard\",\"c Ã©\",\"int elligence\",\"ĠL ob\",\"ĠDru id\",\"Ġsm oother\",\"Ġfoot ing\",\"Ġmotor ists\",\"arc ity\",\"Ġmascul inity\",\"Ġm ism\",\"Ġabdom inal\",\"ĠTa vern\",\"ĠR oh\",\"Ġesc apes\",\"s igned\",\"Anth ony\",\"Ġsacrific ing\",\"Ġintim acy\",\"Ġan terior\",\"ĠK od\",\"Ġmot if\",\"Ġg raz\",\"Ġvisual ization\",\"Ġguitar ist\",\"ĠTro tsky\",\"m agic\",\"D ar\",\"ĠMor i\",\"Ġw ards\",\"Ġtoile ts\",\"l est\",\"Ġtele port\",\"ĠSund ays\",\"ĠPl at\",\"ET S\",\"Ġe Sports\",\"Pat rick\",\"ĠK atherine\",\"en ko\",\"Ġhas sle\",\"ĠM ick\",\"gg les\",\"Ġh ob\",\"aint ain\",\"Ġair borne\",\"Ġsp ans\",\"Ġch ili\",\"Ġa perture\",\"Ġvolunte ered\",\"ĠInc ident\",\"ĠF res\",\"ĠVeter an\",\"augh tered\",\"ing o\",\"Ġun insured\",\"CL OSE\",\"Ġf use\",\"Ġer otic\",\"Ġadvert ise\",\"ra ising\",\"Text ure\",\"Ġatt ends\",\"ĠRE AL\",\"udd led\",\"Ġsm oot\",\"Ġ30 5\",\"ĠWill is\",\"Ġbl ond\",\"An alysis\",\"ĠV T\",\"on ica\",\"Ġstrongh old\",\"R F\",\"N M\",\". >>\",\"Ġprosper ous\",\"Ġbo asted\",\"29 2\",\"ĠManufact uring\",\"PR ESS\",\"g ren\",\"Ġpharm acy\",\"ĠRoc kefeller\",\"k ai\",\"Ġth umbs\",\"ĠH ut\",\"Ġmother board\",\"Ġguard ians\",\"ĠAl ter\",\"ll ular\",\"Ġsh ack\",\"Ġwise ly\",\"Ġback bone\",\"erv a\",\"Ġsu icides\",\"ĠMcG regor\",\"ij ah\",\"E mer\",\"ĠB rav\",\"Ġdesign ate\",\"P OST\",\"produ ced\",\"Ġcleans ing\",\"irl wind\",\"ex istent\",\"ĠHum ph\",\"ĠPay ne\",\"Ġv ested\",\"Å ¡\",\"Ġstring ent\",\"ion a\",\"Ġuns ub\",\"Ġsum med\",\"ĠHer cules\",\"sub ject\",\"ĠR agnar\",\"ĠN os\",\"Ġcharacter ization\",\"Ġsav vy\",\"ĠDaw son\",\"ĠCas ino\",\"Ġf ri\",\"ĠBar rier\",\"Ġmis information\",\"Ġins ulation\",\"Ġcorrid ors\",\"Ġair planes\",\"ĠNo ct\",\"ah i\",\"Ġ19 16\",\"k b\",\"arm ac\",\"Ġsh un\",\"Ġsche ma\",\"Ġhorr ified\",\"Ġ23 9\",\"aund ers\",\"N B\",\"i ates\",\"er ity\",\"ĠSh ard\",\"Ġr arity\",\"Ġgroup ed\",\"ĠGh ana\",\"again st\",\"ĠBi ological\",\"ĠA ware\",\"ow ell\",\"Ï Ħ\",\"ĠBe au\",\"sh aw\",\"H ack\",\"ĠJul ius\",\"US S\",\"ol son\",\"aun a\",\"c ru\",\"ĠMaur ice\",\"ĠI k\",\"Ġsequ encing\",\"Ġradical s\",\"Ġ( ?,\",\"v irtual\",\"Ġany ways\",\"Ġreper c\",\"Ġhand lers\",\"Ġhes itant\",\"é ĥ\",\"ĠM F\",\"ple mentation\",\"ass ociated\",\"Ġcampaign ed\",\"ĠY ue\",\"ut ations\",\"ĠY oga\",\"Ġsim mer\",\"Ġro ds\",\"Ġmel ody\",\"Ġconv oy\",\"v ideos\",\"Ġscreen ed\",\"N eg\",\"ochem ical\",\"Ġ( ))\",\"Ġultr as\",\"Ġant ip\",\"ĠIsland ers\",\"70 4\",\"Ġfet ish\",\"Ġridic ulously\",\"ĠK art\",\"Ġmitochond rial\",\"Ġinterf ering\",\"Build er\",\"Ġover fl\",\"Ġac ne\",\"ĠM ud\",\"ĠK err\",\"f lex\",\"ĠPost al\",\"ĠBalt ic\",\"47 7\",\"ĠPers ons\",\"our age\",\"H B\",\"ĠM use\",\"ĠImm ortal\",\"ĠDri ving\",\"Ġpet itions\",\"Ġsubsc ript\",\"Ġs orce\",\"ĠProcess or\",\"ut on\",\"S ony\",\"Ġph on\",\"Ġr aced\",\"ĠAnth rop\",\"Ġday time\",\"ĠEx ercise\",\"Add ing\",\"Ġeng ages\",\"ĠQual comm\",\"Ġmir acles\",\"Ġmem es\",\"ĠDr ink\",\"ĠOri oles\",\"Ġhair s\",\"ĠPol ar\",\"ath om\",\"Ġsl ippery\",\"ĠR emy\",\"Ġcar amel\",\"ĠY EAR\",\"Ġal k\",\"I gn\",\"a ution\",\"ĠMer lin\",\"ĠC ran\",\"Ġap ologies\",\"Ġ4 10\",\"Ġout ing\",\"ĠMem ories\",\"app ointed\",\"Ġcount ered\",\"u ld\",\"pos ing\",\"Ġfire wall\",\"ĠW ast\",\"ĠW et\",\"work ed\",\"se ller\",\"Ġrepe aled\",\"ere o\",\"ass uming\",\"BL IC\",\"m ite\",\"ĠCEO s\",\"ĠChap el\",\"ellig ent\",\"________________ ________\",\"D og\",\"Ġw art\",\"Ġsubsc riber\",\"s ports\",\"Ġbe gged\",\"ĠM V\",\"Ġsem if\",\"eth ical\",\"Ġpre ach\",\"Ġrev ital\",\"Ġpun itive\",\"Ġshort cuts\",\"Ġinstit uted\",\"ĠWars aw\",\"Ġabdom en\",\"ĠK ING\",\"Ġsuper intendent\",\"Ġf ry\",\"ĠGe o\",\"T OR\",\"Ġcontrad ictions\",\"apt ic\",\"Ġlandsc apes\",\"b ugs\",\"Ġcl ust\",\"Ġvol ley\",\"c ribed\",\"Ġt andem\",\"Ġrob es\",\"WH AT\",\"Ġpromot er\",\"Ġel oqu\",\"review ed\",\"ĠD K\",\"ĠPl ato\",\"Ġf ps\",\"T ank\",\"ĠDer rick\",\"Ġpriorit ize\",\"as per\",\"ĠHond uras\",\"ĠCom pleted\",\"ne c\",\"Ġm og\",\"n ir\",\"ĠMay o\",\"DE F\",\"st all\",\"in ness\",\"ĠVolks wagen\",\"Ġprec aution\",\"ĠM ell\",\"i ak\",\"ist ries\",\"Ġ24 8\",\"Ġoverl apping\",\"Sen ate\",\"ĠEnh ance\",\"res y\",\"rac ial\",\"OR TS\",\"ĠM ormons\",\"Str ong\",\"ĠCo ch\",\"Mex ico\",\"ĠMad uro\",\"Ġj ars\",\"Ġcan e\",\"W ik\",\"oll a\",\"iff erence\",\"Ġphysic ist\",\"ĠMag gie\",\"Ġ28 5\",\"Ġdep iction\",\"ĠMcL aren\",\"J u\",\"Ġsl ows\",\"Ġcommission ers\",\"ĠWill ow\",\"ĠExpl os\",\"hov ah\",\"Ġtechn ician\",\"Ġhom icides\",\"ĠFl av\",\"ĠTr uman\",\"Ġ100 00\",\"u ctor\",\"Ġsh ader\",\"News letter\",\"45 7\",\"Ġre ver\",\"Ġhard ened\",\"Ġwhere abouts\",\"Ġrede velop\",\"Ġcar bs\",\"Ġtra vers\",\"Ġsqu irrel\",\"Ġfoll ower\",\"Ġs ings\",\"50 8\",\"Ġrabb its\",\"emon ium\",\"Ġdocument ing\",\"Ġmisunder stood\",\") '\",\"R ick\",\"gg ies\",\"Ġprem ie\",\"Ġsk ating\",\"Ġpass ports\",\"Ġf ists\",\"aged don\",\"H aw\",\"AC P\",\"0 80\",\"ĠThough ts\",\"ĠCarl son\",\"Ġpriest hood\",\"h ua\",\"Ġdun geons\",\"ĠLo ans\",\"Ġant is\",\"Ġfamiliar ity\",\"ĠS abb\",\"op al\",\"ĠIn k\",\"st rike\",\"Ġc ram\",\"Ġlegal ized\",\"Ġcu isine\",\"Ġfib re\",\"Tra vel\",\"ĠMon ument\",\"OD Y\",\"eth y\",\"Ġinter state\",\"ĠP UR\",\"em porary\",\"ĠArab ian\",\"develop ed\",\"Ġsadd le\",\"Ġg ithub\",\"ĠOff er\",\"ĠIS P\",\"ro let\",\"ĠSUP ER\",\"ĠDen is\",\"Ġmultipl ier\",\"Ġstir red\",\"Interest ingly\",\"Ġcustom ary\",\"Ġbill ed\",\"he x\",\"Ġmultipl ied\",\"Ġfl ipping\",\"ĠCros by\",\"Ġfundament als\",\"ia e\",\"ĠPlay ed\",\"ĠAt om\",\"am azon\",\"ĠFl am\",\"ee z\",\"activ ated\",\"Ġtables poon\",\"Ġliberal ism\",\"ĠPal in\",\"ĠP atel\",\"N um\",\"ĠT AM\",\"Ġs urn\",\"ĠRel oaded\",\"Ġco ined\",\"\\\" ],\",\"ĠCl ash\",\"ĠAg u\",\"Ġprag matic\",\"ĠActiv ate\",\"Ġ8 02\",\"Ġtrail ers\",\"Ġsil hou\",\"Ġprob es\",\"Ġcirc us\",\"ĠB ain\",\"ĠLind say\",\"ĠAb bey\",\"Del ivery\",\"Ġconcess ion\",\"Ġgast ro\",\"ĠSpr ite\",\"Ä Ł\",\"and el\",\"Ġg imm\",\"Ġaut obi\",\"ĠT urtle\",\"Ġwonder fully\",\"ĠHar am\",\"ĠWorld wide\",\"ĠHand le\",\"Ġtheor ists\",\"Ġsle ek\",\"ĠZh u\",\"ograph ically\",\"EG A\",\"ĠOwn ers\",\"ath s\",\"ĠAntar ctic\",\"n atal\",\"=\\\" \\\"\",\"fl ags\",\"`` ``\",\"Ġs ul\",\"K h\",\"Ġpot assium\",\"Ġlinem an\",\"Ġcere al\",\"ĠSe asons\",\"Ġ20 22\",\"Ġmat hematic\",\"Ġastron omers\",\"prof essional\",\"Ġf ares\",\"cknow led\",\"Ġch i\",\"Ġyoung sters\",\"Ġmistaken ly\",\"Ġhem isphere\",\"ĠDiv inity\",\"r one\",\"Ġ\\\" ,\",\"r ings\",\"Ġattract s\",\"v ana\",\"å ¹\",\"C AP\",\"Ġplay list\",\"Ġpor ch\",\"ãģ £\",\"Ġincorpor ates\",\"Ġso ak\",\"Ġassert ing\",\"ĠTerror ism\",\"ĠP ablo\",\"J a\",\"ces ter\",\"Ġfear ing\",\"ĠPr ayer\",\"Ġescal ated\",\"G W\",\"Ġro be\",\"ĠBright on\",\"ac ists\",\"ĠSym phony\",\"ĠDwar f\",\"ĠPar ade\",\"ĠLe go\",\"Ġinex pl\",\"Ġl ords\",\"le af\",\"RA G\",\"l iber\",\"Ġcig ars\",\"ĠJe hovah\",\"60 6\",\"WIND OWS\",\"ĠLiber ia\",\"eb us\",\"He avy\",\"Ġl ubric\",\"ĠR W\",\"angu ages\",\"Ġnarrow ed\",\"com puter\",\"ĠE mber\",\"Ġmurder ing\",\"Ġdown stream\",\"ĠT uls\",\"ĠT ables\",\"Top ic\",\"ĠAcc uracy\",\"= /\",\"l ost\",\"ĠRe i\",\"Ġprogress es\",\"b ear\",\"Ġestablish ments\",\"Just in\",\"ĠPe ach\",\"ĠG omez\",\"å ¿\",\"ĠTri angle\",\"Id ent\",\"ĠH ive\",\"Res ources\",\"Ġmix es\",\"ĠAss uming\",\"M u\",\"Ġhyp oc\",\"Ġs ane\",\"ĠW an\",\"id ious\",\"Su ccess\",\"Ġ io\",\"Ang el\",\"Ġdanger ously\",\"ĠCreat ure\",\"W ORK\",\": [\",\"ĠKat rina\",\"List ener\",\"M iller\",\"ĠId lib\",\"h ang\",\"Ġcircum vent\",\"h ref\",\"Ġcel estial\",\"ĠWe eks\",\"ĠP ug\",\"ĠDal ton\",\"Ġsubpoen a\",\"uk u\",\"Ġpers isted\",\"pe i\",\"old ing\",\"ĠDoc uments\",\"ĠH ast\",\"ĠC ENT\",\"Ġprim er\",\"Ġsyn onymous\",\"Ġn ib\",\"om bs\",\"Ġnot ation\",\"ĠD ish\",\"ĠAt mosp\",\"Ġforb id\",\"ĠAN G\",\"pat tern\",\"l os\",\"Ġproject iles\",\"b rown\",\".\\\" ,\",\"ĠVen om\",\"Ġfierce ly\",\"ub lished\",\"ĠU ran\",\"ĠNic arag\",\"4 10\",\"ĠC AL\",\"OT OS\",\"ĠMir acle\",\"ĠEn chant\",\"Ġguard ing\",\"app end\",\"Att ach\",\"Ġlevel ed\",\"Ġcond oms\",\"ih ilation\",\"64 9\",\"Ġnight mares\",\"ĠTHE Y\",\"ĠST ART\",\"ĠK inn\",\"Ġroomm ate\",\"Ġhy giene\",\"o pping\",\"J ob\",\"Ġl vl\",\"ĠV ER\",\"ĠKe eping\",\"ab etic\",\"Ġformat ting\",\"eral a\",\"Ġrev isions\",\"Ġres urg\",\"T el\",\"ĠGood man\",\"35 3\",\"p od\",\"Ġind isp\",\"ĠTrans lation\",\"Ġg own\",\"ĠM und\",\"Ġc is\",\"Ġby stand\",\"col lect\",\"ĠPun jab\",\"act ively\",\"ĠG amb\",\"te ll\",\"Ġimport ing\",\"g encies\",\"Ġloc om\",\"ĠBr ill\",\"H oly\",\"ĠBer ger\",\"Ġshow down\",\"Ġrespond ers\",\"IL Y\",\"Ġt akedown\",\"le ted\",\"Ġmat tered\",\"Ġpredict ive\",\"Ġover lay\",\"G PU\",\"ĠV ick\",\"Ġconvey ed\",\"T ab\",\"pe er\",\"Sc an\",\"Ġdefensive ly\",\"v ae\",\"Ġappro ving\",\"Ġt iers\",\"ĠV ia\",\"quer ade\",\"ĠSaud is\",\"Ġdemol ished\",\"ĠProp he\",\"Ġmon o\",\"Ġhospital ity\",\"H AM\",\"ĠAri el\",\"M OD\",\"ĠTor ah\",\"Ġbl ah\",\"ĠBel arus\",\"erent ial\",\"ĠT uc\",\"Ġbank er\",\"39 7\",\"Ġmosqu it\",\"ĠScient ist\",\"ĠMus ical\",\"Ġh ust\",\"Sh ift\",\"Ġtor ment\",\"Ġstand off\",\"E duc\",\"ĠF og\",\"Ġampl ifier\",\"Sh ape\",\"Inst ance\",\"ĠCrit ics\",\"Ġda emon\",\"H ouston\",\"Ġmatt ress\",\"ĠID F\",\"Ġobsc ene\",\"ĠA mer\",\"hett i\",\"Ġcomp iling\",\"35 2\",\"vere tt\",\"ĠRed uction\",\"ist ration\",\"ĠBl essed\",\"ĠB achelor\",\"3 16\",\"Ġpr ank\",\"ĠVul can\",\"dd ing\",\"Ġm ourning\",\"ĠQu int\",\"ĠBl aster\",\"test ing\",\"Ġsed iment\",\">> >\",\"ĠE ternity\",\"ĠWH ERE\",\"ĠM aze\",\"Ġreact ing\",\"ĠAl v\",\"oms day\",\"ĠC RA\",\"Ġtransl ator\",\"Ġbog us\",\"at u\",\"We bsite\",\"oll s\",\"Ġbapt ism\",\"Ġs ibling\",\"ĠAut umn\",\"ve z\",\"ãģ® é\",\"gu ards\",\"Ge org\",\"assad ors\",\"ĠFre ud\",\"Ġcontin ents\",\"ĠReg istry\",\"Bern ie\",\"ĸļ å£«\",\"Ġtoler ant\",\"ĠU W\",\"Ġhor ribly\",\"99 5\",\"ĠMID I\",\"Ġimpat ient\",\"oc ado\",\"er i\",\"ĠWor st\",\"ĠNor ris\",\"ĠTalk ing\",\"Ġdef ends\",\"ens able\",\"Ġ20 21\",\"Ġanat omy\",\"L ew\",\"Ġdraw er\",\"ĠCan berra\",\"Ġpatri otic\",\"é¾įå ĸļå£«\",\"ĠAv g\",\"AR M\",\"Ġundis closed\",\"Ġfare well\",\"45 9\",\"b able\",\"ĠAll ison\",\"OL OG\",\"Ġcon co\",\"t ight\",\"ĠAC PI\",\"ĠM ines\",\"l ich\",\"ĠâĶ ľ\",\"represent ed\",\"200 000\",\"Ġenthusi ast\",\"OT S\",\"b il\",\"ĠIng redients\",\"Ġinvent or\",\"ĠMy SQL\",\"ÂłÂł Âł\",\"ĠAB OUT\",\"with in\",\"Ġm k\",\"B ul\",\"ĠF ake\",\"Ġdracon ian\",\"W a\",\"hel m\",\"ĠTer ran\",\"erv ille\",\"Ġcommon place\",\"SI ZE\",\"Ġ\\\" <\",\"re place\",\"ograph s\",\"ĠSE LECT\",\"inc ible\",\"ĠMost ly\",\"ĠShe ffield\",\"ĠID E\",\"ugg le\",\"Ġcit ations\",\"h urst\",\"ĠUn ix\",\"Ġunle ash\",\"ĠP iper\",\"ĠN ano\",\"Ġsucc umb\",\"Ġreluct ance\",\"Ġ25 00\",\"ĠMer chant\",\"Ġwire t\",\"Ġcomb os\",\"ĠBirth day\",\"Ġchar coal\",\"ĠU PS\",\"ĠFair fax\",\"Ġdrive way\",\"ĠT ek\",\"ĠP itch\",\"ove re\",\"Ġtechn icians\",\"ĠAct ual\",\"fl ation\",\"ĠF iscal\",\"ĠEm pty\",\"an amo\",\"Ġmag nesium\",\"Ġsl ut\",\"Ġgrow ers\",\"Invest igators\",\"( ):\",\"ĠS atellite\",\"ĠKe ynes\",\"miss ive\",\"l ane\",\"Ġb orough\",\"3 44\",\"ĠTE AM\",\"ĠBet hesda\",\"C V\",\"h ower\",\"ĠR AD\",\"Ġch ant\",\"ĠR iy\",\"Ġcompos itions\",\"Ġmild ly\",\"Ġmedd ling\",\"Ġag ility\",\"ane ers\",\"5 01\",\"Ġsyn th\",\"ling er\",\"29 1\",\"Ġex claimed\",\"Part y\",\"Ġcont amin\",\"ĠMan or\",\"ĠResp ond\",\"Ġpra ising\",\"Ġman ners\",\"fle et\",\"Sum mer\",\"ĠLy nd\",\"ĠDef initely\",\"gr im\",\"Ġbow ling\",\"st ri\",\"ç Ľ\",\"y nt\",\"Ġmand ates\",\"D IV\",\"Ġreconc ile\",\"view s\",\"ĠDam on\",\"vet te\",\"F lo\",\"ĠGreat est\",\"il on\",\"ic ia\",\"Ġportray al\",\"Ġcush ion\",\"50 4\",\"19 79\",\"oss al\",\"App lic\",\"sc ription\",\"Ġmit igation\",\"AT S\",\"p ac\",\"Ġer ased\",\"Ġdefic iencies\",\"ĠHolland e\",\"ĠX u\",\"Ġb red\",\"Ġpregn ancies\",\"f emin\",\"Ġem ph\",\"Ġpl anners\",\"Ġout per\",\"utter ing\",\"Ġperpet rator\",\"Ġm otto\",\"ĠEll ison\",\"ĠNE VER\",\"Ġadmitted ly\",\"AR I\",\"ĠAzerbai jan\",\"Ġmill isec\",\"Ġcombust ion\",\"ĠBott le\",\"ĠL und\",\"ĠP s\",\"ĠD ress\",\"Ġfabric ated\",\"Ġbat tered\",\"Ġs idel\",\"ĠNot ting\",\"Fore ign\",\"ĠJer ome\",\"0 20\",\"ĠAr bit\",\"Ġkn ots\",\"ĠR IGHT\",\"M oving\",\"ãģ Ļ\",\"Ġsur geries\",\"Ġcour thouse\",\"Ġm astered\",\"Ġhover ing\",\"ĠBr an\",\"ĠAl ison\",\"Ġsaf est\",\"m ilitary\",\"Ġbull ied\",\"Ġbar rage\",\"Read er\",\"ES E\",\"ĠGe ographic\",\"T ools\",\"3 14\",\"ĠGe ek\",\"ro th\",\"gl ers\",\"ĠF IN\",\"Ï ģ\",\"ĠA ston\",\"al tern\",\"48 8\",\"Ġveter in\",\"G amer\",\"Ġint el\",\"ren ches\",\"Sh ield\",\"Ġam nesty\",\"ĠB har\",\"Ġp iled\",\"Ġhonor able\",\"ĠInst itutes\",\"Ġso aked\",\"Ġcom a\",\"ĠE FF\",\"34 1\",\"by tes\",\"ĠG mail\",\"le in\",\"ĠCanad iens\",\"m aterial\",\"I l\",\"Ġinstruct ors\",\"ĠK Y\",\"Ġconce ive\",\"ub b\",\"ĠP ossible\",\"Ġeas ing\",\"ĠChrist ina\",\"Ġcar ic\",\"ĠHD R\",\"R OM\",\"Ġsho vel\",\"de lete\",\"Ġp uff\",\"ĠCh anging\",\"Ġseam lessly\",\"Att ribute\",\"Ġacqu isitions\",\"ak ery\",\"ĠE F\",\"Ġaut istic\",\"ĠT akes\",\"ĠPow der\",\"ĠSt ir\",\"5 10\",\"ĠBub ble\",\"sett ings\",\"ĠF owler\",\"Ġmust ard\",\"Ġmore over\",\"Ġcopyright ed\",\"ĠLED s\",\"15 00\",\"æ ī\",\"ĠH IS\",\"en f\",\"Ġcust od\",\"ĠH uck\",\"G i\",\"Ġim g\",\"An swer\",\"C t\",\"j ay\",\"ĠInf rastructure\",\"Ġfeder ally\",\"L oc\",\"Ġmicro bes\",\"Ġover run\",\"dd s\",\"ot ent\",\"adi ator\",\">>>> >>>>\",\"Ġtorn ado\",\"Ġadj ud\",\"Ġintrig ued\",\"Ġs i\",\"ĠRevel ation\",\"pro gress\",\"Ġburgl ary\",\"ĠSai yan\",\"ĠK athy\",\"Ġser pent\",\"ĠAndre as\",\"Ġcomp el\",\"ess ler\",\"ĠPl astic\",\"ĠAd vent\",\"ĠPos itive\",\"ĠQ t\",\"ĠHind us\",\"reg istered\",\"ular ity\",\"Ġrighteous ness\",\"Ġdemon ic\",\"u itive\",\"ĠB DS\",\"ĠGre gg\",\"c ia\",\"ĠCrus ade\",\"ĠSina i\",\"W ARE\",\"+ (\",\"Ġme ll\",\"Ġder ail\",\"y ards\",\"A st\",\"Ġnotice ably\",\"ĠO ber\",\"R am\",\"Ġun noticed\",\"Ġse q\",\"av age\",\"T s\",\"Ġ6 40\",\"Ġconced e\",\"Ġ] )\",\"F ill\",\"Ġcapt ivity\",\"ĠImprove ment\",\"ĠCrus ader\",\"ara oh\",\"M AP\",\"æ Ĺ\",\"Ġstr ide\",\"al ways\",\"F ly\",\"N it\",\"Ġal gae\",\"ĠCook ing\",\"ĠDo ors\",\"Mal ley\",\"Ġpolic emen\",\"ãģ į\",\"Ġastron aut\",\"access ible\",\"49 5\",\"ĠR AW\",\"cl iffe\",\"udic rous\",\"Ġdep ended\",\"al ach\",\"Ġvent ures\",\"ra ke\",\"Ġt its\",\"ĠH ou\",\"Ġcond om\",\"ormon al\",\"Ġind ent\",\"Ġupload ing\",\"Foot note\",\"Import ant\",\"Ġ27 1\",\"Ġmind ful\",\"Ġcont ends\",\"C ra\",\"Ġcal ibr\",\"ĠO ECD\",\"plug in\",\"F at\",\"ĠIS S\",\"ĠDynam ics\",\"ans en\",\"68 6\",\"' ),\",\"Ġsp rite\",\"Ġhand held\",\"ĠH ipp\",\"=~ =~\",\"Tr ust\",\"Ġsem antics\",\"ĠBund es\",\"ĠRen o\",\"ĠLiter ature\",\"s ense\",\"G ary\",\"ĠA eg\",\"ĠTr in\",\"EE K\",\"Ġcler ic\",\"ĠSS H\",\"Ġch rist\",\"Ġinv ading\",\"ib u\",\"Ġen um\",\"aur a\",\"Ġal lege\",\"ĠInc redible\",\"B BC\",\"Ġth ru\",\"Ġsa iled\",\"Ġem ulate\",\"Ġin security\",\"Ġc rou\",\"Ġaccommod ations\",\"Ġincompet ent\",\"Ġsl ips\",\"ĠEarth qu\",\"s ama\",\"IL LE\",\"Ġi Phones\",\"as aki\",\"Ġby e\",\"Ġar d\",\"Ġext ras\",\"Ġsl aughtered\",\"Ġcrowd funding\",\"res so\",\"Ġfil ib\",\"ĠER ROR\",\"ĠT LS\",\"e gg\",\"ĠIt al\",\"Ġen list\",\"ĠCatal onia\",\"ĠSc ots\",\"Ġser geant\",\"Ġdiss olve\",\"N H\",\"Ġstand ings\",\"ri que\",\"I Q\",\"Ġbenef iciary\",\"Ġaqu arium\",\"You Tube\",\"ĠPower Shell\",\"Ġbright est\",\"ĠWar rant\",\"S old\",\"Writ ing\",\"Ġbegin nings\",\"ĠRes erved\",\"ĠLatin os\",\"head ing\",\"Ġ4 40\",\"Ġrooft op\",\"AT ING\",\"Ġ3 90\",\"VP N\",\"G s\",\"k ernel\",\"turn ed\",\"Ġprefer able\",\"Ġturn overs\",\"ĠH els\",\"S a\",\"ĠShin ji\",\"ve h\",\"ĠMOD ULE\",\"V iol\",\"Ġex iting\",\"Ġj ab\",\"ĠVan illa\",\"Ġac ron\",\"ĠG ap\",\"ber n\",\"A k\",\"ĠMc Gu\",\"Ġend lessly\",\"ĠFar age\",\"ĠNo el\",\"V a\",\"M K\",\"Ġbr ute\",\"ĠK ru\",\"ĠES V\",\"ĠOl ivia\",\"âĢ ł\",\"ĠK af\",\"Ġtrust ing\",\"Ġh ots\",\"3 24\",\"Ġmal aria\",\"Ġj son\",\"Ġp ounding\",\"ort ment\",\"Count ry\",\"Ġpostp oned\",\"Ġunequ iv\",\"? ),\",\"ĠRo oney\",\"udd ing\",\"ĠLe ap\",\"ur rence\",\"sh apeshifter\",\"ĠH AS\",\"os ate\",\"Ġca vern\",\"Ġconserv atism\",\"ĠB AD\",\"Ġmile age\",\"Ġarrest ing\",\"V aults\",\"Ġmix er\",\"Dem ocratic\",\"ĠB enson\",\"Ġauth ored\",\"8 000\",\"Ġpro active\",\"ĠSpirit ual\",\"t re\",\"Ġincarcer ated\",\"ĠS ort\",\"Ġpe aked\",\"Ġwield ing\",\"re ciation\",\"×Ļ ×\",\"P atch\",\"ĠEm my\",\"Ġex qu\",\"tt o\",\"ĠRat io\",\"ĠP icks\",\"ĠG ry\",\"ph ant\",\"Ġf ret\",\"Ġeth n\",\"Ġarch ived\",\"% -\",\"c ases\",\"ĠBl aze\",\"Ġim b\",\"c v\",\"y ss\",\"im ony\",\"Ġcount down\",\"Ġaw akening\",\"ĠTunis ia\",\"ĠRe fer\",\"ĠM J\",\"Ġun natural\",\"ĠCar negie\",\"iz en\",\"ĠN uggets\",\"he ss\",\"Ġev ils\",\"64 7\",\"Ġintrodu ctory\",\"l oving\",\"ĠMcM ahon\",\"Ġambig uity\",\"L abel\",\"ĠAlm ighty\",\"Ġcolor ing\",\"ĠCl aus\",\"set ting\",\"N ULL\",\"ĠF avorite\",\"ĠS IG\",\"> (\",\"ĠSh iva\",\"ĠMay er\",\"Ġstorm ed\",\"ĠCo verage\",\"we apons\",\"igh am\",\"Ġun answered\",\"Ġle ve\",\"Ġc oy\",\"c as\",\"b ags\",\"as ured\",\"Se attle\",\"ĠSant orum\",\"ser ious\",\"Ġcourage ous\",\"ĠS oup\",\"Ġconfisc ated\",\"Ġ// /\",\"Ġuncon ventional\",\"Ġmom s\",\"ĠRohing ya\",\"ĠOrche stra\",\"ĠPot ion\",\"Ġdisc redit\",\"ĠF IL\",\"f ixed\",\"ĠDe er\",\"do i\",\"ĠDim ension\",\"Ġbureaucr ats\",\"et een\",\"Ġaction Group\",\"oh m\",\"Ġb umps\",\"ĠUt ility\",\"Ġsubmar ines\",\"ren heit\",\"re search\",\"ĠShap iro\",\"Ġsket ches\",\"Ġde ceptive\",\"ĠV il\",\"es ame\",\"ĠEss entially\",\"Ġramp age\",\"isk y\",\"Ġmut tered\",\"th ritis\",\"Ġ23 6\",\"f et\",\"b ars\",\"Ġpup il\",\"ĠTh ou\",\"o S\",\"s ong\",\"Ġfract ured\",\"Ġre vert\",\"pict ure\",\"Ġcrit erion\",\"us her\",\"Ġreperc ussions\",\"ĠV intage\",\"ĠSuper intendent\",\"Offic ers\",\"Ġflag ged\",\"Ġbl ames\",\"Ġin verse\",\"ograp hers\",\"Ġmakes hift\",\"Ġdev oid\",\"Ġfoss ils\",\"ĠArist otle\",\"ĠFund s\",\"Ġde pleted\",\"ĠFl u\",\"ĠY uan\",\"Ġw oes\",\"Ġlip id\",\"Ġsit u\",\"requ isites\",\"Ġfurn ish\",\"ĠSam ar\",\"Ġshame ful\",\"Ġadverse ly\",\"Ġad ept\",\"Ġrem orse\",\"Ġmurder ous\",\"uck les\",\"ĠE SL\",\"Ġ3 14\",\"s ent\",\"Ġred ef\",\"ĠC ache\",\"ĠP urs\",\"ig ans\",\"Ġ4 60\",\"Ġpres criptions\",\"Ġf res\",\"F uck\",\"ocr ates\",\"Tw enty\",\"ĠWe ird\",\"ĠT oggle\",\"ĠC alled\",\"itiz ens\",\"Ġp oultry\",\"Ġharvest ing\",\"ãĤ¦ ãĤ¹\",\"Bott om\",\"Ġcaution ed\",\"t n\",\"39 6\",\"ĠNik ki\",\"Ġeval uations\",\"Ġharass ing\",\"Ġbind ings\",\"ĠMon etary\",\"Ġhit ters\",\"Ġadvers ary\",\"un ts\",\"Ġset back\",\"Ġenc rypt\",\"ĠC ait\",\"Ġl ows\",\"eng es\",\"ĠN orn\",\"Ġbul bs\",\"Ġbott led\",\"ĠVoy ager\",\"3 17\",\"Ġsp heres\",\"p olitics\",\"Ġsubt ract\",\"Ġsens ations\",\"Ġapp alling\",\"Ġ3 16\",\"Ġenvironment ally\",\"ĠST EM\",\"Ġpub lishes\",\"5 60\",\"Ġdilig ence\",\"48 4\",\"Ġadv ises\",\"Ġpet rol\",\"Ġimag ining\",\"Ġpatrol s\",\"ĠInt eger\",\"ĠAs hes\",\"act us\",\"ĠRad iant\",\"ĠL T\",\"it ability\",\"ht aking\",\"Set ting\",\"Ġnu anced\",\"ĠRe ef\",\"ĠDevelop ers\",\"N i\",\"pie ces\",\"99 0\",\"Lic ense\",\"Ġlow ers\",\"ĠOtt oman\",\"3 27\",\"oo o\",\"Ġqu itting\",\"mark ets\",\"Beh ind\",\"Ġbas in\",\"Ġdoc s\",\"an ie\",\"fl ash\",\"ct l\",\"Ġcivil ized\",\"ĠFuk ushima\",\"\\\"] ,\\\"\",\"ĠK S\",\"ĠHonest ly\",\"ar at\",\"Ġconstruct s\",\"ĠL ans\",\"ĠD ire\",\"ĠLI KE\",\"ĠTrou ble\",\"Ġwith holding\",\"ĠOb livion\",\"Ġsan ity\",\"any a\",\"Con st\",\"Ġgro cer\",\"ĠC elsius\",\"Ġrecount ed\",\"ĠW ife\",\"B order\",\"ate red\",\"h appy\",\"Ġspo iler\",\"Ġlog ically\",\"H all\",\"Ġsucceed ing\",\"Ġpoly morph\",\"Ġax es\",\"ĠShot gun\",\"ĠS lim\",\"ĠPrin ciples\",\"ĠL eth\",\"art a\",\"Ġsc or\",\"Sc reenshot\",\"Ġrelax ation\",\"#$ #$\",\"Ġdeter rent\",\"idd y\",\"Ġpower less\",\"Ġles bians\",\"Ġch ords\",\"ĠEd ited\",\"se lected\",\"Ġseparat ists\",\"000 2\",\"Ġair space\",\"Ġturn around\",\"Ġc unning\",\"P ATH\",\"P oly\",\"Ġbomb ed\",\"Ġt ion\",\"x s\",\"Ġwith hold\",\"Ġw aged\",\"ĠLiber ties\",\"Fl ag\",\"Ġcomfort ing\",\"45 4\",\"ĠI ris\",\"are rs\",\"Ġr ag\",\"Ġrel ocated\",\"ĠGu arant\",\"Ġstrateg ically\",\"Ġgam ma\",\"uber ty\",\"ĠLock heed\",\"g res\",\"Ġgr illed\",\"ĠLow e\",\"st ats\",\"ĠR ocks\",\"Ġsens ing\",\"Ġrent ing\",\"ĠGe ological\",\"Ø§ Ø\",\"ot rop\",\"Ġse w\",\"Ġimproper ly\",\"48 6\",\"Ġâĸ ł\",\"Ġstar ving\",\"ĠB j\",\"Disc ussion\",\"3 28\",\"ĠCom bo\",\"ĠFix es\",\"N AT\",\"Ġstri ving\",\"th ora\",\"Ġharvest ed\",\"ĠP ing\",\"Ġplay ful\",\"Ġaven ues\",\"Ġoccup ational\",\"Ġw akes\",\"ĠCou rier\",\"Ġdrum mer\",\"ĠBrow ser\",\"ĠH outh\",\"it u\",\"Ġapp arel\",\"p aste\",\"Ġhun ted\",\"ĠSecond ly\",\"l ain\",\"X Y\",\"ĠP IN\",\"ic ons\",\"Ġcock tails\",\"Ġs izable\",\"Ġhurd les\",\"est inal\",\"ĠRecre ation\",\"Ġe co\",\"64 8\",\"ĠD ied\",\"m int\",\"Ġfinger prints\",\"Ġdis pose\",\"ĠBos nia\",\"ts y\",\"22 00\",\"Ġins pected\",\"ĠF ou\",\"Ġf uss\",\"Ġamb ush\",\"ĠR ak\",\"Ġmanif ested\",\"Pro secut\",\"Ġsuff ice\",\"ren ces\",\"Ġcompens ated\",\"ĠC yrus\",\"Ġgen us\",\"ĠWolver ine\",\"ĠTrend s\",\"Ġh ikes\",\"ĠSe en\",\"Ġen rol\",\"C old\",\"Ġpol itely\",\"ĠSl av\",\"ĠRu pert\",\"Ġey ewitness\",\"ĠAl to\",\"Ġun comp\",\"Ġposter ior\",\"M ust\",\"ĠHer z\",\"Ġprogress ively\",\"Ġ23 4\",\"Ġind ifference\",\"ĠCunning ham\",\"Ġacadem ia\",\"Ġse wer\",\"Ġast ounding\",\"ĠA ES\",\"r ather\",\"Ġeld est\",\"Ġclim bs\",\"ĠAdd s\",\"Ġout cry\",\"Ġcont ag\",\"ĠH ouses\",\"Ġpe pt\",\"ĠMel ania\",\"interest ed\",\"ĠU CH\",\"ĠR oots\",\"ĠHub bard\",\"ĠT BD\",\"ĠRoman ian\",\"fil ename\",\"St one\",\"ĠIm pl\",\"Ġchromos ome\",\"C le\",\"d x\",\"Ġscram bled\",\"ĠP t\",\"Ġ24 2\",\"OP LE\",\"Ġtremend ously\",\"St reet\",\"Ġcra ving\",\"Ġbund led\",\"ĠR G\",\"p ipe\",\"Ġinj uring\",\"Ġarc ane\",\"Part icip\",\"ĠHero ic\",\"st y\",\"Ġto pping\",\"ĠTemp est\",\"rent ices\",\"b h\",\"Ġpar anoia\",\"ĠUnic ode\",\"Ġegreg ious\",\"Ġ\\\\ '\",\"ĠOsw ald\",\"Ġgra vel\",\"ĠSim psons\",\"Ġbl and\",\"ĠGuant anamo\",\"Writ er\",\"lin ers\",\"ĠD ice\",\"J C\",\"Ġpar ity\",\"Ġs ided\",\"Ġ23 7\",\"ĠPyr rha\",\"at ters\",\"d k\",\"F ine\",\"comp an\",\"Ġform ulated\",\"ĠId ol\",\"il ers\",\"hem oth\",\"ĠF av\",\"Ġintr usion\",\"Ġcar rots\",\"ĠL ayer\",\"ĠH acker\",\"Ġ ----------------\",\"Ġmoder ation\",\"é ģ\",\"oc oc\",\"Ġcharacter ize\",\"ĠTe resa\",\"Ġsocio economic\",\"Ġper k\",\"ĠParticip ation\",\"tr aining\",\"ĠPaul o\",\"ph ys\",\"Ġtrust worthy\",\"Ġembod ied\",\"ĠMer ch\",\"c urrency\",\"ĠPrior ity\",\"Ġte asing\",\"Ġabsor bing\",\"Ġunf inished\",\"ĠCompar ison\",\"Ġdis ple\",\"writ ers\",\"Ġprofess ions\",\"ĠPengu in\",\"Ġang rily\",\"ĠL INK\",\"68 8\",\"ĠCor respond\",\"Ġprev ailed\",\"Ġcart el\",\"l p\",\"as ms\",\"ĠRed emption\",\"ĠIslam ists\",\"effect s\",\"d ose\",\"ĠL atter\",\"ĠHal ifax\",\"Ġv as\",\"ĠTop ics\",\"ĠN amed\",\"advert ising\",\"zz a\",\"IC ES\",\"Ġret arded\",\"ach able\",\"ĠPupp et\",\"ĠItem Level\",\"Ġret ract\",\"Ġident ifiable\",\"A aron\",\"ĠB uster\",\"s ol\",\"hel le\",\"as semb\",\"H ope\",\"r anged\",\"B a\",\"ĠP urch\",\"é Ģ\",\"ĠSir i\",\"Ġarri vals\",\"Ġ19 12\",\"Ġshort ened\",\"Ġ3 12\",\"Ġdiscrep ancy\",\"ĠTem perature\",\"ĠWal ton\",\"Ġkind erg\",\"p olit\",\"Ġrem ix\",\"Ġconnect ors\",\"ãĥĺ ãĥ©\",\"ĠKazakh stan\",\"dom inated\",\"Ġsu gars\",\"im ble\",\"ĠPan ic\",\"ĠDem and\",\"ĠCol ony\",\"on en\",\"ĠM ER\",\"7 75\",\"ur ia\",\"aza ar\",\"ĠDeg ree\",\"P ri\",\"Ġsun shine\",\"Ġ25 1\",\"Ġpsychedel ic\",\"Ġdigit ally\",\"ĠBra un\",\"Ġsh immer\",\"Ġsh ave\",\"ĠTel esc\",\"ĠAst ral\",\"ĠVenezuel an\",\"ĠO G\",\"Ġc rawling\",\"Int eg\",\"ĠFe ather\",\"Ġunfold ing\",\"Ġappropri ation\",\"Ġè£ı è\",\"ĠMob ility\",\"ĠN ey\",\"- .\",\"b ilt\",\"L IN\",\"ĠT ube\",\"ĠCon versely\",\"Ġkey boards\",\"ĠC ao\",\"Ġover th\",\"Ġla ure\",\">> \\\\\",\"ĠV iper\",\"ach a\",\"Off set\",\"ĠR aleigh\",\"ĠJ ae\",\"J ordan\",\"j p\",\"Ġtotal itarian\",\"Connect or\",\"Ġobserv es\",\"ĠSpart an\",\"ĠIm mediately\",\"ĠSc al\",\"C ool\",\"Ġt aps\",\"Ġro ar\",\"P ast\",\"Ġch ars\",\"ĠB ender\",\"ĠShe ldon\",\"Ġpain ter\",\"Ġbe acon\",\"ĠCreat ures\",\"Ġdownt urn\",\"Ġh inder\",\"ĠAnd romeda\",\"Ã Ľ\",\"cc oli\",\"ĠF itness\",\"et rical\",\"Ġutil izes\",\"Ġsen ate\",\"Ġen semble\",\"Ġche ers\",\"T W\",\"Ġaff luent\",\"k il\",\"ry lic\",\"ord ering\",\"Com puter\",\"Ġgru esome\",\"ost ics\",\"ĠUb isoft\",\"ĠKel ley\",\"Ġw rench\",\"Ġbourgeois ie\",\"IB LE\",\"ĠPrest on\",\"w orn\",\"ar ist\",\"reat ing\",\"Ġst ained\",\"ar ine\",\"Ġsl ime\",\"EN N\",\"Ġche sts\",\"Ġground water\",\"ann ot\",\"ĠTr ay\",\"ĠLoc ke\",\"ĠC TR\",\"Ġd udes\",\"ĠEx ternal\",\"ĠDec oder\",\"Ġpar amed\",\"ĠMed line\",\"80 9\",\"ĠD inner\",\"rup al\",\"g z\",\"ĠG um\",\"ĠDem o\",\"j ee\",\"Ġd h\",\"ber man\",\"arch s\",\"Ġen qu\",\"ĠEp stein\",\"Ġdevast ation\",\"Ġfriends hips\",\"ĠAr d\",\"Ġ23 1\",\"ĠRub in\",\"ĠDist ance\",\"Ġsp urred\",\"Ġd ossier\",\"Ġover looking\",\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\"Fore st\",\"ĠCom es\",\"\\\\ \\\",\",\"ĠIran ians\",\"Ġf ixtures\",\"L aughs\",\"Ġcur ry\",\"ĠKing ston\",\"Ġsqu ash\",\"Ġcat alogue\",\"Ġabnormal ities\",\"Ġdigest ive\",\".... .....\",\"Ġsubord inate\",\"og ly\",\"Ġ24 9\",\"M iddle\",\"Ġmass ac\",\"Ġburg ers\",\"Ġdown stairs\",\"Ġ19 31\",\"39 4\",\"ĠV G\",\"Ġl asers\",\"ĠS ikh\",\"ĠAlex a\",\"der ived\",\"Ġcycl ist\",\"ãģ® éŃĶ\",\"onel iness\",\"!!!! !!!!\",\"Ġbuff s\",\"leg ate\",\"Ġrap ing\",\"Ġrecomm ending\",\"ro red\",\"Ġmult icultural\",\"un ique\",\"Ġbusiness men\",\"Ġune asy\",\"ĠM AP\",\"Ġdisp ersed\",\"cipl ine\",\"J ess\",\"ĠK erala\",\"å §\",\"Ġabst raction\",\"Sur v\",\"U h\",\"Ġprin ters\",\"ij a\",\"ow der\",\"Ġanalog ous\",\"ĠA SP\",\"af er\",\"Ġunfold ed\",\"Ġlevel ing\",\"Ġbre ached\",\"ĠH earing\",\"Ġn at\",\"Ġtransl ating\",\"crit ical\",\"Ġant agonist\",\"ĠYes terday\",\"Ġfuzz y\",\"w ash\",\"m ere\",\"Ġbe wild\",\"ĠM ae\",\"V irgin\",\"ph rase\",\"Ġsign aled\",\"ĠH IGH\",\"Ġprot ester\",\"Ġgar ner\",\"unk nown\",\"Ġk ay\",\"Ġabduct ed\",\"Ġst alking\",\"am n\",\"Ġdes erving\",\"ĠR iv\",\"ĠJ orge\",\"Ġscratch ing\",\"ĠS aving\",\"ip ing\",\"Ġte ase\",\"Ġmission ary\",\"ĠMor row\",\"T IME\",\"P resent\",\"Ġchem otherapy\",\"tern ess\",\"ĠH omes\",\"ĠP urdue\",\"Ġst aunch\",\"ĠWhit ney\",\"ĠTH ERE\",\"Î ¼\",\"iat us\",\"ĠErn est\",\"ĠDe ploy\",\"Ġcove ted\",\"F ML\",\"ĠDial ogue\",\"Ġex ited\",\"f ruit\",\"Ġner d\",\"\\\":\\\" \\\",\\\"\",\"Ġv ivo\",\"ru ly\",\"4 60\",\"ĠAm en\",\"rehens ible\",\"Ġâ ĺ\",\"D IR\",\"Ġad herence\",\"Ġche w\",\"ĠCo ke\",\"ĠSerge i\",\"dig ital\",\"ĠNe ck\",\"g ently\",\"enth al\",\"/ )\",\"Ġwe ary\",\"Ġgu ise\",\"ĠConc ord\",\"ĠOn ion\",\"at cher\",\"Ġb inge\",\"ĠDirect ive\",\"Ġman ned\",\"ans k\",\"Ġill usions\",\"Ġbillion aires\",\"38 3\",\"oly n\",\"odynam ic\",\"ĠWhe at\",\"ĠA lic\",\"Ġcol oured\",\"ĠN AFTA\",\"ab o\",\"Ġmac ros\",\"ind ependent\",\"s weet\",\"Ġsp ac\",\"ĠK abul\",\"Ġ Ä\",\"em e\",\"Ġdict ated\",\"Ġsh outs\",\"= {\",\"Ġr ipping\",\"ĠSh ay\",\"ĠCr icket\",\"direct ed\",\"Ġanalys ed\",\"ĠWAR RANT\",\"ag ons\",\"ĠBlaz ers\",\"Ġche ered\",\"Ġar ithmetic\",\"ĠTan z\",\"37 3\",\"ĠFl ags\",\"Ġ29 5\",\"Ġw itches\",\"ĠIn cluded\",\"ĠG ained\",\"ĠBl ades\",\"G am\",\"ĠSam antha\",\"ĠAtl antis\",\"ĠPr att\",\"Ġspo iled\",\"ĠI B\",\"ĠRam irez\",\"Pro bably\",\"re ro\",\"ĠN g\",\"ĠWar lock\",\"t p\",\"Ġover he\",\"Ġadministr ations\",\"Ġt int\",\"Ġreg iment\",\"Ġpist ols\",\"Ġblank ets\",\"Ġep ist\",\"Ġbowl s\",\"Ġhydra ulic\",\"Ġde an\",\"Ġj ung\",\"Ġasc end\",\"70 5\",\"ĠSant iago\",\"Ã ®\",\"Ġun avoid\",\"ĠSh aman\",\"re b\",\"Ġstem ming\",\"99 8\",\"ĠM G\",\"st icks\",\"esthes ia\",\"ER O\",\"Ġmor bid\",\"ĠGr ill\",\"ĠP oe\",\"any l\",\"Ġdele ting\",\"ĠSurve illance\",\"Ġdirect ives\",\"Ġiter ations\",\"ĠR ox\",\"ĠMil ky\",\"F ather\",\"Ġpat ented\",\"44 7\",\"Ġprec ursor\",\"Ġm aiden\",\"ĠP hen\",\"ĠVe gan\",\"ĠPat ent\",\"K elly\",\"Redd itor\",\"Ġn ods\",\"Ġvent ilation\",\"ĠSchwar z\",\"Ġw izards\",\"Ġomin ous\",\"ĠHe ads\",\"ĠB G\",\"Ġl umber\",\"ĠSp iel\",\"Ġis Enabled\",\"Ġancest ral\",\"ĠSh ips\",\"Ġwrest ler\",\"ph i\",\"Ġy uan\",\"ĠRebell ion\",\"Ġice berg\",\"Ġmag ically\",\"Ġdivers ion\",\"ar ro\",\"yth m\",\"ĠR iders\",\"ĠRob bie\",\"ĠK ara\",\"ĠMain tenance\",\"ĠHer b\",\"Ġhar ms\",\"p acked\",\"ĠFe instein\",\"Ġmarry ing\",\"Ġbl ending\",\"ĠR ates\",\"Ġ18 80\",\"Ġwr ink\",\"ĠUn ch\",\"ĠTor ch\",\"desc ribed\",\"Ġhuman oid\",\"ilit ating\",\"ĠCon v\",\"ĠFe ld\",\"IGH TS\",\"Ġwhistlebl ower\",\"ort mund\",\"ets y\",\"arre tt\",\"ĠMon o\",\"ĠI ke\",\"ĠC NBC\",\"ĠW AY\",\"ĠMD MA\",\"ĠIndividual s\",\"Ġsupplement al\",\"Ġpower house\",\"ĠSt ru\",\"F ocus\",\"aph ael\",\"ĠCol leg\",\"att i\",\"Z A\",\"Ġp erenn\",\"ĠSign ature\",\"ĠRod ney\",\"Ġcub es\",\"idd led\",\"ĠD ante\",\"ĠIN V\",\"iling ual\",\"ĠC th\",\"Ġso fa\",\"Ġintimid ate\",\"ĠR oe\",\"ĠDi plom\",\"ĠCount ries\",\"ays on\",\"Ġextrad ition\",\"Ġdis abling\",\"ĠCard iff\",\"Ġmemor andum\",\"ĠTr ace\",\"Ġ?? ?\",\"se ctor\",\"ĠRou hani\",\"ĠY ates\",\"ĠFree ze\",\"Ġbl adder\",\"M otor\",\"ĠProm ise\",\"ant asy\",\"Ġforesee able\",\"ĠC ologne\",\"cont ainer\",\"ĠTre es\",\"ĠG ors\",\"ĠSin clair\",\"Ġbar ring\",\"key e\",\"Ġsl ashed\",\"ĠStat istical\",\"é ĩ\",\"Ġâĸ º\",\"All ows\",\"Ġhum ility\",\"Ġdr illed\",\"ĠF urn\",\"44 3\",\"Ġse wage\",\"Ġhome page\",\"Ġcour tyard\",\"Ġv ile\",\"Ġsubsid iaries\",\"aj o\",\"direct ory\",\"Ġam mon\",\"V ers\",\"charg es\",\"Ġ} }\",\"ĠCh ains\",\"Ġ24 6\",\"n ob\",\"Ġper cept\",\"Ġg rit\",\"Ġfisher men\",\"ĠIraq is\",\"ĠDIS TR\",\"ĠF ULL\",\"ĠEval uation\",\"g raph\",\"at ial\",\"Ġcooper ating\",\"Ġmel an\",\"Ġenlight ened\",\"Ġal i\",\"t ailed\",\"Ġsal ute\",\"Ġweak est\",\"ĠBull dogs\",\"U A\",\"ĠAll oy\",\"Ġsem en\",\"oc ene\",\"ĠWilliam son\",\"s pr\",\", âĢĶ\",\"ĠG F\",\"itt ens\",\"Be at\",\"ĠJ unk\",\"iph ate\",\"ĠFarm ers\",\"ĠBit coins\",\"ig ers\",\"d h\",\"ĠL oyal\",\"p ayer\",\"Ġentert ained\",\"Ġpenn ed\",\"Ġcoup on\",\"Que ue\",\"Ġweaken ing\",\"c arry\",\"Ġunderest imate\",\"Ġshoot out\",\"Ġcharism atic\",\"ĠProced ure\",\"Ġprud ent\",\"in ances\",\"Ġric hes\",\"Ġcort ical\",\"Ġstr ides\",\"Ġd rib\",\"ĠOil ers\",\"5 40\",\"ĠPer form\",\"ĠBang kok\",\"Ġe uth\",\"S ER\",\"Ġsimpl istic\",\"t ops\",\"camp aign\",\"Q uality\",\"Ġimpover ished\",\"ĠEisen hower\",\"Ġaug ment\",\"ĠH arden\",\"Ġinterven ed\",\"Ġlist ens\",\"ĠK ok\",\"Ġs age\",\"Ġrub bish\",\"ĠD ed\",\"Ġm ull\",\"pe lling\",\"Ġvide ot\",\"Produ ction\",\"D J\",\"m iah\",\"Ġadapt ations\",\"Ġmed ically\",\"Ġboard ed\",\"Ġarrog ance\",\"Ġscra pped\",\"Ġopp ress\",\"FORM ATION\",\"Ġj unction\",\"4 15\",\"EE EE\",\"S kill\",\"Ġsub du\",\"ĠSug gest\",\"ĠP ett\",\"Ġle tt\",\"ĠMan ip\",\"ĠC af\",\"ĠCooper ation\",\"T her\",\"Ġreg ained\",\"¶ æ\",\"ref lect\",\"Ġth ugs\",\"ĠShel by\",\"Ġdict ates\",\"ĠWe iner\",\"ĠH ale\",\"Ġbatt leground\",\"s child\",\"Ġcond ol\",\"h unt\",\"osit ories\",\"Ġacc uses\",\"Fil ename\",\"Ġsh ri\",\"Ġmotiv ate\",\"Ġreflect ions\",\"N ull\",\"ĠL obby\",\"¥ µ\",\"ĠS ATA\",\"ĠBack up\",\"Ñ ĥ\",\"n in\",\"ĠCor rection\",\"Ġju icy\",\"ut ra\",\"ĠP ric\",\"Ġrest raining\",\"ĠAir bnb\",\"ĠAr rest\",\"Ġappropri ations\",\"Ġsl opes\",\"Ġmans laughter\",\"Ġwork ings\",\"ĠH uss\",\"ĠF rey\",\"Le ave\",\"ĠHarm ony\",\"ĠF eder\",\"Ġ4 30\",\"Ġt rench\",\"Ġglad ly\",\"Ġbull pen\",\"ĠG au\",\"b ones\",\"Ġgro ove\",\"Ġpre text\",\"ã ħĭ\",\"Ġtransm itter\",\"ĠComp onent\",\"Ġunder age\",\"ĠEm pires\",\"T ile\",\"Ġo y\",\"ĠMar vin\",\"ĠC AS\",\"Ġbl oss\",\"Ġrepl icated\",\"ĠMar iners\",\"Marc us\",\"ĠBl ocks\",\"Ġliber ated\",\"Ġbutter fly\",\"Fe el\",\"Ġfer mentation\",\"Ġyou tube\",\"Ġoff end\",\"ĠTer m\",\"res ist\",\"Ġcess ation\",\"Ġinsurg ency\",\"Ġb ir\",\"ĠRa ise\",\"59 5\",\"Ġhypothes es\",\"50 2\",\"Ġpl aque\",\"ocr at\",\"Ġjack ets\",\"ĠHuff Post\",\"am ong\",\"Ġconf er\",\"48 7\",\"ĠL illy\",\"Ġadapt ing\",\"ĠF ay\",\"Ġsh oved\",\"ve c\",\"Ġref ine\",\"Ġg on\",\"Ġgun men\",\"z ai\",\"ĠShut tle\",\"ĠI zan\",\"Ġ19 13\",\"Ġple thora\",\"Â· Â·\",\"Ġ5 10\",\"Ġp uberty\",\"Ġ24 1\",\"ĠWe alth\",\"ĠAl ma\",\"ĠM EM\",\"ĠAd ults\",\"C as\",\"pr ison\",\"R ace\",\"Ġwater proof\",\"Ġathlet icism\",\"Ġcapital ize\",\"ĠJu ice\",\"Ġillum inated\",\"ĠP ascal\",\"Ġirrit ation\",\"ĠWitness es\",\"ad le\",\"ĠAst ro\",\"Ġf ax\",\"ĠEl vis\",\"Prim ary\",\"ĠL ich\",\"ĠEl ves\",\"Ġres iding\",\"Ġst umble\",\"3 19\",\"ĠP KK\",\"Ġadvers aries\",\"D OS\",\"ĠR itual\",\"Ġsm ear\",\"Ġar son\",\"ident al\",\"Ġsc ant\",\"Ġmon archy\",\"Ġhal ftime\",\"Ġresid ue\",\"Ġind ign\",\"ĠSh aun\",\"ĠEl m\",\"aur i\",\"A ff\",\"W ATCH\",\"ĠLy on\",\"hel ps\",\"36 1\",\"Ġlobby ist\",\"Ġdimin ishing\",\"Ġout breaks\",\"Ġgo ats\",\"f avorite\",\"ĠN ah\",\"son ian\",\"ĠBo oster\",\"Ġsand box\",\"ĠF are\",\"ĠMalt a\",\"Ġatt Rot\",\"ĠM OR\",\"ld e\",\"Ġnavig ating\",\"T ouch\",\"Ġunt rue\",\"ĠDis aster\",\"Ġl udicrous\",\"Pass word\",\"ĠJ FK\",\"blog spot\",\"4 16\",\"ĠUN DER\",\"ern al\",\"Ġdelay ing\",\"T OP\",\"Ġimpl ants\",\"ĠAV G\",\"ĠH uge\",\"att r\",\"Ġjournal istic\",\"ĠPe yton\",\"ĠI A\",\"R ap\",\"go al\",\"ĠProgram me\",\"Ġsm ashing\",\"w ives\",\"print ln\",\"ĠPl ague\",\"in us\",\"EE P\",\"Ġcru iser\",\"ĠPar ish\",\"umin ium\",\"Ġoccup ants\",\"ĠJ ihad\",\"m op\",\"Ġp int\",\"Ġhe ct\",\"ĠMe cca\",\"direct or\",\"ĠFund ing\",\"ĠM ixed\",\"Ġst ag\",\"T ier\",\"Ġg ust\",\"Ġbright ly\",\"ors i\",\"Ġup hill\",\"R D\",\"Ġles ions\",\"ĠBund y\",\"liv ious\",\"Ġbi ologist\",\"ĠFac ulty\",\"ĠAuthor ization\",\"Ġ24 4\",\"All ow\",\"ï ¸\",\"ĠGi ul\",\"Ġpert inent\",\"ot aur\",\"es se\",\"ĠRo of\",\"Ġunman ned\",\"35 1\",\"ĠSh ak\",\"ĠO rient\",\"Ġend anger\",\"D ir\",\"Ġrepl en\",\"ed ient\",\"Ġtail or\",\"Ġgad gets\",\"Ġaud ible\",\"âĺ Ĩ\",\"N ice\",\"Ġbomb ard\",\"ĠR ape\",\"Ġdef iance\",\"ĠTW O\",\"ĠFilip ino\",\"Ġunaff ected\",\"erv atives\",\"Ġso ared\",\"ĠBol ton\",\"Ġcomprom ising\",\"ĠBrew ers\",\"R AL\",\"ĠA HL\",\"icy cle\",\"Ġv ampires\",\"Ġdi pped\",\"oy er\",\"ĠX III\",\"Ġsidew ays\",\"ĠW aste\",\"ĠD iss\",\"ĠâĶľ âĶĢâĶĢ\",\"$ .\",\"Ġhabit ats\",\"ĠBe ef\",\"tr uth\",\"tr ained\",\"spl it\",\"R us\",\"And y\",\"ĠB ram\",\"RE P\",\"p id\",\"è£ ħ\",\"ĠMut ant\",\"An im\",\"ĠMar ina\",\"Ġfut ile\",\"hig hest\",\"f requency\",\"Ġepile psy\",\"Ġcop ing\",\"Ġconc ise\",\"Ġtr acing\",\"ĠS UN\",\"pan el\",\"ĠSoph ie\",\"ĠCrow ley\",\"ĠAd olf\",\"ĠShoot er\",\"Ġsh aky\",\"ĠI G\",\"ĠL ies\",\"ĠBar ber\",\"p kg\",\"Ġupt ake\",\"Ġpred atory\",\"UL TS\",\"/ **\",\"Ġintox icated\",\"ĠWest brook\",\"od der\",\"he ment\",\"Ġbas eman\",\"AP D\",\"st orage\",\"ĠFif ty\",\"ed itor\",\"G EN\",\"UT ION\",\"ir ting\",\"Ġse wing\",\"r ift\",\"Ġag ony\",\"ĠS ands\",\"Ġ25 4\",\"C ash\",\"Ġl odge\",\"Ġp unt\",\"N atural\",\"ĠIde as\",\"Ġerrone ous\",\"ĠSens or\",\"ĠHann ity\",\"Ġ19 21\",\"Ġm ould\",\"ĠG on\",\"kay a\",\"Ġanonym ously\",\"ĠK EY\",\"Ġsim ulator\",\"W inter\",\"Ġstream ed\",\"50 7\",\"? \\\",\",\"Ġte ased\",\"Ġco efficient\",\"Ġwart ime\",\"ĠTH R\",\"' '.\",\"ĠBank ing\",\"mp ire\",\"Ġf andom\",\"Ġl ia\",\"G a\",\"Ġdown hill\",\"Ġinterpre ting\",\"Ind ividual\",\"N orm\",\"Ġjealous y\",\"bit coin\",\"Ġple asures\",\"ĠToy s\",\"ĠChev rolet\",\"ĠAd visor\",\"IZ E\",\"Ġrecept ions\",\"70 6\",\"C ro\",\"Ġ26 2\",\"Ġcit rus\",\"ir u\",\"Review er\",\"ject ed\",\"U ES\",\"an z\",\"19 81\",\"ĠWork er\",\"Ġcompl ied\",\"ores cent\",\"contin ental\",\"T on\",\"ĠPr ism\",\"ĠShe ep\",\"Ġ28 8\",\"n ox\",\"ĠV og\",\"O rd\",\"Ġreal ms\",\"te k\",\"Ġirrig ation\",\"Ġbicy cles\",\"Ġelectron ically\",\"p oly\",\"t all\",\"() );\",\"Ġaest hetics\",\"ĠInteg rated\",\"Expl ore\",\"Ġd unk\",\"47 6\",\"p ain\",\"ĠJac ques\",\"ĠD mit\",\"Fram es\",\"Ġreun ited\",\"Ġhum id\",\"D ro\",\"P olitical\",\"Ġyouth ful\",\"Ġent ails\",\"Ġmosqu ito\",\"36 3\",\"spe cies\",\"Ġcoord inating\",\"ĠMay hem\",\"ĠMagn us\",\"M ount\",\"Impro ved\",\"ĠST ATE\",\"ATT LE\",\"Ġflow ed\",\"Ġtack led\",\"Ġfashion ed\",\"Ġre organ\",\"iv ari\",\"f inger\",\"Ġreluct antly\",\"et ting\",\"ĠV and\",\"you ng\",\"ĠGar land\",\"Ġpresum ption\",\"Ġamen ities\",\"ĠPle asant\",\"on ential\",\"ĠO xy\",\"Ġmor als\",\"ĠY ah\",\"Read y\",\"Sim on\",\"En h\",\"D emon\",\"Ġcl ich\",\"Mon itor\",\"ĠD U\",\"Ġwel comes\",\"Ġstand out\",\"Ġdread ful\",\"Ġban anas\",\"Ġball oons\",\"h ooting\",\"bas ic\",\"Ġsuff ix\",\"Ġd uly\",\"can o\",\"Ch ain\",\"at os\",\"Ġgeop olitical\",\"Ġ( &\",\"ĠGem ini\",\"ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ ÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤÃĥÃĤ\",\"Ġacqu itted\",\"L uck\",\"prot ect\",\"10 24\",\"Ġsc arcity\",\"Ġmind fulness\",\"ec ided\",\"D N\",\"pr ime\",\"ĠPres idents\",\"ĠVID EO\",\"Ġ( âĪĴ\",\"add ock\",\"N OR\",\"ĠP ru\",\"p un\",\"ĠL OL\",\")) ))\",\"ĠL iqu\",\"ĠS AS\",\"Ġsty ling\",\"Ġpunish ments\",\"Ġnum b\",\"Ġasc ertain\",\"ĠRock ies\",\"f lu\",\"Th umbnail\",\"Ġperpet rated\",\"ĠSem i\",\"Ġdis arm\",\"ĠOld er\",\"ĠEx ception\",\"Ġexponent ially\",\"ĠCommun ities\",\"Ġabol ish\",\"ĠPart ner\",\"pt oms\",\"Ġ7 77\",\"ĠFo ley\",\"ĠC ases\",\"Ġgre ase\",\"ĠReb irth\",\"G round\",\"Ġ; )\",\"ĠDoct rine\",\"ik ini\",\"Y e\",\"ĠBl ossom\",\"Ġpers ists\",\"b ill\",\"Ġinf usion\",\"Ġbud dies\",\"9 11\",\"ĠPat ient\",\"Ġdem os\",\"Ġacquaint ance\",\"ĠP aw\",\"at ari\",\"Ġx ml\",\"Ġfasc ination\",\"ĠSer ve\",\"Ï Ĥ\",\"br anded\",\"Ġa z\",\"Return s\",\"Ġover shadow\",\"Ġro am\",\"Ġspeed y\",\"n umbered\",\"hel ial\",\"Ġdisc iple\",\"Ġass urances\",\"g iven\",\"pect ing\",\"ĠN atalie\",\"çĶ °\",\"Ġmosquit oes\",\"rote in\",\"Ġnumer ic\",\"Ġindepend ents\",\"Ġtrans itional\",\"Ġreaction ary\",\"ĠMech dragon\",\"do ctor\",\"Ġshort est\",\"Ġsequ ential\",\"ĠB ac\",\"ĠAccount s\",\"ãģ Į\",\"ach y\",\"ract ive\",\"ĠReg iment\",\"Ġbreat htaking\",\"ffic iency\",\"ĠB ates\",\"Ġ3 11\",\"Ġward robe\",\"ft s\",\"ĠBer k\",\"Sim ply\",\"ĠRivers ide\",\"iver ing\",\"ident ial\",\"lu cent\",\"Ġen riched\",\"ĠCon ver\",\"ĠG iving\",\"ãĥ Ļ\",\"Ġlegal ize\",\"ĠF TC\",\"Ġfre aking\",\"M ix\",\"Ġter restrial\",\"es ian\",\"ci ents\",\"W ing\",\"LO AD\",\"Ġled ge\",\"ĠViol ent\",\"ĠMet all\",\"Ġ30 8\",\"Ġs outheastern\",\"hett o\",\"M eat\",\"Ġslow down\",\"Ġret reated\",\"Jere my\",\"end as\",\"**** *\",\"er ic\",\"Ġre ins\",\"opp able\",\"ĠHuman ity\",\"ear ances\",\"rig an\",\"C amera\",\"Ġwa ivers\",\"s oc\",\"Ġalter ation\",\"trans form\",\"ĠC emetery\",\"50 6\",\"Ġindef inite\",\"Ġstim ulating\",\"y g\",\"60 3\",\"ĠS op\",\"Ġdescript ive\",\"Ph ase\",\"ĠEd mund\",\"Ġpneum onia\",\"vent us\",\"A mb\",\"Ġlabor atories\",\"ĠEx clusive\",\"ug ar\",\"W ere\",\"Ġmalf unction\",\"Ġhomosexual s\",\"Ġ---- ---\",\"un i\",\"Ġturb ines\",\"ĠEqu ity\",\"D u\",\"Ġmind ed\",\"ĠR H\",\"ĠBlack hawks\",\"Ġfe ats\",\"Ġ17 00\",\"re pl\",\"36 2\",\"lad en\",\"Ġindisp ensable\",\"ly ss\",\"tt i\",\"Ġre el\",\"Ġdiver ted\",\"Ġlik eness\",\"Ġsubscript ions\",\"Ġfing ert\",\"Ġfil thy\",\"dest ruct\",\"d raft\",\"ĠBernard ino\",\"l aunch\",\"Ġper plex\",\"ĠS UM\",\"car b\",\"Ġswe ater\",\"ĠVent ure\",\"ĠJ ag\",\"ĠCele b\",\"ĠV oters\",\"Ġstead fast\",\"Ġathlet ics\",\"ĠHans on\",\"ĠDr ac\",\"Tr acker\",\"Ġcomm end\",\"ĠPres idency\",\"ĠD ID\",\"in formed\",\"Ġweb page\",\"P retty\",\"Ġforce fully\",\"ãĥĥ ãĤ¯\",\"Ġrel ocation\",\"Ġsat ire\",\"â ī\",\"ĠSunder land\",\"æ Ħ\",\"V oice\",\"???? ????\",\"Ġinform ant\",\"Ġbow el\",\"ĠUn iform\",\"Ġ ...\\\"\",\"Ġpur ge\",\"Ġpic nic\",\"ĠU mb\",\"ĠU PDATE\",\"ĠSapp hire\",\"ĠSt all\",\"le arn\",\"Ġobject ively\",\"Ġob liter\",\"Ġlooph ole\",\"Ġjour neys\",\"Ġo mission\",\"Pro s\",\"ĠSid ney\",\"pl oma\",\"Ġspray ed\",\"Ġg uru\",\"Ġtra itor\",\"Ġtim et\",\"Ġsn apping\",\"ĠSe vent\",\"urn al\",\"ĠUk ip\",\"Ġb owed\",\"por al\",\"l iberal\",\"R os\",\"Quest ions\",\"i OS\",\"Ġsummar ize\",\"ST AT\",\"Ġ18 50\",\"ap est\",\"Ġl ender\",\"ĠVari able\",\"br inging\",\"ĠL ORD\",\", )\",\"Ġcollaps es\",\"x iety\",\"ĠN ed\",\"Y D\",\"ĠSch a\",\"Ġantib ody\",\"Ġdis band\",\"y re\",\"ill usion\",\"Ġro ver\",\"s hed\",\"ĠHiro sh\",\"cc i\",\"Ġcal am\",\"ĠMort on\",\"P interest\",\"Ġ19 28\",\"ĠE uras\",\"ord es\",\"Ġf ences\",\"ĠIn ventory\",\"ĠVal encia\",\"ĠU d\",\"ĠT iff\",\"Ġsqu e\",\"Ġqu otation\",\"Ġtroubles ome\",\"er ker\",\"QU EST\",\"ĠKing doms\",\"s outh\",\"Ġle vy\",\"Pr ince\",\"ĠSt ing\",\"Ġnick named\",\"Ġapp e\",\"Ġphot ographic\",\"Ġcorp us\",\"re ference\",\"ĠT rog\",\"U nt\",\") =(\",\"ĠLat via\",\"Ġactiv ating\",\"Ġlicense e\",\"Ġdispar ities\",\"ĠNews letter\",\"ãĥĥ ãĥĪ\",\"Ġfree ing\",\"ĠJe ep\",\"ĠPer ception\",\"ins k\",\"Ġsil icone\",\"ĠHay den\",\"Le an\",\"ĠSuz uki\",\"ibr arian\",\"66 8\",\"Ġsp or\",\"Ġcorrel ations\",\"ag hetti\",\"Ġtu ber\",\"ĠIP CC\",\"il us\",\"ĠV u\",\"Ġwealth iest\",\"ĠCarb uncle\",\"an za\",\"Ġfool ed\",\"ĠZ ur\",\"Ġd addy\",\"ran o\",\"il ian\",\"Ġknock out\",\"f man\",\"requ ired\",\"ĠWik ileaks\",\"ĠD uffy\",\"ON T\",\"Ġins ol\",\"ĠObject s\",\"Ġb ou\",\"ĠNord ic\",\"ĠIns ert\",\"sc an\",\"Ġd ancers\",\"Ġid iots\",\"major ity\",\"ĠNev ille\",\"ĠFree BSD\",\"Ġt art\",\"pan ic\",\"69 0\",\"Ġcoc oa\",\"Ġsam pled\",\"Ġlook up\",\"Ind ust\",\"Ġinject ions\",\"gen re\",\"Ġa u\",\"Ġroad way\",\"Ġgen itals\",\"K ind\",\"ĠEx aminer\",\"ĠY az\",\"F resh\",\"Ġpar alysis\",\"ĠAl uminum\",\"Ġre ap\",\"ok Ã©\",\"Ġsl oppy\",\"ĠTun nel\",\"pos ium\",\"ner y\",\"en ic\",\"Ġher bal\",\"ĠOut er\",\"ĠBuild er\",\"Ġinc ur\",\"Ġide ologies\",\"Ġback ups\",\"cons uming\",\"ĠDet ect\",\"de ck\",\"ĠKN OW\",\"ĠG ret\",\"ĠM IC\",\"Ġtough ness\",\"ĠEx hibit\",\"Ġh ive\",\"L es\",\"ĠSCH OOL\",\"ĠAt ari\",\"ald e\",\"ĠN ull\",\"and estine\",\"m ouse\",\"Ġbrig ade\",\"48 9\",\"Ġrev ol\",\"ĠLaw son\",\"ĠW ah\",\"op oly\",\"eb ted\",\"ĠS aunders\",\"Ġ3 13\",\"ĠW inc\",\"Ġtab oo\",\"ĠHel met\",\"Ġw edge\",\"ch ip\",\"ĠT ina\",\"b g\",\"Ġinf uri\",\"r n\",\"Ġanomal ies\",\"ĠSy nc\",\"ĠEx am\",\"ĠComm it\",\"ĠDi ary\",\"ĠALS O\",\"ĠDe bor\",\"omed ical\",\"Ġcomprehens ion\",\"6 55\",\"Ġempower ing\",\"Ġ ire\",\"Ġju ices\",\"ĠE TH\",\"ĠBox ing\",\"=\\\" /\",\"Ġfacilit ated\",\"p oke\",\"ĠPars ons\",\"ĠMod er\",\"tra vel\",\"Ġcivil izations\",\"Ġliber tarians\",\"Ġrun e\",\"ĠCl arks\",\"at hed\",\"Ġcampaign ers\",\"ĠDis patch\",\"ĠFah renheit\",\"ĠCap com\",\"-------- --\",\"Ġl ace\",\"Ġdr aining\",\"Ġl iner\",\"ĠArt ificial\",\"Ã© n\",\"t ask\",\"] ).\",\"ĠGM O\",\"ĠOper ator\",\"ord inary\",\"ĠInf luence\",\"ĠU ps\",\"Ġpot ency\",\"uss en\",\"osp ons\",\"ĠSw im\",\"ĠDead line\",\"Un ity\",\"Ġcul inary\",\"Ġenlight enment\",\"Ġwe arer\",\"Ġmin ed\",\"Ġp ly\",\"Ġinc est\",\"ĠDVD s\",\"W alk\",\"B TC\",\"Tr ade\",\"Ġdev al\",\"ib and\",\"ĠOvers ight\",\"Palest inian\",\"Ġd art\",\"Ġm ul\",\"L R\",\"Ġrem ovable\",\"ĠReal ms\",\"ì Ŀ\",\"Ġmisc ar\",\"ĠV ulkan\",\"68 5\",\"Ã¨ re\",\"ĠS ap\",\"Ġmer ging\",\"ĠCar ly\",\"che ster\",\"Ġbr isk\",\"Ġlux urious\",\"ĠGener ator\",\"Ġbit terness\",\"Ġed ible\",\"Ġ24 3\",\"T G\",\"Ġrect angle\",\"With No\",\"bel ow\",\"J enn\",\"Ġdark est\",\"Ġh itch\",\"Ġdos age\",\"Ġsc aven\",\"ĠK eller\",\"ĠIllust rated\",\"Certain ly\",\"ĠMaver icks\",\"Marg inal\",\"Ġdiarr hea\",\"Ġenorm ously\",\"Ġ9 99\",\"sh r\",\"qu art\",\"Ġadam ant\",\"ĠM ew\",\"Ġren ovation\",\"Ġcerv ical\",\"ĠPercent age\",\"en ers\",\"ĠKim ber\",\"Ġflo ats\",\"Ġde x\",\"ĠW itcher\",\"ĠSwan sea\",\"d m\",\"Ġsal ty\",\"y ellow\",\"Ġca pe\",\"ĠDr ain\",\"ĠPaul a\",\"ĠTol edo\",\"les i\",\"Mag azine\",\"ĠW ick\",\"ĠM n\",\"ĠA ck\",\"ĠR iding\",\"AS ON\",\"Ġhom ophobic\",\"AR P\",\"Ġwand ered\",\"C PU\",\"ood oo\",\"ĠP ipe\",\"Ġtight ening\",\"ĠBut t\",\"3 18\",\"Ġdesert ed\",\"S ession\",\"Ġfacilit ating\",\"J ump\",\"Ġemer gencies\",\"OW ER\",\"Ġexhaust ive\",\"ĠAF TER\",\"Ġheart beat\",\"ĠLab el\",\"ack y\",\"ĠCert ified\",\"ilt ration\",\"Z e\",\"ĠU tt\",\"Ġ13 00\",\"Ġpres ume\",\"ĠDis p\",\"Ġsur ged\",\"Ġdoll s\",\"Col umb\",\"Ġchim pan\",\"ĠR azor\",\"Ġt icks\",\"Ġcouncill or\",\"Ġpilgr image\",\"ĠReb els\",\"ĠQ C\",\"ĠA uction\",\"x ia\",\"ik k\",\"b red\",\"Ġinsert ion\",\"Ġco arse\",\"d B\",\"SE E\",\"ĠZ ap\",\"ĠF oo\",\"Ġcontem por\",\"ĠQuarter ly\",\"ot ions\",\"ĠAl chemist\",\"ĠT rey\",\"ĠDu o\",\"S weet\",\"80 4\",\"ĠGi ov\",\"Ġfun n\",\"N in\",\"h off\",\"Ġram ifications\",\"Ġ19 22\",\"ĠExper ts\",\"az es\",\"Ġgar ments\",\"ar ial\",\"ĠN ab\",\"Ġ25 7\",\"ĠV ed\",\"Ġhum orous\",\"ĠPom pe\",\"Ġn ylon\",\"Ġlur king\",\"ĠSerge y\",\"ĠMatt is\",\"Ġmisogyn y\",\"ĠComp onents\",\"ĠWatch ing\",\"ĠF olk\",\"ract ical\",\"B ush\",\"Ġt aped\",\"Ġgroup ing\",\"Ġbe ads\",\"Ġ20 48\",\"Ġcon du\",\"quer que\",\"Read ing\",\"Ġgriev ances\",\"Ult ra\",\"Ġend point\",\"H ig\",\"ĠSt atic\",\"ĠScar borough\",\"L ua\",\"ĠMess i\",\"a qu\",\"ĠPsy Net\",\"ĠR udd\",\"Ġa venue\",\"v p\",\"J er\",\"Ġsh ady\",\"ĠRes ist\",\"ĠArt emis\",\"Ġcare less\",\"Ġbro kers\",\"Ġtemper ament\",\"Ġ5 20\",\"T ags\",\"ĠTurn ing\",\"Ġut tered\",\"Ġp edd\",\"Ġimpro vised\",\"Ġ: (\",\"Ġtab l\",\"Ġpl ains\",\"16 00\",\"press ure\",\"ĠEss ence\",\"marg in\",\"friend s\",\"ĠRest oration\",\"Ġpoll ut\",\"ĠPok er\",\"ĠAugust ine\",\"ĠC IS\",\"ĠSE AL\",\"or ama\",\"Ġth wart\",\"se ek\",\"Ġp agan\",\"Â º\",\"cp u\",\"Ġg arn\",\"Ġass ortment\",\"ĠI LCS\",\"t ower\",\"Recomm ended\",\"Ġun born\",\"ĠRandom Redditor\",\"ĠRandomRedditor WithNo\",\"Ġparaly zed\",\"Ġeru ption\",\"Ġinter sect\",\"ĠSt oke\",\"ĠS co\",\"B ind\",\"å ¾\",\"ĠP NG\",\"ĠNeg ative\",\"ĠNO AA\",\"Le on\",\"Ġall oy\",\"ĠL ama\",\"ĠD iversity\",\"5 75\",\"Ġunderest imated\",\"ĠSc or\",\"Ġm ural\",\"Ġb usted\",\"so on\",\"l if\",\"Ġnone x\",\"Ġall ergy\",\"ĠUnder world\",\"ĠR ays\",\"ĠBl asio\",\"Ġh rs\",\"ĠD ir\",\"Ġ3 27\",\"by ter\",\"Ġrepl acements\",\"Ġactiv ates\",\"ri ved\",\"M H\",\"Ġp ans\",\"ĠH I\",\"Ġlong itudinal\",\"Ġnu isance\",\"al er\",\"Ġsw ell\",\"ĠS igned\",\"s ci\",\"ĠIs les\",\"ĠA GA\",\"Ġdef iant\",\"Ġson ic\",\"oc on\",\"K C\",\"ĠA im\",\"t ie\",\"ah ah\",\"Ġm L\",\"D X\",\"Ġb isc\",\"ĠBill board\",\"ĠSY STEM\",\"NE Y\",\"ga ard\",\"Ġdist ressed\",\"former ly\",\"Al an\",\"Ġche fs\",\"Ġopt ics\",\"ĠC omet\",\"ĠAM C\",\"Ġredes igned\",\"irm ation\",\"Ġsight ings\",\"38 2\",\"3 11\",\"ĠW B\",\"Ġcont raction\",\"ĠT OTAL\",\"D ual\",\"Ġstart led\",\"Ġunderstand ably\",\"Ġsung lasses\",\"ETH OD\",\"Ġd ocker\",\"Ġsurf ing\",\"ĠH EL\",\"ĠSl ack\",\"ton es\",\"Ġsh alt\",\"Vis ual\",\"49 8\",\"Dep artment\",\"c ussion\",\"Ġunrest ricted\",\"Ġt ad\",\"Ġre name\",\"employ ed\",\"Ġeduc ating\",\"Ġgrin ned\",\"bed room\",\"ĠActiv ities\",\"ĠV elvet\",\"ĠSW AT\",\"Ġsh uffle\",\"ig or\",\"Ġsatur ation\",\"F inding\",\"c ream\",\"ic ter\",\"Ġv odka\",\"tr acking\",\"te c\",\"Ġfore ground\",\"iest a\",\"Ġve hement\",\"ĠEC B\",\"ĠT ie\",\"E y\",\"Ġt urtles\",\"ĠRail road\",\"ĠKat z\",\"ĠFram es\",\"Ġmen ace\",\"ĠFell owship\",\"ĠEss ential\",\"ugg ish\",\"Ġdri p\",\"ch witz\",\"ĠKy oto\",\"s b\",\"ĠN ina\",\"Param eter\",\"Ġal arms\",\"ĠCl aud\",\"Ġpione ering\",\"Ġchief ly\",\"ĠSc ream\",\"Col lection\",\"Ġthank fully\",\"ĠRonald o\",\"åŃ Ĳ\",\"st rip\",\"ĠDisney land\",\"com mercial\",\"See ing\",\"S oul\",\"Ġevac uate\",\"Ġc iv\",\"ĠAs he\",\"Ġdiv ides\",\"ĠD agger\",\"rehens ive\",\"Ġber ries\",\"ĠD F\",\"Ġs ushi\",\"Ġplur ality\",\"W I\",\"Ġdisadvant aged\",\"Ġbatt alion\",\"ob iles\",\"45 1\",\"Ġcl ing\",\"Ġunden iable\",\"ĠL ounge\",\"Ġha unt\",\"p he\",\"Ġquant ify\",\"Ġdiff ered\",\"Ġ[* ]\",\"ĠV iz\",\"c um\",\"sl ave\",\"Ġvide og\",\"Ġqu ar\",\"Ġbund les\",\"ĠAl onso\",\"t ackle\",\"Ġneur onal\",\"Ġlandsl ide\",\"conf irmed\",\"ĠDep th\",\"Ġrenew ables\",\"B ear\",\"ĠMaced onia\",\"Ġjer seys\",\"Ġb unk\",\"ĠSp awn\",\"ĠControl s\",\"ĠBuch anan\",\"Ġrobot ics\",\"Ġemphas izing\",\"ĠTut orial\",\"h yp\",\"ist on\",\"Ġmonument al\",\"æ °\",\"ĠCar ry\",\"Ġt bsp\",\"en ance\",\"H ill\",\"art hed\",\"Ġro tten\",\"De an\",\"Ġtw isting\",\"Ġgood will\",\"Ġimm ersion\",\"L iving\",\"Ġbr ushes\",\"ĠC GI\",\"ĠAt k\",\"tr aditional\",\"Ġph antom\",\"ĠSt amina\",\"Ġexpans ions\",\"ĠMar in\",\"Ġembark ed\",\"ĠE g\",\"int estinal\",\"ĠPE OPLE\",\"ĠBo oth\",\"ĠApp alach\",\"Ġreleg ated\",\"V T\",\"M IT\",\"Ġmust er\",\"Ġwithdraw ing\",\"Ġmicrosc ope\",\"ĠG athering\",\"ĠC rescent\",\"ĠArgent ine\",\"ĠDec re\",\"ĠDomin ic\",\"Ġbud s\",\"ant age\",\"ĠI on\",\"Ġwid ened\",\"ONS ORED\",\"ĠGl oves\",\"iann opoulos\",\"raz en\",\"fe el\",\"Ġrepay ment\",\"Ġhind sight\",\"ĠRE ALLY\",\"ĠPist ol\",\"ĠBra h\",\"Ġwat ts\",\"Ġsurv ives\",\"Ġfl urry\",\"iss y\",\"Al ert\",\"ĠUrug uay\",\"Ph oenix\",\"S low\",\"ĠG rave\",\"ĠF ir\",\"Ġmanage able\",\"Ġtar iff\",\"ĠU DP\",\"ĠPist ons\",\"ĠNiger ian\",\"Ġstrike outs\",\"Ġcos metics\",\"whel ming\",\"f ab\",\"c ape\",\"pro xy\",\"Ġre think\",\"Ġover coming\",\"sim ple\",\"Ġw oo\",\"Ġdistract ing\",\"ĠSt anton\",\"ĠTuls a\",\"ĠD ock\",\"65 9\",\"Ġdisc ord\",\"ĠEm acs\",\"ĠV es\",\"ĠR OB\",\"Ġreass uring\",\"Ġcons ortium\",\"Muslim s\",\"3 21\",\"Ġprompt s\",\"se i\",\"ĠH itch\",\"imp osed\",\"ĠF ool\",\"Ġindisc rim\",\"wr ong\",\"bu querque\",\"D avis\",\"! ]\",\"Ġtim eless\",\"ĠNE ED\",\"Ġpestic ide\",\"Ġrally ing\",\"ĠCal der\",\"Ġå ¤\",\"Ġx p\",\"ĠUn le\",\"ĠEx port\",\"lu aj\",\"B uff\",\") </\",\"B oot\",\"ĠChrys ler\",\"or ative\",\"M ess\",\"Ġneglig ible\",\"ert odd\",\"ĠMush room\",\"ĠG ale\",\"g c\",\"ĠCos by\",\"ĠR ural\",\"rit ical\",\"B ell\",\"Ġturb ine\",\"00 200000\",\"Ġlegit imately\",\"ĠAnim ated\",\"T ED\",\"ĠThe odore\",\"c onduct\",\"ĠH ier\",\"Ġcounterfe it\",\"ĠAlger ia\",\"Ġun beat\",\"cont roller\",\"Ġun res\",\"Ġscram bling\",\"ĠFall on\",\"T es\",\"Ġam ber\",\"Ġroy alties\",\"ĠShel ter\",\"ĠL ester\",\"Ġclass ify\",\"Rem ote\",\"Ġun heard\",\"Ġcontrovers ies\",\"Ġenrich ment\",\"ĠYan kee\",\"g amer\",\"Ġpl atinum\",\"Ġec ology\",\"ĠS ark\",\"Ġunt ouched\",\"Ġsuper visors\",\"Ġ\\\" %\",\"Ġf ooth\",\"Ġcomm ons\",\"Ġnarc otics\",\"Ġind ices\",\"ĠP ly\",\"Ġaddition ally\",\"ĠGaw ker\",\"ĠE Q\",\"Pl aying\",\"Ġcave at\",\"ĠAbs olute\",\"oss us\",\"B aby\",\"Ġr ation\",\"Ġres in\",\"Ġcalib ration\",\"ĠNew port\",\"Ġkn ocks\",\"v t\",\"Ġcomp ost\",\"Sc ene\",\"Ġsar cast\",\"Ġkiss es\",\"Ġn s\",\"all i\",\"ĠMar cel\",\"ĠP iet\",\"iat rics\",\"Ġsurround s\",\"ĠRep rodu\",\"ĠPhill ies\",\"Ġuncertain ties\",\"ĠE ur\",\"ĠRom ance\",\"ĠH ath\",\"ĠNeed s\",\"ĠCl oak\",\"Ġcre m\",\"que ue\",\"Ġ3 55\",\"Ġup front\",\"] );\",\"Ġrecip roc\",\"Ġ19 27\",\"Ġ11 00\",\"ut su\",\"Ġdep ressive\",\"ow ment\",\"F ans\",\"Ġme ch\",\"Ġann ihil\",\"Ġcounter terrorism\",\"ĠFig ures\",\"b old\",\"ĠMo ines\",\"ĠDri vers\",\"Ġmanuscript s\",\"ĠCrypt o\",\"Ġhyp not\",\"redd its\",\"Ġprosec utions\",\"Ġdiver t\",\"CR IP\",\"ĠB ene\",\"ĠRe ggie\",\"Ġtax ing\",\"ĠMor ales\",\"ent ing\",\"t ur\",\"sign ificant\",\"ĠPR OV\",\"Ġstr ands\",\"Ġp ouch\",\"ĠR ookie\",\"» Ĵ\",\"Ġnic er\",\"he my\",\"h w\",\"EC A\",\"Ġintimid ated\",\"Ġstr icter\",\"Ġmicro bial\",\"det ails\",\"Ġv ows\",\"Ġqu ake\",\"hh hh\",\"Ġrein vent\",\"U b\",\"Ġrel inqu\",\"ĠBuff ett\",\"lic ensed\",\"itte red\",\"ĠPic ard\",\"Ġche wing\",\"u cl\",\"organ ic\",\"Ġlocal ized\",\"ĠEconom ist\",\"Ġacqu ainted\",\"Def inition\",\"s ed\",\"Crit ics\",\"Ġc c\",\"45 3\",\"38 1\",\"Ġfell ows\",\"Ġcheck points\",\"0 25\",\"Ġre election\",\"Ġmed iated\",\"ĠK DE\",\"Ġhurd le\",\"Ġtext ing\",\"Per fect\",\"Ġtrust ees\",\"fect ure\",\"Ġd ich\",\"mon ary\",\"Ġdist inctions\",\"Ġ14 00\",\"Ġus her\",\"Ġparas ites\",\"ĠSh aring\",\"ĠV im\",\"Ġbar becue\",\"ĠMin isters\",\"ere lla\",\"Ġe b\",\"Ġm c\",\"ĠSome how\",\"ĠIn sect\",\"ch anges\",\"b road\",\"ĠBy z\",\"Ġgrap es\",\"66 9\",\"Ġ= ================\",\"Ġass imil\",\"Ġhaun ting\",\"Ġfire power\",\"Ġdef amation\",\"em phasis\",\"Ġcomp ose\",\"Ġallerg ies\",\"Ġstr ang\",\"roll ers\",\"b ang\",\"Ġbrew ers\",\"ron gh\",\"ri ot\",\"p oor\",\"c old\",\"S ample\",\"Ġbu oy\",\"0 40\",\"ĠCourt ney\",\"Ġ26 8\",\"ĠWed ding\",\"70 2\",\"Ġobsess ive\",\"Ġbra king\",\"ĠL al\",\"an ical\",\"å ¦\",\"at en\",\"Con struction\",\"Ġclin ically\",\"iers hip\",\"N ames\",\"ĠDisc uss\",\"ĠRam os\",\"Ġloc ale\",\"ĠAgric ultural\",\"En able\",\"Ġhorse power\",\"ent ure\",\"P ref\",\"C ourt\",\"Ġstaff ing\",\"Ġfut uristic\",\"dri vers\",\"ĠMarket place\",\"æĪ ¦\",\"Friend s\",\"Ġdam ning\",\"ĠCustom ers\",\"Ġwe eds\",\"ĠM ai\",\"Ġag ile\",\"ĠT att\",\"ic ent\",\"R anked\",\"cro ft\",\"ĠKat y\",\"Ext reme\",\"Ġcar ve\",\"ĠR over\",\"ĠBy ron\",\"37 2\",\"Ġconduct s\",\"r atch\",\"it ia\",\"ĠPump kin\",\"Sad ly\",\"Rel oaded\",\"P olicy\",\"Ġl ick\",\"pe ak\",\"is ks\",\"ĠCD s\",\"ĠEn cyclopedia\",\"in itial\",\"C os\",\"ĠAware ness\",\"ĠD ram\",\"$$ $$\",\"Ġr iff\",\"Ġscript ure\",\"run ners\",\"Ġbo iler\",\"ons on\",\"o in\",\"Ġham string\",\"Ġcat aly\",\"ĠArch bishop\",\"ch all\",\"Ġf aux\",\"ok in\",\"local host\",\"ĠN AME\",\"ad obe\",\"S AN\",\"am ate\",\"Ġscram ble\",\"Ġcar c\",\"ĠMan ifest\",\"ĠCed ar\",\"ĠSer gio\",\"l ater\",\"ff er\",\"Ġgrapp ling\",\"ĠDe utsche\",\"agon ists\",\"ĠNew sp\",\"Ġpret ended\",\"arch ment\",\"Ġcur ated\",\"Ġhead phone\",\"ĠUn common\",\"ĠS IGN\",\"A gent\",\"Ġdead lines\",\"Ġhorizont ally\",\"ĠM AT\",\"ĠSum mers\",\"Ġord ained\",\"ĠLast ly\",\"ĠKend all\",\"Ġfr ig\",\"ĠMach ina\",\"ĠWater loo\",\"ĠMex icans\",\"Ġprotect or\",\"Ġgl are\",\"} \\\"\",\"Prem ium\",\"Ġr ift\",\"ĠTelesc ope\",\"Met al\",\"Ġrec apt\",\"Ġ; ;\",\"Ġincl ination\",\"Ġimp oses\",\"ing en\",\"^ {\",\"Ġh aste\",\"Ġd olphins\",\"Ġcomm uters\",\"pl anned\",\"c ong\",\"m x\",\"ĠU pload\",\"Ġext rap\",\"ĠTuc son\",\"ĠExpl oration\",\"efe ated\",\"Ġsl ender\",\"70 3\",\"ĠB uk\",\"is el\",\"Ġcompet itiveness\",\"ch lor\",\"ĠP ermanent\",\"ĠE verett\",\"ĠSpecial ist\",\"ĠS OL\",\"Ġcy an\",\"ĠEx actly\",\"U F\",\"ĠL IFE\",\"ary l\",\"on et\",\"ĠEmploy ee\",\"aw ed\",\"ĠRat ings\",\"Ġextra vag\",\"ul hu\",\"ĠPl ane\",\"Ġelev ate\",\"ĠCoord inator\",\"ĠWat kins\",\"Ġex cludes\",\"Ġsent ient\",\"Ġep och\",\"Ġall oc\",\"Pre viously\",\"ĠSh y\",\"ĠSlov akia\",\"L OCK\",\"Ġmarked ly\",\"Ġkn ob\",\"Ġadventure rs\",\"ĠBe en\",\"ĠCost s\",\"amm ers\",\"Ġon slaught\",\"ĠSupport ed\",\"ĠT au\",\"ik arp\",\"ĠS overe\",\"ĠHam pton\",\"ãĤ ī\",\"Pre v\",\"ĠW orse\",\"Ġc ottage\",\"ĠH ades\",\"le z\",\"b owl\",\"Ġfrag rance\",\"ĠL ok\",\"EM OTE\",\"ĠPet ro\",\"Ġ19 25\",\"ĠP end\",\"produ cing\",\"Ġrel ocate\",\"v ati\",\"p ole\",\"Ġsem in\",\"ĠN UM\",\"Ġrock ed\",\"b uff\",\"b ly\",\"Rep ly\",\"ĠH ai\",\"Ġartic ulated\",\"ĠIslam abad\",\"66 5\",\"ĠClaim s\",\"Des ktop\",\"Ġtrust ee\",\"Ġscript ing\",\"ĠS ob\",\"ĠAs ylum\",\"STD OUT\",\"ĠCl own\",\"ĠD ortmund\",\"ĠDev on\",\"l ite\",\"ĠMar ble\",\"Ġb unker\",\"Ġcre st\",\"Ġarous al\",\"ĠS ears\",\"ĠBudd y\",\"ered ith\",\"ĠP olly\",\"Ġdec ode\",\"ĠV ish\",\"ĠRef lect\",\"an on\",\"Ġrefund s\",\"imm ers\",\"H M\",\"Ġwip ing\",\"Ġpuzz led\",\"Ġmat te\",\"un o\",\"P ierre\",\") ),\",\"Ġt ainted\",\"Ġsymbol ism\",\"ĠF raz\",\"Ġprotest ors\",\"ethe us\",\"%% %%\",\"W ra\",\"Ġl ax\",\"ad em\",\"atur ation\",\"ãĥ ĵ\",\"ĠTra iler\",\"ĠE NG\",\"ĠBows er\",\"Ġatt m\",\"D ur\",\"80 7\",\"Ġsid x\",\"Ġc ider\",\"ĠA ffect\",\"Ġw oven\",\"ĠBark er\",\"ben ef\",\"Ġdst g\",\"ĠRy u\",\"> [\",\"Ġsq or\",\"S audi\",\"Ġis tg\",\"Ġindul ge\",\"pro c\",\"Ġdisg usted\",\"Ġcomp ounded\",\"Ġn em\",\"Ġschool ing\",\"ĠC ure\",\"process ing\",\"S ol\",\"Ġpro verb\",\"it ized\",\"ĠAlv arez\",\"Ġscar f\",\"Ġrect angular\",\"re ve\",\"Ġh ormonal\",\"ĠSt ress\",\"itiz en\",\"Ġ4 25\",\"girl s\",\"ĠNo ir\",\"ĠR app\",\"Ġmar ches\",\"ch urch\",\"ĠUs es\",\"Ġ40 5\",\"ĠBer m\",\"Ġord inances\",\"ĠJud gment\",\"Charg es\",\"ĠZ in\",\"Ġdust y\",\"Ġstraw berries\",\"Ġper ce\",\"ĠTh ur\",\"ĠDebor ah\",\"net flix\",\"ĠLam bert\",\"Ġam used\",\"ĠGu ang\",\"Y OU\",\"R GB\",\"ĠC CTV\",\"Ġf iat\",\"r ang\",\"Ġf ederation\",\"ĠM ant\",\"ĠB ust\",\"ĠM are\",\"respect ive\",\"ĠM igration\",\"ĠB IT\",\"59 0\",\"Ġpatriot ism\",\"Ġout lining\",\"reg ion\",\"ĠJos Ã©\",\"Ġbl asting\",\"ĠEz ra\",\"B s\",\"Ġundermin es\",\"ĠSm ooth\",\"Ġcl ashed\",\"rad io\",\"Ġtransition ing\",\"ĠBucc aneers\",\"ĠOw l\",\"Ġplug s\",\"Ġh iatus\",\"ĠPin ball\",\"Ġm ig\",\"ĠNut r\",\"ĠWolf e\",\"Ġinteg ers\",\"Ġor bits\",\"ĠEd win\",\"ĠDirect X\",\"b ite\",\"Ġbl azing\",\"v r\",\"Ed ge\",\"ĠP ID\",\"ex it\",\"ĠCom ed\",\"ĠPath finder\",\"ĠGu id\",\"ĠSign s\",\"ĠZ er\",\"ĠAg enda\",\"Ġreimburse ment\",\"M esh\",\"i Phone\",\"ĠMar cos\",\"ĠS ites\",\"h ate\",\"en burg\",\"Ġs ockets\",\"p end\",\"Bat man\",\"v ir\",\"ĠSH OW\",\"Ġprovision al\",\"con n\",\"ĠDeath s\",\"AT IVE\",\"Pro file\",\"sy m\",\"J A\",\"Ġnin ja\",\"inst alled\",\"id ates\",\"eb ra\",\"ĠOm aha\",\"Ġse izing\",\"ĠBe asts\",\"Ġsal ts\",\"M ission\",\"Gener ally\",\"ĠTr ilogy\",\"he on\",\"leg ates\",\"Ġd ime\",\"Ġf aire\",\"par able\",\"G raph\",\"Ġtotal ing\",\"Ġdiagram s\",\"ĠYan uk\",\"ple t\",\"ĠMe h\",\"Ġmyth ical\",\"ĠStep hens\",\"aut ical\",\"ochem istry\",\"Ġkil ograms\",\"Ġel bows\",\"anc ock\",\"ĠB CE\",\"ĠPr ague\",\"Ġimpro v\",\"ĠDev in\",\"Ġ\\\" \\\\\",\"par alle\",\"Ġsuprem acists\",\"ĠB illion\",\"Ġreg imen\",\"inn acle\",\"Ġrequ isite\",\"ang an\",\"ĠBur lington\",\"ain ment\",\"ĠObject ive\",\"oms ky\",\"G V\",\"Ġun ilateral\",\"Ġt c\",\"Ġh ires\",\"ment al\",\"Ġinvol untary\",\"Ġtrans pl\",\"ĠASC II\",\"Â ¨\",\"Ev ents\",\"Ġdoub ted\",\"ĠKa plan\",\"ĠCour age\",\"ig on\",\"ĠMan aging\",\"ĠT art\",\"Ġfalse hood\",\"ĠV iolet\",\"Ġair s\",\"Ġfertil izer\",\"Brit ain\",\"Ġaqu atic\",\"ou f\",\"W ords\",\"ĠHart ford\",\"Ġeven ings\",\"ĠV engeance\",\"qu ite\",\"G all\",\"ĠP ret\",\"Ġp df\",\"ĠL M\",\"ĠSo chi\",\"ĠInter cept\",\"9 20\",\"Ġprofit ability\",\"ĠId le\",\"ĠMac Donald\",\"ĠEst ablishment\",\"um sy\",\"Ġgather ings\",\"ĠN aj\",\"Charl ie\",\"Ġas cent\",\"ĠProt ector\",\"Ġal gebra\",\"Ġbi os\",\"for ums\",\"EL S\",\"Introdu ced\",\"Ġ3 35\",\"Ġastron omy\",\"Cont ribut\",\"ĠPol ic\",\"Pl atform\",\"Ġcontain ment\",\"w rap\",\"Ġcoron ary\",\"ĠJ elly\",\"man ager\",\"Ġheart breaking\",\"c air\",\"ĠChe ro\",\"c gi\",\"Med ical\",\"ĠAccount ability\",\"! !\\\"\",\"oph ile\",\"Ġpsych otic\",\"ĠRest rict\",\"Ġequ itable\",\"iss ues\",\"Ġ19 05\",\"ĠN ek\",\"c ised\",\"ĠTr acking\",\"Ġo zone\",\"Ġcook er\",\"ros is\",\"Ġre open\",\"Ġinf inity\",\"ĠPharm aceutical\",\"ens ional\",\"Att empt\",\"ĠR ory\",\"Mar co\",\"Ġawa its\",\"H OW\",\"t reated\",\"Ġbol st\",\"Ġreve red\",\"Ġp ods\",\"opp ers\",\"00 10\",\"Ġampl itude\",\"ric an\",\"SP ONSORED\",\"Ġtrou sers\",\"Ġhal ves\",\"ĠK aine\",\"ĠCut ler\",\"ĠA UTH\",\"Ġsplend id\",\"Ġprevent ive\",\"ĠDud ley\",\"if acts\",\"umin ati\",\"ĠY in\",\"Ġad mon\",\"ĠV ag\",\"Ġin verted\",\"Ġhast ily\",\"ĠH ague\",\"L yn\",\"Ġled ger\",\"Ġastron omical\",\"get ting\",\"Ġcirc a\",\"ĠC ic\",\"ĠTenn is\",\"Lim ited\",\"Ġd ru\",\"ĠBY U\",\"Ġtrave llers\",\"Ġp ane\",\"ĠInt ro\",\"Ġpatient ly\",\"Ġa iding\",\"Ġlo os\",\"ĠT ough\",\"Ġ29 3\",\"Ġconsum es\",\"Source File\",\"Ġ\\\"\\\" \\\"\",\"Ġbond ing\",\"Ġtil ted\",\"Ġmenstru al\",\"ĠCel estial\",\"UL AR\",\"Plug in\",\"Ġrisk ing\",\"N az\",\"ĠRiy adh\",\"Ġacc redited\",\"Ġsk irm\",\"é Ľ\",\"Ġexam iner\",\"Ġmess ing\",\"Ġnear ing\",\"ĠC hern\",\"ĠBeck ham\",\"Ġsw apped\",\"Ġgo ose\",\"K ay\",\"Ġlo fty\",\"ĠWal let\",\"Ġ[ '\",\"Ġap ocalypse\",\"Ġb amboo\",\"ĠSP ACE\",\"ĠEl ena\",\"Ġ30 6\",\"ac ons\",\"Ġtight ened\",\"Ġadolesc ence\",\"Ġrain y\",\"Ġvandal ism\",\"ĠNew town\",\"Ġcon ject\",\"c akes\",\"Ġche ated\",\"Ġmoder ators\",\"par ams\",\"E FF\",\"Ġdece it\",\"ĠST L\",\"ĠTanz ania\",\"ĠR I\",\"Ġ19 23\",\"ĠEx ile\",\"the l\",\"Ġthe olog\",\"Ġquir ky\",\"ĠIr vine\",\"Ġneed y\",\"or is\",\"U m\",\"K a\",\"Ġmail box\",\"3 22\",\"Ġb os\",\"ĠPet ra\",\"K ING\",\"Ġenlarg ed\",\"O ften\",\"Ġbad ass\",\"Ġ3 43\",\"ĠPl aces\",\"ĠC AD\",\"Ġpr istine\",\"Ġinterven ing\",\"d irection\",\"Ġl az\",\"ĠD SM\",\"Ġproject ing\",\"ĠF unk\",\"ag og\",\"pay ment\",\"n ov\",\"Ġch atter\",\"AR B\",\"Ġexam inations\",\"ĠHouse hold\",\"ĠG us\",\"F ord\",\"4 14\",\"B oss\",\"Ġmy stic\",\"Ġle aps\",\"ĠB av\",\"ul z\",\"b udget\",\"Foot ball\",\"Ġsubsid ized\",\"Ġfirst hand\",\"Ġcoinc ide\",\"oc ular\",\"Con n\",\"ĠColl abor\",\"Ġfool s\",\"am ura\",\"ah ar\",\"r ists\",\"Ġsw ollen\",\"Ġexp ended\",\"ĠP au\",\"s up\",\"Ġsp ar\",\"Ġkey note\",\"s uff\",\"Ġunequ al\",\"Ġprogress ing\",\"str ings\",\"ĠGamer gate\",\"Dis ney\",\"ĠEle ven\",\"om nia\",\"Ġscript ed\",\"Ġear ners\",\"bro ther\",\"ĠEn abled\",\"æ ³\",\"Ġlar vae\",\"ĠL OC\",\"m ess\",\"Wil son\",\"ĠTem plate\",\"success fully\",\"Ġparam ount\",\"Ġcamoufl age\",\"Ġbind s\",\"ĠQu iet\",\"ĠSh utterstock\",\"r ush\",\"Ġmasc ot\",\"fort une\",\"ĠCol t\",\"ĠBe yon\",\"hab i\",\"Ġha irc\",\"Ġ26 7\",\"ĠDe us\",\"Ġtw itch\",\"Ġconcent rating\",\"Ġn ipples\",\"c ible\",\"Ġg ir\",\"N Z\",\"M ath\",\"n ih\",\"Requ ired\",\"Ġp onder\",\"ĠS AN\",\"Ġwedd ings\",\"Ġl oneliness\",\"N ES\",\"ĠMah jong\",\"69 5\",\"add le\",\"ĠGar ner\",\"ĠC OUR\",\"Br idge\",\"Ġsp ree\",\"ĠCald well\",\"Ġbri bery\",\"Ġï¿½ï¿½ï¿½ï¿½ ï¿½ï¿½ï¿½ï¿½\",\"plug ins\",\"Ġr acket\",\"Ġchamp agne\",\"vers ible\",\"V ote\",\"Ġmod ifiers\",\"May or\",\"6 80\",\"Ġassemb lies\",\"ĠS ultan\",\"ĠN ing\",\"ĠLad ies\",\"Ġsulf ur\",\"Ġor bs\",\"Ġ---- -\",\"____ ___\",\"ĠJournal ism\",\"Ġes ports\",\"Ġl ush\",\"Ġh ue\",\"Ġspect ral\",\"H onest\",\"ãĥ ı\",\"Ġbus hes\",\"Ġrein forcement\",\"Ġre opened\",\"ĠWhe els\",\"ĠM org\",\"rie ving\",\"Ġaux iliary\",\"Ġj Query\",\"ĠB AT\",\"tes que\",\"Ġver tex\",\"p ure\",\"f rey\",\"ãĤ º\",\"d os\",\"Ġty ph\",\"Ġc ull\",\"Ġe q\",\"Ġdec on\",\"Ġtoss ing\",\"Ġdispar ate\",\"ĠBr igham\",\"print f\",\"led ged\",\"Ġsu nd\",\"Ġco zy\",\"Ġhepat itis\",\"per forming\",\"Ġav al\",\"ĠG G\",\"f uture\",\"Ġpet ertodd\",\"ĠKos ovo\",\"Ġmagn ets\",\"Al ready\",\"ĠEd ison\",\"ĠCe res\",\"ĠRA ID\",\"Ġbrill iance\",\"57 6\",\"Ġder ives\",\"Ġhypert ension\",\"ĠÎ Ķ\",\"Ġlamb da\",\"Ġfl air\",\"Ġmission aries\",\"Ġrap es\",\"ĠSt arter\",\"ĠMon ths\",\"Ġdef y\",\"Ġseism ic\",\"ĠR aphael\",\"Ġeuro zone\",\"65 6\",\"z sche\",\"Ġscr atched\",\"Ġb ows\",\"ĠLenn on\",\"ĠGa ia\",\"Ġdri pping\",\"f acts\",\"A le\",\"Ġfrog s\",\"ĠBre ast\",\"ogene ity\",\"ĠProsecut or\",\"Ġampl ified\",\"ĠHod g\",\"ĠF n\",\"Th ousands\",\"ĠNI H\",\"ĠMonitor ing\",\"FT WARE\",\"ĠPri ebus\",\"ĠG rowing\",\"hun ter\",\"Ġdiagn ose\",\"ĠM ald\",\"ĠL R\",\"Ġcrown ed\",\"Ġburst ing\",\"Ġdiss olution\",\"j avascript\",\"Ġuseful ness\",\"ĠExec ution\",\": (\",\"ĠIv ory\",\"a ah\",\"Ġpersecut ed\",\"viol ence\",\"ist as\",\"ĠCr ate\",\"Ġimpuls es\",\"ĠSp ani\",\"ed es\",\"Hand le\",\"ĠZ erg\",\"think able\",\"Last ly\",\"Ġspont aneously\",\"Ġinconven ient\",\"Ġdismiss ing\",\"Ġpl otted\",\"Ġeight y\",\"Ġ7 37\",\"r ish\",\"ĠThor nton\",\"ath am\",\"Ġsit com\",\"V en\",\"Rec ipe\",\"t el\",\"l und\",\"Ġcle ars\",\"ĠSas uke\",\"Ġ25 8\",\"Ġopt ing\",\"Ġen raged\",\"est hetic\",\"ĠA e\",\"uch s\",\"Pre p\",\"Fl ow\",\"Ġrun off\",\"ĠE ating\",\"ĠG iles\",\"ĠAct ing\",\"res ources\",\"ib aba\",\"Ġr pm\",\"Ġske wed\",\"ĠBl anc\",\"ĠS akuya\",\"Ġhot ter\",\"Ġ19 24\",\"op ian\",\"ck o\",\"Ġcr umbling\",\"Ġcapt ains\",\"ĠAppropri ations\",\"le aders\",\"dro pping\",\"an uts\",\"Ġrevers ing\",\"ĠP ose\",\"ĠS ek\",\"Sc ot\",\"ĠIde a\",\"c ise\",\"ĠSloven ia\",\"Ġ3 17\",\"Do ctor\",\"Ġcro cod\",\"ald i\",\"Se a\",\"ĠFar rell\",\"Ġmerc enaries\",\"ĠR NC\",\"ĠGu ess\",\"Ġp acing\",\"M achine\",\"Streamer Bot\",\"ĠChar ity\",\"Ġ29 8\",\"Ġcann ons\",\"ĠTob y\",\"TPP StreamerBot\",\"ĠPass ion\",\"cf g\",\"Th om\",\"Ġbad ges\",\"ĠBern stein\",\". âĢĵ\",\"ĠP OP\",\"ĠCon j\",\"Ġinitial ization\",\"Ġbiod iversity\",\"D ub\",\"Ġfeud al\",\"Ġdisclaim er\",\"Ġc row\",\"Ġign ition\",\"ar f\",\"S HA\",\"Ġk Hz\",\"h azard\",\"ĠArt ists\",\"oe uv\",\"67 9\",\"ĠRud y\",\"N ine\",\"ĠRam adan\",\"å ½\",\"itt o\",\"Ġadren aline\",\"C ert\",\"Ġsmell ed\",\"Ġimp unity\",\"Ġag endas\",\"ĠRe born\",\"ĠCon cent\",\"ĠSe ems\",\"Ġo mega\",\"ĠDust in\",\"Ġback er\",\"ĠSau ce\",\"ĠBoy le\",\"W IN\",\"Ġsp ins\",\"Ġpa uses\",\"u pt\",\"Ġshred ded\",\"Ġstra pped\",\"ĠCor ruption\",\"Ġscr atches\",\"Ġn i\",\"Ġatt ire\",\"ĠS AF\",\"Factory Reloaded\",\"ĠI PS\",\"Ġ( %\",\"Ġsem inar\",\"f ocus\",\"c ivil\",\"Ġ18 60\",\"int osh\",\"Ġcontin ual\",\"Ġabbre vi\",\"ĠS ok\",\"oc obo\",\"X M\",\"Ġfr antic\",\"Ġunavoid able\",\"Ġar tery\",\"Ġannot ations\",\"b ath\",\"Cl imate\",\"Ġd ors\",\"ĠSl ide\",\"co ord\",\"ĠRel oad\",\"ĠL DL\",\"ĠLove craft\",\"Ġunim agin\",\"Ġresemb led\",\"Ġbarr acks\",\"n p\",\"Ġsurrog ate\",\"Ġcategor ized\",\"ãĤ ©\",\"Ġvacc inated\",\"Ġdrain age\",\"Ġind ist\",\"ĠWhats App\",\"Ġ18 70\",\"oler ance\",\"inv oke\",\"am orph\",\"Ġrecon nect\",\"Ġem anc\",\"Ġblind ness\",\"Ġ12 80\",\"intern et\",\"c ollar\",\"Ġalt ru\",\"Ġab yss\",\"ĠT RI\",\"65 7\",\"Ġinf used\",\"HE AD\",\"Ġforest ry\",\"ĠWood y\",\"ĠC i\",\"w i\",\"s am\",\"78 4\",\"hol iday\",\"Ġmog ul\",\"ĠF ees\",\"ĠD EN\",\"In ternal\",\"ur bed\",\"f usc\",\"at om\",\"ĠIll usion\",\"Ġpoll ed\",\"Ġfl ap\",\"Ġco ax\",\"L GBT\",\"An aly\",\"ĠSect ions\",\"ĠCalif orn\",\"em n\",\"Ġh ither\",\"ĠN IGHT\",\"Ġn ailed\",\"ĠPip eline\",\"39 1\",\"o of\",\"ĠPr imal\",\"vere nd\",\"Ġsl ashing\",\"Ġret ri\",\"avi our\",\"Ġdepart ing\",\"g il\",\"IS C\",\"Ġmid way\",\"Ġultras ound\",\"Ġbeh aving\",\"ĠT ara\",\"class es\",\"V irtual\",\"ĠColon ial\",\"Ġstri pping\",\"Ġorchestr ated\",\"ĠGra ves\",\"45 2\",\"ĠIron ically\",\"ĠWrit ers\",\"Ġl ends\",\"ĠMan z\",\"Ġra ven\",\"Ġoxid ative\",\"Ġ26 6\",\"EL F\",\"act ually\",\"asc ar\",\"D raft\",\"Ġfavour able\",\"Ġhumili ating\",\"Ġf idelity\",\"ĠH of\",\"ĠX uan\",\"49 6\",\"Ġlay ered\",\"at is\",\"79 0\",\"Ġpay check\",\"it on\",\"K ar\",\"ĠVM ware\",\"ĠFar mer\",\"Ġserv ic\",\"gl omer\",\"Ġsl ump\",\"ĠFab ric\",\"ĠD OC\",\"est ing\",\"Ġreass ure\",\"Ġph yl\",\"v olt\",\"it ory\",\"R ules\",\"Ġoxid ation\",\"Ġpri zed\",\"Ġmist ress\",\"ĠDj ango\",\"WAR N\",\"å ĳ\",\"Ġenc ode\",\"ĠFeed back\",\"Ġstupid ity\",\"I an\",\"ĠYugoslav ia\",\"× ¨\",\"ac l\",\"UT E\",\"19 77\",\"Ġqual ifies\",\"Ġpuls es\",\"pret ty\",\"Ġfro ze\",\"Ġs s\",\"Iter ator\",\"Ġur gently\",\"Ġm ailed\",\"ĠCh am\",\"Ġsust aining\",\"Ġbas il\",\"Ġpupp ies\",\"il ant\",\"ĠP LEASE\",\"l ap\",\"ace ous\",\"F ear\",\"ĠMaster y\",\"aut omatic\",\"ĠT AG\",\"Ġant im\",\"ag les\",\"47 3\",\"fram es\",\"Ġwh ispers\",\"ĠWho ever\",\"Ġbra very\",\"ĠUK IP\",\"ract ions\",\"\\\"\\\" \\\"\",\"Ġt ame\",\"Ġpart ed\",\"every thing\",\"CON T\",\"Ġind ebted\",\"Ġadd r\",\"re k\",\"IR ED\",\"Ġem inent\",\"cl inton\",\"Ġo usted\",\"Ġreview er\",\"Ġmelt down\",\"Ġre arr\",\"ĠY ao\",\"the real\",\"aby te\",\"Ġst umbling\",\"Ġbat ches\",\"Ġ25 9\",\"Ġcontrace ptive\",\"Ġprost itute\",\"ens is\",\"De cl\",\"ĠSt rikes\",\"M ilitary\",\"ĠO ath\",\"v acc\",\"pp ings\",\"05 2\",\"Ġpart Name\",\"amp ing\",\"Rep orts\",\"K I\",\"CH R\",\"Ġsubt ly\",\"sw ers\",\"Bl ake\",\"us ual\",\"Ġcontest ants\",\"Ġcart ridges\",\"ĠGRE AT\",\"Ġbl ush\",\"ĠâĢ º\",\"47 2\",\"Ġreason ed\",\"ãĥ ¤\",\"paralle led\",\"Ġd yn\",\"ag ate\",\"Ġnight ly\",\"å Ĩ\",\"55 6\",\"Ġsem antic\",\"ĠAdv oc\",\"Ġ !!\",\"Ġdisag rees\",\"ĠB W\",\"V eh\",\"Ġharm ing\",\"Ġembr aces\",\"Ġstri ves\",\"Ġin land\",\"ĠK ard\",\"Ġhe ats\",\"ĠGin ny\",\"ut an\",\"ern aut\",\"yl ene\",\"ĠE lev\",\"J D\",\"Ġh ars\",\"ĠStar r\",\"Ġsk ysc\",\"Ġcollabor ators\",\"Us ually\",\"Ġrev olutions\",\"ĠSTAT S\",\"Ġdism antle\",\"Ġconfident ly\",\"Ġkin etic\",\"Al i\",\"Ġpercent ile\",\"Ġextract ing\",\"ill ian\",\"est ead\",\"Ġphysic ists\",\"ĠMarsh al\",\"Ġfell owship\",\"Ġd ashed\",\"ĠU R\",\"ĠSi oux\",\"ĠComp act\",\"am ide\",\"P ython\",\"ĠLe igh\",\"ĠPharm ac\",\"ist rates\",\"her ical\",\"Ġf ue\",\"ĠE min\",\"Ġ( {\",\"ĠNeighbor hood\",\"Ġdisrupt ing\",\"ĠD up\",\"Ġg land\",\"ĠSe v\",\"ĠMar ian\",\"arg on\",\"ĠD und\",\"Ġ< !--\",\"Ġstr and\",\"Ġstadium s\",\"z os\",\"Ġpsych osis\",\"ĠR ack\",\"Ġbrilliant ly\",\"ï¸ ı\",\"Ġsubmer ged\",\"ĠInst it\",\"ĠCh ow\",\"Ġc ages\",\"ĠH ats\",\"ĠU rs\",\"Ġdil uted\",\"us at\",\"ien ne\",\"ĠMembers hip\",\"ĠBur k\",\"Ġ ie\",\"Ġarche type\",\"D rug\",\"ult on\",\"ĠSp ock\",\"ĠMcK ay\",\"ĠDep end\",\"F eatured\",\"S oc\",\"19 78\",\"ĠB ere\",\"Ġrelent lessly\",\"Ġcripp ling\",\"Ġar thritis\",\"çĶ Ł\",\"ĠTrop ical\",\"ĠBul g\",\"ĠCher yl\",\"Ġadm irable\",\"Ġsub title\",\"Over ride\",\"Ġorig inating\",\"ĠC CP\",\"Ġsw ore\",\"ĠSo le\",\"ĠDis orders\",\"3 29\",\"Ġprocess ion\",\"Ġref urb\",\"Ġimm ersed\",\"requ ently\",\"Ġskept ics\",\"Ġcer amic\",\"m itter\",\"en stein\",\"b elt\",\"ĠT IT\",\"b idden\",\"Ġf ir\",\"m ist\",\"> ]\",\"Ġwe ave\",\"ĠParad ox\",\"Ġentr usted\",\"ĠBarcl ays\",\"Ġnovel ist\",\"og ie\",\"80 6\",\"Ġnin ety\",\"Ġdisag reements\",\"@@@@ @@@@\",\"ĠAus chwitz\",\"c ars\",\"ĠL ET\",\"t ub\",\"arant ine\",\"P OS\",\"Ġback story\",\"Ġcheer ful\",\"ĠR ag\",\"ek a\",\"bi ased\",\"Ġinexper ienced\",\"ak ra\",\"ĠW itt\",\"t an\",\"Ġrap ist\",\"Ġplate au\",\"ch al\",\"ĠInqu is\",\"exp ression\",\"Ġc ipher\",\"Ġsh aving\",\"add en\",\"re ly\",\"( \\\\\",\"ism a\",\"ĠReg ulatory\",\"CH AR\",\"ily n\",\"N VIDIA\",\"G U\",\"Ġmur m\",\"la us\",\"Christ opher\",\"Ġcontract ual\",\"ĠPro xy\",\"ĠJa ime\",\"ĠMethod ist\",\"Ġstew ards\",\"st a\",\"per ia\",\"Ġphys iology\",\"Ġbump ed\",\"Ġf ructose\",\"Austral ian\",\"ĠMet allic\",\"ĠMas querade\",\"ar b\",\"Ġprom ul\",\"Ġdown fall\",\"Ġbut cher\",\"Ġb our\",\"ĠIN FORMATION\",\"ĠB is\",\"pect s\",\"ad ena\",\"Ġcontempl ating\",\"ar oo\",\"cent ered\",\"ĠPe aks\",\"Us ed\",\"Ġmod em\",\"Ġg enders\",\"Ġ8 000\",\"37 1\",\"Ġm aternity\",\"ĠR az\",\"Ġrock ing\",\"Ġhandgun s\",\"ĠD ACA\",\"Aut om\",\"ĠN ile\",\"Ġtum ult\",\"ĠBenef it\",\"ĠAppro ach\",\"works hop\",\"ĠLe aving\",\"G er\",\"inst ead\",\"Ġvibr ations\",\"Ġrep ositories\",\"49 7\",\"ĠA unt\",\"ĠJ ub\",\"ĠExp edition\",\"Al pha\",\"Ġs ans\",\"Ġoverd ue\",\"Ġoverc rowd\",\"Ġlegisl atures\",\"Ġp aternal\",\"ĠLeon ardo\",\"Ġexp ressive\",\"Ġdistract ions\",\"Ġsil enced\",\"tr ust\",\"Ġb iking\",\"Ġ5 60\",\"Ġpropri et\",\"Ġimp osition\",\"Ġcon glomer\",\"Ġ= ================================================================\",\"ĠTe aching\",\"ĠY ose\",\"int ensive\",\"T own\",\"Ġtroll ing\",\"ĠGr ac\",\"ĠAS US\",\"Y o\",\"Ġspecial s\",\"ĠNep h\",\"ĠGod zilla\",\"Dat abase\",\"ĠHe gel\",\"Ġ27 2\",\"19 76\",\"ĠGl oria\",\"Ġdis emb\",\"ĠInvestig ations\",\"ĠB ane\",\"ag ements\",\"St range\",\"Ġtre asury\",\"ĠPl ays\",\"Ġundes irable\",\"Ġwid ening\",\"Ġverb ally\",\"Ġinf ancy\",\"Ġcut ter\",\"f ml\",\"Ġ21 00\",\"prot otype\",\"f ine\",\"Ġdec riminal\",\"Ġdysfunction al\",\"Ġbes ie\",\"ĠErn st\",\"z eb\",\"Ġnort heastern\",\"Ġa ust\",\"por ate\",\"ĠMar lins\",\"Ġsegreg ated\",\"ew orld\",\"ĠMa her\",\"Ġtra verse\",\"Ġmon astery\",\"ur gy\",\"G ear\",\"s and\",\"Com pl\",\"ĠE MP\",\"Ġpl ent\",\"ĠMer cer\",\"Ġ27 6\",\"TA BLE\",\"Config uration\",\"H undreds\",\"Ġpr ic\",\"Ġcollabor ating\",\"ĠPar amount\",\"ĠCumm ings\",\"Ġ( <\",\"Ġrecord er\",\"Ġfl ats\",\"Ġ4 16\",\"wh ose\",\"Font Size\",\"ĠOr bit\",\"Y R\",\"Ġwr ists\",\"Ġb akery\",\") }\",\"ĠB ounty\",\"ĠLanc aster\",\"Ġend ings\",\"acc ording\",\"ĠSal am\",\"e asy\",\"75 5\",\"ĠBur r\",\"ĠBarn ett\",\"onom ous\",\"Un ion\",\"Ġpreced ence\",\"ĠScholars hip\",\"ĠU X\",\"Ġroll out\",\"Ġbo on\",\"al m\",\"ĠCan ter\",\"æ µ\",\"Ġround ing\",\"Ġcl ad\",\"Ġv ap\",\"ĠF eatured\",\"is ations\",\"Ġ5 40\",\"pol ice\",\"Ġunsett ling\",\"Ġdr ifting\",\"ĠLum ia\",\"ĠObama Care\",\"ĠF avor\",\"Hy per\",\"ĠRoth schild\",\"ĠMil iband\",\"an aly\",\"ĠJul iet\",\"H u\",\"Ġrec alling\",\"a head\",\"69 6\",\"Ġunf avorable\",\"Ġd ances\",\"O x\",\"Ġleg ality\",\"Ġ40 3\",\"rom ancer\",\"Ġinqu ire\",\"ĠM oves\",\"\\\\ \\\">\",\"ĠVari ant\",\"ĠMess iah\",\"ĠL CS\",\"ĠBah Ã¡\",\"75 6\",\"Ġeyeb row\",\"ĠÂ ¥\",\"ĠMc F\",\"ĠFort y\",\"M as\",\"Ġpan icked\",\"Ġtransform ations\",\"q q\",\"Ġrev olves\",\"ring e\",\"ĠA i\",\"ax e\",\"Ġon ward\",\"ĠC FR\",\"ĠB are\",\"log in\",\"Ġliqu ids\",\"Ġde comp\",\"second ary\",\"il an\",\"ĠCon vert\",\"ami ya\",\"Ġprosecut ing\",\"Ġâī ¡\",\"ĠYork ers\",\"ĠByr ne\",\"sl ow\",\"aw ei\",\"J ean\",\"Ġ26 9\",\"ĠSky dragon\",\"Ġ Ã©\",\"ĠNicarag ua\",\"ĠHuck abee\",\"ĠHigh ly\",\"Ġamph ib\",\"ĠPast or\",\"ĠL ets\",\"Ġbl urred\",\"Ġvisc eral\",\"ĠC BO\",\"Ġcollabor ated\",\"z ig\",\"Leg al\",\"Ġapart heid\",\"Ġbr id\",\"Ġpres et\",\"ĠD ET\",\"ĠAM A\",\"× Ķ\",\"arch ing\",\"auc uses\",\"build er\",\"Ġpo etic\",\"Ġem ulator\",\"ĠMole cular\",\"Ġhon oring\",\"ise um\",\"Ġtract or\",\"ĠCl uster\",\"ĠCal m\",\"ared evil\",\"Ġsidew alks\",\"Ġviol in\",\"Ġgeneral ized\",\"ĠAle c\",\"Ġemb argo\",\"Ġfast ball\",\"ĠHT TPS\",\"ĠL ack\",\"ĠCh ill\",\"ri ver\",\"C hel\",\"ĠSw arm\",\"ĠLev ine\",\"ro ying\",\"L aunch\",\"Ġkick er\",\"Ġadd itive\",\"ĠDe als\",\"W idget\",\"cont aining\",\"Ġescal ate\",\"ĠOP EN\",\"Ġtwe aked\",\"Ġst ash\",\"Ġsp arks\",\"ĠEs sex\",\"ĠE cc\",\"Ġconv ict\",\"Ġblog ging\",\"I ER\",\"ĠH L\",\"Ġmurd erers\",\"75 9\",\"ĠH ib\",\"Ġde pl\",\"ĠJ ord\",\"S ac\",\"Ġdis sect\",\"ĠHow e\",\"os her\",\"Ġcustom izable\",\"ĠFran z\",\"Ġat ro\",\"Ä ĩ\",\"Ġ000 4\",\"Ġout post\",\"R oss\",\"Ġglyph osate\",\"ĠHast ings\",\"ĠBE FORE\",\"Ġsh ove\",\"o pped\",\"ĠSc ala\",\"Ġam ulet\",\"an ian\",\"Ġexacerb ated\",\"Ġe ater\",\"47 1\",\"UM E\",\"Ġpul p\",\"izont al\",\"ĠZ am\",\"ĠAT I\",\"imm une\",\"aby tes\",\"Ġunnecess arily\",\"ĠC AT\",\"ĠAx is\",\"Ġvisual ize\",\"Ã ī\",\"ĠRad ical\",\"f m\",\"Doc uments\",\"ĠFor rest\",\"Ġcontext ual\",\"ĠSy mbol\",\"Ġtent ative\",\"ĠDO ES\",\"ĠGood s\",\"Ġintermitt ent\",\"} :\",\"medi ated\",\"Ġridic ule\",\"Ġathe ism\",\"Ġpath ogens\",\"ĠM um\",\"Ġre introdu\",\"Ġ30 7\",\"i HUD\",\"Ġflash light\",\"Ġsw earing\",\"Ġp engu\",\"B u\",\"Ġrot ated\",\"ĠCr ane\",\"Ġ() );\",\"Ġfashion able\",\"Ġendors ing\",\"46 3\",\") [\",\"Ġingest ion\",\"Ġcook s\",\"Ġ9 50\",\"ot omy\",\"ĠIm am\",\"Ġk a\",\"Ġte aser\",\"ĠGhost s\",\"ĠãĤ µ\",\"19 69\",\"Ï ĥ\",\"ub by\",\"Ġconver ter\",\"zan ne\",\"end e\",\"ĠPre par\",\"ĠNic kel\",\"ĠChim era\",\"h im\",\"ĠTyr ann\",\"ĠSabb ath\",\"ĠNich ols\",\"Ġra pt\",\"ih ar\",\"Ġshe lling\",\"Ġillum inate\",\"Ġdent ist\",\"ut or\",\"ĠInteg ration\",\"Ġwh ims\",\"ĠLiter ary\",\"Be aut\",\"Ġp archment\",\"ag ara\",\"Br and\",\"Ġder og\",\"âĢ¦ )\",\"ĠNor se\",\"Ġunw itting\",\"Ġc uc\",\"Ġborder line\",\"Ġupset ting\",\"Ġrec ourse\",\"Ġd raped\",\"ĠRad ar\",\"Ġcold er\",\"ĠPep si\",\"im inary\",\"], [\",\"65 8\",\"V i\",\"ĠF rem\",\"ĠP es\",\"Ġveter inary\",\"ĠT ED\",\"ĠEp idem\",\"n ova\",\"k id\",\"Ġdev out\",\"o ct\",\"j ad\",\"M oh\",\"ĠP AY\",\"Ġge ometric\",\"Ġ3 23\",\"Ġcircum ference\",\"ich ick\",\"19 75\",\"ĠY uri\",\"ĠSh all\",\"ĠH over\",\"un in\",\"S pr\",\"Ġg raft\",\"ĠHapp iness\",\"Ġdisadvant ages\",\"att acks\",\"Ġhub s\",\"ĠStar Craft\",\"é ĸ\",\"Ġgall eries\",\"ĠKor ra\",\"Ġgrocer ies\",\"ĠGors uch\",\"Ġrap ists\",\"Ġfun gi\",\"ĠTyph oon\",\"V ector\",\"ĠEm press\",\"b attle\",\"4 68\",\"Ġparas ite\",\"ĠBom ber\",\"S G\",\"ex ist\",\"ĠP f\",\"Ġun se\",\"Ġsurge ons\",\"B irth\",\"ĠUn sure\",\"ĠPrint ed\",\"ĠBehavior al\",\"ĠA ster\",\"Pak istan\",\"Ġun ethical\",\"Ġs v\",\"ĠIo T\",\"Ġlay outs\",\"P ain\",\"Ġconst ants\",\"ĠL W\",\"ĠB ake\",\"Ġtow els\",\"Ġdeterior ation\",\"ĠBol ivia\",\"Ġblind ed\",\"ĠW arden\",\"ĠMist ress\",\"Ġon stage\",\"Ġcl ans\",\"ĠB EST\",\"19 60\",\"Ġant ique\",\"Ġrhet orical\",\"ĠPer cy\",\"ĠRw anda\",\", .\",\"B ruce\",\"Ġtra umat\",\"ĠParliament ary\",\"Ġfoot note\",\"id ia\",\"ĠLear ned\",\"se eking\",\"gen ic\",\"Ġdim ensional\",\"H ide\",\"èĢ ħ\",\"Ġintrig ue\",\"in se\",\"Ġle ases\",\"Ġapp rentices\",\"w ashing\",\"Ġ19 26\",\"V ILLE\",\"Ġsw oop\",\"s cl\",\"Ġbed rooms\",\"on ics\",\"ĠCr unch\",\"comp atible\",\"Ġincap ac\",\"ĠYemen i\",\"ash tra\",\"z hou\",\"d anger\",\"Ġmanifest ations\",\"ĠDem ons\",\"AA F\",\"Secret ary\",\"ACT ED\",\"L OD\",\"Ġam y\",\"ra per\",\"eth nic\",\"4 17\",\"Ġpos itives\",\"Ġ27 3\",\"ĠRefuge es\",\"Ġus b\",\"ĠV ald\",\"odd y\",\"ĠMahm oud\",\"As ia\",\"Ġskull s\",\"ĠEx odus\",\"ĠComp et\",\"ĠL IC\",\"ĠM ansion\",\"ĠA me\",\"Ġconsolid ate\",\"storm s\",\"ont ent\",\"99 6\",\"Ġcl en\",\"Ġm ummy\",\"fl at\",\"75 8\",\"ĠV OL\",\"oter ic\",\"n en\",\"ĠMin ute\",\"S ov\",\"Ġfin er\",\"R h\",\"ly cer\",\"Ġreinforce ments\",\"ĠJohann es\",\"ĠGall agher\",\"Ġgym n\",\"S uddenly\",\"Ġext ortion\",\"k r\",\"i ator\",\"T a\",\"Ġhippocamp us\",\"N PR\",\"ĠComput ing\",\"Ġsquare ly\",\"Ġmod elling\",\"ĠFor ums\",\"ĠL isp\",\"ĠKrish na\",\"Ġ3 24\",\"Ġr ushes\",\"Ġens ued\",\"Ġcre eping\",\"on te\",\"n ai\",\"il ater\",\"ĠHorn ets\",\"Ġob livious\",\"IN ST\",\"55 9\",\"Ġjeopard y\",\"Ġdistingu ishing\",\"j ured\",\"Ġbeg s\",\"sim ilar\",\"ph ot\",\"5 30\",\"ĠPark way\",\"Ġs inks\",\"ĠHearth stone\",\"ib ur\",\"ĠBat on\",\"Av oid\",\"Ġd ancer\",\"Ġmag istrate\",\"ary n\",\"Ġdisturb ances\",\"ĠRom ero\",\"Ġpar aph\",\"Ġmis chief\",\"âĸ ĵ\",\"ĠSh aria\",\"Ġur inary\",\"r oute\",\"iv as\",\"f itted\",\"Ġeject ed\",\"ĠAl buquerque\",\"Ġ4 70\",\"Ġirrit ated\",\"ĠZ ip\",\"ĠB iol\",\"Ã į\",\"Ġden ounce\",\"Ġbin aries\",\"ĠVer se\",\"Ġopp os\",\"ĠKend rick\",\"ĠG PL\",\"Ġsp ew\",\"ĠEl ijah\",\"ĠE as\",\"Ġdr ifted\",\"so far\",\"Ġannoy ance\",\"ĠB ET\",\"47 4\",\"ĠSt rongh\",\"it ates\",\"ĠCogn itive\",\"oph one\",\"ĠIdent ification\",\"ocr ine\",\"connect ion\",\"Ġbox er\",\"ĠAS D\",\"ĠAre as\",\"Y ang\",\"t ch\",\"ull ah\",\"Ġdece ive\",\"Comb at\",\"ep isode\",\"cre te\",\"W itness\",\"Ġcondol ences\",\"ht ar\",\"Ġhe als\",\"Ġbuck ets\",\"ĠLA W\",\"B lu\",\"Ġsl ab\",\"ĠOR DER\",\"oc l\",\"att on\",\"ĠSteven son\",\"ĠG inger\",\"ĠFriend ly\",\"ĠVander bilt\",\"sp irit\",\"ig l\",\"ĠReg arding\",\"ĠPR OG\",\"Ġse aling\",\"start ing\",\"Ġcard inal\",\"ĠV ec\",\"ĠBe ir\",\"Ġmillisec onds\",\"we ak\",\"per se\",\"Ġster ile\",\"ĠCont emporary\",\"ĠPh ant\",\"ĠCl o\",\"Ġout p\",\"Ġex iled\",\"Ġ27 7\",\"Ġself ie\",\"Ġman ic\",\"Ġn ano\",\"ter ms\",\"Alex ander\",\"Ġres olves\",\"Ġmillenn ia\",\"Ġexpl odes\",\"Ġconst ellation\",\"Ġadul tery\",\"m otion\",\"D OC\",\"Ġbroad casters\",\"Ġkinderg arten\",\"ĠMay weather\",\"ĠE co\",\"ich o\",\"Ġ28 7\",\"l aun\",\"Ġm ute\",\"Ġdisc reet\",\"Ġpres chool\",\"Ġpre empt\",\"De lete\",\"ĠFre ed\",\"P i\",\"H K\",\"Ġblock er\",\"ĠC umber\",\"Ġw rought\",\"d ating\",\"Ġins urer\",\"Ġquot as\",\"Ġpre ached\",\"Ġev iction\",\"ĠReg ina\",\"ĠP ens\",\"Ġsevent een\",\"ĠN ass\",\"D ick\",\"Ġfold s\",\"Ġd otted\",\"ĠA ad\",\"Un iversal\",\"Ġp izz\",\"ĠG uru\",\"Ġso ils\",\"Ġno vice\",\"ĠNe ander\",\"Ġst ool\",\"Ġdeton ated\",\"ĠPik achu\",\"ĠMass ive\",\"IV ER\",\"ĠAb del\",\"Ġsubdu ed\",\"Ġtall est\",\"Ġprec arious\",\"Ġa y\",\"r ification\",\"ĠOb j\",\"c ale\",\"Ġun question\",\"cul osis\",\"ad as\",\"igr ated\",\"D ays\",\"Ġque ens\",\"ĠGaz ette\",\"ĠCol our\",\"ĠBow man\",\"ĠJ J\",\"Ã¯ ve\",\"Ġdomin ates\",\"Stud ent\",\"Ġm u\",\"Ġback log\",\"ĠElect ro\",\"Tr uth\",\"48 3\",\"Ġcond ensed\",\"r ules\",\"ĠCons piracy\",\"Ġacron ym\",\"hand led\",\"ĠMat te\",\"j ri\",\"ĠImp ossible\",\"l ude\",\"cre ation\",\"Ġwar med\",\"ĠSl ave\",\"Ġmis led\",\"Ġfer ment\",\"ĠK ah\",\"ink i\",\"ke leton\",\"cy l\",\"ĠKar in\",\"Hun ter\",\"Reg ister\",\"ĠSur rey\",\"Ġst ares\",\"ĠW idth\",\"ĠN ay\",\"ĠSk i\",\"Ġblack list\",\"uck et\",\"Ġexp ulsion\",\"im et\",\"Ġret weet\",\"vant age\",\"Fe ature\",\"Ġtro opers\",\"Ġhom ers\",\"9 69\",\"Ġconting ency\",\"ĠW TC\",\"ĠBrew er\",\"fore ign\",\"W are\",\"S olar\",\"Ġund ue\",\"RE C\",\"ulner able\",\"path ic\",\"ĠBo ise\",\"Ġ3 22\",\"Ġarous ed\",\"ĠY ing\",\"ä¸ į\",\"uel ess\",\"Ġp as\",\"Ġmor p\",\"Ġfl oral\",\"Ex press\",\"ud ging\",\"k B\",\"ĠGr anted\",\"Ø ¯\",\"ĠMich a\",\"ĠGoth ic\",\"ĠSPEC IAL\",\"ĠRic ardo\",\"F ran\",\"Ġadminister ing\",\"6 20\",\"por a\",\"ĠÂ ®\",\"Ġcomprom ises\",\"Ġb itten\",\"Ac cept\",\"Th irty\",\"Ð ²\",\"Ġmater ially\",\"ĠTer r\",\"ig matic\",\"ch ains\",\"Ġdo ve\",\"stad t\",\"Mar vel\",\"FA ULT\",\"Ġwind shield\",\"Ġ3 36\",\"ad ier\",\"Ġsw apping\",\"Ġflaw less\",\"ĠPred ator\",\"ĠMiche le\",\"Ġprop ulsion\",\"ĠPsych ic\",\"Ġassign ing\",\"Ġfabric ation\",\"Ġbar ley\",\"l ust\",\"Ġtow ering\",\"Ġalter cation\",\"ĠBent ley\",\"Sp here\",\"Ġtun a\",\"ĠClass es\",\"Fre edom\",\"un er\",\"L ady\",\"v oice\",\"Ġcool est\",\"or r\",\"Ġpal p\",\"$ {\",\"Ġhyster ia\",\"ĠMet atron\",\"p ants\",\"Ġspawn ing\",\"Exper ts\",\"ĠInvest ors\",\"ĠAn archy\",\"Ġshr unk\",\"ĠVict im\",\"Ġ28 9\",\"Ġec stasy\",\"ĠB inding\",\"58 5\",\"ĠMel ody\",\"57 8\",\"ot ally\",\"ĠE tsy\",\"lig a\",\"Ġapplaud ed\",\"Ġswe ating\",\"Ġredist ributed\",\"Ġpop corn\",\"Ġsem inal\",\"f ur\",\"ĠNeuro science\",\"R and\",\"ĠO st\",\"ĠMadd en\",\"ĠIncre asing\",\"ĠDaw kins\",\"ĠSub way\",\"Ġar sen\",\"cons erv\",\"B UR\",\"Ġsp iked\",\"ĠLy ft\",\"ĠImper ium\",\"ĠDrop box\",\"Ġfav oured\",\"Ġencomp asses\",\"gh ost\",\"Ġins pires\",\"Ġbur geoning\",\"ĠY oshi\",\"ĠVert ical\",\"ĠAud itor\",\"Ġint ending\",\"Ġfilib uster\",\"Bl oom\",\"f ac\",\"ĠCav s\",\"ign ing\",\"Ġcowork ers\",\"ĠBarb arian\",\"rem ember\",\"FL AG\",\"Ġaudit ory\",\"ason ry\",\"Col lege\",\"Ġmut ed\",\"gem ony\",\"ob in\",\"ĠPsych o\",\"9 68\",\"Ġlav ish\",\"Ġhierarch ical\",\"ĠDr one\",\"ou k\",\"Ġcripp led\",\"ĠMax im\",\"Sl ot\",\"Ġqu iz\",\"ĠV id\",\"if ling\",\"Ġarchae ologists\",\"Ġabandon ment\",\"d ial\",\"le on\",\"ĠF as\",\"T ed\",\"Ġr aspberry\",\"Ġmaneu vers\",\"Ġbehavi ours\",\"Ġins ure\",\"Ġrem od\",\"Sw itch\",\"h oe\",\"Ġsp aced\",\"Ġafford ability\",\"ĠF ern\",\"not ation\",\"ĠBal anced\",\"Ġoccup ies\",\"en vironment\",\"Ġneck lace\",\"Ġsed an\",\"F U\",\"ĠBrav o\",\"Ġab users\",\"ĠAn ita\",\"met adata\",\"ĠG ithub\",\"ait o\",\"ĠF aster\",\"ĠWass erman\",\"ĠF lesh\",\"Ġth orn\",\"r arily\",\"ĠMer ry\",\"w ine\",\"Ġpopul ace\",\"ĠL ann\",\"Ġrepair ing\",\"Ġpsy che\",\"Ġmod ulation\",\"aw aru\",\"âĢĭ âĢĭ\",\"ari j\",\"Ġdecor ations\",\"Ġapolog ise\",\"ĠG arg\",\"app ly\",\"Ġgive away\",\"ĠFl an\",\"ĠWy att\",\"U ber\",\"Ġauthor ised\",\"ĠMor al\",\"HAHA HAHA\",\"activ ate\",\"Ġtorped o\",\"ĠF AR\",\"Ġam assed\",\"ĠA ram\",\"ark in\",\"ĠVict ims\",\"st ab\",\"Ġo m\",\"ĠE CO\",\"Ġopio ids\",\"Ġpurpose ly\",\"ĠV est\",\"Ġer g\",\"at an\",\"ĠSur gery\",\"Ġcorrect ing\",\"ĠOrt iz\",\"ĠBe et\",\"Ġrev oke\",\"Ġfre eway\",\"ĠH iggins\",\"F ail\",\"ĠFar ms\",\"ĠAT P\",\"h ound\",\"Ġp oking\",\"ĠCommun ists\",\"mon ster\",\"iment ary\",\"Ġunlock ing\",\"Ġunf it\",\"we ed\",\"en ario\",\"at ical\",\"ĠEnlight enment\",\"ĠN G\",\"ĠComp ensation\",\"de en\",\"ĠWid ow\",\"ĠCind y\",\"ĠAfter wards\",\"Ġ6 000\",\"ikh ail\",\"ag ically\",\"Ġrat ified\",\"Ġcasual ty\",\"H OME\",\"p sey\",\"f ee\",\"Ġspark ling\",\"Ġd Ã©\",\"Ġconcert ed\",\"C atal\",\"Ġcomp lying\",\"ĠA res\",\"ĠD ent\",\"Sh ut\",\"Ġsk im\",\"ad minist\",\"Ġhost ilities\",\"ĠG ins\",\"Ġ6 08\",\"Ġm uddy\",\"ĠMc Int\",\"ĠDec ay\",\"5 25\",\"Ġconspic uous\",\"ĠEx posure\",\"Ġresc ind\",\"Ġwear able\",\"Ġ3 28\",\"our met\",\"ah s\",\"ĠRob ots\",\"Ġe clips\",\"inst ance\",\"ĠRE PORT\",\"ĠApp l\",\"0 30\",\"ĠSk ies\",\"01 00\",\"Ġfall acy\",\"S ocket\",\"ĠRece iver\",\"Ġsol ves\",\"ĠButter fly\",\"ĠSho pping\",\"ĠFI RE\",\"65 4\",\"Med ic\",\"Ġsing ers\",\"ĠNeed less\",\"'' ''\",\"isher s\",\"ĠD ive\",\"58 8\",\"Ġselect ively\",\"Ġcl umsy\",\"88 9\",\"Ġpurch aser\",\"ear ned\",\"ard y\",\"Ġbenef iting\",\"eng lish\",\"Ġyield ing\",\"ĠP our\",\"Ġspin ach\",\"Ġdel ve\",\"ĠC rom\",\"6 10\",\"Ġexport ing\",\"ĠMA KE\",\"Ġ26 3\",\"Ġg rop\",\"Ġenv oy\",\"ĠInqu iry\",\"ĠLu igi\",\"d ry\",\"ĠT uring\",\"Thumbnail Image\",\"ĠVar iety\",\"Ġfac et\",\"Ġfl uffy\",\"Ġexcerpt s\",\"Ġsh orth\",\"ĠOl sen\",\"CL UD\",\"Ġrel iant\",\"ĠUN C\",\"T our\",\"Ġbat hing\",\"Comp any\",\"Ġglobal ization\",\"P red\",\"ĠMalf oy\",\"Ġh oc\",\"j am\",\"craft ed\",\"ĠBond s\",\"ĠKiss inger\",\"Eng land\",\"Ġorder ly\",\"cat entry\",\"Ġ26 1\",\"Ġexch anging\",\"ĠInt ent\",\"ĠAmend ments\",\"D OM\",\"Ġst out\",\"ÂłÂłÂłÂłÂłÂłÂłÂł ÂłÂłÂłÂłÂłÂłÂłÂł\",\"ĠAir bus\",\"Ġ27 8\",\"hy de\",\"P oll\",\"Item ThumbnailImage\",\"Ġlooph oles\",\"ĠPill ar\",\"Ġexpl or\",\"St retch\",\"A part\",\"Ġun married\",\"Lim it\",\"ĠTransform ers\",\"Ġintellect ually\",\"unct ure\",\"18 00\",\"Ġd arn\",\"B razil\",\"Ġleft over\",\"ber us\",\"f red\",\"Mine craft\",\"3 26\",\"ĠForm s\",\"Ġproof s\",\"ĠDes igned\",\"Ġindex es\",\"ĠSupp ose\",\"EM S\",\"ĠL oving\",\"ĠBon nie\",\"im ating\",\"OT US\",\"Ġconduct or\",\"Ġbehav ed\",\"ĠF ren\",\"Ġsy nerg\",\"Ġmillenn ium\",\"Ġcater ing\",\"ĠL auder\",\"W r\",\"ĠY iannopoulos\",\"ĠAT F\",\"Ġensl aved\",\"Ġawaken ed\",\"D VD\",\"ĠED ITION\",\"ĠConc ert\",\"ĠChall enger\",\"ĠH aku\",\"umer ic\",\"Ġdep recated\",\"ĠSH AR\",\"4 12\",\"Ġdy stop\",\"Ġtremb ling\",\"Ġdread ed\",\"ĠSp ac\",\"p adding\",\"Re pl\",\"ĠG arrison\",\"M ini\",\"Ġun paralleled\",\"am ar\",\"URR ENT\",\"w reck\",\"c ertain\",\"t al\",\"ĠC LS\",\"app ings\",\"Ġsens ed\",\"Ġf encing\",\"ĠPas o\",\"ĠDes k\",\"Ġsc off\",\"Ġcontem plate\",\"ĠL iga\",\"l iquid\",\"75 7\",\"Ġapp rentice\",\"ĠUCH IJ\",\"5 70\",\"ĠTh ousand\",\"ĠIll um\",\"Ġchampion ed\",\"ãĤ Į\",\"Ġelect ors\",\"Ġ3 98\",\"ĠH ancock\",\"round ed\",\"ĠJ OHN\",\"Ġuns atisf\",\"Ġqual ifier\",\"ĠGad get\",\"EN E\",\"Ġdead liest\",\"ĠPl ants\",\"Ġ ions\",\"Ġacc ents\",\"Ġtwe aking\",\"Ġsh aved\",\"F REE\",\"ĠCh aser\",\"Again st\",\"9 60\",\"Ġmeth amphetamine\",\"Ġnormal ized\",\"Ġ$ \\\\\",\"ĠPre cision\",\"ĠGu am\",\"Ġch oked\",\"ĠX II\",\"ĠCast ing\",\"Tor rent\",\"Ġscal p\",\"ĠJagu ar\",\"w it\",\"Ġsem ic\",\"ix ie\",\"ĠG ould\",\"Ġconf ines\",\"N usra\",\"ĠL on\",\"ĠJ ugg\",\"y cle\",\"ĠCod ec\",\"E gypt\",\"Ġrest rain\",\"ĠAl iens\",\"Ġch oking\",\"ĠD unk\",\"ĠBell a\",\"ab c\",\"Ġsl ang\",\"Ġneuro trans\",\"s av\",\"Ġempower ment\",\"â ĨĴ\",\"Ġclim bers\",\"ĠM im\",\"ĠF ra\",\"ros se\",\"Cap ital\",\"ĠCth ulhu\",\"Inter face\",\"Ġprof icient\",\"ĠIN TO\",\"Ġ3 18\",\"ront al\",\"5 80\",\"ĠDes pair\",\"K enn\",\"Ġscrim mage\",\"ĠCo at\",\"as ions\",\"Ġwall paper\",\"ĠJ ol\",\"Ġresurg ence\",\"Ġant iv\",\"ĠB alls\",\"² ¾\",\"Ġbuff ers\",\"Ġsub system\",\"ĠSt ellar\",\"ĠL ung\",\"A IDS\",\"Ġerad icate\",\"Ġblat antly\",\"Ġbehav es\",\"ĠN un\",\"Ġant ics\",\"ex port\",\"DE V\",\"w b\",\"Ġph p\",\"ĠInteg rity\",\"Ġexplore r\",\"Ġrev olving\",\"auth ored\",\"g ans\",\"Ġbas k\",\"Ġas ynchronous\",\"å į\",\"TH ING\",\"69 8\",\"G ene\",\"ĠR acer\",\"ĠN ico\",\"iss ued\",\"Ġser mon\",\"p ossibly\",\"Ġsize of\",\"Ġentrepreneur ial\",\"ox in\",\"ĠMin erva\",\"Ġpl atoon\",\"n os\",\"ri ks\",\"A UT\",\"ĠAval anche\",\"ĠDes c\",\"ĳ å£«\",\"ĠP oc\",\"Ġconf erred\",\"Î »\",\"Ġpat ched\",\"F BI\",\"66 2\",\"Ġfract ures\",\"Ġdetect s\",\"Ġded icate\",\"Ġconstitu ent\",\"Ġcos mos\",\"W T\",\"Ġswe ats\",\"Ġspr ung\",\"b ara\",\"s olid\",\"Ġuns us\",\"Ġbul ky\",\"ĠPhilipp e\",\"ĠFen rir\",\"Ġtherap ists\",\"ore al\",\"^^ ^^\",\"Ġtotal ed\",\"Ġboo ze\",\"ĠR PC\",\"Prosecut ors\",\"Ġdis eng\",\"ĠSh ared\",\"Ġmotor cycles\",\"Ġinvent ions\",\"Ġlett uce\",\"ĠMer ge\",\"ĠJ C\",\"Ġspiritual ity\",\"ĠWAR NING\",\"Ġunl ucky\",\"ĠT ess\",\"Ġtong ues\",\"ĠD UI\",\"T umblr\",\"Ġle ans\",\"Ġinv aders\",\"Ġcan opy\",\"ĠHur ricanes\",\"ĠB ret\",\"ĠAP PLIC\",\"id ine\",\"ick le\",\"Reg arding\",\"Ġve ggies\",\"Ġe jac\",\"ju ven\",\"F ish\",\"D EM\",\"ĠD ino\",\"Th row\",\"ĠCheck ing\",\"be ard\",\"( &\",\"Ġj ails\",\"Ġh r\",\"trans fer\",\"iv ating\",\"Ġfle ets\",\"ĠIm ag\",\"ĠMc Donnell\",\"Ġsnipp et\",\"Is a\",\"ĠCh att\",\"ĠSt ain\",\"ĠSet FontSize\",\"ĠO y\",\"ĠMathemat ics\",\"49 4\",\"Ġelectro ly\",\"ĠG ott\",\"ĠBr as\",\"B OOK\",\"ĠF inger\",\"d ump\",\"Ġmut ants\",\"Ġrent als\",\"Ġinter tw\",\"Ġc reek\",\"ail a\",\"Bro ther\",\"ĠDisc ord\",\"pe e\",\"raw ler\",\"Ġcar p\",\"Ġ27 9\",\"ãĤ· ãĥ£\",\"rel ations\",\"Ġcontr asts\",\"Col umn\",\"Ġrec onnaissance\",\"Ġun know\",\"Ġl ooting\",\"Ġregul ates\",\"Ġopt imum\",\"ĠChero kee\",\"ĠA ry\",\"Lat est\",\"Ġroad side\",\"Ġd anced\",\"ĠUnic orn\",\"A cknowled\",\"Ġuncont roll\",\"ĠM US\",\"at io\",\"ch ance\",\"ha ven\",\"VAL UE\",\"Ġfavour ites\",\"Ġceremon ial\",\"b inary\",\"pe ed\",\"wood s\",\"EM P\",\"Ġv ascular\",\"Ġcontempl ated\",\"Ġbar ren\",\"ĠL IST\",\"Y ellow\",\"ospons ors\",\"Ġwhisk y\",\"ĠM amm\",\"ĠDeV os\",\"min imum\",\"H ung\",\"44 2\",\"P ic\",\"ĠSnap dragon\",\"77 6\",\"Ġcar ving\",\"Ġund ecided\",\"Ġadvantage ous\",\"Ġpal ms\",\"ĠA Q\",\"Ġst arch\",\"L oop\",\"Ġpadd le\",\"Ġfl aming\",\"ĠHor izons\",\"An imation\",\"bo ost\",\"Ġprob abilities\",\"ĠM ish\",\"Ġex odus\",\"ĠEditor ial\",\"Ġfung us\",\"Ġdissent ing\",\"ĠDel icious\",\"rog ram\",\"ĠD yn\",\"d isk\",\"t om\",\"Ġfab rics\",\"ĠC ove\",\"ĠB ans\",\"Ġsoft en\",\"ĠCON S\",\"Ġin eligible\",\"Ġestim ating\",\"ĠLex ington\",\"pract ice\",\"of i\",\"Ġshe dding\",\"ĠN ope\",\"Ġbreat hed\",\"ĠCorinth ians\",\"y ne\",\"ek i\",\"B ull\",\"Ġatt aching\",\"reens hots\",\"Ġanaly se\",\"ĠK appa\",\"Ġuns ustainable\",\"Ġinter pol\",\"ank y\",\"he mer\",\"Ġprot agonists\",\"Ġform atted\",\"ĠBry ce\",\"ĠAch illes\",\"ĠAb edin\",\"sh ock\",\"Ġb um\",\"b os\",\"qu a\",\"ĠW arn\",\"q t\",\"ĠDi abetes\",\"8 64\",\"ĠIn visible\",\"Ġvan ish\",\"Ġtrans mitting\",\"Ġmur ky\",\"ĠFe i\",\"Ġawa ited\",\"ĠJur assic\",\"umm ies\",\"Ġmen acing\",\"g all\",\"C ath\",\"B uilt\",\"ild o\",\"ĠV otes\",\"Ġon t\",\"Ġmun itions\",\"ĠFre em\",\"ÃŃ n\",\"Ġdec ency\",\"lo pp\",\"ie ved\",\"ĠG ord\",\"Ġun thinkable\",\"ĠNews week\",\"Ġ3 21\",\"He at\",\"Ġpresent er\",\"ji ang\",\"Ġpl ank\",\"ĠAval on\",\"Ġben z\",\"ĠR out\",\"Ġslam ming\",\"ĠD ai\",\"ou ter\",\"ĠCook ie\",\"ĠAlic ia\",\"ge y\",\"Ġvan ity\",\"Ġow l\",\"á µ\",\"t ested\",\"ĠAw akens\",\"Ġcan v\",\"Ġblind ly\",\"ĠRid ley\",\"ĠEm ails\",\"Requ ires\",\"ĠSer bian\",\"ograp hed\",\"if rame\",\"eter ia\",\"Ġaltern ating\",\"qu iet\",\"Ġsoc iology\",\"ĠUn lock\",\"ĠCommun ism\",\"Ġo ps\",\"Ġatt ribution\",\"Ġab duction\",\"ĠAb ram\",\"Ġsidel ined\",\"ĠB OOK\",\"Ġref ining\",\"ĠFe eling\",\"ĠOs lo\",\"ĠPru itt\",\"r ack\",\"ang ible\",\"Ġcaut iously\",\"ĠM ARK\",\"eed s\",\"M ouse\",\"ĠStep h\",\"ĠP air\",\"S ab\",\"99 7\",\"ĠBa al\",\"B ec\",\"Ġcomm a\",\"ĠP all\",\"ĠG ael\",\"Ġmisunder stand\",\"ĠP esh\",\"Order able\",\"Ġdis mal\",\"ĠSh iny\",\"% \\\"\",\"Ġreal istically\",\"Ġpat io\",\"ĠG w\",\"ĠVirt ue\",\"Ġexhaust ing\",\"wh atever\",\"oph ys\",\"y ip\",\"4 18\",\"Ad just\",\"ĠWa iting\",\"ess on\",\"ĠMaz da\",\"ĠDo zens\",\"Ġstream lined\",\"Ġincompet ence\",\"ĠM eth\",\"Ġeth os\",\"ON ES\",\"Ġincent iv\",\"Ġgr itty\",\"ĠBut cher\",\"Head er\",\"Ġexp onential\",\"Ã Ł\",\"Ġcorrel ate\",\"Ġcons ensual\",\"s ounding\",\"R ing\",\"Orig in\",\"Ġcon clusive\",\"fe et\",\"ac ly\",\"ĠF ernandez\",\"Buy able\",\"Ġd ucks\",\"aunt lets\",\"Ġel ong\",\"Ġ28 6\",\"Ġsim ul\",\"G as\",\"ĠK irst\",\"Ġprot r\",\"ĠRob o\",\"ĠAo E\",\"op ol\",\"Ġpsych ologically\",\"sp in\",\"ilater ally\",\"ĠCon rad\",\"W ave\",\"44 1\",\"ĠAd vertisement\",\"ĠHarm on\",\"ĠOri ental\",\"is Special\",\"Ġpresum ptive\",\"Ġw il\",\"ĠK ier\",\"ne a\",\"Ġp pm\",\"Ġhar bour\",\"ĠW ired\",\"comp any\",\"Ġcor oner\",\"atur days\",\"ĠP roud\",\"ĠN EXT\",\"ĠFl ake\",\"val ued\",\"ce iver\",\"Ġfra ught\",\"Ġc asing\",\"Ġrun away\",\"Ġg in\",\"ĠLaure nt\",\"ĠHar lem\",\"ĠCur iosity\",\"qu ished\",\"Ġneuro science\",\"ĠH ulu\",\"Ġborrow er\",\"Ġpetition er\",\"ĠCo oldown\",\"W ARD\",\"Ġinv oking\",\"conf idence\",\"For ward\",\"Ġst s\",\"pop ulation\",\"Delivery Date\",\"Fil m\",\"ĠC ov\",\"quick Ship\",\"quickShip Available\",\"prim ary\",\"isSpecial Orderable\",\"inventory Quantity\",\"channel Availability\",\"BO X\",\"ĠMulti player\",\"ĠJen ner\",\"77 8\",\"ĠM d\",\"Ġ~ /.\",\"M N\",\"Ġchild ish\",\"Ġantioxid ant\",\"ĠChrom ebook\",\"Ġ27 4\",\"Ġscreen play\",\"Ġadvent urous\",\"ĠRelations hip\",\"respons ive\",\"ming ton\",\"Ġcorner stone\",\"ĠF ey\",\"F IR\",\"Ġrook ies\",\"ĠF eaturing\",\"Ġorig inate\",\"Ġelectro des\",\"ant es\",\"Ġscript ures\",\"Ġgl ued\",\"Ġdiscont ent\",\"Ġaff licted\",\"lay out\",\"B rave\",\"Ġm osa\",\"ĠQuant ity\",\"ĠH ik\",\"w inner\",\"H ours\",\"Ġent ail\",\"ĠCell s\",\"olog ue\",\"Ġv il\",\"Ġpre acher\",\"Ġdecor ative\",\"d ifferent\",\"Ġprejud ices\",\"ĠSm oking\",\"ĠNotting ham\",\"so Type\",\"Ġrhyth ms\",\"ĠAl ph\",\"bl ast\",\"Ste el\",\"ĠDaniel le\",\"Ġstr ife\",\"Ġrem atch\",\"so DeliveryDate\",\"ĠF ork\",\"t rip\",\"ol ulu\",\"hes es\",\"C G\",\"ĠPOLIT ICO\",\"ost a\",\"ĠDr ift\",\"é¾įå ¥\",\"é¾įå¥ ĳå£«\",\"Ġvet ting\",\"ĠJin ping\",\"ĠRec ession\",\"Min or\",\"ĠF raud\",\"enf ranch\",\"Ġconven ed\",\"ĠNA ACP\",\"ĠMill ions\",\"ĠFarm ing\",\"ĠW oo\",\"ĠFl are\",\"rit o\",\"imm igrant\",\"Ġvac ancy\",\"ĠHE AD\",\"ĠV aj\",\"eg al\",\"ĠV igil\",\"Stud y\",\"Ġru ining\",\"Ġr acks\",\"Ġhe ater\",\"ĠRand olph\",\"ĠBr ush\",\"ĠT ir\",\"Ø ¨\",\"Ġc ov\",\"% ]\",\"Ġrecount s\",\"ĠO PT\",\"ĠM elt\",\"Ġtr uce\",\"Ġcas inos\",\"Ġcrus ade\",\"Ġcarn age\",\"Ġstri pe\",\"ĠK yl\",\"Text ures\",\"Ġ6 98\",\"Ġpro clamation\",\"Ġgood ies\",\"Ġ........ ..\",\"pro claimed\",\"P olit\",\"Ġtop ical\",\"Ġspecial ize\",\"ĠA min\",\"g m\",\"Ġanch ored\",\"Ġbear ings\",\"s ample\",\"ĠHigh land\",\"ĠAut ism\",\"Ġmerc enary\",\"Ġinterview er\",\"L ER\",\"ĠSom ers\",\"Ġembry o\",\"ĠAss y\",\"Ġ28 1\",\"ĠEd iting\",\"ĠCh osen\",\"6 60\",\"Ġp ci\",\"ĠThunder bolt\",\"BI LL\",\"Ġchuck led\",\"jri wal\",\"h of\",\"Ġearth ly\",\"() {\",\"ind ependence\",\"Ġdisp ers\",\"ĠV endor\",\"ĠG areth\",\"Ġp als\",\"P enn\",\"ĠSub mit\",\"ic um\",\"Th u\",\"Ġcl andestine\",\"Ġcann ibal\",\"ĠCl erk\",\"E Stream\",\"gal itarian\",\"âĻ ¥\",\"g ew\",\"Ġhor rend\",\"ĠL ov\",\"ĠRe action\",\"ocr in\",\"Class ic\",\"Ġecho ing\",\"Ġdiscl osing\",\"ĠIns ight\",\"og un\",\"ĠInc arn\",\"upload s\",\"pp erc\",\"guy en\",\"Ġ19 01\",\"ĠB ars\",\"68 7\",\"Ġb ribes\",\"ĠFres no\",\"ur at\",\"ĠRe ese\",\"Ġintr usive\",\"Ġgri pping\",\"ĠBlue print\",\"ĠR asm\",\"un ia\",\"man aged\",\"ĠHeb do\",\"Ġ3 45\",\"Ġdec oding\",\"Ġpo ets\",\"Ġj aws\",\"ĠF IGHT\",\"am eless\",\"ĠMead ows\",\"ĠHar baugh\",\"Inter view\",\"ĠH osp\",\"ĠB RA\",\"Ġdelet ion\",\"m ob\",\"W alker\",\"ĠMoon light\",\"ĠJ ed\",\"ĠSoph ia\",\"Ġus ur\",\"Ġfortun ately\",\"ĠPut ting\",\"ĠF old\",\"Ġsan itation\",\"Ġpart isans\",\"IS ON\",\"B ow\",\"ĠCON C\",\"ĠRed uced\",\"ĠS utton\",\"Ġtouch screen\",\"Ġembry os\",\"âĢ¢âĢ¢ âĢ¢âĢ¢\",\"ĠK rug\",\"com bat\",\"ĠPet roleum\",\"Ġam d\",\"ĠCos mos\",\"Ġpresc ribing\",\"Ġconform ity\",\"ours es\",\"Ġplent iful\",\"Ġdis illusion\",\"ĠEc ology\",\"itt al\",\"Ġf anc\",\"Ġassass inated\",\"regn ancy\",\"Ġperenn ial\",\"ĠBul lets\",\"Ġst ale\",\"Ġc ached\",\"ĠJud ith\",\"ĠDise ases\",\"All en\",\"Ġl as\",\"Ġsh ards\",\"ĠSu arez\",\"ĠFriend ship\",\"inter face\",\"ĠSupp orters\",\"add ons\",\"46 2\",\"ĠIm ran\",\"ĠW im\",\"Ġnew found\",\"ĠM b\",\"An imal\",\"Ġd arling\",\"and e\",\"Ġrh y\",\"ĠTw isted\",\"pos al\",\"yn ski\",\"Var ious\",\"× ľ\",\"ĠK iw\",\"uy omi\",\"Ġwell being\",\"ĠL au\",\"an os\",\"Ġunm ist\",\"Ġmac OS\",\"Ġrest room\",\"ĠOl iv\",\"ĠAir ways\",\"Ġtimet able\",\"9 80\",\"Ġrad ios\",\"v oy\",\"ias co\",\"Ġcloud y\",\"ĠDraw ing\",\"Any thing\",\"Sy ria\",\"ĠH ert\",\"st aking\",\"Ġun checked\",\"Ġb razen\",\"ĠN RS\",\"69 7\",\"onom ic\",\"est ablish\",\"Ġl eng\",\"Ġdi agonal\",\"ĠF ior\",\"L air\",\"ĠSt ard\",\"Ġdef icient\",\"jo ining\",\"be am\",\"Ġomn ip\",\"Ġbl ender\",\"Ġsun rise\",\"Mo ore\",\"ĠF ault\",\"ĠCost ume\",\"ĠM ub\",\"Fl ags\",\"an se\",\"Ġpay out\",\"ĠGovern ors\",\"ĠD illon\",\"ĠBan ana\",\"N ar\",\"Ġtra iled\",\"Ġimperial ist\",\"um ann\",\"ats uki\",\"4 35\",\"ĠRoad s\",\"Ġsl ur\",\"ĠIde ally\",\"Ġt renches\",\"C trl\",\"Ġmir rored\",\"ĠZ el\",\"ĠC rest\",\"Comp at\",\"ĠRoll s\",\"sc rib\",\"ĠTra ils\",\"omet ers\",\"w inter\",\"Ġimm ortality\",\"il ated\",\"Ġcontrad icts\",\"un iversal\",\"ill ions\",\"ĠM ama\",\"opt im\",\"AT URE\",\"Ġge o\",\"et ter\",\"ĠCar lo\",\"4 24\",\"Ġcanon ical\",\"ĠStrongh old\",\"n ear\",\"Ġperf ume\",\"Ġorche stra\",\"od iac\",\"Ġup he\",\"Ġreign ing\",\"vers ive\",\"Ġc aucuses\",\"ĠD EM\",\"Ġinsult ed\",\"Ġ---- --\",\"ĠCr ush\",\"Ġroot ing\",\"ĠWra ith\",\"Ġwh ore\",\"Ġto fu\",\"C md\",\"ĠB ree\",\"Ġ$ _\",\"Ġr ive\",\"ĠAd vertising\",\"Ġw att\",\"ĠH O\",\"Ġpersu asive\",\"ĠParam eters\",\"Ġobserv ational\",\"ĠN CT\",\"ĠMo j\",\"ĠSal on\",\"Ġtr unc\",\"Ġexqu isite\",\"ĠMar a\",\"Ġpo op\",\"ĠAN N\",\"Ex c\",\"ĠWonder ful\",\"ĠT aco\",\"Ġhome owner\",\"ĠSmith sonian\",\"orpor ated\",\"mm mm\",\"Ġlo af\",\"ĠYam ato\",\"ĠInd o\",\"Ġcl inging\",\"Ã¡ s\",\"Ġimm utable\",\"h ub\",\"Or ange\",\"Ġfingert ips\",\"ĠWood en\",\"ĠK idd\",\"ĠJ PM\",\"ĠDam n\",\"C ow\",\"c odes\",\"48 2\",\"Ġiniti ating\",\"ĠEl k\",\"ĠCut ting\",\"Ġabsent ee\",\"ĠV ance\",\"ĠLil ith\",\"G UI\",\"Ġobsc ured\",\"Ġdwar ves\",\"ĠCh op\",\"ĠB oko\",\"Val ues\",\"Ġmult imedia\",\"Ġbrew ed\",\"Reg ular\",\"CRIP TION\",\"ĠMort al\",\"Ġa pex\",\"Ġtravel er\",\"Ġbo ils\",\"Ġspray ing\",\"Rep resent\",\"ĠStars hip\",\"4 28\",\"Ġdisappro val\",\"Ġshadow y\",\"Ġlament ed\",\"ĠRe place\",\"ĠFran Ã§\",\"67 7\",\"d or\",\"Ġunst oppable\",\"Ġcoh orts\",\"gy n\",\"ĠClass ics\",\"ĠAm ph\",\"Ġsl uggish\",\"ĠAdd iction\",\"ĠPad res\",\"Ġins cription\",\"Ġin human\",\"min us\",\"ĠJere miah\",\"at ars\",\"Ter ror\",\"ĠT os\",\"ĠSh arma\",\"ast a\",\"c atch\",\"Ġpl umbing\",\"ĠTim bers\",\"Sh ar\",\"H al\",\"ĠO sc\",\"Ġcou pling\",\"hum ans\",\"Ġsp onge\",\"Ġid ols\",\"ĠSp a\",\"ĠAdv ocate\",\"ĠBe ats\",\"lu a\",\"Ġtick ing\",\"Ġload er\",\"ĠG ron\",\"8 10\",\"Ġstim ulated\",\"Ġside bar\",\"ĠManufact urer\",\"ore And\",\"19 73\",\"Ġpra ises\",\"ĠFl ores\",\"dis able\",\"ĠElect rical\",\"ra ise\",\"E th\",\"Ġmigr ated\",\"Ġlect urer\",\"K ids\",\"ĠCa vern\",\"Ġk ettle\",\"Ġgly c\",\"ĠMand ela\",\"ĠF ully\",\"å§ «\",\"FIN EST\",\"Ġsquee zing\",\"ĠRy der\",\"amp oo\",\"oreAnd Online\",\"Inst oreAndOnline\",\"Buyable InstoreAndOnline\",\"Ġcommem orate\",\"ĠRamp age\",\"Aust in\",\"ĠSh roud\",\"ĠRu ins\",\"9 15\",\"ĠK H\",\"Ġwater front\",\"ĠE SC\",\"b aby\",\"ĠC out\",\"ĠEm blem\",\"Ġequival ents\",\"49 2\",\"Un ique\",\"ĠNiet zsche\",\"brow ser\",\"Ġim itation\",\"ĠWere wolf\",\"ĠKir in\",\"ac as\",\"' ,\\\"\",\"ĠÃ ¾\",\"Review ed\",\"Ġc unt\",\"Ġvo ic\",\"ĠLen ovo\",\"Ġbond ed\",\"48 1\",\"Ġinhib itors\",\"Ġendeav ors\",\"ĠHav ana\",\"ĠSt out\",\"ĠJ olly\",\"A ctor\",\"*/ (\",\"Ġoccur rences\",\"ĠT ens\",\"Incre ased\",\"ĠACT ION\",\"Ġ ãĢĮ\",\"ĠRank ings\",\"ĠB reat\",\"Ġ30 9\",\"D ou\",\"Ġimpact ing\",\"ĠDuc hess\",\"pre fix\",\"Q B\",\"Ġsummon ing\",\"Ġbest owed\",\"ĠKe pler\",\"ĠPOW ER\",\"c ube\",\"ĠK its\",\"ĠG rip\",\"Ġop ium\",\"Ġrep utable\",\"t oc\",\"ich ael\",\"ĠR ipple\",\"Ġcaf Ã©\",\"ĠZ oom\",\"ĠBur ma\",\"Ġwa ive\",\"Ġst alls\",\"Ġdem eanor\",\"inc erity\",\"Ġfluor ide\",\"ĠSH OULD\",\"Par is\",\"Ġlong ing\",\"Ġpl at\",\"Ġgross ly\",\"Ġbull s\",\"Ġshowc asing\",\"ex pected\",\"ĠG addafi\",\"engine ering\",\"Re peat\",\"ĠK ut\",\"Ġconce ivable\",\"Ġtrim med\",\"osc ope\",\"ĠCand idate\",\"ĠT ears\",\"rol og\",\"Lew is\",\"S UP\",\"Ġroad map\",\"Ġsal iva\",\"Ġtrump et\",\"Jim my\",\"Ġmirac ulous\",\"Ġcolon ization\",\"Ġam put\",\"ĠGN OME\",\"ate ch\",\"D ifferent\",\"ĠE LE\",\"ĠGovern ments\",\"ĠA head\",\"ãħĭ ãħĭ\",\"word press\",\"L IB\",\"ĠIn clude\",\"ĠDor othy\",\"0 45\",\"ĠColomb ian\",\"Ġle ased\",\"88 4\",\"Ġde grading\",\"ĠDa isy\",\"i ations\",\"Ġbapt ized\",\"Ġsurn ame\",\"co x\",\"Ġblink ed\",\"ãĥ ¢\",\"Ġpoll en\",\"Ġder mat\",\"Ġre gex\",\"ĠNich olson\",\"ĠE ater\",\"ç ľ\",\"rad or\",\"Ġnarrow er\",\"Ġhur ricanes\",\"Ġhalluc inations\",\"r idden\",\"ISS ION\",\"ĠFire fly\",\"Ġattain ment\",\"Ġnom inate\",\"Ġav ocado\",\"ĠM eredith\",\"Ġt s\",\"Ġreve rence\",\"Ġe uph\",\"Ġcr ates\",\"ĠT EXT\",\"Ġ4 43\",\"Ġ3 19\",\"J SON\",\"iqu ette\",\"Ġshort stop\",\"ic key\",\"Ġpro pelled\",\"Ġap i\",\"ĠTh ieves\",\"77 9\",\"Ġovers aw\",\"Ġcol i\",\"ĠNic ola\",\"Ġover cl\",\"ik awa\",\"ĠC yr\",\"Ġ38 4\",\"78 9\",\"ĠAll ows\",\"10 27\",\"Det roit\",\"TR Y\",\"set up\",\"ĠSocial ism\",\"Sov iet\",\"s usp\",\"ĠAP R\",\"ĠShut down\",\"Ġal uminium\",\"zb ek\",\"ĠL over\",\"GGGG GGGG\",\"Ġdemocr acies\",\"Ġ19 08\",\"ĠMer rill\",\"ĠFranco is\",\"gd ala\",\"Ġtraff ickers\",\"ĠT il\",\"ĠGo at\",\"Ġsp ed\",\"ĠRes erv\",\"Ġpro d\",\"55 2\",\"Ġc ac\",\"ĠUn iv\",\"ĠSch we\",\"Ġsw irling\",\"ĠWild erness\",\"ĠEgg s\",\"Ġsadd ened\",\"Ġarch aic\",\"H yd\",\"Ġexcess ively\",\"B RE\",\"Ġaer ospace\",\"ĠVo ices\",\"Cra ig\",\"Ġign ited\",\"In itially\",\"ĠMc A\",\"Ġhand set\",\"Ġreform ing\",\"Ġfrust rations\",\"ĠDead pool\",\"ĠBel ichick\",\"ract or\",\"ĠRagnar ok\",\"ĠD rupal\",\"ĠApp roximately\",\"19 20\",\"ĠHub ble\",\"arm or\",\"ĠSar as\",\"ĠJon as\",\"Ġnostalg ic\",\"Ġfeas ibility\",\"Sah aran\",\"Ġorb iting\",\"Ġ9 70\",\"R u\",\"Ġsh in\",\"ĠInvestig ators\",\"Ġinconsist encies\",\"ĠP AN\",\"B G\",\"Ġgraz ing\",\"Ġdetect ors\",\"ĠStart up\",\"ĠFun ny\",\"ĠNa omi\",\"Consider ing\",\"Ġh og\",\"ut f\",\"ce mic\",\"Ġfort ified\",\"ĠFun ctions\",\"Ġcod ec\",\"nut rition\",\"H at\",\"\\\" !\",\"micro soft\",\"55 8\",\"ĠTh in\",\"ĠA CE\",\"Al ias\",\"ĠO PS\",\"p apers\",\"P K\",\"ãĢ İ\",\"Ġimpro bable\",\"N orthern\",\"equ al\",\"Ġlook out\",\"Ġty res\",\"ĠMod ified\",\"ĠK op\",\"Abs olutely\",\"Ġbuild up\",\"sil ver\",\"Ġaud i\",\"Ġgro tesque\",\"ĠSab er\",\"ĠPres byter\",\"ON Y\",\"Ġglac iers\",\"ĠSho als\",\"ĠK ass\",\"ĠH RC\",\"ĠNic ol\",\"ĠL unch\",\"ĠF oss\",\"âĸ Ĵ\",\"AD RA\",\"ĠOne Plus\",\"o ing\",\"ground s\",\"Ġincident al\",\"Ġdatas ets\",\"68 9\",\"ĠClarks on\",\"Ġassemb ling\",\"ĠCorrect ions\",\"Ġdrink ers\",\"Ġqual ifiers\",\"Ġle ash\",\"Ġunf ounded\",\"ĠH undred\",\"Ġkick off\",\"T i\",\"Ġrecon cil\",\"ĠGr ants\",\"ĠCompl iance\",\"ĠDexter ity\",\"Ġ19 06\",\"w arn\",\"D allas\",\"Max imum\",\"n ard\",\"av ia\",\"be aut\",\"ens itivity\",\"tr ace\",\"Ġpione ers\",\"ĠF ract\",\"ãĢ ı\",\"Ġpre cept\",\"Ġgloss y\",\"ĠI EEE\",\"Ac ross\",\"Ġ6 80\",\"S leep\",\"che on\",\"Ġsatir ical\",\"ĠMin otaur\",\"ĠCla ude\",\"Ġr Ã©\",\"ape go\",\"Ġcar rot\",\"ĠSem in\",\"ino a\",\"Ġz o\",\"Ind ependent\",\"Ġdiagn oses\",\"ĠC ue\",\"M AR\",\"Ġrend ition\",\"ĠK ik\",\"Ġpath ology\",\"Ġselect s\",\"Link edIn\",\"Ġass ay\",\"ĠD res\",\"Ġtext ual\",\"post ed\",\"IT AL\",\"ĠM aul\",\"N eal\",\"Ġinter connected\",\"Ġerr atic\",\"ĠVir us\",\"Ġ5 30\",\"Ġenvironmental ists\",\"ĠP helps\",\"Ġeng agements\",\"ĠIN ST\",\"Ġeconom ical\",\"nox ious\",\"Ġg earing\",\"izz y\",\"Ġfavor ably\",\"ĠMcG ill\",\"T erm\",\"Ġh anged\",\"Ġball park\",\"ĠRe yes\",\"Ġbe ware\",\"ĠP sal\",\"ĠMass acre\",\"q i\",\"Ġin accessible\",\"acly sm\",\"Ġfr ay\",\"ill ac\",\"Ġbitter ly\",\"ĠCert ification\",\"Mich igan\",\"Ġir respective\",\"al ore\",\"Em pty\",\"Ġendorse ments\",\"Ġund et\",\"f g\",\"equ ipped\",\"Ġmerc iless\",\"ĠC ust\",\"Ġimm ature\",\"Ġvou cher\",\"ĠBlack well\",\"Ñ ı\",\"h awk\",\"dis ciplinary\",\"ile e\",\"ĠMak oto\",\"ĠD ude\",\"ãĥĩ ãĤ£\",\"Y ears\",\"Ġin ver\",\"Ġsh aman\",\"ĠY ong\",\"ip el\",\"ell en\",\"ĠCath y\",\"br ids\",\"Ġs arc\",\"65 1\",\"N ear\",\"Ġground work\",\"Ġam az\",\"Ġ4 15\",\"ĠHunting ton\",\"hew s\",\"ĠB ung\",\"Ġarbit rarily\",\"ĠW it\",\"ĠAl berto\",\"Ġdis qualified\",\"best os\",\"46 1\",\"Ġp c\",\"Ġ28 4\",\"ro bat\",\"Rob in\",\"Ġh ugs\",\"ĠTrans ition\",\"ĠOcc asionally\",\"Ġ3 26\",\"ĠWh ilst\",\"ĠLe y\",\"Ġspaces hip\",\"cs v\",\"Ġun successfully\",\"ĠA u\",\"le ck\",\"ĠWing ed\",\"ĠGrizz lies\",\". ï¿½\",\"Ġne arer\",\"ĠSorce ress\",\"ĠInd igo\",\"El se\",\"8 40\",\"let es\",\"Co ach\",\"Ġup bringing\",\"ĠK es\",\"Ġseparat ist\",\"Ġrac ists\",\"Ġch ained\",\"Ġabst inence\",\"lear ning\",\"Ġrein stated\",\"Ġsymm etry\",\"Ġremind ers\",\"ĠChe vy\",\"Ġm ont\",\"Ġexempl ary\",\"ĠT OR\",\"Z X\",\"Ġqual itative\",\"ĠSt amp\",\"ĠSav annah\",\"ĠRoss i\",\"Ġp aed\",\"Ġdispens aries\",\"ĠWall s\",\"ĠCh ronic\",\"Ġcompliment ary\",\"ĠBeir ut\",\"Ġ+ ---\",\"igs list\",\"Ġcrypt ographic\",\"mas ters\",\"ĠCap itals\",\"Ġmax imal\",\"Ġent ropy\",\"Point s\",\"Ġcombat ants\",\"l ip\",\"ĠGl ob\",\"ĠB MC\",\"ph ase\",\"th ank\",\"HT TP\",\"Ġcomm uter\",\"Ġ\\\\( \\\\\",\".. /\",\"ĠReg ener\",\"ĠDO I\",\"ĠActiv ision\",\"Ġsl it\",\"os al\",\"RE M\",\"Ġch ants\",\"Y u\",\"Ke ys\",\"Bre xit\",\"ĠFor ced\",\"Ari zona\",\"Ġsquad ron\",\"IS O\",\"ĠMal one\",\"Ġ3 38\",\"Ġcontrast ing\",\"Ġt idal\",\"Ġlib el\",\"Ġimpl anted\",\"Ġupro ar\",\"ĠC ater\",\"Ġpropos itions\",\"M anchester\",\"ĠEuro s\",\"it amin\",\"G il\",\"ĠEl ven\",\"ĠSe ek\",\"ĠB ai\",\"Ġredevelop ment\",\"ĠTown s\",\"ĠL ub\",\"! \\\",\",\"al on\",\"K rist\",\"Ġmeas urable\",\"Ġimagin able\",\"Ġapost les\",\"Y N\",\"7 60\",\"Ġster oid\",\"Ġspecific ity\",\"ĠL ocated\",\"ĠBeck er\",\"ĠE du\",\"ĠDiet ary\",\"uts ch\",\"ĠMar ilyn\",\"Ġbl ister\",\"ĠM EP\",\"ĠK oz\",\"ĠC MS\",\"y ahoo\",\"ĠCar ney\",\"Ġbo asting\",\"ĠC aleb\",\"By te\",\"read s\",\"ad en\",\"Pro blem\",\"ĠWood ward\",\"S we\",\"S up\",\"ĠK GB\",\"Set up\",\"Ġtac it\",\"Ġret ribution\",\"Ġd ues\",\"ĠM Ã¼\",\". ?\",\"ä¸ Ń\",\"p ots\",\"Ġcame o\",\"ĠP AL\",\"educ ation\",\"A my\",\"like ly\",\"g ling\",\"Ġconstitution ally\",\"ĠHam m\",\"ĠSpe ak\",\"Ġwid gets\",\"br ate\",\"Ġcra ppy\",\"ĠI ter\",\"Ġanticip ating\",\"ĠB out\",\"P ixel\",\"ĠY ep\",\"ĠLaur ie\",\"Ġh ut\",\"Ġbullet in\",\"ĠSal vation\",\"Ġch ats\",\"ear able\",\"Honest ly\",\"AL TH\",\"onse qu\",\"c ult\",\"isco very\",\"ovy ch\",\"Ġse lves\",\"ĠSat oshi\",\"S ounds\",\"Ġconver gence\",\"ĠRosen berg\",\"19 74\",\"Ġnas al\",\"Ġfull est\",\"Ġfer ocious\",\"x us\",\"ist e\",\"AM S\",\"Ġlobb ied\",\"Ġso othing\",\"ĠGun n\",\"t oday\",\"0 24\",\"Ġinspir ational\",\"ĠN BN\",\"p b\",\"g ewater\",\"or ah\",\"all owed\",\"ĠCol iseum\",\"Ġspecial izing\",\"Ġinsane ly\",\"ĠT ape\",\"del ay\",\"Ġt arn\",\"ĠP ound\",\"Ġmel anch\",\"Ġdeploy ments\",\"il and\",\"Ġless en\",\"Ġfur ry\",\"ĠUE FA\",\"Ġblood shed\",\"ĠMe ier\",\"ither ing\",\"Ġhe irs\",\"ĠJ aw\",\"ax ter\",\"ĠPublic ations\",\"Ġal ters\",\"int ention\",\"ĠWinc hester\",\"d etermination\",\"ĠLif etime\",\"th in\",\"Mon ster\",\"7 80\",\"Ġapprox imation\",\"Ġsuper markets\",\"ĠSecond s\",\"or os\",\"h uge\",\"Ġb ribe\",\"ĠLIM ITED\",\"un ed\",\"Ġmis interpret\",\"ĠIn jury\",\"Ġ3 67\",\"Ġthreshold s\",\"ĠCarn ival\",\"Ġgastro intestinal\",\"Ġguid eline\",\"Ġde ceived\",\"f eatures\",\"Ġpurported ly\",\"ĠRon nie\",\"ĠNew t\",\"Ġsp acious\",\"as us\",\"Ġsuperhero es\",\"ĠCyn thia\",\"le gged\",\"k amp\",\"ch io\",\"Ġth umbnail\",\"ĠShir ley\",\"ill ation\",\"Ġshe ds\",\"ĠZ y\",\"E PA\",\"Ġdam s\",\"Ġy awn\",\"n ah\",\"ĠPe ggy\",\"ĠE rie\",\"ĠJu ventus\",\"ĠF ountain\",\"r x\",\"don ald\",\"al bum\",\"ĠComp rehensive\",\"Ġc aching\",\"ĠU z\",\"ulner ability\",\"ĠPrinc iple\",\"ĠJ ian\",\"ing ers\",\"cast s\",\"ĠOs iris\",\"ch art\",\"t ile\",\"ĠTiff any\",\"ĠPatt on\",\"ĠWh ip\",\"Ġovers ized\",\"J e\",\"ĠCind erella\",\"ĠB orders\",\"ĠDa esh\",\"M ah\",\"Ġdog ma\",\"Ġcommun ists\",\"v u\",\"Coun cil\",\"Ġfresh water\",\"Ġw ounding\",\"Ġdeb acle\",\"Ġyoung ster\",\"Ġthread ed\",\"ĠB ots\",\"ĠSav ings\",\"ãģ Ĥ\",\"ol ing\",\"oh o\",\"Ġillum ination\",\"M RI\",\"Ġlo osen\",\"tr ump\",\"ag ency\",\"ur ion\",\"Ġmoment arily\",\"ĠCh un\",\"ĠBud apest\",\"ĠAl ley\",\"D isk\",\"Ġaston ished\",\"ĠCon quer\",\"ĠAccount ing\",\"h aving\",\"ĠWe in\",\"ĠAl right\",\"Ġrev olver\",\"Ġdel usion\",\"Ġrelic s\",\"Ġad herent\",\"qu ant\",\"Ġhand made\",\"or io\",\"Ġcomb ating\",\"c oded\",\"Ġquad ru\",\"re th\",\"N ik\",\"ĠTrib al\",\"ĠMyster ious\",\"Ġin hal\",\"ĠWin ning\",\"ĠClass ification\",\"ch anged\",\"Ġun ab\",\"Ġsc orn\",\"icip ated\",\"w l\",\"ond uctor\",\"Ġrein forcing\",\"ĠChild hood\",\"an ova\",\"Ġadventure r\",\"Ġdoctor al\",\"ĠStrateg ies\",\"Ġengulf ed\",\"ĠEnc ounter\",\"Ġl ashes\",\"Crit ical\",\"ric ular\",\"ĠU TF\",\"oci ation\",\"check ing\",\"ĠConsult ing\",\"Run time\",\"per iod\",\"ĠAs gard\",\"Ġdist illed\",\"ĠPas adena\",\"ĠD ying\",\"ĠCOUN TY\",\"Ġgran ite\",\"Ġsm ack\",\"Ġparach ute\",\"ĠS UR\",\"Virgin ia\",\"ĠF urious\",\"78 7\",\"ĠO kin\",\"Ġcam el\",\"ĠM bps\",\"19 72\",\"ĠCh ao\",\"ĠC yan\",\"j oice\",\"ef er\",\"ĠW rap\",\"ĠDeb ate\",\"S eg\",\"Ġfore arm\",\"ĠIgn ore\",\"Ġtim estamp\",\"Ġprob ing\",\"ĠNo on\",\"ĠGra il\",\"f en\",\"Ġdorm ant\",\"ĠFirst ly\",\"ĠE ighth\",\"ĠH UN\",\"ĠDes ire\",\"or as\",\"Girl s\",\"ĠDes mond\",\"z ar\",\"am ines\",\"O AD\",\"exec ute\",\"Ġbo obs\",\"ĠAT L\",\"_ (\",\"Chel sea\",\"Ġmasturb ation\",\"ĠCo C\",\"Ġdestroy er\",\"ĠCh omsky\",\"Ġsc atter\",\"ĠAss ets\",\"79 6\",\"ĠC argo\",\"Ġrecept ive\",\"ĠSc ope\",\"Ġmarket ers\",\"Ġlaun chers\",\"Ġax le\",\"ĠSE A\",\"se q\",\"ĠM off\",\"f inding\",\"ĠGib bs\",\"Georg ia\",\"extreme ly\",\"N J\",\"Ġlab orers\",\"st als\",\"Ġmed iation\",\"ĠH edge\",\"at own\",\"Ġi od\",\"des pite\",\"v ill\",\"J ane\",\"ex istence\",\"Ġcoinc ided\",\"ĠUt ilities\",\"ĠChe ap\",\"Ġlog istical\",\"Ġcul mination\",\"ĠNic otine\",\"p ak\",\"F older\",\"Ġrod ents\",\"st uff\",\"Ġlaw fully\",\"Ġreper to\",\"io ch\",\"j j\",\"Dial ogue\",\"HH HH\",\"lic tion\",\"Look s\",\"Ġ29 7\",\"Ġtur rets\",\"ĠAb andon\",\"Ġinc ess\",\"ĠTraff ord\",\"Ġcur led\",\"Ġprefer ring\",\"Ġprivat ization\",\"Ġir resist\",\"ĠP anda\",\"ĠSh ake\",\"ĠMc Gr\",\"ãĥ Ħ\",\"und ers\",\"Ġdiscrim inated\",\"Ġbart ender\",\"I LE\",\"Atl antic\",\"Ġprop ensity\",\"ĠW iz\",\"ĠG im\",\"con ference\",\"Ġrein forces\",\"G h\",\"w agon\",\"Ġe erie\",\"F al\",\"Ġhug ged\",\"rac ist\",\"R IC\",\"F u\",\"Ġf iller\",\"ĠSt ub\",\"Ġeng raved\",\"ĠWrest le\",\"Ġimagin ative\",\"ĠPe er\",\"ĠFact ors\",\"an us\",\"ĠDrac ula\",\"mon itor\",\"Ġrou ters\",\"ib ia\",\"ĠBoo lean\",\"end ale\",\"ĠSl aughter\",\"ĠSh ack\",\"R FC\",\"ĠSpiel berg\",\"S ax\",\"ĠPH OTO\",\"ĠCl over\",\"ĠR ae\",\"Dep ending\",\"ĠMem or\",\"ar am\",\"Ġpier ced\",\"Ġcur tains\",\"v ale\",\"ĠInqu isition\",\"ĠP oke\",\"Ġforecast ing\",\"Ġcompl ains\",\"S ense\",\"ĠHer mes\",\"isc overed\",\"Ġb ible\",\"ĠMor ph\",\"Ġg erm\",\"78 5\",\"D ON\",\"Ġcon gen\",\"Ġcr ane\",\"ĠD PR\",\"Ġrespect fully\",\"R oom\",\"ĠN aw\",\"ĠDal ai\",\"re ason\",\"ĠAng us\",\"Educ ation\",\"ĠTitan ic\",\"Ë ľ\",\"Ġo val\",\"un ited\",\"Ġthird s\",\"Ġmoist ur\",\"ĠC PC\",\"M iami\",\"Ġtent acles\",\"ĠPol aris\",\"ex c\",\"ex clusive\",\"ĠPra irie\",\"Ġcol ossal\",\"ĠBl end\",\"sur prisingly\",\"ÃŃ s\",\"Ġindo ctr\",\"Ġbas al\",\"ĠMP EG\",\"und o\",\"Spl it\",\"Develop ment\",\"Ġlan tern\",\"19 71\",\"Ġprov ocation\",\"Ġang uish\",\"ĠB ind\",\"ĠLe ia\",\"duc ers\",\"ipp y\",\"conserv ancy\",\"Ġinitial ize\",\"ĠTw ice\",\"ĠSu k\",\"Ġpred ic\",\"Ġdi ploma\",\"Ġsoc iop\",\"Ing redients\",\"Ġhamm ered\",\"ĠIr ma\",\"Q aida\",\"Ġglim ps\",\"ĠB ian\",\"Ġst acking\",\"Ġf end\",\"gov track\",\"Ġun n\",\"dem ocratic\",\"ig ree\",\"Ġ5 80\",\"Ġ29 4\",\"Ġstraw berry\",\"ID ER\",\"Ġcher ished\",\"ĠH ots\",\"Ġinfer red\",\"Ġ8 08\",\"ĠS ocrates\",\"O regon\",\"ĠR oses\",\"ĠFO IA\",\"Ġins ensitive\",\"Ġ40 8\",\"Recomm end\",\"ĠSh ine\",\"Ġpain staking\",\"UG E\",\"ĠHell er\",\"ĠEnter prises\",\"I OR\",\"ad j\",\"N RS\",\"L G\",\"Ġalien ated\",\"Ġacknowled gement\",\"ĠA UD\",\"ĠRen eg\",\"Ġvou chers\",\"Ġ9 60\",\"Ġm oot\",\"ĠDim ensions\",\"Ġc abbage\",\"B right\",\"g at\",\"ĠK lu\",\"Ġlat ent\",\"Ġz e\",\"ĠM eng\",\"Ġdis perse\",\"Ġpand emonium\",\"H Q\",\"Ġvirt uous\",\"ĠLoc ations\",\"ee per\",\"prov ided\",\"Ġse ams\",\"ĠW T\",\"iz o\",\"PR OV\",\"Ġtit anium\",\"Ġrecol lection\",\"Ġcr an\",\"Ġ7 80\",\"ĠN F\",\"49 1\",\"64 2\",\"p acking\",\"59 8\",\"text ure\",\"Sp ider\",\"fre edom\",\"cipl ed\",\"ĠTAM ADRA\",\"âĻ ¦\",\"aut hent\",\"ĠW ANT\",\"r ified\",\"Ġr ites\",\"Ġuter us\",\"k iss\",\"Ġâī ¤\",\"Ġsk illet\",\"Ġdis enfranch\",\"ĠGa al\",\"Comp an\",\"Ġage ing\",\"gu ide\",\"B alt\",\"Ġiter ator\",\"Ġdiscretion ary\",\"t ips\",\"Ġprim ates\",\"ĠTechn ique\",\"ĠPay ments\",\"az el\",\"ĠR OCK\",\"stant ial\",\"0 60\",\"Ġd mg\",\"ĠJack ets\",\"ĠPlay off\",\"Ġnurs ery\",\"ĠSy mb\",\"art on\",\"Ġannex ation\",\"Color ado\",\"Ġco ils\",\"ĠSh oes\",\"âĦ¢ :\",\"ĠRo z\",\"COM PLE\",\"ĠEve rest\",\"ĠTri umph\",\"J oy\",\"G rid\",\"à ¼\",\"process or\",\"ĠPros per\",\"ĠSever us\",\"ĠSelect ed\",\"r g\",\"ĠTay yip\",\"St ra\",\"Ġski ing\",\"Ġ? )\",\"Ġpe g\",\"Tes la\",\"Ġtime frame\",\"Ġmaster mind\",\"ĠN B\",\"scient ific\",\"ĠSh it\",\"gener ic\",\"IN TER\",\"N UM\",\"Ġst roll\",\"ĠEn ix\",\"ĠM MR\",\"ĠE MS\",\"m ovie\",\"Ĥ ª\",\"Ġminim izing\",\"idd ling\",\"Ġilleg itimate\",\"Ġprot otyp\",\"Ġpremature ly\",\"Ġmanual s\",\"obb ies\",\"ĠCass idy\",\"D EC\",\"des ktop\",\"Ġaer os\",\"Ġscreen ings\",\"Ġdeb ilitating\",\"ĠGr ind\",\"nature conservancy\",\"Ġf ades\",\"ter mination\",\"assets adobe\",\"F actor\",\"Ġdefinitive ly\",\"P okÃ©\",\"ap ult\",\"ĠLaf ayette\",\"C orn\",\"ĠCor al\",\"Ġstagn ant\",\"T ue\",\"Ġdissatisf action\",\"G ender\",\"Ġkid neys\",\"ĠG ow\",\"ĠDef eat\",\"ĠAsh ton\",\"Ġcart els\",\"Ġfore closure\",\"ĠExpl ore\",\"stre ngth\",\"ot in\",\"Ġveterin arian\",\"Ġf umble\",\"Ġpar ap\",\"ĠSt rait\",\"r ils\",\"Ġpr ick\",\"ĠBerm uda\",\"ĠAm munition\",\"skin ned\",\"Ġab ound\",\"ĠB raz\",\"Ġshar per\",\"ĠAsc ension\",\"Ġ9 78\",\"Ġpreview s\",\"Ġcommun ion\",\"ĠX Y\",\"Ġph ony\",\"Ġnewcom er\",\"Ġ3 32\",\".\\\" ,\\\"\",\"Ġredist ribution\",\"Prot ect\",\"ĠSo f\",\"K al\",\"Ġlip stick\",\"w orst\",\"Ġtang led\",\"Ġretrospect ive\",\"int eger\",\"Ġvolunte ering\",\"Ġ19 07\",\"Ġ --------------------\",\"ic hen\",\"Ġunve iling\",\"Ġsen seless\",\"Ġfisher ies\",\"\\\\ -\",\"Ġh inges\",\"Ġcalcul us\",\"My th\",\"Ġund efeated\",\"Ġoptim izations\",\"Ġdep ress\",\"Ġbill board\",\"ĠY ad\",\"ĠPy ramid\",\"Is n\",\"I de\",\"Ġleg ion\",\"ĠK ramer\",\"ent anyl\",\"Ġpenet rating\",\"ĠHaw th\",\"ĠPR ODUCT\",\"ĠGer ard\",\"ĠP act\",\"ĠIn cluding\",\"ĠEl ias\",\"ĠEl aine\",\"vis ual\",\"Ġhum ming\",\"Ġcond esc\",\"ĠF asc\",\"ä¸ Ĭ\",\"Ġe galitarian\",\"Ġdev s\",\"ĠD ahl\",\"O ps\",\"D H\",\"ĠB ounce\",\"id ated\",\"ald o\",\"Ġrepublic an\",\"Ġh amb\",\"ĠS ett\",\"ograph ies\",\"CH APTER\",\"Ġtrans sexual\",\"Ġsky rocket\",\"ans wer\",\"Ġmark up\",\"Ø ª\",\"Ġhero ine\",\"Comp are\",\"ĠT av\",\"Be ast\",\"Ġsuccess ors\",\"Ġna Ã¯ve\",\"ĠBuck ley\",\"st ress\",\"me at\",\"Ġdownload able\",\"Ġindex ed\",\"Ġsc aff\",\"ĠL ump\",\"ĠHom o\",\"Stud io\",\"In sp\",\"Ġr acked\",\"far ious\",\"ĠPet ty\",\"Ex ternal\",\"Ġ19 09\",\"W ars\",\"com mit\",\"put ers\",\"Ġun ob\",\"ĠEr r\",\"ĠE G\",\"ĠAl am\",\"ĠSiber ia\",\"ĠAtmosp heric\",\"IS TER\",\"ĠSatan ic\",\"trans lation\",\"ĠL oud\",\"tra umatic\",\"l ique\",\"Ġreson ate\",\"ĠWel ch\",\"Ġspark ing\",\"ĠT OM\",\"t one\",\"Ġout l\",\"Ġhandc uffed\",\"ĠSer ie\",\"8 01\",\"Ġland marks\",\"ĠRee ves\",\"Ġsoft ened\",\"Ġdazz ling\",\"ĠW anted\",\"month s\",\"Mag ikarp\",\"Ġunt reated\",\"ĠBed ford\",\"M i\",\"ĠDynam o\",\"O re\",\"79 5\",\"Ġwrong ful\",\"Ġl ured\",\"Ġcort isol\",\"Ġve x\",\"d rawn\",\"ile t\",\"Download ha\",\"ĠF action\",\"Ġlab yrinth\",\"Ġhij acked\",\"w aters\",\"er ick\",\"Ġsuper iors\",\"ĠRow ling\",\"ĠGu inness\",\"Ġt d\",\"99 2\",\"Ġune arthed\",\"Ġcentr if\",\"Ġsham eless\",\"P od\",\"ĠF ib\",\"Ġ icing\",\"Ġpredict or\",\"Ġ29 2\",\"fore station\",\"con struct\",\"C and\",\"@ #\",\"Ġag itated\",\"Ġre pr\",\"OV A\",\"Ġkn itting\",\"ĠLim a\",\"Ġf odder\",\"68 4\",\"ĠPerson a\",\"k l\",\"7 01\",\"Ġbreak up\",\"á ¸\",\"Ġapp alled\",\"Ġantidepress ants\",\"ĠSus sex\",\"Har ris\",\"ĠTher mal\",\"ee ee\",\"U pload\",\"Ġg ulf\",\"Ġdoor step\",\"ĠSh ank\",\"L U\",\"ĠM EN\",\"ĠP ond\",\"s orry\",\"Ġmis fortune\",\"n ance\",\"Ġb ona\",\"M ut\",\"Ġde graded\",\"ĠL OG\",\"ĠN ess\",\"an imal\",\"Ġa version\",\"und own\",\"Ġsupplement ed\",\"ĠC ups\",\"Ġ50 4\",\"Ġdep rive\",\"ĠSpark le\",\"Å Ĥ\",\"ĠMed itation\",\"auth ors\",\"ĠSab an\",\"ĠN aked\",\"air d\",\"ĠMand arin\",\"ĠScript ures\",\"ĠPerson nel\",\"ĠMahar ashtra\",\"Ġ19 03\",\"ĠP ai\",\"ĠMir age\",\"omb at\",\"Access ory\",\"Ġfrag mented\",\"T ogether\",\"Ġbelie vable\",\"ĠGl adiator\",\"al igned\",\"ĠSl ug\",\"M AT\",\"Ġconvert ible\",\"ĠBour bon\",\"amer on\",\"ĠRe hab\",\"nt ax\",\"Ġpowd ered\",\"pill ar\",\"Ġsm oker\",\"ĠMans on\",\"ĠB F\",\"5 11\",\"ĠGood ell\",\"ĠD AR\",\"m ud\",\"g art\",\"Ġob edient\",\"ĠTrans mission\",\"ĠDon ation\",\"8 80\",\"Ġbother ing\",\"Material s\",\"ãĤ ±\",\"dest roy\",\"Ġfore going\",\"Ġanarch ism\",\"ĠK ry\",\"ice ps\",\"Ġl ittered\",\"ĠSch iff\",\"Ġanecd otal\",\"un its\",\"Ġf ian\",\"ĠSt im\",\"ĠS OME\",\"ĠInv aders\",\"Ġbehaviour al\",\"ĠVent ures\",\"Ġsub lime\",\"Ġfru ition\",\"ĠPen alty\",\"Ġcorros ion\",\"¶ ħ\",\"Ġlik ened\",\"Ġbesie ged\",\"ween ey\",\"ĠCre ep\",\"Ġlinem en\",\"mult i\",\"ic ably\",\"ud der\",\"Ġvital ity\",\"Ġshort fall\",\"ĠP ants\",\"ap ist\",\"H idden\",\"ĠDro ps\",\"med ical\",\"Ġpron unciation\",\"ĠN RL\",\"Ġinsight ful\",\"J V\",\"ĠBe ard\",\"ĠCh ou\",\"Ġchar ms\",\"Ġb ins\",\"Ġamb assadors\",\"ĠS aturdays\",\"Ġinhib itor\",\"ĠFr anch\",\"6 01\",\"', '\",\"ĠCon or\",\"art ney\",\"ĠX peria\",\"g rave\",\"be es\",\"ĠProtest ants\",\"Ġso aking\",\"ĠM andal\",\"Ġph ased\",\"Ġ6 60\",\"Ġsc ams\",\"Ġbuzz ing\",\"ĠItal ians\",\"ĠLoren zo\",\"ĠJ A\",\"Ġhes itated\",\"Ġcl iffs\",\"ĠG OT\",\"ingu ishable\",\"Ġk o\",\"Ġinter ruption\",\"Z ip\",\"Lear ning\",\"Ġundersc ores\",\"ĠBl ink\",\"K u\",\"57 9\",\"ĠAut ob\",\"I RE\",\"Ġwater ing\",\"Ġpast ry\",\"8 20\",\"Ġvision ary\",\"ĠTempl ar\",\"awa ited\",\"Ġpist on\",\"Ġant id\",\"current ly\",\"Ġp ard\",\"Ġw aging\",\"Ġnob ility\",\"ĠY us\",\"Ġinject ing\",\"f aith\",\"ĠP ASS\",\"å º\",\"Ġret ake\",\"ĠPR OC\",\"Ġcat hedral\",\"b ash\",\"Ġwrest lers\",\"Ġpartner ing\",\"Ġn oses\",\"Ġ3 58\",\"Trans form\",\"am en\",\"Ġb outs\",\"ĠId eal\",\"ĠConstant in\",\"Ġse p\",\"ĠMon arch\",\"att en\",\"ĠPe oples\",\"mod ified\",\"Ġmor atorium\",\"Ġpen chant\",\"Ġoffensive ly\",\"Ġprox ies\",\"ok ane\",\"ĠTaiwan ese\",\"ĠP oo\",\"ĠH OME\",\"us ional\",\"Ġver bs\",\"ĠO man\",\"vis ory\",\"Ġpersu asion\",\"Ġmult it\",\"Ġsc issors\",\"G ay\",\"ow ay\",\"oph ysical\",\"l us\",\"gn u\",\"Ġap ocalyptic\",\"Ġabsurd ity\",\"Ġplay book\",\"Ġautobi ography\",\"I UM\",\"Ġsne aking\",\"ĠSim ulation\",\"pp s\",\"ell ery\",\"Plan et\",\"Ġright fully\",\"Ġn iece\",\"ĠN EC\",\"ĠIP O\",\"ĠDis closure\",\"lean or\",\"ous y\",\"ST ER\",\"Ġ28 2\",\"Cru z\",\"Ch all\",\"64 3\",\"ĠSurv ive\",\"ĠF atal\",\"ĠAm id\",\"ap o\",\"We apons\",\"D EN\",\"7 70\",\"ĠGreen wald\",\"Ġlin en\",\"al os\",\"Ġpollut ants\",\"ĠPCI e\",\"k at\",\"Ġp aw\",\"ĠK raft\",\"C hem\",\"ĠTermin ator\",\"Ġre incarn\",\"Ġ] [\",\"ĠSe eds\",\"Ġsilhou ette\",\"ĠSt ores\",\"Ġgro oming\",\"ĠD irection\",\"ĠIs abel\",\"ĠBr idges\",\"ðŁ ĳ\",\"E ED\",\"ĠM orsi\",\"Ġval ves\",\"ĠRank ed\",\"ĠPh arma\",\"ĠOrgan izations\",\"Ġpenet rated\",\"ĠRod ham\",\"ĠProt oss\",\"Ġove rest\",\"Ġex asper\",\"ĠT J\",\"Ġ 000000\",\"Ġtrick le\",\"Ġbour bon\",\"WH O\",\"Ġw retched\",\"Ġmicrosc opic\",\"Ġcheck list\",\"Ġad orned\",\"R oyal\",\"Ad minist\",\"ĠRet irement\",\"ĠHig hest\",\"We ather\",\"ile ge\",\"Ġincre ments\",\"ĠC osponsors\",\"Ġmas se\",\"ĠS inn\",\"r f\",\"Ġh ordes\",\"as sembly\",\"75 4\",\"ĠNat asha\",\"ĠTY PE\",\"ĠGEN ERAL\",\"Ġarr anging\",\"Ġ40 7\",\"l ator\",\"Ġg lean\",\"Ġdisc redited\",\"Ġclin icians\",\"UN E\",\"Ġachie ves\",\"ĠEm erson\",\"com plex\",\"= [\",\"Ġprincip ally\",\"Ġfra il\",\"p icked\",\"Ġthan king\",\"Ġre cl\",\"ĠL AST\",\"Ġsupp ressing\",\"il ic\",\"Ġantidepress ant\",\"ĠLis bon\",\"Ġth or\",\"Ġsp a\",\"Ġking doms\",\"ĠPear ce\",\"em o\",\"Ġpl ung\",\"Ġdiv est\",\"Ġ ********************************\",\"b is\",\"osp els\",\"ad r\",\"Sp irit\",\"hall a\",\"P ink\",\"end ez\",\"Ġresurrect ed\",\"esc ape\",\"ĠRosen stein\",\"Ġge ological\",\"Ġnecess ities\",\"Ġcarn iv\",\"ĠE lys\",\"ĠBar ney\",\"Ġ29 6\",\"dig y\",\"ST ON\",\"D OWN\",\"Ġmil estones\",\"Ġk er\",\"Ġdismant ling\",\"Ġre prim\",\"Ġcross ings\",\"19 45\",\"Ġpatri archy\",\"Ġblasp hemy\",\"Ġ3 59\",\"met ry\",\"ĠOb esity\",\"ĠDiff erences\",\"bl ocking\",\"ãĥķ ãĤ¡\",\"ich ita\",\"ĠSab ha\",\"ph alt\",\"ĠCol o\",\"ual a\",\"effic ients\",\"ĠMed ina\",\"con sole\",\"55 7\",\"ĠHann ibal\",\"ĠHab it\",\"ĠF ever\",\"Ġthen ce\",\"Ġsyn agogue\",\"Ġessential s\",\"Ġw ink\",\"ĠTr ader\",\"ID A\",\"ĠSp oiler\",\"ĠIceland ic\",\"ĠHay ward\",\"Ġpe ac\",\"Ġmal ice\",\"Ġflash back\",\"Ġth w\",\"Ġlay offs\",\"L iquid\",\"Ġtro oper\",\"Ġh inge\",\"ĠRead ers\",\"Ph ill\",\"ĠB auer\",\"Cre ated\",\"Ġaud its\",\"ac compan\",\"Ġunsus pecting\",\"ier a\",\"6666 6666\",\"Ġbro ch\",\"Ġapprehend ed\",\"ĠM alk\",\"cer ning\",\"ĠCod ex\",\"O VER\",\"M arsh\",\"ĠD eng\",\"ĠExp ression\",\"Ġdisrespect ful\",\"Ġasc ending\",\"t ests\",\"ĠPlaint iff\",\"ster y\",\"ĠAl ibaba\",\"din and\",\"ĠDem psey\",\"Applic ations\",\"mor al\",\"Ġthrough put\",\"Ġquar rel\",\"Ġm ills\",\"Ġhe mor\",\"ĠC ASE\",\"terror ist\",\"st im\",\"ifest yle\",\"ro zen\",\"CE PT\",\"Ar k\",\"u ci\",\"lect ic\",\"Ġirrit ating\",\"she ets\",\"A y\",\"Ġrede emed\",\"Ġhorn y\",\"ĠTe ach\",\"ĠS ear\",\"dem ocracy\",\"4 65\",\"ĠRest ore\",\"Ġstand by\",\"ĠP is\",\"iff in\",\"Ġsleep y\",\"Ġextr ater\",\"Ġcompl iments\",\"Fram eworks\",\"Ġinstall s\",\"Ġb anging\",\"sur face\",\"found land\",\"Ġmetaph ysical\",\"Ġ28 3\",\"oul s\",\"dev ices\",\"Ar gs\",\"ĠSac rifice\",\"ĠMcC orm\",\"es on\",\"Cons ervative\",\"ĠM ikhail\",\"see ing\",\"is ively\",\"ĠRo oms\",\"ĠGener ic\",\"Ġenthusi astically\",\"Ġgri pped\",\"Ġcomed ic\",\"ĠElectric ity\",\"Ġgu errilla\",\"Ġdec oration\",\"ĠPerspect ive\",\"Ġconsult ations\",\"Ġun amb\",\"Ġplag iar\",\"Ġmagic ian\",\"Ġe rection\",\"ĠTour ism\",\"or ied\",\"ro xy\",\"11 00\",\"T am\",\"Ī è\",\"Î ³\",\"× ª\",\"ĠPred ators\",\"Nit rome\",\"Ġtelesc opes\",\"project s\",\"Ġun protected\",\"Ġst ocked\",\"ĠEnt reprene\",\"nex pected\",\"Ġwast ewater\",\"V ill\",\"Ġint imately\",\"Ġi Cloud\",\"ĠConst able\",\"Ġspo of\",\"Ġne farious\",\"Ġfin s\",\"Ġcens or\",\"ĠMod es\",\"ĠEs per\",\"ar bon\",\"Ġinter sections\",\"Ġlaud ed\",\"Ġphys i\",\"Ġgener ously\",\"ĠThe Nitrome\",\"ĠTheNitrome Fan\",\"Ġar isen\",\"ĠÙ Ī\",\"Ġg lands\",\"ĠPav ilion\",\"ĠGu pta\",\"Ġuniform ly\",\"Ġr amps\",\"ri et\",\"ĠWH EN\",\"ĠVan essa\",\"Ġrout ed\",\"Ġlim p\",\"ĠC PI\",\"p ter\",\"int uitive\",\"Ġv aping\",\"Ġexperiment ed\",\"ĠOlymp us\",\"ĠAm on\",\"Ġsight ing\",\"Ġinfiltr ate\",\"ĠGentle man\",\"Ġsign ings\",\"ĠMe ow\",\"ĠNav igation\",\"che cks\",\"4 33\",\"Ġel apsed\",\"ĠBulg arian\",\"esp ie\",\"ĠS OM\",\"d uring\",\"Ġsp ills\",\"anc a\",\"ĠPly mouth\",\"M AL\",\"Ġdomest ically\",\"ĠWater gate\",\"ĠF AM\",\"k illed\",\"ed ited\",\"ĠYour self\",\"Ġsynchron ization\",\"ĠPract ices\",\"ST EP\",\"Ġgen omes\",\"ĠQ R\",\"not ice\",\"Ġloc ating\",\"z in\",\"Ġ3 29\",\"al cohol\",\"Ġk itten\",\"V o\",\"Ġr inse\",\"Ġgrapp le\",\"ĠSc rew\",\"ĠD ul\",\"A IR\",\"Ġle asing\",\"ĠCaf Ã©\",\"Ġro ses\",\"ĠRes pect\",\"Ġmis lead\",\"Ġperfect ed\",\"Ġnud ity\",\"Ġnon partisan\",\"ĠCons umption\",\"Report ing\",\"Ġnu ances\",\"Ġdeduct ible\",\"ĠSh ots\",\"Ġ3 77\",\"Ġæ ľ\",\"ano oga\",\"Ben ef\",\"ĠB am\",\"ĠS amp\",\"if ix\",\"Ġgal van\",\"ĠMed als\",\"rad ius\",\"Ġno bles\",\"Ġe aves\",\"igr ate\",\"K T\",\"ĠHar bour\",\"u ers\",\"Ġrisk ed\",\"re q\",\"Ġneuro t\",\"get table\",\"ain a\",\"Rom ney\",\"Ġunder pin\",\"Ġlo ft\",\"ĠSub committee\",\"ĠMong ol\",\"b iz\",\"Ġmanif ests\",\"ass isted\",\"ĠG aga\",\"Ġsy nergy\",\"Ġreligious ly\",\"ĠPre f\",\"ĠG erry\",\"T AG\",\"ĠCho i\",\"4 66\",\"beh ind\",\"ĠO u\",\"Gold Magikarp\",\"Ġhemor rh\",\"R iver\",\"Ġtend on\",\"Ġinj ure\",\"ĠF iona\",\"Ġp ag\",\"Ġag itation\",\"|| ||\",\"ur an\",\"ĠE SA\",\"Ġest eem\",\"Ġdod ging\",\"Ġ4 12\",\"r ss\",\"Ġce ases\",\"ex cluding\",\"Ġint akes\",\"Ġinsert s\",\"Ġemb old\",\"ĠO ral\",\"up uncture\",\"4 11\",\"ĠUn ified\",\"ĠDe le\",\"Ġfurn ace\",\"ĠCoy otes\",\"ĠBr ach\",\"L abor\",\"Ġhand shake\",\"Ġbru ises\",\"Gr ade\",\"éĹ ĺ\",\"ĠGram my\",\"ile en\",\"St ates\",\"ĠScandinav ian\",\"ĠKard ash\",\"8 66\",\"Ġeffort lessly\",\"ĠDI RECT\",\"ĠTH EN\",\"ĠMe i\",\"ert ation\",\"19 68\",\"Ġgro in\",\"w itch\",\"Requ irements\",\"98 5\",\"Ġroof s\",\"Ġest ates\",\"ĠH F\",\"Ġha ha\",\"Ġdense ly\",\"ĠO CT\",\"Ġpl astics\",\"Ġincident ally\",\"ĠTr acks\",\"ĠTax es\",\"Ġch anted\",\"Ġforce ful\",\"ĠBie ber\",\"ĠK ahn\",\"K ent\",\"ĠC ot\",\"lic ts\",\"F ed\",\"Ġhide ous\",\"ĠVer d\",\"ĠSynd icate\",\"ĠIl legal\",\"J et\",\"ĠD AV\",\"re asonable\",\"c rew\",\"Ġfundamental ist\",\"Ġtruth ful\",\"ĠJ ing\",\"Ġl il\",\"Ġdown ed\",\"Ġen chanted\",\"ĠPolic ies\",\"ĠMcM aster\",\"ĠH are\",\"ides how\",\"Ġpar ams\",\"en cers\",\"gorith m\",\"Ġallow ances\",\"Ġturb ulent\",\"Ġcomplex ities\",\"ĠK T\",\"Ġ3 37\",\"ĠGen etic\",\"F UN\",\"D oug\",\"t ick\",\"Ġg igs\",\"ument hal\",\"Ġpatriarch al\",\"Ġcal c\",\", ...\",\"Ġc out\",\"ĠGu an\",\"Ġpath ological\",\"ĠR ivals\",\"Ġunder rated\",\"Ġflu orescent\",\"ĠJ iu\",\"arna ev\",\"ĠQu an\",\"Ġ4 29\",\"Ġ à¨\",\"M ario\",\"Con struct\",\"ĠC itation\",\"ĠR acial\",\"ĠR SA\",\"ĠF idel\",\"Ġ3 95\",\"Person ally\",\"C ause\",\"Ã »\",\"rad ical\",\"in en\",\"Ġvehement ly\",\"ĠPap a\",\"Ġintern ship\",\"Ġfl akes\",\"ĠRe ck\",\"Luck ily\",\"B ra\",\"20 20\",\"rav ings\",\"R N\",\"W onder\",\"Ser iously\",\"Ġre usable\",\"Ġpoll uted\",\"ĠP eng\",\"le igh\",\"ind le\",\"Ġcircuit ry\",\"ĠMad onna\",\"ĠB ART\",\"Res idents\",\"att ribute\",\"Phil adelphia\",\"Cl ub\",\"Ġplan ner\",\"Ġfr antically\",\"Ġfaith fully\",\"ĠTerrit ories\",\"ĠL AT\",\"ĠAnders en\",\"an u\",\"ĠP ARK\",\"ĠS ora\",\"i age\",\"ĠPlay offs\",\"ĠG CC\",\"4 27\",\"Ġab norm\",\"ĠL ever\",\"Ġdisob edience\",\"As ync\",\"ĠShe a\",\"V ert\",\"Ġsk irts\",\"ĠSaw yer\",\"x p\",\"Ġwors ening\",\"Ġsc apego\",\"ĠAng le\",\"oth al\",\"Ġtro ve\",\"ĠSt y\",\"ĠN guyen\",\"mar ine\",\"ide on\",\"Dep ths\",\"Bl og\",\"ĠIll uminati\",\"Ġtract s\",\"Ġorgan ise\",\"Ġo str\",\"F s\",\"Ġlever aging\",\"ĠD aredevil\",\"as ar\",\"Ġl ang\",\"Ġex termin\",\"urs ions\",\"ĠRom o\",\"ãĤ¤ ãĥĪ\",\"Ġcont ended\",\"Ġencounter ing\",\"ĠTable t\",\"ĠAltern ate\",\"sk ill\",\"Ġswe ets\",\"Ġco hesive\",\"cap acity\",\"Ġrep ud\",\"Ġl izard\",\"ro o\",\"Ġpilgr ims\",\"ĠR uff\",\"ĠInstr ument\",\"ĠLog o\",\"uit ous\",\"E H\",\"Ġsales man\",\"Ġank les\",\"L ed\",\"ĠPat ty\",\"ud os\",\"Own er\",\"Ġdiscrep ancies\",\"k j\",\"M U\",\"Ġuncond itional\",\"Dragon Magazine\",\"i ard\",\"O ak\",\"ĠConvers ation\",\"be er\",\"ĠOs aka\",\"D elta\",\"us ky\",\"Ġsecret ion\",\"Ġpl aza\",\"Ġm ing\",\"Ġde pletion\",\"ĠM ous\",\"ĠI TS\",\"ĠH imal\",\"ĠFle ming\",\"Ġcyt ok\",\"ĠH ick\",\"Ġbat ters\",\"ĠInt ellectual\",\"6 75\",\"Ã© r\",\"IS ION\",\"ĠQu entin\",\"ĠCh apters\",\"ih adi\",\"Ġco aster\",\"WAY S\",\"ĠL izard\",\"ĠY or\",\"and ering\",\"S kin\",\"ha ust\",\"ab by\",\"Ġportray ing\",\"Ġwield ed\",\"d ash\",\"Ġprop onent\",\"Ġr ipple\",\"Ġgrap hene\",\"Ġfly er\",\"Ġrec urrent\",\"Ġdev ils\",\"Ġwater fall\",\"æĺ ¯\",\"go o\",\"Text Color\",\"Ġtam pering\",\"IV ES\",\"TR UMP\",\"ĠAb el\",\"ĠS AL\",\"ĠHend ricks\",\"ĠLu cius\",\"b ots\",\"Ġ40 96\",\"IST ORY\",\"Gu est\",\"ĠN X\",\"in ant\",\"Ben z\",\"ĠLoad ed\",\"ĠCle ver\",\"t reatment\",\"Ġta vern\",\"Ġ3 39\",\"ĠT NT\",\"ific antly\",\"Tem perature\",\"F el\",\"Ġunder world\",\"ĠJud ges\",\"Ġ< +\",\"Ġst ump\",\"Ġoccup ancy\",\"Ġab er\",\"ĠF inder\",\") \\\",\",\"ĠN unes\",\"res et\",\"in et\",\"ect omy\",\"Ġwell ness\",\"ĠP eb\",\"quart ered\",\"and an\",\"Ġneg atives\",\"ĠTh iel\",\"ĠCl ip\",\"ĠL TD\",\"Ġbl ight\",\"Ġreperto ire\",\"K yle\",\"Ġqu er\",\"ĠC es\",\"Ġha pl\",\"98 9\",\"ĠTh ames\",\"isc opal\",\"Des k\",\"ivari ate\",\"ĠEx cellence\",\"found ation\",\"Ġâ ĩ\",\"X i\",\"Ġmyster iously\",\"esty les\",\"Ġper ish\",\"ĠEng els\",\"ĠDE AD\",\"09 0\",\"}} }\",\"ĠUn real\",\"Ġrest less\",\"ID ES\",\"orth odox\",\"ĠInter mediate\",\"Ġdin ners\",\"ĠTr out\",\"ĠSe ym\",\"ĠHall s\",\"og ged\",\"Ġtraged ies\",\"Ġdid nt\",\"67 6\",\"Ġail ments\",\"Ġobserv able\",\"ĠV ide\",\"ad apt\",\"ĠD usk\",\"Ġprofessional ism\",\"ĠPres cott\",\"ĠInd ies\",\"p ox\",\"ĠMe hran\",\"W ide\",\"Ġend emic\",\"ĠPar an\",\"B ird\",\"Ġped als\",\"ĠI U\",\"ĠAdam ant\",\"ĠH urt\",\"Ġcorrel ates\",\"urd en\",\"Ġspons oring\",\"cl imate\",\"ĠUnivers ities\",\"ĠK not\",\"enn es\",\"ĠDam ian\",\"ĠAx el\",\"S port\",\"Ġbar b\",\"ĠS no\",\"sh own\",\"ste en\",\"ud ence\",\"Ġnon violent\",\"Ġhom ophobia\",\"Ġbiom ass\",\"ĠDet ail\",\"Ġsrf N\",\"ĠT une\",\"accompan ied\",\"I ENCE\",\"Al bert\",\"ĠMong o\",\"z x\",\"ĠCer berus\",\"or bit\",\"c ens\",\"Ġsl ay\",\"SH ARE\",\"H Y\",\"Ġb rawl\",\"ĠPro be\",\"Ġnonex istent\",\"ĠClare nce\",\"ĠBlack burn\",\"Ġport als\",\"ĠR ita\",\"ĠRem ain\",\"ĠLe vant\",\"Ġtrick ed\",\"ĠF erry\",\"aver ing\",\"ĠStraw berry\",\"ĠAn swers\",\"Ġhorrend ous\",\"ĠA man\",\"Supp lement\",\"ĠT oad\",\"Ġpe eled\",\"Ġman oeuv\",\"ĠU zbek\",\"mond s\",\"ĠH ector\",\"Ġ40 2\",\"pe es\",\"fix es\",\"Ġd j\",\"Ġres umes\",\"Ġaccount ant\",\"Ġadvers ity\",\"Ġham pered\",\"ĠL arson\",\"Ġd oping\",\"part s\",\"H ur\",\"Ġbe arded\",\"Ġy r\",\"ĠPlug in\",\"å¥ ³\",\"Ġ/ **\",\"rol ley\",\"Ġwaters hed\",\"ĠSub mission\",\"if lower\",\"AS C\",\"Ġcho ir\",\"Ġsculpt ures\",\"m A\",\"incre asing\",\"ai i\",\"Ġsne akers\",\"Ġconfront s\",\"ĠEle phant\",\"ĠEl ixir\",\"Ġrec al\",\"ĠT TL\",\"w idget\",\"ĠW ax\",\"ĠGr ayson\",\"Ġha irst\",\"Ġhumili ated\",\"ĠWAR N\",\"app iness\",\"ĠT TC\",\"F uel\",\"Ġpol io\",\"Ġcomplex es\",\"Ġbab e\",\"ĠX IV\",\"P F\",\"). [\",\"P arts\",\"Ġ4 35\",\"M eg\",\"ĠY ards\",\"ĠAL P\",\"Ġy ells\",\"Ġprin ces\",\"Ġbull ies\",\"ĠCapital ism\",\"ex empt\",\"FA Q\",\"ĠSp onge\",\"ĠAl a\",\"Ġpleas antly\",\"Ġbu f\",\"Ġden ote\",\"Ġunp ublished\",\"Ġkne eling\",\"asc a\",\"Ġl apse\",\"al ien\",\"99 4\",\"Ġrefere es\",\"ĠLaw yers\",\"S anta\",\"Ġpuzz ling\",\"ĠProm etheus\",\"ĠPh araoh\",\"ĠDel ay\",\"Ġfacilit ates\",\"ĠC ES\",\"Ġjew els\",\"Ġbook let\",\"ond ing\",\"Ġpolar ization\",\"ĠMor an\",\"ĠSal ad\",\"ĠS OS\",\"ĠAdv ice\",\"PH OTOS\",\"IC AN\",\"iat ures\",\"ex press\",\"ĠWonder land\",\"ĠC ODE\",\"ĠCL ASS\",\"9 75\",\"Ġg rep\",\"ĠD iesel\",\"ĠGl ac\",\"! ?\\\"\",\"Ġr m\",\"o ine\",\"disc rimination\",\"ĠN urse\",\"m allow\",\"Ġv ortex\",\"ĠCons ortium\",\"Ġlarge Download\",\"stra ight\",\"augh lin\",\"G rad\",\"Ġpublic ized\",\"ĠW aves\",\"ĠRed d\",\"Ġfest ivities\",\"ĠM ane\",\"ar ov\",\"Ġfleet ing\",\"ĠDr unk\",\"ug en\",\"C ele\",\"Ġchromos omes\",\"ĠD OT\",\"-+-+ -+-+\",\"Ġbus iest\",\"ĠBe aver\",\"Sy rian\",\"ĠK yr\",\"k as\",\"ĠCross Ref\",\"19 50\",\"76 01\",\"Ġrepe aling\",\"ĠWin ners\",\"ĠMac ro\",\"ĠD OD\",\"bl ance\",\"S ort\",\"64 1\",\"Ġmet re\",\"ĠD irk\",\"Ġgo ggles\",\"Ġdraw backs\",\"Ġcomplain ant\",\"Ġauthor izing\",\"Ġantit rust\",\"oper ated\",\"Ġm ah\",\"Ġexagger ation\",\"Am azing\",\"ĠSer aph\",\"Ġha ze\",\"w ow\",\"Ġextingu ished\",\"Ġcan yon\",\"ĠB osh\",\"Ġv ents\",\"Ġsc rape\",\"Cor rect\",\"4 26\",\"Ġav g\",\"Dem and\",\"ĠâĪ ¼\",\"Ġmicrobi ota\",\"\\\"} ],\\\"\",\"ĠSt ev\",\"B io\",\"ĠPlan es\",\"Ġsuggest ive\",\"Ġdec ipher\",\"ĠRefuge e\",\"ĠKe jriwal\",\"ĠGreen peace\",\"Ġdecl ass\",\"ĠSound ers\",\"Ġth o\",\"Ġdec rypt\",\"Ġbr ushing\",\"ĠJane iro\",\"ip op\",\"S i\",\"8 77\",\"ĠGeoff rey\",\"Ġc pu\",\"ĠHaz el\",\"Ġview points\",\"Ġcris py\",\"ĠNot ification\",\"Ġsold er\",\"ĠMod est\",\"ĠHem isphere\",\"Ġcass ette\",\"in cludes\",\"Ġident ifiers\",\"ĠC ALL\",\"in cent\",\"T odd\",\"ĠSwe ep\",\"Ġ3 34\",\"b oss\",\"Ġsm ir\",\"gin x\",\"Ġtown ship\",\"Ġg rieving\",\"ĠMos que\",\"Net flix\",\"AS ED\",\"ĠMillenn ials\",\"oc om\",\"19 67\",\"Ġbold ly\",\"s leep\",\"Ġes che\",\"arij uana\",\"Ġsw irl\",\"ĠPen al\",\"Ġneglig ent\",\"ĠStephen son\",\"K ER\",\"ĠZ oro\",\"ris is\",\"Ġlocal ization\",\"ĠSeym our\",\"ĠAng lic\",\"red itation\",\"prot ection\",\"ĠPa ige\",\"Ġo mit\",\"ĠR ousse\",\"ĠT ub\",\"Ġinv itations\",\"t ty\",\"Ġm oss\",\"ph ysical\",\"C redits\",\"Ġan archy\",\"Ġchild care\",\"Ġl ull\",\"ĠM ek\",\"ĠL anguages\",\"lat est\",\"ĠSan ford\",\"Ġus ability\",\"Ġdiff use\",\"ĠD ATA\",\"Ġsp rites\",\"ĠVeget a\",\"ĠProm otion\",\"ãĥ¼ ãĤ¯\",\"rict ing\",\"z ee\",\"Tur kish\",\"ĠTD s\",\"pro ven\",\"57 1\",\"Ġsmug glers\",\"707 10\",\"Ġreform ed\",\"ĠLo is\",\"Ġun fl\",\"ĠWITH OUT\",\"ĠReturn ing\",\"ann ie\",\"ĠTom as\",\"Fr anc\",\"ĠProf it\",\"ĠSER V\",\"ĠR umble\",\"ik uman\",\"es an\",\"Ġt esters\",\"Ġgad get\",\"Ġbrace let\",\"ĠF SA\",\"comp onent\",\"Ġparamed ics\",\"Ġj an\",\"ĠRem em\",\"ĠSk inner\",\"Ġl ov\",\"ĠQu ake\",\"rom a\",\"Ġfl ask\",\"Pr inc\",\"Ġover power\",\"Ġlod ging\",\"ĠK KK\",\"ret te\",\"Ġabsor bs\",\"w rote\",\"Ġ ,\\\"\",\"K ings\",\"ĠH ail\",\"ĠFall ing\",\"xt ap\",\"ĠHel ena\",\"ire ns\",\"L arry\",\"Ġpamph let\",\"ĠC PR\",\"G ro\",\"ĠHirosh ima\",\"Ġhol istic\",\"\\\". [\",\"Ġdet achment\",\"Ġas pire\",\"Ġcompl icit\",\"ĠGreen wood\",\"Ġresp awn\",\"ĠSt upid\",\"ĠFin ished\",\"f al\",\"b ass\",\"Ġab hor\",\"Ġmock ery\",\"ĠFe ast\",\"VID EO\",\"Ġcon sec\",\"ĠHung ry\",\"P ull\",\"ĠH ust\",\"it ance\",\"? ãĢį\",\") --\",\"ĠPar allel\",\"con v\",\"4 69\",\"ha ar\",\"w ant\",\"P aper\",\"m ins\",\"ĠTor o\",\"ĠTR UMP\",\"ĠR ai\",\"D W\",\"ĠW icked\",\"ĠL ep\",\"Ġfun ky\",\"Ġdetrim ent\",\"ios is\",\"ache v\",\"Ġde grade\",\"im ilation\",\"Ġret ard\",\"Ġfrag mentation\",\"Ġcow boy\",\"ĠY PG\",\"ĠH AL\",\"Parent s\",\"ĠS ieg\",\"ĠStra uss\",\"ĠRub ber\",\"× Ĳ\",\"Fr ag\",\"Ġp t\",\"Ġoption ally\",\"ĠZ IP\",\"ĠTrans cript\",\"ĠD well\",\"88 2\",\"M erc\",\"ĠM OT\",\"ãĥ¯ ãĥ³\",\"Ġhun ts\",\"Ġexec utes\",\"In cludes\",\"Ġacid ic\",\"ĠRespons ibility\",\"ĠD umb\",\"we i\",\"And erson\",\"ĠJas per\",\"ight on\",\"abs olutely\",\"Ad ult\",\"Ġpl under\",\"Mor ning\",\"ĠT ours\",\"ĠD ane\",\"Î º\",\"ĠT EST\",\"ĠG ina\",\"Ġcan ine\",\"aw an\",\"Ġsocial ists\",\"ĠS oda\",\"Ġimp etus\",\"ĠSupplement ary\",\"oli ath\",\"ĠKinn ikuman\",\"mitted ly\",\"second s\",\"Ġorganis ers\",\"Ġdocument aries\",\"Vari able\",\"GRE EN\",\"Ġres orts\",\"Ġbr agging\",\"Ġ3 68\",\"Art ist\",\"w k\",\"bl ers\",\"Un common\",\"ĠRet rieved\",\"Ġhect ares\",\"Ġtox in\",\"r ank\",\"Ġfaith s\",\"ĠG raphic\",\"Ġve c\",\"ĠL IA\",\"Af rican\",\"Ġard ent\",\"end iary\",\"L ake\",\"ĠD OS\",\"cient ious\",\"ĠOk awaru\",\"ĠAll y\",\"ĠTim eline\",\"D ash\",\"ĠI c\",\"contin ue\",\"Ġt idy\",\"Ġinstinct ively\",\"ĠP ossibly\",\"ĠOut door\",\"ĠWould n\",\"Ġl ich\",\"ĠBr ay\",\"ĠA X\",\"ĠÃ ī\",\"Ġ+ #\",\"\\\\ '\",\"Direct ory\",\"ab iding\",\"Ġf eral\",\"ic ative\",\"but t\",\"Ġper verse\",\"S alt\",\"Ġwar ped\",\"Ġnin eteen\",\"Ġcabin ets\",\"Ġsrf Attach\",\"ĠSl oan\",\"Ġpower ing\",\"reg ation\",\"F light\",\"se vere\",\"Ġst ren\",\"Ġc og\",\"ap ache\",\"Ġâ Ŀ\",\"Ġcaf eteria\",\"p aces\",\"ĠGrim oire\",\"uton ium\",\"Ġr aining\",\"Ġcir cling\",\"Ġlineback ers\",\"c redit\",\"Ġrep atri\",\"ĠCam den\",\"lic ense\",\"Ġly ric\",\"Ġdescript or\",\"Ġval leys\",\"Ġre q\",\"Ġback stage\",\"ĠPro hibition\",\"ĠK et\",\"Op ening\",\"S ym\",\"æĸ ¹\",\"Ġserv ings\",\"Ġoverse en\",\"Ġaster oids\",\"ĠMod s\",\"ĠSpr inger\",\"ĠCont ainer\",\"è »\",\"ĠM ens\",\"Ġmult im\",\"Ġfire fighter\",\"pe c\",\"Ġchlor ine\",\"Ð ¼\",\"end i\",\"Ġsp aring\",\"Ġpolyg amy\",\"ĠR N\",\"ĠP ell\",\"Ġt igers\",\"Ġflash y\",\"ĠMad ame\",\"S word\",\"Ġpref rontal\",\"Ġpre requisite\",\"uc a\",\"Ġw ifi\",\"Ġmiscon ception\",\"Ġharsh ly\",\"ĠStream ing\",\"ot om\",\"ĠGiul iani\",\"foot ed\",\"Ġtub ing\",\"ind ividual\",\"z ek\",\"n uclear\",\"m ol\",\"Ġright ful\",\"49 3\",\"Ġspecial ization\",\"Ġpassion ately\",\"ĠVel ocity\",\"ĠAv ailability\",\"T enn\",\"Ġl atch\",\"ĠSome body\",\"Ġhel ium\",\"cl aw\",\"Ġdi pping\",\"XX X\",\"Ġinter personal\",\"7 10\",\"Ġsub ter\",\"Ġbi ologists\",\"ĠLight ing\",\"Ġopt ic\",\"Ġden im\",\"end on\",\"ĠC orm\",\"Ġ3 41\",\"ĠC oup\",\"Ġfear less\",\"Ġal ot\",\"ĠCliff ord\",\"ĠRun time\",\"ĠProv ision\",\"up dated\",\"lene ck\",\"Ġneur on\",\"Ġgrad ing\",\"ĠC t\",\"sequ ence\",\"in ia\",\"con cept\",\"Ġro aring\",\"ri val\",\"ĠCaucas ian\",\"Ġmon og\",\"key es\",\"Ġappell ate\",\"Ġlia ison\",\"EStream Frame\",\"ĠPl um\",\"! .\",\"Ġsp herical\",\"Ġper ished\",\"Ġbl ot\",\"Ġben ches\",\"Ġ4 11\",\"Ġpione ered\",\"Ġhur led\",\"Jenn ifer\",\"ĠYose mite\",\"Ch air\",\"Ġreef s\",\"Ġelect or\",\"ĠAnt hem\",\"65 2\",\"Ġun install\",\"Ġimp ede\",\"Ġbl inking\",\"Ġgot o\",\"Dec re\",\"A ren\",\"Ġstabil ization\",\"ĠDis abled\",\"ĠYanuk ovych\",\"Ġoutlaw ed\",\"ĠVent ura\",\"ten ess\",\"Ġplant ation\",\"Ġy acht\",\"ĠHu awei\",\"Ġsol vent\",\"Ġgr acious\",\"Ġcur iously\",\"Ġcapac itor\",\"Ġc x\",\"ĠRef lex\",\"Ph ys\",\"ĠC f\",\"pt in\",\"cons ervative\",\"Ġinv ocation\",\"c our\",\"F N\",\"ĠNew ly\",\"H our\",\"As ian\",\"ĠLe ading\",\"ĠAer ospace\",\"An ne\",\"Ġpre natal\",\"Ġdeterior ating\",\"H CR\",\"ĠNorm andy\",\"ol ini\",\"ĠAm bro\",\"9 10\",\"Ġset backs\",\"ĠT RE\",\"Ġs ig\",\"ĠSc ourge\",\"59 7\",\"79 8\",\"Game play\",\"Ġm sec\",\"M X\",\"Ġprice y\",\"ĠL LP\",\"aker u\",\"Ġover arching\",\"ĠB ale\",\"Ġworld ly\",\"Cl ark\",\"Ġscen ic\",\"Ġdisl iked\",\"ĠCont rolled\",\"T ickets\",\"ĠE W\",\"ab ies\",\"ĠPl enty\",\"Non etheless\",\"Ġart isan\",\"Trans fer\",\"ĠF amous\",\"Ġinf ield\",\"ble y\",\"Ġunres olved\",\"ĠML A\",\"ãĤ Ĥ\",\"Cor rection\",\"Ġdemocr at\",\"ĠMore no\",\"ro cal\",\"il ings\",\"Ġsail or\",\"Ġr ife\",\"h ung\",\"Ġtrop es\",\"Ġsn atched\",\"ĠL IN\",\"ĠB ib\",\"ES A\",\"ĠPre v\",\"ĠCam el\",\"run time\",\"Ġob noxious\",\"4 37\",\"Ġsum mers\",\"Ġunexpl ained\",\"ĠWal ters\",\"cal iber\",\"Ġg ull\",\"ĠEnd urance\",\"ä½ ľ\",\"Ġ3 47\",\"Ir ish\",\"Ġaer obic\",\"Ġcr amped\",\"ĠHon olulu\",\"à ©\",\"us erc\",\"ec ast\",\"AC Y\",\"ĠQu ery\",\"ãĤ¹ ãĥĪ\",\"Bet a\",\"Ġsuscept ibility\",\"ĠSh iv\",\"ĠLim baugh\",\"ĠÃ ĸ\",\"ĠN XT\",\"ĠM uss\",\"ĠBrit ons\",\"ES CO\",\"EG IN\",\"Ġ% %\",\"Ġsec ession\",\"ĠPat ron\",\"ĠLu a\",\"n aires\",\"ĠJPM organ\",\"us b\",\"ocy te\",\"Ġcouncill ors\",\"ĠLi ang\",\"f arm\",\"Ġnerv ously\",\"Ġattract iveness\",\"ĠK ov\",\"j ump\",\"Pl ot\",\"Ġst ains\",\"ĠStat ue\",\"ĠApost les\",\"he ter\",\"ĠSUP PORT\",\"Ġoverwhel m\",\"Y ES\",\"Ġ29 1\",\"d ensity\",\"Ġtra pping\",\"M it\",\"Ġf ide\",\"ĠPam ela\",\"atl antic\",\"Dam n\",\"Ġp ts\",\"OP A\",\"Ġserv icing\",\"Ġoverfl owing\",\"ul o\",\"ĠE rit\",\"t icket\",\"light ing\",\"ĠH mm\",\"ãĥ¼ ãĥ«\",\"im oto\",\"Ġchuck le\",\"4 23\",\"ãģ ķ\",\"sh ape\",\"Ġque ues\",\"Ġanch ors\",\"ãĤ¼ ãĤ¦ãĤ¹\",\"F er\",\"Ġaw oke\",\"Ġ6 66\",\"h ands\",\"Ġdiver gence\",\"Ġ50 5\",\"T ips\",\"Ġdep ot\",\"Ġske w\",\"ĠDel iver\",\"op ot\",\"Ġdiv ul\",\"ĠE B\",\"uns igned\",\"ĠUn i\",\"X box\",\"Ġfor ks\",\"Ġ7 02\",\"å ¯\",\"Ġpromot ers\",\"ĠV apor\",\"Ġlev ied\",\"sl ot\",\"Ġpig ment\",\"Ġcyl inders\",\"C RE\",\"Ġsn atch\",\"Ġperpet ually\",\"Ġl icking\",\"ĠFe et\",\"ĠKra ken\",\"ĠHold en\",\"ĠCLS ID\",\"m r\",\"Ġproject or\",\"Ġden otes\",\"Ġchap el\",\"ĠTor rent\",\"b ler\",\"R oute\",\"ĠDef endant\",\"ĠPublisher s\",\"ĠM ales\",\"ĠInn ov\",\"ĠAg ility\",\"rit er\",\"ty mology\",\"st ores\",\"L ind\",\"Ġf olly\",\"ĠZur ich\",\"B le\",\"Ġnurt ure\",\"Ġcoast line\",\"uch in\",\"D omin\",\"Ġfri vol\",\"ĠCons olid\",\"res ults\",\"M J\",\"Ġphyl ogen\",\"Ġha uled\",\"ĠW iley\",\"ĠJess ie\",\"ĠPrep are\",\"ĠE ps\",\"Ġtreasure r\",\"I AS\",\"Ġcolon ists\",\"Ġin und\",\"ĠWW F\",\"ĠCon verted\",\"6 000\",\"out side\",\"ĠApp earance\",\"ĠRel ic\",\"ĠM ister\",\"s aw\",\"Ġresult ant\",\"Ġadject ive\",\"ĠLaure l\",\"ĠHind i\",\"b da\",\"Pe ace\",\"Ġreb irth\",\"Ġmembr anes\",\"Ġforward ing\",\"Ġcoll ided\",\"ĠCar olyn\",\"K ansas\",\"5 99\",\"ĠSolid GoldMagikarp\",\"Be ck\",\"Ġstress ing\",\"ĠGo o\",\"ĠCooper ative\",\"Ġf s\",\"ĠAr chie\",\"L iter\",\"ĠK lopp\",\"J erry\",\"Ġfoot wear\",\"War ren\",\"Ġsc ree\",\"h are\",\"Under standing\",\"P ed\",\"Ġanth ology\",\"ĠAnn ounce\",\"M ega\",\"Ġflu ent\",\"Ġbond age\",\"ĠDisc ount\",\"il ial\",\"C art\",\"ĠNight mares\",\"Sh am\",\"ĠB oll\",\"uss ie\",\"H ttp\",\"Atl anta\",\"Ġun recogn\",\"ĠB id\",\"Ġunder grad\",\"Ġforg iving\",\"ĠGl over\",\"AAAA AAAA\",\"4 45\",\"V G\",\"pa io\",\"kill ers\",\"Ġrespons ibly\",\"Ġmobil ize\",\"Ġeffect ed\",\"ĠL umin\",\"Ġk ale\",\"Ġinfring ing\",\"ann ounced\",\"Ġf itt\",\"b atch\",\"ĠT ackle\",\"ĠL ime\",\"ĠAP P\",\"uke mia\",\"Ġrub y\",\"Ġex oner\",\"ĠCas ual\",\"0 70\",\"Ġpel vic\",\"Ġautom ate\",\"ĠK ear\",\"ĠCoast al\",\"Ġcre ed\",\"Ġbored om\",\"ĠSt un\",\"ri ott\",\"Ĥ İ\",\"Ġregener ate\",\"Ġcomed ians\",\"ĠOP ER\",\"Sp ons\",\"id ium\",\"on is\",\"L ocated\",\"05 7\",\"Ġsusp ense\",\"ĠD ating\",\"C ass\",\"Ġneoc ons\",\"ĠShin zo\",\"Ġaw oken\",\"ch rist\",\"ĠMess ages\",\"att led\",\"ĠSpr ay\",\"ĠSp ice\",\"C W\",\"Ġshield ing\",\"ĠG aul\",\"Am id\",\"Ġparam ilitary\",\"Ġmult if\",\"ĠTan ner\",\"il k\",\"Ġgodd amn\",\"g ements\",\"Ġbe friend\",\"m obi\",\"Ġ3 88\",\"fold er\",\"acc a\",\"Ġins in\",\"g ap\",\"N ev\",\"fif th\",\"Ġpsychiat ry\",\"b anks\",\"TH IS\",\"Ġhar b\",\"ac qu\",\"Ġfac ade\",\"ĠPower Point\",\"80 3\",\"Ġbl uff\",\"Sh ares\",\"Ġfavor ing\",\"El izabeth\",\"Ãį Ãį\",\"Ġr anger\",\"77 2\",\"ĠAr che\",\"h ak\",\"ĠGen etics\",\"ĠF EMA\",\"Ġev olves\",\"Ġest e\",\"ĠP ets\",\"ĠM Ã©\",\"ĠInterest ing\",\"ĠCanter bury\",\"ch apter\",\"ĠStar fleet\",\"Sp anish\",\"Ġdraw back\",\"ĠNor wich\",\"9 70\",\"n orth\",\"ag anda\",\"Ġtransform ative\",\"ram ids\",\"bi ology\",\"ad ay\",\"Ġpropag ation\",\"ĠGam ma\",\"ĠDen ise\",\"ĠCalcul ator\",\"ent imes\",\"ĠB ett\",\"Ġapp endix\",\"ĠHD D\",\"AK ING\",\"Ġst igmat\",\"Ġhol ster\",\"Ġord inarily\",\"Ch ance\",\"ĠCont rary\",\"Ġad hesive\",\"Ġgather s\",\"6 12\",\"re au\",\"ony ms\",\"ew ays\",\"Ġindu ces\",\"Ġinterchange able\",\"se m\",\"Wh it\",\"Ġtr ance\",\"Ġincorpor ation\",\"ĠExt ras\",\"Fin ancial\",\"Ġawkward ly\",\"ĠStur geon\",\"ĠH Y\",\"Norm ally\",\"ĠEnd ing\",\"ĠAss ist\",\"enc rypted\",\"Ġsub jug\",\"Ġn os\",\"Ġfan atic\",\"C ub\",\"C U\",\"?\\\" .\",\"Ġirre versible\",\"å Ĥ\",\"03 1\",\"ĠH AR\",\"sp read\",\"ul ia\",\"= $\",\"Sc ope\",\"L ots\",\"Ġlif estyles\",\"ol on\",\"Ġf eds\",\"Ġcongrat ulate\",\"web kit\",\"Ġindist inguishable\",\"ĠSw ing\",\"Ġcommand ments\",\"qu ila\",\"ab ella\",\"m ethyl\",\"ann abin\",\"Ġo vere\",\"Ġlob ster\",\"ĠQU EST\",\"ĠCONT IN\",\"bern atorial\",\":::: ::::\",\"ĠTra ve\",\"ĠSam oa\",\"AN I\",\"75 2\",\"Ð ´\",\"userc ontent\",\"ĠMod erate\",\"y eah\",\"ĠK itt\",\"Ġwe e\",\"Ġstuff ing\",\"ĠInter vention\",\"ĠD ign\",\"Ġware houses\",\"ĠF iji\",\"Ġpel lets\",\"Ġtake away\",\"ĠT ABLE\",\"ĠClass ical\",\"col lection\",\"Ġland fall\",\"ĠMus cle\",\"Ġsett les\",\"ĠAD V\",\"Ġ3 44\",\"L aura\",\"Ġf ared\",\"ĠPart ial\",\"4 36\",\"oss ibility\",\"ĠD aly\",\"ĠT arant\",\"ĠFu ji\",\"am l\",\"c ence\",\"55 1\",\"ĠProced ures\",\"ĠO CD\",\"ĠU D\",\"t in\",\"Q UI\",\"ach o\",\"4 38\",\"Ġgl itches\",\"Ġenchant ment\",\"Ġcalcul ates\",\"IR O\",\"ĠH ua\",\"alys es\",\"ĠL ift\",\"um o\",\"Ġle apt\",\"Ġhypothes ized\",\"ĠGust av\",\"it ans\",\"VERS ION\",\"æ ł\",\"Rog er\",\"Ġr and\",\"ĠAd apter\",\"Ġ3 31\",\"ĠPet ition\",\"k ies\",\"M ars\",\"Ġunder cut\",\"ze es\",\"ĠLy ons\",\"ĠDH CP\",\"Miss ing\",\"Ġretire es\",\"Ġins idious\",\"el i\",\"> )\",\". ãĢį\",\"Ġfinal ists\",\"ĠA ure\",\"Ġacc user\",\"Ġwas tes\",\"ĠY s\",\"ĠL ori\",\"Ġconstitu encies\",\"Ġsupp er\",\"Ġmay hem\",\"or ange\",\"Ġmis placed\",\"Ġmanager ial\",\"Ġex ce\",\"ĠCL I\",\"Ġprim al\",\"ĠL ent\",\"Cry stal\",\"h over\",\"ĠN TS\",\"end um\",\"Ġd w\",\"ĠAl c\",\"n ostic\",\"Ġpres erves\",\"ĠTs arnaev\",\"Ġtri pled\",\"rel ative\",\"Arc ade\",\"k illing\",\"ĠW EEK\",\"ĠH anna\",\"D ust\",\"Com pleted\",\"ģ «\",\"Ġappro ves\",\"ĠSur f\",\"ĠLuther an\",\"ven ants\",\"Ġrobber ies\",\"we ights\",\"soft ware\",\"at ana\",\"ug al\",\"Ġgrav y\",\"ĠC ance\",\"OLOG Y\",\"ly ak\",\"Ton ight\",\"Ġunve il\",\"Ġ19 04\",\"ĠMin ion\",\"ent ious\",\"st ice\",\"pack ages\",\"ĠG EAR\",\"Ġg ol\",\"ĠHutch inson\",\"ĠProf ession\",\"ĠG UN\",\"ĠDiff erence\",\"ĠTsuk uyomi\",\"ĠLes bian\",\"6 70\",\"Ġfug itive\",\"ĠPlan etary\",\"-------------------------------- ------------------------\",\"Ġacc rued\",\"Ġch icks\",\"Ġsto pp\",\"Ġblock ers\",\"C od\",\"Ġcomment ers\",\"ĠSomew here\",\"ĠPhot ographer\",\"the me\",\"Ġmay oral\",\"w u\",\"Ġanten nas\",\"Ġrev amped\",\"ĠSubject s\",\"it Ã©\",\"im ura\",\"Ġentr ances\",\"liter ally\",\"Ġten ets\",\"ĠO MG\",\"ĠMP H\",\"ĠDon key\",\"ĠOff ense\",\"Ġ\\\" +\",\"Sn ap\",\"ĠAF B\",\"Ġan imate\",\"ĠS od\",\"His panic\",\"Ġinconsist ency\",\"D b\",\"F Y\",\"Ex port\",\"Ġa pe\",\"Ġpear l\",\"ib el\",\"ĠPAC s\",\"Ġ{ \\\\\",\"Ġact u\",\"ĠHS BC\",\"camp us\",\"Ġpay off\",\"Ġde ities\",\"ĠN ato\",\"ou ple\",\"Ġcens ored\",\"ĠCl ojure\",\"Ġconf ounding\",\"en i\",\"Ġreck on\",\"op he\",\"Ġspot ting\",\"Ġsign ifies\",\"Ġprop el\",\"Ġfest ive\",\"S uggest\",\"Ġpled ging\",\"ĠB erman\",\"Ġrebell ious\",\"Ġovershadow ed\",\"Ġinfiltr ated\",\"j obs\",\"67 2\",\"Ġscal able\",\"Ġdomin ion\",\"ĠNew foundland\",\"ĠMead ow\",\"Ġpart itions\",\"AM I\",\"Ġsupplement ary\",\"str ument\",\"Ġhair y\",\"Ġperpet uate\",\"Ġnuts hell\",\"ĠPot ato\",\"ĠHob bit\",\"Ġcur ses\",\"Flo at\",\"Ġquiet er\",\"Ġfuel ing\",\"Ġcaps ules\",\"ĠL ust\",\"ĠH aunted\",\"Exec utive\",\"Ġchild birth\",\"G re\",\"Ġrad iant\",\"å İ\",\"Ġm alls\",\"Ġin ept\",\"ĠWarrant y\",\"Ġspect ator\",\"E h\",\"t hens\",\"Ġculmin ating\",\"æ ©\",\"ary a\",\"ãĤ ®\",\"ilit arian\",\"ĠOR IG\",\"ĠSp ending\",\"pt ives\",\"ĠS iren\",\"ĠRec ording\",\"ay ne\",\"Ġv im\",\"Ġspr ang\",\"T ang\",\"ĠM FT\",\"mor ning\",\"ĠWe ed\",\"m peg\",\"cess ion\",\"ĠCh ung\",\"7 30\",\"w arning\",\"56 2\",\"handed ly\",\"P oor\",\"P olitics\",\": #\",\"Ġp ian\",\"Ġfec es\",\"ĠDocument ation\",\"Ġban ished\",\"Ġ3 99\",\"ĠAR C\",\"Ġhe inous\",\"J ake\",\"ĠAm ir\",\"way ne\",\"v re\",\"os henko\",\"Ġnotebook s\",\"Ġfound ational\",\"Ġmarvel ous\",\"ixt ape\",\"Ġwithdraw als\",\"Ġh orde\",\"ĠD habi\",\"is able\",\"ĠK D\",\"Ġcontag ious\",\"ĠD ip\",\"ĠAr rows\",\"Ġpronoun s\",\"Ġmorph ine\",\"ĠB US\",\"68 2\",\"Ġk osher\",\"fin ished\",\"ĠInstr uments\",\"Ġf used\",\"yd en\",\"ĠSal mon\",\"F ab\",\"aff ected\",\"K EN\",\"C ENT\",\"Dom ain\",\"Ġpoke mon\",\"ĠDr inking\",\"G rowing\",\"ĠInvestig ative\",\"ĠA ether\",\"em i\",\"Ġtabl oid\",\"Ġrep ro\",\"ĠNot withstanding\",\"ĠBers erker\",\"Ġdram as\",\"Ġclich Ã©\",\"Ġb ung\",\"ĠU RI\",\"ĠD os\",\"0 44\",\"Ġpast ors\",\"Ġl s\",\"Ġac rylic\",\"aun ts\",\"Ed ward\",\"Ġmajor ities\",\"B ang\",\"Ġfield ing\",\"ĠRepl acement\",\"ĠAl chemy\",\"pp ard\",\"ĠRome o\",\"ĠSan ct\",\"ĠLav rov\",\"ib ble\",\"Inst ruct\",\"Ġimp ractical\",\"ĠPlay boy\",\"ce phal\",\"Ġsw aps\",\"Ġk an\",\"ĠThe o\",\"Ġillust rating\",\"Ġdismant led\",\"ĠTrans gender\",\"ĠG uth\",\"UG H\",\"Ġtriumph ant\",\"Ġencomp ass\",\"Ġbook mark\",\"udd in\",\"j er\",\"Ġpred icate\",\"ES H\",\"Ġwhen ce\",\"ĠAB E\",\"Ġnon profits\",\"Se qu\",\"Ġdi abetic\",\"Ġp end\",\"Ġheart felt\",\"sh i\",\"Ġinter acts\",\"ĠTele com\",\"Ġbombard ment\",\"dep ending\",\"ĠLow ry\",\"ĠAd mission\",\"ĠBl ooming\",\"ust ration\",\"ene gger\",\"B rew\",\"Ġmol ten\",\"ĠNer d\",\"P IN\",\"âĸ Ģ\",\"ave ment\",\"Ġtou red\",\"Ġco efficients\",\"ĠTray von\",\"ans son\",\"Ġsand y\",\"t old\",\"fl ows\",\"Ġpop ulous\",\"ĠT inder\",\"ĠBl iss\",\"R achel\",\"Min imum\",\"Ġcontest ant\",\"ĠRed uce\",\"ĠMor se\",\"ĠGrass ley\",\"ĠClick er\",\"Ġexp r\",\"Ġs incerity\",\"Ġmar qu\",\"Ġelic it\",\"ĠPro position\",\"ĠDemon ic\",\"Ġtac os\",\"G reek\",\"Ġpost war\",\"Ġin sofar\",\"ĠP ork\",\"Ġ35 2\",\"doctor al\",\"walk ing\",\"Ġmid term\",\"ĠSam my\",\"sight ed\",\"ĠTR ANS\",\"ic i\",\"AL D\",\"ĠUS L\",\"ĠF ISA\",\"ĠAm pl\",\"ĠAlex andra\",\"ine lli\",\"Tr ain\",\"Ġsign ify\",\"ĠVers us\",\"Ġob fusc\",\"Ġk h\",\"Ġagg ro\",\"ĠRen ault\",\"Ġ3 48\",\"5 18\",\"ox icity\",\"0 22\",\"ĠTw ist\",\"Ġgoof y\",\"D ynamic\",\"Ġbrief ings\",\"m ight\",\"8 99\",\"Ġderog atory\",\"T ro\",\"Ġfor ging\",\"ĠKor an\",\"ĠMar ried\",\"ĠBuc s\",\"Ġpal ate\",\"ĠCon version\",\"m able\",\"4 13\",\"Ġ( _\",\"Ġs iph\",\"ĠN EO\",\"col lege\",\"Ġmarg inally\",\"Ġfl irt\",\"ĠTra ps\",\"ĠP ace\",\"é »Ĵ\",\"Ġgoalt ender\",\"Ġforb ids\",\"Ġcler ks\",\"ĠT ant\",\"ĠRobb ins\",\"ĠPrint ing\",\"Ġpremie red\",\"Ġmagn ification\",\"ĠT G\",\"ĠR ouse\",\"ĠM ock\",\"odynam ics\",\"Ġpre clude\",\"ism o\",\"ĠPul itzer\",\"Ġaval anche\",\"ĠK odi\",\"rib une\",\"ĠL ena\",\"Elect ric\",\"Ġref inery\",\"Ġend owed\",\"Ġcounsel ors\",\"Ġd olphin\",\"ĠM ith\",\"Ġarm oured\",\"hib ited\",\"Beg in\",\"ĠP W\",\"O il\",\"ĠV or\",\"ĠShar if\",\"ĠFraz ier\",\"est ate\",\"Ġj ams\",\"Pro xy\",\"Ġband its\",\"ĠPresbyter ian\",\"ĠPrem iere\",\"t iny\",\"ĠCru el\",\"Test ing\",\"Ġhom er\",\"ĠV ERS\",\"ĠPro l\",\"ĠDep osit\",\"ĠCoff in\",\"Ġsemin ars\",\"Ġs ql\",\"ĠDef endants\",\"Altern atively\",\"ĠR ats\",\"ç «\",\"ethy st\",\"' >\",\"Ġiss uer\",\"58 9\",\"Ġch aired\",\"ĠAccess ories\",\"man ent\",\"Ġmar row\",\"ĠPrim ordial\",\"C N\",\"Ġlimit less\",\"ĠCarn age\",\"Ġund rafted\",\"q v\",\"IN ESS\",\"on ew\",\"Ġco hesion\",\"98 7\",\"Ġne cks\",\"Ġfootball er\",\"ĠG ER\",\"Ġdetect able\",\"ĠSupport ing\",\"ĠCS V\",\"oc ally\",\"k Hz\",\"Ġund e\",\"Ġsh one\",\"Ġbud ding\",\"tra k\",\"Stand ing\",\"ĠStar craft\",\"ĠKem p\",\"Ben ch\",\"Ġthw arted\",\"ĠGround s\",\"ath i\",\"L isa\",\"Dial og\",\"ĠS X\",\"V ision\",\"Ġingen ious\",\"Ù Ĳ\",\"Ġfost ering\",\"ĠZ a\",\"ĠIn gram\",\"Ġ\\\" @\",\"N aturally\",\"6 16\",\"0 35\",\"ĠF AC\",\"H mm\",\"55 4\",\"Ġacceler ator\",\"ĠV end\",\"Ġsun screen\",\"Ġtuber culosis\",\"rav iolet\",\"ĠFunction al\",\"ĠEr rors\",\"ed ar\",\"19 66\",\"ĠSpect re\",\"ĠRec ipes\",\"88 5\",\"ĠM ankind\",\"L iverpool\",\"Ġ| --\",\"Ġsubst itutes\",\"ĠX T\",\"w ired\",\"Ġinc o\",\"ĠAf gh\",\"E va\",\"ic c\",\"S ong\",\"K night\",\"Ġdilig ently\",\"ĠBroad cast\",\"A id\",\"Ġaf ar\",\"ĠH MS\",\"aton in\",\"ĠGr ateful\",\"Ġfire place\",\"ĠOm ni\",\"e uro\",\"ĠF RE\",\"ĠSh ib\",\"ĠDig est\",\"t oggle\",\"Ġheads ets\",\"Ġdiff usion\",\"ĠSqu irrel\",\"ĠF N\",\"Ġdark ened\",\"out her\",\"Ġsleep s\",\"ĠX er\",\"gun s\",\"Ġset ups\",\"Ġpars ed\",\"Ġmamm oth\",\"ĠCur ious\",\"g ob\",\"ĠFitz patrick\",\"ĠEm il\",\"im ov\",\"........ .....\",\"ĠB enny\",\"Second ly\",\"Ġheart y\",\"Ġcons on\",\"st ained\",\"Ġgal actic\",\"cl ave\",\"Ġplummet ed\",\"Ġp ests\",\"Ġsw at\",\"Ġrefer rals\",\"ĠLion el\",\"h oly\",\"Ġunder dog\",\"ĠSl ater\",\"ĠProv ide\",\"ĠAm ar\",\"ress or\",\"å Į\",\"ong a\",\"Ġtim id\",\"Ġp iety\",\"ĠD ek\",\"Ġsur ging\",\"az o\",\"Ġ6 10\",\"Ġdes ks\",\"ĠSp okane\",\"ĠAn field\",\"Ġwars hips\",\"ĠCob ra\",\"Ġar ming\",\"clus ively\",\"ĠBad ge\",\"ag ascar\",\"ĠPR ESS\",\"ĠMcK enzie\",\"ĠFer dinand\",\"burn ing\",\"Af ee\",\"Ġtyr ann\",\"ĠI w\",\"ĠBo one\",\"100 7\",\"ĠRe pt\",\"Ċ Âł\",\"Ġcar avan\",\"ĠD ill\",\"ĠBundes liga\",\"Ch uck\",\"Ġheal er\",\"ãĥ¼ãĥ Ĩ\",\"ĠH obby\",\"Ġneg ate\",\"Ġcrit iques\",\"section al\",\"mop olitan\",\"Ġd x\",\"Ġouts ourcing\",\"ĠC ipher\",\"t ap\",\"Sh arp\",\"Ġup beat\",\"Ġhang ar\",\"Ġcru ising\",\"ĠNi agara\",\"Ġ3 42\",\"ill us\",\"ĠS v\",\"Ġsubt itles\",\"Ġsqu ared\",\"Ġbook store\",\"Ġrevolution aries\",\"ĠCarl ton\",\"ab al\",\"Ut ah\",\"Ġdesp ise\",\"ĠU M\",\"cons ider\",\"aid o\",\"Ġc arts\",\"ĠT urtles\",\"Tr aining\",\"Ġhonor ary\",\"Â ¢\",\"Ġtri angles\",\"4 22\",\"Ġreprint ed\",\"Ġgrace ful\",\"ĠMong olia\",\"Ġdisrupt ions\",\"ĠB oh\",\"Ġ3 49\",\"Ġdr ains\",\"Ġcons ulate\",\"Ġb ends\",\"Ġm afia\",\"ur on\",\"ĠF ulton\",\"m isc\",\"Ġren al\",\"Ġin action\",\"ck ing\",\"Ġphot ons\",\"Ġbru ised\",\"ĠC odes\",\"og i\",\"Ġn ests\",\"ĠLove ly\",\"ĠLib re\",\"ĠD aryl\",\"Ġ# ##\",\"S ys\",\". ,\\\"\",\"Ġfree zes\",\"est ablishment\",\"and owski\",\"Ġcum bers\",\"ĠSt arg\",\"ĠBom bs\",\"Ġleg ions\",\"Ġhand writing\",\"Ġgr un\",\"ĠC ah\",\"sequ ent\",\"Ġm oth\",\"ĠMS M\",\"Ins ert\",\"F if\",\"Ġmot el\",\"Ġdex ter\",\"ĠB ild\",\"hearted ly\",\"Ġpro pe\",\"ĠText ure\",\"ĠJ unction\",\"ynt hesis\",\"oc ard\",\"ĠVer a\",\"ĠBar th\",\"ĠÎ¼ g\",\"Ġl ashed\",\"Ġ35 1\",\"ĠZ amb\",\"ĠSt aples\",\"ĠCort ex\",\"ĠCork er\",\"Ġcontinu um\",\"ĠWR ITE\",\"unt a\",\"rid or\",\"Ġde ems\",\"0 33\",\"ĠG OLD\",\"p as\",\"Ġrep ressive\",\"ãĥĨ ãĤ£\",\"Ġbaff led\",\"Sc ar\",\"Ġc rave\",\"Ġ ______\",\"Ġentrepreneurs hip\",\"ĠDirector ate\",\"Ġ' [\",\"Ġv ines\",\"Ġasc ended\",\"ĠGR OUP\",\"ĠGood bye\",\"Ġdo gged\",\"ãĥ´ ãĤ¡\",\"Man ufact\",\"Ġunimagin able\",\"ri ots\",\"ier rez\",\"Ġrel ativity\",\"ĠCraft ing\",\"ra ught\",\"ud en\",\"c ookie\",\"Ġassass ins\",\"Ġdissatisf ied\",\"ac ci\",\"Ġcondu it\",\"Sp read\",\"ĠR ican\",\"n ice\",\"izz le\",\"Ġsc ares\",\"ĠWH Y\",\"ph ans\",\"5 35\",\"Ġprot racted\",\"ĠKrist en\",\"5 36\",\"ĠSc rib\",\"ĠNe h\",\"Ġtwent ies\",\"Ġpredic ament\",\"Ġhandc uffs\",\"Ġfruit ful\",\"ĠU L\",\"ĠLud wig\",\"Ġatt est\",\"ĠBre aker\",\"Ġbi ologically\",\"ĠDeal er\",\"Ġrenov ations\",\"f w\",\"ess en\",\"Al ice\",\"ĠHen ri\",\"Ġun ilaterally\",\"ĠS idd\",\"h ai\",\"ĠSt retch\",\"S ales\",\"Ġcumbers ome\",\"ĠJ avier\",\"Ġtrend y\",\"Ġrot ting\",\"ĠChall enges\",\"Ġscra ps\",\"Ġfac ets\",\"ĠVer onica\",\"ĠVer ge\",\"ĠS ana\",\"Al ien\",\"ĠR ih\",\"Ġrad ial\",\"ect ar\",\"Ġ6 30\",\"cl i\",\"Mar ie\",\"Ġwild fire\",\"ĠCat o\",\"h ander\",\"Ġwait ress\",\"Ġch ops\",\"ĠS ECTION\",\"Ġblunt ly\",\"ĠCat alog\",\"n ian\",\"stud y\",\"Ġpat rolling\",\"ĠT enth\",\"nex us\",\"ĠN ON\",\"op sy\",\"Ġsc athing\",\"s ie\",\"Ġdeterior ated\",\"V B\",\"Naz is\",\"Ġdep ictions\",\"Ġauthent icated\",\"ĠCon ce\",\"k rit\",\"Ġpromul g\",\"ĠL ONG\",\"U FC\",\"ĠVis itors\",\"ĠRec all\",\"Ġrehab ilit\",\"ĠSL I\",\"Ġglac ier\",\"ĠB ite\",\"Ġ50 3\",\"Ġvom it\",\"Ġfer mented\",\"ĠKh alid\",\"Ġgrad ed\",\"ĠMag icka\",\"ĠIch igo\",\"power ful\",\"ic ators\",\"75 3\",\"Ġsh rew\",\"Ġ35 6\",\"Ġlegal izing\",\"Ġall otted\",\"ĠArch demon\",\"ith ing\",\"igg urat\",\"V OL\",\"Le od\",\"Ġo ily\",\"Ġindu cing\",\"Ġamy gdala\",\"Ġadm ins\",\"ĠAcqu isition\",\"C AN\",\"Ġsche matic\",\"Ġmo an\",\"ĠCamer oon\",\"Ġt ink\",\"Ġmer ry\",\"Ġbutter flies\",\"ĠGo ff\",\"Ġworks pace\",\"ĠCor ona\",\"Ġj avascript\",\"ĠD olphin\",\"ĠCant or\",\"4 64\",\"to e\",\"AP S\",\"ĠAg ing\",\"Ġpadd ed\",\"ĠZ heng\",\"ĠHe ld\",\"Ġest ranged\",\"Ġ7 70\",\". }\",\"ĠDun ham\",\"Ġsm okes\",\"Ġcap itals\",\"und ai\",\"Sh in\",\"ĠFound ing\",\"Ġent itle\",\"Ġcenter piece\",\"D iscover\",\"Ġthere to\",\"al ert\",\"ĠN ou\",\"ĠAnaly st\",\"l c\",\"F H\",\"FI ELD\",\"ĠP OV\",\"gr ay\",\"Ġar cs\",\"ĠH OT\",\"Ġr s\",\"Ġoblig atory\",\"ĠArchitect s\",\"ĠS ven\",\"ĠF EC\",\"0 200\",\"Christ mas\",\"ĠAlban ia\",\"rat om\",\"58 7\",\"Ġhard ships\",\"Ġaut os\",\"ĠCharg es\",\"Ġap es\",\"Ġ3 76\",\"wal let\",\"Ġintox ication\",\"Ġgobl in\",\"Ġ5 70\",\"++++++++ ++++++++\",\"ĠYel p\",\"ĠMag netic\",\"ĠBr iggs\",\"R ail\",\"Ġspawn s\",\"ĠW iggins\",\"Ġshowc ased\",\"Ġres orted\",\"ub en\",\"Ġwh ipping\",\"Ġim itate\",\"Ġdigest ion\",\"ĠUS PS\",\"ĠG est\",\"Ġye a\",\"ĠT ight\",\"ind al\",\"ic as\",\"` .\",\"C AST\",\"'' ;\",\"ĠF et\",\"opath ic\",\"In valid\",\"Ġregrett ed\",\"Ġbro ccoli\",\"ĠSc ores\",\"e ve\",\"Ġpost ings\",\"Ġaccum ulating\",\"Ġneed less\",\"elf th\",\"Ġmay ors\",\"Ġsc rib\",\"Ġanecd otes\",\"Ġbot ched\",\"ĠRib bon\",\"ĠConstant ine\",\"i uses\",\"ess es\",\"Ġdev ise\",\"Comp ared\",\"Ġp udding\",\"Ġg arg\",\"Ġev oke\",\"79 7\",\"Ġdet ox\",\"9 09\",\"ĠPie ces\",\"ĠMcC artney\",\"Ġmet ast\",\"ĠK rypt\",\"P OR\",\"Ġt ending\",\"ĠMerch ants\",\"Pro of\",\"ĠV arg\",\"ĠPort able\",\"ãĥ¼ãĥĨ ãĤ£\",\"B rain\",\"25 00\",\"Ġfol iage\",\"Ø ¹\",\"Ġment ors\",\"ĠA ires\",\"Ġminimal ist\",\"Ġing ested\",\"ĠTro jan\",\"ĠQ ian\",\"inv olved\",\"0 27\",\"Ġer oded\",\"RA FT\",\"Ġbl urry\",\"M ob\",\"Ġbuff et\",\"ĠFn atic\",\"ae a\",\"KN OWN\",\"ĠIn it\",\"s afety\",\"en um\",\"ACT ION\",\"ĠCrus her\",\"ĠD ates\",\"Ġ ................\",\"c alling\",\"ak ov\",\"Ġvent ured\",\"Ġ5 55\",\"au ga\",\"H art\",\"ĠA ero\",\"M AC\",\"Ġthin ly\",\"Ġar ra\",\"ST ATE\",\"ild e\",\"ĠJac qu\",\"ĠFem ales\",\"Ġthe orem\",\"Ġ3 46\",\"Ġsmart est\",\"ĠPU BLIC\",\"ĠK ron\",\"ĠB its\",\"ĠV essel\",\"ĠTele phone\",\"Ġdec ap\",\"Ġadj unct\",\"ĠS EN\",\"mer ga\",\"Ġred acted\",\"Ġpre historic\",\"Ġexplan atory\",\"ĠRun s\",\"ĠUtt ar\",\"ĠM anny\",\"ĠAUTH OR\",\"ĠUnle ashed\",\"ĠBow ling\",\"be ans\",\"79 3\",\"Ġunivers es\",\"Ġsens it\",\"ĠK ung\",\"re peat\",\"ctr l\",\"Ġp aced\",\"Ġfull er\",\"Cl ock\",\"Ġrec omb\",\"ĠF aul\",\"ĠB unker\",\"Ġpool ed\",\"Ġan a\",\"ĠM outh\",\"LL OW\",\"hum ane\",\"Ġbull do\",\"ĠMicha els\",\"f am\",\"Ġwreck ed\",\"Ġport rays\",\"ĠWh ale\",\"ĠH es\",\"Ġguess es\",\"ĠBrow se\",\"ĠL APD\",\"Ġconsequ ential\",\"ĠInn ocent\",\"ĠD RAG\",\"Ġtrans gress\",\"ĠO aks\",\"Ġtri via\",\"ĠRes on\",\"ĠA DS\",\"-- +\",\"ĠT oll\",\"Ġgrasp ing\",\"ĠTHE M\",\"ĠT ags\",\"ĠCon clusion\",\"Ġpract icable\",\"Ġho op\",\"Ġunintention ally\",\"Ġign ite\",\"ĠM ov\",\"ur ized\",\"le hem\",\"Ter min\",\"Ġcolour ful\",\"ĠLin ear\",\"ĠEll ie\",\"G y\",\"Ġman power\",\"Ġj s\",\"Ġem oji\",\"ĠSHAR ES\",\"_ .\",\"0000 7\",\"Ġsophistic ation\",\"Ġunders core\",\"Ġpract ise\",\"Ġbl ob\",\"op ens\",\"Uk raine\",\"Ke eping\",\"Y C\",\"J R\",\"ult imate\",\"Cl aim\",\"Ġautom obiles\",\"99 3\",\"ste el\",\"Ġpart ing\",\"ĠL ank\",\"... ?\",\"Ġ38 5\",\"Ġremem brance\",\"Ġe ased\",\"Ġcov ari\",\"ĠS ind\",\"Effect ive\",\"Ġdisse mination\",\"ĠMo ose\",\"ĠCl apper\",\"br ates\",\"App ly\",\"Ġinv is\",\"Ġwors ened\",\"âĢĶ -\",\"Ġlegisl ator\",\"ĠL ol\",\"ĠRow e\",\"Ġdealers hip\",\"um ar\",\"id ences\",\"Ġinvestig ates\",\"Ġc ascade\",\"Ġbid der\",\"ĠB EN\",\"Iron ically\",\"Ġpres iding\",\"Ġd ing\",\"Ġcontrad icted\",\"Ġshut s\",\"ĠF IX\",\"Ġ3 66\",\"Dist rict\",\"Ġsin ful\",\"ĠChar isma\",\"o ops\",\"Ġtot ality\",\"Ġrest itution\",\"ĠOpt imus\",\"ĠD ah\",\"Ġcl ueless\",\"urn ed\",\"Ġnut rit\",\"Ġland owners\",\"Ġfl ushed\",\"Ġbroad en\",\"m ie\",\"Ġprint ln\",\"Ġn ig\",\"ĠCorp us\",\"J en\",\"Ġprot o\",\"ĠWik imedia\",\"ĠPal o\",\"C OR\",\"Ġstory lines\",\"Ġevangel icals\",\"ĠDar rell\",\"Ġrot or\",\"ĠH W\",\"sk illed\",\"ery l\",\"Ġbe gg\",\"ĠBl umenthal\",\"Ġwe aving\",\"Ġdown wards\",\"ĠJack et\",\"ĠANG EL\",\"Te chnology\",\"Ġes oteric\",\"alde hyde\",\"Ġfur iously\",\"Ġforeign er\",\"We ak\",\"CH O\",\"ĠH ound\",\"Exper ience\",\"ĠPlay station\",\"ĠM IA\",\"ĠU ng\",\"cl oth\",\"ag all\",\"Ġcal ming\",\"iz ens\",\"St ruct\",\"ĠW itches\",\"ĠCeleb ration\",\"Ġ........ ......\",\"pt roller\",\"ĠTC U\",\"Ġb unny\",\"ãĥ į\",\"ut orial\",\"Ġup scale\",\"ĠSt a\",\"ĠCol ossus\",\"Ġchlor ide\",\"ĠZ ac\",\"ĠRe asons\",\"ĠBrook ings\",\"ĠWH ITE\",\"][ /\",\"ĠL ose\",\"9 05\",\"Ġunders ide\",\"ern els\",\"Ġv ape\",\"do zen\",\"upp et\",\"ĠST OP\",\"mat ical\",\"ĠStat ements\",\"hed dar\",\"P AC\",\"Custom er\",\"Ġmem os\",\"ĠP J\",\"end ars\",\"ĠLim its\",\"l augh\",\"Ġstabil ized\",\"ĠALE C\",\"Y A\",\"Up grade\",\"al am\",\"Ġtechn o\",\"Ġan ew\",\"fore seen\",\"Ġcolleg iate\",\"ĠPy ro\",\"ĠD ism\",\"Ġfront line\",\"Ġammon ia\",\"I U\",\"Qu ite\",\"John ny\",\"ass in\",\"G OP\",\"ĠSt yles\",\"ĠSovere ign\",\"acter ial\",\"5 49\",\"ĠR IP\",\"ĠL ists\",\"Ġ3 64\",\"ĠRece p\",\"s ocket\",\"ĠByr d\",\"ĠCand le\",\"An cient\",\"Ġappell ant\",\"en forcement\",\"ace a\",\"ans ki\",\"Ġold s\",\"88 6\",\"Ġsl urs\",\"Ġem pires\",\"Ġbuck le\",\"Ġalien ation\",\"ĠAber deen\",\"Ġunic orn\",\"Ġoverr iding\",\"ĠL X\",\"pp a\",\"Ġdesp ised\",\"ĠB ugs\",\"ĠB ST\",\"S outhern\",\"5 33\",\"Ġhall mark\",\"ĠPost er\",\"Ġstem med\",\"Ġprincip als\",\"ĠT ECH\",\"ĠSand wich\",\"It aly\",\"Ġche esy\",\"ĠSet TextColor\",\"ĠProt ective\",\"ĠC ohn\",\"J O\",\"apt op\",\"Re ason\",\"Lead er\",\"ĠUnder stand\",\"ĠFr idays\",\"ĠContin uous\",\"Ġcl ipping\",\"ĠR ye\",\"Ġber th\",\"tim er\",\"ann is\",\"re act\",\"Ġbuff alo\",\"ĠPar as\",\"Ġ6 55\",\"Ġpres ided\",\"ĠSun rise\",\"Ġve ts\",\"Ġcl oves\",\"ĠMcC ull\",\"Stre ngth\",\"G AN\",\"Ġill iter\",\"ĠPric ing\",\"l Ã©\",\"Ġresist or\",\"Ġbr un\",\"ĠSuff olk\",\"Ñ ĭ\",\"ĠL iver\",\"Re leased\",\"Ġwhat s\",\"8 60\",\"ĠMe asures\",\"Ġden ouncing\",\"ĠRy zen\",\"Ġsou ven\",\"Ġcareg ivers\",\"ch ini\",\"ĠScar lett\",\"Ġt rough\",\"Cong ratulations\",\"Ġtax is\",\"ĠTrad ition\",\"j it\",\"Ġtable top\",\"Ġhither to\",\"Ġdis information\",\"off ensive\",\"h ra\",\"ĠDISTR ICT\",\"Ġcompl icate\",\"chen ko\",\"ĠRecon struction\",\"Ġpalp able\",\"Ġa usp\",\"Ġ4 28\",\"Ġshowc ases\",\"ĠPublic ation\",\"know ledge\",\"inn on\",\"4 19\",\"Ġretri eval\",\"and ers\",\"Ġref ute\",\"Ġinqu ired\",\"g ur\",\"Ġneg ativity\",\"Ġcons erve\",\"Ġafter life\",\"Ġpres upp\",\"ĠGill espie\",\"Ġm t\",\"ĠD N\",\"T ap\",\"Ġper pend\",\"ĠS my\",\"does n\",\"Ġsp illing\",\"Ġhyp ers\",\"K ate\",\"Â® ,\",\"ke pt\",\"ĠP owered\",\"Ġj a\",\"ĠK lux\",\"ard e\",\"ab an\",\"Ġ4 44\",\"Ġflatt ened\",\"ĠImprove ments\",\"urg a\",\"ĠK und\",\"Ġins cribed\",\"Ġfac ult\",\"Ġunpre pared\",\"ĠCons umers\",\"Ġsatisf ies\",\"Ġpul monary\",\"Ġinf iltration\",\"Ġex ternally\",\"Ġcongrat ulations\",\"ag han\",\"Ġair liner\",\"Ġfl ung\",\"Ġfly ers\",\"G D\",\"Ġsnipp ets\",\"Ġrec ursive\",\"Ġmaster ing\",\"L ex\",\"Ġovert ly\",\"v g\",\"Ġluck ily\",\"Ġenc ro\",\"ĠLanc et\",\"ĠAbyss al\",\"function al\",\"Ġs ow\",\"Ġsqu id\",\"Ġnar ration\",\"Ġn aughty\",\"ĠHon our\",\"ĠSpart ans\",\"Ġsh atter\",\"ĠTac oma\",\"ĠCal ories\",\"ĠR aces\",\"Sub mit\",\"Ġpurpose fully\",\"w av\",\"ĠY ok\",\"F est\",\"ĠG err\",\"Met ro\",\"Ġit iner\",\"f amous\",\"Ġ\\\" {\",\"in line\",\"was her\",\"Iss ue\",\"ĠCL IENT\",\"oz o\",\"Vers ions\",\"7 25\",\"ĠGl ock\",\"Ġshield ed\",\"ĠPC R\",\"ENC Y\",\"ĠWe ld\",\"ĠSim pl\",\"Ġredirect ed\",\"ĠK ham\",\"Ġ( >\",\"Ġlab ou\",\"Ġdi apers\",\"ss l\",\"Ġcell ar\",\"organ isms\",\"ore sc\",\"ĠBer ks\",\"did n\",\"Sh ipping\",\"C hest\",\"Ġund one\",\"Ġmillion aire\",\"Ġc ords\",\"ĠYoung er\",\"appropri ately\",\"Ġsequ els\",\"u ve\",\"ant icipated\",\"Ġle wd\",\"ĠSh irt\",\"ĠDmit ry\",\"V eter\",\"Ġsl aying\",\"ĠY ar\",\"Ġcompl ication\",\"I owa\",\"ĠEric a\",\"ĠBL M\",\"g irlfriend\",\"b odied\",\"6 26\",\"19 63\",\"Ġintermedi ary\",\"Ġcons olation\",\"M ask\",\"ĠSi em\",\"ow an\",\"Beg inning\",\"Ġfix me\",\"Ġculmin ated\",\"Ġcon duc\",\"ĠVolunte er\",\"Ġpos itional\",\"Ġgre ets\",\"ĠDefin itions\",\"Ġthink er\",\"Ġingen uity\",\"Ġfresh men\",\"ĠMom ents\",\"Ġ35 7\",\"ate urs\",\"ĠFed Ex\",\"s g\",\"69 4\",\"Ġdwind ling\",\"ĠBO X\",\"sel age\",\"Ġt mp\",\"Ġst en\",\"ĠS ut\",\"Ġneighbourhood s\",\"Ġclass mate\",\"f ledged\",\"Ġleft ists\",\"Ġclim ates\",\"ATH ER\",\"ĠScy the\",\"ul iffe\",\"Ġs ag\",\"Ġho pped\",\"ĠF t\",\"ĠE ck\",\"ĠC K\",\"ĠDo omsday\",\"k ids\",\"Ġgas ped\",\"Ġmon iker\",\"ĠL od\",\"ĠC FL\",\"t ions\",\"r ums\",\"fol ios\",\"Ġm d\",\"Ġunc anny\",\"Ġtrans ports\",\"ĠLab rador\",\"Ġrail ways\",\"Ġappl iance\",\"ĠCTR L\",\"æ Ģ\",\"Pop ulation\",\"ĠConfeder acy\",\"Ġunb earable\",\"Ġdors al\",\"ĠIn form\",\"op ted\",\"ĠK ILL\",\"Mar x\",\"Ġhypoc ritical\",\"q us\",\"ĠN umerous\",\"ĠGeorg ian\",\"ĠAmbro se\",\"ĠL och\",\"Ġgu bernatorial\",\"ĠX eon\",\"ĠSupp orts\",\"ens er\",\"ee ly\",\"ĠAven ger\",\"19 65\",\"Ar my\",\"Ġju xtap\",\"Ġcho pping\",\"ĠSpl ash\",\"ĠS ustainable\",\"ĠFin ch\",\"Ġ18 61\",\"ict ive\",\"at meal\",\"ĠG ohan\",\"Ġlights aber\",\"ĠG PA\",\"ug u\",\"ĠRE PL\",\"vari able\",\"Ġher pes\",\"Ġdesert s\",\"ac iously\",\"Ġsitu ational\",\"week ly\",\"ob l\",\"Ġtext ile\",\"ĠCorn wall\",\"Ġcontrace ptives\",\"ĠA ke\",\"] -\",\"ä¹ ĭ\",\": ,\",\"ĠW em\",\"ĠB ihar\",\"Ġ' .\",\"Ġbe re\",\"Ġanal ogue\",\"ĠCook ies\",\"Ġtake off\",\"Whe el\",\"Ġmaj estic\",\"Ġcomm uting\",\"0 23\",\"ĠCor pse\",\"ass ment\",\"min i\",\"Ġgor illa\",\"ĠAl as\",\"ere e\",\"Ġacquaint ances\",\"ĠAd vantage\",\"Ġspirit ually\",\"Ġey ed\",\"pm wiki\",\"ĠE nder\",\"Ġtrans lucent\",\"Ġnight time\",\"ĠIM AGES\",\"5 45\",\"ĠK amp\",\"ĠFre ak\",\"Ġ ig\",\"Port land\",\"4 32\",\"ĠM ata\",\"Ġmar ines\",\"Ġh ors\",\"ater asu\",\"ĠAtt ribution\",\"Ġ-------- -\",\"Ġk ins\",\"ĠBEL OW\",\"++ +\",\"Ġre eling\",\"ol ed\",\"Ġcl utter\",\"ĠRel ative\",\"Ġ4 27\",\"B US\",\"Ġa vert\",\"ĠChe ong\",\"ĠA ble\",\"ĠPry or\",\"Develop er\",\"Ġen cyclopedia\",\"ĠUSA F\",\"ĠG arry\",\"Sp ain\",\"Bl ocks\",\"Ġexp osition\",\"ĠGamer Gate\",\"W OR\",\"Ġstockp ile\",\"Ġclot hed\",\"ĠT one\",\"ĠR ue\",\"t umblr\",\"Ġtreacher ous\",\"Ġf rying\",\"Ñ Į\",\"ĠS ph\",\"Ġrest raints\",\"Ġemb odies\",\"ĠG es\",\"S afety\",\"Ġnegoti ators\",\"min ing\",\"ĠAppalach ian\",\"L OS\",\"ĠJenn a\",\"Ġpass ers\",\"ç ĭ\",\"sn ap\",\"Ġshort en\",\"creat or\",\"Ġinn umerable\",\"uther land\",\"67 4\",\"ĠW OM\",\"ĠAs cend\",\"ĠArm ory\",\"ĠTrans action\",\"K ick\",\"Ġsuit case\",\"day Name\",\"Ġwaste ful\",\"mar riage\",\"ĠMcC abe\",\"ite ch\",\"ĠO ss\",\"Cl osure\",\"ĠTreasure r\",\"Ġindec ent\",\"ĠD ull\",\"Ġresid ences\",\"19 59\",\"ĠS ettlement\",\"Ham ilton\",\"Ġself ies\",\"ĠRank ing\",\"ĠBark ley\",\"ĠB ore\",\"ĠW CS\",\"ĠMar itime\",\"ĠH uh\",\"ĠForest ry\",\"Ġcultiv ating\",\"ĠBall ard\",\"Ġg arrison\",\"ĠSD L\",\"9 30\",\"Ġnas cent\",\"Ġirresist ible\",\"Ġaw fully\",\"\\\\/ \\\\/\",\"Ġequ ate\",\"Ġanthrop ology\",\"ĠSylv ia\",\"Ġintest ine\",\"Ġinnoc uous\",\"cess ive\",\"ag ra\",\"ĠMet roid\",\"G rant\",\"8 55\",\"ģ ĸ\",\"Ġ\\\" _\",\"ãĥĥ ãĥī\",\"Ġappra isal\",\"ĠFred dy\",\"04 6\",\"Ġ40 6\",\"Ġ18 30\",\"Ġd ocking\",\"St atic\",\"Ġp ont\",\"ĠVolt age\",\"ĠSt ead\",\"ĠMort gage\",\"ĠJon ah\",\"Y L\",\"CLASS IFIED\",\"Ġas bestos\",\"nik ov\",\"Ġcoll agen\",\"ĠOrb ital\",\"P ocket\",\"7 99\",\"Ġhy brids\",\"inc hes\",\"Ġinv oice\",\"und y\",\"Ġinequ alities\",\"T rend\",\"w ashed\",\"B ALL\",\"Ġluc id\",\"ĠComment ary\",\"Ġw itty\",\"Br andon\",\"Ġbru ising\",\"Ġ6 20\",\"es cent\",\"box ing\",\"P OL\",\"Ġ3 78\",\"R ect\",\"Ġlic ences\",\"ĠMcG ee\",\"p ressed\",\"D anny\",\"Ġj ammed\",\"ord inate\",\"Ġle th\",\"Ġdistingu ishes\",\"ĠYam aha\",\"IL S\",\"ĠH ume\",\"ĠC ategories\",\"Rober ts\",\"Ch art\",\"Ġbeet le\",\"ĠGra veyard\",\"Ġ($ )\",\"o ÄŁ\",\"Ġtw ilight\",\"are lla\",\"á ½\",\"Ġbooth s\",\"ĠH HS\",\"ĠFeld man\",\"Ġexcav ation\",\"Ġphilosoph ies\",\"at ography\",\"ĠGar age\",\"te chnology\",\"Ġunfor gettable\",\"Ġver ifying\",\"Ġsubord inates\",\"E ls\",\"Ġne b\",\"G aming\",\"EN A\",\"ĠAchieve ment\",\"it ters\",\"ĠG abe\",\"Ġd umps\",\"for cer\",\"Ġpo ignant\",\"ĠM BA\",\"ĠHe idi\",\"ime i\",\"Ġm ages\",\"Ġliber ate\",\"Ġcircum cised\",\"ĠMer maid\",\"ĠMat th\",\"t ogether\",\"ĠW ichita\",\"Ġstore front\",\"ĠAd in\",\"V II\",\"Four th\",\"Ġexplore rs\",\"W ER\",\"Not able\",\"Bro ok\",\"m ens\",\"F aith\",\"-------- -\",\"ĠJ ou\",\"¬ ¼\",\"Ġpine apple\",\"Ġam alg\",\"el n\",\"ark able\",\"ĠãĤµ ãĥ¼ãĥĨãĤ£\",\"ĠãĤµãĥ¼ãĥĨãĤ£ ãĥ¯ãĥ³\",\"Ġov arian\",\"ĠE choes\",\"Ġhairc ut\",\"Ġp av\",\"Ġch illed\",\"anas ia\",\"Ġsty led\",\"Ġd ab\",\"ni per\",\"Ġminister ial\",\"ĠD UP\",\"T an\",\"Ġsul ph\",\"ĠD eter\",\"ĠBo hem\",\"od an\",\"Ġeduc ator\",\"â ĵĺ\",\"sp ir\",\"Ch icken\",\"ĠE leanor\",\"Ġqu i\",\"Ġheav iest\",\"Ġgrasp ed\",\"U RA\",\"Ġcro oked\",\"Jess ica\",\"pro blem\",\"Ġpred etermined\",\"Ġman iac\",\"Ġbreath s\",\"ĠLauder dale\",\"Ġh obbies\",\"y z\",\"Cr ime\",\"Ġcharism a\",\"d L\",\"Ġle aping\",\"Ġk ittens\",\"Ang elo\",\"ĠJ ACK\",\"ĠSu zanne\",\"Ġhal ting\",\"ENT ION\",\"Ġswall owing\",\"ĠEarthqu ake\",\"Ġeight eenth\",\"ĠN IC\",\"ĠIN F\",\"ĠCons cious\",\"Ġparticular s\",\"circ le\",\"7 40\",\"Ġbene volent\",\"Ġ7 47\",\"Ġ4 90\",\"Ġr undown\",\"ĠVal erie\",\"ĠB UR\",\"Ġcivil isation\",\"ĠS chn\",\"W B\",\"ot ide\",\"intern ational\",\"Ġj ohn\",\"Ġ19 02\",\"Ġpe anuts\",\"Ġflav ored\",\"k us\",\"Ġro ared\",\"Ġcut off\",\"é £\",\"Ġorn ament\",\"Ġarchitect ures\",\"Ġ3 69\",\"ol or\",\"ĠWild e\",\"ĠC RC\",\"ĠAdjust ed\",\"Ġprov oking\",\"land ish\",\"Ġrational ity\",\"Ġjust ifies\",\"Ġdisp el\",\"Ġa meric\",\"ĠPol es\",\"Ø ©\",\"Ġen vis\",\"ĠD oodle\",\"ä½ ¿\",\"igs aw\",\"auld ron\",\"Techn ical\",\"T een\",\"up hem\",\"ĠX iang\",\"Ġdetract ors\",\"ĠZ i\",\"ĠJournal ists\",\"Ġconduc ive\",\"ĠVolunte ers\",\"Ġs d\",\"Know ing\",\"Ġtrans missions\",\"ĠPL AN\",\"ĠL IB\",\"Ġall uded\",\"Ġob e\",\"Ġd ope\",\"ĠGold stein\",\"Ġwavelength s\",\"ĠDest ination\",\"nd a\",\"ug i\",\"Ġattent ive\",\"ĠLe an\",\"ral tar\",\"Ġman g\",\"mb uds\",\"ak ings\",\"b ender\",\"Ġacc ol\",\"Ġcraw led\",\"N OW\",\"Min nesota\",\"Ġflour ished\",\"ĠZ up\",\"ĠSuper visor\",\"ĠOliv ier\",\"Ex cellent\",\"Ġwid en\",\"D one\",\"Ġw ig\",\"Ġmiscon ceptions\",\"Cor p\",\"W an\",\"Ġvener able\",\"ĠNot ably\",\"ĠKling on\",\"an imate\",\"Bo ost\",\"ĠS AY\",\"miss ing\",\"ibli ography\",\"mel on\",\"Ġpay day\",\"Ø ³\",\"bo le\",\"Ġve iled\",\"ĠAl phabet\",\"It alian\",\"Ġever lasting\",\"ĠR IS\",\"ĠC ree\",\"rom pt\",\"Ġh ating\",\"Ġgrin ning\",\"Ġge ographically\",\"OS H\",\"Ġwe eping\",\"ĠÂłĠÂłĠÂłĠÂł ĠÂłĠÂłĠÂłĠÂł\",\"Ġimpe cc\",\"Let ter\",\"Ġblo ated\",\"PL A\",\"ĠFe in\",\"Ġper sever\",\"Th under\",\"Ġa ur\",\"ĠR L\",\"Ġpit falls\",\"âĸ º\",\"Ġpredomin ant\",\"Ġ5 25\",\"7 18\",\"AP E\",\"7 14\",\"Ġfarm land\",\"ĠQ iao\",\"Ġv iolet\",\"ĠBah amas\",\"Ġinflic ting\",\"ĠE fficiency\",\"Ġhome brew\",\"Ġundert ook\",\"Ġcur ly\",\"ĠHard ing\",\"man ia\",\"59 6\",\"Ġtem pered\",\"Ġhar rowing\",\"ĠP ledge\",\"ĠFranken stein\",\"è ª\",\"M otion\",\"Ġpredict ably\",\"ĠExpl osion\",\"oc using\",\"er d\",\"col o\",\"FF ER\",\"Ġback field\",\"ĠV IDE\",\"ue bl\",\"N arr\",\"ĠArg ument\",\"Ġgen omic\",\"Ġbout ique\",\"Ġbatt ed\",\"ĠB inary\",\"Ġg amb\",\"ĠRh ythm\",\"67 3\",\"Ġa float\",\"ĠOlymp ia\",\"Y ING\",\"Ġend if\",\"is in\",\"Ġwin ters\",\"Ġsc attering\",\"I v\",\"D istance\",\"Ġtr u\",\"ĠCom fort\",\"Ġne xus\",\"Ġair flow\",\"ĠByz antine\",\"p ayers\",\"con i\",\"ĠB etsy\",\"D eal\",\"ĠN ug\",\"ĠContin ent\",\"red ibly\",\"Ġoptim izing\",\"al beit\",\"Ġec static\",\"ĠPro to\",\"ç ·\",\"iv ot\",\"âĸ Ħ\",\"em p\",\"rou nder\",\"Ġcl out\",\"ĠI ST\",\"66 3\",\"ĠDoll ars\",\"ĠD AC\",\"Ġsubsc ribed\",\"Ġrehears al\",\"Ġam ps\",\"ĠSh ang\",\"es m\",\"Ġspr inkle\",\"Ġassail ant\",\"ĠO o\",\"ĠCoin base\",\"T act\",\"Ġret ina\",\"Ġn uns\",\"R ON\",\"att o\",\"Ġj ug\",\"ĠSV G\",\"Ġb ikini\",\"ĠFI LE\",\"ĠFound ers\",\"ep ort\",\"ĠK P\",\"Ġrest ores\",\"ĠTh ick\",\"Ġash ore\",\"Ġappro vals\",\"R ender\",\"M AG\",\"G raham\",\"ĠCort ana\",\"ãĥ³ ãĤ¸\",\"ss h\",\"or ians\",\"ars ity\",\"ĠInsp ired\",\"u pper\",\"Ġsign alling\",\"Ġreb uke\",\"Ġfl ares\",\"Ġdownt ime\",\"Stud ies\",\"Ġstagn ation\",\"ĠSequ ence\",\"Ġgr unt\",\"Ġass ures\",\"ĠPL A\",\"59 2\",\"Ġintra ven\",\"d epend\",\"Sus an\",\"ĠManz iel\",\"Man ia\",\"Cont ract\",\"Ġsl ams\",\"Ġcult ured\",\"Ġcred itor\",\"L IST\",\"ĠH UM\",\"ĠChatt anooga\",\"serv ed\",\"Ġclo aked\",\"ĠF TP\",\"p owder\",\"ĠSt ella\",\"uct ive\",\"Ġcheap ly\",\"ĠMU CH\",\"ĠGalile o\",\"Ġsu ites\",\"spe ech\",\"Ġdeliber ations\",\"ĠCh ips\",\"« ĺ\",\"Bal ance\",\"ĠWyn ne\",\"ĠAk ron\",\"Ass et\",\"Ġhon oured\",\"Ġed ged\",\"Like wise\",\"anim ous\",\"ĠW age\",\"ĠEz ek\",\"ad vertisement\",\"ĠRT X\",\"ĠM AD\",\"Ġmigr ating\",\"ĠS QU\",\"Ġ4 75\",\"Ed ited\",\"Ġshorth and\",\"ĠBas ics\",\"Ġcro tch\",\"ĠEV EN\",\"Ġv m\",\"effic iency\",\"Ġcal ves\",\"ĠF rie\",\"ĠBrill iant\",\"Ġstri kers\",\"Ġrepent ance\",\"Ġarter ies\",\"r l\",\"B ed\",\"h ap\",\"Ġcrypt ography\",\"ĠSab res\",\"Ġ4 14\",\"vi ks\",\"ih ara\",\"aps es\",\"T alking\",\"Ġintertw ined\",\"Ġdoc ks\",\"Ġalle le\",\"ĠArt ifact\",\"ĠH IM\",\"t orn\",\"ç ķ\",\"Ġop acity\",\"ĠE ly\",\"os uke\",\"Ġn ipple\",\"Ġhand written\",\"ĠV K\",\"ĠChamber lain\",\"ĠLa os\",\"ig raph\",\"g row\",\"Ġtr illions\",\"Ġdescend ant\",\"ĠSail or\",\"as uring\",\"Ġce ilings\",\"ĠWare house\",\"f lying\",\"ĠGl ow\",\"Ġn ont\",\"Ġmiscar riage\",\"Ġrig s\",\"Ġmin istries\",\"Ġelabor ated\",\"Ġdel usional\",\"ĠHum ane\",\"Ġ3 79\",\"n ets\",\"Ġblack out\",\"add ers\",\"Ġn p\",\"ĠT ire\",\"ro sc\",\"Ġsub div\",\"Ġlink age\",\"Ġchron ological\",\"ĠHER O\",\"Ġres ettlement\",\"ĠVin yl\",\"Ġpast oral\",\"ĠMob il\",\"ĠBar bar\",\"Co oldown\",\"ĠF ritz\",\"c riminal\",\"re pe\",\"Ġbell ig\",\"ĠBre ed\",\"Ġ4 18\",\"Ġsem blance\",\"ij k\",\"Ġcur tail\",\"Ġclin ch\",\"cont ained\",\"ĠProm pt\",\"ast on\",\"Ġw i\",\"Ġpursu its\",\"5 15\",\"ĠGl oss\",\"Ġfl ips\",\"Ġcoup ons\",\"Ġcl oning\",\"ĠLike ly\",\"Rem oved\",\"ĠQu artz\",\"r ices\",\"ĠSpe ars\",\"Ġp ious\",\"Ġdep reciation\",\"ĠD are\",\"oun ces\",\"am az\",\"O nt\",\"Ġp innacle\",\"d ocker\",\"0 26\",\"ĠW yr\",\"ĠPro per\",\"Ë Ī\",\"n il\",\"By tes\",\"Ġseek er\",\"t rial\",\"Ġunf olds\",\"ĠMar se\",\"Ġextravag ant\",\"ĠSurviv ors\",\"RED ACTED\",\"ĠSpeed way\",\"ĠCra igslist\",\"sub mit\",\"ĠGener ations\",\"Ġup holding\",\"Ġblood stream\",\"ĠMiss ions\",\"ĠL awn\",\"Ġlim bo\",\"ene i\",\"H uh\",\"ĠWild cats\",\"pre p\",\"ĠMark us\",\"ĠFor bidden\",\"rit ic\",\"IN O\",\"Ġexhib iting\",\"requ ent\",\"ch uk\",\"Ġhabit ual\",\"ĠComp atibility\",\"Dr ag\",\"RIP T\",\"uj ah\",\"GR OUND\",\"Ġdelinqu ent\",\"Ġburn er\",\"Ġcontempor aries\",\"Ġgimm ick\",\"load s\",\"Ġno zzle\",\"p odcast\",\"ĠW ak\",\"ĠStat en\",\"ĠK uh\",\"ãģ ĵ\",\"inter rupted\",\"Ġinv incible\",\"ĠBurn ett\",\"cig arette\",\"ĠPeb ble\",\"ĠTem porary\",\"ĠMar ino\",\"58 2\",\"Ġwast eland\",\"ident ly\",\"T x\",\"Ġr ite\",\"ĠPan asonic\",\"ĠM iddles\",\"ĠHort on\",\"ae us\",\"Ġc uring\",\"Ġm ats\",\"Ġadj ourn\",\"Ġfears ome\",\"pe z\",\"bo ats\",\"Ġpro pell\",\"Ġconflic ted\",\"ĠAng er\",\"Ġinsurg ent\",\"K arl\",\"Ġco ales\",\"Ġsouth western\",\"Ġdis su\",\"ĠO vert\",\"******** ****\",\"Ġbox ed\",\"ĠBr une\",\"aa a\",\"Ġgard ening\",\"ĠEng el\",\"tr acks\",\"Ġpur ified\",\"Ġplace holder\",\"ĠL ikes\",\"Ġd an\",\"G ab\",\"Ġe ct\",\"ĠF aw\",\"ĠEl iot\",\"Ġ' ,\",\"otrop ic\",\"ĠRu in\",\"hed on\",\"Ġca ul\",\"Ġa ft\",\"ĠCad illac\",\"gh a\",\"ass ian\",\"ud eb\",\"ĠT ick\",\"Ġadjust s\",\"AR GET\",\"5 37\",\"isc he\",\"ant y\",\"ĠFried rich\",\"ĠBl izz\",\"ĠA OL\",\"Camp aign\",\"Ġmamm al\",\"ĠVe il\",\"ĠK ev\",\"ĠMaur it\",\"ĠDam ien\",\"N ation\",\"E astern\",\"Ġ{ :\",\"Ġ= ================================\",\"Ġstereotyp ical\",\"Ġatt ic\",\"ĠCy borg\",\"requ ire\",\"Ġaward ing\",\"ĠPap ua\",\"bt n\",\"b ent\",\"B oo\",\"Ġ( =\",\"ĠX ander\",\"ĠSomers et\",\"Ġcatch y\",\"Ġcert ify\",\"STR UCT\",\"Ġit al\",\"Ġt ides\",\"ĠBr ands\",\"G ray\",\"comp etitive\",\"Ġcur ator\",\"ĠD G\",\"omin ium\",\"ĠGM Os\",\"ci ating\",\"ĠCarm en\",\"ow ard\",\"Balt imore\",\"Ġr gb\",\"C u\",\"Ġwip es\",\"spe ll\",\"IT NESS\",\"Ġsummar izes\",\"ĠRe vis\",\"Ġwhistlebl owers\",\"ĠBre ach\",\"Ġcro chet\",\"k os\",\"ews ki\",\"Ġrep et\",\"Ġcrim son\",\"ĠKar achi\",\"read able\",\"dim ension\",\"ĠI gor\",\"ild ed\",\"ĠZ ed\",\"ĠKe ane\",\"ĠCos metic\",\"DE P\",\"Ġretreat ing\",\"ĠU A\",\"ens ical\",\"Ġd usk\",\"ĠDick ens\",\"Ġaren as\",\"ĠPass age\",\"level s\",\"Ġcur v\",\"P ope\",\"Ġch ores\",\"ĠEl ise\",\"ĠComp ass\",\"b ub\",\"Ġmamm alian\",\"ĠSans krit\",\"ĠAN C\",\"ĠCr ack\",\"Q ual\",\"L aun\",\"amp unk\",\"Ġlearn ers\",\"Ġglam orous\",\"Ġfur the\",\"erm ott\",\"c and\",\"Gener ic\",\"Ġnarr ated\",\"Ġdisorder ly\",\"ĠTrans actions\",\"ĠDet ention\",\"ĠR oku\",\"Ä į\",\"Ġunder statement\",\"ĠS aur\",\"ĠRodrig o\",\"ĠAS AP\",\"S in\",\"Ġre joice\",\"Method s\",\"Ġelectro de\",\"Ġworsh ipped\",\"Ġid i\",\"ĠPhys icians\",\"Ġpop up\",\"Ġde ft\",\"ĠRem oval\",\"ĠBu enos\",\"ver bs\",\"Ġfun k\",\"ush a\",\"rict ion\",\"ore a\",\"ĠBang alore\",\"ĠKen obi\",\"zz i\",\"Ġnorm ative\",\"Ġgobl ins\",\"Ġcaf es\",\"ĠUN CLASSIFIED\",\"ĠF ired\",\"S IGN\",\"Ġs clerosis\",\"ĠV oter\",\"ĠSon ny\",\"ĠExt end\",\"ĠEV s\",\"Ar senal\",\"Ġp si\",\"Ġwid est\",\"ĠT us\",\"Ġlo oms\",\"Ġjust ifying\",\"ĠGr anger\",\"è ¯\",\"Ref er\",\"58 3\",\"Ġflour ishing\",\"ab re\",\"Ġr ave\",\"ĠCont ra\",\"Ġ18 98\",\"Add s\",\"Ġf ul\",\"ĠCo oke\",\"some one\",\"= #\",\"67 1\",\"Ġy ak\",\"Ġar te\",\"ĠMis cellaneous\",\"ĠDet ection\",\"ĠCl ancy\",\"â ģ\",\"ass ies\",\"Ġval iant\",\"ĠFemin ist\",\"cor ruption\",\"V el\",\"P ear\",\"Ġsucc inct\",\"Ġquick est\",\"k w\",\"Ġsp itting\",\"ĠL ibraries\",\"åħ ī\",\"ant z\",\"D ad\",\"ĠSpec ifications\",\"rup ulous\",\"and r\",\"RES ULTS\",\"Ġsnow ball\",\"Ġpred is\",\"ĠB axter\",\"ĠNurs ing\",\"ĠCh aff\",\"s we\",\"Ġout age\",\"Ġnest ing\",\"Ġnotor iety\",\"tr igger\",\"on ite\",\"j on\",\"Ġf ou\",\"ook ed\",\"ĠCelebr ity\",\"re ality\",\"Ġfat ig\",\"Ġhug ging\",\"Ġbother s\",\"ĠPan zer\",\"ĠCh andra\",\"fig ured\",\"Ġvol ts\",\"ĠCloud s\",\"Ġfee ble\",\"ĠCur ve\",\"ĠAs us\",\"78 6\",\"abs or\",\"ĠV ICE\",\"ĠH ess\",\"Ġmanufact ures\",\"Ġgri zz\",\"ĠPower ful\",\"ac id\",\"Ġsub sections\",\"ĠKrug man\",\"ĠAl ps\",\"is u\",\"Ġsequ est\",\"ĠUlt ron\",\"ĠT inker\",\"ĠGo ose\",\"Ġmism atch\",\"Att orney\",\"Ġmorph ology\",\"ĠSix ers\",\"ut tered\",\"ĠE LECT\",\"gr an\",\"Rus sell\",\"ĠG SL\",\"Ġfort night\",\"Ġ. )\",\"Ġapost le\",\"pr one\",\"el ist\",\"Unt itled\",\"ĠIm plementation\",\"ist ors\",\"Ġtank er\",\"Ġpl ush\",\"Ġattend ants\",\"ĠT ik\",\"ĠGreen wich\",\"ĠY on\",\"ĠSP L\",\"cell s\",\"unt led\",\"S olution\",\"ĠQu Ã©\",\"Ġvac ated\",\"Ġupt ick\",\"ĠMer idian\",\"æ ĥ\",\"ĠDr ill\",\"9 25\",\"58 4\",\"Ġrenov ated\",\"ĠKub rick\",\"zy k\",\"Ġl ousy\",\"pp el\",\"ohyd rate\",\"ĠI zzy\",\"lesi astical\",\"CC C\",\"ĠAj ax\",\"Ġad apters\",\"ĠPetra eus\",\"Ġaffirm ation\",\"ĠST OR\",\"le ms\",\"ad oes\",\"ĠConstantin ople\",\"Ġp onies\",\"Ġl ighthouse\",\"Ġadherent s\",\"ĠBre es\",\"omorph ic\",\"Fight ing\",\"Ġpl aster\",\"ĠP VC\",\"ĠOb st\",\"Ġdear ly\",\"ĠTo oth\",\"icks on\",\"Ġsh aming\",\"P lex\",\"A gg\",\"ĠâĢ¦ \\\"\",\"Ġsub reddits\",\"Ġpige on\",\"ĠResident ial\",\"ĠPass ing\",\"Ġl um\",\"ĠP ension\",\"Ġpessim istic\",\"Ġ4 32\",\"z inski\",\"c ade\",\"0 75\",\"Ġapolog ised\",\"iy ah\",\"Put ting\",\"Ġgloom y\",\"ĠLy me\",\"=-=-=-=- =-=-=-=-\",\"ĠT ome\",\"ĠPsych iatric\",\"ĠH IT\",\"c ms\",\"ap olog\",\"Ġbreak er\",\"Ġdeep en\",\"Ġtheor ist\",\"ĠHigh lands\",\"Ġb aker\",\"Ġst aples\",\"Ġinterf ered\",\"ĠAb ortion\",\"jo ined\",\"ch u\",\"Ġform ulate\",\"Ġvacc inations\",\"Ġban ter\",\"phe us\",\"Ġoutfield er\",\"ĠM eter\",\"Ġ# ####\",\"Ġ18 95\",\"Ġnarrow ing\",\"ĠST ORY\",\"f p\",\"ĠC ST\",\"ign ore\",\"Ġproclaim ing\",\"ĠR U\",\"ĠB ALL\",\"yn a\",\"65 3\",\"Ġpos it\",\"P RE\",\"59 4\",\"ĠRegist rar\",\"ĠPil grim\",\"ic io\",\"Ġpre tt\",\"Ġlif eless\",\"Ġ__ _\",\"Ne igh\",\"ĠCh urches\",\"orn o\",\"Ġor cs\",\"Ġkind red\",\"ĠAud it\",\"Ġmillenn ial\",\"ĠPers ia\",\"g ravity\",\"ĠDis ability\",\"ĠD ARK\",\"W s\",\"od on\",\"Ġgrand daughter\",\"ĠBro oke\",\"ĠA DA\",\"ER A\",\"Ġpick ups\",\"ĠWil kinson\",\"ĠSh ards\",\"ĠN K\",\"Ġexp el\",\"ĠKis lyak\",\"Ġj argon\",\"Ġpolar ized\",\"ian e\",\"Pub lisher\",\"Ġreb utt\",\"Ġapprehens ion\",\"ĠK essler\",\"Ġpr ism\",\"F UL\",\"19 64\",\"ĠL oll\",\"ä ¿\",\"le thal\",\"Å Ł\",\"Ġg hetto\",\"Ġb oulder\",\"ĠSlow ly\",\"ĠOsc ars\",\"ĠInst ruction\",\"ĠUl tr\",\"ĠM oe\",\"N ich\",\"ĠP ATH\",\"( *\",\"ĠRE LEASE\",\"un ing\",\"rou se\",\"en eg\",\"Ġre imb\",\"ĠDet ected\",\"Do S\",\"Ġster ling\",\"Ġaggreg ation\",\"ĠLone ly\",\"ĠAtt end\",\"hig her\",\"Ġairst rike\",\"ks on\",\"SE LECT\",\"Ġdef lation\",\"ĠHer rera\",\"C ole\",\"rit ch\",\"Ġadvis able\",\"F ax\",\"Ġwork around\",\"Ġp id\",\"mort em\",\"ers en\",\"Ġtyp o\",\"Ġal um\",\"78 2\",\"ĠJam al\",\"script s\",\"Ġcapt ives\",\"ĠPres ence\",\"ĠLie berman\",\"angel o\",\"Ġalcohol ism\",\"ass i\",\"Ġrec ite\",\"Ġgap ing\",\"Ġbask ets\",\"ĠG ou\",\"Brow ser\",\"ne au\",\"Ġcorrect ive\",\"und a\",\"sc oring\",\"ĠX D\",\"Ġfil ament\",\"Ġdeep ening\",\"ĠStain less\",\"Int eger\",\"Ġbu ggy\",\"Ġten ancy\",\"ĠMub arak\",\"Ġt uple\",\"ĠD roid\",\"ĠS itting\",\"Ġforfe it\",\"ĠRasm ussen\",\"ixt ies\",\"es i\",\"ĠKim mel\",\"Ġmetic ulously\",\"Ġap opt\",\"ĠS eller\",\"08 8\",\"ec ake\",\"hem atically\",\"T N\",\"Ġmind less\",\"Ġdig s\",\"ĠAcc ord\",\"ons ense\",\"em ing\",\"br ace\",\"Ġe Book\",\"ĠDist ribut\",\"ĠInvest ments\",\"w t\",\"] ),\",\"beh avior\",\"56 3\",\"Ġbl inding\",\"ĠPro testers\",\"top ia\",\"Ġreb orn\",\"ĠKel vin\",\"ĠDo ver\",\"ĠD airy\",\"ĠOut s\",\"Ġ[ /\",\"Ï Ģ\",\"b p\",\"ĠVan ity\",\"ĠRec ap\",\"ĠHOU SE\",\"ĠF ACE\",\"Ġ4 22\",\"69 2\",\"ĠAnt ioch\",\"cook ed\",\"Ġcoll ide\",\"Ġa pr\",\"Ġsle eper\",\"ĠJar vis\",\"Ġalternative ly\",\"ĠLe aves\",\"ĠM aw\",\"Ġantiqu ity\",\"ĠAdin ida\",\"Ġab user\",\"PokÃ© mon\",\"Ġass orted\",\"ĠRev ision\",\"ĠP iano\",\"ĠG ideon\",\"O cean\",\"Ġsal on\",\"Ġbust ling\",\"ogn itive\",\"ĠRah man\",\"Ġwa iter\",\"Ġpres ets\",\"ĠO sh\",\"ĠG HC\",\"oper ator\",\"Ġrept iles\",\"Ġ4 13\",\"ĠG arr\",\"ĠCh ak\",\"Ġhas hes\",\"Ġfail ings\",\"Ġfolk lore\",\"Ġab l\",\"ĠC ena\",\"ĠMac Arthur\",\"ĠCOUR T\",\"Ġperipher y\",\"app ers\",\"Ġreck oned\",\"ĠInf lu\",\"ĠC ET\",\"Ġ3 72\",\"ĠDefin itive\",\"ass ault\",\"4 21\",\"Ġreservoir s\",\"Ġd ives\",\"ĠCo il\",\"DA Q\",\"Ġvivid ly\",\"ĠR J\",\"ĠBel lev\",\"Ġec lectic\",\"ĠShow down\",\"ĠK M\",\"ip ed\",\"reet ings\",\"ĠAs uka\",\"L iberal\",\"ĠÏ Ħ\",\"Ġbystand ers\",\"ĠGood win\",\"uk ong\",\"S it\",\"ĠT rem\",\"Ġcrim inally\",\"ĠCirc us\",\"ch rome\",\"88 7\",\"Ġnan op\",\"ĠOb i\",\"ĠL OW\",\"o gh\",\"ĠAuth ors\",\"ob yl\",\"Ur ban\",\"Ġt i\",\"ĠWe ir\",\"t rap\",\"ag y\",\"Ġparent heses\",\"Ġout numbered\",\"Ġcounter productive\",\"ĠTob ias\",\"ub is\",\"P arser\",\"ST AR\",\"Ġsyn aptic\",\"ĠG ears\",\"Ġh iber\",\"Ġdebunk ed\",\"Ġex alted\",\"aw atts\",\"H OU\",\"Ch urch\",\"ĠPix ie\",\"ĠU ri\",\"ĠForm ation\",\"ĠPred iction\",\"C EO\",\"Ġthro tt\",\"ĠBrit ann\",\"ĠMad agascar\",\"ë ĭ\",\"Ġbill boards\",\"ĠRPG s\",\"ĠBe es\",\"complete ly\",\"F IL\",\"Ġdoes nt\",\"ĠGreen berg\",\"re ys\",\"Ġsl ing\",\"Ġempt ied\",\"ĠPix ar\",\"ĠDh arma\",\"l uck\",\"ingu ished\",\"Ġend ot\",\"Ġbab ys\",\"05 9\",\"che st\",\"r ats\",\"Ġr idden\",\"Ġbeet les\",\"Ġillum inating\",\"Ġfict itious\",\"ĠProv incial\",\"Ġ7 68\",\"Ġshe pherd\",\"ĠR ender\",\"Ġ18 96\",\"C rew\",\"Ġmold ed\",\"ĠXia omi\",\"ĠSp iral\",\"Ġdel im\",\"Ġorgan ising\",\"Ġho ops\",\"ĠBe i\",\"z hen\",\"Ġfuck in\",\"Ġdec ad\",\"Ġun biased\",\"am my\",\"sw ing\",\"Ġsmugg led\",\"Ġk ios\",\"ĠP ERSON\",\"ĠInquis itor\",\"Ġsnow y\",\"Ġscrap ing\",\"ĠBurg ess\",\"P tr\",\"ag ame\",\"R W\",\"Ġdro id\",\"ĠL ys\",\"ĠCass andra\",\"Jac ob\",\"Ġ35 4\",\"Ġpast ure\",\"Ġfr anc\",\"ĠScot ch\",\"ĠEnd s\",\"ĠI GF\",\"def inition\",\"Ġhyster ical\",\"ĠBrown e\",\"77 1\",\"Ġmobil ization\",\"æ ķ\",\"iqu eness\",\"Th or\",\"Ġspear headed\",\"Ġembro iled\",\"Ġconject ure\",\"jud icial\",\"Ch oice\",\"Ġpaper back\",\"P ir\",\"Ġrec overs\",\"ĠSur ge\",\"ĠSh ogun\",\"ĠPed iatrics\",\"ãģ ł\",\"Ġsweep s\",\"ĠLabor atories\",\"ĠP acks\",\"al us\",\"add in\",\"Ġhead lights\",\"g ra\",\"Ev idence\",\"COL OR\",\"Ad min\",\"Ĭ ±\",\"Ġconco ct\",\"s ufficient\",\"Ġun marked\",\"Ġrich ness\",\"Ġdiss ertation\",\"Ġseason ing\",\"Ġg ib\",\"ĠM ages\",\"un ctions\",\"ĠN id\",\"che at\",\"ĠTM Z\",\"c itizens\",\"ĠCatholic ism\",\"n b\",\"Ġdisemb ark\",\"ĠPROG RAM\",\"a ques\",\"Ty ler\",\"Or g\",\"ĠSl ay\",\"ĠN ero\",\"ĠTown send\",\"IN TON\",\"te le\",\"Ġmes mer\",\"9 01\",\"Ġfire ball\",\"ev idence\",\"aff iliated\",\"ĠFrench man\",\"ĠAugust a\",\"0 21\",\"Ġs led\",\"Ġre used\",\"ĠImmun ity\",\"Ġwrest le\",\"assemb led\",\"Mar ia\",\"Ġgun shots\",\"ĠBarb ie\",\"Ġcannabin oids\",\"ĠTo ast\",\"ĠK inder\",\"IR D\",\"Ġre juven\",\"Ġg ore\",\"Ġrupt ure\",\"Ġbre aching\",\"ĠCart oon\",\"Ġ4 55\",\"ĠPale o\",\"6 14\",\"Ġspe ars\",\"ĠAm es\",\"ab us\",\"Mad ison\",\"GR OUP\",\"Ġab orted\",\"y ah\",\"Ġfel on\",\"Ġcaus ation\",\"Ġprep aid\",\"Ġp itted\",\"op lan\",\"ĠShel ley\",\"ĠRus so\",\"ĠP agan\",\"Ġwill fully\",\"ĠCan aver\",\"und rum\",\"ĠSal ary\",\"ĠAr paio\",\"read er\",\"ĠR ational\",\"ĠOver se\",\"ĠCa uses\",\"Ġ* .\",\"Ġw ob\",\"Ke ith\",\"ĠCons ent\",\"man ac\",\"77 3\",\"6 23\",\"Ġfate ful\",\"et imes\",\"Ġspir ited\",\"ĠD ys\",\"Ġhe gemony\",\"Ġboy cot\",\"ĠEn rique\",\"em outh\",\"Ġtim elines\",\"ĠSah ara\",\"ĠRel ax\",\"ĠQuin cy\",\"ĠLess ons\",\"ĠE QU\",\"SE A\",\"N K\",\"ĠCost co\",\"Incre ase\",\"Ġmotiv ating\",\"ĠCh ong\",\"am aru\",\"ĠDiv ide\",\"Ġped igree\",\"ĠTasman ia\",\"ĠPrel ude\",\"L as\",\"9 40\",\"57 4\",\"Ġch au\",\"ĠSp iegel\",\"un ic\",\"-- >\",\"ĠPhil ips\",\"ĠKaf ka\",\"Ġuphe aval\",\"Ġsent imental\",\"Ġsa x\",\"ĠAk ira\",\"ser ial\",\"Mat rix\",\"Ġelect ing\",\"Ġcomment er\",\"ĠNeb ula\",\"ple ts\",\"ĠNad u\",\"ĠAd ren\",\"Ġen shr\",\"ĠR AND\",\"fin ancial\",\"ĠCly de\",\"uther ford\",\"Ġsign age\",\"Ġde line\",\"Ġphosph ate\",\"rovers ial\",\"f ascist\",\"ĠV all\",\"ĠBeth lehem\",\"Ġfor s\",\"Ġeng lish\",\"S olid\",\"N ature\",\"Ġv a\",\"ĠGu ests\",\"Ġtant al\",\"Ġauto immune\",\";;;;;;;; ;;;;\",\"ĠTot ally\",\"ĠO v\",\"Ġdef ences\",\"ĠCoc onut\",\"Ġtranqu il\",\"Ġpl oy\",\"Ġflav ours\",\"ĠFl ask\",\"ãĤ¨ ãĥ«\",\"ĠWest on\",\"ĠVol vo\",\"8 70\",\"Ġmicro phones\",\"ver bal\",\"R PG\",\"Ġi ii\",\"; }\",\"0 28\",\"Ġhead lined\",\"Ġprim ed\",\"Ġho ard\",\"ĠSh ad\",\"ĠEN TER\",\"Ġtri angular\",\"Ġcap it\",\"l ik\",\"ĠAn cients\",\"Ġl ash\",\"Ġconv ol\",\"Ġcolon el\",\"en emy\",\"G ra\",\"Ġpub s\",\"ut ters\",\"Ġassign s\",\"ĠPen et\",\"ĠMon strous\",\"ĠBow en\",\"il ver\",\"H aunted\",\"ĠD ing\",\"start ed\",\"pl in\",\"Ġcontamin ants\",\"ĠDO E\",\"ff en\",\"ĠTechn ician\",\"R y\",\"Ġrob bers\",\"Ġhot line\",\"ĠGuard iola\",\"ĠKau fman\",\"row er\",\"ĠDres den\",\"ĠAl pine\",\"E lf\",\"Ġf mt\",\"ĠS ard\",\"urs es\",\"g pu\",\"Un ix\",\"Ġunequiv ocally\",\"ĠCitizens hip\",\"qu ad\",\"m ire\",\"ĠS weeney\",\"B attery\",\"6 15\",\"Ġpanc akes\",\"Ġo ats\",\"M aps\",\"ĠCont rast\",\"mbuds man\",\"ĠE PS\",\"Ġsub committee\",\"Ġsour cing\",\"Ġs izing\",\"ĠBuff er\",\"ĠMand atory\",\"Ġmoder ates\",\"ĠPattern s\",\"ĠCh ocobo\",\"ĠZ an\",\"ĠSTAT ES\",\"ĠJud ging\",\"ĠIn her\",\"* :\",\"Ġb il\",\"ĠY en\",\"Ġexh ilar\",\"oll ower\",\"z ers\",\"Ġsn ug\",\"max imum\",\"Ġdesp icable\",\"ĠP ACK\",\"ĠAn nex\",\"Ġsarcast ic\",\"Ġlate x\",\"Ġt amp\",\"ĠS ao\",\"b ah\",\"ĠRe verend\",\"ĠChin atown\",\"ĠA UT\",\"d ocumented\",\"ĠGA BA\",\"ĠCan aan\",\"ĠÙ ħ\",\"Ġgovern s\",\"pre v\",\"E sc\",\"ĠEst imates\",\"OS P\",\"Ġendeav our\",\"ĠCl osing\",\"omet ime\",\"every one\",\"Ġwor sen\",\"Ġsc anners\",\"Ġdev iations\",\"ĠRobot ics\",\"ĠCom pton\",\"Ġsorce rer\",\"Ġend ogenous\",\"Ġem ulation\",\"ĠPier cing\",\"ĠA ph\",\"ĠS ocket\",\"Ġb ould\",\"ĠO U\",\"ĠBorder lands\",\"Ġ18 63\",\"G ordon\",\"ĠW TO\",\"Ġrestrict s\",\"Ġmosa ic\",\"Ġmel odies\",\"ç Ħ\",\"T ar\",\"Ġdis son\",\"ĠProv ides\",\"Ġ ......\",\"b ek\",\"F IX\",\"Ġbro om\",\"ans hip\",\"Do ctors\",\"Ġner ds\",\"ĠReg ions\",\"na issance\",\"Ġmet e\",\"Ġcre pt\",\"pl ings\",\"Ġgirlfriend s\",\"kn it\",\"ig ent\",\"ow e\",\"Ġus hered\",\"ĠB az\",\"M obil\",\"4 34\",\"ĠPres ents\",\"orig in\",\"Ġins omnia\",\"ĠA ux\",\"4 39\",\"ĠCh ili\",\"irs ch\",\"G AME\",\"Ġgest ation\",\"alg ia\",\"rom ising\",\"$ ,\",\"c row\",\"ĠIn spection\",\"at omic\",\"Rel ations\",\"J OHN\",\"rom an\",\"ĠClock work\",\"ĠBak r\",\"m one\",\"M ET\",\"Ġthirst y\",\"Ġb c\",\"Ġfacult ies\",\"R um\",\"Ġnu ance\",\"ĠD arius\",\"ple ting\",\"fter s\",\"etch up\",\"Reg istration\",\"ĠK E\",\"R ah\",\"Ġpref erential\",\"ĠL ash\",\"ĠH H\",\"Val id\",\"ĠN AV\",\"Ġstar ve\",\"ĠG ong\",\"z ynski\",\"ĠAct ress\",\"Ġw ik\",\"Ġun accompanied\",\"lv l\",\"Br ide\",\"AD S\",\"ĠCommand o\",\"ĠVaugh n\",\"Wal let\",\"Ġho pping\",\"ĠV ie\",\"Ġcave ats\",\"Ġal as\",\"if led\",\"ab use\",\"66 1\",\"Ġib n\",\"Ġg ul\",\"Ġrob bing\",\"t il\",\"IL A\",\"Ġmit igating\",\"Ġapt ly\",\"Ġty rant\",\"Ġmid day\",\"ĠGil more\",\"ĠDe cker\",\"ĠÂ§ Â§\",\"part ial\",\"Ex actly\",\"Ġphen otype\",\"Ġ[+ ]\",\"ĠP lex\",\"ĠI ps\",\"vers ions\",\"Ġe book\",\"Ġch ic\",\"g ross\",\"\\\":\\\" \\\"},{\\\"\",\"ĠSur prisingly\",\"M organ\",\"Ġresid ues\",\"ĠConf ederation\",\"in feld\",\"Ġl yr\",\"mod erate\",\"Ġperpend icular\",\"V K\",\"Ġsynchron ized\",\"Ġrefres hed\",\"Ġad ore\",\"ĠTor ment\",\"ol ina\",\"Ġ26 00\",\"Item Tracker\",\"Ġp ies\",\"ĠF AT\",\"ĠR HP\",\"0 48\",\"ĠRES P\",\"ĠB J\",\"all ows\",\"P and\",\"Ġunw elcome\",\"ĠV oc\",\"ĠBast ard\",\"ĠO W\",\"ĠL AR\",\"ĠHeal er\",\"Environment al\",\"ĠKen yan\",\"ĠTr ance\",\"ĠP ats\",\"Ġali ases\",\"ĠGar field\",\"Ġcampaign er\",\"Ġadvance ments\",\"ĠOkin awa\",\"ĠC oh\",\"ows ky\",\"Ġstar ved\",\"Ġsize able\",\"Ġ: -)\",\"Ġm RNA\",\"Ġsusp ensions\",\"ist ar\",\"Scot land\",\"Pr in\",\"-------------------------------- ----------------\",\"Ġ50 2\",\"Ġteasp oons\",\"Ġ10 50\",\"Ġcoerc ive\",\"ĠMason ic\",\"edd ed\",\"ĠPass enger\",\"Ġl att\",\"Ġbr aces\",\"ĠSt eal\",\"ĠNY T\",\"ĠK ats\",\"ĠCel est\",\"ae z\",\"T u\",\"ĠCoul ter\",\"ðŁ ĺ\",\"Fl ickr\",\"ĠWil mington\",\"ith s\",\"++ ;\",\"Ġv ending\",\"Ġneg ro\",\"ĠPh i\",\"ĠYellow stone\",\"Call back\",\"Ġsh ampoo\",\"ĠSh ades\",\"w at\",\"Ġsuper human\",\"Ġridic uled\",\"Ġhol iest\",\"om bo\",\"Ġintern s\",\"Ġh one\",\"ĠPar agu\",\"UR I\",\"Ġd angling\",\"ãĤ »\",\"so v\",\"ict ional\",\"av ailability\",\"Ġrev ocation\",\"Ġd ow\",\"in ic\",\"ĠTHE IR\",\"Ġis o\",\"Ġout ings\",\"ĠLeth al\",\"Ġ) ))\",\"Ġinacc ur\",\"Ġout landish\",\"Ġan us\",\"let ico\",\"id on\",\"l ol\",\"Ġun regulated\",\"Ġsuccumb ed\",\"Ġc uff\",\"ĠWast eland\",\"let al\",\"Ġsub str\",\"Ġcoff ers\",\"Ġautom akers\",\"ov i\",\"ĠX ue\",\"ĠDayton a\",\"Ġjar ring\",\"Ġf umes\",\"Ġdisband ed\",\"z ik\",\"itt on\",\"Ġstriking ly\",\"Ġsp ores\",\"Ad apter\",\".) :\",\"ĠLynd on\",\"ival ry\",\"Ġor ally\",\"Ġtumult uous\",\"Ġdisple asure\",\"Ġcon es\",\"or rect\",\"Ġappe ase\",\"Ġder by\",\"ĠTrip oli\",\"ĠAl ess\",\"Ġp oked\",\"ĠGu ilty\",\"v P\",\"En ough\",\"Ġorig inals\",\"6 99\",\"Ġrabb i\",\"Ġproverb ial\",\"Ġpostp one\",\"el ope\",\"ĠMist y\",\"Ġstaff ed\",\"ĠUn employment\",\"redit ary\",\"Ġdilig ent\",\"re comm\",\"me asures\",\"as in\",\"8 25\",\"Ġpond s\",\"Ġmm ol\",\"ĠS AR\",\"ĠC ARE\",\"Ġ3 71\",\"Ġclen ched\",\"ĠCors air\",\"Ġcaric ature\",\"z n\",\"att ach\",\"ĠSch ro\",\"spe ak\",\"p ainted\",\"ĠS uc\",\"ĠE NT\",\"Ġcell ul\",\"ĠP aid\",\"di agn\",\"WH ERE\",\"Ġtext ed\",\"B arn\",\"Ġret racted\",\"ĠRe ferred\",\"S av\",\"Ġup keep\",\"Ġwork places\",\"ĠTok ens\",\"Ġampl ify\",\"cl inical\",\"Ġmult ic\",\"mber g\",\"Ġconvol uted\",\"Reg ion\",\"5 65\",\"ĠTop ic\",\"Ġsn ail\",\"Ġsal ine\",\"Ġins urrection\",\"ĠPet r\",\"f orts\",\"B AT\",\"ĠNav ajo\",\"Ġrud imentary\",\"ĠLak sh\",\"OND ON\",\"Me asure\",\"Ġtransform er\",\"ĠGodd ard\",\"Ġcoinc ides\",\"ir in\",\"R ex\",\"ĠB ok\",\"qu it\",\"Ġshotgun s\",\"Ġprolet arian\",\"Ġsc orp\",\"ĠAd a\",\"5 14\",\"Ġsl ander\",\"record ed\",\"Ġemb ell\",\"ris ome\",\"Ġapolog izing\",\"ĠMul cair\",\"ĠGib raltar\",\"Cl a\",\"Ġall ot\",\"ĠAtt ention\",\"Ġ4 33\",\"le ave\",\"Ġwh ine\",\"ĠIss a\",\"ĠFa ust\",\"ĠBar ron\",\"hen y\",\"Ġvictim ized\",\"J ews\",\"Ġnurt uring\",\"ett el\",\"W inged\",\"ĠSub tle\",\"Ġflavor ful\",\"ĠRep s\",\"eng ed\",\"call back\",\"Ġdirection al\",\"Ġcl asp\",\"ĠDirect ions\",\"plan et\",\"icult ure\",\"Hel per\",\"ic ion\",\"ac ia\",\"Ġç ¥ŀ\",\"Ġsur ges\",\"Ġcan oe\",\"ĠPrem iership\",\"be en\",\"Ġdef ied\",\"ĠTro oper\",\"Ġtrip od\",\"Ġgas p\",\"ĠE uph\",\"ĠAd s\",\"vern ight\",\"high ly\",\"R ole\",\"Ġent angled\",\"ĠZe it\",\"6 18\",\"ĠRust y\",\"Ġhaven s\",\"ĠVaugh an\",\"HA EL\",\"ĠSER VICE\",\"/ ,\",\"Ġstr icken\",\"Ġdel usions\",\"Ġb is\",\"ĠH af\",\"Ġgrat ification\",\"Ġent icing\",\"UN CH\",\"Ad ams\",\"ĠOL ED\",\"ĠBeet le\",\"Ġ18 99\",\"ĠSO FTWARE\",\"ateg or\",\"V L\",\"ĠTot em\",\"ĠG ators\",\"AT URES\",\"Ġimped ance\",\"Reg istered\",\"ĠC ary\",\"ĠAer ial\",\"on ne\",\"en ium\",\"Ġd red\",\"ĠBe g\",\"Ġconcurrent ly\",\"Ġsuper power\",\"ĠX an\",\"j ew\",\"imes ter\",\"ĠDick inson\",\"âĶ ģ\",\"F la\",\"Ġp ree\",\"ĠRoll ins\",\"© ¶æ\",\"Ġden omination\",\"ĠL ana\",\"5 16\",\"Ġinc iting\",\"sc ribed\",\"j uries\",\"ĠWond ers\",\"app roximately\",\"Ġsusp ending\",\"Ġmountain ous\",\"ĠL augh\",\"oid al\",\"N s\",\"Det ect\",\") =\",\"ĠL uthor\",\"ĠSchwarz enegger\",\"ĠMull er\",\"ĠDev i\",\"ec ycle\",\"J ar\",\"6 13\",\"ĠL ongh\",\"B ah\",\"ĠSP ORTS\",\"n w\",\"Ġref inement\",\"Ġwater ways\",\"Ġd iner\",\"Bl ade\",\"68 3\",\"F ac\",\"Ġinitial s\",\"Ġro g\",\"Ġparan ormal\",\"B UT\",\"Ġ[ (\",\"ĠSw anson\",\"ĠM esh\",\"âĸ ¬\",\"Impro ve\",\"ĠRad iation\",\"ĠEst her\",\"ĠE sk\",\"ĠA ly\",\"ik y\",\"Ġir rad\",\"ĠBuck ingham\",\"Ġref ill\",\"Ġ. _\",\"Re pe\",\"CON CLUS\",\"Ġdifferent iated\",\"Ġchi rop\",\"ĠAt kins\",\"Pat tern\",\"Ġexc ise\",\"Ġcab al\",\"N SA\",\"ĠST A\",\"ĠS IL\",\"ĠPar aly\",\"Ġr ye\",\"ĠHow ell\",\"ĠCount down\",\"ness es\",\"alys ed\",\"Ġres ize\",\"ãĤ ½\",\"Ġbudget ary\",\"ĠStr as\",\"w ang\",\"Ġap iece\",\"Ġprecinct s\",\"Ġpe ach\",\"Ġsky line\",\"Ġ35 3\",\"pop ular\",\"App earances\",\"ĠMechan ics\",\"ĠDev Online\",\"S ullivan\",\"Z en\",\"Ġp u\",\"op olis\",\"5 44\",\"Ġde form\",\"Ġcounter act\",\"ĠL ange\",\"Ġ4 17\",\"Con sole\",\"77 4\",\"Ġnodd ing\",\"Ġpopul ism\",\"Ġhe p\",\"Ġcoun selling\",\"compl iance\",\"U FF\",\"Ġunden iably\",\"Ġrail ing\",\"ĠHor owitz\",\"ĠSim one\",\"ĠBung ie\",\"Ġa k\",\"ĠTal ks\",\"x ff\",\"fl ake\",\"Cr ash\",\"Ġsweat y\",\"Ġban quet\",\"ĠOFF IC\",\"Ġinvent ive\",\"Ġastron omer\",\"ĠStam ford\",\"ĠSc are\",\"ĠGRE EN\",\"olic ited\",\"Ġr usher\",\"Ġcent rist\",\"ight ing\",\"Ġsub class\",\"Ġdis av\",\"Ġdef und\",\"ĠN anto\",\"oci ate\",\"m ast\",\"Ġpac if\",\"Ġm end\",\"e ers\",\"imm igration\",\"ESS ION\",\"Ġnumber ing\",\"Ġlaugh able\",\"ĠEnd ed\",\"v iation\",\"em ark\",\"P itt\",\"Ġmetic ulous\",\"ĠL F\",\"Ġcongrat ulated\",\"ĠBir ch\",\"Ġsway ed\",\"Ġsemif inals\",\"Ġhum ankind\",\"m atter\",\"ĠEqu ip\",\"opa usal\",\"S aid\",\"ĠLay out\",\"Ġvo icing\",\"Ġth ug\",\"Ġporn ographic\",\"I PS\",\"Ġmo aning\",\"Ġgriev ance\",\"Ġconf essions\",\"esc al\",\"TEXT URE\",\"Aut hent\",\"os aurus\",\"P urchase\",\"Ġreleg ation\",\"al ter\",\"ĠÂł Âł\",\"Ġr iddled\",\"Ġo gre\",\"ĠLow ell\",\"Occ up\",\"E at\",\"ĠHy der\",\"ĠAdvis er\",\"Com merce\",\"H unt\",\"ĠOr th\",\"ĠComp etitive\",\"ĠCL A\",\"CD C\",\"Ġsal ads\",\"F le\",\"Ġindustrial ized\",\"` ,\",\"ĠO WN\",\"Ġbec k\",\"ĠPart icularly\",\"oub t\",\"Ġm M\",\"ĠHuss ain\",\"ĠChen nai\",\"Ġ9 20\",\"Ġappoint ing\",\"ĠCull en\",\",,,, ,,,,\",\"Ġp ores\",\"ver ified\",\"Ġbi ochemical\",\"em ate\",\"Ġcoward ly\",\"ĠHels inki\",\"ĠEthiop ian\",\"S OURCE\",\"ER C\",\"est ro\",\"Ġbi otech\",\"ĠS our\",\"Ġbrew er\",\"Bloom berg\",\"Ġintens ify\",\"Gl ass\",\"an co\",\"ĠF DR\",\"gre SQL\",\"ĠF ires\",\"©¶æ ¥µ\",\"ec o\",\"100 1\",\"ĠHom eless\",\"Ġinstant aneous\",\"ĠH aste\",\"ig el\",\"D iamond\",\"Ġp aving\",\"Ġland fill\",\"Ġd ads\",\"h oun\",\": ]\",\"Ġinc endiary\",\"ĠLiving ston\",\"ĠHil bert\",\"ĠChe cks\",\"st yles\",\"in ators\",\"ĠCl ive\",\"ph rine\",\"Ġchimpan zees\",\"Ġp all\",\"ĠJ M\",\"ĠAad haar\",\"ð Ŀ\",\"Ġachie vable\",\"dis abled\",\"P ET\",\"OOOO OOOO\",\"M ot\",\"Ġint angible\",\"Ġbal let\",\"ĠWe bs\",\"ĠEst imated\",\"Effect s\",\"Ġb ailed\",\"Josh ua\",\"Ġturb ulence\",\"Ġoccup ant\",\"ĠDay light\",\"Ġ36 1\",\"me et\",\"Ġstat ically\",\"Ġon look\",\"Ġk i\",\"il legal\",\"Ġvel vet\",\"Ġdehyd ration\",\"Ġacqu ies\",\"ĠRe z\",\"ak ura\",\"ĠU pton\",\"at ro\",\"Ġincomp rehensible\",\"Ġback door\",\"ĠRh ino\",\"7 27\",\"Ġmath s\",\") +\",\"Ġhe resy\",\"Ġd f\",\"ĠRoc he\",\"ĠL ydia\",\"Ġpanc reat\",\"re ply\",\"arre ll\",\"Ġsolicit ation\",\"Ġcirc adian\",\"BI P\",\"Ġfor ay\",\"Ġcrypt ic\",\"iz u\",\"ime o\",\"ĠTom ato\",\"ĠH oms\",\"ex amination\",\"Ġqu arry\",\"ĠVal iant\",\"ĠJer icho\",\"ĠIN CLUD\",\"Ġ18 40\",\"5 19\",\"Ġres ists\",\"Ġsnap shots\",\"ĠSp ur\",\"ĠAnt iqu\",\"Log in\",\"Ġbest selling\",\"Ġant ic\",\"ĠS utherland\",\"ãĤ¢ ãĥ«\",\"Ġ~ /\",\"ĠP arm\",\"è ĥ\",\"P ages\",\"int ensity\",\"Ġimm obil\",\"Ġ18 65\",\"zz o\",\"Ġn ifty\",\"Ġf entanyl\",\"ĠPres ervation\",\"op hen\",\"Ġd arts\",\"ĠD inosaur\",\"po inters\",\"ĠR ite\",\"s uggest\",\"aware ness\",\"ĠSher idan\",\"Ġst ances\",\"Ġsor cery\",\"Ġper jury\",\"ĠNik ola\",\"ie ver\",\"Ġf iance\",\"ĠJordan ian\",\"ĠBall oon\",\"Ġn ab\",\"Ġk b\",\"Ġhuman ities\",\"ĠTan aka\",\"hill ary\",\"Ġconsult ancy\",\"ĠZ ub\",\"Ġrem ission\",\"Ġconf id\",\"CH Q\",\"ĠF ug\",\"Ġimpro vis\",\"Y ep\",\"/ _\",\"Ġunwilling ness\",\"Ġport folios\",\"05 5\",\"ĠInstruct or\",\"aim an\",\"Ġclaim ants\",\"M bps\",\"ĠBy e\",\"re ceived\",\"T weet\",\"Ġind emn\",\"ri z\",\"am ara\",\"N at\",\"Ġeval uates\",\"ĠL ur\",\"ep ad\",\"FO X\",\"ĠTh ro\",\"Ġrust y\",\"Ġbed rock\",\"ĠOp rah\",\"J B\",\"Ġmanip ulative\",\"Ġwill ful\",\"Ġrel apse\",\"Ġext ant\",\"The me\",\"S ensor\",\"ĠSt ability\",\"go vern\",\"Ġpo ppy\",\"Ġkn ack\",\"Ġins ulated\",\"ĠT ile\",\"ĠExt rem\",\"Ġunt old\",\"Ġconver ge\",\"Ġref uel\",\"ig roup\",\"Ġdistort ions\",\"Ġrav aged\",\"Ġmechan ically\",\"ĠRe illy\",\"ĠN ose\",\"ĠIncarn ation\",\"ĠBeck y\",\"abb ling\",\"Ġt aco\",\"Ġr ake\",\"Ġmelanch oly\",\"Ġillust rious\",\"ĠDart mouth\",\"Gu ide\",\"ĠR azer\",\"ĠBen z\",\"Ult imate\",\"ĠSur prise\",\"Ġpage ant\",\"off er\",\"Who ever\",\"Ġw iser\",\"Ġchem ist\",\"ĠHE LL\",\"ĠBul k\",\"Ġpl utonium\",\"ĠCO VER\",\"Ö ¼\",\"f ailed\",\"Ġtire lessly\",\"Ġinf ertility\",\"ĠTr ident\",\"ĠShow time\",\"ĠC iv\",\"V ice\",\"requ ires\",\"itt ance\",\"Ġun controlled\",\"interest ing\",\"56 1\",\"Ġinnov ate\",\"ateg ic\",\"L ie\",\"ĠS elling\",\"U l\",\"Ġsav ior\",\"ĠT osh\",\"Ġsw ast\",\"P ASS\",\"Ġr ink\",\"Ġcard io\",\"ĠI ro\",\"ud i\",\"Ġv antage\",\"Ġv ans\",\"ĠNi Ã±o\",\"+ =\",\"Ġpropag ate\",\"< ?\",\"Ġmethod ological\",\"204 39\",\"Ġtrig lycer\",\"Ġing rained\",\"ĠAn notations\",\"arr anted\",\"6 17\",\"ĠS odium\",\"ĠA AC\",\"techn ical\",\"mult ipl\",\"Ġ3 73\",\"å ĭ\",\"Ġdec isively\",\"Ġboost ers\",\"Ġdessert s\",\"ĠGren ade\",\"Ġtest ifying\",\"ĠSc ully\",\"ID s\",\"Ġlock down\",\"ĠSc her\",\"ĠR Ã©\",\"ĠWhit man\",\"ĠRams ay\",\"rem ote\",\"Ġh ikers\",\"ĠHy undai\",\"Ġcons cientious\",\"Ġcler ics\",\"ĠSiber ian\",\"ut i\",\"is bury\",\"Ġrel ayed\",\"Ġqu artz\",\"ĠC BI\",\"seek ers\",\"ull a\",\"Ġweld ing\",\"ĠSh al\",\"ble acher\",\"T ai\",\"ĠSam son\",\"Ġt umble\",\"ĠInvest or\",\"Ġsub contract\",\"ĠShin ra\",\"ow icz\",\"j andro\",\"d ad\",\"Ġtermin ating\",\"ĠNe ural\",\"ä» £\",\"Ġleak age\",\"ĠMid lands\",\"ĠCaucas us\",\"í ķ\",\"c it\",\"ll an\",\"iv ably\",\"ĠAlb ion\",\"Ġ4 57\",\"Ġregist rations\",\"Ġcomr ade\",\"Ġclip board\",\"0 47\",\"Ġdiscour aging\",\"ĠO ops\",\"Ad apt\",\"Ġem path\",\"n v\",\"ĠPR OT\",\"ĠDon n\",\"ĠP ax\",\"ĠB ayer\",\"t is\",\"Squ are\",\"Ġfoot prints\",\"part icip\",\"ĠChile an\",\"B rend\",\"ind ucing\",\"M agn\",\"Ġclub house\",\"ĠMagn um\",\"Ġenc amp\",\"ĠEth nic\",\"uch a\",\"ere y\",\"Ġw atered\",\"ĠCal ais\",\"Ġcomplex ion\",\"Ġsect s\",\"Ġren ters\",\"Ġbr as\",\"oÄŁ an\",\"Time out\",\"Man agement\",\"Ġinf ographic\",\"P okemon\",\"Cl ar\",\"Ġloc ality\",\"Ġfl ora\",\"as el\",\"P ont\",\"Ġpop ulate\",\"ĠO ng\",\"Ġsubs istence\",\"Ġa uctions\",\"ĠMcA uliffe\",\"ĠL OOK\",\"br inger\",\"Ġtit an\",\"Ġmanif old\",\"ĠâĹ ı\",\"Ġcalibr ated\",\"Ġcal iphate\",\"ĠSH E\",\"ĠCommission ers\",\"ce ivable\",\"j c\",\"W inner\",\"5 24\",\"Ġcond one\",\"Other wise\",\"Ġp iling\",\"Ġem body\",\"ĠCrime an\",\"ut ics\",\"ĠEx hibition\",\"Ġ4 26\",\"e ering\",\"Ġv ying\",\"ĠH UGE\",\"* =-\",\"Ġprin cipled\",\"à ¦\",\"Ġquir ks\",\"ĠEdit ors\",\"put ing\",\"G ES\",\"ĠF TA\",\"à¤ ¾\",\"add on\",\"ĠH AM\",\"ĠFrie za\",\"W oman\",\". $\",\"Ġc rib\",\"ĠHer od\",\"Ġtim ers\",\"ĠSp aces\",\"ĠMac intosh\",\"at aka\",\"Ġgl ide\",\"Ġsmell ing\",\"ĠB AL\",\"Ġun su\",\"Ġcond os\",\"Ġbicy cl\",\"ĠRev ival\",\"55 3\",\"Ġjugg ling\",\"H ug\",\"ĠKardash ian\",\"ĠBalk ans\",\"mult iple\",\"Ġnutrit ious\",\"oc ry\",\"19 00\",\"Ġinteg rates\",\"Ġad joining\",\"ĠF older\",\"roll ment\",\"ven ient\",\"Ġu ber\",\"y i\",\"Ġwh iff\",\"ĠJu ven\",\"ĠB orough\",\"net te\",\"Ġb ilingual\",\"ĠSp arks\",\"ph thal\",\"man ufact\",\"Ġt outing\",\"ĠPH I\",\"Ke efe\",\"Rew ard\",\"Ġinf all\",\"ĠTem per\",\"typ ically\",\"ĠNik ol\",\"Ġregular s\",\"Ġpseud onym\",\"Ġexhib itions\",\"Ġbl aster\",\"Ġ40 9\",\"w arming\",\"Ġrever ber\",\"Ġrecip rocal\",\"Ġ6 70\",\"ip ient\",\"b ett\",\"ĠBe gins\",\"Ġit ching\",\"ĠPh ar\",\"Ass uming\",\"Ġem itting\",\"ĠML G\",\"Ġbirth place\",\"Ġt aunt\",\"ĠL uffy\",\"ĠAm it\",\"Ġcir cled\",\"ĠN ost\",\"enn ett\",\"Ġde forestation\",\"ĠHist orically\",\"ĠEvery day\",\"Ġovert ake\",\"79 2\",\"Ġn un\",\"ĠLuc ia\",\"Ġaccompan ies\",\"ĠSe eking\",\"ĠTr ash\",\"an ism\",\"R ogue\",\"Ġnorth western\",\"ĠSupplement al\",\"ĠNY U\",\"ĠF RI\",\"ĠSat isf\",\"x es\",\"5 17\",\"Ġreass ured\",\"Ġspor adic\",\"Ġ7 01\",\"Ġmed ial\",\"Ġcannabin oid\",\"Ġbarbar ic\",\"Ġep is\",\"ĠExplos ive\",\"ĠD ough\",\"Ġuns olved\",\"Support ed\",\"Ġacknowled gment\",\"sp awn\",\"Ġkit chens\",\"Ġ- =\",\"talk ing\",\"ic ist\",\"ĠPeg asus\",\"ĠPS U\",\"Ġphot on\",\"ĠAuthent ication\",\"R G\",\"@# &\",\"76 2\",\"ĠCl air\",\"Ġdi aper\",\"Ġbr ist\",\"ĠProsecut ors\",\"ĠJ em\",\"6 28\",\"ĠEvery where\",\"ĠJean ne\",\"equ ality\",\"ãĥ© ãĥ³\",\"object s\",\"ĠPel icans\",\"Ġ39 2\",\"Ġbl u\",\"b ys\",\"ĠA go\",\"Ġinstruction al\",\"Ġdiscrim inating\",\"ĠTR AN\",\"ĠCorn el\",\"ag os\",\"Ġty re\",\"Ġas piration\",\"ĠBrid gewater\",\"\\\": -\",\"! \\\".\",\"ĠEn s\",\"ĠCoc o\",\"P ie\",\"Ġdet ach\",\"ĠC ouch\",\"Ġphys ique\",\"ĠOccup ations\",\"osc opic\",\"en ough\",\"B uzz\",\"App earance\",\"Y P\",\"Ġrac er\",\"Ġcompl icity\",\"r pm\",\"T oy\",\"Ġinterrupt s\",\"ĠCat alyst\",\"Ġut ilitarian\",\"imp act\",\"Ġsp aghetti\",\"Ġp orous\",\"Ġeste emed\",\"Ġinc iner\",\"ĠI OC\",\"7 48\",\"Ġesp resso\",\"ĠSm ile\",\"abil ia\",\"6 35\",\"Ġmathematic ian\",\"Ġ4 24\",\"ĠK L\",\"ĠH IP\",\"Ġover heard\",\"ĠT ud\",\"ĠT ec\",\"Ġqu izz\",\"Ġfl attering\",\"Ġcon n\",\"âĢ İ\",\"Ġatt aches\",\"ĠR OS\",\"ĠAC S\",\"Ġt cp\",\"ĠSh ame\",\"sk ip\",\"res pected\",\"ĠTrin idad\",\"gr ain\",\"Ġfooth old\",\"ĠUnch arted\",\"ĠJul io\",\"z l\",\"av ored\",\"ĠAn xiety\",\"er rors\",\"ĠCent auri\",\"its ch\",\"D addy\",\"Ġclutch ing\",\"ĠIm plement\",\"ĠGut ierrez\",\"Ġ7 60\",\"Ġtele portation\",\"end ra\",\"Ġrevers ible\",\"st ros\",\"Ad venture\",\"08 3\",\"Ġliber ating\",\"Ġas phalt\",\"ĠSp end\",\"AR DS\",\"im sy\",\"PR ES\",\"ĠEmer ging\",\"Ġwild fires\",\"Ġtechn ologically\",\"Ġem its\",\"ĠART ICLE\",\"Ġirregular ities\",\"Ġcher ish\",\"çī Ī\",\"Ġst ink\",\"ĠR ost\",\"Econom ic\",\"Ġcough ing\",\"ĠMcC ann\",\"pro perties\",\"ilant ro\",\"Ġreneg oti\",\"Trans lation\",\"Ġin quest\",\"ĠGra pe\",\"oot ers\",\"gu i\",\"ĠSwords man\",\"ace ae\",\"h itting\",\"Ġr c\",\"Ġexert ed\",\"ĠS AP\",\"it ent\",\"Ġperil ous\",\"Ġobsc urity\",\"Ġassass inate\",\"Ġab original\",\"Ġresc uing\",\"ĠSh attered\",\"lock ing\",\"all ion\",\"Ch anging\",\"ĠHar rington\",\"ĠB ord\",\"ĠAfgh ans\",\"Jam ie\",\"aret z\",\"ĠAugust us\",\"Ġ38 6\",\"8 30\",\"Ġj og\",\"ok ingly\",\"Tr igger\",\"ĠH OR\",\"Stat istics\",\"Ġviewers hip\",\"Ġadd itives\",\"h ur\",\"Ġmaxim izing\",\"ĠR ove\",\"ĠLou ie\",\"ĠBuck et\",\"ĠCHR IST\",\"ou sel\",\"Ġstre aks\",\"ir ted\",\"Ġt ert\",\"Ġcolonial ism\",\"Ġbur ying\",\"y k\",\"Cond ition\",\"ĠDPR K\",\"By Id\",\"75 1\",\"âĹ ¼\",\"Ġwor risome\",\"Ġvoc ational\",\"sl ice\",\"Ġsa ils\",\"ĠCorrection al\",\"95 4\",\"Ġt ul\",\"K id\",\"l uster\",\"Ġfam ilial\",\"ĠSp it\",\"ĠEp iscopal\",\"Specific ally\",\"ĠVol cano\",\"run s\",\"q s\",\"Ġve tted\",\"Ġcram med\",\"t rop\",\"here r\",\"Thank fully\",\"Ġper cussion\",\"Ġor anges\",\"Ġround up\",\"Ġ4 99\",\"x ious\",\"Char acters\",\"ĠZion ism\",\"ĠR ao\",\"ÃĽ ÃĽ\",\"W F\",\"Ġunintention al\",\"ONE Y\",\"Gr ab\",\"Com mercial\",\"Ġglut amate\",\"ĠMcK enna\",\"ru ciating\",\"ning ton\",\"ih u\",\"Ch an\",\"ĠSw ap\",\"Ġleaf lets\",\"Ġfunction ally\",\"er ous\",\"F arm\",\"Ġcal oric\",\"ĠLiter ally\",\"con cert\",\"Ġshe nan\",\"Ġrep aid\",\"ey es\",\"Ġbas hing\",\"ĠG orge\",\"Ġcollabor ations\",\"Ġun account\",\"itch ie\",\"Ġteam work\",\"pp elin\",\"Ġpip ing\",\"Ġmin ced\",\"Ġd iam\",\"ri eg\",\"Ġmasc ara\",\"Ġsuck er\",\"ĠMo ons\",\"App s\",\"ĠPe ck\",\"Ġper v\",\"ĠFl oat\",\"o ley\",\"ĠN ish\",\"im ize\",\"Ġarom atic\",\"u in\",\"end ish\",\"! /\",\"ĠB icycle\",\"ĠAS IC\",\"ile ged\",\"ĠQuad ro\",\"ios yn\",\"Ġlock out\",\"ĠW ink\",\"SP EC\",\"Attempt s\",\"Ġseed ed\",\"red o\",\"ias is\",\"Ġsn ag\",\"ãĥķ ãĤ©\",\"ãĤ ¶\",\"Ġground ing\",\"Ġrelie ver\",\"Ġfrivol ous\",\"ĠG ifts\",\"ĠF aces\",\"Es pecially\",\"Ġmicrobi ome\",\"im ag\",\"ĠSch l\",\"ĠP les\",\"ĠBle ach\",\"ĠIr win\",\"ĠE aton\",\"ĠDisc iple\",\"Ġmultipl ication\",\"Ġcoer ced\",\"Ġ4 19\",\"st h\",\"E vil\",\"B omb\",\"Ġex orc\",\"Ġstag gered\",\"L ESS\",\"Ġinert ia\",\"ĠED IT\",\"Ġgo b\",\"Tr aditional\",\"Ġclass y\",\"Lear y\",\"ĠP AGE\",\"yr s\",\"Ġtrans porter\",\"Ġmat ured\",\"Ġhij ab\",\"Ġbi ome\",\"Where as\",\"Ġex termination\",\"ĠT ues\",\"ĠT akeru\",\"ĠAud rey\",\"er ial\",\"ĠAd en\",\"aff les\",\"Ġnarciss istic\",\"ĠB aird\",\"UT F\",\"I re\",\"ĠCon nie\",\"Ch amp\",\"Ġwhis pering\",\"ĠH att\",\"D K\",\"Ġdis infect\",\"Ġdeduct ed\",\"Ġpart ake\",\"Ġdown grade\",\"ĠEs ports\",\"ĠContin uing\",\"Ġdemocr atically\",\"icro bial\",\"itt a\",\"Ġlim estone\",\"Ġexempt ed\",\"ĠFren zy\",\"H erm\",\"7 28\",\"Ġfled gling\",\"Met a\",\"765 61\",\"69 3\",\"% :\",\"w ake\",\"5 26\",\"ĠDis cipline\",\"Ġvirgin ity\",\"ĠLeg ions\",\"ĠFrank ie\",\"int ent\",\"Ġrest rooms\",\"ĠRou ter\",\"da q\",\"Ġobjection able\",\"âĨ ĳ\",\"w ark\",\"ĠRah ul\",\"g ain\",\"activ ation\",\"abs olute\",\"ĠAccess ed\",\"Ġ24 00\",\"ogg les\",\"Ġsecond ly\",\"ĠDEF ENSE\",\"Ġpost age\",\"wra pper\",\"sh arp\",\"7 29\",\"Ġcommun icates\",\"Ġadd on\",\"ĠMil itia\",\"H ong\",\"Ġsl umped\",\"ĠJP EG\",\"ĠI car\",\"ad ish\",\"68 1\",\"Ġmaj esty\",\"ĠWolf gang\",\"ĠEl astic\",\"u per\",\"Ġv iz\",\"Ġunconscious ly\",\"ĠST D\",\"ĠS ass\",\"Ġflower ing\",\"ĠHel ic\",\"ĠDra per\",\"ĠAm ateur\",\"Ġman ure\",\"Ġdis ingen\",\"ĠLe i\",\"br ing\",\"9 49\",\"Ġinhib ited\",\"Ġhead quartered\",\"Ġen igmatic\",\"ï¿½ï¿½ ï¿½\",\"Ġred ress\",\"R H\",\"Ġratt led\",\"Ġd iction\",\"l io\",\"ĠT BA\",\"ĠSN AP\",\"C alling\",\"Ġfasc ists\",\"ĠD ove\",\"iew icz\",\"0 36\",\"Ġco asts\",\"ĠR ect\",\"Ġ) ]\",\"L ot\",\"6 29\",\"ĠS EM\",\"ĠPeters en\",\"ĠExpl ain\",\"ĠBo ards\",\"ĠBe zos\",\"ĠJ ournals\",\"Ġ20 24\",\"p arser\",\"Ġmist rust\",\"Ġgr ate\",\"ĠL ocked\",\"bo a\",\"S aint\",\"g aming\",\"Ġvow el\",\"in ately\",\"bl ow\",\"All ah\",\"Ġun matched\",\"Ġb ordering\",\"ĠExp end\",\"n r\",\"Or acle\",\"rou ch\",\"Ġcont iguous\",\"ac us\",\"Ġdist raught\",\"58 1\",\"Ġanat omical\",\"O X\",\"ap ixel\",\"8 33\",\"ĠPL US\",\"Ġres usc\",\"Ġab iding\",\"57 3\",\"Ġvac ancies\",\"Em ily\",\"Ġhyp othal\",\"ĠWer ner\",\"ĠWe e\",\"ĠDJ s\",\"5 13\",\"Ġwitch craft\",\"Ġac upuncture\",\"ent ary\",\"benef it\",\"Product s\",\"ĠP SP\",\"ĠMP G\",\"ĠJ inn\",\"ĠJ arrett\",\"Ġ4 45\",\"ĠIm aging\",\"ĠP yth\",\"Fin ish\",\"Ġte x\",\"Ġjuven iles\",\"Ġhero ism\",\"Ġdoubt less\",\"ĠA ki\",\"ĠT end\",\"ĠPatri arch\",\"Ġbit ters\",\"ĠTele communications\",\"it atively\",\"ag na\",\"Ġr g\",\"ĠS OLD\",\"Ġcomp ulsion\",\"ĠN asa\",\"ĠKath ryn\",\"Ġmillion aires\",\"Ġintrins ically\",\"Ġbolst ered\",\"time out\",\"fl o\",\"Ġtut or\",\"p our\",\"Stat ement\",\"Ġ{ *\",\"ĠRud olph\",\"ĠKimber ly\",\"rog ens\",\"adi q\",\"] +\",\"Ġindign ation\",\"Ġfract uring\",\"ĠRe leases\",\"ĠGr ain\",\"pro tein\",\"L ago\",\"Ġvac ations\",\"Ġboot ed\",\"ĠTH REE\",\"ĠH G\",\"oresc ence\",\"Ġt f\",\"Ġso ar\",\"iosyn cr\",\"Ġgl ances\",\"ĠSp oon\",\"ĠJ ury\",\"ĠCow boy\",\"Ġcreat ively\",\"Hig her\",\"Ġsolic itor\",\"Ġhaw k\",\"ac io\",\"89 6\",\"Ġsuperf lu\",\"Ġbombs hell\",\"ct ure\",\"Ġbroker age\",\"Ġraid ing\",\"Ġf rench\",\"Ġang led\",\"Trans action\",\"ĠGen ocide\",\"u pe\",\"ĠHait ian\",\"57 2\",\"! :\",\"Ġunwitting ly\",\"iter ator\",\"sc roll\",\"Ġtall ied\",\"Ġbi omedical\",\"ĠC ARD\",\"Ġe uphem\",\"Ġbrain storm\",\"a quin\",\"K o\",\"Mic helle\",\"ĠR unes\",\"ĠBall istic\",\"ud ers\",\"Ġmod esty\",\"ĠiP ads\",\"ĠEzek iel\",\"Y E\",\"Ġstars hip\",\"Ġpower fully\",\"Ġper l\",\"ĠSh ade\",\"ĠQu art\",\"ĠE EG\",\"Ġfisher man\",\"OS ED\",\"ĠTyp ical\",\"df x\",\"Ġmes hes\",\"Ġet ched\",\"worth iness\",\"Ġtopp led\",\"Ġ3 96\",\"or ius\",\"We iss\",\"Ġmy sql\",\"ĠVal halla\",\"Ù Ĵ\",\"le asing\",\"Ġrec omp\",\"rap nel\",\"S el\",\"04 3\",\"Ġder ailed\",\"ĠGu ides\",\"IR T\",\"Ġde human\",\"ĠBritt any\",\"\\\" ))\",\"Ġex claim\",\"Ġb alk\",\"Ġ8 40\",\"CLA IM\",\"int el\",\"L AB\",\"Ġpe gged\",\"Ġast roph\",\"sm oking\",\"Ġrig ging\",\"Ġfix ation\",\"Ġcat apult\",\"ins ide\",\"ĠC ascade\",\"ĠBolshe vik\",\"G aza\",\"Dep th\",\"Ġloud spe\",\"Ġalmond s\",\"me yer\",\"l eness\",\"j en\",\"f resh\",\"Ġunbeat en\",\"ĠSqu id\",\"ĠPres umably\",\"Tim er\",\"B W\",\"Ġro sters\",\"Ġell ipt\",\"ĠHar riet\",\"dat abase\",\"ĠMut ual\",\"ĠComm odore\",\"uk ed\",\"kn ife\",\"ĠCOMM UN\",\"h ya\",\"Ġmel ts\",\"arch ives\",\"Ġrat ification\",\"Ġmultip lying\",\"Ġinter oper\",\"Ġasc ert\",\"w ings\",\"ver ting\",\"ĠScorp ion\",\"ay e\",\"ĠPorts mouth\",\"ĠM TA\",\"n it\",\"iaz ep\",\"Ġqu arantine\",\"Ġslides how\",\"Ġcent imeters\",\"Ġsyn opsis\",\"Ġsp ate\",\"th irst\",\"Ġnom inating\",\"ĠMel vin\",\"Pre view\",\"Ġthro b\",\"Ġgener ational\",\"ĠRad ius\",\"rest ling\",\"put able\",\"aw ar\",\"N ECT\",\"Ġunlaw fully\",\"ĠRevel ations\",\"Wik ipedia\",\"sur v\",\"Ġeye ing\",\"ij n\",\"ĠF W\",\"Ġbr unt\",\"Ġinter stellar\",\"Ġcl itor\",\"ĠCroat ian\",\"ĠCh ic\",\"ev a\",\"ĠDis app\",\"ĠA kin\",\"iner ies\",\"d ust\",\"Interest ed\",\"Ġgen esis\",\"ĠE ucl\",\"Ã¶ n\",\"p icking\",\"Ġmut ated\",\"Ġdisappro ve\",\"ĠHD L\",\"Ġ6 25\",\"Ì ¶\",\"c ancer\",\"Ġsqu ats\",\"Ġle vers\",\"Disc uss\",\"= ]\",\"D ex\",\"ĠVIDE OS\",\"A UD\",\"Ġtrans act\",\"ĠKin ect\",\"ĠK uala\",\"ĠC yp\",\"7 47\",\"Ġsh attering\",\"Ġarsen ic\",\"ĠInt ake\",\"ĠAngel o\",\"ĠQu it\",\"ĠK he\",\"Ġ18 93\",\"M aker\",\"0 29\",\"ĠPain ting\",\"Dis able\",\"9 16\",\"Ġanal ges\",\"Ġtact ile\",\"Ġprop hes\",\"Ġd iced\",\"ĠTravel s\",\"ĠHe ader\",\"ĠClub s\",\"Ass istant\",\"Ġinc rim\",\"Ġd ips\",\"Ġcruc ifix\",\"ĠShan ahan\",\"ĠInter pret\",\"Ġ40 90\",\"al ogy\",\"abb a\",\"Ġsimul ac\",\"hus band\",\"S IM\",\"Ġrecy cle\",\"uc er\",\"ed ged\",\"Ġre naissance\",\"ĠBomb ay\",\"Cath olic\",\"ĠL INE\",\"ĠCl othing\",\"re ports\",\"Ġpl aus\",\"Ġd ag\",\"ĠM ace\",\"Z I\",\"Ġintr uder\",\"ĠVeter inary\",\"g ru\",\"Ġsne aky\",\"ĠS ie\",\"ĠC innamon\",\"P OSE\",\"Ġcou rier\",\"ĠC NS\",\"Ġemanc ipation\",\"s it\",\"Ġplay through\",\"ĠFac ilities\",\"v irt\",\"ĠG auntlet\",\"Thom pson\",\"Ġunbeliev ably\",\"Param eters\",\"Ġst itching\",\"ign e\",\"ĠTH ESE\",\"Priv acy\",\"Ġshenan igans\",\"Ġvit ri\",\"ĠVal id\",\"59 1\",\"Ń ·\",\"ĠProt otype\",\"ink a\",\"SC P\",\"ĠT id\",\"è Ī\",\"old ed\",\"Ġindividual ity\",\"Ġbark ing\",\"Ġm ars\",\"ĠW D\",\"Ġ8 20\",\"Ġt ir\",\"Ġsl apping\",\"Ġdisgr untled\",\"ĠAng ola\",\"ri us\",\"ĠTorn ado\",\"ĠTh urs\",\"Ġcapt cha\",\"Ġang st\",\"ĠP og\",\"ĠAssass ins\",\"ĠAd idas\",\"Ġjoy ful\",\"Ġwh ining\",\"Emer gency\",\"Ġphosph orus\",\"Ġatt rition\",\"oph on\",\"ĠTimber wolves\",\"ĠJ ah\",\"ĠBr inging\",\"ĠW ad\",\"ĠEn sure\",\"oh l\",\"ĠX ie\",\"omm el\",\"c mp\",\"Ġz ipper\",\"Ġrel at\",\"ĠCor ridor\",\"m ilo\",\"T ING\",\"Av g\",\"Ġcro pped\",\"] }\",\"Ġr aged\",\"ĠLump ur\",\"ĠGuer rero\",\"our ke\",\"N ut\",\"Ġoff sets\",\"og lu\",\"dr m\",\"Ġmort als\",\"lat able\",\"Ġdismiss ive\",\"ä¸ ī\",\"Ġthro ats\",\"Ġchips et\",\"ĠSpot light\",\"Catal og\",\"art ist\",\"G b\",\"Ġch illy\",\"Ġst oked\",\"Ġ3 74\",\"W ard\",\"L atin\",\"Ġf iasco\",\"Ġble ach\",\"Ġb rav\",\"Enh anced\",\"Ġin oc\",\"ĠFior ina\",\"_ >\",\"Ġle ukemia\",\"Ġel uc\",\"Ġannoun cer\",\"ĠLith uan\",\"ĠArm ageddon\",\"å ĩ\",\"Len in\",\"ĠR uk\",\"Ġpe pp\",\"ĠRom antic\",\"ĠP IT\",\"ĠInter stellar\",\"ĠAt kinson\",\"R aid\",\"J s\",\"Go al\",\"C ourse\",\"Ġvan ishing\",\"es ley\",\"ĠR ounds\",\"Els a\",\"59 3\",\"Ġredund ancy\",\"ĠST AND\",\"Ġprop hetic\",\"Ġhabit able\",\"ry u\",\"Ġfaint ly\",\"M ODE\",\"Ġfl anked\",\"IR C\",\"Aw esome\",\"Ġsp urious\",\"ĠZ ah\",\"ĠMS G\",\"Ġsh ading\",\"Ġmotiv ational\",\"ĠSant ana\",\"ĠS PR\",\"Ġexc ruciating\",\"om ial\",\"ĠM iko\",\"ĠLe opard\",\"A byss\",\"Ġ[ |\",\"d irty\",\"Ġbath s\",\"Ġdem oral\",\"and re\",\"P B\",\"Ġun ification\",\"Ġsac rament\",\"Ġ[ &\",\"Ġpric eless\",\"Ġgel atin\",\"Ġeman ating\",\"ĠAll aah\",\"98 6\",\"Ġout burst\",\"Ġer as\",\"ĠX VI\",\"ĠSP I\",\"O tt\",\"ĠLaz arus\",\"PL IED\",\"F lying\",\"blog s\",\"W isconsin\",\"R aven\",\"Ġreb ate\",\"Ġcreep s\",\"ĠSp an\",\"ĠPain ter\",\"ĠKir a\",\"ĠAm os\",\"ĠCor vette\",\"Cons umer\",\"ĠRec over\",\"ck i\",\"Ġpes ky\",\"ĠIn vention\",\"Compan ies\",\"Ġchalleng ers\",\"ad emic\",\"ĠUkrain ians\",\"ĠNeuro log\",\"ĠFors aken\",\"Ġent rants\",\"Ġemb attled\",\"Ġdef unct\",\"ĠGlac ier\",\"Ġpo isons\",\"ĠH orses\",\"m akes\",\"ĠD irt\",\"Ġ4 23\",\"hh h\",\"ĠTrans formation\",\"QUI RE\",\"................ ..\",\"Ġtrave ller\",\"ĠSe xy\",\"ĠK ern\",\"ip olar\",\"Ġransom ware\",\"oooooooo oooooooo\",\"E c\",\"rub y\",\"Prof essional\",\"ĠOut break\",\"arg ument\",\"G rey\",\"ĠFif a\",\"ĠCH O\",\"ĠFOR M\",\"ĠAm trak\",\"- [\",\"Ġcr adle\",\"Ġantioxid ants\",\"ãģ®å ®\",\"7 36\",\"ĠNAS L\",\"ĠContribut ions\",\"Ind iana\",\"ĠST EP\",\"C SS\",\"Ġsal ient\",\"Ġall ocations\",\"yr ights\",\"Ġm ashed\",\"ĠCut ter\",\"Sex ual\",\"Ġp ounded\",\"Ġfan base\",\"Ġc asc\",\"ĠTrans parency\",\"Ġanaly tic\",\"ĠSummon er\",\"× ŀ\",\"ĠAD C\",\"det ail\",\"Ġvan quished\",\"Ġcr abs\",\"ar ie\",\"Dest roy\",\"ĠS ack\",\"Ġtrans istor\",\"Al abama\",\"ĠK oen\",\"ĠFisher ies\",\"c one\",\"Ġannex ed\",\"ĠM GM\",\"es a\",\"Ġf aked\",\"ĠCong ratulations\",\"Ġhind ered\",\"Ġcorrection al\",\"ĠI TV\",\"lee ve\",\"Ġin appropriately\",\"lic ks\",\"Ġtresp ass\",\"Ġp aws\",\"Ġnegoti ator\",\"ĠChrist ensen\",\"lim its\",\"ĠDian ne\",\"Ġeleg ance\",\"ĠContract s\",\"an ke\",\"Ob j\",\"Ġvigil ance\",\"Ġcast les\",\"ĠN AD\",\"ĠHol o\",\"Ġemph atically\",\"ĠTit us\",\"ĠServ ing\",\"ĠRich ie\",\"ĠP igs\",\"5 68\",\"Ġanim osity\",\"ĠAtt ributes\",\"ĠU riel\",\"M Q\",\"my ra\",\"ĠApplic ant\",\"Ġpsychiat rists\",\"ĠV ij\",\"ĠAb by\",\"ag ree\",\"P ush\",\"Ġk Wh\",\"hib a\",\"Ġinc ite\",\"ĠWe asley\",\"ĠTax i\",\"minist ic\",\"hy per\",\"ĠF arn\",\"Ġ6 01\",\"ĠNation wide\",\"F ake\",\"95 2\",\"Ġma ize\",\"Ġinteract ed\",\"Ġtransition ed\",\"Ġparas itic\",\"Ġharm onic\",\"Ġdec aying\",\"Ġbas eless\",\"ns ics\",\"Ġtrans pired\",\"Ġabund antly\",\"ĠFore nsic\",\"Ġtread mill\",\"ĠJ av\",\"ab and\",\"Ġssh d\",\"Ġfront man\",\"ĠJak arta\",\"oll er\",\"dro ps\",\"ĠSERV ICES\",\"rompt u\",\"oph ical\",\"h ospital\",\"bled on\",\"6 45\",\"Ġmid range\",\"ĠEV ENT\",\"cul ated\",\"raw led\",\"Ġper ched\",\"Ġover board\",\"ĠPe el\",\"ĠP wr\",\"ĠCar th\",\"ĠCOM PLE\",\"co e\",\"sh all\",\"Ġdeter rence\",\"M ETHOD\",\"ĠAbs ent\",\"M EN\",\"Ġs ill\",\"ĠLE VEL\",\"Y ork\",\"Ġsin ners\",\"ĠOP EC\",\"ĠN ur\",\"ĠDesign s\",\"se lection\",\"Ġunw orthy\",\"CH A\",\"Ġstreng thens\",\"88 3\",\"ed ly\",\"Ġslic ing\",\"Ġmal nutrition\",\"Ġfilm making\",\"ĠPol k\",\"ur ated\",\"Ġ4 21\",\"bre akers\",\"!' \\\"\",\"Ġwet lands\",\"ĠDisc rimination\",\"Ġallow able\",\"Ġste ered\",\"ĠSic ily\",\"S AM\",\"Ġmust ache\",\"Ġm ids\",\"Ġcl ipped\",\"Ġcirc ulate\",\"Ġbr ittle\",\"ĠBuild ings\",\"ra ised\",\"ĠRound up\",\"Ġwealth ier\",\"Ġoverw rite\",\"Ġover powered\",\"ĠGerr ard\",\"s ites\",\"PD ATED\",\"Ġacute ly\",\"ĠGam ble\",\"Ġp im\",\"ĠK us\",\"Typ ically\",\"De ploy\",\"ĠMoroc can\",\"p otion\",\"com be\",\"Ġvigil ante\",\"Ġ36 3\",\"St ew\",\"ĠB agg\",\"Ġres ided\",\"ĠSp o\",\"Ġrem nant\",\"Ġempt iness\",\"br ainer\",\"Ġout patient\",\"pri ority\",\"Ġle ptin\",\"ĠPay ton\",\"ĠGle aming\",\"ĠS hed\",\"ĠPol o\",\"ĠMormon ism\",\"rest ricted\",\"arl ane\",\"w x\",\"Ġcreat ine\",\"ĠAn on\",\"ĠST UD\",\"ĠJ UL\",\"ĠT ee\",\"5 28\",\"08 9\",\"Ġhat ched\",\"Dis patch\",\"ĠCompos ite\",\"Ġ45 1\",\"p uff\",\"ĠX COM\",\"ĠOr n\",\"ĠTH ANK\",\"END ED\",\"ĠAshe ville\",\"ĠÃ ľ\",\"Ġman go\",\"ĠS lightly\",\"world ly\",\"ĠW ander\",\"ĠExp and\",\"ĠCh r\",\"M ist\",\"Ġorthodox y\",\"ĠUN ESCO\",\"reg ate\",\"Else where\",\"k ie\",\"ir led\",\"Ġtopp le\",\"Ġadopt ive\",\"ĠLeg s\",\"d ress\",\"ĠS agan\",\"b are\",\"ĠGl ou\",\"Cr unch\",\"Ġhelp ers\",\"Ġchron ically\",\"ĠH uma\",\"1 0000\",\"Ġaccommod ating\",\"äº Ķ\",\"Ġwrink les\",\"Ġdod ged\",\"four th\",\"Ġpre con\",\"Ġcompress or\",\"ĠK are\",\"Ġev ict\",\"ĠWar wick\",\"im ar\",\"Ġmodern ization\",\"Ġband wagon\",\"Ġref uted\",\"Ġnet ted\",\"ĠNa ples\",\"ĠGen ie\",\"per ors\",\"Ġfield ed\",\"Ġde re\",\"ĠPar ables\",\"le es\",\"Ġtr out\",\"asp ers\",\"Ġn ihil\",\"Ġhapp iest\",\"Ġflo ppy\",\"ĠLo ft\",\"ĠHe ard\",\"Ġun ison\",\"Ġl ug\",\"ĠRed mond\",\"class ic\",\"Supp orters\",\"SH IP\",\"G MT\",\"Ġfue lled\",\"ç Ĳ\",\"Ġd d\",\"ĠEmin em\",\"Ġ18 97\",\"NY SE\",\"Ġsecret aries\",\"ĠF IA\",\"ĠCanaver al\",\"F avorite\",\"Ġp omp\",\"Ġdetain ee\",\"ers hip\",\"aim on\",\"i our\",\"ĠA pex\",\"Ġplant ations\",\"am ia\",\"ac ion\",\"R ust\",\"Ġtow ed\",\"ĠTru ly\",\"5 77\",\"Ġshel tered\",\"r ider\",\"W o\",\"Ġl air\",\"ĠInt elligent\",\"impro ve\",\"m atically\",\"Ġet iquette\",\"ad ra\",\"all o\",\"ĠJun o\",\"any thing\",\"ĠStru ggle\",\"ĠPred ict\",\"ĠGr imes\",\"ĠAMER ICA\",\"ct x\",\"ĠSit uation\",\"W OOD\",\"Ġsol uble\",\"me ier\",\"Ġintoler able\",\"ang ering\",\"Ġun interrupted\",\"Ġtool tip\",\"Ġinterrog ated\",\"Ġgun ned\",\"ĠSne ak\",\"æŃ ¦\",\"Ġt ether\",\"Ġcr umble\",\"L ens\",\"Ġclust ered\",\"ĠSy l\",\"ĠHas an\",\"Ġdystop ian\",\"w ana\",\"Ġjoy stick\",\"ĠTh ib\",\"amm u\",\"Tom orrow\",\"5 46\",\"Ġoverc ame\",\"Ġminim ized\",\"cept or\",\"Run ner\",\"ENG TH\",\"ĠBrend a\",\"ĠAchieve ments\",\"Ġtor ches\",\"Ġrapp ort\",\"ĠInvestig ator\",\"ĠHand ling\",\"rel ation\",\"g rey\",\"8 15\",\"Ġk cal\",\"ĠComm ands\",\"d q\",\"Ġcur ls\",\"Ġbe arer\",\"Ġcyn icism\",\"it ri\",\"ĠUse ful\",\"B ee\",\"D CS\",\"Ġab ras\",\"P ract\",\"BIL ITIES\",\"7 12\",\"Ġdebug ger\",\"Ġdebt or\",\"ĠL ia\",\"ĠK ers\",\"Ġexacerb ate\",\"ĠSt acy\",\"ĠB land\",\"ĠSc enes\",\"Ġbranch ing\",\"âĸĪâĸĪâĸĪâĸĪ âĸĪâĸĪâĸĪâĸĪ\",\"ape ake\",\"Ġs alsa\",\"Ġmish and\",\"ĠKon ami\",\"ĠN ib\",\"Ġanecd ote\",\"Ġagree able\",\"Ï ī\",\"ĠNath aniel\",\"ĠHe isman\",\"ĠB eware\",\"Ġ18 86\",\"spect ive\",\"69 1\",\"5 22\",\"Ġinhib its\",\"Ġhas hing\",\"Ġ18 89\",\"å° Ĩ\",\"v ich\",\"P ure\",\"Ġsolid ly\",\"Ġaspir in\",\"im aru\",\"Ġstreet car\",\"ĠU CS\",\"ĠJ udd\",\"Ġflash backs\",\"p ins\",\"Ġ14 40\",\"ĠUN HCR\",\"ĠSym ptoms\",\"T IT\",\"5 38\",\"F ra\",\"% );\",\"Ġo oz\",\"Ġcur few\",\"Ġcal med\",\"Ġparticip ates\",\"Te X\",\"Ġnons ensical\",\"Ġfull back\",\"ĠDe L\",\"mon key\",\"h ari\",\"Ġmetabol ites\",\"Ġloot ed\",\"ĠAL WAYS\",\"ĠB CC\",\"L t\",\"oc het\",\"B one\",\"Ġveto ed\",\"Ġg cc\",\"ĠCL ICK\",\"Ġ18 88\",\"s af\",\"Ġstiff ness\",\"Ġlow ly\",\"ĠGe h\",\"vers on\",\"ors et\",\"Ġun foreseen\",\"Ġan esthesia\",\"ĠOpt ical\",\"Ġrecon structed\",\"ĠT up\",\"sh ows\",\"NEW S\",\"ĠNewsp aper\",\"ĠA SA\",\"ter a\",\"N umbers\",\"Ġinexpl icable\",\"× ĳ\",\"Ġhard ness\",\"unt arily\",\"ĠA cer\",\"grad ient\",\"ARD IS\",\"Ġwood land\",\"Ġmetaph ors\",\"ĠWem bley\",\"ĠPa vel\",\"phil is\",\"Ġre writing\",\"Ġpercept ual\",\"Ġ10 70\",\"worm s\",\"ĠDown s\",\"Ġunsur prisingly\",\"Ġtag ging\",\"fl ame\",\"Ġlit res\",\"Ġboun ces\",\"ĠB abe\",\"sh ut\",\"Ġoverd oses\",\"ĠShe ila\",\"ĠCh au\",\"ĠBl ess\",\"Capt ure\",\"ĠSign ificant\",\"ĠSc ion\",\"Ġ38 9\",\"ĠMc H\",\"ĠTitan ium\",\"ĠMe al\",\"amed a\",\"ag ents\",\"agg ressive\",\"B illy\",\"76 3\",\"ĠS aying\",\"DER R\",\"it one\",\"Coll ins\",\"B ound\",\"Ġbol ted\",\"ĠDM CA\",\"95 3\",\"Ġun iqueness\",\"Ġep igen\",\"un ci\",\"ant am\",\"Ġreck oning\",\"ch airs\",\"OG R\",\"ĠSen egal\",\"Ġ18 62\",\"re levant\",\"ĠÂ ¯\",\"Ġpharm acies\",\"ĠG eral\",\"v ier\",\"Y an\",\"OR PG\",\"Ġrab id\",\"b ending\",\"ĠUN ITED\",\"Ġ4 65\",\"As sembly\",\"Ġwe ep\",\"Ġbe hest\",\"ĠMother s\",\"ĠJ ace\",\"h id\",\"Ġwh irlwind\",\"ĠUN IVERS\",\"Ġut opian\",\"Ġkidn ap\",\"Ph ilipp\",\"K in\",\"89 3\",\"Ġlivest ream\",\"ĠM ISS\",\"Ġsub versive\",\"ĠTechn iques\",\"ĠJUST ICE\",\"ĠB ASE\",\"Ġ38 7\",\"Ġassail ants\",\"ĠHard core\",\"Ġsprink led\",\"ĠP se\",\"é ļ\",\"print ed\",\"ĠH au\",\"OR GE\",\"ĠT OUR\",\"Ġl aced\",\"Ġit ch\",\"G iving\",\"Ġport ed\",\"78 1\",\"//////////////// ////////////////\",\"bre eding\",\"Ġlog ger\",\"ĠH OL\",\"inn ie\",\"First ly\",\"Ġembry onic\",\"Ġdeleg ated\",\"p ai\",\"O IL\",\"Ġcentr ally\",\"ĠR x\",\"ĠSc outing\",\"D utch\",\"Ġhe reditary\",\"ĠCru iser\",\"s at\",\"5 29\",\"ĠMar riott\",\"other mal\",\"Ġprohib itions\",\"E arn\",\"ĠSt ab\",\"ĠColleg es\",\"ĠBel ief\",\"st retched\",\"ĠL H\",\"ĠEntity Item\",\"C IA\",\"Ġun rem\",\"Ġlaure ate\",\"Ġdenomin ations\",\"sum mary\",\"h ler\",\"S pect\",\"ĠK laus\",\"ĠBe ans\",\"Ġins ur\",\"ĠPA X\",\"Ġfield er\",\"ĠV et\",\"ĠSp arrow\",\"z ie\",\"ĠS Q\",\"ĠMond ays\",\"ĠOff line\",\"ĠLer ner\",\"ĠExt ensions\",\"Ire land\",\"Ġpatron age\",\"Ġcontrast ed\",\"ĠMan ia\",\"h irt\",\"Mos cow\",\"Ġcondem ns\",\"ĠAn ge\",\"Ġcomp osing\",\"ĠPe pe\",\"ĠP addock\",\"Ġheter ogeneity\",\"Ġide ologically\",\"Ġf ishes\",\"Ġcur sing\",\"ĠR utherford\",\"ĠFlo ating\",\"ĠAm elia\",\"Te a\",\"Syn opsis\",\"Ġstun ts\",\"Ġbe ad\",\"Ġstock ing\",\"ĠM ILL\",\"ob ook\",\"mass ive\",\"\\\\ <\",\"Ġh ump\",\"ĠPref erences\",\"Engine Debug\",\"ge ist\",\"ĠNiet o\",\"ome ver\",\"ish y\",\"eval uate\",\"col onial\",\"Altern ative\",\"ĠGo Pro\",\"ĠV ortex\",\"ĠNET WORK\",\"ans ky\",\"Sec ure\",\"ĠTh rust\",\"Sn ake\",\"Ġparcel s\",\"Ġsam urai\",\"Ġactress es\",\"N ap\",\"M F\",\"ifer ation\",\"Be er\",\"5 23\",\"ĠI ly\",\"oint ment\",\"P ing\",\"Ġstri ped\",\"ĠMell on\",\"oss ession\",\"Ġneut ron\",\"end ium\",\"Ġa ph\",\"ĠFlav oring\",\"Ġ38 3\",\"Ġrespons iveness\",\"ĠJ indal\",\"ĠHitch cock\",\"Den ver\",\"ĠDRAG ON\",\"sm anship\",\"ĠDu pl\",\"Ġs ly\",\"Ġweb cam\",\"ĠTw ain\",\"ĠDar ling\",\"ili ate\",\"cons umer\",\"D IT\",\"Ġnames ake\",\"Ġun orthodox\",\"Ġfun er\",\"ĠPL oS\",\"ĠCONTR OL\",\"ozy g\",\"ogl obin\",\"F ACE\",\"ER G\",\"ĠD ia\",\"ĠF iesta\",\"ce le\",\"0 34\",\"Ġencl ave\",\"âĸ¬ âĸ¬\",\"on ement\",\"al ist\",\"M and\",\"Ġhome grown\",\"ĠF ancy\",\"Ġconcept ions\",\"ĠCont ains\",\"ure en\",\"Ġreiter ate\",\"Ġme ager\",\"Ġinstall ments\",\"Sp awn\",\"6 27\",\"Ġphot oc\",\"ĠCab rera\",\"ĠRos enthal\",\"ĠLans ing\",\"is ner\",\"Ġinvest s\",\"ĠUFO s\",\"EX P\",\"Hard ware\",\"Ġtr agically\",\"Ġconced es\",\"ie ft\",\"ch am\",\"bor gh\",\"ĠSch r\",\"ĠMel anie\",\"ĠH oy\",\"Ġvisit ation\",\"Ġid iosyncr\",\"Ġfract ions\",\"Ġfore skin\",\"ob os\",\"Ġpo aching\",\"ĠVI EW\",\"Ġstimul ates\",\"ĠG ork\",\"can on\",\"M IC\",\"ĠNem esis\",\"ĠInd ra\",\"ĠDM V\",\"Ġ5 29\",\"Ġinspect ing\",\"Ġgrand ma\",\"ĠW hedon\",\"ĠSh ant\",\"ĠP urg\",\"ik an\",\"ĠT eg\",\"ĠCL R\",\"z ac\",\"Vict oria\",\"ĠVer ify\",\"ion ics\",\"Ġpart ying\",\"ĠM ou\",\"col our\",\"Ġtestim onies\",\"l ations\",\"Ġpress uring\",\"hi ro\",\"ac ers\",\"Ġf id\",\"ang ler\",\"ĠCS I\",\"Ġhere after\",\"Ġdiss idents\",\"report ing\",\"iph any\",\"che v\",\"Ġsol itude\",\"Ġl obe\",\"Ġind is\",\"Ġcred ential\",\"re cent\",\"ad ult\",\"ĠNir vana\",\"ĠFranch ise\",\"L ayer\",\"H yp\",\"ĠBerks hire\",\"Ġwill s\",\"t if\",\"Ġtot em\",\"ĠJud ah\",\"rep air\",\"Inst ant\",\"5 48\",\"Ġemb assies\",\"Ġbott leneck\",\"Ġb ount\",\"Ġtyp ew\",\"ĠAl vin\",\"j ing\",\"im ilar\",\"R ush\",\"Ġbr im\",\"ĠHEL P\",\"A im\",\"] '\",\"Ġpass ively\",\"Ġbound ed\",\"ĠR ated\",\"Ġcriminal ity\",\"Ġbiom ark\",\"Ġdisp atcher\",\"ĠTow ards\",\"Ġ+ ++\",\"right eous\",\"f rog\",\"ĠP anc\",\"C arter\",\"0 32\",\"æ© Ł\",\"Ġult raviolet\",\"ĠLic ensed\",\"ĠT ata\",\"ĠBl essing\",\"ĠG AM\",\"Ġchem ically\",\"ĠSe af\",\"ĠRE LE\",\"ĠMerc enary\",\"capital ist\",\"Ġform ulations\",\"Ġann ihilation\",\"ĠVer b\",\"ĠAr gon\",\"Ġun loaded\",\"Ġmorp hed\",\"Ġconqu ering\",\"back er\",\"I ELD\",\"Ġtheft s\",\"Ġfront runner\",\"ĠRoy ale\",\"ĠFund amental\",\"el ight\",\"C hip\",\"necess ary\",\"ay n\",\"ĠSl ip\",\"Ġ4 48\",\"cern ed\",\"P ause\",\"Ġshock ingly\",\"ĠAB V\",\"Ġcomp osure\",\"7 33\",\"ĠMotors port\",\"ah ime\",\"Mur ray\",\"M ach\",\"Ġgr ids\",\"Ġdeb ian\",\"Ġfurther more\",\"Ġdexter ity\",\"ĠCollect ions\",\"os lov\",\"il age\",\"b j\",\"ĠMont eneg\",\"Ġstrut Connector\",\"Ġmassac res\",\"Ġbrief s\",\"fet ched\",\"uv ian\",\"ol ition\",\"Fail ure\",\"emon ic\",\"Ġfl ared\",\"Ġclaim ant\",\"Ġc ures\",\"Ġgive aways\",\"ĠSubst ance\",\"al ions\",\"Ġcr inge\",\"ĠK ul\",\"Ġarist ocracy\",\"ĠUl ster\",\"ol ated\",\"h ousing\",\"ĠM IS\",\"Ġgl ared\",\"ĠWil helm\",\"ne eds\",\"lam bda\",\"build ers\",\"ĠV IS\",\"Ġradi ator\",\"ĠGhost busters\",\"Ġ4 36\",\"act ual\",\"Ġher ds\",\"Ã§ a\",\"watch ing\",\"Ġcounter ing\",\"Ch arge\",\"Ġchar red\",\"Ġwar heads\",\"Ġiod ine\",\"ĠM acy\",\"04 1\",\"Ġdepart ures\",\"ĠS ins\",\"Ġdy ed\",\"ĠConcept s\",\"g ado\",\"7 13\",\"Ġquot ations\",\"Ġg ist\",\"ĠChrist y\",\"Ġant igen\",\"ĠHem p\",\"ĠD rawn\",\"ĠB arg\",\"ez vous\",\"Ġp aternity\",\"Ġar du\",\"ĠAnch orage\",\"ĠR ik\",\"Ġover loaded\",\"ĠUs ername\",\"ĠTam my\",\"ĠN au\",\"ĠCell ular\",\"Ġw aning\",\"Ġrod ent\",\"ĠWor cester\",\"il ts\",\"ĠT ad\",\"Ġdwell ings\",\"Ġbull ish\",\"4 31\",\"Ġretali ate\",\"Ġmig raine\",\"ĠChev ron\",\"CH ECK\",\"Ġdon key\",\"c rim\",\"SP A\",\"ĠAn alog\",\"Ġmarqu ee\",\"ĠHa as\",\"B ir\",\"ĠGD DR\",\"ĠDownload s\",\"Ġwill power\",\"ĠFor th\",\"ĠRecord ed\",\"Ġimp ossibility\",\"ĠLog ged\",\"ĠFr anks\",\"ĠR att\",\"in itions\",\"Ġclean ers\",\"Ġsore ly\",\"Ġflick ering\",\"ĠEx amination\",\"c atching\",\"allow een\",\"Ms g\",\"Ġdun no\",\"F a\",\"Ġdys ph\",\"c razy\",\".' '.\",\"Ġmain line\",\"Ġc s\",\"Ġp tr\",\"ĠW ally\",\"ig un\",\"95 1\",\"ĠBig foot\",\"f ights\",\"Ġretrie ving\",\"J r\",\"Ġdupl ication\",\"ĠExpl an\",\"Ġrel ational\",\"Ġqu aint\",\"Ġbisc uits\",\"Ġad o\",\"Ġsh udder\",\"Ġantid ote\",\"blood ed\",\"ks h\",\"Ġsa uces\",\"Ġrein vest\",\"Ġdispens ary\",\"ĠD iver\",\"Ġ9 000\",\"stud ent\",\"Ġin separ\",\"esc ap\",\"Ġtodd lers\",\"ĠGP IO\",\"ĠAss ignment\",\"head ers\",\"Ġlack luster\",\"Ġab ack\",\"95 6\",\"Ġtool bar\",\"7 45\",\"Ġo ust\",\"Ġcontempl ation\",\"ĠPRES IDENT\",\"Ġ4 58\",\"==== ==\",\"Ġguarantee ing\",\"ĠHe ist\",\"ĠCann es\",\"Ļ ½\",\"Ġcollabor ator\",\"ĠAm p\",\"Ġg ou\",\"ĠSH ALL\",\"st ories\",\"78 3\",\"Ġmobil ized\",\"Ġbro od\",\"ĠL U\",\"ĠðŁ ĳ\",\"Ġref in\",\"ĠAnthrop ology\",\"v ind\",\"ill i\",\"Ġwarrant ies\",\"ĠB abel\",\"Ġsw ath\",\"Ġc aches\",\"Ġantagon ists\",\"art ifacts\",\"Ġhot ly\",\"ĠSt arts\",\"ĠG Ã¶\",\"z ag\",\"!! !!!\",\"Ġsc ourge\",\"Ġcons piring\",\"ru its\",\"re verse\",\"ĠShe en\",\"ĠJes uit\",\"ĠGiov anni\",\"ad ies\",\"Ġbutt ocks\",\"ear cher\",\"ac an\",\"Ġvolley ball\",\"Ġshroud ed\",\"Ġscore board\",\"b ats\",\"ĠI PM\",\"Ġass es\",\"Ġde regulation\",\"ĠTe legram\",\"ĠReb oot\",\"Ġ7 000\",\"ĠCan ary\",\"Ġk ernels\",\"ĠFranÃ§ ois\",\"ĠD uff\",\"ĠP on\",\"ĠLe ica\",\"ĠGar min\",\"Ġor phans\",\"ĠClaud ia\",\"Ġcal endars\",\"ĠLe ilan\",\"ent o\",\"R ocket\",\"Ġbr unch\",\"ĠHaw king\",\"ain ers\",\"Ġsens ibilities\",\"Ġk W\",\"ĠK and\",\"Ġre claimed\",\"Ġinteresting ly\",\"× ©\",\"rom y\",\"J M\",\"ĠEnhance ment\",\"b ush\",\"Sk ip\",\"Ġrapp ers\",\"Ġg azing\",\"p edia\",\"ath lon\",\"Rev olution\",\"Ġsn ipers\",\"Ġre verted\",\"Ġconglomer ate\",\"T erry\",\"79 4\",\"Ġhars her\",\"Ġdes olate\",\"ĠHit man\",\"Comm ission\",\"Ġ( /\",\"âĢ¦ .\\\"\",\"Com par\",\"Ġampl ification\",\"om inated\",\"Ġreg ress\",\"ĠColl ider\",\"Ġinform ants\",\"Ġg azed\"]}}"
  },
  {
    "path": "examples/NLU/CODE_OF_CONDUCT.md",
    "content": "\n# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participation in our\ncommunity a harassment-free experience for everyone, regardless of age, body\nsize, visible or invisible disability, ethnicity, sex characteristics, gender\nidentity and expression, level of experience, education, socio-economic status,\nnationality, personal appearance, race, religion, or sexual identity\nand orientation.\n\nWe pledge to act and interact in ways that contribute to an open, welcoming,\ndiverse, inclusive, and healthy community.\n\n## Our Standards\n\nExamples of behavior that contributes to a positive environment for our\ncommunity include:\n\n* Demonstrating empathy and kindness toward other people\n* Being respectful of differing opinions, viewpoints, and experiences\n* Giving and gracefully accepting constructive feedback\n* Accepting responsibility and apologizing to those affected by our mistakes,\n  and learning from the experience\n* Focusing on what is best not just for us as individuals, but for the\n  overall community\n\nExamples of unacceptable behavior include:\n\n* The use of sexualized language or imagery, and sexual attention or\n  advances of any kind\n* Trolling, insulting or derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or email\n  address, without their explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Enforcement Responsibilities\n\nCommunity leaders are responsible for clarifying and enforcing our standards of\nacceptable behavior and will take appropriate and fair corrective action in\nresponse to any behavior that they deem inappropriate, threatening, offensive,\nor harmful.\n\nCommunity leaders have the right and responsibility to remove, edit, or reject\ncomments, commits, code, wiki edits, issues, and other contributions that are\nnot aligned to this Code of Conduct, and will communicate reasons for moderation\ndecisions when appropriate.\n\n## Scope\n\nThis Code of Conduct applies within all community spaces, and also applies when\nan individual is officially representing the community in public spaces.\nExamples of representing our community include using an official e-mail address,\nposting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported to the community leaders responsible for enforcement at\nfeedback@huggingface.co.\nAll complaints will be reviewed and investigated promptly and fairly.\n\nAll community leaders are obligated to respect the privacy and security of the\nreporter of any incident.\n\n## Enforcement Guidelines\n\nCommunity leaders will follow these Community Impact Guidelines in determining\nthe consequences for any action they deem in violation of this Code of Conduct:\n\n### 1. Correction\n\n**Community Impact**: Use of inappropriate language or other behavior deemed\nunprofessional or unwelcome in the community.\n\n**Consequence**: A private, written warning from community leaders, providing\nclarity around the nature of the violation and an explanation of why the\nbehavior was inappropriate. A public apology may be requested.\n\n### 2. Warning\n\n**Community Impact**: A violation through a single incident or series\nof actions.\n\n**Consequence**: A warning with consequences for continued behavior. No\ninteraction with the people involved, including unsolicited interaction with\nthose enforcing the Code of Conduct, for a specified period of time. This\nincludes avoiding interactions in community spaces as well as external channels\nlike social media. Violating these terms may lead to a temporary or\npermanent ban.\n\n### 3. Temporary Ban\n\n**Community Impact**: A serious violation of community standards, including\nsustained inappropriate behavior.\n\n**Consequence**: A temporary ban from any sort of interaction or public\ncommunication with the community for a specified period of time. No public or\nprivate interaction with the people involved, including unsolicited interaction\nwith those enforcing the Code of Conduct, is allowed during this period.\nViolating these terms may lead to a permanent ban.\n\n### 4. Permanent Ban\n\n**Community Impact**: Demonstrating a pattern of violation of community\nstandards, including sustained inappropriate behavior,  harassment of an\nindividual, or aggression toward or disparagement of classes of individuals.\n\n**Consequence**: A permanent ban from any sort of public interaction within\nthe community.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage],\nversion 2.0, available at\nhttps://www.contributor-covenant.org/version/2/0/code_of_conduct.html.\n\nCommunity Impact Guidelines were inspired by [Mozilla's code of conduct\nenforcement ladder](https://github.com/mozilla/diversity).\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see the FAQ at\nhttps://www.contributor-covenant.org/faq. Translations are available at\nhttps://www.contributor-covenant.org/translations.\n"
  },
  {
    "path": "examples/NLU/CONTRIBUTING.md",
    "content": "<!---\nCopyright 2020 The HuggingFace Team. All rights reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n\n# How to contribute to transformers?\n\nEveryone is welcome to contribute, and we value everybody's contribution. Code\nis thus not the only way to help the community. Answering questions, helping\nothers, reaching out and improving the documentations are immensely valuable to\nthe community.\n\nIt also helps us if you spread the word: reference the library from blog posts\non the awesome projects it made possible, shout out on Twitter every time it has\nhelped you, or simply star the repo to say \"thank you\".\n\nWhichever way you choose to contribute, please be mindful to respect our\n[code of conduct](https://github.com/huggingface/transformers/blob/master/CODE_OF_CONDUCT.md).\n\n## You can contribute in so many ways!\n\nThere are 4 ways you can contribute to transformers:\n* Fixing outstanding issues with the existing code;\n* Implementing new models;\n* Contributing to the examples or to the documentation;\n* Submitting issues related to bugs or desired new features.\n\n*All are equally valuable to the community.*\n\n## Submitting a new issue or feature request\n\nDo your best to follow these guidelines when submitting an issue or a feature\nrequest. It will make it easier for us to come back to you quickly and with good\nfeedback.\n\n### Did you find a bug?\n\nThe transformers are robust and reliable thanks to the users who notify us of\nthe problems they encounter. So thank you for reporting an issue.\n\nFirst, we would really appreciate it if you could **make sure the bug was not\nalready reported** (use the search bar on Github under Issues).\n\nDid not find it? :( So we can act quickly on it, please follow these steps:\n\n* Include your **OS type and version**, the versions of **Python**, **PyTorch** and\n  **Tensorflow** when applicable;\n* A short, self-contained, code snippet that allows us to reproduce the bug in\n  less than 30s;\n* Provide the *full* traceback if an exception is raised.\n\nTo get the OS and software versions automatically, you can run the following command:\n\n```bash\ntransformers-cli env\n```\n\nor from the root of the repository the following command:\n\n```bash\npython src/transformers/commands/transformers_cli.py env\n```\n\n\n### Do you want to implement a new model?\n\nAwesome! Please provide the following information:\n\n* Short description of the model and link to the paper;\n* Link to the implementation if it is open-source;\n* Link to the model weights if they are available.\n\nIf you are willing to contribute the model yourself, let us know so we can best\nguide you.\n\nWe have added a **detailed guide and templates** to guide you in the process of adding a new model. You can find them\nin the [`templates`](https://github.com/huggingface/transformers/tree/master/templates) folder.\n\n### Do you want a new feature (that is not a model)?\n\nA world-class feature request addresses the following points:\n\n1. Motivation first:\n  * Is it related to a problem/frustration with the library? If so, please explain\n    why. Providing a code snippet that demonstrates the problem is best.\n  * Is it related to something you would need for a project? We'd love to hear\n    about it!\n  * Is it something you worked on and think could benefit the community?\n    Awesome! Tell us what problem it solved for you.\n2. Write a *full paragraph* describing the feature;\n3. Provide a **code snippet** that demonstrates its future use;\n4. In case this is related to a paper, please attach a link;\n5. Attach any additional information (drawings, screenshots, etc.) you think may help.\n\nIf your issue is well written we're already 80% of the way there by the time you\npost it.\n\nWe have added **templates** to guide you in the process of adding a new example script for training or testing the\nmodels in the library. You can find them in the [`templates`](https://github.com/huggingface/transformers/tree/master/templates)\nfolder.\n\n## Start contributing! (Pull Requests)\n\nBefore writing code, we strongly advise you to search through the existing PRs or\nissues to make sure that nobody is already working on the same thing. If you are\nunsure, it is always a good idea to open an issue to get some feedback.\n\nYou will need basic `git` proficiency to be able to contribute to\n`transformers`. `git` is not the easiest tool to use but it has the greatest\nmanual. Type `git --help` in a shell and enjoy. If you prefer books, [Pro\nGit](https://git-scm.com/book/en/v2) is a very good reference.\n\nFollow these steps to start contributing:\n\n1. Fork the [repository](https://github.com/huggingface/transformers) by\n   clicking on the 'Fork' button on the repository's page. This creates a copy of the code\n   under your GitHub user account.\n\n2. Clone your fork to your local disk, and add the base repository as a remote:\n\n   ```bash\n   $ git clone git@github.com:<your Github handle>/transformers.git\n   $ cd transformers\n   $ git remote add upstream https://github.com/huggingface/transformers.git\n   ```\n\n3. Create a new branch to hold your development changes:\n\n   ```bash\n   $ git checkout -b a-descriptive-name-for-my-changes\n   ```\n\n   **Do not** work on the `master` branch.\n\n4. Set up a development environment by running the following command in a virtual environment:\n\n   ```bash\n   $ pip install -e \".[dev]\"\n   ```\n\n   (If transformers was already installed in the virtual environment, remove\n   it with `pip uninstall transformers` before reinstalling it in editable\n   mode with the `-e` flag.)\n\n   To run the full test suite, you might need the additional dependency on `datasets` which requires a separate source\n   install:\n\n   ```bash\n   $ git clone https://github.com/huggingface/datasets\n   $ cd datasets\n   $ pip install -e .\n   ```\n\n   If you have already cloned that repo, you might need to `git pull` to get the most recent changes in the `datasets`\n   library.\n\n5. Develop the features on your branch.\n\n   As you work on the features, you should make sure that the test suite\n   passes:\n\n   ```bash\n   $ make test\n   ```\n\n   Note, that this command uses `-n auto` pytest flag, therefore, it will start as many parallel `pytest` processes as the number of your computer's CPU-cores, and if you have lots of those and a few GPUs and not a great amount of RAM, it's likely to overload your computer. Therefore, to run the test suite, you may want to consider using this command instead:\n\n   ```bash\n   $ python -m pytest -n 3 --dist=loadfile -s -v ./tests/\n   ```\n\n   Adjust the value of `-n` to fit the load your hardware can support.\n\n   `transformers` relies on `black` and `isort` to format its source code\n   consistently. After you make changes, format them with:\n\n   ```bash\n   $ make style\n   ```\n\n   `transformers` also uses `flake8` and a few custom scripts to check for coding mistakes. Quality\n   control runs in CI, however you can also run the same checks with:\n\n   ```bash\n   $ make quality\n   ```\n   You can do the automatic style corrections and code verifications that can't be automated in one go:\n\n   ```bash\n   $ make fixup\n   ```\n\n   This target is also optimized to only work with files modified by the PR you're working on.\n\n   If you're modifying documents under `docs/source`, make sure to validate that\n   they can still be built. This check also runs in CI. To run a local check\n   make sure you have installed the documentation builder requirements, by\n   running `pip install .[tf,torch,docs]` once from the root of this repository\n   and then run:\n\n   ```bash\n   $ make docs\n   ```\n\n   Once you're happy with your changes, add changed files using `git add` and\n   make a commit with `git commit` to record your changes locally:\n\n   ```bash\n   $ git add modified_file.py\n   $ git commit\n   ```\n\n   Please write [good commit\n   messages](https://chris.beams.io/posts/git-commit/).\n\n   It is a good idea to sync your copy of the code with the original\n   repository regularly. This way you can quickly account for changes:\n\n   ```bash\n   $ git fetch upstream\n   $ git rebase upstream/master\n   ```\n\n   Push the changes to your account using:\n\n   ```bash\n   $ git push -u origin a-descriptive-name-for-my-changes\n   ```\n\n6. Once you are satisfied (**and the checklist below is happy too**), go to the\n   webpage of your fork on GitHub. Click on 'Pull request' to send your changes\n   to the project maintainers for review.\n\n7. It's ok if maintainers ask you for changes. It happens to core contributors\n   too! So everyone can see the changes in the Pull request, work in your local\n   branch and push the changes to your fork. They will automatically appear in\n   the pull request.\n\n\n### Checklist\n\n1. The title of your pull request should be a summary of its contribution;\n2. If your pull request addresses an issue, please mention the issue number in\n   the pull request description to make sure they are linked (and people\n   consulting the issue know you are working on it);\n3. To indicate a work in progress please prefix the title with `[WIP]`. These\n   are useful to avoid duplicated work, and to differentiate it from PRs ready\n   to be merged;\n4. Make sure existing tests pass;\n5. Add high-coverage tests. No quality testing = no merge.\n   - If you are adding a new model, make sure that you use\n     `ModelTester.all_model_classes = (MyModel, MyModelWithLMHead,...)`, which triggers the common tests.\n   - If you are adding new `@slow` tests, make sure they pass using\n     `RUN_SLOW=1 python -m pytest tests/test_my_new_model.py`.\n   - If you are adding a new tokenizer, write tests, and make sure\n     `RUN_SLOW=1 python -m pytest tests/test_tokenization_{your_model_name}.py` passes.\n   CircleCI does not run the slow tests, but github actions does every night!\n6. All public methods must have informative docstrings that work nicely with sphinx. See `modeling_ctrl.py` for an\n   example.\n\n### Tests\n\nAn extensive test suite is included to test the library behavior and several examples. Library tests can be found in\nthe [tests folder](https://github.com/huggingface/transformers/tree/master/tests) and examples tests in the\n[examples folder](https://github.com/huggingface/transformers/tree/master/examples).\n\nWe like `pytest` and `pytest-xdist` because it's faster. From the root of the\nrepository, here's how to run tests with `pytest` for the library:\n\n```bash\n$ python -m pytest -n auto --dist=loadfile -s -v ./tests/\n```\n\nand for the examples:\n\n```bash\n$ pip install -r examples/requirements.txt  # only needed the first time\n$ python -m pytest -n auto --dist=loadfile -s -v ./examples/\n```\nIn fact, that's how `make test` and `make test-examples` are implemented (sans the `pip install` line)!\n\nYou can specify a smaller set of tests in order to test only the feature\nyou're working on.\n\nBy default, slow tests are skipped. Set the `RUN_SLOW` environment variable to\n`yes` to run them. This will download many gigabytes of models — make sure you\nhave enough disk space and a good Internet connection, or a lot of patience!\n\n```bash\n$ RUN_SLOW=yes python -m pytest -n auto --dist=loadfile -s -v ./tests/\n$ RUN_SLOW=yes python -m pytest -n auto --dist=loadfile -s -v ./examples/\n```\n\nLikewise, set the `RUN_CUSTOM_TOKENIZERS` environment variable to `yes` to run\ntests for custom tokenizers, which don't run by default either.\n\n🤗 Transformers uses `pytest` as a test runner only. It doesn't use any\n`pytest`-specific features in the test suite itself.\n\nThis means `unittest` is fully supported. Here's how to run tests with\n`unittest`:\n\n```bash\n$ python -m unittest discover -s tests -t . -v\n$ python -m unittest discover -s examples -t examples -v\n```\n\n\n### Style guide\n\nFor documentation strings, `transformers` follows the [google style](https://google.github.io/styleguide/pyguide.html).\nCheck our [documentation writing guide](https://github.com/huggingface/transformers/tree/master/docs#writing-documentation---specification)\nfor more information.\n\n#### This guide was heavily inspired by the awesome [scikit-learn guide to contributing](https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md)\n\n\n### Develop on Windows\n\nOn windows, you need to configure git to transform Windows `CRLF` line endings to Linux `LF` line endings:\n\n`git config core.autocrlf input`\n\nOne way one can run the make command on Window is to pass by MSYS2:\n\n1. [Download MSYS2](https://www.msys2.org/), we assume to have it installed in C:\\msys64\n2. Open the command line C:\\msys64\\msys2.exe (it should be available from the start menu)\n3. Run in the shell: `pacman -Syu` and install make with `pacman -S make`\n4. Add `C:\\msys64\\usr\\bin` to your PATH environment variable.\n\nYou can now use `make` from any terminal (Powershell, cmd.exe, etc) 🎉\n\n### Syncing forked master with upstream (HuggingFace) master\n\nTo avoid pinging the upstream repository which adds reference notes to each upstream PR and sends unnessary notifications to the developers involved in these PRs, \nwhen syncing the master branch of a forked repository, please, follow these steps:\n1. When possible, avoid syncing with the upstream using a branch and PR on the forked repository. Instead merge directly into the forked master.\n2. If a PR is absolutely necessary, use the following steps after checking out your branch:\n```\n$ git checkout -b your-branch-for-syncing\n$ git pull --squash --no-commit upstream master\n$ git commit -m '<your message without GitHub references>'\n$ git push --set-upstream origin your-branch-for-syncing\n```\n"
  },
  {
    "path": "examples/NLU/ISSUES.md",
    "content": "<!---\nCopyright 2020 The HuggingFace Team. All rights reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n\n# How To Request Support\n\nThis is an Open Source Project so please be mindful that like in any other project of this kind there is no obligation to answer all requests for help.\n\nHowever, we want to encourage you to ask for help whenever you think it's needed! We are happy about every  question we get because it allows us to better understand your needs, possible misunderstandings, and most importantly a way for you to help us make this library better. That being said, this document's main purpose is to provide guidelines at how you can formulate your requests to increase your chances to be understood and to get support.\n\nThere are two main venues to receive support: [the forums](https://discuss.huggingface.co/) and [the GitHub issues](https://github.com/huggingface/transformers/issues).\n\n## The Forums\n\n[The user forums](https://discuss.huggingface.co/) are supported by the wide community of the library users and backed up by developers when needed.\n\nIf you have a difficulty with deploying this library or some questions, or you'd like to discuss a new feature, please first consider discussing those things at the forums. Only when you feel your subject matter has been crystalized and you still need support from the library developers do proceed to file an [issue](https://github.com/huggingface/transformers/issues).\n\nIn particular all \"Please explain\" questions or objectively very user-specific feature requests belong to the forums. Here are some example of such questions:\n\n* \"I would like to use a BertModel within a RL-Agent for a customer support service. How can I use a BertForMaskedLM in my ChatBotModel?\"\n\n* \"Could you please explain why T5 has no positional embedding matrix under T5Model?\"\n\n* \"How should I set my generation parameters for translation?\"\n\n* \"How to train T5 on De->En translation?\"\n\n\n## The GitHub Issues\n\nEverything which hints at a bug should be opened as an [issue](https://github.com/huggingface/transformers/issues).\n\nYou are not required to read the following guidelines before opening an issue. However, if you notice that your issue doesn't get any replies, chances are that the developers have one or several difficulties with its quality. In this case, reading the following points and adjusting your issue accordingly could help.\n\n1. Before posting an issue, first search for already posted issues, since chances are someone has already asked a similar question before you.\n\n    If you use Google your search query should be:\n\n    ```\n    \"huggingface\" \"transformers\" your query\n    ```\n\n    The first two quoted words tell Google to limit the search to the context of the Huggingface Transformers. The remainder is your query - most commonly this would be the error message the software fails with. We will go deeper into details shortly.\n\n    The results of such a query will typically match GitHub issues, Hugging Face forums, StackExchange, and blogs.\n\n    If you find relevant hints, you may choose to continue the discussion there if you have follow up questions.\n\n    If what you found is similar but doesn't quite answer your problem, please, post a new issue and do include links to similar issues or forum discussions you may have found.\n\n    Let's look at some examples:\n\n    The error message, often referred to as an assertion, tells us what went wrong. Here is an example of an assertion:\n\n   ```python\n   Traceback (most recent call last):\n     File \"<string>\", line 1, in <module>\n     File \"/transformers/src/transformers/__init__.py\", line 34, in <module>\n       from . import dependency_versions_check\n     File \"/transformers/src/transformers/dependency_versions_check.py\", line 34, in <module>\n       from .file_utils import is_tokenizers_available\n     File \"/transformers/src/transformers/file_utils.py\", line 40, in <module>\n       from tqdm.auto import tqdm\n    ModuleNotFoundError: No module named 'tqdm.auto'\n    ```\n\n   and it typically includes a traceback, so that we can see the full stack of calls the program made before it fails. This gives us the context to know why the program failed.\n\n   Going back to the above example. If you received this error search, look at the very last line of the error which is:\n\n   ```python\n    ModuleNotFoundError: No module named 'tqdm.auto'\n    ```\n\n    And now we can use it to do the searching on your favorite search engine:\n\n    1. first for `\"huggingface\" \"transformers\" \"ModuleNotFoundError: No module named 'tqdm.auto'\"`\n    2. if you don't find relevant results, then search for just `\"ModuleNotFoundError: No module named 'tqdm.auto'\"`\n    3. and finally if nothing still comes up, then remove the outside quotes: `ModuleNotFoundError: No module named 'tqdm.auto'`\n\n   If the error includes any messages that include bits unique to your filesystem, always remove those in the search query since other users will not have the same filesystem as yours. For example:\n\n   ```bash\n   python -c 'open(\"/tmp/wrong_path.txt\", \"r\")'\n   Traceback (most recent call last):\n     File \"<string>\", line 1, in <module>\n   FileNotFoundError: [Errno 2] No such file or directory: '/tmp/wrong_path.txt'\n   ```\n   Here you'd search for just: `\"FileNotFoundError: [Errno 2] No such file or directory\"`\n\n   If the local information that you removed were inside the error message and you removed them you may need to remove double quotes since your query is no longer exact. So if the error message was something like:\n\n   ```bash\n      ValueError: '/tmp/wrong_path.txt' cannot be found\n   ```\n\n   then you'd search for `\"ValueError\" \"cannot be found\"`\n\n   As you search you will notice that when you don't use quotes often the search engines will return a variety of unrelated hits, which may or may not be what you want.\n\n   Experiment with different ways and find which approach gives the most satisfactory results.\n\n2. Keep the issue short, providing the information that you think will aid the developers to understand your situation. Put yourself in the shoes of the person who has never seen your code or knows anything about your custom setup. This mental exercise will help to develop an intuition to what/what not to share\"\n\n3. If there is a software failure, always provide the full traceback, for example:\n\n   ```python\n   $ python -c 'import transformers'\n   Traceback (most recent call last):\n     File \"<string>\", line 1, in <module>\n     File \"/transformers/src/transformers/__init__.py\", line 34, in <module>\n       from . import dependency_versions_check\n     File \"/transformers/src/transformers/dependency_versions_check.py\", line 34, in <module>\n       from .file_utils import is_tokenizers_available\n     File \"/transformers/src/transformers/file_utils.py\", line 40, in <module>\n       from tqdm.auto import tqdm\n   ModuleNotFoundError: No module named 'tqdm.auto'\n   ```\n\n   As compared to providing just the last line of the error message, e.g.:\n   ```python\n   ModuleNotFoundError: No module named 'tqdm.auto'\n   ```\n   which is not sufficient.\n\n   If your application is running on more than one GPU (e.g. under `DistributedDataParallel`) and typically getting every log and traceback printed multiple times, please make sure that you paste only one copy of it. At times the traceback from parallel processes may get interleaved - so either disentangle these or change the loggers to log only for `local_rank==0` so that only one process logs things.\n\n4. When quoting a traceback, command line instructions and any type of code always enclose it in triple backticks inside the editor window, that is:\n\n   ````\n   ```\n   git clone https://github.com/huggingface/transformers\n   cd transformers\n   pip install .\n   ```\n   ````\n\n   If it's a command line with a long argument list, please consider breaking it down using backslashes and new lines. Here is an example of a good command line quote:\n\n   ```bash\n    cd examples/seq2seq\n    python -m torch.distributed.launch --nproc_per_node=2 ./finetune_trainer.py \\\n    --model_name_or_path sshleifer/distill-mbart-en-ro-12-4 --data_dir wmt_en_ro \\\n    --output_dir output_dir --overwrite_output_dir \\\n    --do_train --n_train 500 --num_train_epochs 1 \\\n    --per_device_train_batch_size 1  --freeze_embeds \\\n    --src_lang en_XX --tgt_lang ro_RO --task translation \\\n    --fp16 --sharded_ddp\n   ```\n\n   If you don't break it up, one has to scroll horizontally which often makes it quite difficult to quickly see what's happening.\n\n   The backslashes allow us to copy the command directly into the console to run it, without needing to edit it.\n\n5. Include only the important information that you think will help the developer to quickly identify the problem.\n\n   For example applications often create huge amounts of logs. Ask yourself whether providing all or parts of the log is useful.\n\n   Pasting a 100-1000 lines of log into the issue is an immediate turn off, since it will take a lot of time to figure out where the pertinent parts of the log are.\n\n   Attaching a full log can be helpful if it's done as an attachment, if it's enclosed in the following html code in the comment editor window:\n\n   ```\n   <details>\n   <summary>Full log</summary>\n   <pre>\n\n   many\n   lines\n   go\n   here\n\n   </pre>\n   </details>\n   ```\n\n   which would result in the following entry, which can be opened if desired, but otherwise takes little space.\n\n   <details>\n   <summary>Full log</summary>\n   <pre>\n   many\n   lines\n   go\n   here\n   </pre>\n   </details>\n\n    You could also provide a link to a pastebin service, but this is less beneficial since those links tend to expire quickly and future readers of your issue might not be able to access that log file anymore and may lack some context.\n\n6. If this is an issue in your code, do try to reduce that code to a minimal example that still demonstrates the problem. Please ask at the forums if you have a hard time figuring how to do that. Please realize that we don't have the luxury of having time to try and understand all of your custom code.\n\n   If you really tried to make a short reproducible code but couldn't figure it out, it might be that having a traceback will give the developer enough information to know what's going on. But if it is not enough and we can't reproduce the problem, we can't really solve it.\n\n   Do not dispair if you can't figure it out from the begining, just share what you can and perhaps someone else will be able to help you at the forums.\n\n   If your setup involves any custom datasets, the best way to help us reproduce the problem is to create a [Google Colab notebook](https://colab.research.google.com/) that demonstrates the issue and once you verify that the issue still exists, include a link to that notebook in the Issue. Just make sure that you don't copy and paste the location bar url of the open notebook - as this is private and we won't be able to open it. Instead, you need to click on `Share` in the right upper corner of the notebook, select `Get Link` and then copy and paste the public link it will give to you.\n\n7. If you forked off some of this project's code or example applications, please, do not ask us to go into your code repository and figure out what you may have done. The code is already very complex and unless there is an easy way to do a diff and it's a small diff, it won't be possible to find someone with time on their hands to make a lengthy investigation. Albeit, you might find someone at the forums who will be generous to do this for you.\n\n8. Before reporting an issue, first, always try to update your environment to the latest official version of this library. We have no resources to go and debug older revisions, which could easily have bugs that have been fixed in the latest released version.\n\n   We understand that this is not always possible, especially when APIs change, in which case file an issue against the highest library version your environment can support.\n\n   Of course, if you upgrade the library, always retest that the problem is still there.\n\n9. Please do not ask us to reproduce an issue with your custom data, since we don't have it. So, either you should use some existing dataset supported by HF datasets or you need to supply a code that generates a small sample on the fly, or some another quick and simple way to get it.\n\n   Please do not send us any non-public domain data that may require a license or a permission to be used.\n\n10. Do not tag multiple developers on the issue unless you know this is expected, either because you asked them and they gave you an explicit permission to tag them or the issue template instructs you to do so.\n\n   The \"who to tag for what domain\" part of the issue template is there to help users direct their questions to the right developers who are designated maintainers of project's specific domains. They can then decide at their own discretion to tag other developers if they feel it'd help move the issue forward.\n\n   We currently don't have a triage service and we trust your capacity to identify the right domain and thus the persons to tag in your issue. If you are not sure, please use the forums to ask for guidance.\n\n   When in doubt, err on the side of not tagging a given person. If you tag multiple people out of context or permission don't be surprised if you get no response at all. Please remember that every time you tag someone, they get a notification and you're taking their time without their permission. Please be sensitive to that.\n\n   If you got helped by one of the developers in the past please don't tag them in future issues, unless they are listed in the issue template for the domain you are asking about or that developer gave you an explicit permission to tag them in future issues.\n\n   If you see a certain developer doing multiple and/or recent commits into a specific area of the project that you feel is relevant to your issue, it is not a good reason to tag them. Various developers may be fixing things that prevent them from moving forward, but often their work is focused on a totally different domain. And while they may or may not know how to help you with the problem at hand, it would benefit the whole community much more if they focus on the domain of their unique expertise.\n\n11. Use the Edit button. Take your time, and re-read and improve the wording and formatting to make your posts and comments as easy to understand as possible.\n\n    Avoid posting multiple comments in a row, as each comment generates a notification for the developers tagged in that issue. If you happened to post multiple comments in a row, and nobody followed up yet - consider merging those into one or a few comments while editing the combined content to be coherent.\n\n    If you choose to edit your older comments after others posted follow up comments you need to be aware that your modifications might not be noticed, so if it's not a typo fixing, try to write a new comment flagging that something has been changed in the previous comments.\n\n    For example, the very first comment is the most important one. If while the thread unfolds you realize that things aren't as they seemed to you originally you may want to edit the first post to reflect the up-to-date understanding of the issue at hand so that it helps those who read your issue in the future quickly understand what's going on and not need to sift through dozens of comments. It also helps to indicate that the post was edited. So, those reading the thread later can understand why there might be certain discontinuity in the information flow.\n\n    Use bullets and items if you have lists of items and the outcome improves overall readability.\n\n    Use backticks to refer to class and function names, e.g. `BartModel` and `generate` as these stand out and improve the speed of a reader's comprehension.\n\n    Try not use italics and bold text too much as these often make the text more difficult to read.\n\n\n12. If you are cross-referencing a specific comment in a given thread or another issue, always link to that specific comment, rather than using the issue link. If you do the latter it could be quite impossible to find which specific comment you're referring to.\n\n    To get the link to the specific comment do not copy the url from the location bar of your browser, but instead, click the `...` icon in the upper right corner of the comment and then select \"Copy Link\".\n\n    For example the first link is a link to an issue, and the second to a specific comment in the same issue:\n\n    1. https://github.com/huggingface/transformers/issues/9257\n    2. https://github.com/huggingface/transformers/issues/9257#issuecomment-749945162\n\n\n13. If you are replying to a last comment, it's totally fine to make your reply with just your comment in it. The readers can follow the information flow here.\n\n    But if you're replying to a comment that happened some comments back it's always a good practice to quote just the relevant lines you're replying it. The `>` is used for quoting, or you can always use the menu to do so. For example your editor box will look like:\n\n    ```\n    > How big is your gpu cluster?\n\n    Our cluster is made of 256 gpus.\n    ```\n\n    If you are addressing multiple comments, quote the relevant parts of each before your answer. Some people use the same comment to do multiple replies, others separate them into separate comments. Either way works. The latter approach helps for linking to a specific comment.\n\nIn general the best way to figure out what works the best is learn from issues posted by other people - see which issues get great responses and which get little to no response - observe what the posters who received great responses did differently from those who did not.\n\nThank you for reading this somewhat lengthy document. We would like to conclude that these are not absolute rules, but a friendly advice that will help maximize the chances for us to understand what you are trying to communicate, reproduce the problem then resolve it to your satisfaction and the benefit of the whole community.\n\nIf after reading this document there are remaining questions on how and why or there is a need for further elucidation, please, don't hesitate to ask your question in [this thread](https://discuss.huggingface.co/t/how-to-request-support/3128).\n"
  },
  {
    "path": "examples/NLU/Makefile",
    "content": ".PHONY: deps_table_update modified_only_fixup extra_quality_checks quality style fixup fix-copies test test-examples docs\n\n\ncheck_dirs := examples tests src utils\n\nmodified_only_fixup:\n\t$(eval modified_py_files := $(shell python utils/get_modified_files.py $(check_dirs)))\n\t@if test -n \"$(modified_py_files)\"; then \\\n\t\techo \"Checking/fixing $(modified_py_files)\"; \\\n\t\tblack $(modified_py_files); \\\n\t\tisort $(modified_py_files); \\\n\t\tflake8 $(modified_py_files); \\\n\telse \\\n\t\techo \"No library .py files were modified\"; \\\n\tfi\n\n# Update src/transformers/dependency_versions_table.py\n\ndeps_table_update:\n\t@python setup.py deps_table_update\n\n# Check that source code meets quality standards\n\nextra_quality_checks: deps_table_update\n\tpython utils/check_copies.py\n\tpython utils/check_table.py\n\tpython utils/check_dummies.py\n\tpython utils/check_repo.py\n\tpython utils/style_doc.py src/transformers docs/source --max_len 119\n\tpython utils/class_mapping_update.py\n\n# this target runs checks on all files\nquality:\n\tblack --check $(check_dirs)\n\tisort --check-only $(check_dirs)\n\tflake8 $(check_dirs)\n\tpython utils/style_doc.py src/transformers docs/source --max_len 119 --check_only\n\t${MAKE} extra_quality_checks\n\n# Format source code automatically and check is there are any problems left that need manual fixing\n\nstyle: deps_table_update\n\tblack $(check_dirs)\n\tisort $(check_dirs)\n\tpython utils/style_doc.py src/transformers docs/source --max_len 119\n\n# Super fast fix and check target that only works on relevant modified files since the branch was made\n\nfixup: modified_only_fixup extra_quality_checks\n\n# Make marked copies of snippets of codes conform to the original\n\nfix-copies:\n\tpython utils/check_copies.py --fix_and_overwrite\n\tpython utils/check_table.py --fix_and_overwrite\n\tpython utils/check_dummies.py --fix_and_overwrite\n\n# Run tests for the library\n\ntest:\n\tpython -m pytest -n auto --dist=loadfile -s -v ./tests/\n\n# Run tests for examples\n\ntest-examples:\n\tpython -m pytest -n auto --dist=loadfile -s -v ./examples/\n\n# Check that docs can build\n\ndocs:\n\tcd docs && make html SPHINXOPTS=\"-W -j 4\"\n\n# Release stuff\n\npre-release:\n\tpython utils/release.py\n\npre-patch:\n\tpython utils/release.py --patch\n\npost-release:\n\tpython utils/release.py --post_release\n\npost-patch:\n\tpython utils/release.py --post_release --patch\n\n"
  },
  {
    "path": "examples/NLU/README.md",
    "content": "# Adapting RoBERTa and DeBERTa V2 using LoRA\n\nThis folder contains the implementation of LoRA in RoBERTa and DeBERTa V2 using the Python package `lora`. LoRA is described in the following pre-print:\n\n**LoRA: Low-Rank Adaptation of Large Language Models** <br>\n*Edward J. Hu\\*, Yelong Shen\\*, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen* <br>\nPaper: https://arxiv.org/abs/2106.09685 <br>\n\n## Adapting to the GLUE Benchmark\nOur experiments on the GLUE benchmark are run on 4 NVIDIA Tesla V100 GPU cards out of a DGX-1. The results may vary due to different GPU models, drivers, CUDA SDK versions, floating-point precisions, and random seeds. \nWe report below the dev set results, taking the medium over 5 runs:\n\n<p>\n<img src=\"figures/LoRA_NLU.PNG\" width=\"800\" >\n</p>\n\nHere are the GLUE benchmark test set results for DeBERTa XXL 1.5B (no ensemble):\n\n<p>\n<img src=\"figures/deberta_lora_glue.jpg\" width=\"800\" >\n</p>\n\n## Download LoRA checkpoints\n\n|   | Dataset  | RoBERTa base 125M <br> LoRA - 0.3 M  | RoBERTa large 355M <br> LoRA - 0.8 M  | DeBERTa XXL 1.5B <br> LoRA - 4.7 M |\n|---|----------|--------------------|----------------------|------------------|\n|   | MNLI     |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_mnli.bin) |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_mnli.bin) |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin) |\n|   | SST2     |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_sst2.bin)  |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_sst2.bin)  |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)  |\n|   | MRPC     |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_mrpc.bin)  |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_mrpc.bin)  |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)  |\n|   | CoLA     |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_cola.bin)  |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_cola.bin)  |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)  |\n|   | QNLI     |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_qnli.bin)  |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_qnli.bin)  |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)  |\n|   | QQP      |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_qqp.bin)  |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_qqp.bin)  |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)  |\n|   | RTE      |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_rte.bin)  |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_rte.bin)  |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)  |\n|   | STSB     |[3.4 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-base/roberta_base_lora_stsb.bin)  |[7.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/RoBERTa-large/roberta_large_lora_stsb.bin)  |[27.1 MB](https://github.com/msft-edward/LoRA_private/releases/download/DeBERTa/deberta_v2_xxlarge_lora_mnli.bin)  |\n\n## Steps to reproduce our results\n### Create and activate conda env\n```console\nconda env create -f environment.yml\n```\n### Install the pre-requisites\nlora:\n```console\npip install -e ..\n```\nNLU:\n```console\npip install -e .\n```\n### Start the experiments\n```console\ndeberta_v2_xxlarge_mnli.sh\ndeberta_v2_xxlarge_sst2.sh\ndeberta_v2_xxlarge_mrpc.sh\ndeberta_v2_xxlarge_cola.sh\ndeberta_v2_xxlarge_qnli.sh\ndeberta_v2_xxlarge_qqp.sh\ndeberta_v2_xxlarge_rte.sh\ndeberta_v2_xxlarge_stsb.sh\n```\nFor MRPC, RTE, and STSB, you need to download and start from the LoRA-adapted MNLI checkpoint and change the path accordingly in the shell script.\n\nAttention: xxlarge-mnli is the LoRA-adapted model from our first MNLI experiments, instead of https://huggingface.co/microsoft/deberta-v2-xxlarge-mnli.\n\nWe also provide the shell scripts for roberta-base and roberta-large ( {roberta_large|roberta_base}_{task name}.sh ).\n\n### Evaluate the checkpoints\n```console\npython -m torch.distributed.launch --nproc_per_node=1 examples/text-classification/run_glue.py \\\n--model_name_or_path microsoft/deberta-v2-xxlarge \\\n--lora_path ./deberta_v2_xxlarge_lora_mnli.bin \\\n--task_name mnli \\\n--do_eval \\\n--output_dir ./output \\\n--apply_lora \\\n--lora_r 16 \\\n--lora_alpha 32\n```\n\n### Enable Cutoff/R-drop for data augmentation\n```console\nmnli.cutoff.sh\nmnli.rdrop.sh\n```\n\n## Citation\n```\n@misc{hu2021lora,\n    title={LoRA: Low-Rank Adaptation of Large Language Models},\n    author={Hu, Edward and Shen, Yelong and Wallis, Phil and Allen-Zhu, Zeyuan and Li, Yuanzhi and Wang, Lu and Chen, Weizhu},\n    year={2021},\n    eprint={2106.09685},\n    archivePrefix={arXiv},\n    primaryClass={cs.CL}\n}\n```\n"
  },
  {
    "path": "examples/NLU/adapter_pfeiffer_roberta_large_mnli.sh",
    "content": "export num_gpus=8\nexport CUBLAS_WORKSPACE_CONFIG=\":16:8\" # https://docs.nvidia.com/cuda/cublas/index.html#cublasApi_reproducibility\nexport PYTHONHASHSEED=0\nexport output_dir=\"./adapter_houlsby_roberta_large_mnli\"\npython -m torch.distributed.launch --nproc_per_node=num_gpus \\\nexamples/text-classification/run_glue.py \\\n--model_name_or_path roberta-large \\\n--task_name mnli \\\n--do_train \\\n--do_eval \\\n--evaluation_strategy epoch \\\n--save_strategy epoch \\\n--max_seq_length 128 \\\n--per_device_train_batch_size 32 \\\n--per_device_eval_batch_size 32 \\\n--learning_rate 3e-4 \\\n--num_train_epochs 5 \\\n--output_dir output_dir/model \\\n--overwrite_output_dir \\\n--logging_steps 10 \\\n--logging_dir output_dir/log \\\n--warmup_ratio 0.1 \\\n--apply_adapter \\\n--adapter_type pfeiffer \\\n--adapter_size 16 \\\n--seed 0\n"
  },
  {
    "path": "examples/NLU/deberta_v2_xxlarge_cola.sh",
    "content": "export num_gpus=8\nexport CUBLAS_WORKSPACE_CONFIG=\":16:8\" # https://docs.nvidia.com/cuda/cublas/index.html#cublasApi_reproducibility\nexport PYTHONHASHSEED=0\nexport output_dir=\"./cola\"\npython -m torch.distributed.launch --nproc_per_node=$num_gpus \\\nexamples/text-classification/run_glue.py \\\n--model_name_or_path microsoft/deberta-v2-xxlarge \\\n--task_name cola \\\n--do_train \\\n--do_eval \\\n--max_seq_length 64 \\\n--per_device_train_batch_size 4 \\\n--learning_rate 1.3e-4 \\\n--num_train_epochs 10 \\\n--output_dir $output_dir/model \\\n--overwrite_output_dir \\\n--logging_steps 10 \\\n--logging_dir $output_dir/log \\\n--fp16 \\\n--evaluation_strategy steps \\\n--eval_steps 20 \\\n--save_strategy steps \\\n--save_steps 20 \\\n--warmup_steps 100 \\\n--cls_dropout 0.1 \\\n--apply_lora \\\n--lora_r 16 \\\n--lora_alpha 32 \\\n--seed 0 \\\n--weight_decay 0 \\\n--use_deterministic_algorithms\n"
  },
  {
    "path": "examples/NLU/deberta_v2_xxlarge_qnli.sh",
    "content": "export num_gpus=8\nexport CUBLAS_WORKSPACE_CONFIG=\":16:8\" # https://docs.nvidia.com/cuda/cublas/index.html#cublasApi_reproducibility\nexport PYTHONHASHSEED=0\nexport output_dir=\"./qnli\"\npython -m torch.distributed.launch --nproc_per_node=$num_gpus \\\nexamples/text-classification/run_glue.py \\\n--model_name_or_path microsoft/deberta-v2-xxlarge \\\n--task_name qnli \\\n--do_train \\\n--do_eval \\\n--max_seq_length 512 \\\n--per_device_train_batch_size 6 \\\n--learning_rate 1e-4 \\\n--num_train_epochs 8 \\\n--output_dir $output_dir/model \\\n--overwrite_output_dir \\\n--logging_steps 10 \\\n--logging_dir $output_dir/log \\\n--fp16 \\\n--evaluation_strategy steps \\\n--eval_steps 500 \\\n--save_strategy steps \\\n--save_steps 500 \\\n--warmup_steps 500 \\\n--cls_dropout 0.1 \\\n--apply_lora \\\n--lora_r 16 \\\n--lora_alpha 32 \\\n--seed 0 \\\n--weight_decay 0.01 \\\n--use_deterministic_algorithms\n"
  },
  {
    "path": "examples/NLU/deberta_v2_xxlarge_qqp.sh",
    "content": "export num_gpus=8\nexport CUBLAS_WORKSPACE_CONFIG=\":16:8\" # https://docs.nvidia.com/cuda/cublas/index.html#cublasApi_reproducibility\nexport PYTHONHASHSEED=0\nexport output_dir=\"./qqp\"\npython -m torch.distributed.launch --nproc_per_node=$num_gpus \\\nexamples/text-classification/run_glue.py \\\n--model_name_or_path microsoft/deberta-v2-xxlarge \\\n--task_name qqp \\\n--do_train \\\n--do_eval \\\n--max_seq_length 320 \\\n--per_device_train_batch_size 8 \\\n--learning_rate 1e-4 \\\n--num_train_epochs 11 \\\n--output_dir $output_dir/model \\\n--overwrite_output_dir \\\n--logging_steps 10 \\\n--logging_dir $output_dir/log \\\n--fp16 \\\n--evaluation_strategy steps \\\n--eval_steps 500 \\\n--save_strategy steps \\\n--save_steps 500 \\\n--warmup_steps 10000 \\\n--cls_dropout 0.2 \\\n--apply_lora \\\n--lora_r 16 \\\n--lora_alpha 32 \\\n--seed 0 \\\n--weight_decay 0.01 \\\n--use_deterministic_algorithms\n"
  },
  {
    "path": "examples/NLU/deberta_v2_xxlarge_sst2.sh",
    "content": "export num_gpus=8\nexport CUBLAS_WORKSPACE_CONFIG=\":16:8\" # https://docs.nvidia.com/cuda/cublas/index.html#cublasApi_reproducibility\nexport PYTHONHASHSEED=0\nexport output_dir=\"./sst2\"\npython -m torch.distributed.launch --nproc_per_node=$num_gpus \\\nexamples/text-classification/run_glue.py \\\n--model_name_or_path microsoft/deberta-v2-xxlarge \\\n--task_name sst2 \\\n--do_train \\\n--do_eval \\\n--max_seq_length 128 \\\n--per_device_train_batch_size 8 \\\n--learning_rate 6e-5 \\\n--num_train_epochs 16 \\\n--output_dir $output_dir/model \\\n--overwrite_output_dir \\\n--logging_steps 10 \\\n--logging_dir $output_dir/log \\\n--fp16 \\\n--evaluation_strategy steps \\\n--eval_steps 100 \\\n--save_strategy steps \\\n--save_steps 100 \\\n--warmup_steps 1000 \\\n--cls_dropout 0 \\\n--apply_lora \\\n--lora_r 16 \\\n--lora_alpha 32 \\\n--seed 0 \\\n--weight_decay 0.01 \\\n--use_deterministic_algorithms\n"
  },
  {
    "path": "examples/NLU/docker/transformers-cpu/Dockerfile",
    "content": "FROM ubuntu:18.04\nLABEL maintainer=\"Hugging Face\"\nLABEL repository=\"transformers\"\n\nRUN apt update && \\\n    apt install -y bash \\\n                   build-essential \\\n                   git \\\n                   curl \\\n                   ca-certificates \\\n                   python3 \\\n                   python3-pip && \\\n    rm -rf /var/lib/apt/lists\n\nRUN python3 -m pip install --no-cache-dir --upgrade pip && \\\n    python3 -m pip install --no-cache-dir \\\n    jupyter \\\n    tensorflow-cpu \\\n    torch\n\nWORKDIR /workspace\nCOPY . transformers/\nRUN cd transformers/ && \\\n    python3 -m pip install --no-cache-dir .\n\nCMD [\"/bin/bash\"]"
  },
  {
    "path": "examples/NLU/docker/transformers-pytorch-gpu/Dockerfile",
    "content": "FROM nvidia/cuda:10.2-cudnn7-devel-ubuntu18.04\nLABEL maintainer=\"Hugging Face\"\nLABEL repository=\"transformers\"\n\nRUN apt update && \\\n    apt install -y bash \\\n                   build-essential \\\n                   git \\\n                   curl \\\n                   ca-certificates \\\n                   python3 \\\n                   python3-pip && \\\n    rm -rf /var/lib/apt/lists\n\nRUN python3 -m pip install --no-cache-dir --upgrade pip && \\\n    python3 -m pip install --no-cache-dir \\\n    mkl \\\n    torch\n\nRUN git clone https://github.com/NVIDIA/apex\nRUN cd apex && \\\n    python3 setup.py install && \\\n    pip install -v --no-cache-dir --global-option=\"--cpp_ext\" --global-option=\"--cuda_ext\" ./\n\nWORKDIR /workspace\nCOPY . transformers/\nRUN cd transformers/ && \\\n    python3 -m pip install --no-cache-dir .\n\nCMD [\"/bin/bash\"]\n"
  },
  {
    "path": "examples/NLU/docker/transformers-pytorch-tpu/bert-base-cased.jsonnet",
    "content": "local base = import 'templates/base.libsonnet';\nlocal tpus = import 'templates/tpus.libsonnet';\nlocal utils = import \"templates/utils.libsonnet\";\nlocal volumes = import \"templates/volumes.libsonnet\";\n\nlocal bertBaseCased = base.BaseTest {\n  frameworkPrefix: \"hf\",\n  modelName: \"bert-base-cased\",\n  mode: \"example\",\n  configMaps: [],\n\n  timeout: 3600, # 1 hour, in seconds\n\n  image: std.extVar('image'),\n  imageTag: std.extVar('image-tag'),\n\n  tpuSettings+: {\n    softwareVersion: \"pytorch-nightly\",\n  },\n  accelerator: tpus.v3_8,\n\n  volumeMap+: {\n    datasets: volumes.PersistentVolumeSpec {\n      name: \"huggingface-cluster-disk\",\n      mountPath: \"/datasets\",\n    },\n  },\n  command: utils.scriptCommand(\n    |||\n      python -m pytest -s transformers/examples/test_xla_examples.py -v\n      test_exit_code=$?\n      echo \"\\nFinished running commands.\\n\"\n      test $test_exit_code -eq 0\n    |||\n  ),\n};\n\nbertBaseCased.oneshotJob\n"
  },
  {
    "path": "examples/NLU/docker/transformers-pytorch-tpu/dataset.yaml",
    "content": "apiVersion: v1\nkind: PersistentVolume\nmetadata:\n  name: huggingface-cluster-disk\nspec:\n  storageClassName: \"\"\n  capacity:\n    storage: 500Gi\n  accessModes:\n    - ReadOnlyMany\n  claimRef:\n    namespace: default\n    name: huggingface-cluster-disk-claim\n  gcePersistentDisk:\n    pdName: huggingface-cluster-disk\n    fsType: ext4\n    readOnly: true\n---\napiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n  name: huggingface-cluster-disk-claim\nspec:\n  # Specify \"\" as the storageClassName so it matches the PersistentVolume's StorageClass.\n  # A nil storageClassName value uses the default StorageClass. For details, see\n  # https://kubernetes.io/docs/concepts/storage/persistent-volumes/#class-1\n  storageClassName: \"\"\n  accessModes:\n    - ReadOnlyMany\n  resources:\n    requests:\n      storage: 1Ki\n"
  },
  {
    "path": "examples/NLU/docker/transformers-tensorflow-cpu/Dockerfile",
    "content": "FROM ubuntu:18.04\nLABEL maintainer=\"Hugging Face\"\nLABEL repository=\"transformers\"\n\nRUN apt update && \\\n    apt install -y bash \\\n                   build-essential \\\n                   git \\\n                   curl \\\n                   ca-certificates \\\n                   python3 \\\n                   python3-pip && \\\n    rm -rf /var/lib/apt/lists\n\nRUN python3 -m pip install --no-cache-dir --upgrade pip && \\\n    python3 -m pip install --no-cache-dir \\\n    mkl \\\n    tensorflow-cpu\n\nWORKDIR /workspace\nCOPY . transformers/\nRUN cd transformers/ && \\\n    python3 -m pip install --no-cache-dir .\n\nCMD [\"/bin/bash\"]"
  },
  {
    "path": "examples/NLU/examples/benchmarking/requirements.txt",
    "content": ""
  },
  {
    "path": "examples/NLU/examples/research_projects/bert-loses-patience/pabee/__init__.py",
    "content": ""
  },
  {
    "path": "examples/NLU/examples/research_projects/bertabs/__init__.py",
    "content": ""
  },
  {
    "path": "examples/NLU/examples/research_projects/deebert/src/__init__.py",
    "content": ""
  },
  {
    "path": "examples/NLU/src/transformers/benchmark/__init__.py",
    "content": ""
  },
  {
    "path": "examples/NLU/src/transformers/models/dialogpt/__init__.py",
    "content": ""
  },
  {
    "path": "examples/NLU/tests/__init__.py",
    "content": ""
  },
  {
    "path": "examples/NLU/tests/fixtures/empty.txt",
    "content": ""
  }
]